Skip to content

Commit 0c2bf9f

Browse files
Jon Masonffainelli
authored andcommitted
ARM: dts: BCM5301X: Correct GIC_PPI interrupt flags
GIC_PPI flags were misconfigured for the timers, resulting in errors like: [ 0.000000] GIC: PPI11 is secure or misconfigured Changing them to being edge triggered corrects the issue Suggested-by: Rafał Miłecki <rafal@milecki.pl> Signed-off-by: Jon Mason <jon.mason@broadcom.com> Fixes: d27509f ("ARM: BCM5301X: add dts files for BCM4708 SoC") Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
1 parent 88d1fa7 commit 0c2bf9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm/boot/dts/bcm5301x.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@
6666
timer@20200 {
6767
compatible = "arm,cortex-a9-global-timer";
6868
reg = <0x20200 0x100>;
69-
interrupts = <GIC_PPI 11 IRQ_TYPE_LEVEL_HIGH>;
69+
interrupts = <GIC_PPI 11 IRQ_TYPE_EDGE_RISING>;
7070
clocks = <&periph_clk>;
7171
};
7272

7373
local-timer@20600 {
7474
compatible = "arm,cortex-a9-twd-timer";
7575
reg = <0x20600 0x100>;
76-
interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_HIGH>;
76+
interrupts = <GIC_PPI 13 IRQ_TYPE_EDGE_RISING>;
7777
clocks = <&periph_clk>;
7878
};
7979

0 commit comments

Comments
 (0)