aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Singh Tomar <amittomer25@gmail.com>2020-04-19 19:28:32 +0530
committerTom Rini <trini@konsulko.com>2020-04-24 16:40:09 -0400
commitea6314a797935fe3ca60b111035dcd25aaf85b71 (patch)
tree65633ade83b5658b682b015e21d842bb7c5c53a5
parent1050eaa0821e16d622f4a91295a751c4b37e9032 (diff)
downloadu-boot-ea6314a797935fe3ca60b111035dcd25aaf85b71.zip
u-boot-ea6314a797935fe3ca60b111035dcd25aaf85b71.tar.gz
u-boot-ea6314a797935fe3ca60b111035dcd25aaf85b71.tar.bz2
arm: dts: actions: s700: add u-boot specific dtsi file
Devices like uart and clk are needed to be enabled before relocation. this patch adds u-boot.dtsi file that mark these device as dm-pre-reloc. Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Reviewed-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Amit Singh Tomar <amittomer25@gmail.com>
-rw-r--r--arch/arm/dts/s700-u-boot.dtsi18
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/dts/s700-u-boot.dtsi b/arch/arm/dts/s700-u-boot.dtsi
new file mode 100644
index 0000000..a527ccc
--- /dev/null
+++ b/arch/arm/dts/s700-u-boot.dtsi
@@ -0,0 +1,18 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright (C) 2020 Amit Singh Tomar <amittomer25@gmail.com>
+ */
+
+/{
+ soc {
+ u-boot,dm-pre-reloc;
+ };
+};
+
+&uart3 {
+ u-boot,dm-pre-reloc;
+};
+
+&cmu {
+ u-boot,dm-pre-reloc;
+};