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