diff options
author | Ramon Fried | 2018-04-20 22:39:50 +0300 |
---|---|---|
committer | Tom Rini | 2018-05-08 18:50:22 -0400 |
commit | 707e6ef96419737c05075610db763bbfc6f9d2de (patch) | |
tree | 855d334ed350037957ab71ad75cf4d51cb51175d | |
parent | da33b0a1ca42658d2f9308e228e1aac0c837a655 (diff) |
db410c: set clk node to be probed before relocation
The clock node is used by the serial driver and it's needed
before relocation.
This patch ensures that the msm-serial driver can actually
use the clock node.
Signed-off-by: Ramon Fried <ramon.fried@linaro.org>
-rw-r--r-- | arch/arm/dts/dragonboard410c-uboot.dtsi | 12 | ||||
-rw-r--r-- | arch/arm/dts/dragonboard410c.dts | 1 |
2 files changed, 12 insertions, 1 deletions
diff --git a/arch/arm/dts/dragonboard410c-uboot.dtsi b/arch/arm/dts/dragonboard410c-uboot.dtsi index c94455ce4de..17ee55a20cc 100644 --- a/arch/arm/dts/dragonboard410c-uboot.dtsi +++ b/arch/arm/dts/dragonboard410c-uboot.dtsi @@ -9,6 +9,18 @@ config { u-boot,mmc-env-partition = "boot"; }; + + soc { + u-boot,dm-pre-reloc; + + qcom,gcc@1800000 { + u-boot,dm-pre-reloc; + }; + + serial@78b0000 { + u-boot,dm-pre-reloc; + }; + }; }; diff --git a/arch/arm/dts/dragonboard410c.dts b/arch/arm/dts/dragonboard410c.dts index 4d76edab55a..d9d5831f4f8 100644 --- a/arch/arm/dts/dragonboard410c.dts +++ b/arch/arm/dts/dragonboard410c.dts @@ -48,7 +48,6 @@ serial@78b0000 { compatible = "qcom,msm-uartdm-v1.4"; reg = <0x78b0000 0x200>; - u-boot,dm-pre-reloc; clock = <&clkc 4>; }; |