1# Copyright (c) 2020,2022 Intel Corporation 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_INTEL_CAVS_V25 5 6config SOC_TOOLCHAIN_NAME 7 string 8 default "intel_tgl_adsp" 9 10config SOC 11 default "intel_tgl_adsp" 12 13# For backward compatibility, to be removed 14config SOC_SERIES_INTEL_CAVS_V25 15 def_bool y 16 17# Hardware has four cores, limited to two pending test fixes 18config MP_MAX_NUM_CPUS 19 default 2 20 21config SYS_CLOCK_HW_CYCLES_PER_SEC 22 default 400000000 if XTENSA_TIMER 23 default 38400000 if INTEL_ADSP_TIMER 24 25config CAVS_ICTL_0_OFFSET 26 default 6 27config CAVS_ICTL_1_OFFSET 28 default 10 29config CAVS_ICTL_2_OFFSET 30 default 13 31config CAVS_ICTL_3_OFFSET 32 default 16 33 34config 2ND_LVL_INTR_00_OFFSET 35 default CAVS_ICTL_0_OFFSET 36config 2ND_LVL_INTR_01_OFFSET 37 default CAVS_ICTL_1_OFFSET 38config 2ND_LVL_INTR_02_OFFSET 39 default CAVS_ICTL_2_OFFSET 40config 2ND_LVL_INTR_03_OFFSET 41 default CAVS_ICTL_3_OFFSET 42 43config MAX_IRQ_PER_AGGREGATOR 44 default 32 45config NUM_2ND_LEVEL_AGGREGATORS 46 default 4 47config 2ND_LVL_ISR_TBL_OFFSET 48 default 21 49 50config CAVS_ISR_TBL_OFFSET 51 default 2ND_LVL_ISR_TBL_OFFSET 52 53if KERNEL_VM_SUPPORT 54 55config KERNEL_VM_SIZE 56 default 0x800000 57 58endif 59 60config ADSP_NEED_POWER_ON_CACHE 61 default y 62 63endif # SOC_INTEL_CAVS_V25 64