1# Copyright (c) 2024 Intel Corporation 2# SPDX-License-Identifier: Apache-2.0 3 4 5if SOC_INTEL_ACE30 6 7config MP_MAX_NUM_CPUS 8 default 5 9 10config SYS_CLOCK_HW_CYCLES_PER_SEC 11 default 442368000 if XTENSA_TIMER 12 default 1000000 if INTEL_ADSP_SIM 13 default 38400000 if INTEL_ADSP_TIMER 14 15config XTENSA_CCOUNT_HZ 16 default 442368000 17 18config CPU_HAS_MMU 19 def_bool y 20 21config XTENSA_MMU 22 def_bool y 23 24config XTENSA_MMU_NUM_L2_TABLES 25 # Need to have enough to accommodate samples and tests. 26 # Also need to have some room for future expansions or 27 # else we will be chasing changes all the time. 28 default 64 29 30endif 31