1/*
2 * Copyright (c) 2018 Linaro Limited
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <mem.h>
8#include <st/f4/stm32f429.dtsi>
9
10/ {
11	ccm0: memory@10000000 {
12		compatible = "st,stm32-ccm";
13		reg = <0x10000000 DT_SIZE_K(64)>;
14	};
15
16	sram0: memory@20000000 {
17		reg = <0x20000000 DT_SIZE_K(192)>;
18	};
19
20	soc {
21		flash-controller@40023c00 {
22			flash0: flash@8000000 {
23				reg = <0x08000000 DT_SIZE_K(2048)>;
24			};
25		};
26	};
27};
28