diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2016-03-18 11:19:21 +0100 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2016-04-20 00:56:40 +0200 |
commit | e6c2488251b1c7e62f3e43907ca3f6fd016b1353 (patch) | |
tree | fbec9c7adfc870c57593ebc27c2d8a8383f2dd2b /arch/arm/boot/dts/r8a7779.dtsi | |
parent | ARM: dts: sh73a0: Correct interrupt type for ARM TWD (diff) | |
download | linux-e6c2488251b1c7e62f3e43907ca3f6fd016b1353.tar.xz linux-e6c2488251b1c7e62f3e43907ca3f6fd016b1353.zip |
ARM: dts: r8a7779: Correct interrupt type for ARM TWD
The ARM TWD interrupt is a private peripheral interrupt (PPI), and per
the ARM GIC documentation, whether the type for PPIs can be set is
IMPLEMENTATION DEFINED.
For R-Car H1 devices the PPI type cannot be set, and so when we attempt
to set the type for the ARM TWD interrupt it fails. This has gone
unnoticed because it fails silently, and because we cannot re-configure
the type it has had no impact. Nevertheless fix the type for the TWD
interrupt so that it matches the hardware configuration.
Based on patches by Jon Hunter for Tegra20/30 and OMAP4.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/boot/dts/r8a7779.dtsi')
-rw-r--r-- | arch/arm/boot/dts/r8a7779.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/r8a7779.dtsi b/arch/arm/boot/dts/r8a7779.dtsi index 60bc1e66bba9..5c1d48d712a1 100644 --- a/arch/arm/boot/dts/r8a7779.dtsi +++ b/arch/arm/boot/dts/r8a7779.dtsi @@ -67,7 +67,7 @@ compatible = "arm,cortex-a9-twd-timer"; reg = <0xf0000600 0x20>; interrupts = <GIC_PPI 13 - (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>; + (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_EDGE_RISING)>; clocks = <&cpg_clocks R8A7779_CLK_ZS>; }; |