Browse Source

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 <fkokosinski@antmicro.com>
pull/75604/head
Filip Kokosinski 8 months ago committed by Mahesh Mahadevan
parent
commit
ecf308e8de
  1. 4
      dts/riscv/andes/andes_v5_ae350.dtsi

4
dts/riscv/andes/andes_v5_ae350.dtsi

@ -170,7 +170,7 @@ @@ -170,7 +170,7 @@
#address-cells = <1>;
#interrupt-cells = <2>;
interrupt-controller;
reg = <0xe4000000 0x04000000>;
reg = <0xe4000000 0x02000000>;
riscv,max-priority = <255>;
riscv,ndev = <1023>;
interrupts-extended = <&cpu0_intc 11 &cpu1_intc 11
@ -184,7 +184,7 @@ @@ -184,7 +184,7 @@
#address-cells = <1>;
#interrupt-cells = <2>;
interrupt-controller;
reg = <0xe6400000 0x04000000>;
reg = <0xe6400000 0x00400000>;
riscv,max-priority = <255>;
riscv,ndev = <1023>;
interrupts-extended = <&cpu0_intc 3 &cpu1_intc 3

Loading…
Cancel
Save