1/* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include "nrf54l_05_10_15.dtsi" 8 9&cpuapp_sram { 10 reg = <0x20000000 DT_SIZE_K(72)>; 11 ranges = <0x0 0x20000000 DT_SIZE_K(72)>; 12}; 13 14/* 72 + 24 = 96KB */ 15/ { 16 soc { 17 cpuflpr_sram: memory@20012000 { 18 compatible = "mmio-sram"; 19 reg = <0x20012000 DT_SIZE_K(24)>; 20 #address-cells = <1>; 21 #size-cells = <1>; 22 ranges = <0x0 0x20012000 DT_SIZE_K(24)>; 23 }; 24 }; 25}; 26 27&cpuapp_rram { 28 reg = <0x0 DT_SIZE_K(470)>; 29}; 30 31/* 470 + 30 = 500KB */ 32&rram_controller { 33 cpuflpr_rram: rram@75800 { 34 compatible = "soc-nv-flash"; 35 reg = <0x75800 DT_SIZE_K(30)>; 36 erase-block-size = <4096>; 37 write-block-size = <16>; 38 }; 39}; 40