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(144)>;
11	ranges = <0x0 0x20000000 DT_SIZE_K(144)>;
12};
13
14/* 144 + 48 = 192KB */
15/ {
16	soc {
17		cpuflpr_sram: memory@20024000 {
18			compatible = "mmio-sram";
19			reg = <0x20024000 DT_SIZE_K(48)>;
20			#address-cells = <1>;
21			#size-cells = <1>;
22			ranges = <0x0 0x20024000 DT_SIZE_K(48)>;
23		};
24	};
25};
26
27&cpuapp_rram {
28	reg = <0x0 DT_SIZE_K(960)>;
29};
30
31/* 960 + 62 = 1022KB */
32&rram_controller {
33	cpuflpr_rram: rram@f0000 {
34		compatible = "soc-nv-flash";
35		reg = <0xf0000 DT_SIZE_K(62)>;
36		erase-block-size = <4096>;
37		write-block-size = <16>;
38	};
39};
40