1/*
2 * Copyright (c) 2019 Linaro Limited
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <mem.h>
8#include <ti/cc32xx.dtsi>
9
10/ {
11	sram0: memory@20000000 {
12		reg = <0x20000000 DT_SIZE_K(256)>;
13	};
14
15	flash0: serial-flash@0 {
16		reg = <0x0 DT_SIZE_K(1024)>;
17	};
18
19	flash1: flash@1000000 {
20		compatible = "soc-nv-flash";
21		label = "FLASH_1";
22		reg = <0x01000000 DT_SIZE_K(1024)>;
23	};
24};
25