1# Intel ISH family default configuration options
2#
3# Copyright (c) 2023-2024 Intel Corporation
4#
5# SPDX-License-Identifier: Apache-2.0
6
7if SOC_FAMILY_INTEL_ISH
8
9config SYS_CLOCK_HW_CYCLES_PER_SEC
10	default 32768 if HPET_TIMER
11	default 96000000 if APIC_TIMER_TSC && SOC_INTEL_ISH_5_4_1
12	default 100000000 if APIC_TIMER_TSC && !SOC_INTEL_ISH_5_4_1
13
14config X86_VERY_EARLY_CONSOLE
15	default n
16
17config SRAM_OFFSET
18	hex
19	default 0x0
20
21# Target platforms are not PC-compatible
22# (e.g. without BIOS, ACPI, CMOS, etc.).
23config X86_PC_COMPATIBLE
24	default n
25
26if APIC_TIMER_TSC
27
28config DYNAMIC_INTERRUPTS
29	default y
30
31if SOC_INTEL_ISH_5_4_1
32
33config APIC_TIMER_TSC_N
34	default 1280
35
36config APIC_TIMER_TSC_M
37	default 256
38endif
39endif
40
41rsource "*/Kconfig.defconfig.series"
42
43endif # SOC_FAMILY_INTEL_ISH
44