mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 12:46:38 +00:00
Towards cleaning up (and hopefully removing dts_fixup.h in the near future). We need to move the handling of different names for the irq flag propety into the driver and out of dts_fixup.h. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
17 lines
480 B
C
17 lines
480 B
C
/*
|
|
* Copyright (c) 2018 Synopsys, Inc. All rights reserved.
|
|
*
|
|
* 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_ARC_ICCM_60000000_BASE_ADDRESS
|
|
#define DT_ICCM_SIZE (DT_ARC_ICCM_60000000_SIZE >> 10)
|
|
|
|
/* End of SoC Level DTS fixup file */
|