zephyr/dts/arm/atmel/samd5xx20.dtsi
Kumar Gala c5153a2d2a dts: atmel: sam: cleanup flash / sram nodes
Move flash node under flash controller and sram nodes under soc as it
is for most SoC dts files.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2020-04-09 15:19:21 -05:00

22 lines
316 B
Text

/*
* Copyright (c) 2019 ML!PA Consulting GmbH
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <mem.h>
#include <atmel/samd5x.dtsi>
/ {
soc {
nvmctrl@41004000 {
flash0: flash@0 {
reg = <0x0 DT_SIZE_K(1024)>;
};
};
sram0: memory@20000000 {
reg = <0x20000000 DT_SIZE_K(256)>;
};
};
};