blob: fff419f3d7574c16e5f965559ad98d449d5180f1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Paul Mundt4690bdc2007-11-09 13:45:42 +09002menu "Processor features"
3
4choice
Masanari Iida6b2aac42012-04-14 00:14:11 +09005 prompt "Endianness selection"
Paul Mundt4690bdc2007-11-09 13:45:42 +09006 default CPU_LITTLE_ENDIAN
7 help
8 Some SuperH machines can be configured for either little or big
9 endian byte order. These modes require different kernels.
10
11config CPU_LITTLE_ENDIAN
12 bool "Little Endian"
13
14config CPU_BIG_ENDIAN
15 bool "Big Endian"
16
17endchoice
18
19config SH_FPU
Harvey Harrisond7ef4fb2007-12-11 13:49:35 +090020 def_bool y
21 prompt "FPU support"
Paul Mundt4690bdc2007-11-09 13:45:42 +090022 depends on CPU_HAS_FPU
Paul Mundt4690bdc2007-11-09 13:45:42 +090023 help
24 Selecting this option will enable support for SH processors that
25 have FPU units (ie, SH77xx).
26
27 This option must be set in order to enable the FPU.
28
29config SH_FPU_EMU
Harvey Harrisond7ef4fb2007-12-11 13:49:35 +090030 def_bool n
31 prompt "FPU emulation support"
Kees Cook0d57af12013-01-16 18:53:26 -080032 depends on !SH_FPU
Paul Mundt4690bdc2007-11-09 13:45:42 +090033 help
34 Selecting this option will enable support for software FPU emulation.
35 Most SH-3 users will want to say Y here, whereas most SH-4 users will
36 want to say N.
37
38config SH_DSP
Harvey Harrisond7ef4fb2007-12-11 13:49:35 +090039 def_bool y
40 prompt "DSP support"
Paul Mundt4690bdc2007-11-09 13:45:42 +090041 depends on CPU_HAS_DSP
Paul Mundt4690bdc2007-11-09 13:45:42 +090042 help
43 Selecting this option will enable support for SH processors that
44 have DSP units (ie, SH2-DSP, SH3-DSP, and SH4AL-DSP).
45
46 This option must be set in order to enable the DSP.
47
48config SH_ADC
Harvey Harrisond7ef4fb2007-12-11 13:49:35 +090049 def_bool y
50 prompt "ADC support"
Paul Mundt4690bdc2007-11-09 13:45:42 +090051 depends on CPU_SH3
Paul Mundt4690bdc2007-11-09 13:45:42 +090052 help
53 Selecting this option will allow the Linux kernel to use SH3 on-chip
54 ADC module.
55
56 If unsure, say N.
57
58config SH_STORE_QUEUES
59 bool "Support for Store Queues"
60 depends on CPU_SH4
61 help
62 Selecting this option will enable an in-kernel API for manipulating
63 the store queues integrated in the SH-4 processors.
64
65config SPECULATIVE_EXECUTION
66 bool "Speculative subroutine return"
Matt Fleming8c563a32010-02-04 23:46:13 +000067 depends on CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785 || CPU_SUBTYPE_SH7786
Paul Mundt4690bdc2007-11-09 13:45:42 +090068 help
69 This enables support for a speculative instruction fetch for
70 subroutine return. There are various pitfalls associated with
71 this, as outlined in the SH7780 hardware manual.
72
73 If unsure, say N.
74
Paul Mundt4690bdc2007-11-09 13:45:42 +090075config CPU_HAS_INTEVT
76 bool
77
Paul Mundt4690bdc2007-11-09 13:45:42 +090078config CPU_HAS_IPR_IRQ
79 bool
80
81config CPU_HAS_SR_RB
82 bool
83 help
84 This will enable the use of SR.RB register bank usage. Processors
85 that are lacking this bit must have another method in place for
86 accomplishing what is taken care of by the banked registers.
87
Mauro Carvalho Chehab781885f2020-06-15 08:50:22 +020088 See <file:Documentation/sh/register-banks.rst> for further
Paul Mundt4690bdc2007-11-09 13:45:42 +090089 information on SR.RB and register banking in the kernel in general.
90
Paul Mundt8263a672009-03-17 17:49:49 +090091config CPU_HAS_PTEAEX
92 bool
93
Paul Mundt4690bdc2007-11-09 13:45:42 +090094config CPU_HAS_DSP
95 bool
96
97config CPU_HAS_FPU
98 bool
99
100endmenu