Skip to content

Commit 7ede12b

Browse files
David Abdurachmanovpalmer-dabbelt
authored andcommitted
riscv: dts: fu740: fix cache-controller interrupts
The order of interrupt numbers is incorrect. The order for FU740 is: DirError, DataError, DataFail, DirFail From SiFive FU740-C000 Manual: 19 - L2 Cache DirError 20 - L2 Cache DirFail 21 - L2 Cache DataError 22 - L2 Cache DataFail Signed-off-by: David Abdurachmanov <[email protected]> Signed-off-by: Palmer Dabbelt <[email protected]>
1 parent 3a02764 commit 7ede12b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/riscv/boot/dts/sifive/fu740-c000.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
cache-size = <2097152>;
274274
cache-unified;
275275
interrupt-parent = <&plic0>;
276-
interrupts = <19 20 21 22>;
276+
interrupts = <19 21 22 20>;
277277
reg = <0x0 0x2010000 0x0 0x1000>;
278278
};
279279
gpio: gpio@10060000 {

0 commit comments

Comments
 (0)