xref: /linux/arch/openrisc/Kconfig (revision 7ce8716e2769dc08eccdf2b9385db6b0346d2f0d)
1b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0
2f8c4a270SJonas Bonn#
3f8c4a270SJonas Bonn# For a description of the syntax of this configuration file,
4cd238effSMauro Carvalho Chehab# see Documentation/kbuild/kconfig-language.rst.
5f8c4a270SJonas Bonn#
6f8c4a270SJonas Bonn
7f8c4a270SJonas Bonnconfig OPENRISC
8f8c4a270SJonas Bonn	def_bool y
9942fa985SYury Norov	select ARCH_32BIT_OFF_T
10a4a4d11aSChristoph Hellwig	select ARCH_HAS_DMA_SET_UNCACHED
11a4a4d11aSChristoph Hellwig	select ARCH_HAS_DMA_CLEAR_UNCACHED
125600779eSChristoph Hellwig	select ARCH_HAS_SYNC_DMA_FOR_DEVICE
13134502abSMasahiro Yamada	select GENERIC_BUILTIN_DTB
147f435e42SStafford Horne	select COMMON_CLK
15f8c4a270SJonas Bonn	select OF
16f8c4a270SJonas Bonn	select OF_EARLY_FLATTREE
17b4c4c6eeSJonas Bonn	select IRQ_DOMAIN
188636f344SLinus Walleij	select GPIOLIB
19f8c4a270SJonas Bonn	select HAVE_ARCH_TRACEHOOK
20c0fcaf55SJonas Bonn	select SPARSE_IRQ
21f8c4a270SJonas Bonn	select GENERIC_IRQ_CHIP
22f8c4a270SJonas Bonn	select GENERIC_IRQ_PROBE
23f8c4a270SJonas Bonn	select GENERIC_IRQ_SHOW
24ded2ee36SStafford Horne	select GENERIC_PCI_IOMAP
259b994429SBaoquan He	select GENERIC_IOREMAP
269f13a1fdSBen Hutchings	select GENERIC_CPU_DEVICES
27ded2ee36SStafford Horne	select HAVE_PCI
2804ea1e91SAndrew Morton	select HAVE_UID16
295394f1e9SArnd Bergmann	select HAVE_PAGE_SIZE_8KB
30*7ce8716eSMichael Jeanson	select HAVE_REGS_AND_STACK_ACCESS_API
310662d33aSRichard Weinberger	select GENERIC_ATOMIC64
328e6d08e0SStefan Kristiansson	select GENERIC_CLOCKEVENTS_BROADCAST
338e6d08e0SStefan Kristiansson	select GENERIC_SMP_IDLE_THREAD
34786d35d4SDavid Howells	select MODULES_USE_ELF_RELA
35d1a1dc0bSDave Hansen	select HAVE_DEBUG_STACKOVERFLOW
364db8e6d2SStefan Kristiansson	select OR1K_PIC
37fff7fb0bSZhaoxiu Zeng	select CPU_NO_EFFICIENT_FFS if !OPENRISC_HAVE_INST_FF1
38b5f82176SStafford Horne	select ARCH_USE_QUEUED_RWLOCKS
399b54470aSStafford Horne	select OMPIC if SMP
40ded2ee36SStafford Horne	select PCI_DOMAINS_GENERIC if PCI
41ded2ee36SStafford Horne	select PCI_MSI if PCI
42eecac38bSStafford Horne	select ARCH_WANT_FRAME_POINTERS
43c5ca4560SPalmer Dabbelt	select GENERIC_IRQ_MULTI_HANDLER
446137fed0SPeter Zijlstra	select MMU_GATHER_NO_RANGE if MMU
454aae683fSMasahiro Yamada	select TRACE_IRQFLAGS_SUPPORT
46f8c4a270SJonas Bonn
474c97a0c8SBabu Mogerconfig CPU_BIG_ENDIAN
484c97a0c8SBabu Moger	def_bool y
494c97a0c8SBabu Moger
50f8c4a270SJonas Bonnconfig MMU
51f8c4a270SJonas Bonn	def_bool y
52f8c4a270SJonas Bonn
53f8c4a270SJonas Bonnconfig GENERIC_HWEIGHT
54f8c4a270SJonas Bonn	def_bool y
55f8c4a270SJonas Bonn
56ce816fa8SUwe Kleine-Königconfig NO_IOPORT_MAP
57f8c4a270SJonas Bonn	def_bool y
58f8c4a270SJonas Bonn
59f8c4a270SJonas Bonn# For now, use generic checksum functions
60f8c4a270SJonas Bonn#These can be reimplemented in assembly later if so inclined
61f8c4a270SJonas Bonnconfig GENERIC_CSUM
62f8c4a270SJonas Bonn	def_bool y
63f8c4a270SJonas Bonn
64eecac38bSStafford Horneconfig STACKTRACE_SUPPORT
65eecac38bSStafford Horne	def_bool y
66eecac38bSStafford Horne
6778cdfb5cSStafford Horneconfig LOCKDEP_SUPPORT
6878cdfb5cSStafford Horne	def_bool  y
6978cdfb5cSStafford Horne
701037d186SStafford Horneconfig FIX_EARLYCON_MEM
711037d186SStafford Horne	def_bool y
721037d186SStafford Horne
73f8c4a270SJonas Bonnmenu "Processor type and features"
74f8c4a270SJonas Bonn
75f8c4a270SJonas Bonnchoice
76f8c4a270SJonas Bonn	prompt "Subarchitecture"
77f8c4a270SJonas Bonn	default OR1K_1200
78f8c4a270SJonas Bonn
79f8c4a270SJonas Bonnconfig OR1K_1200
80f8c4a270SJonas Bonn	bool "OR1200"
81f8c4a270SJonas Bonn	help
82f8c4a270SJonas Bonn	  Generic OpenRISC 1200 architecture
83f8c4a270SJonas Bonn
84f8c4a270SJonas Bonnendchoice
85f8c4a270SJonas Bonn
864ee93d80SJan Henrik Weinstockconfig DCACHE_WRITETHROUGH
874ee93d80SJan Henrik Weinstock	bool "Have write through data caches"
884ee93d80SJan Henrik Weinstock	default n
894ee93d80SJan Henrik Weinstock	help
904ee93d80SJan Henrik Weinstock	  Select this if your implementation features write through data caches.
914ee93d80SJan Henrik Weinstock	  Selecting 'N' here will allow the kernel to force flushing of data
924ee93d80SJan Henrik Weinstock	  caches at relevant times. Most OpenRISC implementations support write-
934ee93d80SJan Henrik Weinstock	  through data caches.
944ee93d80SJan Henrik Weinstock
954ee93d80SJan Henrik Weinstock	  If unsure say N here
964ee93d80SJan Henrik Weinstock
97134502abSMasahiro Yamadaconfig BUILTIN_DTB_NAME
98f8c4a270SJonas Bonn	string "Builtin DTB"
99f8c4a270SJonas Bonn	default ""
100f8c4a270SJonas Bonn
101f8c4a270SJonas Bonnmenu "Class II Instructions"
102f8c4a270SJonas Bonn
103f8c4a270SJonas Bonnconfig OPENRISC_HAVE_INST_FF1
104f8c4a270SJonas Bonn	bool "Have instruction l.ff1"
105f8c4a270SJonas Bonn	default y
106f8c4a270SJonas Bonn	help
107f8c4a270SJonas Bonn	  Select this if your implementation has the Class II instruction l.ff1
108f8c4a270SJonas Bonn
109f8c4a270SJonas Bonnconfig OPENRISC_HAVE_INST_FL1
110f8c4a270SJonas Bonn	bool "Have instruction l.fl1"
111f8c4a270SJonas Bonn	default y
112f8c4a270SJonas Bonn	help
113f8c4a270SJonas Bonn	  Select this if your implementation has the Class II instruction l.fl1
114f8c4a270SJonas Bonn
115f8c4a270SJonas Bonnconfig OPENRISC_HAVE_INST_MUL
116f8c4a270SJonas Bonn	bool "Have instruction l.mul for hardware multiply"
117f8c4a270SJonas Bonn	default y
118f8c4a270SJonas Bonn	help
119f8c4a270SJonas Bonn	  Select this if your implementation has a hardware multiply instruction
120f8c4a270SJonas Bonn
121f8c4a270SJonas Bonnconfig OPENRISC_HAVE_INST_DIV
122f8c4a270SJonas Bonn	bool "Have instruction l.div for hardware divide"
123f8c4a270SJonas Bonn	default y
124f8c4a270SJonas Bonn	help
125f8c4a270SJonas Bonn	  Select this if your implementation has a hardware divide instruction
12687e387acSStafford Horne
12787e387acSStafford Horneconfig OPENRISC_HAVE_INST_CMOV
12887e387acSStafford Horne	bool "Have instruction l.cmov for conditional move"
12987e387acSStafford Horne	default n
13087e387acSStafford Horne	help
13187e387acSStafford Horne	  This config enables gcc to generate l.cmov instructions when compiling
13287e387acSStafford Horne	  the kernel which in general will improve performance and reduce the
13387e387acSStafford Horne	  binary size.
13487e387acSStafford Horne
13587e387acSStafford Horne	  Select this if your implementation has support for the Class II
13687e387acSStafford Horne	  l.cmov conistional move instruction.
13787e387acSStafford Horne
13887e387acSStafford Horne	  Say N if you are unsure.
13987e387acSStafford Horne
14087e387acSStafford Horneconfig OPENRISC_HAVE_INST_ROR
14187e387acSStafford Horne	bool "Have instruction l.ror for rotate right"
14287e387acSStafford Horne	default n
14387e387acSStafford Horne	help
14487e387acSStafford Horne	  This config enables gcc to generate l.ror instructions when compiling
14587e387acSStafford Horne	  the kernel which in general will improve performance and reduce the
14687e387acSStafford Horne	  binary size.
14787e387acSStafford Horne
14887e387acSStafford Horne	  Select this if your implementation has support for the Class II
14987e387acSStafford Horne	  l.ror rotate right instruction.
15087e387acSStafford Horne
15187e387acSStafford Horne	  Say N if you are unsure.
15287e387acSStafford Horne
15387e387acSStafford Horneconfig OPENRISC_HAVE_INST_RORI
15487e387acSStafford Horne	bool "Have instruction l.rori for rotate right with immediate"
15587e387acSStafford Horne	default n
15687e387acSStafford Horne	help
15787e387acSStafford Horne	  This config enables gcc to generate l.rori instructions when compiling
15887e387acSStafford Horne	  the kernel which in general will improve performance and reduce the
15987e387acSStafford Horne	  binary size.
16087e387acSStafford Horne
16187e387acSStafford Horne	  Select this if your implementation has support for the Class II
16287e387acSStafford Horne	  l.rori rotate right with immediate instruction.
16387e387acSStafford Horne
16487e387acSStafford Horne	  Say N if you are unsure.
16587e387acSStafford Horne
16687e387acSStafford Horneconfig OPENRISC_HAVE_INST_SEXT
16787e387acSStafford Horne	bool "Have instructions l.ext* for sign extension"
16887e387acSStafford Horne	default n
16987e387acSStafford Horne	help
17087e387acSStafford Horne	  This config enables gcc to generate l.ext* instructions when compiling
17187e387acSStafford Horne	  the kernel which in general will improve performance and reduce the
17287e387acSStafford Horne	  binary size.
17387e387acSStafford Horne
17487e387acSStafford Horne	  Select this if your implementation has support for the Class II
17587e387acSStafford Horne	  l.exths, l.extbs, l.exthz and l.extbz size extend instructions.
17687e387acSStafford Horne
17787e387acSStafford Horne	  Say N if you are unsure.
17887e387acSStafford Horne
179f8c4a270SJonas Bonnendmenu
180f8c4a270SJonas Bonn
18134bbdcdcSStafford Horneconfig NR_CPUS
1828e6d08e0SStefan Kristiansson	int "Maximum number of CPUs (2-32)"
1838e6d08e0SStefan Kristiansson	range 2 32
1848e6d08e0SStefan Kristiansson	depends on SMP
1858e6d08e0SStefan Kristiansson	default "2"
1868e6d08e0SStefan Kristiansson
1878e6d08e0SStefan Kristianssonconfig SMP
1888e6d08e0SStefan Kristiansson	bool "Symmetric Multi-Processing support"
1898e6d08e0SStefan Kristiansson	help
1908e6d08e0SStefan Kristiansson	  This enables support for systems with more than one CPU. If you have
1918e6d08e0SStefan Kristiansson	  a system with only one CPU, say N. If you have a system with more
1928e6d08e0SStefan Kristiansson	  than one CPU, say Y.
1938e6d08e0SStefan Kristiansson
1948e6d08e0SStefan Kristiansson	  If you don't know what to do here, say N.
195f8c4a270SJonas Bonn
1961f33446dSStafford Horneconfig FPU
1971f33446dSStafford Horne	bool "FPU support"
1981f33446dSStafford Horne	default y
1991f33446dSStafford Horne	help
2001f33446dSStafford Horne	  Say N here if you want to disable all floating-point related procedures
2011f33446dSStafford Horne	  in the kernel and reduce binary size.
2021f33446dSStafford Horne
2031f33446dSStafford Horne	  If you don't know what to do here, say Y.
2041f33446dSStafford Horne
2058636a1f9SMasahiro Yamadasource "kernel/Kconfig.hz"
206f8c4a270SJonas Bonn
207f8c4a270SJonas Bonnconfig OPENRISC_NO_SPR_SR_DSX
208f8c4a270SJonas Bonn	bool "use SPR_SR_DSX software emulation" if OR1K_1200
209f8c4a270SJonas Bonn	default y
210f8c4a270SJonas Bonn	help
211f8c4a270SJonas Bonn	  SPR_SR_DSX bit is status register bit indicating whether
212f8c4a270SJonas Bonn	  the last exception has happened in delay slot.
213f8c4a270SJonas Bonn
214f8c4a270SJonas Bonn	  OpenRISC architecture makes it optional to have it implemented
215f8c4a270SJonas Bonn	  in hardware and the OR1200 does not have it.
216f8c4a270SJonas Bonn
217f8c4a270SJonas Bonn	  Say N here if you know that your OpenRISC processor has
218f8c4a270SJonas Bonn	  SPR_SR_DSX bit implemented. Say Y if you are unsure.
219f8c4a270SJonas Bonn
22091993c8cSStefan Kristianssonconfig OPENRISC_HAVE_SHADOW_GPRS
22191993c8cSStefan Kristiansson	bool "Support for shadow gpr files" if !SMP
22291993c8cSStefan Kristiansson	default y if SMP
22391993c8cSStefan Kristiansson	help
22491993c8cSStefan Kristiansson	  Say Y here if your OpenRISC processor features shadowed
22591993c8cSStefan Kristiansson	  register files. They will in such case be used as a
22691993c8cSStefan Kristiansson	  scratch reg storage on exception entry.
22791993c8cSStefan Kristiansson
22891993c8cSStefan Kristiansson	  On SMP systems, this feature is mandatory.
22991993c8cSStefan Kristiansson	  On a unicore system it's safe to say N here if you are unsure.
23091993c8cSStefan Kristiansson
231f8c4a270SJonas Bonnconfig CMDLINE
232f8c4a270SJonas Bonn	string "Default kernel command string"
233f8c4a270SJonas Bonn	default ""
234f8c4a270SJonas Bonn	help
235f8c4a270SJonas Bonn	  On some architectures there is currently no way for the boot loader
236f8c4a270SJonas Bonn	  to pass arguments to the kernel. For these architectures, you should
237f8c4a270SJonas Bonn	  supply some command-line options at build time by entering them
238f8c4a270SJonas Bonn	  here.
239f8c4a270SJonas Bonn
240f8c4a270SJonas Bonnmenu "Debugging options"
241f8c4a270SJonas Bonn
242f8c4a270SJonas Bonnconfig JUMP_UPON_UNHANDLED_EXCEPTION
243f8c4a270SJonas Bonn	bool "Try to die gracefully"
244f8c4a270SJonas Bonn	default y
245f8c4a270SJonas Bonn	help
246f8c4a270SJonas Bonn	  Now this puts kernel into infinite loop after first oops. Till
247f8c4a270SJonas Bonn	  your kernel crashes this doesn't have any influence.
248f8c4a270SJonas Bonn
249f8c4a270SJonas Bonn	  Say Y if you are unsure.
250f8c4a270SJonas Bonn
251f8c4a270SJonas Bonnconfig OPENRISC_ESR_EXCEPTION_BUG_CHECK
252f8c4a270SJonas Bonn	bool "Check for possible ESR exception bug"
253f8c4a270SJonas Bonn	default n
254f8c4a270SJonas Bonn	help
255f8c4a270SJonas Bonn	  This option enables some checks that might expose some problems
256f8c4a270SJonas Bonn	  in kernel.
257f8c4a270SJonas Bonn
258f8c4a270SJonas Bonn	  Say N if you are unsure.
259f8c4a270SJonas Bonn
260f8c4a270SJonas Bonnendmenu
261f8c4a270SJonas Bonn
262f8c4a270SJonas Bonnendmenu
263