blob: e7f1a2993f780ab89795a73c8b2e9bd71bdd2ed6 [file] [log] [blame]
Jonas Bonnf8c4a272011-06-04 21:52:05 +03001#
2# For a description of the syntax of this configuration file,
Paul Bolle395cf962011-08-15 02:02:26 +02003# see Documentation/kbuild/kconfig-language.txt.
Jonas Bonnf8c4a272011-06-04 21:52:05 +03004#
5
6config OPENRISC
7 def_bool y
8 select OF
9 select OF_EARLY_FLATTREE
Jonas Bonnb4c4c6e2012-04-06 12:52:54 +020010 select IRQ_DOMAIN
Jonas Bonnf8c4a272011-06-04 21:52:05 +030011 select HAVE_MEMBLOCK
12 select ARCH_WANT_OPTIONAL_GPIOLIB
13 select HAVE_ARCH_TRACEHOOK
14 select HAVE_GENERIC_HARDIRQS
15 select GENERIC_IRQ_CHIP
16 select GENERIC_IRQ_PROBE
17 select GENERIC_IRQ_SHOW
18 select GENERIC_IOMAP
Ben Hutchings9f13a1f2012-01-10 03:04:32 +000019 select GENERIC_CPU_DEVICES
Richard Weinberger0662d332012-03-02 01:55:11 +010020 select GENERIC_ATOMIC64
Anna-Maria Gleixner5bf8f6b2012-05-18 16:45:51 +000021 select GENERIC_CLOCKEVENTS
Jonas Bonn603d6632012-05-25 08:24:49 +020022 select GENERIC_STRNCPY_FROM_USER
Jonas Bonnb48b2c32012-05-27 10:25:47 +020023 select GENERIC_STRNLEN_USER
David Howells786d35d2012-09-28 14:31:03 +093024 select MODULES_USE_ELF_RELA
Jonas Bonncbf23cf2012-10-19 18:07:44 +020025 select GENERIC_KERNEL_THREAD
26 select GENERIC_KERNEL_EXECVE
Jonas Bonnf8c4a272011-06-04 21:52:05 +030027
28config MMU
29 def_bool y
30
Jonas Bonnf8c4a272011-06-04 21:52:05 +030031config SYMBOL_PREFIX
32 string
33 default ""
34
35config HAVE_DMA_ATTRS
36 def_bool y
37
38config UID16
39 def_bool y
40
41config RWSEM_GENERIC_SPINLOCK
42 def_bool y
43
44config RWSEM_XCHGADD_ALGORITHM
45 def_bool n
46
47config GENERIC_HWEIGHT
48 def_bool y
49
Jonas Bonnf8c4a272011-06-04 21:52:05 +030050config NO_IOPORT
51 def_bool y
52
53config GENERIC_GPIO
54 def_bool y
55
Jonas Bonnf8c4a272011-06-04 21:52:05 +030056config TRACE_IRQFLAGS_SUPPORT
57 def_bool y
58
59# For now, use generic checksum functions
60#These can be reimplemented in assembly later if so inclined
61config GENERIC_CSUM
62 def_bool y
63
64config GENERIC_FIND_NEXT_BIT
65 def_bool y
66
67source "init/Kconfig"
68
69
70menu "Processor type and features"
71
72choice
73 prompt "Subarchitecture"
74 default OR1K_1200
75
76config OR1K_1200
77 bool "OR1200"
78 help
79 Generic OpenRISC 1200 architecture
80
81endchoice
82
83config OPENRISC_BUILTIN_DTB
84 string "Builtin DTB"
85 default ""
86
87menu "Class II Instructions"
88
89config OPENRISC_HAVE_INST_FF1
90 bool "Have instruction l.ff1"
91 default y
92 help
93 Select this if your implementation has the Class II instruction l.ff1
94
95config OPENRISC_HAVE_INST_FL1
96 bool "Have instruction l.fl1"
97 default y
98 help
99 Select this if your implementation has the Class II instruction l.fl1
100
101config OPENRISC_HAVE_INST_MUL
102 bool "Have instruction l.mul for hardware multiply"
103 default y
104 help
105 Select this if your implementation has a hardware multiply instruction
106
107config OPENRISC_HAVE_INST_DIV
108 bool "Have instruction l.div for hardware divide"
109 default y
110 help
111 Select this if your implementation has a hardware divide instruction
112endmenu
113
114
Jonas Bonnf8c4a272011-06-04 21:52:05 +0300115source kernel/Kconfig.hz
116source kernel/Kconfig.preempt
117source "mm/Kconfig"
118
119config OPENRISC_NO_SPR_SR_DSX
120 bool "use SPR_SR_DSX software emulation" if OR1K_1200
121 default y
122 help
123 SPR_SR_DSX bit is status register bit indicating whether
124 the last exception has happened in delay slot.
125
126 OpenRISC architecture makes it optional to have it implemented
127 in hardware and the OR1200 does not have it.
128
129 Say N here if you know that your OpenRISC processor has
130 SPR_SR_DSX bit implemented. Say Y if you are unsure.
131
132config CMDLINE
133 string "Default kernel command string"
134 default ""
135 help
136 On some architectures there is currently no way for the boot loader
137 to pass arguments to the kernel. For these architectures, you should
138 supply some command-line options at build time by entering them
139 here.
140
141menu "Debugging options"
142
143config DEBUG_STACKOVERFLOW
144 bool "Check for kernel stack overflow"
145 default y
146 help
Masanari Iida6b2aac42012-04-14 00:14:11 +0900147 Make extra checks for space available on stack in some
Jonas Bonnf8c4a272011-06-04 21:52:05 +0300148 critical functions. This will cause kernel to run a bit slower,
149 but will catch most of kernel stack overruns and exit gracefuly.
150
151 Say Y if you are unsure.
152
153config JUMP_UPON_UNHANDLED_EXCEPTION
154 bool "Try to die gracefully"
155 default y
156 help
157 Now this puts kernel into infinite loop after first oops. Till
158 your kernel crashes this doesn't have any influence.
159
160 Say Y if you are unsure.
161
Jonas Bonnf8c4a272011-06-04 21:52:05 +0300162config OPENRISC_ESR_EXCEPTION_BUG_CHECK
163 bool "Check for possible ESR exception bug"
164 default n
165 help
166 This option enables some checks that might expose some problems
167 in kernel.
168
169 Say N if you are unsure.
170
171endmenu
172
173endmenu
174
175menu "Executable file formats"
176
177source "fs/Kconfig.binfmt"
178
179endmenu
180
181source "net/Kconfig"
182
183source "drivers/Kconfig"
184
185source "fs/Kconfig"
186
187source "security/Kconfig"
188
189source "crypto/Kconfig"
190
191source "lib/Kconfig"
192
193menu "Kernel hacking"
194
195source "lib/Kconfig.debug"
196
197endmenu