From: Marek Vasut Date: Fri, 16 Feb 2018 00:33:27 +0000 (+0100) Subject: ARM: dts: rmobile: Make PFC and RST available before reloc X-Git-Tag: v2018.03-rc3~10^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8a8d3000053615d2d29d729eda60b6ea2003095c;p=u-boot 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 Cc: Nobuhiro Iwamatsu --- diff --git a/arch/arm/dts/r8a779x-u-boot.dtsi b/arch/arm/dts/r8a779x-u-boot.dtsi index 0baac1d2c5..f34cb942ed 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; +};