1# SPDX-License-Identifier: GPL-2.0 2config MIPS 3 bool 4 default y 5 select ARCH_32BIT_OFF_T if !64BIT 6 select ARCH_BINFMT_ELF_STATE if MIPS_FP_SUPPORT 7 select ARCH_HAS_DEBUG_VIRTUAL if !64BIT 8 select ARCH_HAS_FORTIFY_SOURCE 9 select ARCH_HAS_KCOV 10 select ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE if !EVA 11 select ARCH_HAS_PTE_SPECIAL if !(32BIT && CPU_HAS_RIXI) 12 select ARCH_HAS_STRNCPY_FROM_USER 13 select ARCH_HAS_STRNLEN_USER 14 select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST 15 select ARCH_HAS_UBSAN_SANITIZE_ALL 16 select ARCH_HAS_GCOV_PROFILE_ALL 17 select ARCH_KEEP_MEMBLOCK 18 select ARCH_SUPPORTS_UPROBES 19 select ARCH_USE_BUILTIN_BSWAP 20 select ARCH_USE_CMPXCHG_LOCKREF if 64BIT 21 select ARCH_USE_MEMTEST 22 select ARCH_USE_QUEUED_RWLOCKS 23 select ARCH_USE_QUEUED_SPINLOCKS 24 select ARCH_SUPPORTS_HUGETLBFS if CPU_SUPPORTS_HUGEPAGES 25 select ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT if MMU 26 select ARCH_WANT_IPC_PARSE_VERSION 27 select ARCH_WANT_LD_ORPHAN_WARN 28 select BUILDTIME_TABLE_SORT 29 select CLONE_BACKWARDS 30 select CPU_NO_EFFICIENT_FFS if (TARGET_ISA_REV < 1) 31 select CPU_PM if CPU_IDLE 32 select GENERIC_ATOMIC64 if !64BIT 33 select GENERIC_CMOS_UPDATE 34 select GENERIC_CPU_AUTOPROBE 35 select GENERIC_FIND_FIRST_BIT 36 select GENERIC_GETTIMEOFDAY 37 select GENERIC_IOMAP 38 select GENERIC_IRQ_PROBE 39 select GENERIC_IRQ_SHOW 40 select GENERIC_ISA_DMA if EISA 41 select GENERIC_LIB_ASHLDI3 42 select GENERIC_LIB_ASHRDI3 43 select GENERIC_LIB_CMPDI2 44 select GENERIC_LIB_LSHRDI3 45 select GENERIC_LIB_UCMPDI2 46 select GENERIC_SCHED_CLOCK if !CAVIUM_OCTEON_SOC 47 select GENERIC_SMP_IDLE_THREAD 48 select GENERIC_TIME_VSYSCALL 49 select GUP_GET_PTE_LOW_HIGH if CPU_MIPS32 && PHYS_ADDR_T_64BIT 50 select HANDLE_DOMAIN_IRQ 51 select HAVE_ARCH_COMPILER_H 52 select HAVE_ARCH_JUMP_LABEL 53 select HAVE_ARCH_KGDB if MIPS_FP_SUPPORT 54 select HAVE_ARCH_MMAP_RND_BITS if MMU 55 select HAVE_ARCH_MMAP_RND_COMPAT_BITS if MMU && COMPAT 56 select HAVE_ARCH_SECCOMP_FILTER 57 select HAVE_ARCH_TRACEHOOK 58 select HAVE_ARCH_TRANSPARENT_HUGEPAGE if CPU_SUPPORTS_HUGEPAGES 59 select HAVE_ASM_MODVERSIONS 60 select HAVE_CBPF_JIT if !64BIT && !CPU_MICROMIPS 61 select HAVE_CONTEXT_TRACKING 62 select HAVE_TIF_NOHZ 63 select HAVE_C_RECORDMCOUNT 64 select HAVE_DEBUG_KMEMLEAK 65 select HAVE_DEBUG_STACKOVERFLOW 66 select HAVE_DMA_CONTIGUOUS 67 select HAVE_DYNAMIC_FTRACE 68 select HAVE_EBPF_JIT if 64BIT && !CPU_MICROMIPS && TARGET_ISA_REV >= 2 69 select HAVE_EXIT_THREAD 70 select HAVE_FAST_GUP 71 select HAVE_FTRACE_MCOUNT_RECORD 72 select HAVE_FUNCTION_GRAPH_TRACER 73 select HAVE_FUNCTION_TRACER 74 select HAVE_GCC_PLUGINS 75 select HAVE_GENERIC_VDSO 76 select HAVE_IOREMAP_PROT 77 select HAVE_IRQ_EXIT_ON_IRQ_STACK 78 select HAVE_IRQ_TIME_ACCOUNTING 79 select HAVE_KPROBES 80 select HAVE_KRETPROBES 81 select HAVE_LD_DEAD_CODE_DATA_ELIMINATION 82 select HAVE_MOD_ARCH_SPECIFIC 83 select HAVE_NMI 84 select HAVE_PERF_EVENTS 85 select HAVE_PERF_REGS 86 select HAVE_PERF_USER_STACK_DUMP 87 select HAVE_REGS_AND_STACK_ACCESS_API 88 select HAVE_RSEQ 89 select HAVE_SPARSE_SYSCALL_NR 90 select HAVE_STACKPROTECTOR 91 select HAVE_SYSCALL_TRACEPOINTS 92 select HAVE_VIRT_CPU_ACCOUNTING_GEN if 64BIT || !SMP 93 select IRQ_FORCED_THREADING 94 select ISA if EISA 95 select MODULES_USE_ELF_REL if MODULES 96 select MODULES_USE_ELF_RELA if MODULES && 64BIT 97 select PERF_USE_VMALLOC 98 select PCI_MSI_ARCH_FALLBACKS if PCI_MSI 99 select RTC_LIB 100 select SYSCTL_EXCEPTION_TRACE 101 select TRACE_IRQFLAGS_SUPPORT 102 select VIRT_TO_BUS 103 select ARCH_HAS_ELFCORE_COMPAT 104 105config MIPS_FIXUP_BIGPHYS_ADDR 106 bool 107 108config MIPS_GENERIC 109 bool 110 111config MACH_INGENIC 112 bool 113 select SYS_SUPPORTS_32BIT_KERNEL 114 select SYS_SUPPORTS_LITTLE_ENDIAN 115 select SYS_SUPPORTS_ZBOOT 116 select DMA_NONCOHERENT 117 select ARCH_HAS_SYNC_DMA_FOR_CPU 118 select IRQ_MIPS_CPU 119 select PINCTRL 120 select GPIOLIB 121 select COMMON_CLK 122 select GENERIC_IRQ_CHIP 123 select BUILTIN_DTB if MIPS_NO_APPENDED_DTB 124 select USE_OF 125 select CPU_SUPPORTS_CPUFREQ 126 select MIPS_EXTERNAL_TIMER 127 128menu "Machine selection" 129 130choice 131 prompt "System type" 132 default MIPS_GENERIC_KERNEL 133 134config MIPS_GENERIC_KERNEL 135 bool "Generic board-agnostic MIPS kernel" 136 select ARCH_HAS_SETUP_DMA_OPS 137 select MIPS_GENERIC 138 select BOOT_RAW 139 select BUILTIN_DTB 140 select CEVT_R4K 141 select CLKSRC_MIPS_GIC 142 select COMMON_CLK 143 select CPU_MIPSR2_IRQ_EI 144 select CPU_MIPSR2_IRQ_VI 145 select CSRC_R4K 146 select DMA_NONCOHERENT 147 select HAVE_PCI 148 select IRQ_MIPS_CPU 149 select MIPS_AUTO_PFN_OFFSET 150 select MIPS_CPU_SCACHE 151 select MIPS_GIC 152 select MIPS_L1_CACHE_SHIFT_7 153 select NO_EXCEPT_FILL 154 select PCI_DRIVERS_GENERIC 155 select SMP_UP if SMP 156 select SWAP_IO_SPACE 157 select SYS_HAS_CPU_MIPS32_R1 158 select SYS_HAS_CPU_MIPS32_R2 159 select SYS_HAS_CPU_MIPS32_R6 160 select SYS_HAS_CPU_MIPS64_R1 161 select SYS_HAS_CPU_MIPS64_R2 162 select SYS_HAS_CPU_MIPS64_R6 163 select SYS_SUPPORTS_32BIT_KERNEL 164 select SYS_SUPPORTS_64BIT_KERNEL 165 select SYS_SUPPORTS_BIG_ENDIAN 166 select SYS_SUPPORTS_HIGHMEM 167 select SYS_SUPPORTS_LITTLE_ENDIAN 168 select SYS_SUPPORTS_MICROMIPS 169 select SYS_SUPPORTS_MIPS16 170 select SYS_SUPPORTS_MIPS_CPS 171 select SYS_SUPPORTS_MULTITHREADING 172 select SYS_SUPPORTS_RELOCATABLE 173 select SYS_SUPPORTS_SMARTMIPS 174 select SYS_SUPPORTS_ZBOOT 175 select UHI_BOOT 176 select USB_EHCI_BIG_ENDIAN_DESC if CPU_BIG_ENDIAN 177 select USB_EHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN 178 select USB_OHCI_BIG_ENDIAN_DESC if CPU_BIG_ENDIAN 179 select USB_OHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN 180 select USB_UHCI_BIG_ENDIAN_DESC if CPU_BIG_ENDIAN 181 select USB_UHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN 182 select USE_OF 183 help 184 Select this to build a kernel which aims to support multiple boards, 185 generally using a flattened device tree passed from the bootloader 186 using the boot protocol defined in the UHI (Unified Hosting 187 Interface) specification. 188 189config MIPS_ALCHEMY 190 bool "Alchemy processor based machines" 191 select PHYS_ADDR_T_64BIT 192 select CEVT_R4K 193 select CSRC_R4K 194 select IRQ_MIPS_CPU 195 select DMA_NONCOHERENT # Au1000,1500,1100 aren't, rest is 196 select MIPS_FIXUP_BIGPHYS_ADDR if PCI 197 select SYS_HAS_CPU_MIPS32_R1 198 select SYS_SUPPORTS_32BIT_KERNEL 199 select SYS_SUPPORTS_APM_EMULATION 200 select GPIOLIB 201 select SYS_SUPPORTS_ZBOOT 202 select COMMON_CLK 203 204config AR7 205 bool "Texas Instruments AR7" 206 select BOOT_ELF32 207 select COMMON_CLK 208 select DMA_NONCOHERENT 209 select CEVT_R4K 210 select CSRC_R4K 211 select IRQ_MIPS_CPU 212 select NO_EXCEPT_FILL 213 select SWAP_IO_SPACE 214 select SYS_HAS_CPU_MIPS32_R1 215 select SYS_HAS_EARLY_PRINTK 216 select SYS_SUPPORTS_32BIT_KERNEL 217 select SYS_SUPPORTS_LITTLE_ENDIAN 218 select SYS_SUPPORTS_MIPS16 219 select SYS_SUPPORTS_ZBOOT_UART16550 220 select GPIOLIB 221 select VLYNQ 222 help 223 Support for the Texas Instruments AR7 System-on-a-Chip 224 family: TNETD7100, 7200 and 7300. 225 226config ATH25 227 bool "Atheros AR231x/AR531x SoC support" 228 select CEVT_R4K 229 select CSRC_R4K 230 select DMA_NONCOHERENT 231 select IRQ_MIPS_CPU 232 select IRQ_DOMAIN 233 select SYS_HAS_CPU_MIPS32_R1 234 select SYS_SUPPORTS_BIG_ENDIAN 235 select SYS_SUPPORTS_32BIT_KERNEL 236 select SYS_HAS_EARLY_PRINTK 237 help 238 Support for Atheros AR231x and Atheros AR531x based boards 239 240config ATH79 241 bool "Atheros AR71XX/AR724X/AR913X based boards" 242 select ARCH_HAS_RESET_CONTROLLER 243 select BOOT_RAW 244 select CEVT_R4K 245 select CSRC_R4K 246 select DMA_NONCOHERENT 247 select GPIOLIB 248 select PINCTRL 249 select COMMON_CLK 250 select IRQ_MIPS_CPU 251 select SYS_HAS_CPU_MIPS32_R2 252 select SYS_HAS_EARLY_PRINTK 253 select SYS_SUPPORTS_32BIT_KERNEL 254 select SYS_SUPPORTS_BIG_ENDIAN 255 select SYS_SUPPORTS_MIPS16 256 select SYS_SUPPORTS_ZBOOT_UART_PROM 257 select USE_OF 258 select USB_EHCI_ROOT_HUB_TT if USB_EHCI_HCD_PLATFORM 259 help 260 Support for the Atheros AR71XX/AR724X/AR913X SoCs. 261 262config BMIPS_GENERIC 263 bool "Broadcom Generic BMIPS kernel" 264 select ARCH_HAS_RESET_CONTROLLER 265 select ARCH_HAS_SYNC_DMA_FOR_CPU_ALL 266 select ARCH_HAS_PHYS_TO_DMA 267 select BOOT_RAW 268 select NO_EXCEPT_FILL 269 select USE_OF 270 select CEVT_R4K 271 select CSRC_R4K 272 select SYNC_R4K 273 select COMMON_CLK 274 select BCM6345_L1_IRQ 275 select BCM7038_L1_IRQ 276 select BCM7120_L2_IRQ 277 select BRCMSTB_L2_IRQ 278 select IRQ_MIPS_CPU 279 select DMA_NONCOHERENT 280 select SYS_SUPPORTS_32BIT_KERNEL 281 select SYS_SUPPORTS_LITTLE_ENDIAN 282 select SYS_SUPPORTS_BIG_ENDIAN 283 select SYS_SUPPORTS_HIGHMEM 284 select SYS_HAS_CPU_BMIPS32_3300 285 select SYS_HAS_CPU_BMIPS4350 286 select SYS_HAS_CPU_BMIPS4380 287 select SYS_HAS_CPU_BMIPS5000 288 select SWAP_IO_SPACE 289 select USB_EHCI_BIG_ENDIAN_DESC if CPU_BIG_ENDIAN 290 select USB_EHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN 291 select USB_OHCI_BIG_ENDIAN_DESC if CPU_BIG_ENDIAN 292 select USB_OHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN 293 select HARDIRQS_SW_RESEND 294 help 295 Build a generic DT-based kernel image that boots on select 296 BCM33xx cable modem chips, BCM63xx DSL chips, and BCM7xxx set-top 297 box chips. Note that CONFIG_CPU_BIG_ENDIAN/CONFIG_CPU_LITTLE_ENDIAN 298 must be set appropriately for your board. 299 300config BCM47XX 301 bool "Broadcom BCM47XX based boards" 302 select BOOT_RAW 303 select CEVT_R4K 304 select CSRC_R4K 305 select DMA_NONCOHERENT 306 select HAVE_PCI 307 select IRQ_MIPS_CPU 308 select SYS_HAS_CPU_MIPS32_R1 309 select NO_EXCEPT_FILL 310 select SYS_SUPPORTS_32BIT_KERNEL 311 select SYS_SUPPORTS_LITTLE_ENDIAN 312 select SYS_SUPPORTS_MIPS16 313 select SYS_SUPPORTS_ZBOOT 314 select SYS_HAS_EARLY_PRINTK 315 select USE_GENERIC_EARLY_PRINTK_8250 316 select GPIOLIB 317 select LEDS_GPIO_REGISTER 318 select BCM47XX_NVRAM 319 select BCM47XX_SPROM 320 select BCM47XX_SSB if !BCM47XX_BCMA 321 help 322 Support for BCM47XX based boards 323 324config BCM63XX 325 bool "Broadcom BCM63XX based boards" 326 select BOOT_RAW 327 select CEVT_R4K 328 select CSRC_R4K 329 select SYNC_R4K 330 select DMA_NONCOHERENT 331 select IRQ_MIPS_CPU 332 select SYS_SUPPORTS_32BIT_KERNEL 333 select SYS_SUPPORTS_BIG_ENDIAN 334 select SYS_HAS_EARLY_PRINTK 335 select SYS_HAS_CPU_BMIPS32_3300 336 select SYS_HAS_CPU_BMIPS4350 337 select SYS_HAS_CPU_BMIPS4380 338 select SWAP_IO_SPACE 339 select GPIOLIB 340 select MIPS_L1_CACHE_SHIFT_4 341 select HAVE_LEGACY_CLK 342 help 343 Support for BCM63XX based boards 344 345config MIPS_COBALT 346 bool "Cobalt Server" 347 select CEVT_R4K 348 select CSRC_R4K 349 select CEVT_GT641XX 350 select DMA_NONCOHERENT 351 select FORCE_PCI 352 select I8253 353 select I8259 354 select IRQ_MIPS_CPU 355 select IRQ_GT641XX 356 select PCI_GT64XXX_PCI0 357 select SYS_HAS_CPU_NEVADA 358 select SYS_HAS_EARLY_PRINTK 359 select SYS_SUPPORTS_32BIT_KERNEL 360 select SYS_SUPPORTS_64BIT_KERNEL 361 select SYS_SUPPORTS_LITTLE_ENDIAN 362 select USE_GENERIC_EARLY_PRINTK_8250 363 364config MACH_DECSTATION 365 bool "DECstations" 366 select BOOT_ELF32 367 select CEVT_DS1287 368 select CEVT_R4K if CPU_R4X00 369 select CSRC_IOASIC 370 select CSRC_R4K if CPU_R4X00 371 select CPU_DADDI_WORKAROUNDS if 64BIT 372 select CPU_R4000_WORKAROUNDS if 64BIT 373 select CPU_R4400_WORKAROUNDS if 64BIT 374 select DMA_NONCOHERENT 375 select NO_IOPORT_MAP 376 select IRQ_MIPS_CPU 377 select SYS_HAS_CPU_R3000 378 select SYS_HAS_CPU_R4X00 379 select SYS_SUPPORTS_32BIT_KERNEL 380 select SYS_SUPPORTS_64BIT_KERNEL 381 select SYS_SUPPORTS_LITTLE_ENDIAN 382 select SYS_SUPPORTS_128HZ 383 select SYS_SUPPORTS_256HZ 384 select SYS_SUPPORTS_1024HZ 385 select MIPS_L1_CACHE_SHIFT_4 386 help 387 This enables support for DEC's MIPS based workstations. For details 388 see the Linux/MIPS FAQ on <http://www.linux-mips.org/> and the 389 DECstation porting pages on <http://decstation.unix-ag.org/>. 390 391 If you have one of the following DECstation Models you definitely 392 want to choose R4xx0 for the CPU Type: 393 394 DECstation 5000/50 395 DECstation 5000/150 396 DECstation 5000/260 397 DECsystem 5900/260 398 399 otherwise choose R3000. 400 401config MACH_JAZZ 402 bool "Jazz family of machines" 403 select ARC_MEMORY 404 select ARC_PROMLIB 405 select ARCH_MIGHT_HAVE_PC_PARPORT 406 select ARCH_MIGHT_HAVE_PC_SERIO 407 select DMA_OPS 408 select FW_ARC 409 select FW_ARC32 410 select ARCH_MAY_HAVE_PC_FDC 411 select CEVT_R4K 412 select CSRC_R4K 413 select DEFAULT_SGI_PARTITION if CPU_BIG_ENDIAN 414 select GENERIC_ISA_DMA 415 select HAVE_PCSPKR_PLATFORM 416 select IRQ_MIPS_CPU 417 select I8253 418 select I8259 419 select ISA 420 select SYS_HAS_CPU_R4X00 421 select SYS_SUPPORTS_32BIT_KERNEL 422 select SYS_SUPPORTS_64BIT_KERNEL 423 select SYS_SUPPORTS_100HZ 424 select SYS_SUPPORTS_LITTLE_ENDIAN 425 help 426 This a family of machines based on the MIPS R4030 chipset which was 427 used by several vendors to build RISC/os and Windows NT workstations. 428 Members include the Acer PICA, MIPS Magnum 4000, MIPS Millennium and 429 Olivetti M700-10 workstations. 430 431config MACH_INGENIC_SOC 432 bool "Ingenic SoC based machines" 433 select MIPS_GENERIC 434 select MACH_INGENIC 435 select SYS_SUPPORTS_ZBOOT_UART16550 436 select CPU_SUPPORTS_CPUFREQ 437 select MIPS_EXTERNAL_TIMER 438 439config LANTIQ 440 bool "Lantiq based platforms" 441 select DMA_NONCOHERENT 442 select IRQ_MIPS_CPU 443 select CEVT_R4K 444 select CSRC_R4K 445 select SYS_HAS_CPU_MIPS32_R1 446 select SYS_HAS_CPU_MIPS32_R2 447 select SYS_SUPPORTS_BIG_ENDIAN 448 select SYS_SUPPORTS_32BIT_KERNEL 449 select SYS_SUPPORTS_MIPS16 450 select SYS_SUPPORTS_MULTITHREADING 451 select SYS_SUPPORTS_VPE_LOADER 452 select SYS_HAS_EARLY_PRINTK 453 select GPIOLIB 454 select SWAP_IO_SPACE 455 select BOOT_RAW 456 select HAVE_LEGACY_CLK 457 select USE_OF 458 select PINCTRL 459 select PINCTRL_LANTIQ 460 select ARCH_HAS_RESET_CONTROLLER 461 select RESET_CONTROLLER 462 463config MACH_LOONGSON32 464 bool "Loongson 32-bit family of machines" 465 select SYS_SUPPORTS_ZBOOT 466 help 467 This enables support for the Loongson-1 family of machines. 468 469 Loongson-1 is a family of 32-bit MIPS-compatible SoCs developed by 470 the Institute of Computing Technology (ICT), Chinese Academy of 471 Sciences (CAS). 472 473config MACH_LOONGSON2EF 474 bool "Loongson-2E/F family of machines" 475 select SYS_SUPPORTS_ZBOOT 476 help 477 This enables the support of early Loongson-2E/F family of machines. 478 479config MACH_LOONGSON64 480 bool "Loongson 64-bit family of machines" 481 select ARCH_SPARSEMEM_ENABLE 482 select ARCH_MIGHT_HAVE_PC_PARPORT 483 select ARCH_MIGHT_HAVE_PC_SERIO 484 select GENERIC_ISA_DMA_SUPPORT_BROKEN 485 select BOOT_ELF32 486 select BOARD_SCACHE 487 select CSRC_R4K 488 select CEVT_R4K 489 select CPU_HAS_WB 490 select FORCE_PCI 491 select ISA 492 select I8259 493 select IRQ_MIPS_CPU 494 select NO_EXCEPT_FILL 495 select NR_CPUS_DEFAULT_64 496 select USE_GENERIC_EARLY_PRINTK_8250 497 select PCI_DRIVERS_GENERIC 498 select SYS_HAS_CPU_LOONGSON64 499 select SYS_HAS_EARLY_PRINTK 500 select SYS_SUPPORTS_SMP 501 select SYS_SUPPORTS_HOTPLUG_CPU 502 select SYS_SUPPORTS_NUMA 503 select SYS_SUPPORTS_64BIT_KERNEL 504 select SYS_SUPPORTS_HIGHMEM 505 select SYS_SUPPORTS_LITTLE_ENDIAN 506 select SYS_SUPPORTS_ZBOOT 507 select SYS_SUPPORTS_RELOCATABLE 508 select ZONE_DMA32 509 select COMMON_CLK 510 select USE_OF 511 select BUILTIN_DTB 512 select PCI_HOST_GENERIC 513 help 514 This enables the support of Loongson-2/3 family of machines. 515 516 Loongson-2 and Loongson-3 are 64-bit general-purpose processors with 517 GS264/GS464/GS464E/GS464V microarchitecture (except old Loongson-2E 518 and Loongson-2F which will be removed), developed by the Institute 519 of Computing Technology (ICT), Chinese Academy of Sciences (CAS). 520 521config MIPS_MALTA 522 bool "MIPS Malta board" 523 select ARCH_MAY_HAVE_PC_FDC 524 select ARCH_MIGHT_HAVE_PC_PARPORT 525 select ARCH_MIGHT_HAVE_PC_SERIO 526 select BOOT_ELF32 527 select BOOT_RAW 528 select BUILTIN_DTB 529 select CEVT_R4K 530 select CLKSRC_MIPS_GIC 531 select COMMON_CLK 532 select CSRC_R4K 533 select DMA_NONCOHERENT 534 select GENERIC_ISA_DMA 535 select HAVE_PCSPKR_PLATFORM 536 select HAVE_PCI 537 select I8253 538 select I8259 539 select IRQ_MIPS_CPU 540 select MIPS_BONITO64 541 select MIPS_CPU_SCACHE 542 select MIPS_GIC 543 select MIPS_L1_CACHE_SHIFT_6 544 select MIPS_MSC 545 select PCI_GT64XXX_PCI0 546 select SMP_UP if SMP 547 select SWAP_IO_SPACE 548 select SYS_HAS_CPU_MIPS32_R1 549 select SYS_HAS_CPU_MIPS32_R2 550 select SYS_HAS_CPU_MIPS32_R3_5 551 select SYS_HAS_CPU_MIPS32_R5 552 select SYS_HAS_CPU_MIPS32_R6 553 select SYS_HAS_CPU_MIPS64_R1 554 select SYS_HAS_CPU_MIPS64_R2 555 select SYS_HAS_CPU_MIPS64_R6 556 select SYS_HAS_CPU_NEVADA 557 select SYS_HAS_CPU_RM7000 558 select SYS_SUPPORTS_32BIT_KERNEL 559 select SYS_SUPPORTS_64BIT_KERNEL 560 select SYS_SUPPORTS_BIG_ENDIAN 561 select SYS_SUPPORTS_HIGHMEM 562 select SYS_SUPPORTS_LITTLE_ENDIAN 563 select SYS_SUPPORTS_MICROMIPS 564 select SYS_SUPPORTS_MIPS16 565 select SYS_SUPPORTS_MIPS_CMP 566 select SYS_SUPPORTS_MIPS_CPS 567 select SYS_SUPPORTS_MULTITHREADING 568 select SYS_SUPPORTS_RELOCATABLE 569 select SYS_SUPPORTS_SMARTMIPS 570 select SYS_SUPPORTS_VPE_LOADER 571 select SYS_SUPPORTS_ZBOOT 572 select USE_OF 573 select WAR_ICACHE_REFILLS 574 select ZONE_DMA32 if 64BIT 575 help 576 This enables support for the MIPS Technologies Malta evaluation 577 board. 578 579config MACH_PIC32 580 bool "Microchip PIC32 Family" 581 help 582 This enables support for the Microchip PIC32 family of platforms. 583 584 Microchip PIC32 is a family of general-purpose 32 bit MIPS core 585 microcontrollers. 586 587config MACH_VR41XX 588 bool "NEC VR4100 series based machines" 589 select CEVT_R4K 590 select CSRC_R4K 591 select SYS_HAS_CPU_VR41XX 592 select SYS_SUPPORTS_MIPS16 593 select GPIOLIB 594 595config MACH_NINTENDO64 596 bool "Nintendo 64 console" 597 select CEVT_R4K 598 select CSRC_R4K 599 select SYS_HAS_CPU_R4300 600 select SYS_SUPPORTS_BIG_ENDIAN 601 select SYS_SUPPORTS_ZBOOT 602 select SYS_SUPPORTS_32BIT_KERNEL 603 select SYS_SUPPORTS_64BIT_KERNEL 604 select DMA_NONCOHERENT 605 select IRQ_MIPS_CPU 606 607config RALINK 608 bool "Ralink based machines" 609 select CEVT_R4K 610 select COMMON_CLK 611 select CSRC_R4K 612 select BOOT_RAW 613 select DMA_NONCOHERENT 614 select IRQ_MIPS_CPU 615 select USE_OF 616 select SYS_HAS_CPU_MIPS32_R1 617 select SYS_HAS_CPU_MIPS32_R2 618 select SYS_SUPPORTS_32BIT_KERNEL 619 select SYS_SUPPORTS_LITTLE_ENDIAN 620 select SYS_SUPPORTS_MIPS16 621 select SYS_SUPPORTS_ZBOOT 622 select SYS_HAS_EARLY_PRINTK 623 select ARCH_HAS_RESET_CONTROLLER 624 select RESET_CONTROLLER 625 626config MACH_REALTEK_RTL 627 bool "Realtek RTL838x/RTL839x based machines" 628 select MIPS_GENERIC 629 select DMA_NONCOHERENT 630 select IRQ_MIPS_CPU 631 select CSRC_R4K 632 select CEVT_R4K 633 select SYS_HAS_CPU_MIPS32_R1 634 select SYS_HAS_CPU_MIPS32_R2 635 select SYS_SUPPORTS_BIG_ENDIAN 636 select SYS_SUPPORTS_32BIT_KERNEL 637 select SYS_SUPPORTS_MIPS16 638 select SYS_SUPPORTS_MULTITHREADING 639 select SYS_SUPPORTS_VPE_LOADER 640 select SYS_HAS_EARLY_PRINTK 641 select SYS_HAS_EARLY_PRINTK_8250 642 select USE_GENERIC_EARLY_PRINTK_8250 643 select BOOT_RAW 644 select PINCTRL 645 select USE_OF 646 647config SGI_IP22 648 bool "SGI IP22 (Indy/Indigo2)" 649 select ARC_MEMORY 650 select ARC_PROMLIB 651 select FW_ARC 652 select FW_ARC32 653 select ARCH_MIGHT_HAVE_PC_SERIO 654 select BOOT_ELF32 655 select CEVT_R4K 656 select CSRC_R4K 657 select DEFAULT_SGI_PARTITION 658 select DMA_NONCOHERENT 659 select HAVE_EISA 660 select I8253 661 select I8259 662 select IP22_CPU_SCACHE 663 select IRQ_MIPS_CPU 664 select GENERIC_ISA_DMA_SUPPORT_BROKEN 665 select SGI_HAS_I8042 666 select SGI_HAS_INDYDOG 667 select SGI_HAS_HAL2 668 select SGI_HAS_SEEQ 669 select SGI_HAS_WD93 670 select SGI_HAS_ZILOG 671 select SWAP_IO_SPACE 672 select SYS_HAS_CPU_R4X00 673 select SYS_HAS_CPU_R5000 674 select SYS_HAS_EARLY_PRINTK 675 select SYS_SUPPORTS_32BIT_KERNEL 676 select SYS_SUPPORTS_64BIT_KERNEL 677 select SYS_SUPPORTS_BIG_ENDIAN 678 select WAR_R4600_V1_INDEX_ICACHEOP 679 select WAR_R4600_V1_HIT_CACHEOP 680 select WAR_R4600_V2_HIT_CACHEOP 681 select MIPS_L1_CACHE_SHIFT_7 682 help 683 This are the SGI Indy, Challenge S and Indigo2, as well as certain 684 OEM variants like the Tandem CMN B006S. To compile a Linux kernel 685 that runs on these, say Y here. 686 687config SGI_IP27 688 bool "SGI IP27 (Origin200/2000)" 689 select ARCH_HAS_PHYS_TO_DMA 690 select ARCH_SPARSEMEM_ENABLE 691 select FW_ARC 692 select FW_ARC64 693 select ARC_CMDLINE_ONLY 694 select BOOT_ELF64 695 select DEFAULT_SGI_PARTITION 696 select FORCE_PCI 697 select SYS_HAS_EARLY_PRINTK 698 select HAVE_PCI 699 select IRQ_MIPS_CPU 700 select IRQ_DOMAIN_HIERARCHY 701 select NR_CPUS_DEFAULT_64 702 select PCI_DRIVERS_GENERIC 703 select PCI_XTALK_BRIDGE 704 select SYS_HAS_CPU_R10000 705 select SYS_SUPPORTS_64BIT_KERNEL 706 select SYS_SUPPORTS_BIG_ENDIAN 707 select SYS_SUPPORTS_NUMA 708 select SYS_SUPPORTS_SMP 709 select WAR_R10000_LLSC 710 select MIPS_L1_CACHE_SHIFT_7 711 select NUMA 712 help 713 This are the SGI Origin 200, Origin 2000 and Onyx 2 Graphics 714 workstations. To compile a Linux kernel that runs on these, say Y 715 here. 716 717config SGI_IP28 718 bool "SGI IP28 (Indigo2 R10k)" 719 select ARC_MEMORY 720 select ARC_PROMLIB 721 select FW_ARC 722 select FW_ARC64 723 select ARCH_MIGHT_HAVE_PC_SERIO 724 select BOOT_ELF64 725 select CEVT_R4K 726 select CSRC_R4K 727 select DEFAULT_SGI_PARTITION 728 select DMA_NONCOHERENT 729 select GENERIC_ISA_DMA_SUPPORT_BROKEN 730 select IRQ_MIPS_CPU 731 select HAVE_EISA 732 select I8253 733 select I8259 734 select SGI_HAS_I8042 735 select SGI_HAS_INDYDOG 736 select SGI_HAS_HAL2 737 select SGI_HAS_SEEQ 738 select SGI_HAS_WD93 739 select SGI_HAS_ZILOG 740 select SWAP_IO_SPACE 741 select SYS_HAS_CPU_R10000 742 select SYS_HAS_EARLY_PRINTK 743 select SYS_SUPPORTS_64BIT_KERNEL 744 select SYS_SUPPORTS_BIG_ENDIAN 745 select WAR_R10000_LLSC 746 select MIPS_L1_CACHE_SHIFT_7 747 help 748 This is the SGI Indigo2 with R10000 processor. To compile a Linux 749 kernel that runs on these, say Y here. 750 751config SGI_IP30 752 bool "SGI IP30 (Octane/Octane2)" 753 select ARCH_HAS_PHYS_TO_DMA 754 select FW_ARC 755 select FW_ARC64 756 select BOOT_ELF64 757 select CEVT_R4K 758 select CSRC_R4K 759 select FORCE_PCI 760 select SYNC_R4K if SMP 761 select ZONE_DMA32 762 select HAVE_PCI 763 select IRQ_MIPS_CPU 764 select IRQ_DOMAIN_HIERARCHY 765 select NR_CPUS_DEFAULT_2 766 select PCI_DRIVERS_GENERIC 767 select PCI_XTALK_BRIDGE 768 select SYS_HAS_EARLY_PRINTK 769 select SYS_HAS_CPU_R10000 770 select SYS_SUPPORTS_64BIT_KERNEL 771 select SYS_SUPPORTS_BIG_ENDIAN 772 select SYS_SUPPORTS_SMP 773 select WAR_R10000_LLSC 774 select MIPS_L1_CACHE_SHIFT_7 775 select ARC_MEMORY 776 help 777 These are the SGI Octane and Octane2 graphics workstations. To 778 compile a Linux kernel that runs on these, say Y here. 779 780config SGI_IP32 781 bool "SGI IP32 (O2)" 782 select ARC_MEMORY 783 select ARC_PROMLIB 784 select ARCH_HAS_PHYS_TO_DMA 785 select FW_ARC 786 select FW_ARC32 787 select BOOT_ELF32 788 select CEVT_R4K 789 select CSRC_R4K 790 select DMA_NONCOHERENT 791 select HAVE_PCI 792 select IRQ_MIPS_CPU 793 select R5000_CPU_SCACHE 794 select RM7000_CPU_SCACHE 795 select SYS_HAS_CPU_R5000 796 select SYS_HAS_CPU_R10000 if BROKEN 797 select SYS_HAS_CPU_RM7000 798 select SYS_HAS_CPU_NEVADA 799 select SYS_SUPPORTS_64BIT_KERNEL 800 select SYS_SUPPORTS_BIG_ENDIAN 801 select WAR_ICACHE_REFILLS 802 help 803 If you want this kernel to run on SGI O2 workstation, say Y here. 804 805config SIBYTE_CRHINE 806 bool "Sibyte BCM91120C-CRhine" 807 select BOOT_ELF32 808 select SIBYTE_BCM1120 809 select SWAP_IO_SPACE 810 select SYS_HAS_CPU_SB1 811 select SYS_SUPPORTS_BIG_ENDIAN 812 select SYS_SUPPORTS_LITTLE_ENDIAN 813 814config SIBYTE_CARMEL 815 bool "Sibyte BCM91120x-Carmel" 816 select BOOT_ELF32 817 select SIBYTE_BCM1120 818 select SWAP_IO_SPACE 819 select SYS_HAS_CPU_SB1 820 select SYS_SUPPORTS_BIG_ENDIAN 821 select SYS_SUPPORTS_LITTLE_ENDIAN 822 823config SIBYTE_CRHONE 824 bool "Sibyte BCM91125C-CRhone" 825 select BOOT_ELF32 826 select SIBYTE_BCM1125 827 select SWAP_IO_SPACE 828 select SYS_HAS_CPU_SB1 829 select SYS_SUPPORTS_BIG_ENDIAN 830 select SYS_SUPPORTS_HIGHMEM 831 select SYS_SUPPORTS_LITTLE_ENDIAN 832 833config SIBYTE_RHONE 834 bool "Sibyte BCM91125E-Rhone" 835 select BOOT_ELF32 836 select SIBYTE_BCM1125H 837 select SWAP_IO_SPACE 838 select SYS_HAS_CPU_SB1 839 select SYS_SUPPORTS_BIG_ENDIAN 840 select SYS_SUPPORTS_LITTLE_ENDIAN 841 842config SIBYTE_SWARM 843 bool "Sibyte BCM91250A-SWARM" 844 select BOOT_ELF32 845 select HAVE_PATA_PLATFORM 846 select SIBYTE_SB1250 847 select SWAP_IO_SPACE 848 select SYS_HAS_CPU_SB1 849 select SYS_SUPPORTS_BIG_ENDIAN 850 select SYS_SUPPORTS_HIGHMEM 851 select SYS_SUPPORTS_LITTLE_ENDIAN 852 select ZONE_DMA32 if 64BIT 853 select SWIOTLB if ARCH_DMA_ADDR_T_64BIT && PCI 854 855config SIBYTE_LITTLESUR 856 bool "Sibyte BCM91250C2-LittleSur" 857 select BOOT_ELF32 858 select HAVE_PATA_PLATFORM 859 select SIBYTE_SB1250 860 select SWAP_IO_SPACE 861 select SYS_HAS_CPU_SB1 862 select SYS_SUPPORTS_BIG_ENDIAN 863 select SYS_SUPPORTS_HIGHMEM 864 select SYS_SUPPORTS_LITTLE_ENDIAN 865 select ZONE_DMA32 if 64BIT 866 867config SIBYTE_SENTOSA 868 bool "Sibyte BCM91250E-Sentosa" 869 select BOOT_ELF32 870 select SIBYTE_SB1250 871 select SWAP_IO_SPACE 872 select SYS_HAS_CPU_SB1 873 select SYS_SUPPORTS_BIG_ENDIAN 874 select SYS_SUPPORTS_LITTLE_ENDIAN 875 select SWIOTLB if ARCH_DMA_ADDR_T_64BIT && PCI 876 877config SIBYTE_BIGSUR 878 bool "Sibyte BCM91480B-BigSur" 879 select BOOT_ELF32 880 select NR_CPUS_DEFAULT_4 881 select SIBYTE_BCM1x80 882 select SWAP_IO_SPACE 883 select SYS_HAS_CPU_SB1 884 select SYS_SUPPORTS_BIG_ENDIAN 885 select SYS_SUPPORTS_HIGHMEM 886 select SYS_SUPPORTS_LITTLE_ENDIAN 887 select ZONE_DMA32 if 64BIT 888 select SWIOTLB if ARCH_DMA_ADDR_T_64BIT && PCI 889 890config SNI_RM 891 bool "SNI RM200/300/400" 892 select ARC_MEMORY 893 select ARC_PROMLIB 894 select FW_ARC if CPU_LITTLE_ENDIAN 895 select FW_ARC32 if CPU_LITTLE_ENDIAN 896 select FW_SNIPROM if CPU_BIG_ENDIAN 897 select ARCH_MAY_HAVE_PC_FDC 898 select ARCH_MIGHT_HAVE_PC_PARPORT 899 select ARCH_MIGHT_HAVE_PC_SERIO 900 select BOOT_ELF32 901 select CEVT_R4K 902 select CSRC_R4K 903 select DEFAULT_SGI_PARTITION if CPU_BIG_ENDIAN 904 select DMA_NONCOHERENT 905 select GENERIC_ISA_DMA 906 select HAVE_EISA 907 select HAVE_PCSPKR_PLATFORM 908 select HAVE_PCI 909 select IRQ_MIPS_CPU 910 select I8253 911 select I8259 912 select ISA 913 select MIPS_L1_CACHE_SHIFT_6 914 select SWAP_IO_SPACE if CPU_BIG_ENDIAN 915 select SYS_HAS_CPU_R4X00 916 select SYS_HAS_CPU_R5000 917 select SYS_HAS_CPU_R10000 918 select R5000_CPU_SCACHE 919 select SYS_HAS_EARLY_PRINTK 920 select SYS_SUPPORTS_32BIT_KERNEL 921 select SYS_SUPPORTS_64BIT_KERNEL 922 select SYS_SUPPORTS_BIG_ENDIAN 923 select SYS_SUPPORTS_HIGHMEM 924 select SYS_SUPPORTS_LITTLE_ENDIAN 925 select WAR_R4600_V2_HIT_CACHEOP 926 help 927 The SNI RM200/300/400 are MIPS-based machines manufactured by 928 Siemens Nixdorf Informationssysteme (SNI), parent company of Pyramid 929 Technology and now in turn merged with Fujitsu. Say Y here to 930 support this machine type. 931 932config MACH_TX39XX 933 bool "Toshiba TX39 series based machines" 934 935config MACH_TX49XX 936 bool "Toshiba TX49 series based machines" 937 select WAR_TX49XX_ICACHE_INDEX_INV 938 939config MIKROTIK_RB532 940 bool "Mikrotik RB532 boards" 941 select CEVT_R4K 942 select CSRC_R4K 943 select DMA_NONCOHERENT 944 select HAVE_PCI 945 select IRQ_MIPS_CPU 946 select SYS_HAS_CPU_MIPS32_R1 947 select SYS_SUPPORTS_32BIT_KERNEL 948 select SYS_SUPPORTS_LITTLE_ENDIAN 949 select SWAP_IO_SPACE 950 select BOOT_RAW 951 select GPIOLIB 952 select MIPS_L1_CACHE_SHIFT_4 953 help 954 Support the Mikrotik(tm) RouterBoard 532 series, 955 based on the IDT RC32434 SoC. 956 957config CAVIUM_OCTEON_SOC 958 bool "Cavium Networks Octeon SoC based boards" 959 select CEVT_R4K 960 select ARCH_HAS_PHYS_TO_DMA 961 select HAVE_RAPIDIO 962 select PHYS_ADDR_T_64BIT 963 select SYS_SUPPORTS_64BIT_KERNEL 964 select SYS_SUPPORTS_BIG_ENDIAN 965 select EDAC_SUPPORT 966 select EDAC_ATOMIC_SCRUB 967 select SYS_SUPPORTS_LITTLE_ENDIAN 968 select SYS_SUPPORTS_HOTPLUG_CPU if CPU_BIG_ENDIAN 969 select SYS_HAS_EARLY_PRINTK 970 select SYS_HAS_CPU_CAVIUM_OCTEON 971 select HAVE_PCI 972 select HAVE_PLAT_DELAY 973 select HAVE_PLAT_FW_INIT_CMDLINE 974 select HAVE_PLAT_MEMCPY 975 select ZONE_DMA32 976 select GPIOLIB 977 select USE_OF 978 select ARCH_SPARSEMEM_ENABLE 979 select SYS_SUPPORTS_SMP 980 select NR_CPUS_DEFAULT_64 981 select MIPS_NR_CPU_NR_MAP_1024 982 select BUILTIN_DTB 983 select MTD 984 select MTD_COMPLEX_MAPPINGS 985 select SWIOTLB 986 select SYS_SUPPORTS_RELOCATABLE 987 help 988 This option supports all of the Octeon reference boards from Cavium 989 Networks. It builds a kernel that dynamically determines the Octeon 990 CPU type and supports all known board reference implementations. 991 Some of the supported boards are: 992 EBT3000 993 EBH3000 994 EBH3100 995 Thunder 996 Kodama 997 Hikari 998 Say Y here for most Octeon reference boards. 999 1000endchoice 1001 1002source "arch/mips/alchemy/Kconfig" 1003source "arch/mips/ath25/Kconfig" 1004source "arch/mips/ath79/Kconfig" 1005source "arch/mips/bcm47xx/Kconfig" 1006source "arch/mips/bcm63xx/Kconfig" 1007source "arch/mips/bmips/Kconfig" 1008source "arch/mips/generic/Kconfig" 1009source "arch/mips/ingenic/Kconfig" 1010source "arch/mips/jazz/Kconfig" 1011source "arch/mips/lantiq/Kconfig" 1012source "arch/mips/pic32/Kconfig" 1013source "arch/mips/ralink/Kconfig" 1014source "arch/mips/sgi-ip27/Kconfig" 1015source "arch/mips/sibyte/Kconfig" 1016source "arch/mips/txx9/Kconfig" 1017source "arch/mips/vr41xx/Kconfig" 1018source "arch/mips/cavium-octeon/Kconfig" 1019source "arch/mips/loongson2ef/Kconfig" 1020source "arch/mips/loongson32/Kconfig" 1021source "arch/mips/loongson64/Kconfig" 1022 1023endmenu 1024 1025config GENERIC_HWEIGHT 1026 bool 1027 default y 1028 1029config GENERIC_CALIBRATE_DELAY 1030 bool 1031 default y 1032 1033config SCHED_OMIT_FRAME_POINTER 1034 bool 1035 default y 1036 1037# 1038# Select some configuration options automatically based on user selections. 1039# 1040config FW_ARC 1041 bool 1042 1043config ARCH_MAY_HAVE_PC_FDC 1044 bool 1045 1046config BOOT_RAW 1047 bool 1048 1049config CEVT_BCM1480 1050 bool 1051 1052config CEVT_DS1287 1053 bool 1054 1055config CEVT_GT641XX 1056 bool 1057 1058config CEVT_R4K 1059 bool 1060 1061config CEVT_SB1250 1062 bool 1063 1064config CEVT_TXX9 1065 bool 1066 1067config CSRC_BCM1480 1068 bool 1069 1070config CSRC_IOASIC 1071 bool 1072 1073config CSRC_R4K 1074 select CLOCKSOURCE_WATCHDOG if CPU_FREQ 1075 bool 1076 1077config CSRC_SB1250 1078 bool 1079 1080config MIPS_CLOCK_VSYSCALL 1081 def_bool CSRC_R4K || CLKSRC_MIPS_GIC 1082 1083config GPIO_TXX9 1084 select GPIOLIB 1085 bool 1086 1087config FW_CFE 1088 bool 1089 1090config ARCH_SUPPORTS_UPROBES 1091 bool 1092 1093config DMA_PERDEV_COHERENT 1094 bool 1095 select ARCH_HAS_SETUP_DMA_OPS 1096 select DMA_NONCOHERENT 1097 1098config DMA_NONCOHERENT 1099 bool 1100 # 1101 # MIPS allows mixing "slightly different" Cacheability and Coherency 1102 # Attribute bits. It is believed that the uncached access through 1103 # KSEG1 and the implementation specific "uncached accelerated" used 1104 # by pgprot_writcombine can be mixed, and the latter sometimes provides 1105 # significant advantages. 1106 # 1107 select ARCH_HAS_DMA_WRITE_COMBINE 1108 select ARCH_HAS_DMA_PREP_COHERENT 1109 select ARCH_HAS_SYNC_DMA_FOR_DEVICE 1110 select ARCH_HAS_DMA_SET_UNCACHED 1111 select DMA_NONCOHERENT_MMAP 1112 select NEED_DMA_MAP_STATE 1113 1114config SYS_HAS_EARLY_PRINTK 1115 bool 1116 1117config SYS_SUPPORTS_HOTPLUG_CPU 1118 bool 1119 1120config MIPS_BONITO64 1121 bool 1122 1123config MIPS_MSC 1124 bool 1125 1126config SYNC_R4K 1127 bool 1128 1129config NO_IOPORT_MAP 1130 def_bool n 1131 1132config GENERIC_CSUM 1133 def_bool CPU_NO_LOAD_STORE_LR 1134 1135config GENERIC_ISA_DMA 1136 bool 1137 select ZONE_DMA if GENERIC_ISA_DMA_SUPPORT_BROKEN=n 1138 select ISA_DMA_API 1139 1140config GENERIC_ISA_DMA_SUPPORT_BROKEN 1141 bool 1142 select GENERIC_ISA_DMA 1143 1144config HAVE_PLAT_DELAY 1145 bool 1146 1147config HAVE_PLAT_FW_INIT_CMDLINE 1148 bool 1149 1150config HAVE_PLAT_MEMCPY 1151 bool 1152 1153config ISA_DMA_API 1154 bool 1155 1156config SYS_SUPPORTS_RELOCATABLE 1157 bool 1158 help 1159 Selected if the platform supports relocating the kernel. 1160 The platform must provide plat_get_fdt() if it selects CONFIG_USE_OF 1161 to allow access to command line and entropy sources. 1162 1163config MIPS_CBPF_JIT 1164 def_bool y 1165 depends on BPF_JIT && HAVE_CBPF_JIT 1166 1167config MIPS_EBPF_JIT 1168 def_bool y 1169 depends on BPF_JIT && HAVE_EBPF_JIT 1170 1171 1172# 1173# Endianness selection. Sufficiently obscure so many users don't know what to 1174# answer,so we try hard to limit the available choices. Also the use of a 1175# choice statement should be more obvious to the user. 1176# 1177choice 1178 prompt "Endianness selection" 1179 help 1180 Some MIPS machines can be configured for either little or big endian 1181 byte order. These modes require different kernels and a different 1182 Linux distribution. In general there is one preferred byteorder for a 1183 particular system but some systems are just as commonly used in the 1184 one or the other endianness. 1185 1186config CPU_BIG_ENDIAN 1187 bool "Big endian" 1188 depends on SYS_SUPPORTS_BIG_ENDIAN 1189 1190config CPU_LITTLE_ENDIAN 1191 bool "Little endian" 1192 depends on SYS_SUPPORTS_LITTLE_ENDIAN 1193 1194endchoice 1195 1196config EXPORT_UASM 1197 bool 1198 1199config SYS_SUPPORTS_APM_EMULATION 1200 bool 1201 1202config SYS_SUPPORTS_BIG_ENDIAN 1203 bool 1204 1205config SYS_SUPPORTS_LITTLE_ENDIAN 1206 bool 1207 1208config MIPS_HUGE_TLB_SUPPORT 1209 def_bool HUGETLB_PAGE || TRANSPARENT_HUGEPAGE 1210 1211config IRQ_MSP_SLP 1212 bool 1213 1214config IRQ_MSP_CIC 1215 bool 1216 1217config IRQ_TXX9 1218 bool 1219 1220config IRQ_GT641XX 1221 bool 1222 1223config PCI_GT64XXX_PCI0 1224 bool 1225 1226config PCI_XTALK_BRIDGE 1227 bool 1228 1229config NO_EXCEPT_FILL 1230 bool 1231 1232config MIPS_SPRAM 1233 bool 1234 1235config SWAP_IO_SPACE 1236 bool 1237 1238config SGI_HAS_INDYDOG 1239 bool 1240 1241config SGI_HAS_HAL2 1242 bool 1243 1244config SGI_HAS_SEEQ 1245 bool 1246 1247config SGI_HAS_WD93 1248 bool 1249 1250config SGI_HAS_ZILOG 1251 bool 1252 1253config SGI_HAS_I8042 1254 bool 1255 1256config DEFAULT_SGI_PARTITION 1257 bool 1258 1259config FW_ARC32 1260 bool 1261 1262config FW_SNIPROM 1263 bool 1264 1265config BOOT_ELF32 1266 bool 1267 1268config MIPS_L1_CACHE_SHIFT_4 1269 bool 1270 1271config MIPS_L1_CACHE_SHIFT_5 1272 bool 1273 1274config MIPS_L1_CACHE_SHIFT_6 1275 bool 1276 1277config MIPS_L1_CACHE_SHIFT_7 1278 bool 1279 1280config MIPS_L1_CACHE_SHIFT 1281 int 1282 default "7" if MIPS_L1_CACHE_SHIFT_7 1283 default "6" if MIPS_L1_CACHE_SHIFT_6 1284 default "5" if MIPS_L1_CACHE_SHIFT_5 1285 default "4" if MIPS_L1_CACHE_SHIFT_4 1286 default "5" 1287 1288config ARC_CMDLINE_ONLY 1289 bool 1290 1291config ARC_CONSOLE 1292 bool "ARC console support" 1293 depends on SGI_IP22 || SGI_IP28 || (SNI_RM && CPU_LITTLE_ENDIAN) 1294 1295config ARC_MEMORY 1296 bool 1297 1298config ARC_PROMLIB 1299 bool 1300 1301config FW_ARC64 1302 bool 1303 1304config BOOT_ELF64 1305 bool 1306 1307menu "CPU selection" 1308 1309choice 1310 prompt "CPU type" 1311 default CPU_R4X00 1312 1313config CPU_LOONGSON64 1314 bool "Loongson 64-bit CPU" 1315 depends on SYS_HAS_CPU_LOONGSON64 1316 select ARCH_HAS_PHYS_TO_DMA 1317 select CPU_MIPSR2 1318 select CPU_HAS_PREFETCH 1319 select CPU_SUPPORTS_64BIT_KERNEL 1320 select CPU_SUPPORTS_HIGHMEM 1321 select CPU_SUPPORTS_HUGEPAGES 1322 select CPU_SUPPORTS_MSA 1323 select CPU_DIEI_BROKEN if !LOONGSON3_ENHANCEMENT 1324 select CPU_MIPSR2_IRQ_VI 1325 select WEAK_ORDERING 1326 select WEAK_REORDERING_BEYOND_LLSC 1327 select MIPS_ASID_BITS_VARIABLE 1328 select MIPS_PGD_C0_CONTEXT 1329 select MIPS_L1_CACHE_SHIFT_6 1330 select MIPS_FP_SUPPORT 1331 select GPIOLIB 1332 select SWIOTLB 1333 select HAVE_KVM 1334 help 1335 The Loongson GSx64(GS264/GS464/GS464E/GS464V) series of processor 1336 cores implements the MIPS64R2 instruction set with many extensions, 1337 including most 64-bit Loongson-2 (2H, 2K) and Loongson-3 (3A1000, 1338 3B1000, 3B1500, 3A2000, 3A3000 and 3A4000) processors. However, old 1339 Loongson-2E/2F is not covered here and will be removed in future. 1340 1341config LOONGSON3_ENHANCEMENT 1342 bool "New Loongson-3 CPU Enhancements" 1343 default n 1344 depends on CPU_LOONGSON64 1345 help 1346 New Loongson-3 cores (since Loongson-3A R2, as opposed to Loongson-3A 1347 R1, Loongson-3B R1 and Loongson-3B R2) has many enhancements, such as 1348 FTLB, L1-VCache, EI/DI/Wait/Prefetch instruction, DSP/DSPr2 ASE, User 1349 Local register, Read-Inhibit/Execute-Inhibit, SFB (Store Fill Buffer), 1350 Fast TLB refill support, etc. 1351 1352 This option enable those enhancements which are not probed at run 1353 time. If you want a generic kernel to run on all Loongson 3 machines, 1354 please say 'N' here. If you want a high-performance kernel to run on 1355 new Loongson-3 machines only, please say 'Y' here. 1356 1357config CPU_LOONGSON3_WORKAROUNDS 1358 bool "Old Loongson-3 LLSC Workarounds" 1359 default y if SMP 1360 depends on CPU_LOONGSON64 1361 help 1362 Loongson-3 processors have the llsc issues which require workarounds. 1363 Without workarounds the system may hang unexpectedly. 1364 1365 Newer Loongson-3 will fix these issues and no workarounds are needed. 1366 The workarounds have no significant side effect on them but may 1367 decrease the performance of the system so this option should be 1368 disabled unless the kernel is intended to be run on old systems. 1369 1370 If unsure, please say Y. 1371 1372config CPU_LOONGSON3_CPUCFG_EMULATION 1373 bool "Emulate the CPUCFG instruction on older Loongson cores" 1374 default y 1375 depends on CPU_LOONGSON64 1376 help 1377 Loongson-3A R4 and newer have the CPUCFG instruction available for 1378 userland to query CPU capabilities, much like CPUID on x86. This 1379 option provides emulation of the instruction on older Loongson 1380 cores, back to Loongson-3A1000. 1381 1382 If unsure, please say Y. 1383 1384config CPU_LOONGSON2E 1385 bool "Loongson 2E" 1386 depends on SYS_HAS_CPU_LOONGSON2E 1387 select CPU_LOONGSON2EF 1388 help 1389 The Loongson 2E processor implements the MIPS III instruction set 1390 with many extensions. 1391 1392 It has an internal FPGA northbridge, which is compatible to 1393 bonito64. 1394 1395config CPU_LOONGSON2F 1396 bool "Loongson 2F" 1397 depends on SYS_HAS_CPU_LOONGSON2F 1398 select CPU_LOONGSON2EF 1399 select GPIOLIB 1400 help 1401 The Loongson 2F processor implements the MIPS III instruction set 1402 with many extensions. 1403 1404 Loongson2F have built-in DDR2 and PCIX controller. The PCIX controller 1405 have a similar programming interface with FPGA northbridge used in 1406 Loongson2E. 1407 1408config CPU_LOONGSON1B 1409 bool "Loongson 1B" 1410 depends on SYS_HAS_CPU_LOONGSON1B 1411 select CPU_LOONGSON32 1412 select LEDS_GPIO_REGISTER 1413 help 1414 The Loongson 1B is a 32-bit SoC, which implements the MIPS32 1415 Release 1 instruction set and part of the MIPS32 Release 2 1416 instruction set. 1417 1418config CPU_LOONGSON1C 1419 bool "Loongson 1C" 1420 depends on SYS_HAS_CPU_LOONGSON1C 1421 select CPU_LOONGSON32 1422 select LEDS_GPIO_REGISTER 1423 help 1424 The Loongson 1C is a 32-bit SoC, which implements the MIPS32 1425 Release 1 instruction set and part of the MIPS32 Release 2 1426 instruction set. 1427 1428config CPU_MIPS32_R1 1429 bool "MIPS32 Release 1" 1430 depends on SYS_HAS_CPU_MIPS32_R1 1431 select CPU_HAS_PREFETCH 1432 select CPU_SUPPORTS_32BIT_KERNEL 1433 select CPU_SUPPORTS_HIGHMEM 1434 help 1435 Choose this option to build a kernel for release 1 or later of the 1436 MIPS32 architecture. Most modern embedded systems with a 32-bit 1437 MIPS processor are based on a MIPS32 processor. If you know the 1438 specific type of processor in your system, choose those that one 1439 otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system. 1440 Release 2 of the MIPS32 architecture is available since several 1441 years so chances are you even have a MIPS32 Release 2 processor 1442 in which case you should choose CPU_MIPS32_R2 instead for better 1443 performance. 1444 1445config CPU_MIPS32_R2 1446 bool "MIPS32 Release 2" 1447 depends on SYS_HAS_CPU_MIPS32_R2 1448 select CPU_HAS_PREFETCH 1449 select CPU_SUPPORTS_32BIT_KERNEL 1450 select CPU_SUPPORTS_HIGHMEM 1451 select CPU_SUPPORTS_MSA 1452 select HAVE_KVM 1453 help 1454 Choose this option to build a kernel for release 2 or later of the 1455 MIPS32 architecture. Most modern embedded systems with a 32-bit 1456 MIPS processor are based on a MIPS32 processor. If you know the 1457 specific type of processor in your system, choose those that one 1458 otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system. 1459 1460config CPU_MIPS32_R5 1461 bool "MIPS32 Release 5" 1462 depends on SYS_HAS_CPU_MIPS32_R5 1463 select CPU_HAS_PREFETCH 1464 select CPU_SUPPORTS_32BIT_KERNEL 1465 select CPU_SUPPORTS_HIGHMEM 1466 select CPU_SUPPORTS_MSA 1467 select HAVE_KVM 1468 select MIPS_O32_FP64_SUPPORT 1469 help 1470 Choose this option to build a kernel for release 5 or later of the 1471 MIPS32 architecture. New MIPS processors, starting with the Warrior 1472 family, are based on a MIPS32r5 processor. If you own an older 1473 processor, you probably need to select MIPS32r1 or MIPS32r2 instead. 1474 1475config CPU_MIPS32_R6 1476 bool "MIPS32 Release 6" 1477 depends on SYS_HAS_CPU_MIPS32_R6 1478 select CPU_HAS_PREFETCH 1479 select CPU_NO_LOAD_STORE_LR 1480 select CPU_SUPPORTS_32BIT_KERNEL 1481 select CPU_SUPPORTS_HIGHMEM 1482 select CPU_SUPPORTS_MSA 1483 select HAVE_KVM 1484 select MIPS_O32_FP64_SUPPORT 1485 help 1486 Choose this option to build a kernel for release 6 or later of the 1487 MIPS32 architecture. New MIPS processors, starting with the Warrior 1488 family, are based on a MIPS32r6 processor. If you own an older 1489 processor, you probably need to select MIPS32r1 or MIPS32r2 instead. 1490 1491config CPU_MIPS64_R1 1492 bool "MIPS64 Release 1" 1493 depends on SYS_HAS_CPU_MIPS64_R1 1494 select CPU_HAS_PREFETCH 1495 select CPU_SUPPORTS_32BIT_KERNEL 1496 select CPU_SUPPORTS_64BIT_KERNEL 1497 select CPU_SUPPORTS_HIGHMEM 1498 select CPU_SUPPORTS_HUGEPAGES 1499 help 1500 Choose this option to build a kernel for release 1 or later of the 1501 MIPS64 architecture. Many modern embedded systems with a 64-bit 1502 MIPS processor are based on a MIPS64 processor. If you know the 1503 specific type of processor in your system, choose those that one 1504 otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system. 1505 Release 2 of the MIPS64 architecture is available since several 1506 years so chances are you even have a MIPS64 Release 2 processor 1507 in which case you should choose CPU_MIPS64_R2 instead for better 1508 performance. 1509 1510config CPU_MIPS64_R2 1511 bool "MIPS64 Release 2" 1512 depends on SYS_HAS_CPU_MIPS64_R2 1513 select CPU_HAS_PREFETCH 1514 select CPU_SUPPORTS_32BIT_KERNEL 1515 select CPU_SUPPORTS_64BIT_KERNEL 1516 select CPU_SUPPORTS_HIGHMEM 1517 select CPU_SUPPORTS_HUGEPAGES 1518 select CPU_SUPPORTS_MSA 1519 select HAVE_KVM 1520 help 1521 Choose this option to build a kernel for release 2 or later of the 1522 MIPS64 architecture. Many modern embedded systems with a 64-bit 1523 MIPS processor are based on a MIPS64 processor. If you know the 1524 specific type of processor in your system, choose those that one 1525 otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system. 1526 1527config CPU_MIPS64_R5 1528 bool "MIPS64 Release 5" 1529 depends on SYS_HAS_CPU_MIPS64_R5 1530 select CPU_HAS_PREFETCH 1531 select CPU_SUPPORTS_32BIT_KERNEL 1532 select CPU_SUPPORTS_64BIT_KERNEL 1533 select CPU_SUPPORTS_HIGHMEM 1534 select CPU_SUPPORTS_HUGEPAGES 1535 select CPU_SUPPORTS_MSA 1536 select MIPS_O32_FP64_SUPPORT if 32BIT || MIPS32_O32 1537 select HAVE_KVM 1538 help 1539 Choose this option to build a kernel for release 5 or later of the 1540 MIPS64 architecture. This is a intermediate MIPS architecture 1541 release partly implementing release 6 features. Though there is no 1542 any hardware known to be based on this release. 1543 1544config CPU_MIPS64_R6 1545 bool "MIPS64 Release 6" 1546 depends on SYS_HAS_CPU_MIPS64_R6 1547 select CPU_HAS_PREFETCH 1548 select CPU_NO_LOAD_STORE_LR 1549 select CPU_SUPPORTS_32BIT_KERNEL 1550 select CPU_SUPPORTS_64BIT_KERNEL 1551 select CPU_SUPPORTS_HIGHMEM 1552 select CPU_SUPPORTS_HUGEPAGES 1553 select CPU_SUPPORTS_MSA 1554 select MIPS_O32_FP64_SUPPORT if 32BIT || MIPS32_O32 1555 select HAVE_KVM 1556 help 1557 Choose this option to build a kernel for release 6 or later of the 1558 MIPS64 architecture. New MIPS processors, starting with the Warrior 1559 family, are based on a MIPS64r6 processor. If you own an older 1560 processor, you probably need to select MIPS64r1 or MIPS64r2 instead. 1561 1562config CPU_P5600 1563 bool "MIPS Warrior P5600" 1564 depends on SYS_HAS_CPU_P5600 1565 select CPU_HAS_PREFETCH 1566 select CPU_SUPPORTS_32BIT_KERNEL 1567 select CPU_SUPPORTS_HIGHMEM 1568 select CPU_SUPPORTS_MSA 1569 select CPU_SUPPORTS_CPUFREQ 1570 select CPU_MIPSR2_IRQ_VI 1571 select CPU_MIPSR2_IRQ_EI 1572 select HAVE_KVM 1573 select MIPS_O32_FP64_SUPPORT 1574 help 1575 Choose this option to build a kernel for MIPS Warrior P5600 CPU. 1576 It's based on MIPS32r5 ISA with XPA, EVA, dual/quad issue exec pipes, 1577 MMU with two-levels TLB, UCA, MSA, MDU core level features and system 1578 level features like up to six P5600 calculation cores, CM2 with L2 1579 cache, IOCU/IOMMU (though might be unused depending on the system- 1580 specific IP core configuration), GIC, CPC, virtualisation module, 1581 eJTAG and PDtrace. 1582 1583config CPU_R3000 1584 bool "R3000" 1585 depends on SYS_HAS_CPU_R3000 1586 select CPU_HAS_WB 1587 select CPU_R3K_TLB 1588 select CPU_SUPPORTS_32BIT_KERNEL 1589 select CPU_SUPPORTS_HIGHMEM 1590 help 1591 Please make sure to pick the right CPU type. Linux/MIPS is not 1592 designed to be generic, i.e. Kernels compiled for R3000 CPUs will 1593 *not* work on R4000 machines and vice versa. However, since most 1594 of the supported machines have an R4000 (or similar) CPU, R4x00 1595 might be a safe bet. If the resulting kernel does not work, 1596 try to recompile with R3000. 1597 1598config CPU_TX39XX 1599 bool "R39XX" 1600 depends on SYS_HAS_CPU_TX39XX 1601 select CPU_SUPPORTS_32BIT_KERNEL 1602 select CPU_R3K_TLB 1603 1604config CPU_VR41XX 1605 bool "R41xx" 1606 depends on SYS_HAS_CPU_VR41XX 1607 select CPU_SUPPORTS_32BIT_KERNEL 1608 select CPU_SUPPORTS_64BIT_KERNEL 1609 help 1610 The options selects support for the NEC VR4100 series of processors. 1611 Only choose this option if you have one of these processors as a 1612 kernel built with this option will not run on any other type of 1613 processor or vice versa. 1614 1615config CPU_R4300 1616 bool "R4300" 1617 depends on SYS_HAS_CPU_R4300 1618 select CPU_SUPPORTS_32BIT_KERNEL 1619 select CPU_SUPPORTS_64BIT_KERNEL 1620 select CPU_HAS_LOAD_STORE_LR 1621 help 1622 MIPS Technologies R4300-series processors. 1623 1624config CPU_R4X00 1625 bool "R4x00" 1626 depends on SYS_HAS_CPU_R4X00 1627 select CPU_SUPPORTS_32BIT_KERNEL 1628 select CPU_SUPPORTS_64BIT_KERNEL 1629 select CPU_SUPPORTS_HUGEPAGES 1630 help 1631 MIPS Technologies R4000-series processors other than 4300, including 1632 the R4000, R4400, R4600, and 4700. 1633 1634config CPU_TX49XX 1635 bool "R49XX" 1636 depends on SYS_HAS_CPU_TX49XX 1637 select CPU_HAS_PREFETCH 1638 select CPU_SUPPORTS_32BIT_KERNEL 1639 select CPU_SUPPORTS_64BIT_KERNEL 1640 select CPU_SUPPORTS_HUGEPAGES 1641 1642config CPU_R5000 1643 bool "R5000" 1644 depends on SYS_HAS_CPU_R5000 1645 select CPU_SUPPORTS_32BIT_KERNEL 1646 select CPU_SUPPORTS_64BIT_KERNEL 1647 select CPU_SUPPORTS_HUGEPAGES 1648 help 1649 MIPS Technologies R5000-series processors other than the Nevada. 1650 1651config CPU_R5500 1652 bool "R5500" 1653 depends on SYS_HAS_CPU_R5500 1654 select CPU_SUPPORTS_32BIT_KERNEL 1655 select CPU_SUPPORTS_64BIT_KERNEL 1656 select CPU_SUPPORTS_HUGEPAGES 1657 help 1658 NEC VR5500 and VR5500A series processors implement 64-bit MIPS IV 1659 instruction set. 1660 1661config CPU_NEVADA 1662 bool "RM52xx" 1663 depends on SYS_HAS_CPU_NEVADA 1664 select CPU_SUPPORTS_32BIT_KERNEL 1665 select CPU_SUPPORTS_64BIT_KERNEL 1666 select CPU_SUPPORTS_HUGEPAGES 1667 help 1668 QED / PMC-Sierra RM52xx-series ("Nevada") processors. 1669 1670config CPU_R10000 1671 bool "R10000" 1672 depends on SYS_HAS_CPU_R10000 1673 select CPU_HAS_PREFETCH 1674 select CPU_SUPPORTS_32BIT_KERNEL 1675 select CPU_SUPPORTS_64BIT_KERNEL 1676 select CPU_SUPPORTS_HIGHMEM 1677 select CPU_SUPPORTS_HUGEPAGES 1678 help 1679 MIPS Technologies R10000-series processors. 1680 1681config CPU_RM7000 1682 bool "RM7000" 1683 depends on SYS_HAS_CPU_RM7000 1684 select CPU_HAS_PREFETCH 1685 select CPU_SUPPORTS_32BIT_KERNEL 1686 select CPU_SUPPORTS_64BIT_KERNEL 1687 select CPU_SUPPORTS_HIGHMEM 1688 select CPU_SUPPORTS_HUGEPAGES 1689 1690config CPU_SB1 1691 bool "SB1" 1692 depends on SYS_HAS_CPU_SB1 1693 select CPU_SUPPORTS_32BIT_KERNEL 1694 select CPU_SUPPORTS_64BIT_KERNEL 1695 select CPU_SUPPORTS_HIGHMEM 1696 select CPU_SUPPORTS_HUGEPAGES 1697 select WEAK_ORDERING 1698 1699config CPU_CAVIUM_OCTEON 1700 bool "Cavium Octeon processor" 1701 depends on SYS_HAS_CPU_CAVIUM_OCTEON 1702 select CPU_HAS_PREFETCH 1703 select CPU_SUPPORTS_64BIT_KERNEL 1704 select WEAK_ORDERING 1705 select CPU_SUPPORTS_HIGHMEM 1706 select CPU_SUPPORTS_HUGEPAGES 1707 select USB_EHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN 1708 select USB_OHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN 1709 select MIPS_L1_CACHE_SHIFT_7 1710 select HAVE_KVM 1711 help 1712 The Cavium Octeon processor is a highly integrated chip containing 1713 many ethernet hardware widgets for networking tasks. The processor 1714 can have up to 16 Mips64v2 cores and 8 integrated gigabit ethernets. 1715 Full details can be found at http://www.caviumnetworks.com. 1716 1717config CPU_BMIPS 1718 bool "Broadcom BMIPS" 1719 depends on SYS_HAS_CPU_BMIPS 1720 select CPU_MIPS32 1721 select CPU_BMIPS32_3300 if SYS_HAS_CPU_BMIPS32_3300 1722 select CPU_BMIPS4350 if SYS_HAS_CPU_BMIPS4350 1723 select CPU_BMIPS4380 if SYS_HAS_CPU_BMIPS4380 1724 select CPU_BMIPS5000 if SYS_HAS_CPU_BMIPS5000 1725 select CPU_SUPPORTS_32BIT_KERNEL 1726 select DMA_NONCOHERENT 1727 select IRQ_MIPS_CPU 1728 select SWAP_IO_SPACE 1729 select WEAK_ORDERING 1730 select CPU_SUPPORTS_HIGHMEM 1731 select CPU_HAS_PREFETCH 1732 select CPU_SUPPORTS_CPUFREQ 1733 select MIPS_EXTERNAL_TIMER 1734 help 1735 Support for BMIPS32/3300/4350/4380 and BMIPS5000 processors. 1736 1737endchoice 1738 1739config CPU_MIPS32_3_5_FEATURES 1740 bool "MIPS32 Release 3.5 Features" 1741 depends on SYS_HAS_CPU_MIPS32_R3_5 1742 depends on CPU_MIPS32_R2 || CPU_MIPS32_R5 || CPU_MIPS32_R6 || \ 1743 CPU_P5600 1744 help 1745 Choose this option to build a kernel for release 2 or later of the 1746 MIPS32 architecture including features from the 3.5 release such as 1747 support for Enhanced Virtual Addressing (EVA). 1748 1749config CPU_MIPS32_3_5_EVA 1750 bool "Enhanced Virtual Addressing (EVA)" 1751 depends on CPU_MIPS32_3_5_FEATURES 1752 select EVA 1753 default y 1754 help 1755 Choose this option if you want to enable the Enhanced Virtual 1756 Addressing (EVA) on your MIPS32 core (such as proAptiv). 1757 One of its primary benefits is an increase in the maximum size 1758 of lowmem (up to 3GB). If unsure, say 'N' here. 1759 1760config CPU_MIPS32_R5_FEATURES 1761 bool "MIPS32 Release 5 Features" 1762 depends on SYS_HAS_CPU_MIPS32_R5 1763 depends on CPU_MIPS32_R2 || CPU_MIPS32_R5 || CPU_P5600 1764 help 1765 Choose this option to build a kernel for release 2 or later of the 1766 MIPS32 architecture including features from release 5 such as 1767 support for Extended Physical Addressing (XPA). 1768 1769config CPU_MIPS32_R5_XPA 1770 bool "Extended Physical Addressing (XPA)" 1771 depends on CPU_MIPS32_R5_FEATURES 1772 depends on !EVA 1773 depends on !PAGE_SIZE_4KB 1774 depends on SYS_SUPPORTS_HIGHMEM 1775 select XPA 1776 select HIGHMEM 1777 select PHYS_ADDR_T_64BIT 1778 default n 1779 help 1780 Choose this option if you want to enable the Extended Physical 1781 Addressing (XPA) on your MIPS32 core (such as P5600 series). The 1782 benefit is to increase physical addressing equal to or greater 1783 than 40 bits. Note that this has the side effect of turning on 1784 64-bit addressing which in turn makes the PTEs 64-bit in size. 1785 If unsure, say 'N' here. 1786 1787if CPU_LOONGSON2F 1788config CPU_NOP_WORKAROUNDS 1789 bool 1790 1791config CPU_JUMP_WORKAROUNDS 1792 bool 1793 1794config CPU_LOONGSON2F_WORKAROUNDS 1795 bool "Loongson 2F Workarounds" 1796 default y 1797 select CPU_NOP_WORKAROUNDS 1798 select CPU_JUMP_WORKAROUNDS 1799 help 1800 Loongson 2F01 / 2F02 processors have the NOP & JUMP issues which 1801 require workarounds. Without workarounds the system may hang 1802 unexpectedly. For more information please refer to the gas 1803 -mfix-loongson2f-nop and -mfix-loongson2f-jump options. 1804 1805 Loongson 2F03 and later have fixed these issues and no workarounds 1806 are needed. The workarounds have no significant side effect on them 1807 but may decrease the performance of the system so this option should 1808 be disabled unless the kernel is intended to be run on 2F01 or 2F02 1809 systems. 1810 1811 If unsure, please say Y. 1812endif # CPU_LOONGSON2F 1813 1814config SYS_SUPPORTS_ZBOOT 1815 bool 1816 select HAVE_KERNEL_GZIP 1817 select HAVE_KERNEL_BZIP2 1818 select HAVE_KERNEL_LZ4 1819 select HAVE_KERNEL_LZMA 1820 select HAVE_KERNEL_LZO 1821 select HAVE_KERNEL_XZ 1822 select HAVE_KERNEL_ZSTD 1823 1824config SYS_SUPPORTS_ZBOOT_UART16550 1825 bool 1826 select SYS_SUPPORTS_ZBOOT 1827 1828config SYS_SUPPORTS_ZBOOT_UART_PROM 1829 bool 1830 select SYS_SUPPORTS_ZBOOT 1831 1832config CPU_LOONGSON2EF 1833 bool 1834 select CPU_SUPPORTS_32BIT_KERNEL 1835 select CPU_SUPPORTS_64BIT_KERNEL 1836 select CPU_SUPPORTS_HIGHMEM 1837 select CPU_SUPPORTS_HUGEPAGES 1838 select ARCH_HAS_PHYS_TO_DMA 1839 1840config CPU_LOONGSON32 1841 bool 1842 select CPU_MIPS32 1843 select CPU_MIPSR2 1844 select CPU_HAS_PREFETCH 1845 select CPU_SUPPORTS_32BIT_KERNEL 1846 select CPU_SUPPORTS_HIGHMEM 1847 select CPU_SUPPORTS_CPUFREQ 1848 1849config CPU_BMIPS32_3300 1850 select SMP_UP if SMP 1851 bool 1852 1853config CPU_BMIPS4350 1854 bool 1855 select SYS_SUPPORTS_SMP 1856 select SYS_SUPPORTS_HOTPLUG_CPU 1857 1858config CPU_BMIPS4380 1859 bool 1860 select MIPS_L1_CACHE_SHIFT_6 1861 select SYS_SUPPORTS_SMP 1862 select SYS_SUPPORTS_HOTPLUG_CPU 1863 select CPU_HAS_RIXI 1864 1865config CPU_BMIPS5000 1866 bool 1867 select MIPS_CPU_SCACHE 1868 select MIPS_L1_CACHE_SHIFT_7 1869 select SYS_SUPPORTS_SMP 1870 select SYS_SUPPORTS_HOTPLUG_CPU 1871 select CPU_HAS_RIXI 1872 1873config SYS_HAS_CPU_LOONGSON64 1874 bool 1875 select CPU_SUPPORTS_CPUFREQ 1876 select CPU_HAS_RIXI 1877 1878config SYS_HAS_CPU_LOONGSON2E 1879 bool 1880 1881config SYS_HAS_CPU_LOONGSON2F 1882 bool 1883 select CPU_SUPPORTS_CPUFREQ 1884 select CPU_SUPPORTS_ADDRWINCFG if 64BIT 1885 1886config SYS_HAS_CPU_LOONGSON1B 1887 bool 1888 1889config SYS_HAS_CPU_LOONGSON1C 1890 bool 1891 1892config SYS_HAS_CPU_MIPS32_R1 1893 bool 1894 1895config SYS_HAS_CPU_MIPS32_R2 1896 bool 1897 1898config SYS_HAS_CPU_MIPS32_R3_5 1899 bool 1900 1901config SYS_HAS_CPU_MIPS32_R5 1902 bool 1903 select ARCH_HAS_SYNC_DMA_FOR_CPU if DMA_NONCOHERENT 1904 1905config SYS_HAS_CPU_MIPS32_R6 1906 bool 1907 select ARCH_HAS_SYNC_DMA_FOR_CPU if DMA_NONCOHERENT 1908 1909config SYS_HAS_CPU_MIPS64_R1 1910 bool 1911 1912config SYS_HAS_CPU_MIPS64_R2 1913 bool 1914 1915config SYS_HAS_CPU_MIPS64_R6 1916 bool 1917 select ARCH_HAS_SYNC_DMA_FOR_CPU if DMA_NONCOHERENT 1918 1919config SYS_HAS_CPU_P5600 1920 bool 1921 select ARCH_HAS_SYNC_DMA_FOR_CPU if DMA_NONCOHERENT 1922 1923config SYS_HAS_CPU_R3000 1924 bool 1925 1926config SYS_HAS_CPU_TX39XX 1927 bool 1928 1929config SYS_HAS_CPU_VR41XX 1930 bool 1931 1932config SYS_HAS_CPU_R4300 1933 bool 1934 1935config SYS_HAS_CPU_R4X00 1936 bool 1937 1938config SYS_HAS_CPU_TX49XX 1939 bool 1940 1941config SYS_HAS_CPU_R5000 1942 bool 1943 1944config SYS_HAS_CPU_R5500 1945 bool 1946 1947config SYS_HAS_CPU_NEVADA 1948 bool 1949 1950config SYS_HAS_CPU_R10000 1951 bool 1952 select ARCH_HAS_SYNC_DMA_FOR_CPU if DMA_NONCOHERENT 1953 1954config SYS_HAS_CPU_RM7000 1955 bool 1956 1957config SYS_HAS_CPU_SB1 1958 bool 1959 1960config SYS_HAS_CPU_CAVIUM_OCTEON 1961 bool 1962 1963config SYS_HAS_CPU_BMIPS 1964 bool 1965 1966config SYS_HAS_CPU_BMIPS32_3300 1967 bool 1968 select SYS_HAS_CPU_BMIPS 1969 1970config SYS_HAS_CPU_BMIPS4350 1971 bool 1972 select SYS_HAS_CPU_BMIPS 1973 1974config SYS_HAS_CPU_BMIPS4380 1975 bool 1976 select SYS_HAS_CPU_BMIPS 1977 1978config SYS_HAS_CPU_BMIPS5000 1979 bool 1980 select SYS_HAS_CPU_BMIPS 1981 select ARCH_HAS_SYNC_DMA_FOR_CPU 1982 1983# 1984# CPU may reorder R->R, R->W, W->R, W->W 1985# Reordering beyond LL and SC is handled in WEAK_REORDERING_BEYOND_LLSC 1986# 1987config WEAK_ORDERING 1988 bool 1989 1990# 1991# CPU may reorder reads and writes beyond LL/SC 1992# CPU may reorder R->LL, R->LL, W->LL, W->LL, R->SC, R->SC, W->SC, W->SC 1993# 1994config WEAK_REORDERING_BEYOND_LLSC 1995 bool 1996endmenu 1997 1998# 1999# These two indicate any level of the MIPS32 and MIPS64 architecture 2000# 2001config CPU_MIPS32 2002 bool 2003 default y if CPU_MIPS32_R1 || CPU_MIPS32_R2 || CPU_MIPS32_R5 || \ 2004 CPU_MIPS32_R6 || CPU_P5600 2005 2006config CPU_MIPS64 2007 bool 2008 default y if CPU_MIPS64_R1 || CPU_MIPS64_R2 || CPU_MIPS64_R5 || \ 2009 CPU_MIPS64_R6 || CPU_LOONGSON64 || CPU_CAVIUM_OCTEON 2010 2011# 2012# These indicate the revision of the architecture 2013# 2014config CPU_MIPSR1 2015 bool 2016 default y if CPU_MIPS32_R1 || CPU_MIPS64_R1 2017 2018config CPU_MIPSR2 2019 bool 2020 default y if CPU_MIPS32_R2 || CPU_MIPS64_R2 || CPU_CAVIUM_OCTEON 2021 select CPU_HAS_RIXI 2022 select CPU_HAS_DIEI if !CPU_DIEI_BROKEN 2023 select MIPS_SPRAM 2024 2025config CPU_MIPSR5 2026 bool 2027 default y if CPU_MIPS32_R5 || CPU_MIPS64_R5 || CPU_P5600 2028 select CPU_HAS_RIXI 2029 select CPU_HAS_DIEI if !CPU_DIEI_BROKEN 2030 select MIPS_SPRAM 2031 2032config CPU_MIPSR6 2033 bool 2034 default y if CPU_MIPS32_R6 || CPU_MIPS64_R6 2035 select CPU_HAS_RIXI 2036 select CPU_HAS_DIEI if !CPU_DIEI_BROKEN 2037 select HAVE_ARCH_BITREVERSE 2038 select MIPS_ASID_BITS_VARIABLE 2039 select MIPS_CRC_SUPPORT 2040 select MIPS_SPRAM 2041 2042config TARGET_ISA_REV 2043 int 2044 default 1 if CPU_MIPSR1 2045 default 2 if CPU_MIPSR2 2046 default 5 if CPU_MIPSR5 2047 default 6 if CPU_MIPSR6 2048 default 0 2049 help 2050 Reflects the ISA revision being targeted by the kernel build. This 2051 is effectively the Kconfig equivalent of MIPS_ISA_REV. 2052 2053config EVA 2054 bool 2055 2056config XPA 2057 bool 2058 2059config SYS_SUPPORTS_32BIT_KERNEL 2060 bool 2061config SYS_SUPPORTS_64BIT_KERNEL 2062 bool 2063config CPU_SUPPORTS_32BIT_KERNEL 2064 bool 2065config CPU_SUPPORTS_64BIT_KERNEL 2066 bool 2067config CPU_SUPPORTS_CPUFREQ 2068 bool 2069config CPU_SUPPORTS_ADDRWINCFG 2070 bool 2071config CPU_SUPPORTS_HUGEPAGES 2072 bool 2073 depends on !(32BIT && (ARCH_PHYS_ADDR_T_64BIT || EVA)) 2074config MIPS_PGD_C0_CONTEXT 2075 bool 2076 depends on 64BIT 2077 default y if (CPU_MIPSR2 || CPU_MIPSR6) 2078 2079# 2080# Set to y for ptrace access to watch registers. 2081# 2082config HARDWARE_WATCHPOINTS 2083 bool 2084 default y if CPU_MIPSR1 || CPU_MIPSR2 || CPU_MIPSR6 2085 2086menu "Kernel type" 2087 2088choice 2089 prompt "Kernel code model" 2090 help 2091 You should only select this option if you have a workload that 2092 actually benefits from 64-bit processing or if your machine has 2093 large memory. You will only be presented a single option in this 2094 menu if your system does not support both 32-bit and 64-bit kernels. 2095 2096config 32BIT 2097 bool "32-bit kernel" 2098 depends on CPU_SUPPORTS_32BIT_KERNEL && SYS_SUPPORTS_32BIT_KERNEL 2099 select TRAD_SIGNALS 2100 help 2101 Select this option if you want to build a 32-bit kernel. 2102 2103config 64BIT 2104 bool "64-bit kernel" 2105 depends on CPU_SUPPORTS_64BIT_KERNEL && SYS_SUPPORTS_64BIT_KERNEL 2106 help 2107 Select this option if you want to build a 64-bit kernel. 2108 2109endchoice 2110 2111config MIPS_VA_BITS_48 2112 bool "48 bits virtual memory" 2113 depends on 64BIT 2114 help 2115 Support a maximum at least 48 bits of application virtual 2116 memory. Default is 40 bits or less, depending on the CPU. 2117 For page sizes 16k and above, this option results in a small 2118 memory overhead for page tables. For 4k page size, a fourth 2119 level of page tables is added which imposes both a memory 2120 overhead as well as slower TLB fault handling. 2121 2122 If unsure, say N. 2123 2124choice 2125 prompt "Kernel page size" 2126 default PAGE_SIZE_4KB 2127 2128config PAGE_SIZE_4KB 2129 bool "4kB" 2130 depends on !CPU_LOONGSON2EF && !CPU_LOONGSON64 2131 help 2132 This option select the standard 4kB Linux page size. On some 2133 R3000-family processors this is the only available page size. Using 2134 4kB page size will minimize memory consumption and is therefore 2135 recommended for low memory systems. 2136 2137config PAGE_SIZE_8KB 2138 bool "8kB" 2139 depends on CPU_CAVIUM_OCTEON 2140 depends on !MIPS_VA_BITS_48 2141 help 2142 Using 8kB page size will result in higher performance kernel at 2143 the price of higher memory consumption. This option is available 2144 only on cnMIPS processors. Note that you will need a suitable Linux 2145 distribution to support this. 2146 2147config PAGE_SIZE_16KB 2148 bool "16kB" 2149 depends on !CPU_R3000 && !CPU_TX39XX 2150 help 2151 Using 16kB page size will result in higher performance kernel at 2152 the price of higher memory consumption. This option is available on 2153 all non-R3000 family processors. Note that you will need a suitable 2154 Linux distribution to support this. 2155 2156config PAGE_SIZE_32KB 2157 bool "32kB" 2158 depends on CPU_CAVIUM_OCTEON 2159 depends on !MIPS_VA_BITS_48 2160 help 2161 Using 32kB page size will result in higher performance kernel at 2162 the price of higher memory consumption. This option is available 2163 only on cnMIPS cores. Note that you will need a suitable Linux 2164 distribution to support this. 2165 2166config PAGE_SIZE_64KB 2167 bool "64kB" 2168 depends on !CPU_R3000 && !CPU_TX39XX 2169 help 2170 Using 64kB page size will result in higher performance kernel at 2171 the price of higher memory consumption. This option is available on 2172 all non-R3000 family processor. Not that at the time of this 2173 writing this option is still high experimental. 2174 2175endchoice 2176 2177config FORCE_MAX_ZONEORDER 2178 int "Maximum zone order" 2179 range 14 64 if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_64KB 2180 default "14" if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_64KB 2181 range 13 64 if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_32KB 2182 default "13" if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_32KB 2183 range 12 64 if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_16KB 2184 default "12" if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_16KB 2185 range 0 64 2186 default "11" 2187 help 2188 The kernel memory allocator divides physically contiguous memory 2189 blocks into "zones", where each zone is a power of two number of 2190 pages. This option selects the largest power of two that the kernel 2191 keeps in the memory allocator. If you need to allocate very large 2192 blocks of physically contiguous memory, then you may need to 2193 increase this value. 2194 2195 This config option is actually maximum order plus one. For example, 2196 a value of 11 means that the largest free memory block is 2^10 pages. 2197 2198 The page size is not necessarily 4KB. Keep this in mind 2199 when choosing a value for this option. 2200 2201config BOARD_SCACHE 2202 bool 2203 2204config IP22_CPU_SCACHE 2205 bool 2206 select BOARD_SCACHE 2207 2208# 2209# Support for a MIPS32 / MIPS64 style S-caches 2210# 2211config MIPS_CPU_SCACHE 2212 bool 2213 select BOARD_SCACHE 2214 2215config R5000_CPU_SCACHE 2216 bool 2217 select BOARD_SCACHE 2218 2219config RM7000_CPU_SCACHE 2220 bool 2221 select BOARD_SCACHE 2222 2223config SIBYTE_DMA_PAGEOPS 2224 bool "Use DMA to clear/copy pages" 2225 depends on CPU_SB1 2226 help 2227 Instead of using the CPU to zero and copy pages, use a Data Mover 2228 channel. These DMA channels are otherwise unused by the standard 2229 SiByte Linux port. Seems to give a small performance benefit. 2230 2231config CPU_HAS_PREFETCH 2232 bool 2233 2234config CPU_GENERIC_DUMP_TLB 2235 bool 2236 default y if !(CPU_R3000 || CPU_TX39XX) 2237 2238config MIPS_FP_SUPPORT 2239 bool "Floating Point support" if EXPERT 2240 default y 2241 help 2242 Select y to include support for floating point in the kernel 2243 including initialization of FPU hardware, FP context save & restore 2244 and emulation of an FPU where necessary. Without this support any 2245 userland program attempting to use floating point instructions will 2246 receive a SIGILL. 2247 2248 If you know that your userland will not attempt to use floating point 2249 instructions then you can say n here to shrink the kernel a little. 2250 2251 If unsure, say y. 2252 2253config CPU_R2300_FPU 2254 bool 2255 depends on MIPS_FP_SUPPORT 2256 default y if CPU_R3000 || CPU_TX39XX 2257 2258config CPU_R3K_TLB 2259 bool 2260 2261config CPU_R4K_FPU 2262 bool 2263 depends on MIPS_FP_SUPPORT 2264 default y if !CPU_R2300_FPU 2265 2266config CPU_R4K_CACHE_TLB 2267 bool 2268 default y if !(CPU_R3K_TLB || CPU_SB1 || CPU_CAVIUM_OCTEON) 2269 2270config MIPS_MT_SMP 2271 bool "MIPS MT SMP support (1 TC on each available VPE)" 2272 default y 2273 depends on SYS_SUPPORTS_MULTITHREADING && !CPU_MIPSR6 && !CPU_MICROMIPS 2274 select CPU_MIPSR2_IRQ_VI 2275 select CPU_MIPSR2_IRQ_EI 2276 select SYNC_R4K 2277 select MIPS_MT 2278 select SMP 2279 select SMP_UP 2280 select SYS_SUPPORTS_SMP 2281 select SYS_SUPPORTS_SCHED_SMT 2282 select MIPS_PERF_SHARED_TC_COUNTERS 2283 help 2284 This is a kernel model which is known as SMVP. This is supported 2285 on cores with the MT ASE and uses the available VPEs to implement 2286 virtual processors which supports SMP. This is equivalent to the 2287 Intel Hyperthreading feature. For further information go to 2288 <http://www.imgtec.com/mips/mips-multithreading.asp>. 2289 2290config MIPS_MT 2291 bool 2292 2293config SCHED_SMT 2294 bool "SMT (multithreading) scheduler support" 2295 depends on SYS_SUPPORTS_SCHED_SMT 2296 default n 2297 help 2298 SMT scheduler support improves the CPU scheduler's decision making 2299 when dealing with MIPS MT enabled cores at a cost of slightly 2300 increased overhead in some places. If unsure say N here. 2301 2302config SYS_SUPPORTS_SCHED_SMT 2303 bool 2304 2305config SYS_SUPPORTS_MULTITHREADING 2306 bool 2307 2308config MIPS_MT_FPAFF 2309 bool "Dynamic FPU affinity for FP-intensive threads" 2310 default y 2311 depends on MIPS_MT_SMP 2312 2313config MIPSR2_TO_R6_EMULATOR 2314 bool "MIPS R2-to-R6 emulator" 2315 depends on CPU_MIPSR6 2316 depends on MIPS_FP_SUPPORT 2317 default y 2318 help 2319 Choose this option if you want to run non-R6 MIPS userland code. 2320 Even if you say 'Y' here, the emulator will still be disabled by 2321 default. You can enable it using the 'mipsr2emu' kernel option. 2322 The only reason this is a build-time option is to save ~14K from the 2323 final kernel image. 2324 2325config SYS_SUPPORTS_VPE_LOADER 2326 bool 2327 depends on SYS_SUPPORTS_MULTITHREADING 2328 help 2329 Indicates that the platform supports the VPE loader, and provides 2330 physical_memsize. 2331 2332config MIPS_VPE_LOADER 2333 bool "VPE loader support." 2334 depends on SYS_SUPPORTS_VPE_LOADER && MODULES 2335 select CPU_MIPSR2_IRQ_VI 2336 select CPU_MIPSR2_IRQ_EI 2337 select MIPS_MT 2338 help 2339 Includes a loader for loading an elf relocatable object 2340 onto another VPE and running it. 2341 2342config MIPS_VPE_LOADER_CMP 2343 bool 2344 default "y" 2345 depends on MIPS_VPE_LOADER && MIPS_CMP 2346 2347config MIPS_VPE_LOADER_MT 2348 bool 2349 default "y" 2350 depends on MIPS_VPE_LOADER && !MIPS_CMP 2351 2352config MIPS_VPE_LOADER_TOM 2353 bool "Load VPE program into memory hidden from linux" 2354 depends on MIPS_VPE_LOADER 2355 default y 2356 help 2357 The loader can use memory that is present but has been hidden from 2358 Linux using the kernel command line option "mem=xxMB". It's up to 2359 you to ensure the amount you put in the option and the space your 2360 program requires is less or equal to the amount physically present. 2361 2362config MIPS_VPE_APSP_API 2363 bool "Enable support for AP/SP API (RTLX)" 2364 depends on MIPS_VPE_LOADER 2365 2366config MIPS_VPE_APSP_API_CMP 2367 bool 2368 default "y" 2369 depends on MIPS_VPE_APSP_API && MIPS_CMP 2370 2371config MIPS_VPE_APSP_API_MT 2372 bool 2373 default "y" 2374 depends on MIPS_VPE_APSP_API && !MIPS_CMP 2375 2376config MIPS_CMP 2377 bool "MIPS CMP framework support (DEPRECATED)" 2378 depends on SYS_SUPPORTS_MIPS_CMP && !CPU_MIPSR6 2379 select SMP 2380 select SYNC_R4K 2381 select SYS_SUPPORTS_SMP 2382 select WEAK_ORDERING 2383 default n 2384 help 2385 Select this if you are using a bootloader which implements the "CMP 2386 framework" protocol (ie. YAMON) and want your kernel to make use of 2387 its ability to start secondary CPUs. 2388 2389 Unless you have a specific need, you should use CONFIG_MIPS_CPS 2390 instead of this. 2391 2392config MIPS_CPS 2393 bool "MIPS Coherent Processing System support" 2394 depends on SYS_SUPPORTS_MIPS_CPS 2395 select MIPS_CM 2396 select MIPS_CPS_PM if HOTPLUG_CPU 2397 select SMP 2398 select SYNC_R4K if (CEVT_R4K || CSRC_R4K) 2399 select SYS_SUPPORTS_HOTPLUG_CPU 2400 select SYS_SUPPORTS_SCHED_SMT if CPU_MIPSR6 2401 select SYS_SUPPORTS_SMP 2402 select WEAK_ORDERING 2403 select GENERIC_IRQ_MIGRATION if HOTPLUG_CPU 2404 help 2405 Select this if you wish to run an SMP kernel across multiple cores 2406 within a MIPS Coherent Processing System. When this option is 2407 enabled the kernel will probe for other cores and boot them with 2408 no external assistance. It is safe to enable this when hardware 2409 support is unavailable. 2410 2411config MIPS_CPS_PM 2412 depends on MIPS_CPS 2413 bool 2414 2415config MIPS_CM 2416 bool 2417 select MIPS_CPC 2418 2419config MIPS_CPC 2420 bool 2421 2422config SB1_PASS_2_WORKAROUNDS 2423 bool 2424 depends on CPU_SB1 && (CPU_SB1_PASS_2_2 || CPU_SB1_PASS_2) 2425 default y 2426 2427config SB1_PASS_2_1_WORKAROUNDS 2428 bool 2429 depends on CPU_SB1 && CPU_SB1_PASS_2 2430 default y 2431 2432choice 2433 prompt "SmartMIPS or microMIPS ASE support" 2434 2435config CPU_NEEDS_NO_SMARTMIPS_OR_MICROMIPS 2436 bool "None" 2437 help 2438 Select this if you want neither microMIPS nor SmartMIPS support 2439 2440config CPU_HAS_SMARTMIPS 2441 depends on SYS_SUPPORTS_SMARTMIPS 2442 bool "SmartMIPS" 2443 help 2444 SmartMIPS is a extension of the MIPS32 architecture aimed at 2445 increased security at both hardware and software level for 2446 smartcards. Enabling this option will allow proper use of the 2447 SmartMIPS instructions by Linux applications. However a kernel with 2448 this option will not work on a MIPS core without SmartMIPS core. If 2449 you don't know you probably don't have SmartMIPS and should say N 2450 here. 2451 2452config CPU_MICROMIPS 2453 depends on 32BIT && SYS_SUPPORTS_MICROMIPS && !CPU_MIPSR6 2454 bool "microMIPS" 2455 help 2456 When this option is enabled the kernel will be built using the 2457 microMIPS ISA 2458 2459endchoice 2460 2461config CPU_HAS_MSA 2462 bool "Support for the MIPS SIMD Architecture" 2463 depends on CPU_SUPPORTS_MSA 2464 depends on MIPS_FP_SUPPORT 2465 depends on 64BIT || MIPS_O32_FP64_SUPPORT 2466 help 2467 MIPS SIMD Architecture (MSA) introduces 128 bit wide vector registers 2468 and a set of SIMD instructions to operate on them. When this option 2469 is enabled the kernel will support allocating & switching MSA 2470 vector register contexts. If you know that your kernel will only be 2471 running on CPUs which do not support MSA or that your userland will 2472 not be making use of it then you may wish to say N here to reduce 2473 the size & complexity of your kernel. 2474 2475 If unsure, say Y. 2476 2477config CPU_HAS_WB 2478 bool 2479 2480config XKS01 2481 bool 2482 2483config CPU_HAS_DIEI 2484 depends on !CPU_DIEI_BROKEN 2485 bool 2486 2487config CPU_DIEI_BROKEN 2488 bool 2489 2490config CPU_HAS_RIXI 2491 bool 2492 2493config CPU_NO_LOAD_STORE_LR 2494 bool 2495 help 2496 CPU lacks support for unaligned load and store instructions: 2497 LWL, LWR, SWL, SWR (Load/store word left/right). 2498 LDL, LDR, SDL, SDR (Load/store doubleword left/right, for 64bit 2499 systems). 2500 2501# 2502# Vectored interrupt mode is an R2 feature 2503# 2504config CPU_MIPSR2_IRQ_VI 2505 bool 2506 2507# 2508# Extended interrupt mode is an R2 feature 2509# 2510config CPU_MIPSR2_IRQ_EI 2511 bool 2512 2513config CPU_HAS_SYNC 2514 bool 2515 depends on !CPU_R3000 2516 default y 2517 2518# 2519# CPU non-features 2520# 2521config CPU_DADDI_WORKAROUNDS 2522 bool 2523 2524config CPU_R4000_WORKAROUNDS 2525 bool 2526 select CPU_R4400_WORKAROUNDS 2527 2528config CPU_R4400_WORKAROUNDS 2529 bool 2530 2531config CPU_R4X00_BUGS64 2532 bool 2533 default y if SYS_HAS_CPU_R4X00 && 64BIT && (TARGET_ISA_REV < 1) 2534 2535config MIPS_ASID_SHIFT 2536 int 2537 default 6 if CPU_R3000 || CPU_TX39XX 2538 default 0 2539 2540config MIPS_ASID_BITS 2541 int 2542 default 0 if MIPS_ASID_BITS_VARIABLE 2543 default 6 if CPU_R3000 || CPU_TX39XX 2544 default 8 2545 2546config MIPS_ASID_BITS_VARIABLE 2547 bool 2548 2549config MIPS_CRC_SUPPORT 2550 bool 2551 2552# R4600 erratum. Due to the lack of errata information the exact 2553# technical details aren't known. I've experimentally found that disabling 2554# interrupts during indexed I-cache flushes seems to be sufficient to deal 2555# with the issue. 2556config WAR_R4600_V1_INDEX_ICACHEOP 2557 bool 2558 2559# Pleasures of the R4600 V1.x. Cite from the IDT R4600 V1.7 errata: 2560# 2561# 18. The CACHE instructions Hit_Writeback_Invalidate_D, Hit_Writeback_D, 2562# Hit_Invalidate_D and Create_Dirty_Excl_D should only be 2563# executed if there is no other dcache activity. If the dcache is 2564# accessed for another instruction immediately preceding when these 2565# cache instructions are executing, it is possible that the dcache 2566# tag match outputs used by these cache instructions will be 2567# incorrect. These cache instructions should be preceded by at least 2568# four instructions that are not any kind of load or store 2569# instruction. 2570# 2571# This is not allowed: lw 2572# nop 2573# nop 2574# nop 2575# cache Hit_Writeback_Invalidate_D 2576# 2577# This is allowed: lw 2578# nop 2579# nop 2580# nop 2581# nop 2582# cache Hit_Writeback_Invalidate_D 2583config WAR_R4600_V1_HIT_CACHEOP 2584 bool 2585 2586# Writeback and invalidate the primary cache dcache before DMA. 2587# 2588# R4600 v2.0 bug: "The CACHE instructions Hit_Writeback_Inv_D, 2589# Hit_Writeback_D, Hit_Invalidate_D and Create_Dirty_Exclusive_D will only 2590# operate correctly if the internal data cache refill buffer is empty. These 2591# CACHE instructions should be separated from any potential data cache miss 2592# by a load instruction to an uncached address to empty the response buffer." 2593# (Revision 2.0 device errata from IDT available on https://www.idt.com/ 2594# in .pdf format.) 2595config WAR_R4600_V2_HIT_CACHEOP 2596 bool 2597 2598# From TX49/H2 manual: "If the instruction (i.e. CACHE) is issued for 2599# the line which this instruction itself exists, the following 2600# operation is not guaranteed." 2601# 2602# Workaround: do two phase flushing for Index_Invalidate_I 2603config WAR_TX49XX_ICACHE_INDEX_INV 2604 bool 2605 2606# The RM7000 processors and the E9000 cores have a bug (though PMC-Sierra 2607# opposes it being called that) where invalid instructions in the same 2608# I-cache line worth of instructions being fetched may case spurious 2609# exceptions. 2610config WAR_ICACHE_REFILLS 2611 bool 2612 2613# On the R10000 up to version 2.6 (not sure about 2.7) there is a bug that 2614# may cause ll / sc and lld / scd sequences to execute non-atomically. 2615config WAR_R10000_LLSC 2616 bool 2617 2618# 34K core erratum: "Problems Executing the TLBR Instruction" 2619config WAR_MIPS34K_MISSED_ITLB 2620 bool 2621 2622# 2623# - Highmem only makes sense for the 32-bit kernel. 2624# - The current highmem code will only work properly on physically indexed 2625# caches such as R3000, SB1, R7000 or those that look like they're virtually 2626# indexed such as R4000/R4400 SC and MC versions or R10000. So for the 2627# moment we protect the user and offer the highmem option only on machines 2628# where it's known to be safe. This will not offer highmem on a few systems 2629# such as MIPS32 and MIPS64 CPUs which may have virtual and physically 2630# indexed CPUs but we're playing safe. 2631# - We use SYS_SUPPORTS_HIGHMEM to offer highmem only for systems where we 2632# know they might have memory configurations that could make use of highmem 2633# support. 2634# 2635config HIGHMEM 2636 bool "High Memory Support" 2637 depends on 32BIT && CPU_SUPPORTS_HIGHMEM && SYS_SUPPORTS_HIGHMEM && !CPU_MIPS32_3_5_EVA 2638 select KMAP_LOCAL 2639 2640config CPU_SUPPORTS_HIGHMEM 2641 bool 2642 2643config SYS_SUPPORTS_HIGHMEM 2644 bool 2645 2646config SYS_SUPPORTS_SMARTMIPS 2647 bool 2648 2649config SYS_SUPPORTS_MICROMIPS 2650 bool 2651 2652config SYS_SUPPORTS_MIPS16 2653 bool 2654 help 2655 This option must be set if a kernel might be executed on a MIPS16- 2656 enabled CPU even if MIPS16 is not actually being used. In other 2657 words, it makes the kernel MIPS16-tolerant. 2658 2659config CPU_SUPPORTS_MSA 2660 bool 2661 2662config ARCH_FLATMEM_ENABLE 2663 def_bool y 2664 depends on !NUMA && !CPU_LOONGSON2EF 2665 2666config ARCH_SPARSEMEM_ENABLE 2667 bool 2668 select SPARSEMEM_STATIC if !SGI_IP27 2669 2670config NUMA 2671 bool "NUMA Support" 2672 depends on SYS_SUPPORTS_NUMA 2673 select SMP 2674 help 2675 Say Y to compile the kernel to support NUMA (Non-Uniform Memory 2676 Access). This option improves performance on systems with more 2677 than two nodes; on two node systems it is generally better to 2678 leave it disabled; on single node systems leave this option 2679 disabled. 2680 2681config SYS_SUPPORTS_NUMA 2682 bool 2683 2684config HAVE_SETUP_PER_CPU_AREA 2685 def_bool y 2686 depends on NUMA 2687 2688config NEED_PER_CPU_EMBED_FIRST_CHUNK 2689 def_bool y 2690 depends on NUMA 2691 2692config RELOCATABLE 2693 bool "Relocatable kernel" 2694 depends on SYS_SUPPORTS_RELOCATABLE 2695 depends on CPU_MIPS32_R2 || CPU_MIPS64_R2 || \ 2696 CPU_MIPS32_R5 || CPU_MIPS64_R5 || \ 2697 CPU_MIPS32_R6 || CPU_MIPS64_R6 || \ 2698 CPU_P5600 || CAVIUM_OCTEON_SOC || \ 2699 CPU_LOONGSON64 2700 help 2701 This builds a kernel image that retains relocation information 2702 so it can be loaded someplace besides the default 1MB. 2703 The relocations make the kernel binary about 15% larger, 2704 but are discarded at runtime 2705 2706config RELOCATION_TABLE_SIZE 2707 hex "Relocation table size" 2708 depends on RELOCATABLE 2709 range 0x0 0x01000000 2710 default "0x00200000" if CPU_LOONGSON64 2711 default "0x00100000" 2712 help 2713 A table of relocation data will be appended to the kernel binary 2714 and parsed at boot to fix up the relocated kernel. 2715 2716 This option allows the amount of space reserved for the table to be 2717 adjusted, although the default of 1Mb should be ok in most cases. 2718 2719 The build will fail and a valid size suggested if this is too small. 2720 2721 If unsure, leave at the default value. 2722 2723config RANDOMIZE_BASE 2724 bool "Randomize the address of the kernel image" 2725 depends on RELOCATABLE 2726 help 2727 Randomizes the physical and virtual address at which the 2728 kernel image is loaded, as a security feature that 2729 deters exploit attempts relying on knowledge of the location 2730 of kernel internals. 2731 2732 Entropy is generated using any coprocessor 0 registers available. 2733 2734 The kernel will be offset by up to RANDOMIZE_BASE_MAX_OFFSET. 2735 2736 If unsure, say N. 2737 2738config RANDOMIZE_BASE_MAX_OFFSET 2739 hex "Maximum kASLR offset" if EXPERT 2740 depends on RANDOMIZE_BASE 2741 range 0x0 0x40000000 if EVA || 64BIT 2742 range 0x0 0x08000000 2743 default "0x01000000" 2744 help 2745 When kASLR is active, this provides the maximum offset that will 2746 be applied to the kernel image. It should be set according to the 2747 amount of physical RAM available in the target system minus 2748 PHYSICAL_START and must be a power of 2. 2749 2750 This is limited by the size of KSEG0, 256Mb on 32-bit or 1Gb with 2751 EVA or 64-bit. The default is 16Mb. 2752 2753config NODES_SHIFT 2754 int 2755 default "6" 2756 depends on NUMA 2757 2758config HW_PERF_EVENTS 2759 bool "Enable hardware performance counter support for perf events" 2760 depends on PERF_EVENTS && (CPU_MIPS32 || CPU_MIPS64 || CPU_R10000 || CPU_SB1 || CPU_CAVIUM_OCTEON || CPU_LOONGSON64) 2761 default y 2762 help 2763 Enable hardware performance counter support for perf events. If 2764 disabled, perf events will use software events only. 2765 2766config DMI 2767 bool "Enable DMI scanning" 2768 depends on MACH_LOONGSON64 2769 select DMI_SCAN_MACHINE_NON_EFI_FALLBACK 2770 default y 2771 help 2772 Enabled scanning of DMI to identify machine quirks. Say Y 2773 here unless you have verified that your setup is not 2774 affected by entries in the DMI blacklist. Required by PNP 2775 BIOS code. 2776 2777config SMP 2778 bool "Multi-Processing support" 2779 depends on SYS_SUPPORTS_SMP 2780 help 2781 This enables support for systems with more than one CPU. If you have 2782 a system with only one CPU, say N. If you have a system with more 2783 than one CPU, say Y. 2784 2785 If you say N here, the kernel will run on uni- and multiprocessor 2786 machines, but will use only one CPU of a multiprocessor machine. If 2787 you say Y here, the kernel will run on many, but not all, 2788 uniprocessor machines. On a uniprocessor machine, the kernel 2789 will run faster if you say N here. 2790 2791 People using multiprocessor machines who say Y here should also say 2792 Y to "Enhanced Real Time Clock Support", below. 2793 2794 See also the SMP-HOWTO available at 2795 <https://www.tldp.org/docs.html#howto>. 2796 2797 If you don't know what to do here, say N. 2798 2799config HOTPLUG_CPU 2800 bool "Support for hot-pluggable CPUs" 2801 depends on SMP && SYS_SUPPORTS_HOTPLUG_CPU 2802 help 2803 Say Y here to allow turning CPUs off and on. CPUs can be 2804 controlled through /sys/devices/system/cpu. 2805 (Note: power management support will enable this option 2806 automatically on SMP systems. ) 2807 Say N if you want to disable CPU hotplug. 2808 2809config SMP_UP 2810 bool 2811 2812config SYS_SUPPORTS_MIPS_CMP 2813 bool 2814 2815config SYS_SUPPORTS_MIPS_CPS 2816 bool 2817 2818config SYS_SUPPORTS_SMP 2819 bool 2820 2821config NR_CPUS_DEFAULT_4 2822 bool 2823 2824config NR_CPUS_DEFAULT_8 2825 bool 2826 2827config NR_CPUS_DEFAULT_16 2828 bool 2829 2830config NR_CPUS_DEFAULT_32 2831 bool 2832 2833config NR_CPUS_DEFAULT_64 2834 bool 2835 2836config NR_CPUS 2837 int "Maximum number of CPUs (2-256)" 2838 range 2 256 2839 depends on SMP 2840 default "4" if NR_CPUS_DEFAULT_4 2841 default "8" if NR_CPUS_DEFAULT_8 2842 default "16" if NR_CPUS_DEFAULT_16 2843 default "32" if NR_CPUS_DEFAULT_32 2844 default "64" if NR_CPUS_DEFAULT_64 2845 help 2846 This allows you to specify the maximum number of CPUs which this 2847 kernel will support. The maximum supported value is 32 for 32-bit 2848 kernel and 64 for 64-bit kernels; the minimum value which makes 2849 sense is 1 for Qemu (useful only for kernel debugging purposes) 2850 and 2 for all others. 2851 2852 This is purely to save memory - each supported CPU adds 2853 approximately eight kilobytes to the kernel image. For best 2854 performance should round up your number of processors to the next 2855 power of two. 2856 2857config MIPS_PERF_SHARED_TC_COUNTERS 2858 bool 2859 2860config MIPS_NR_CPU_NR_MAP_1024 2861 bool 2862 2863config MIPS_NR_CPU_NR_MAP 2864 int 2865 depends on SMP 2866 default 1024 if MIPS_NR_CPU_NR_MAP_1024 2867 default NR_CPUS if !MIPS_NR_CPU_NR_MAP_1024 2868 2869# 2870# Timer Interrupt Frequency Configuration 2871# 2872 2873choice 2874 prompt "Timer frequency" 2875 default HZ_250 2876 help 2877 Allows the configuration of the timer frequency. 2878 2879 config HZ_24 2880 bool "24 HZ" if SYS_SUPPORTS_24HZ || SYS_SUPPORTS_ARBIT_HZ 2881 2882 config HZ_48 2883 bool "48 HZ" if SYS_SUPPORTS_48HZ || SYS_SUPPORTS_ARBIT_HZ 2884 2885 config HZ_100 2886 bool "100 HZ" if SYS_SUPPORTS_100HZ || SYS_SUPPORTS_ARBIT_HZ 2887 2888 config HZ_128 2889 bool "128 HZ" if SYS_SUPPORTS_128HZ || SYS_SUPPORTS_ARBIT_HZ 2890 2891 config HZ_250 2892 bool "250 HZ" if SYS_SUPPORTS_250HZ || SYS_SUPPORTS_ARBIT_HZ 2893 2894 config HZ_256 2895 bool "256 HZ" if SYS_SUPPORTS_256HZ || SYS_SUPPORTS_ARBIT_HZ 2896 2897 config HZ_1000 2898 bool "1000 HZ" if SYS_SUPPORTS_1000HZ || SYS_SUPPORTS_ARBIT_HZ 2899 2900 config HZ_1024 2901 bool "1024 HZ" if SYS_SUPPORTS_1024HZ || SYS_SUPPORTS_ARBIT_HZ 2902 2903endchoice 2904 2905config SYS_SUPPORTS_24HZ 2906 bool 2907 2908config SYS_SUPPORTS_48HZ 2909 bool 2910 2911config SYS_SUPPORTS_100HZ 2912 bool 2913 2914config SYS_SUPPORTS_128HZ 2915 bool 2916 2917config SYS_SUPPORTS_250HZ 2918 bool 2919 2920config SYS_SUPPORTS_256HZ 2921 bool 2922 2923config SYS_SUPPORTS_1000HZ 2924 bool 2925 2926config SYS_SUPPORTS_1024HZ 2927 bool 2928 2929config SYS_SUPPORTS_ARBIT_HZ 2930 bool 2931 default y if !SYS_SUPPORTS_24HZ && \ 2932 !SYS_SUPPORTS_48HZ && \ 2933 !SYS_SUPPORTS_100HZ && \ 2934 !SYS_SUPPORTS_128HZ && \ 2935 !SYS_SUPPORTS_250HZ && \ 2936 !SYS_SUPPORTS_256HZ && \ 2937 !SYS_SUPPORTS_1000HZ && \ 2938 !SYS_SUPPORTS_1024HZ 2939 2940config HZ 2941 int 2942 default 24 if HZ_24 2943 default 48 if HZ_48 2944 default 100 if HZ_100 2945 default 128 if HZ_128 2946 default 250 if HZ_250 2947 default 256 if HZ_256 2948 default 1000 if HZ_1000 2949 default 1024 if HZ_1024 2950 2951config SCHED_HRTICK 2952 def_bool HIGH_RES_TIMERS 2953 2954config KEXEC 2955 bool "Kexec system call" 2956 select KEXEC_CORE 2957 help 2958 kexec is a system call that implements the ability to shutdown your 2959 current kernel, and to start another kernel. It is like a reboot 2960 but it is independent of the system firmware. And like a reboot 2961 you can start any kernel with it, not just Linux. 2962 2963 The name comes from the similarity to the exec system call. 2964 2965 It is an ongoing process to be certain the hardware in a machine 2966 is properly shutdown, so do not be surprised if this code does not 2967 initially work for you. As of this writing the exact hardware 2968 interface is strongly in flux, so no good recommendation can be 2969 made. 2970 2971config CRASH_DUMP 2972 bool "Kernel crash dumps" 2973 help 2974 Generate crash dump after being started by kexec. 2975 This should be normally only set in special crash dump kernels 2976 which are loaded in the main kernel with kexec-tools into 2977 a specially reserved region and then later executed after 2978 a crash by kdump/kexec. The crash dump kernel must be compiled 2979 to a memory address not used by the main kernel or firmware using 2980 PHYSICAL_START. 2981 2982config PHYSICAL_START 2983 hex "Physical address where the kernel is loaded" 2984 default "0xffffffff84000000" 2985 depends on CRASH_DUMP 2986 help 2987 This gives the CKSEG0 or KSEG0 address where the kernel is loaded. 2988 If you plan to use kernel for capturing the crash dump change 2989 this value to start of the reserved region (the "X" value as 2990 specified in the "crashkernel=YM@XM" command line boot parameter 2991 passed to the panic-ed kernel). 2992 2993config MIPS_O32_FP64_SUPPORT 2994 bool "Support for O32 binaries using 64-bit FP" if !CPU_MIPSR6 2995 depends on 32BIT || MIPS32_O32 2996 help 2997 When this is enabled, the kernel will support use of 64-bit floating 2998 point registers with binaries using the O32 ABI along with the 2999 EF_MIPS_FP64 ELF header flag (typically built with -mfp64). On 3000 32-bit MIPS systems this support is at the cost of increasing the 3001 size and complexity of the compiled FPU emulator. Thus if you are 3002 running a MIPS32 system and know that none of your userland binaries 3003 will require 64-bit floating point, you may wish to reduce the size 3004 of your kernel & potentially improve FP emulation performance by 3005 saying N here. 3006 3007 Although binutils currently supports use of this flag the details 3008 concerning its effect upon the O32 ABI in userland are still being 3009 worked on. In order to avoid userland becoming dependent upon current 3010 behaviour before the details have been finalised, this option should 3011 be considered experimental and only enabled by those working upon 3012 said details. 3013 3014 If unsure, say N. 3015 3016config USE_OF 3017 bool 3018 select OF 3019 select OF_EARLY_FLATTREE 3020 select IRQ_DOMAIN 3021 3022config UHI_BOOT 3023 bool 3024 3025config BUILTIN_DTB 3026 bool 3027 3028choice 3029 prompt "Kernel appended dtb support" if USE_OF 3030 default MIPS_NO_APPENDED_DTB 3031 3032 config MIPS_NO_APPENDED_DTB 3033 bool "None" 3034 help 3035 Do not enable appended dtb support. 3036 3037 config MIPS_ELF_APPENDED_DTB 3038 bool "vmlinux" 3039 help 3040 With this option, the boot code will look for a device tree binary 3041 DTB) included in the vmlinux ELF section .appended_dtb. By default 3042 it is empty and the DTB can be appended using binutils command 3043 objcopy: 3044 3045 objcopy --update-section .appended_dtb=<filename>.dtb vmlinux 3046 3047 This is meant as a backward compatibility convenience for those 3048 systems with a bootloader that can't be upgraded to accommodate 3049 the documented boot protocol using a device tree. 3050 3051 config MIPS_RAW_APPENDED_DTB 3052 bool "vmlinux.bin or vmlinuz.bin" 3053 help 3054 With this option, the boot code will look for a device tree binary 3055 DTB) appended to raw vmlinux.bin or vmlinuz.bin. 3056 (e.g. cat vmlinux.bin <filename>.dtb > vmlinux_w_dtb). 3057 3058 This is meant as a backward compatibility convenience for those 3059 systems with a bootloader that can't be upgraded to accommodate 3060 the documented boot protocol using a device tree. 3061 3062 Beware that there is very little in terms of protection against 3063 this option being confused by leftover garbage in memory that might 3064 look like a DTB header after a reboot if no actual DTB is appended 3065 to vmlinux.bin. Do not leave this option active in a production kernel 3066 if you don't intend to always append a DTB. 3067endchoice 3068 3069choice 3070 prompt "Kernel command line type" if !CMDLINE_OVERRIDE 3071 default MIPS_CMDLINE_FROM_DTB if USE_OF && !ATH79 && !MACH_INGENIC && \ 3072 !MACH_LOONGSON64 && !MIPS_MALTA && \ 3073 !CAVIUM_OCTEON_SOC 3074 default MIPS_CMDLINE_FROM_BOOTLOADER 3075 3076 config MIPS_CMDLINE_FROM_DTB 3077 depends on USE_OF 3078 bool "Dtb kernel arguments if available" 3079 3080 config MIPS_CMDLINE_DTB_EXTEND 3081 depends on USE_OF 3082 bool "Extend dtb kernel arguments with bootloader arguments" 3083 3084 config MIPS_CMDLINE_FROM_BOOTLOADER 3085 bool "Bootloader kernel arguments if available" 3086 3087 config MIPS_CMDLINE_BUILTIN_EXTEND 3088 depends on CMDLINE_BOOL 3089 bool "Extend builtin kernel arguments with bootloader arguments" 3090endchoice 3091 3092endmenu 3093 3094config LOCKDEP_SUPPORT 3095 bool 3096 default y 3097 3098config STACKTRACE_SUPPORT 3099 bool 3100 default y 3101 3102config PGTABLE_LEVELS 3103 int 3104 default 4 if PAGE_SIZE_4KB && MIPS_VA_BITS_48 3105 default 3 if 64BIT && !PAGE_SIZE_64KB 3106 default 2 3107 3108config MIPS_AUTO_PFN_OFFSET 3109 bool 3110 3111menu "Bus options (PCI, PCMCIA, EISA, ISA, TC)" 3112 3113config PCI_DRIVERS_GENERIC 3114 select PCI_DOMAINS_GENERIC if PCI 3115 bool 3116 3117config PCI_DRIVERS_LEGACY 3118 def_bool !PCI_DRIVERS_GENERIC 3119 select NO_GENERIC_PCI_IOPORT_MAP 3120 select PCI_DOMAINS if PCI 3121 3122# 3123# ISA support is now enabled via select. Too many systems still have the one 3124# or other ISA chip on the board that users don't know about so don't expect 3125# users to choose the right thing ... 3126# 3127config ISA 3128 bool 3129 3130config TC 3131 bool "TURBOchannel support" 3132 depends on MACH_DECSTATION 3133 help 3134 TURBOchannel is a DEC (now Compaq (now HP)) bus for Alpha and MIPS 3135 processors. TURBOchannel programming specifications are available 3136 at: 3137 <ftp://ftp.hp.com/pub/alphaserver/archive/triadd/> 3138 and: 3139 <http://www.computer-refuge.org/classiccmp/ftp.digital.com/pub/DEC/TriAdd/> 3140 Linux driver support status is documented at: 3141 <http://www.linux-mips.org/wiki/DECstation> 3142 3143config MMU 3144 bool 3145 default y 3146 3147config ARCH_MMAP_RND_BITS_MIN 3148 default 12 if 64BIT 3149 default 8 3150 3151config ARCH_MMAP_RND_BITS_MAX 3152 default 18 if 64BIT 3153 default 15 3154 3155config ARCH_MMAP_RND_COMPAT_BITS_MIN 3156 default 8 3157 3158config ARCH_MMAP_RND_COMPAT_BITS_MAX 3159 default 15 3160 3161config I8253 3162 bool 3163 select CLKSRC_I8253 3164 select CLKEVT_I8253 3165 select MIPS_EXTERNAL_TIMER 3166endmenu 3167 3168config TRAD_SIGNALS 3169 bool 3170 3171config MIPS32_COMPAT 3172 bool 3173 3174config COMPAT 3175 bool 3176 3177config SYSVIPC_COMPAT 3178 bool 3179 3180config MIPS32_O32 3181 bool "Kernel support for o32 binaries" 3182 depends on 64BIT 3183 select ARCH_WANT_OLD_COMPAT_IPC 3184 select COMPAT 3185 select MIPS32_COMPAT 3186 select SYSVIPC_COMPAT if SYSVIPC 3187 help 3188 Select this option if you want to run o32 binaries. These are pure 3189 32-bit binaries as used by the 32-bit Linux/MIPS port. Most of 3190 existing binaries are in this format. 3191 3192 If unsure, say Y. 3193 3194config MIPS32_N32 3195 bool "Kernel support for n32 binaries" 3196 depends on 64BIT 3197 select ARCH_WANT_COMPAT_IPC_PARSE_VERSION 3198 select COMPAT 3199 select MIPS32_COMPAT 3200 select SYSVIPC_COMPAT if SYSVIPC 3201 help 3202 Select this option if you want to run n32 binaries. These are 3203 64-bit binaries using 32-bit quantities for addressing and certain 3204 data that would normally be 64-bit. They are used in special 3205 cases. 3206 3207 If unsure, say N. 3208 3209menu "Power management options" 3210 3211config ARCH_HIBERNATION_POSSIBLE 3212 def_bool y 3213 depends on SYS_SUPPORTS_HOTPLUG_CPU || !SMP 3214 3215config ARCH_SUSPEND_POSSIBLE 3216 def_bool y 3217 depends on SYS_SUPPORTS_HOTPLUG_CPU || !SMP 3218 3219source "kernel/power/Kconfig" 3220 3221endmenu 3222 3223config MIPS_EXTERNAL_TIMER 3224 bool 3225 3226menu "CPU Power Management" 3227 3228if CPU_SUPPORTS_CPUFREQ && MIPS_EXTERNAL_TIMER 3229source "drivers/cpufreq/Kconfig" 3230endif 3231 3232source "drivers/cpuidle/Kconfig" 3233 3234endmenu 3235 3236source "drivers/firmware/Kconfig" 3237 3238source "arch/mips/kvm/Kconfig" 3239 3240source "arch/mips/vdso/Kconfig" 3241