Commit deeabb4c authored by Sungbo Eo's avatar Sungbo Eo Committed by Neil Armstrong

ARM: dts: oxnas: Fix clear-mask property

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>
parent bb6d3fb3
...@@ -323,8 +323,8 @@ intc: interrupt-controller@0 { ...@@ -323,8 +323,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 {
......
...@@ -240,8 +240,8 @@ intc: interrupt-controller@0 { ...@@ -240,8 +240,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