Skip to content

Commit f2032f2

Browse files
masahir0yolofj
authored andcommitted
ARM: dts: UniPhier: fix PPI interrupt CPU mask of timer nodes
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 <[email protected]> Signed-off-by: Olof Johansson <[email protected]>
1 parent 62060a3 commit f2032f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm/boot/dts/uniphier-proxstream2.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,14 +249,14 @@
249249
timer@60000200 {
250250
compatible = "arm,cortex-a9-global-timer";
251251
reg = <0x60000200 0x20>;
252-
interrupts = <1 11 0x304>;
252+
interrupts = <1 11 0xf04>;
253253
clocks = <&arm_timer_clk>;
254254
};
255255

256256
timer@60000600 {
257257
compatible = "arm,cortex-a9-twd-timer";
258258
reg = <0x60000600 0x20>;
259-
interrupts = <1 13 0x304>;
259+
interrupts = <1 13 0xf04>;
260260
clocks = <&arm_timer_clk>;
261261
};
262262

0 commit comments

Comments
 (0)