Message ID | 20180420193403.20619-1-ramon.fried@linaro.org |
---|---|
State | New |
Headers | show |
Series | [v2] db410c: set clk node to be probed before relocation | expand |
diff --git a/arch/arm/dts/dragonboard410c-uboot.dtsi b/arch/arm/dts/dragonboard410c-uboot.dtsi index c3475c4227..adf6b62f13 100644 --- a/arch/arm/dts/dragonboard410c-uboot.dtsi +++ b/arch/arm/dts/dragonboard410c-uboot.dtsi @@ -10,6 +10,14 @@ config { u-boot,mmc-env-partition = "boot"; }; + + soc { + 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 5ccfe7f8c8..d6a296ca37 100644 --- a/arch/arm/dts/dragonboard410c.dts +++ b/arch/arm/dts/dragonboard410c.dts @@ -44,12 +44,12 @@ reg = <0x1800000 0x80000>; #address-cells = <0x1>; #size-cells = <0x0>; + u-boot,dm-pre-reloc; }; serial@78b0000 { compatible = "qcom,msm-uartdm-v1.4"; reg = <0x78b0000 0x200>; - u-boot,dm-pre-reloc; clock = <&clkc 4>; };
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> --- v2: Moved the u-boot,dm-pre-reloc attribute to the -uboot.dtsi file arch/arm/dts/dragonboard410c-uboot.dtsi | 8 ++++++++ arch/arm/dts/dragonboard410c.dts | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-)