Skip to content

Commit

Permalink
ARM: dts: oxnas: Fix clear-mask property
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Sungbo Eo authored and Neil Armstrong committed Mar 23, 2020
1 parent bb6d3fb commit deeabb4
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 @@ -323,8 +323,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 @@ -240,8 +240,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 deeabb4

Please sign in to comment.