1/* 2 * Copyright (c) 2022 Tomislav Milkovic 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <mem.h> 8#include <st/l4/stm32l486.dtsi> 9 10/ { 11 sram0: memory@20000000 { 12 reg = <0x20000000 DT_SIZE_K(96)>; 13 }; 14 sram1: memory@10000000 { 15 reg = <0x10000000 DT_SIZE_K(32)>; 16 }; 17 18 soc { 19 flash-controller@40022000 { 20 flash0: flash@8000000 { 21 reg = <0x08000000 DT_SIZE_K(1024)>; 22 }; 23 }; 24 }; 25}; 26