* Add initial support for the IPQ5210 MMC based RDP platforms. * Define memory layout statically. * Mark the nodes that would be needed for SPL.
Reviewed-by: Simon Glass <[email protected]> Reviewed-by: Sumit Garg <[email protected]> Signed-off-by: Varadarajan Narayanan <[email protected]> --- v6: Move out binman node v4: Add binman details --- arch/arm/dts/ipq5210-rdp504-u-boot.dtsi | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 arch/arm/dts/ipq5210-rdp504-u-boot.dtsi diff --git a/arch/arm/dts/ipq5210-rdp504-u-boot.dtsi b/arch/arm/dts/ipq5210-rdp504-u-boot.dtsi new file mode 100644 index 00000000000..b3d048dd251 --- /dev/null +++ b/arch/arm/dts/ipq5210-rdp504-u-boot.dtsi @@ -0,0 +1,15 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * IPQ5210 RDP504 board device tree source + * + * Copyright (c) 2026 The Linux Foundation. All rights reserved. + */ + +/ { + /* Will be removed when SMEM parsing is updated */ + memory@80000000 { + bootph-all; + device_type = "memory"; + reg = <0x0 0x80000000 0x0 0x20000000>; + }; +}; -- 2.34.1

