1/* 2 * Copyright (c) 2019 SEAL AG 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <mem.h> 8#include <nxp/nxp_kv5x.dtsi> 9 10/ { 11 /* 64KB ITCM @ 0, 64KB DTCM @ 20000000 */ 12 13 sram0: memory@20000000 { 14 compatible = "mmio-sram"; 15 reg = <0x20000000 DT_SIZE_K(64)>; 16 }; 17}; 18 19&ftfe { 20 flash0: flash@10000000 { 21 compatible = "soc-nv-flash"; 22 reg = <0x10000000 DT_SIZE_K(512)>; 23 erase-block-size = <DT_SIZE_K(8)>; 24 write-block-size = <8>; 25 }; 26}; 27