mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 03:42:33 +00:00
To move forward and remove use of Kconfig in dts files lets just create SoC specific dtsi files that the boards can include. This lets us remove: CONFIG_SOC_CC3220SF CONFIG_SOC_MSP432P401R Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
25 lines
387 B
Plaintext
25 lines
387 B
Plaintext
/*
|
|
* Copyright (c) 2018 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
#include <ti/cc32xx.dtsi>
|
|
|
|
/ {
|
|
sram0: memory@20000000 {
|
|
reg = <0x20000000 DT_SIZE_K(256)>;
|
|
};
|
|
|
|
flash0: serial-flash@0 {
|
|
reg = <0x0 DT_SIZE_K(1024)>;
|
|
};
|
|
|
|
flash1: flash@1000000 {
|
|
compatible = "soc-nv-flash";
|
|
label = "FLASH_1";
|
|
reg = <0x01000000 DT_SIZE_K(1024)>;
|
|
};
|
|
};
|