1# Copyright 2024 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_SERIES_IMX8M
5
6if SOC_MIMX8ML8_ADSP
7
8config SYS_CLOCK_HW_CYCLES_PER_SEC
9	default 800000000
10
11config SYS_CLOCK_TICKS_PER_SEC
12	default 50000
13
14config DCACHE_LINE_SIZE
15	default 128
16
17config GEN_IRQ_VECTOR_TABLE
18	default n
19
20config CACHE_MANAGEMENT
21	default y
22
23config SMP
24	default n
25
26config XTENSA_TIMER
27	default y
28
29config KERNEL_ENTRY
30	default "__start"
31
32config MULTI_LEVEL_INTERRUPTS
33	default n
34
35config 2ND_LEVEL_INTERRUPTS
36	default n
37
38config DYNAMIC_INTERRUPTS
39	default y
40
41# To prevent test uses TEST_LOGGING_MINIMAL
42config TEST_LOGGING_DEFAULTS
43	default n
44	depends on TEST
45
46endif # SOC_MIMX8ML8_ADSP
47
48endif # SOC_SERIES_IMX8M
49