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