| # Copyright (c) 2024 Intel Corporation |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| |
| if SOC_INTEL_ACE30 |
| |
| config MP_MAX_NUM_CPUS |
| default 5 |
| |
| config SYS_CLOCK_HW_CYCLES_PER_SEC |
| default 442368000 if XTENSA_TIMER |
| default 1000000 if INTEL_ADSP_SIM |
| default 38400000 if INTEL_ADSP_TIMER |
| |
| config XTENSA_CCOUNT_HZ |
| default 442368000 |
| |
| config CPU_HAS_MMU |
| def_bool y |
| |
| config XTENSA_MMU |
| def_bool y |
| |
| config XTENSA_MMU_NUM_L2_TABLES |
| # Need to have enough to accommodate samples and tests. |
| # Also need to have some room for future expansions or |
| # else we will be chasing changes all the time. |
| default 64 |
| |
| endif |