Skip to content

Commit

Permalink
[nrf fromtree] dts: common: nordic: nrf54l20: Adjust RAM size to 511k
Browse files Browse the repository at this point in the history
Last 1k is used for saving VPR context and shall not be exposed.
Limiting RAM to 511k.

Signed-off-by: Krzysztof Chruściński <[email protected]>
(cherry picked from commit 7b3acdb)
  • Loading branch information
nordic-krch committed Oct 17, 2024
1 parent 187d590 commit b883b1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dts/common/nordic/nrf54l20.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@

cpuapp_sram: memory@20000000 {
compatible = "mmio-sram";
reg = <0x20000000 DT_SIZE_K(512)>;
reg = <0x20000000 DT_SIZE_K(511)>;
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x20000000 0x2f000>;
ranges = <0x0 0x20000000 0x7fc00>;
};

global_peripherals: peripheral@50000000 {
Expand Down

0 comments on commit b883b1c

Please sign in to comment.