From: Ezra Buehler Date: Sat, 9 May 2020 20:05:38 +0000 (+0200) Subject: arm: mvebu: ds414: add u-boot,dm-pre-reloc to spi0 X-Git-Tag: v2025.01-rc5-pxa1908~2387^2~3 X-Git-Url: http://git.dujemihanovic.xyz/html/index.html?a=commitdiff_plain;h=a1a61b0672ff20719ac9d1f4d60c16da00d11538;p=u-boot.git arm: mvebu: ds414: add u-boot,dm-pre-reloc to spi0 Without this U-Boot-specific property, booting on the Synology DS414 (or DS214+) fails in SPL. The spi0 DT node is not scanned, as a result the SPI flash cannot be found. Signed-off-by: Ezra Buehler Reviewed-by: Stefan Roese --- diff --git a/arch/arm/dts/armada-xp-synology-ds414-u-boot.dtsi b/arch/arm/dts/armada-xp-synology-ds414-u-boot.dtsi new file mode 100644 index 0000000000..22fae16c9d --- /dev/null +++ b/arch/arm/dts/armada-xp-synology-ds414-u-boot.dtsi @@ -0,0 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ + +&spi0 { + u-boot,dm-pre-reloc; + + spi-flash@0 { + u-boot,dm-pre-reloc; + }; +};