summaryrefslogtreecommitdiff
path: root/arch/x86/Kconfig
blob: eeb999cd350ef04878fb39c648ba0a259db6394d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
menu "Architecture-specific options"

config 64BITS
	bool "64-bits kernel" if ARCH = "x86"
	default ARCH != "i386"
	---help---
	  Build a 64-bits kernel.

config X86_PAE
	bool "Enable PAE (Physical Address Extension)"
	depends on X86_32
	---help---
	  PAE allows addressing physical memory beyond 4 GiB at the cost
	  of more pagetable lookup and memory overhead.

config X86_PMU_AMD
	bool "Enable AMD PMU driver"
	select PERFMON
	default n
	---help---
	  Enable support for the performance monitoring unit on AMD
	  processors.

	  If unsure, disable.

config X86_PMU_INTEL
	bool "Enable Intel PMU driver"
	select PERFMON
	default n
	---help---
	  Enable support for the performance monitoring unit on Intel
	  processors.

	  If unsure, disable.

endmenu

config X86_32
	def_bool y
	depends on !64BITS

config X86_64
	def_bool y
	depends on 64BITS

config X86
	def_bool y

config LATOMIC_REPLACE_ATOMIC_ON_UP
	def_bool y

config SUBARCH
	string
	default "i386" if X86_32
	default "amd64" if X86_64