Skip to content

Commit ecf308e

Browse files
fkokosinskimmahadevan108
authored andcommitted
dts/andes: adjust the sizes of PLIC nodes
This commit adjusts the sizes of the two PLIC nodes AE350 defines: * `plic0` size is changed from `0x04000000` to `0x02000000` * `plic_sw` size is changed from `0x04000000` to `0x00400000` Without these change, `plic0` address space would overlap with `plic_sw`, and with other memory-mapped peripherals. Signed-off-by: Filip Kokosinski <[email protected]>
1 parent 63890e2 commit ecf308e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dts/riscv/andes/andes_v5_ae350.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
#address-cells = <1>;
171171
#interrupt-cells = <2>;
172172
interrupt-controller;
173-
reg = <0xe4000000 0x04000000>;
173+
reg = <0xe4000000 0x02000000>;
174174
riscv,max-priority = <255>;
175175
riscv,ndev = <1023>;
176176
interrupts-extended = <&cpu0_intc 11 &cpu1_intc 11
@@ -184,7 +184,7 @@
184184
#address-cells = <1>;
185185
#interrupt-cells = <2>;
186186
interrupt-controller;
187-
reg = <0xe6400000 0x04000000>;
187+
reg = <0xe6400000 0x00400000>;
188188
riscv,max-priority = <255>;
189189
riscv,ndev = <1023>;
190190
interrupts-extended = <&cpu0_intc 3 &cpu1_intc 3

0 commit comments

Comments
 (0)