aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot
diff options
context:
space:
mode:
authorStefan Wahren <stefan.wahren@i2se.com>2016-08-21 11:09:59 -0400
committerEric Anholt <eric@anholt.net>2016-08-24 16:33:01 -0400
commit33145fac8e7e9eb0e064cd0cd0032d6786b6420c (patch)
tree7aff97e5a900a418f2553b8d42dab567815cbfbf /arch/arm/boot
parent29b4817d4018df78086157ea3a55c1d9424a7cfc (diff)
ARM: dts: bcm283x: Add missing USB clock
According to the DWC2 binding an appropriate clock is required. This clock isn't handled by bcm2835 clock driver, so add a fixed clock to the bcm283x DT. Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> Acked-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r--arch/arm/boot/dts/bcm283x.dtsi9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/bcm283x.dtsi b/arch/arm/boot/dts/bcm283x.dtsi
index b98252232d20..547280088299 100644
--- a/arch/arm/boot/dts/bcm283x.dtsi
+++ b/arch/arm/boot/dts/bcm283x.dtsi
@@ -289,6 +289,8 @@
289 interrupts = <1 9>; 289 interrupts = <1 9>;
290 #address-cells = <1>; 290 #address-cells = <1>;
291 #size-cells = <0>; 291 #size-cells = <0>;
292 clocks = <&clk_usb>;
293 clock-names = "otg";
292 }; 294 };
293 295
294 v3d: v3d@7ec00000 { 296 v3d: v3d@7ec00000 {
@@ -316,5 +318,12 @@
316 clock-frequency = <19200000>; 318 clock-frequency = <19200000>;
317 }; 319 };
318 320
321 clk_usb: clock@4 {
322 compatible = "fixed-clock";
323 reg = <4>;
324 #clock-cells = <0>;
325 clock-output-names = "otg";
326 clock-frequency = <480000000>;
327 };
319 }; 328 };
320}; 329};