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