diff options
author | Olof Johansson <olof@lixom.net> | 2017-03-13 18:12:01 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2017-03-13 18:12:01 -0400 |
commit | f40624e85bfe44c789320d0901a7762411790170 (patch) | |
tree | c758674476c2f3998241937d90fe0518e87e6898 | |
parent | 9aea151f282df2b82a44fd7058a239334437c266 (diff) | |
parent | 0c2bf9f95983fe30aa2f6463cb761cd42c2d521a (diff) |
Merge tag 'arm-soc/for-4.11/devicetree-fixes' of http://github.com/Broadcom/stblinux into fixes
This pull request contains Broadcom ARM-based SoC Device Tree fixes for 4.11,
please pull the following:
- Jon fixes the UART output on the Broadcom bcm953012k reference board by
using the proper clock reference instead of hard-coding the baud rate
- Jon also fixes the memory map on the bcm953012k reference board by using
the appropriate physical RAM start address
- Jon finally fixes the interrupt type for the Cortex A9 global and local
timers found in the BCM5301X SoC (Norsthar).
* tag 'arm-soc/for-4.11/devicetree-fixes' of http://github.com/Broadcom/stblinux:
ARM: dts: BCM5301X: Correct GIC_PPI interrupt flags
ARM: dts: BCM5301X: Fix memory start address
ARM: dts: BCM5301X: Fix UARTs on bcm953012k
Signed-off-by: Olof Johansson <olof@lixom.net>
-rw-r--r-- | arch/arm/boot/dts/bcm5301x.dtsi | 4 | ||||
-rw-r--r-- | arch/arm/boot/dts/bcm953012k.dts | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/arch/arm/boot/dts/bcm5301x.dtsi b/arch/arm/boot/dts/bcm5301x.dtsi index 4fbb089cf5ad..00de62dc0042 100644 --- a/arch/arm/boot/dts/bcm5301x.dtsi +++ b/arch/arm/boot/dts/bcm5301x.dtsi | |||
@@ -66,14 +66,14 @@ | |||
66 | timer@20200 { | 66 | timer@20200 { |
67 | compatible = "arm,cortex-a9-global-timer"; | 67 | compatible = "arm,cortex-a9-global-timer"; |
68 | reg = <0x20200 0x100>; | 68 | reg = <0x20200 0x100>; |
69 | interrupts = <GIC_PPI 11 IRQ_TYPE_LEVEL_HIGH>; | 69 | interrupts = <GIC_PPI 11 IRQ_TYPE_EDGE_RISING>; |
70 | clocks = <&periph_clk>; | 70 | clocks = <&periph_clk>; |
71 | }; | 71 | }; |
72 | 72 | ||
73 | local-timer@20600 { | 73 | local-timer@20600 { |
74 | compatible = "arm,cortex-a9-twd-timer"; | 74 | compatible = "arm,cortex-a9-twd-timer"; |
75 | reg = <0x20600 0x100>; | 75 | reg = <0x20600 0x100>; |
76 | interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_HIGH>; | 76 | interrupts = <GIC_PPI 13 IRQ_TYPE_EDGE_RISING>; |
77 | clocks = <&periph_clk>; | 77 | clocks = <&periph_clk>; |
78 | }; | 78 | }; |
79 | 79 | ||
diff --git a/arch/arm/boot/dts/bcm953012k.dts b/arch/arm/boot/dts/bcm953012k.dts index bfd923096a8c..ae31a5826e91 100644 --- a/arch/arm/boot/dts/bcm953012k.dts +++ b/arch/arm/boot/dts/bcm953012k.dts | |||
@@ -48,15 +48,14 @@ | |||
48 | }; | 48 | }; |
49 | 49 | ||
50 | memory { | 50 | memory { |
51 | reg = <0x00000000 0x10000000>; | 51 | reg = <0x80000000 0x10000000>; |
52 | }; | 52 | }; |
53 | }; | 53 | }; |
54 | 54 | ||
55 | &uart0 { | 55 | &uart0 { |
56 | clock-frequency = <62499840>; | 56 | status = "okay"; |
57 | }; | 57 | }; |
58 | 58 | ||
59 | &uart1 { | 59 | &uart1 { |
60 | clock-frequency = <62499840>; | ||
61 | status = "okay"; | 60 | status = "okay"; |
62 | }; | 61 | }; |