Commit c99fc06b authored by Sungbo Eo's avatar Sungbo Eo Committed by Greg Kroah-Hartman

ARM: dts: oxnas: Fix clear-mask property

commit deeabb4c upstream.

Disable all rps-irq interrupts during driver initialization to prevent
an accidental interrupt on GIC.

Fixes: 84316f4e ("ARM: boot: dts: Add Oxford Semiconductor OX810SE dtsi")
Fixes: 38d4a537 ("ARM: dts: Add support for OX820 and Pogoplug V3")
Signed-off-by: default avatarSungbo Eo <mans0n@gorani.run>
Acked-by: default avatarNeil Armstrong <narmstrong@baylibre.com>
Signed-off-by: default avatarNeil Armstrong <narmstrong@baylibre.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 71fc1197
...@@ -322,8 +322,8 @@ intc: interrupt-controller@0 { ...@@ -322,8 +322,8 @@ intc: interrupt-controller@0 {
interrupt-controller; interrupt-controller;
reg = <0 0x200>; reg = <0 0x200>;
#interrupt-cells = <1>; #interrupt-cells = <1>;
valid-mask = <0xFFFFFFFF>; valid-mask = <0xffffffff>;
clear-mask = <0>; clear-mask = <0xffffffff>;
}; };
timer0: timer@200 { timer0: timer@200 {
......
...@@ -239,8 +239,8 @@ intc: interrupt-controller@0 { ...@@ -239,8 +239,8 @@ intc: interrupt-controller@0 {
reg = <0 0x200>; reg = <0 0x200>;
interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>; interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>;
#interrupt-cells = <1>; #interrupt-cells = <1>;
valid-mask = <0xFFFFFFFF>; valid-mask = <0xffffffff>;
clear-mask = <0>; clear-mask = <0xffffffff>;
}; };
timer0: timer@200 { timer0: timer@200 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment