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(188)>;
11	ranges = <0x0 0x20000000 DT_SIZE_K(188)>;
12};
13
14/* 188 + 68 = 256KB */
15/ {
16	soc {
17		cpuflpr_sram: memory@2002f000 {
18			compatible = "mmio-sram";
19			reg = <0x2002f000 DT_SIZE_K(68)>;
20			#address-cells = <1>;
21			#size-cells = <1>;
22			ranges = <0x0 0x2002f000 DT_SIZE_K(68)>;
23		};
24	};
25};
26
27&cpuapp_rram {
28	reg = <0x0 DT_SIZE_K(1428)>;
29};
30
31/* 1428 + 96 = 1524KB */
32&rram_controller {
33	cpuflpr_rram: rram@165000 {
34		compatible = "soc-nv-flash";
35		reg = <0x165000 DT_SIZE_K(96)>;
36		erase-block-size = <4096>;
37		write-block-size = <16>;
38	};
39};
40