mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
b2a2911dad
The new 587-200 DHCOR SoM is compatible with the 587-100 prototype, hence just replicate the entries, as there is no pattern matching. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Patrice Chotard <patrice.chotard@st.com> Cc: Patrick Delaunay <patrick.delaunay@st.com> Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
69 lines
1.3 KiB
Text
69 lines
1.3 KiB
Text
/dts-v1/;
|
|
|
|
/ {
|
|
description = "U-Boot mainline";
|
|
#address-cells = <1>;
|
|
|
|
images {
|
|
uboot {
|
|
description = "U-Boot (32-bit)";
|
|
data = /incbin/("u-boot-nodtb.bin");
|
|
type = "standalone";
|
|
os = "U-Boot";
|
|
arch = "arm";
|
|
compression = "none";
|
|
load = <0xc0100000>;
|
|
entry = <0xc0100000>;
|
|
};
|
|
|
|
fdt-1 {
|
|
description = ".dtb";
|
|
data = /incbin/("arch/arm/dts/stm32mp15xx-dhcom-pdk2.dtb");
|
|
type = "flat_dt";
|
|
arch = "arm";
|
|
compression = "none";
|
|
};
|
|
|
|
fdt-2 {
|
|
description = ".dtb";
|
|
data = /incbin/("arch/arm/dts/stm32mp15xx-dhcom-drc02.dtb");
|
|
type = "flat_dt";
|
|
arch = "arm";
|
|
compression = "none";
|
|
};
|
|
};
|
|
|
|
configurations {
|
|
default = "config-1";
|
|
|
|
config-1 {
|
|
/* DT+SoM+board model */
|
|
description = "dh,stm32mp15xx-dhcom-pdk2_somrev0_boardrev0";
|
|
loadables = "uboot";
|
|
fdt = "fdt-1";
|
|
};
|
|
|
|
config-2 {
|
|
/* DT+SoM+board model */
|
|
description = "dh,stm32mp15xx-dhcom-pdk2_somrev1_boardrev0";
|
|
loadables = "uboot";
|
|
fdt = "fdt-1";
|
|
};
|
|
|
|
config-3 {
|
|
/* DT+SoM+board model */
|
|
description = "dh,stm32mp15xx-dhcom-drc02_somrev0_boardrev0";
|
|
loadables = "uboot";
|
|
fdt = "fdt-2";
|
|
};
|
|
|
|
config-4 {
|
|
/* DT+SoM+board model */
|
|
description = "dh,stm32mp15xx-dhcom-drc02_somrev1_boardrev0";
|
|
loadables = "uboot";
|
|
fdt = "fdt-2";
|
|
};
|
|
|
|
/* Add 587-100..587-400 with fdt-2..fdt-4 here */
|
|
};
|
|
};
|