diff options
author | Ramon Fried <ramon.fried@gmail.com> | 2018-05-16 12:13:36 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-05-26 12:46:50 -0400 |
commit | ffada23ca7fe6f0cff960bbb1288060d227f2d93 (patch) | |
tree | 62045f880a14aea840451f641e0d0aa2fec412a2 | |
parent | 0ed34aa74107fff03c78f3f97d46f3d3b65d96ba (diff) |
db820c: set clk node to be probed before relocation
The clock and serial nodes are needed before relocation.
This patch ensures that the msm-serial driver will probe
and provide uart output before relocation.
Signed-off-by: Ramon Fried <ramon.fried@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/arm/dts/dragonboard820c-uboot.dtsi | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/dts/dragonboard820c-uboot.dtsi b/arch/arm/dts/dragonboard820c-uboot.dtsi index 88312b3fa1..97394cc5b0 100644 --- a/arch/arm/dts/dragonboard820c-uboot.dtsi +++ b/arch/arm/dts/dragonboard820c-uboot.dtsi @@ -5,6 +5,20 @@ * (C) Copyright 2017 Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> */ +/ { + soc { + u-boot,dm-pre-reloc; + + clock-controller@300000 { + u-boot,dm-pre-reloc; + }; + + serial@75b0000 { + u-boot,dm-pre-reloc; + }; + }; +}; + &pm8994_pon { key_vol_down { gpios = <&pm8994_pon 1 0>; |