Skip to content

Commit be0ec06

Browse files
Hamish Martinffainelli
authored andcommitted
ARM: dts: bcm: HR2: Fix PPI interrupt types
These error messages are output when booting on a BCM HR2 system: GIC: PPI11 is secure or misconfigured GIC: PPI13 is secure or misconfigured Per ARM documentation these interrupts are triggered on a rising edge. See ARM Cortex A-9 MPCore Technical Reference Manual, Revision r4p1, Section 3.3.8 Interrupt Configuration Registers. The same issue was resolved for NSP systems in commit 5f1aa51 ("ARM: dts: NSP: Fix PPI interrupt types"). Fixes: b9099ec ("ARM: dts: Add Broadcom Hurricane 2 DTS include file") Signed-off-by: Hamish Martin <[email protected]> Signed-off-by: Florian Fainelli <[email protected]>
1 parent 58bb90a commit be0ec06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arch/arm/boot/dts/bcm-hr2.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,23 +75,23 @@
7575
timer@20200 {
7676
compatible = "arm,cortex-a9-global-timer";
7777
reg = <0x20200 0x100>;
78-
interrupts = <GIC_PPI 11 IRQ_TYPE_LEVEL_HIGH>;
78+
interrupts = <GIC_PPI 11 IRQ_TYPE_EDGE_RISING>;
7979
clocks = <&periph_clk>;
8080
};
8181

8282
twd-timer@20600 {
8383
compatible = "arm,cortex-a9-twd-timer";
8484
reg = <0x20600 0x20>;
8585
interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(1) |
86-
IRQ_TYPE_LEVEL_HIGH)>;
86+
IRQ_TYPE_EDGE_RISING)>;
8787
clocks = <&periph_clk>;
8888
};
8989

9090
twd-watchdog@20620 {
9191
compatible = "arm,cortex-a9-twd-wdt";
9292
reg = <0x20620 0x20>;
9393
interrupts = <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(1) |
94-
IRQ_TYPE_LEVEL_HIGH)>;
94+
IRQ_TYPE_EDGE_RISING)>;
9595
clocks = <&periph_clk>;
9696
};
9797

0 commit comments

Comments
 (0)