mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-21 08:55:22 +00:00
Change code from using now deprecated DT_<COMPAT>_<INSTANCE>_<PROP> defines to using DT_INST_<INSTANCE>_<COMPAT>_<PROP>. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
13 lines
411 B
C
13 lines
411 B
C
/* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
/* SoC level DTS fixup file */
|
|
|
|
/* CCM configuration */
|
|
#define DT_DCCM_BASE_ADDRESS DT_ARC_DCCM_80000000_BASE_ADDRESS
|
|
#define DT_DCCM_SIZE (DT_ARC_DCCM_80000000_SIZE >> 10)
|
|
|
|
#define DT_ICCM_BASE_ADDRESS DT_INST_0_ARC_ICCM_BASE_ADDRESS
|
|
#define DT_ICCM_SIZE (DT_INST_0_ARC_ICCM_SIZE >> 10)
|
|
|
|
/* End of SoC Level DTS fixup file */
|