mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-17 11:42:21 +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_NRF51822_QFAA CONFIG_SOC_NRF51822_QFAB CONFIG_SOC_NRF51822_QFAC CONFIG_SOC_NRF52810_QFAA CONFIG_SOC_NRF52832_QFAA CONFIG_SOC_NRF52832_CIAA CONFIG_SOC_NRF52832_QFAB CONFIG_SOC_NRF52840_QIAA Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
21 lines
307 B
Plaintext
21 lines
307 B
Plaintext
/*
|
|
* Copyright (c) 2018 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
#include <nordic/nrf52832.dtsi>
|
|
|
|
/ {
|
|
flash-controller@4001E000 {
|
|
flash0: flash@0 {
|
|
reg = <0x00000000 DT_SIZE_K(256)>;
|
|
};
|
|
};
|
|
|
|
sram0: memory@20000000 {
|
|
reg = <0x20000000 DT_SIZE_K(32)>;
|
|
};
|
|
};
|