aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2020-12-10 06:40:10 +0100
committerStefan Roese <sr@denx.de>2020-12-28 09:42:06 +0100
commit33fc6fc105993f0ba3b19e93912ef2cc59e22cef (patch)
tree273dcdc2aacd31647c0c3d36fc4bb0aebb26b2b3 /arch
parentfbc326244ce6fb3bd42353f343a511b512b8e710 (diff)
downloadu-boot-33fc6fc105993f0ba3b19e93912ef2cc59e22cef.zip
u-boot-33fc6fc105993f0ba3b19e93912ef2cc59e22cef.tar.gz
u-boot-33fc6fc105993f0ba3b19e93912ef2cc59e22cef.tar.bz2
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 <sr@denx.de> Cc: Dennis Gilmore <dgilmore@redhat.com> Tested-by: Dennis Gilmore <dgilmore@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/dts/armada-xp-gp-u-boot.dtsi19
1 files changed, 19 insertions, 0 deletions
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 0000000..2422856
--- /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;
+ };
+};