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/stm32f407.dtsi> 9 10/ { 11 ccm0: memory@10000000 { 12 compatible = "zephyr,memory-region", "st,stm32-ccm"; 13 reg = <0x10000000 DT_SIZE_K(64)>; 14 zephyr,memory-region = "CCM"; 15 }; 16 17 sram0: memory@20000000 { 18 reg = <0x20000000 DT_SIZE_K(128)>; 19 }; 20 21 soc { 22 flash-controller@40023c00 { 23 flash0: flash@8000000 { 24 reg = <0x08000000 DT_SIZE_K(1024)>; 25 }; 26 }; 27 }; 28}; 29