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