]> Pileus Git - ~andy/linux/blob - arch/openrisc/Kconfig
Merge tag 'stable/for-linus-3.8-rc0-tag' of git://git.kernel.org/pub/scm/linux/kernel...
[~andy/linux] / arch / openrisc / Kconfig
1 #
2 # For a description of the syntax of this configuration file,
3 # see Documentation/kbuild/kconfig-language.txt.
4 #
5
6 config OPENRISC
7         def_bool y
8         select OF
9         select OF_EARLY_FLATTREE
10         select IRQ_DOMAIN
11         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
19         select GENERIC_CPU_DEVICES
20         select GENERIC_ATOMIC64
21         select GENERIC_CLOCKEVENTS
22         select GENERIC_STRNCPY_FROM_USER
23         select GENERIC_STRNLEN_USER
24         select MODULES_USE_ELF_RELA
25         select GENERIC_KERNEL_THREAD
26         select GENERIC_KERNEL_EXECVE
27
28 config MMU
29         def_bool y
30
31 config SYMBOL_PREFIX
32         string
33         default ""
34
35 config HAVE_DMA_ATTRS
36         def_bool y
37
38 config UID16
39         def_bool y
40
41 config RWSEM_GENERIC_SPINLOCK
42         def_bool y
43
44 config RWSEM_XCHGADD_ALGORITHM
45         def_bool n
46
47 config GENERIC_HWEIGHT
48         def_bool y
49
50 config NO_IOPORT
51         def_bool y
52
53 config GENERIC_GPIO
54         def_bool y
55
56 config 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
61 config GENERIC_CSUM
62         def_bool y
63
64 config GENERIC_FIND_NEXT_BIT
65         def_bool y
66
67 source "init/Kconfig"
68
69
70 menu "Processor type and features"
71
72 choice
73         prompt "Subarchitecture"
74         default OR1K_1200
75
76 config OR1K_1200
77         bool "OR1200"
78         help
79           Generic OpenRISC 1200 architecture
80
81 endchoice
82
83 config OPENRISC_BUILTIN_DTB
84         string "Builtin DTB"
85         default ""
86
87 menu "Class II Instructions"
88
89 config 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
95 config 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
101 config 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
107 config 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
112 endmenu
113
114
115 source kernel/Kconfig.hz
116 source kernel/Kconfig.preempt
117 source "mm/Kconfig"
118
119 config 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
132 config 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
141 menu "Debugging options"
142
143 config DEBUG_STACKOVERFLOW
144         bool "Check for kernel stack overflow"
145         default y
146         help
147           Make extra checks for space available on stack in some
148           critical functions. This will cause kernel to run a bit slower,
149           but will catch most of kernel stack overruns and exit gracefully.
150
151           Say Y if you are unsure.
152
153 config 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
162 config 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
171 endmenu
172
173 endmenu
174
175 menu "Executable file formats"
176
177 source "fs/Kconfig.binfmt"
178
179 endmenu
180
181 source "net/Kconfig"
182
183 source "drivers/Kconfig"
184
185 source "fs/Kconfig"
186
187 source "security/Kconfig"
188
189 source "crypto/Kconfig"
190
191 source "lib/Kconfig"
192
193 menu "Kernel hacking"
194
195 source "lib/Kconfig.debug"
196
197 endmenu