-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathKconfig
More file actions
120 lines (94 loc) · 1.94 KB
/
Copy pathKconfig
File metadata and controls
120 lines (94 loc) · 1.94 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# SPDX-License-Identifier: GPL-2.0-or-later
choice
prompt "Architecture Select"
config ARCH_ARM
bool "ARM"
select ARCH_32BIT
select ARCH_LITTLE_ENDIAN
select ARCH_HAS_MMU
config ARCH_CSKY
bool "C-SKY"
select ARCH_32BIT
select ARCH_LITTLE_ENDIAN
select ARCH_HAS_MMU
select ARCH_HAS_IOMAP
config ARCH_X86_32
bool "X86"
select ARCH_X86
select ARCH_32BIT
select ARCH_LITTLE_ENDIAN
select ARCH_HAS_HUGE_PMD
select ARCH_HAS_MMU
select ARCH_HAS_PMIO
select ARCH_HAS_KASAN
select ARCH_HAS_CPU_RELAX
select ARCH_HAS_CPU_IDLE
select ARCH_HAS_STACKPROTECTOR
select GENERIC_MPIO
select LIBGCC_DIVDI3
config ARCH_X86_64
bool "X86_64"
select ARCH_X86
select ARCH_64BIT
select ARCH_HAS_INT128
select ARCH_LITTLE_ENDIAN
select ARCH_HAS_HUGE_PMD
select ARCH_HAS_HUGE_PUD
select ARCH_HAS_MMU
select ARCH_HAS_PMIO
select ARCH_HAS_KASAN
select ARCH_HAS_CPU_RELAX
select ARCH_HAS_CPU_IDLE
select ARCH_HAS_STACKPROTECTOR
select PGTABLE_LEVEL5
select GENERIC_MPIO
config ARCH_XTENSA
bool "Xtensa"
select ARCH_32BIT
select CPU_LITTLE_ENDIAN
endchoice
source "arch/arm/Kconfig"
source "arch/csky/Kconfig"
source "arch/x86/Kconfig"
source "arch/xtensa/Kconfig"
# Architecture supported
config ARCH_X86
bool
# CPU Wide
config ARCH_32BIT
bool
config ARCH_64BIT
bool
config ARCH_HAS_INT128
bool
# Endianness
config ARCH_LITTLE_ENDIAN
bool
config ARCH_BIG_ENDIAN
bool
# Stack Direction
config ARCH_STACK_GROWUP
bool
# Memory Management
config ARCH_HAS_HUGE_PMD
bool
config ARCH_HAS_HUGE_PUD
bool
config ARCH_HAS_HUGE_P4D
bool
config ARCH_HAS_HUGE_PGD
bool
config ARCH_HAS_MMU
bool
config ARCH_HAS_PMIO
bool
config ARCH_HAS_IOMAP
bool
config ARCH_HAS_KASAN
bool
config ARCH_HAS_CPU_RELAX
bool
config ARCH_HAS_CPU_IDLE
bool
config ARCH_HAS_STACKPROTECTOR
bool