Skip to content

Commit 44d5242

Browse files
agnersShawn Guo
authored andcommitted
ARM: dts: vf610: fix IRQ flag of global timer
The global timer IRQ (PPI[0], PPI 11 in device tree terms) is a rising edge interrupt. The ARM Cortex-A5 MPCore TRM in Chapter 10.1.2. Interrupt types and sources says: "Interrupt is rising-edge sensitive." The bits seem to be read-only, hence this missconfiguration had no negative effect. However, with commit 992345a ("irqchip/gic: WARN if setting the interrupt type for a PPI fails") warnings such as this get printed: GIC: PPI11 is secure or misconfigured With this change the new configuration matches the default configuration and no warning is printed anymore. Signed-off-by: Stefan Agner <stefan@agner.ch> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
1 parent f9d1f7a commit 44d5242

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/arm/boot/dts/vf500.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
global_timer: timer@40002200 {
7171
compatible = "arm,cortex-a9-global-timer";
7272
reg = <0x40002200 0x20>;
73-
interrupts = <GIC_PPI 11 IRQ_TYPE_LEVEL_HIGH>;
73+
interrupts = <GIC_PPI 11 IRQ_TYPE_EDGE_RISING>;
7474
interrupt-parent = <&intc>;
7575
clocks = <&clks VF610_CLK_PLATFORM_BUS>;
7676
};

0 commit comments

Comments
 (0)