]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ARM: dts: UniPhier: fix PPI interrupt CPU mask of timer nodes
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 19 Aug 2015 05:49:26 +0000 (14:49 +0900)
committerOlof Johansson <olof@lixom.net>
Fri, 21 Aug 2015 01:28:39 +0000 (18:28 -0700)
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>
arch/arm/boot/dts/uniphier-proxstream2.dtsi

index ccf795ab96b2bbabf50f6676dd9733eb65bdf520..4c7b2461101215dc8075dc2f291450aee268fe8e 100644 (file)
                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>;
                };