Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 675c7215 authored by Clément Péron's avatar Clément Péron Committed by Florian Fainelli
Browse files

ARM: dts: cygnus: fix irq type for arm global timer



As per ARM documentation
PPI(0) ID27 - global timer interrupt is rising-edge sensitive.

set IRQ triggering type to IRQ_TYPE_EDGE_RISING for ARM Global timers.

Fixes: c9ad7bc5 ("ARM: dts: Enable Broadcom Cygnus SoC")
Signed-off-by: default avatarClément Péron <peron.clem@gmail.com>
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parent 60cc43fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@
		timer@20200 {
			compatible = "arm,cortex-a9-global-timer";
			reg = <0x20200 0x100>;
			interrupts = <GIC_PPI 11 IRQ_TYPE_LEVEL_HIGH>;
			interrupts = <GIC_PPI 11 IRQ_TYPE_EDGE_RISING>;
			clocks = <&periph_clk>;
		};