1/*
2 * Copyright (c) 2022, NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <mem.h>
8
9/ {
10	soc {
11		sram: sram@30000000 {
12			ranges = <0x0 0x10000000 0x500000
13				0x20000000 0x30000000 0x500000>;
14		};
15
16		peripheral: peripheral@50000000 {
17			ranges = <0x0 0x50000000 0x10000000>;
18		};
19
20		flexspi: spi@134000 {
21			reg = <0x50134000 0x1000>, <0x18000000 DT_SIZE_M(128)>;
22		};
23
24		flexspi2: spi@13C000 {
25			reg = <0x5013C000 0x1000>, <0x38000000 DT_SIZE_M(128)>;
26		};
27	};
28};
29
30#include "nxp_rt5xx_common.dtsi"
31