Skip to content

Commit

Permalink
ARM: dts: UniPhier: fix PPI interrupt CPU mask of timer nodes
Browse files Browse the repository at this point in the history
This SoC is integrated with 4 Cortex-A9 cores.  The GIC bindings
document says that the bits[15:8] of the 3rd cell of the interrupts
property represents PPI interrupt CPU mask.  Because the timer
interrupts are wired to all of the 4 cores, bits[15:8] should be set
to 0xf.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
  • Loading branch information
Masahiro Yamada authored and Olof Johansson committed Aug 21, 2015
1 parent 62060a3 commit f2032f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/uniphier-proxstream2.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -249,14 +249,14 @@
timer@60000200 {
compatible = "arm,cortex-a9-global-timer";
reg = <0x60000200 0x20>;
interrupts = <1 11 0x304>;
interrupts = <1 11 0xf04>;
clocks = <&arm_timer_clk>;
};

timer@60000600 {
compatible = "arm,cortex-a9-twd-timer";
reg = <0x60000600 0x20>;
interrupts = <1 13 0x304>;
interrupts = <1 13 0xf04>;
clocks = <&arm_timer_clk>;
};

Expand Down

0 comments on commit f2032f2

Please sign in to comment.