1/*
2 * Copyright (c) 2022 metraTec
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	soc {
9		sram: sram@400000 {
10			ranges = <0x4000000 0x4000000 0x20000000>;
11		};
12
13		peripheral: peripheral@40000000 {
14			ranges = <0x0 0x40000000 0x10000000>;
15		};
16	};
17};
18
19#include "nxp_lpc55S0x_common.dtsi"
20
21&sramx {
22	compatible = "zephyr,memory-region", "mmio-sram";
23	reg = <0x40000000 DT_SIZE_K(16)>;
24	zephyr,memory-region = "SRAMX";
25};
26
27&iap {
28	status = "okay";
29};
30
31/*
32 * lpc55S06:
33 * Combine SRAM0, SRAM1, SRAM2 for total of 80K RAM
34 */
35&sram0 {
36	compatible = "mmio-sram";
37	reg = <0x20000000 DT_SIZE_K(80)>;
38};
39