diff options
| author | Stefan Agner <stefan@agner.ch> | 2016-10-17 21:51:27 -0400 |
|---|---|---|
| committer | Shawn Guo <shawnguo@kernel.org> | 2016-10-24 08:05:32 -0400 |
| commit | 44d524218c65e1f2e6d945b09165562852298015 (patch) | |
| tree | 85d12c637cc229a76cfb68ffb4e459c654106cc2 | |
| parent | f9d1f7a7ad919c93dfb708aae6e19d33c5437443 (diff) | |
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 992345a58e0c
("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>
| -rw-r--r-- | arch/arm/boot/dts/vf500.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/vf500.dtsi b/arch/arm/boot/dts/vf500.dtsi index a3824e61bd72..d7fdb2a7d97b 100644 --- a/arch/arm/boot/dts/vf500.dtsi +++ b/arch/arm/boot/dts/vf500.dtsi | |||
| @@ -70,7 +70,7 @@ | |||
| 70 | global_timer: timer@40002200 { | 70 | global_timer: timer@40002200 { |
| 71 | compatible = "arm,cortex-a9-global-timer"; | 71 | compatible = "arm,cortex-a9-global-timer"; |
| 72 | reg = <0x40002200 0x20>; | 72 | reg = <0x40002200 0x20>; |
| 73 | interrupts = <GIC_PPI 11 IRQ_TYPE_LEVEL_HIGH>; | 73 | interrupts = <GIC_PPI 11 IRQ_TYPE_EDGE_RISING>; |
| 74 | interrupt-parent = <&intc>; | 74 | interrupt-parent = <&intc>; |
| 75 | clocks = <&clks VF610_CLK_PLATFORM_BUS>; | 75 | clocks = <&clks VF610_CLK_PLATFORM_BUS>; |
| 76 | }; | 76 | }; |
