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