2020-03-04 08:29:13 +09:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
if ARCH_INTEL64
|
|
|
|
comment "intel64 Configuration Options"
|
|
|
|
|
|
|
|
config ARCH_INTEL64_HAVE_TSC_DEADLINE
|
2021-12-14 09:52:49 +02:00
|
|
|
bool "TSC DEADLINE timer support"
|
|
|
|
default y
|
2020-03-04 08:29:13 +09:00
|
|
|
---help---
|
|
|
|
Select to enable the use of TSC DEADLINE timer of x86_64
|
|
|
|
|
|
|
|
if ARCH_INTEL64_HAVE_TSC_DEADLINE
|
|
|
|
|
|
|
|
config ARCH_INTEL64_CORE_FREQ_KHZ
|
2021-12-14 09:52:49 +02:00
|
|
|
int "CPU Core frequency in kHz"
|
|
|
|
default 2000000
|
2020-03-04 08:29:13 +09:00
|
|
|
---help---
|
|
|
|
The CPU Core frequency (without Turbo boost). This is used
|
|
|
|
to set the TSC deadline timer frequency.
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !ARCH_INTEL64_HAVE_TSC_DEADLINE
|
|
|
|
|
|
|
|
config ARCH_INTEL64_APIC_FREQ_KHZ
|
2021-12-14 09:52:49 +02:00
|
|
|
int "APIC timer frequency in kHz"
|
|
|
|
default 2000000
|
2020-03-04 08:29:13 +09:00
|
|
|
---help---
|
|
|
|
The APIC timer frequency. This is used to set the APIC timer
|
|
|
|
frequency in case of no TSC DEADLINE timer is available.
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2020-05-05 16:14:00 +09:00
|
|
|
config ARCH_INTEL64_HAVE_XSAVE
|
2021-12-14 09:52:49 +02:00
|
|
|
bool "XSAVE support"
|
|
|
|
default y
|
2020-03-04 08:29:13 +09:00
|
|
|
---help---
|
2020-11-28 11:48:10 +08:00
|
|
|
Select to enable the use of XSAVE and FPU/SSE/AVX functions
|
2020-05-05 16:14:00 +09:00
|
|
|
of x86_64
|
2020-03-04 08:29:13 +09:00
|
|
|
|
|
|
|
config ARCH_INTEL64_HAVE_PCID
|
2021-12-14 09:52:49 +02:00
|
|
|
bool "PCID support"
|
|
|
|
default y
|
2020-03-04 08:29:13 +09:00
|
|
|
---help---
|
|
|
|
Select to enable the use of PCID to reduce TLB flush
|
|
|
|
|
|
|
|
config ARCH_INTEL64_HAVE_RDRAND
|
2021-12-14 09:52:49 +02:00
|
|
|
bool "RDRAND support"
|
|
|
|
default y
|
2020-03-04 08:29:13 +09:00
|
|
|
---help---
|
|
|
|
Select to enable the use of RDRAND for /dev/random
|
|
|
|
|
2020-05-05 15:35:47 +09:00
|
|
|
config ARCH_INTEL64_DISABLE_INT_INIT
|
2021-12-14 09:52:49 +02:00
|
|
|
bool "Disable Initialization of 8259/APIC/IO-APIC"
|
|
|
|
default n
|
2020-05-05 15:35:47 +09:00
|
|
|
---help---
|
2020-11-28 11:48:10 +08:00
|
|
|
Select to disable all initialization related to interrupt
|
2020-05-05 15:35:47 +09:00
|
|
|
controllers. This is necessary if those are already
|
|
|
|
initialized, i.e. Jailhouse system.
|
|
|
|
|
2020-03-04 08:29:13 +09:00
|
|
|
endif
|