xref: /linux/arch/csky/Kconfig (revision 2f7932b011e7fb9f98732f95a68f6017d4d8c542)
1c32e64e8SGuo Renconfig CSKY
2c32e64e8SGuo Ren	def_bool y
3942fa985SYury Norov	select ARCH_32BIT_OFF_T
4c32e64e8SGuo Ren	select ARCH_HAS_SYNC_DMA_FOR_CPU
5c32e64e8SGuo Ren	select ARCH_HAS_SYNC_DMA_FOR_DEVICE
6c32e64e8SGuo Ren	select ARCH_USE_BUILTIN_BSWAP
7c32e64e8SGuo Ren	select ARCH_USE_QUEUED_RWLOCKS if NR_CPUS>2
8c32e64e8SGuo Ren	select COMMON_CLK
9c32e64e8SGuo Ren	select CLKSRC_MMIO
10c32e64e8SGuo Ren	select CLKSRC_OF
11f04b951fSChristoph Hellwig	select DMA_DIRECT_REMAP
12c32e64e8SGuo Ren	select IRQ_DOMAIN
13c32e64e8SGuo Ren	select HANDLE_DOMAIN_IRQ
14c32e64e8SGuo Ren	select DW_APB_TIMER_OF
15c32e64e8SGuo Ren	select GENERIC_LIB_ASHLDI3
16c32e64e8SGuo Ren	select GENERIC_LIB_ASHRDI3
17c32e64e8SGuo Ren	select GENERIC_LIB_LSHRDI3
18c32e64e8SGuo Ren	select GENERIC_LIB_MULDI3
19c32e64e8SGuo Ren	select GENERIC_LIB_CMPDI2
20c32e64e8SGuo Ren	select GENERIC_LIB_UCMPDI2
21c32e64e8SGuo Ren	select GENERIC_ALLOCATOR
22c32e64e8SGuo Ren	select GENERIC_ATOMIC64
23c32e64e8SGuo Ren	select GENERIC_CLOCKEVENTS
24c32e64e8SGuo Ren	select GENERIC_CPU_DEVICES
25c32e64e8SGuo Ren	select GENERIC_IRQ_CHIP
26c32e64e8SGuo Ren	select GENERIC_IRQ_PROBE
27c32e64e8SGuo Ren	select GENERIC_IRQ_SHOW
28c32e64e8SGuo Ren	select GENERIC_IRQ_MULTI_HANDLER
29c32e64e8SGuo Ren	select GENERIC_SCHED_CLOCK
30c32e64e8SGuo Ren	select GENERIC_SMP_IDLE_THREAD
31c32e64e8SGuo Ren	select HAVE_ARCH_TRACEHOOK
32*2f7932b0SGuo Ren	select HAVE_ARCH_AUDITSYSCALL
3328bb030fSGuo Ren	select HAVE_DYNAMIC_FTRACE
34230c77a5SGuo Ren	select HAVE_FUNCTION_TRACER
35d7950be1SGuo Ren	select HAVE_FUNCTION_GRAPH_TRACER
3628bb030fSGuo Ren	select HAVE_FTRACE_MCOUNT_RECORD
37c32e64e8SGuo Ren	select HAVE_KERNEL_GZIP
38c32e64e8SGuo Ren	select HAVE_KERNEL_LZO
39c32e64e8SGuo Ren	select HAVE_KERNEL_LZMA
40f50fd2d8SGuo Ren	select HAVE_PERF_EVENTS
41c32e64e8SGuo Ren	select HAVE_DMA_API_DEBUG
42c32e64e8SGuo Ren	select HAVE_DMA_CONTIGUOUS
43*2f7932b0SGuo Ren	select HAVE_SYSCALL_TRACEPOINTS
44c32e64e8SGuo Ren	select MAY_HAVE_SPARSE_IRQ
45c32e64e8SGuo Ren	select MODULES_USE_ELF_RELA if MODULES
46c32e64e8SGuo Ren	select OF
47c32e64e8SGuo Ren	select OF_EARLY_FLATTREE
48f50fd2d8SGuo Ren	select PERF_USE_VMALLOC if CPU_CK610
49c32e64e8SGuo Ren	select RTC_LIB
50c32e64e8SGuo Ren	select TIMER_OF
51c32e64e8SGuo Ren	select USB_ARCH_HAS_EHCI
52c32e64e8SGuo Ren	select USB_ARCH_HAS_OHCI
53c32e64e8SGuo Ren
54c32e64e8SGuo Renconfig CPU_HAS_CACHEV2
55c32e64e8SGuo Ren	bool
56c32e64e8SGuo Ren
57c32e64e8SGuo Renconfig CPU_HAS_FPUV2
58c32e64e8SGuo Ren	bool
59c32e64e8SGuo Ren
60c32e64e8SGuo Renconfig CPU_HAS_HILO
61c32e64e8SGuo Ren	bool
62c32e64e8SGuo Ren
63c32e64e8SGuo Renconfig CPU_HAS_TLBI
64c32e64e8SGuo Ren	bool
65c32e64e8SGuo Ren
66c32e64e8SGuo Renconfig CPU_HAS_LDSTEX
67c32e64e8SGuo Ren	bool
68c32e64e8SGuo Ren	help
69c32e64e8SGuo Ren	  For SMP, CPU needs "ldex&stex" instrcutions to atomic operations.
70c32e64e8SGuo Ren
71c32e64e8SGuo Renconfig CPU_NEED_TLBSYNC
72c32e64e8SGuo Ren	bool
73c32e64e8SGuo Ren
74c32e64e8SGuo Renconfig CPU_NEED_SOFTALIGN
75c32e64e8SGuo Ren	bool
76c32e64e8SGuo Ren
77c32e64e8SGuo Renconfig CPU_NO_USER_BKPT
78c32e64e8SGuo Ren	bool
79c32e64e8SGuo Ren	help
80c32e64e8SGuo Ren	  For abiv2 we couldn't use "trap 1" as user space bkpt in gdbserver, because
81c32e64e8SGuo Ren	  abiv2 is 16/32bit instruction set and "trap 1" is 32bit.
82c32e64e8SGuo Ren	  So we need a 16bit instruction as user space bkpt, and it will cause an illegal
83c32e64e8SGuo Ren	  instruction exception.
84c32e64e8SGuo Ren	  In kernel we parse the *regs->pc to determine whether to send SIGTRAP or not.
85c32e64e8SGuo Ren
86c32e64e8SGuo Renconfig GENERIC_CALIBRATE_DELAY
87c32e64e8SGuo Ren	def_bool y
88c32e64e8SGuo Ren
89c32e64e8SGuo Renconfig GENERIC_CSUM
90c32e64e8SGuo Ren	def_bool y
91c32e64e8SGuo Ren
92c32e64e8SGuo Renconfig GENERIC_HWEIGHT
93c32e64e8SGuo Ren	def_bool y
94c32e64e8SGuo Ren
95c32e64e8SGuo Renconfig MMU
96c32e64e8SGuo Ren	def_bool y
97c32e64e8SGuo Ren
98c32e64e8SGuo Renconfig RWSEM_GENERIC_SPINLOCK
99c32e64e8SGuo Ren	def_bool y
100c32e64e8SGuo Ren
1010ea2dc7cSGuo Renconfig STACKTRACE_SUPPORT
1020ea2dc7cSGuo Ren	def_bool y
1030ea2dc7cSGuo Ren
104c32e64e8SGuo Renconfig TIME_LOW_RES
105c32e64e8SGuo Ren	def_bool y
106c32e64e8SGuo Ren
107c32e64e8SGuo Renconfig TRACE_IRQFLAGS_SUPPORT
108c32e64e8SGuo Ren	def_bool y
109c32e64e8SGuo Ren
110c32e64e8SGuo Renconfig CPU_TLB_SIZE
111c32e64e8SGuo Ren	int
112c32e64e8SGuo Ren	default "128"	if (CPU_CK610 || CPU_CK807 || CPU_CK810)
113c32e64e8SGuo Ren	default "1024"	if (CPU_CK860)
114c32e64e8SGuo Ren
115c32e64e8SGuo Renconfig CPU_ASID_BITS
116c32e64e8SGuo Ren	int
117c32e64e8SGuo Ren	default "8"	if (CPU_CK610 || CPU_CK807 || CPU_CK810)
118c32e64e8SGuo Ren	default "12"	if (CPU_CK860)
119c32e64e8SGuo Ren
120c32e64e8SGuo Renconfig L1_CACHE_SHIFT
121c32e64e8SGuo Ren	int
122c32e64e8SGuo Ren	default "4"	if (CPU_CK610)
123c32e64e8SGuo Ren	default "5"	if (CPU_CK807 || CPU_CK810)
124c32e64e8SGuo Ren	default "6"	if (CPU_CK860)
125c32e64e8SGuo Ren
126c32e64e8SGuo Renmenu "Processor type and features"
127c32e64e8SGuo Ren
128c32e64e8SGuo Renchoice
129c32e64e8SGuo Ren	prompt "CPU MODEL"
130c32e64e8SGuo Ren	default CPU_CK807
131c32e64e8SGuo Ren
132c32e64e8SGuo Renconfig CPU_CK610
133c32e64e8SGuo Ren	bool "CSKY CPU ck610"
134c32e64e8SGuo Ren	select CPU_NEED_TLBSYNC
135c32e64e8SGuo Ren	select CPU_NEED_SOFTALIGN
136c32e64e8SGuo Ren	select CPU_NO_USER_BKPT
137c32e64e8SGuo Ren
138c32e64e8SGuo Renconfig CPU_CK810
139c32e64e8SGuo Ren	bool "CSKY CPU ck810"
140c32e64e8SGuo Ren	select CPU_HAS_HILO
141c32e64e8SGuo Ren	select CPU_NEED_TLBSYNC
142c32e64e8SGuo Ren
143c32e64e8SGuo Renconfig CPU_CK807
144c32e64e8SGuo Ren	bool "CSKY CPU ck807"
145c32e64e8SGuo Ren	select CPU_HAS_HILO
146c32e64e8SGuo Ren
147c32e64e8SGuo Renconfig CPU_CK860
148c32e64e8SGuo Ren	bool "CSKY CPU ck860"
149c32e64e8SGuo Ren	select CPU_HAS_TLBI
150c32e64e8SGuo Ren	select CPU_HAS_CACHEV2
151c32e64e8SGuo Ren	select CPU_HAS_LDSTEX
152c32e64e8SGuo Ren	select CPU_HAS_FPUV2
153c32e64e8SGuo Renendchoice
154c32e64e8SGuo Ren
155c32e64e8SGuo Renchoice
156f50fd2d8SGuo Ren	prompt "C-SKY PMU type"
157f50fd2d8SGuo Ren	depends on PERF_EVENTS
158f50fd2d8SGuo Ren	depends on CPU_CK807 || CPU_CK810 || CPU_CK860
159f50fd2d8SGuo Ren
160f50fd2d8SGuo Renconfig CPU_PMU_NONE
161f50fd2d8SGuo Ren	bool "None"
162f50fd2d8SGuo Ren
163f50fd2d8SGuo Renconfig CSKY_PMU_V1
164f50fd2d8SGuo Ren	bool "Performance Monitoring Unit Ver.1"
165f50fd2d8SGuo Ren
166f50fd2d8SGuo Renendchoice
167f50fd2d8SGuo Ren
168f50fd2d8SGuo Renchoice
169c32e64e8SGuo Ren	prompt "Power Manager Instruction (wait/doze/stop)"
170c32e64e8SGuo Ren	default CPU_PM_NONE
171c32e64e8SGuo Ren
172c32e64e8SGuo Renconfig CPU_PM_NONE
173c32e64e8SGuo Ren	bool "None"
174c32e64e8SGuo Ren
175c32e64e8SGuo Renconfig CPU_PM_WAIT
176c32e64e8SGuo Ren	bool "wait"
177c32e64e8SGuo Ren
178c32e64e8SGuo Renconfig CPU_PM_DOZE
179c32e64e8SGuo Ren	bool "doze"
180c32e64e8SGuo Ren
181c32e64e8SGuo Renconfig CPU_PM_STOP
182c32e64e8SGuo Ren	bool "stop"
183c32e64e8SGuo Renendchoice
184c32e64e8SGuo Ren
185c32e64e8SGuo Renconfig CPU_HAS_VDSP
186c32e64e8SGuo Ren	bool "CPU has VDSP coprocessor"
187c32e64e8SGuo Ren	depends on CPU_HAS_FPU && CPU_HAS_FPUV2
188c32e64e8SGuo Ren
189c32e64e8SGuo Renconfig CPU_HAS_FPU
190c32e64e8SGuo Ren	bool "CPU has FPU coprocessor"
191c32e64e8SGuo Ren	depends on CPU_CK807 || CPU_CK810 || CPU_CK860
192c32e64e8SGuo Ren
193c32e64e8SGuo Renconfig CPU_HAS_TEE
194c32e64e8SGuo Ren	bool "CPU has Trusted Execution Environment"
195c32e64e8SGuo Ren	depends on CPU_CK810
196c32e64e8SGuo Ren
197c32e64e8SGuo Renconfig SMP
198c32e64e8SGuo Ren	bool "Symmetric Multi-Processing (SMP) support for C-SKY"
199c32e64e8SGuo Ren	depends on CPU_CK860
200c32e64e8SGuo Ren	default n
201c32e64e8SGuo Ren
202c32e64e8SGuo Renconfig NR_CPUS
203c32e64e8SGuo Ren	int "Maximum number of CPUs (2-32)"
204c32e64e8SGuo Ren	range 2 32
205c32e64e8SGuo Ren	depends on SMP
206c32e64e8SGuo Ren	default "2"
207c32e64e8SGuo Ren
208c32e64e8SGuo Renconfig HIGHMEM
209c32e64e8SGuo Ren	bool "High Memory Support"
210c32e64e8SGuo Ren	depends on !CPU_CK610
211c32e64e8SGuo Ren	default y
212c32e64e8SGuo Ren
213c32e64e8SGuo Renconfig FORCE_MAX_ZONEORDER
214c32e64e8SGuo Ren	int "Maximum zone order"
215c32e64e8SGuo Ren	default "11"
216c32e64e8SGuo Ren
217c32e64e8SGuo Renconfig RAM_BASE
218c32e64e8SGuo Ren	hex "DRAM start addr (the same with memory-section in dts)"
219c32e64e8SGuo Ren	default 0x0
220c32e64e8SGuo Ren
221859e5f45SGuo Renconfig HOTPLUG_CPU
222859e5f45SGuo Ren	bool "Support for hot-pluggable CPUs"
223859e5f45SGuo Ren	select GENERIC_IRQ_MIGRATION
224859e5f45SGuo Ren	depends on SMP
225859e5f45SGuo Ren	help
226859e5f45SGuo Ren	  Say Y here to allow turning CPUs off and on. CPUs can be
227859e5f45SGuo Ren	  controlled through /sys/devices/system/cpu/cpu1/hotplug/target.
228859e5f45SGuo Ren
229859e5f45SGuo Ren	  Say N if you want to disable CPU hotplug.
230c32e64e8SGuo Renendmenu
231c32e64e8SGuo Ren
232c32e64e8SGuo Rensource "kernel/Kconfig.hz"
233