From: Stefan Roese Date: Thu, 10 Dec 2020 05:40:10 +0000 (+0100) Subject: arm: mvebu: Add armada-xp-gp-u-boot.dtsi for U-Boot properties X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=33fc6fc105993f0ba3b19e93912ef2cc59e22cef;p=u-boot.git arm: mvebu: Add armada-xp-gp-u-boot.dtsi for U-Boot properties Add some missing "u-boot,dm-pre-reloc;" properties to UART0, SPI controller and SPI NOR flash node to enable usage in SPL. Otherwise these devices will not be available. Signed-off-by: Stefan Roese Cc: Dennis Gilmore Tested-by: Dennis Gilmore --- diff --git a/arch/arm/dts/armada-xp-gp-u-boot.dtsi b/arch/arm/dts/armada-xp-gp-u-boot.dtsi new file mode 100644 index 0000000000..2422856616 --- /dev/null +++ b/arch/arm/dts/armada-xp-gp-u-boot.dtsi @@ -0,0 +1,19 @@ +// SPDX-License-Identifier: GPL-2.0+ + +/ { + soc { + internal-regs { + serial@12000 { + u-boot,dm-pre-reloc; + }; + }; + }; +}; + +&spi0 { + u-boot,dm-pre-reloc; + + spi-flash@0 { + u-boot,dm-pre-reloc; + }; +};