1# Copyright 2024 NXP 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_SERIES_IMX8X 5 6if SOC_MIMX8QX6_ADSP 7 8config SYS_CLOCK_HW_CYCLES_PER_SEC 9 default 640000000 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 38# To prevent test uses TEST_LOGGING_MINIMAL 39config TEST_LOGGING_DEFAULTS 40 default n 41 depends on TEST 42 43endif # SOC_MIMX8QX6_ADSP 44 45endif # SOC_SERIES_IMX8X 46