Skip to content

Commit

Permalink
ARM: dts: oxnas: Fix clear-mask property
Browse files Browse the repository at this point in the history
commit deeabb4 upstream.

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

Fixes: 84316f4 ("ARM: boot: dts: Add Oxford Semiconductor OX810SE dtsi")
Fixes: 38d4a53 ("ARM: dts: Add support for OX820 and Pogoplug V3")
Signed-off-by: Sungbo Eo <mans0n@gorani.run>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Sungbo Eo authored and Greg Kroah-Hartman committed Apr 2, 2020
1 parent aefc7ec commit 53cdc9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/ox810se.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,8 @@
interrupt-controller;
reg = <0 0x200>;
#interrupt-cells = <1>;
valid-mask = <0xFFFFFFFF>;
clear-mask = <0>;
valid-mask = <0xffffffff>;
clear-mask = <0xffffffff>;
};

timer0: timer@200 {
Expand Down
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/ox820.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@
reg = <0 0x200>;
interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>;
#interrupt-cells = <1>;
valid-mask = <0xFFFFFFFF>;
clear-mask = <0>;
valid-mask = <0xffffffff>;
clear-mask = <0xffffffff>;
};

timer0: timer@200 {
Expand Down

0 comments on commit 53cdc9f

Please sign in to comment.