arm64: dts: imx8mq-u-boot.dtsi: improve odd blob-ext naming
Rather than using odd implicit blob-ext naming, explicitly specify the type to be of blob-ext and therefore also simplify the node naming. Signed-off-by: Patrick Wildt <patrick@blueri.se> Reviewed-by: Fabio Estevam <festevam@denx.de>
This commit is contained in:
parent
49f55653fd
commit
ea4e9387e3
@ -22,32 +22,37 @@
|
|||||||
filename = "u-boot-spl.bin";
|
filename = "u-boot-spl.bin";
|
||||||
};
|
};
|
||||||
|
|
||||||
blob_1: blob-ext@1 {
|
1d-imem {
|
||||||
filename = "lpddr4_pmu_train_1d_imem.bin";
|
filename = "lpddr4_pmu_train_1d_imem.bin";
|
||||||
size = <0x8000>;
|
size = <0x8000>;
|
||||||
|
type = "blob-ext";
|
||||||
};
|
};
|
||||||
|
|
||||||
blob_2: blob-ext@2 {
|
1d-dmem {
|
||||||
filename = "lpddr4_pmu_train_1d_dmem.bin";
|
filename = "lpddr4_pmu_train_1d_dmem.bin";
|
||||||
size = <0x4000>;
|
size = <0x4000>;
|
||||||
|
type = "blob-ext";
|
||||||
};
|
};
|
||||||
|
|
||||||
blob_3: blob-ext@3 {
|
2d-imem {
|
||||||
filename = "lpddr4_pmu_train_2d_imem.bin";
|
filename = "lpddr4_pmu_train_2d_imem.bin";
|
||||||
size = <0x8000>;
|
size = <0x8000>;
|
||||||
|
type = "blob-ext";
|
||||||
};
|
};
|
||||||
|
|
||||||
blob_4: blob-ext@4 {
|
2d-dmem {
|
||||||
filename = "lpddr4_pmu_train_2d_dmem.bin";
|
filename = "lpddr4_pmu_train_2d_dmem.bin";
|
||||||
size = <0x4000>;
|
size = <0x4000>;
|
||||||
|
type = "blob-ext";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
signed_hdmi {
|
signed-hdmi {
|
||||||
filename = "signed_hdmi.bin";
|
filename = "signed_hdmi.bin";
|
||||||
|
|
||||||
blob_5: blob-ext@5 {
|
signed-hdmi-imx8m {
|
||||||
filename = "signed_hdmi_imx8m.bin";
|
filename = "signed_hdmi_imx8m.bin";
|
||||||
|
type = "blob-ext";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -60,9 +65,7 @@
|
|||||||
blob {
|
blob {
|
||||||
filename = "u-boot-spl-ddr.bin";
|
filename = "u-boot-spl-ddr.bin";
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
itb {
|
itb {
|
||||||
@ -81,8 +84,9 @@
|
|||||||
load = <CONFIG_SYS_TEXT_BASE>;
|
load = <CONFIG_SYS_TEXT_BASE>;
|
||||||
type = "standalone";
|
type = "standalone";
|
||||||
|
|
||||||
uboot_blob: blob-ext {
|
uboot-blob {
|
||||||
filename = "u-boot-nodtb.bin";
|
filename = "u-boot-nodtb.bin";
|
||||||
|
type = "blob-ext";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -94,8 +98,9 @@
|
|||||||
load = <0x910000>;
|
load = <0x910000>;
|
||||||
type = "firmware";
|
type = "firmware";
|
||||||
|
|
||||||
atf_blob: blob-ext {
|
atf-blob {
|
||||||
filename = "bl31.bin";
|
filename = "bl31.bin";
|
||||||
|
type = "blob-ext";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -104,8 +109,9 @@
|
|||||||
description = "NAME";
|
description = "NAME";
|
||||||
type = "flat_dt";
|
type = "flat_dt";
|
||||||
|
|
||||||
uboot_fdt_blob: blob-ext {
|
uboot-fdt-blob {
|
||||||
filename = "u-boot.dtb";
|
filename = "u-boot.dtb";
|
||||||
|
type = "blob-ext";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -127,14 +133,16 @@
|
|||||||
filename = "flash.bin";
|
filename = "flash.bin";
|
||||||
pad-byte = <0x00>;
|
pad-byte = <0x00>;
|
||||||
|
|
||||||
spl: blob-ext@1 {
|
spl {
|
||||||
filename = "spl.bin";
|
filename = "spl.bin";
|
||||||
offset = <0x0>;
|
offset = <0x0>;
|
||||||
|
type = "blob-ext";
|
||||||
};
|
};
|
||||||
|
|
||||||
uboot: blob-ext@2 {
|
binman_uboot: uboot {
|
||||||
filename = "u-boot.itb";
|
filename = "u-boot.itb";
|
||||||
offset = <0x57c00>;
|
offset = <0x57c00>;
|
||||||
|
type = "blob-ext";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user