aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut+renesas@gmail.com>2018-02-16 01:33:27 +0100
committerMarek Vasut <marex@denx.de>2018-02-16 16:43:11 +0100
commit8a8d3000053615d2d29d729eda60b6ea2003095c (patch)
tree22bb648bcae3a85987fbed2194bef4639a768d05 /arch
parentccb947f2cee187973f74f80cb5878bb2733e6a83 (diff)
downloadu-boot-8a8d3000053615d2d29d729eda60b6ea2003095c.zip
u-boot-8a8d3000053615d2d29d729eda60b6ea2003095c.tar.gz
u-boot-8a8d3000053615d2d29d729eda60b6ea2003095c.tar.bz2
ARM: dts: rmobile: Make PFC and RST available before reloc
Those two nodes are needed to configure pinmux before relocation and to configure clock before relocation, since CPG/MSSR needs access to RST node. This is not noticable on Gen3, but on Gen2 this causes problems in SPL if they are not available early. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/dts/r8a779x-u-boot.dtsi8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/dts/r8a779x-u-boot.dtsi b/arch/arm/dts/r8a779x-u-boot.dtsi
index 0baac1d..f34cb94 100644
--- a/arch/arm/dts/r8a779x-u-boot.dtsi
+++ b/arch/arm/dts/r8a779x-u-boot.dtsi
@@ -20,6 +20,14 @@
u-boot,dm-pre-reloc;
};
+&pfc {
+ u-boot,dm-pre-reloc;
+};
+
&prr {
u-boot,dm-pre-reloc;
};
+
+&rst {
+ u-boot,dm-pre-reloc;
+};