1# Intel CAVS SoC family default configuration options
2#
3# Copyright (c) 2020-2024 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6if SOC_FAMILY_INTEL_ADSP
7
8rsource "*/Kconfig.defconfig.series"
9
10# A workaround for HWMv2 to recover SOF arch/xtensa defaults overridden by arch/host.
11if SOF
12config CORE_COUNT
13	int
14	default MP_MAX_NUM_CPUS
15endif
16
17config XTENSA_RPO_CACHE
18	def_bool y
19
20# console can't handle the amount of data coming from many tests, so introduce
21# a delay beween testcases.
22if ZTEST
23config ZTEST_TEST_DELAY_MS
24	default 100
25endif
26
27if XTENSA_RPO_CACHE
28config XTENSA_CACHED_REGION
29	default 5
30
31config XTENSA_UNCACHED_REGION
32	default 4
33
34endif # XTENSA_RPO_CACHE
35
36config CONSOLE
37	def_bool y
38
39if CONSOLE
40config WINSTREAM_CONSOLE
41	def_bool y
42endif
43
44config CACHE_MANAGEMENT
45	def_bool y
46
47choice CACHE_TYPE
48	default ARCH_CACHE
49endchoice
50
51config DCACHE_LINE_SIZE
52	default 64
53
54endif # SOC_FAMILY_INTEL_ADSP
55