OSDN Git Service

fc92f08f00171b1b988aaca1aab4cc9e65ed1d12
[tomoyo/tomoyo-test1.git] / arch / csky / Kconfig
1 # SPDX-License-Identifier: GPL-2.0-only
2 config CSKY
3         def_bool y
4         select ARCH_32BIT_OFF_T
5         select ARCH_HAS_DMA_PREP_COHERENT
6         select ARCH_HAS_SYNC_DMA_FOR_CPU
7         select ARCH_HAS_SYNC_DMA_FOR_DEVICE
8         select ARCH_USE_BUILTIN_BSWAP
9         select ARCH_USE_QUEUED_RWLOCKS if NR_CPUS>2
10         select COMMON_CLK
11         select CLKSRC_MMIO
12         select CLKSRC_OF
13         select CSKY_MPINTC if CPU_CK860
14         select CSKY_MP_TIMER if CPU_CK860
15         select CSKY_APB_INTC
16         select DMA_DIRECT_REMAP
17         select IRQ_DOMAIN
18         select HANDLE_DOMAIN_IRQ
19         select DW_APB_TIMER_OF
20         select GENERIC_IOREMAP
21         select GENERIC_LIB_ASHLDI3
22         select GENERIC_LIB_ASHRDI3
23         select GENERIC_LIB_LSHRDI3
24         select GENERIC_LIB_MULDI3
25         select GENERIC_LIB_CMPDI2
26         select GENERIC_LIB_UCMPDI2
27         select GENERIC_ALLOCATOR
28         select GENERIC_ATOMIC64
29         select GENERIC_CLOCKEVENTS
30         select GENERIC_CPU_DEVICES
31         select GENERIC_IRQ_CHIP
32         select GENERIC_IRQ_PROBE
33         select GENERIC_IRQ_SHOW
34         select GENERIC_IRQ_MULTI_HANDLER
35         select GENERIC_SCHED_CLOCK
36         select GENERIC_SMP_IDLE_THREAD
37         select GX6605S_TIMER if CPU_CK610
38         select HAVE_ARCH_TRACEHOOK
39         select HAVE_ARCH_AUDITSYSCALL
40         select HAVE_DYNAMIC_FTRACE
41         select HAVE_FUNCTION_TRACER
42         select HAVE_FUNCTION_GRAPH_TRACER
43         select HAVE_FTRACE_MCOUNT_RECORD
44         select HAVE_KERNEL_GZIP
45         select HAVE_KERNEL_LZO
46         select HAVE_KERNEL_LZMA
47         select HAVE_PERF_EVENTS
48         select HAVE_PERF_REGS
49         select HAVE_PERF_USER_STACK_DUMP
50         select HAVE_DMA_API_DEBUG
51         select HAVE_DMA_CONTIGUOUS
52         select HAVE_STACKPROTECTOR
53         select HAVE_SYSCALL_TRACEPOINTS
54         select MAY_HAVE_SPARSE_IRQ
55         select MODULES_USE_ELF_RELA if MODULES
56         select OF
57         select OF_EARLY_FLATTREE
58         select PERF_USE_VMALLOC if CPU_CK610
59         select RTC_LIB
60         select TIMER_OF
61         select USB_ARCH_HAS_EHCI
62         select USB_ARCH_HAS_OHCI
63
64 config CPU_HAS_CACHEV2
65         bool
66
67 config CPU_HAS_FPUV2
68         bool
69
70 config CPU_HAS_HILO
71         bool
72
73 config CPU_HAS_TLBI
74         bool
75
76 config CPU_HAS_LDSTEX
77         bool
78         help
79           For SMP, CPU needs "ldex&stex" instrcutions to atomic operations.
80
81 config CPU_NEED_TLBSYNC
82         bool
83
84 config CPU_NEED_SOFTALIGN
85         bool
86
87 config CPU_NO_USER_BKPT
88         bool
89         help
90           For abiv2 we couldn't use "trap 1" as user space bkpt in gdbserver, because
91           abiv2 is 16/32bit instruction set and "trap 1" is 32bit.
92           So we need a 16bit instruction as user space bkpt, and it will cause an illegal
93           instruction exception.
94           In kernel we parse the *regs->pc to determine whether to send SIGTRAP or not.
95
96 config GENERIC_CALIBRATE_DELAY
97         def_bool y
98
99 config GENERIC_CSUM
100         def_bool y
101
102 config GENERIC_HWEIGHT
103         def_bool y
104
105 config MMU
106         def_bool y
107
108 config STACKTRACE_SUPPORT
109         def_bool y
110
111 config TIME_LOW_RES
112         def_bool y
113
114 config TRACE_IRQFLAGS_SUPPORT
115         def_bool y
116
117 config CPU_TLB_SIZE
118         int
119         default "128"   if (CPU_CK610 || CPU_CK807 || CPU_CK810)
120         default "1024"  if (CPU_CK860)
121
122 config CPU_ASID_BITS
123         int
124         default "8"     if (CPU_CK610 || CPU_CK807 || CPU_CK810)
125         default "12"    if (CPU_CK860)
126
127 config L1_CACHE_SHIFT
128         int
129         default "4"     if (CPU_CK610)
130         default "5"     if (CPU_CK807 || CPU_CK810)
131         default "6"     if (CPU_CK860)
132
133 menu "Processor type and features"
134
135 choice
136         prompt "CPU MODEL"
137         default CPU_CK807
138
139 config CPU_CK610
140         bool "CSKY CPU ck610"
141         select CPU_NEED_TLBSYNC
142         select CPU_NEED_SOFTALIGN
143         select CPU_NO_USER_BKPT
144
145 config CPU_CK810
146         bool "CSKY CPU ck810"
147         select CPU_HAS_HILO
148         select CPU_NEED_TLBSYNC
149
150 config CPU_CK807
151         bool "CSKY CPU ck807"
152         select CPU_HAS_HILO
153
154 config CPU_CK860
155         bool "CSKY CPU ck860"
156         select CPU_HAS_TLBI
157         select CPU_HAS_CACHEV2
158         select CPU_HAS_LDSTEX
159         select CPU_HAS_FPUV2
160 endchoice
161
162 choice
163         prompt "C-SKY PMU type"
164         depends on PERF_EVENTS
165         depends on CPU_CK807 || CPU_CK810 || CPU_CK860
166
167 config CPU_PMU_NONE
168         bool "None"
169
170 config CSKY_PMU_V1
171         bool "Performance Monitoring Unit Ver.1"
172
173 endchoice
174
175 choice
176         prompt "Power Manager Instruction (wait/doze/stop)"
177         default CPU_PM_NONE
178
179 config CPU_PM_NONE
180         bool "None"
181
182 config CPU_PM_WAIT
183         bool "wait"
184
185 config CPU_PM_DOZE
186         bool "doze"
187
188 config CPU_PM_STOP
189         bool "stop"
190 endchoice
191
192 menuconfig HAVE_TCM
193         bool "Tightly-Coupled/Sram Memory"
194         depends on HIGHMEM
195         select GENERIC_ALLOCATOR
196         help
197           The implementation are not only used by TCM (Tightly-Coupled Meory)
198           but also used by sram on SOC bus. It follow existed linux tcm
199           software interface, so that old tcm application codes could be
200           re-used directly.
201
202 if HAVE_TCM
203 config ITCM_RAM_BASE
204         hex "ITCM ram base"
205         default 0xffffffff
206
207 config ITCM_NR_PAGES
208         int "Page count of ITCM size: NR*4KB"
209         range 1 256
210         default 32
211
212 config HAVE_DTCM
213         bool "DTCM Support"
214
215 config DTCM_RAM_BASE
216         hex "DTCM ram base"
217         depends on HAVE_DTCM
218         default 0xffffffff
219
220 config DTCM_NR_PAGES
221         int "Page count of DTCM size: NR*4KB"
222         depends on HAVE_DTCM
223         range 1 256
224         default 32
225 endif
226
227 config CPU_HAS_VDSP
228         bool "CPU has VDSP coprocessor"
229         depends on CPU_HAS_FPU && CPU_HAS_FPUV2
230
231 config CPU_HAS_FPU
232         bool "CPU has FPU coprocessor"
233         depends on CPU_CK807 || CPU_CK810 || CPU_CK860
234
235 config CPU_HAS_TEE
236         bool "CPU has Trusted Execution Environment"
237         depends on CPU_CK810
238
239 config SMP
240         bool "Symmetric Multi-Processing (SMP) support for C-SKY"
241         depends on CPU_CK860
242         default n
243
244 config NR_CPUS
245         int "Maximum number of CPUs (2-32)"
246         range 2 32
247         depends on SMP
248         default "2"
249
250 config HIGHMEM
251         bool "High Memory Support"
252         depends on !CPU_CK610
253         default y
254
255 config FORCE_MAX_ZONEORDER
256         int "Maximum zone order"
257         default "11"
258
259 config RAM_BASE
260         hex "DRAM start addr (the same with memory-section in dts)"
261         default 0x0
262
263 config HOTPLUG_CPU
264         bool "Support for hot-pluggable CPUs"
265         select GENERIC_IRQ_MIGRATION
266         depends on SMP
267         help
268           Say Y here to allow turning CPUs off and on. CPUs can be
269           controlled through /sys/devices/system/cpu/cpu1/hotplug/target.
270
271           Say N if you want to disable CPU hotplug.
272 endmenu
273
274 source "kernel/Kconfig.hz"