1# Copyright (c) 2021 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_SERIES_NXP_IMX8M
5
6config SOC_SERIES
7	string
8	default "imx8m"
9
10config SOC_TOOLCHAIN_NAME
11	string
12	default "nxp_imx8m_adsp"
13
14# if SOC_MIMX8M_ADSP
15
16config SOC
17	string
18	default "mimx8ml8"
19
20config SMP
21	default n
22
23config XTENSA_TIMER
24	default y
25
26config SYS_CLOCK_HW_CYCLES_PER_SEC
27	default 800000000 if XTENSA_TIMER
28
29config SYS_CLOCK_TICKS_PER_SEC
30	default 50000
31
32config KERNEL_ENTRY
33	default "__start"
34
35config MULTI_LEVEL_INTERRUPTS
36	default n
37
38config 2ND_LEVEL_INTERRUPTS
39	default n
40
41config DYNAMIC_INTERRUPTS
42	default y
43
44config LOG
45	default y
46
47# To prevent test uses TEST_LOGGING_MINIMAL
48config TEST_LOGGING_DEFAULTS
49	default n
50	depends on TEST
51
52# endif # SOC_MIMX8M_ADSP
53
54endif # SOC_SERIES_NXP_IMX8M
55