xref: /linux/arch/mips/Kconfig (revision 797798c1bed106a20d4c1ac689ae8a5b1069c5b2)
11da177e4SLinus Torvaldsconfig MIPS
21da177e4SLinus Torvalds	bool
31da177e4SLinus Torvalds	default y
41da177e4SLinus Torvalds	# Horrible source of confusion.  Die, die, die ...
51da177e4SLinus Torvalds	select EMBEDDED
61da177e4SLinus Torvalds
7a08b6b79Sviro@ZenIV.linux.org.uk# shouldn't it be per-subarchitecture?
8a08b6b79Sviro@ZenIV.linux.org.ukconfig ARCH_MAY_HAVE_PC_FDC
9a08b6b79Sviro@ZenIV.linux.org.uk	bool
10a08b6b79Sviro@ZenIV.linux.org.uk	default y
11a08b6b79Sviro@ZenIV.linux.org.uk
121da177e4SLinus Torvaldsmainmenu "Linux/MIPS Kernel Configuration"
131da177e4SLinus Torvalds
141da177e4SLinus Torvaldssource "init/Kconfig"
151da177e4SLinus Torvalds
16e01402b1SRalf Baechleconfig CPU_MIPS32
17e01402b1SRalf Baechle	bool
18e01402b1SRalf Baechle	default y if CPU_MIPS32_R1 || CPU_MIPS32_R2
19e01402b1SRalf Baechle
20e01402b1SRalf Baechleconfig CPU_MIPS64
21e01402b1SRalf Baechle	bool
22e01402b1SRalf Baechle	default y if CPU_MIPS64_R1 || CPU_MIPS64_R2
23e01402b1SRalf Baechle
24e01402b1SRalf Baechleconfig CPU_MIPSR1
25e01402b1SRalf Baechle	bool
26e01402b1SRalf Baechle	default y if CPU_MIPS32_R1 || CPU_MIPS64_R1
27e01402b1SRalf Baechle
28e01402b1SRalf Baechleconfig CPU_MIPSR2
29e01402b1SRalf Baechle	bool
30e01402b1SRalf Baechle	default y if CPU_MIPS32_R2 || CPU_MIPS64_R2
31e01402b1SRalf Baechle
32ed5ba2fbSYoichi Yuasaconfig SYS_SUPPORTS_32BIT_KERNEL
33ed5ba2fbSYoichi Yuasa	bool
34ed5ba2fbSYoichi Yuasaconfig SYS_SUPPORTS_64BIT_KERNEL
35ed5ba2fbSYoichi Yuasa	bool
36ed5ba2fbSYoichi Yuasaconfig CPU_SUPPORTS_32BIT_KERNEL
37ed5ba2fbSYoichi Yuasa	bool
38ed5ba2fbSYoichi Yuasaconfig CPU_SUPPORTS_64BIT_KERNEL
39ed5ba2fbSYoichi Yuasa	bool
40ed5ba2fbSYoichi Yuasa
41875d43e7SRalf Baechlemenu "Kernel type"
42875d43e7SRalf Baechle
43875d43e7SRalf Baechlechoice
44875d43e7SRalf Baechle
45875d43e7SRalf Baechle	prompt "Kernel code model"
46875d43e7SRalf Baechle	help
47875d43e7SRalf Baechle	  You should only select this option if you have a workload that
48875d43e7SRalf Baechle	  actually benefits from 64-bit processing or if your machine has
49875d43e7SRalf Baechle	  large memory.  You will only be presented a single option in this
50875d43e7SRalf Baechle	  menu if your system does not support both 32-bit and 64-bit kernels.
51875d43e7SRalf Baechle
52875d43e7SRalf Baechleconfig 32BIT
53875d43e7SRalf Baechle	bool "32-bit kernel"
54875d43e7SRalf Baechle	depends on CPU_SUPPORTS_32BIT_KERNEL && SYS_SUPPORTS_32BIT_KERNEL
55875d43e7SRalf Baechle	select TRAD_SIGNALS
56875d43e7SRalf Baechle	help
57875d43e7SRalf Baechle	  Select this option if you want to build a 32-bit kernel.
58875d43e7SRalf Baechle
59875d43e7SRalf Baechleconfig 64BIT
60875d43e7SRalf Baechle	bool "64-bit kernel"
61875d43e7SRalf Baechle	depends on CPU_SUPPORTS_64BIT_KERNEL && SYS_SUPPORTS_64BIT_KERNEL
62875d43e7SRalf Baechle	help
63875d43e7SRalf Baechle	  Select this option if you want to build a 64-bit kernel.
64875d43e7SRalf Baechle
65875d43e7SRalf Baechleendchoice
66875d43e7SRalf Baechle
67875d43e7SRalf Baechleendmenu
68875d43e7SRalf Baechle
691da177e4SLinus Torvaldsmenu "Machine selection"
701da177e4SLinus Torvalds
711da177e4SLinus Torvaldsconfig MACH_JAZZ
721da177e4SLinus Torvalds	bool "Support for the Jazz family of machines"
731da177e4SLinus Torvalds	select ARC
741da177e4SLinus Torvalds	select ARC32
751da177e4SLinus Torvalds	select GENERIC_ISA_DMA
761da177e4SLinus Torvalds	select I8259
771da177e4SLinus Torvalds	select ISA
78ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
79ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
801da177e4SLinus Torvalds	help
811da177e4SLinus Torvalds	 This a family of machines based on the MIPS R4030 chipset which was
821da177e4SLinus Torvalds	 used by several vendors to build RISC/os and Windows NT workstations.
831da177e4SLinus Torvalds	 Members include the Acer PICA, MIPS Magnum 4000, MIPS Millenium and
841da177e4SLinus Torvalds	 Olivetti M700-10 workstations.
851da177e4SLinus Torvalds
861da177e4SLinus Torvaldsconfig ACER_PICA_61
871da177e4SLinus Torvalds	bool "Support for Acer PICA 1 chipset (EXPERIMENTAL)"
881da177e4SLinus Torvalds	depends on MACH_JAZZ && EXPERIMENTAL
891da177e4SLinus Torvalds	select DMA_NONCOHERENT
901da177e4SLinus Torvalds	help
911da177e4SLinus Torvalds	  This is a machine with a R4400 133/150 MHz CPU. To compile a Linux
921da177e4SLinus Torvalds	  kernel that runs on these, say Y here. For details about Linux on
931da177e4SLinus Torvalds	  the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at
941da177e4SLinus Torvalds	  <http://www.linux-mips.org/>.
951da177e4SLinus Torvalds
961da177e4SLinus Torvaldsconfig MIPS_MAGNUM_4000
971da177e4SLinus Torvalds	bool "Support for MIPS Magnum 4000"
981da177e4SLinus Torvalds	depends on MACH_JAZZ
991da177e4SLinus Torvalds	select DMA_NONCOHERENT
1001da177e4SLinus Torvalds	help
1011da177e4SLinus Torvalds	  This is a machine with a R4000 100 MHz CPU. To compile a Linux
1021da177e4SLinus Torvalds	  kernel that runs on these, say Y here. For details about Linux on
1031da177e4SLinus Torvalds	  the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at
1041da177e4SLinus Torvalds	  <http://www.linux-mips.org/>.
1051da177e4SLinus Torvalds
1061da177e4SLinus Torvaldsconfig OLIVETTI_M700
1071da177e4SLinus Torvalds	bool "Support for Olivetti M700-10"
1081da177e4SLinus Torvalds	depends on MACH_JAZZ
1091da177e4SLinus Torvalds	select DMA_NONCOHERENT
1101da177e4SLinus Torvalds	help
1111da177e4SLinus Torvalds	  This is a machine with a R4000 100 MHz CPU. To compile a Linux
1121da177e4SLinus Torvalds	  kernel that runs on these, say Y here. For details about Linux on
1131da177e4SLinus Torvalds	  the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at
1141da177e4SLinus Torvalds	  <http://www.linux-mips.org/>.
1151da177e4SLinus Torvalds
1161da177e4SLinus Torvaldsconfig MACH_VR41XX
11763fb6fd1SYoichi Yuasa	bool "Support for NEC VR4100 series based machines"
118ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
119ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
1201da177e4SLinus Torvalds
1211da177e4SLinus Torvaldsconfig NEC_CMBVR4133
1221da177e4SLinus Torvalds	bool "Support for NEC CMB-VR4133"
1231da177e4SLinus Torvalds	depends on MACH_VR41XX
1241da177e4SLinus Torvalds	select CPU_VR41XX
1251da177e4SLinus Torvalds	select DMA_NONCOHERENT
1261da177e4SLinus Torvalds	select IRQ_CPU
1271da177e4SLinus Torvalds	select HW_HAS_PCI
1281da177e4SLinus Torvalds
1291da177e4SLinus Torvaldsconfig ROCKHOPPER
1301da177e4SLinus Torvalds	bool "Support for Rockhopper baseboard"
1311da177e4SLinus Torvalds	depends on NEC_CMBVR4133
1321da177e4SLinus Torvalds	select I8259
1331da177e4SLinus Torvalds	select HAVE_STD_PC_SERIAL_PORT
1341da177e4SLinus Torvalds
1351da177e4SLinus Torvaldsconfig CASIO_E55
1361da177e4SLinus Torvalds	bool "Support for CASIO CASSIOPEIA E-10/15/55/65"
1371da177e4SLinus Torvalds	depends on MACH_VR41XX
1388dd4aebeSYoichi Yuasa	select CPU_LITTLE_ENDIAN
1391da177e4SLinus Torvalds	select DMA_NONCOHERENT
1401da177e4SLinus Torvalds	select IRQ_CPU
1411da177e4SLinus Torvalds	select ISA
1421da177e4SLinus Torvalds
1431da177e4SLinus Torvaldsconfig IBM_WORKPAD
1441da177e4SLinus Torvalds	bool "Support for IBM WorkPad z50"
1451da177e4SLinus Torvalds	depends on MACH_VR41XX
1468dd4aebeSYoichi Yuasa	select CPU_LITTLE_ENDIAN
1471da177e4SLinus Torvalds	select DMA_NONCOHERENT
1481da177e4SLinus Torvalds	select IRQ_CPU
1491da177e4SLinus Torvalds	select ISA
1501da177e4SLinus Torvalds
15163b799f9SYoichi Yuasaconfig TANBAC_TB022X
15263b799f9SYoichi Yuasa	bool "Support for TANBAC VR4131 multichip module and TANBAC VR4131DIMM"
1531da177e4SLinus Torvalds	depends on MACH_VR41XX
15463b799f9SYoichi Yuasa	select CPU_LITTLE_ENDIAN
1551da177e4SLinus Torvalds	select DMA_NONCOHERENT
1561da177e4SLinus Torvalds	select IRQ_CPU
15763b799f9SYoichi Yuasa	select HW_HAS_PCI
1581da177e4SLinus Torvalds	help
15963b799f9SYoichi Yuasa	  The TANBAC VR4131 multichip module(TB0225) and
16063b799f9SYoichi Yuasa	  the TANBAC VR4131DIMM(TB0229) are MIPS-based platforms
16163b799f9SYoichi Yuasa	  manufactured by TANBAC.
16263b799f9SYoichi Yuasa	  Please refer to <http://www.tanbac.co.jp/>
16363b799f9SYoichi Yuasa	  about VR4131 multichip module and VR4131DIMM.
1641da177e4SLinus Torvalds
16563b799f9SYoichi Yuasaconfig TANBAC_TB0226
16663b799f9SYoichi Yuasa	bool "Support for TANBAC Mbase(TB0226)"
16763b799f9SYoichi Yuasa	depends on TANBAC_TB022X
16863b799f9SYoichi Yuasa	select GPIO_VR41XX
1691da177e4SLinus Torvalds	help
17063b799f9SYoichi Yuasa	  The TANBAC Mbase(TB0226) is a MIPS-based platform manufactured by TANBAC.
17163b799f9SYoichi Yuasa	  Please refer to <http://www.tanbac.co.jp/> about Mbase.
1721da177e4SLinus Torvalds
1734d666d7aSYoichi Yuasaconfig TANBAC_TB0287
1744d666d7aSYoichi Yuasa	bool "Support for TANBAC Mini-ITX DIMM base(TB0287)"
1754d666d7aSYoichi Yuasa	depends on TANBAC_TB022X
1764d666d7aSYoichi Yuasa	help
1774d666d7aSYoichi Yuasa	  The TANBAC Mini-ITX DIMM base(TB0287) is a MIPS-based platform manufactured by TANBAC.
1784d666d7aSYoichi Yuasa	  Please refer to <http://www.tanbac.co.jp/> about Mini-ITX DIMM base.
1794d666d7aSYoichi Yuasa
1801da177e4SLinus Torvaldsconfig VICTOR_MPC30X
1811da177e4SLinus Torvalds	bool "Support for Victor MP-C303/304"
1821da177e4SLinus Torvalds	depends on MACH_VR41XX
1838dd4aebeSYoichi Yuasa	select CPU_LITTLE_ENDIAN
1848dd4aebeSYoichi Yuasa	select DMA_NONCOHERENT
1858dd4aebeSYoichi Yuasa	select IRQ_CPU
1868dd4aebeSYoichi Yuasa	select HW_HAS_PCI
1871da177e4SLinus Torvalds
1881da177e4SLinus Torvaldsconfig ZAO_CAPCELLA
1891da177e4SLinus Torvalds	bool "Support for ZAO Networks Capcella"
1901da177e4SLinus Torvalds	depends on MACH_VR41XX
1918dd4aebeSYoichi Yuasa	select CPU_LITTLE_ENDIAN
1921da177e4SLinus Torvalds	select DMA_NONCOHERENT
1931da177e4SLinus Torvalds	select IRQ_CPU
1948dd4aebeSYoichi Yuasa	select HW_HAS_PCI
1951da177e4SLinus Torvalds
1961da177e4SLinus Torvaldsconfig PCI_VR41XX
1971da177e4SLinus Torvalds	bool "Add PCI control unit support of NEC VR4100 series"
198466adc66SYoichi Yuasa	depends on MACH_VR41XX && HW_HAS_PCI
199466adc66SYoichi Yuasa	default y
200466adc66SYoichi Yuasa	select PCI
2011da177e4SLinus Torvalds
2021da177e4SLinus Torvaldsconfig VRC4173
2031da177e4SLinus Torvalds	tristate "Add NEC VRC4173 companion chip support"
2041da177e4SLinus Torvalds	depends on MACH_VR41XX && PCI_VR41XX
2051da177e4SLinus Torvalds	---help---
2061da177e4SLinus Torvalds	  The NEC VRC4173 is a companion chip for NEC VR4122/VR4131.
2071da177e4SLinus Torvalds
2081da177e4SLinus Torvaldsconfig TOSHIBA_JMR3927
2091da177e4SLinus Torvalds	bool "Support for Toshiba JMR-TX3927 board"
2101da177e4SLinus Torvalds	select DMA_NONCOHERENT
2111da177e4SLinus Torvalds	select HW_HAS_PCI
2121da177e4SLinus Torvalds	select SWAP_IO_SPACE
213ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
2141da177e4SLinus Torvalds
2151da177e4SLinus Torvaldsconfig MIPS_COBALT
216ed5ba2fbSYoichi Yuasa	bool "Support for Cobalt Server"
2171da177e4SLinus Torvalds	depends on EXPERIMENTAL
2181da177e4SLinus Torvalds	select DMA_NONCOHERENT
2191da177e4SLinus Torvalds	select HW_HAS_PCI
2201da177e4SLinus Torvalds	select I8259
2211da177e4SLinus Torvalds	select IRQ_CPU
222ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
223ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
2241da177e4SLinus Torvalds
2251da177e4SLinus Torvaldsconfig MACH_DECSTATION
2261da177e4SLinus Torvalds	bool "Support for DECstations"
2271da177e4SLinus Torvalds	select BOOT_ELF32
2281da177e4SLinus Torvalds	select DMA_NONCOHERENT
229b6d468ecSMaciej W. Rozycki	select EARLY_PRINTK
2301da177e4SLinus Torvalds	select IRQ_CPU
231ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
232ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
2331da177e4SLinus Torvalds	---help---
2341da177e4SLinus Torvalds	  This enables support for DEC's MIPS based workstations.  For details
2351da177e4SLinus Torvalds	  see the Linux/MIPS FAQ on <http://www.linux-mips.org/> and the
2361da177e4SLinus Torvalds	  DECstation porting pages on <http://decstation.unix-ag.org/>.
2371da177e4SLinus Torvalds
2381da177e4SLinus Torvalds	  If you have one of the following DECstation Models you definitely
2391da177e4SLinus Torvalds	  want to choose R4xx0 for the CPU Type:
2401da177e4SLinus Torvalds
2411da177e4SLinus Torvalds	  	DECstation 5000/50
2421da177e4SLinus Torvalds	  	DECstation 5000/150
2431da177e4SLinus Torvalds	  	DECstation 5000/260
2441da177e4SLinus Torvalds	  	DECsystem 5900/260
2451da177e4SLinus Torvalds
2461da177e4SLinus Torvalds	  otherwise choose R3000.
2471da177e4SLinus Torvalds
2481da177e4SLinus Torvaldsconfig MIPS_EV64120
2491da177e4SLinus Torvalds	bool "Support for Galileo EV64120 Evaluation board (EXPERIMENTAL)"
2501da177e4SLinus Torvalds	depends on EXPERIMENTAL
2511da177e4SLinus Torvalds	select DMA_NONCOHERENT
252e01402b1SRalf Baechle	select IRQ_CPU
2531da177e4SLinus Torvalds	select HW_HAS_PCI
2541da177e4SLinus Torvalds	select MIPS_GT64120
255ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
256ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
2571da177e4SLinus Torvalds	help
2581da177e4SLinus Torvalds	  This is an evaluation board based on the Galileo GT-64120
2591da177e4SLinus Torvalds	  single-chip system controller that contains a MIPS R5000 compatible
2601da177e4SLinus Torvalds	  core running at 75/100MHz.  Their website is located at
2611da177e4SLinus Torvalds	  <http://www.marvell.com/>.  Say Y here if you wish to build a
2621da177e4SLinus Torvalds	  kernel for this platform.
2631da177e4SLinus Torvalds
2641da177e4SLinus Torvaldsconfig EVB_PCI1
2651da177e4SLinus Torvalds	bool "Enable Second PCI (PCI1)"
2661da177e4SLinus Torvalds	depends on MIPS_EV64120
2671da177e4SLinus Torvalds
2681da177e4SLinus Torvaldsconfig MIPS_EV96100
2691da177e4SLinus Torvalds	bool "Support for Galileo EV96100 Evaluation board (EXPERIMENTAL)"
2701da177e4SLinus Torvalds	depends on EXPERIMENTAL
2711da177e4SLinus Torvalds	select DMA_NONCOHERENT
2721da177e4SLinus Torvalds	select HW_HAS_PCI
2731da177e4SLinus Torvalds	select IRQ_CPU
2741da177e4SLinus Torvalds	select MIPS_GT96100
2751da177e4SLinus Torvalds	select RM7000_CPU_SCACHE
2761da177e4SLinus Torvalds	select SWAP_IO_SPACE
277ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
278ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
2791da177e4SLinus Torvalds	help
2801da177e4SLinus Torvalds	  This is an evaluation board based on the Galileo GT-96100 LAN/WAN
2811da177e4SLinus Torvalds	  communications controllers containing a MIPS R5000 compatible core
2821da177e4SLinus Torvalds	  running at 83MHz. Their website is <http://www.marvell.com/>. Say Y
2831da177e4SLinus Torvalds	  here if you wish to build a kernel for this platform.
2841da177e4SLinus Torvalds
2851da177e4SLinus Torvaldsconfig MIPS_IVR
2861da177e4SLinus Torvalds	bool "Support for Globespan IVR board"
2871da177e4SLinus Torvalds	select DMA_NONCOHERENT
2881da177e4SLinus Torvalds	select HW_HAS_PCI
289ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
290ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
2911da177e4SLinus Torvalds	help
2921da177e4SLinus Torvalds	  This is an evaluation board built by Globespan to showcase thir
2931da177e4SLinus Torvalds	  iVR (Internet Video Recorder) design. It utilizes a QED RM5231
2941da177e4SLinus Torvalds	  R5000 MIPS core. More information can be found out their website
2951da177e4SLinus Torvalds	  located at <http://www.globespan.net/>. Say Y here if you wish to
2961da177e4SLinus Torvalds	  build a kernel for this platform.
2971da177e4SLinus Torvalds
2981da177e4SLinus Torvaldsconfig LASAT
2991da177e4SLinus Torvalds	bool "Support for LASAT Networks platforms"
3001da177e4SLinus Torvalds	select DMA_NONCOHERENT
3011da177e4SLinus Torvalds	select HW_HAS_PCI
3021da177e4SLinus Torvalds	select MIPS_GT64120
3031da177e4SLinus Torvalds	select R5000_CPU_SCACHE
304ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
305ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
3061da177e4SLinus Torvalds
3071da177e4SLinus Torvaldsconfig PICVUE
3081da177e4SLinus Torvalds	tristate "PICVUE LCD display driver"
3091da177e4SLinus Torvalds	depends on LASAT
3101da177e4SLinus Torvalds
3111da177e4SLinus Torvaldsconfig PICVUE_PROC
3121da177e4SLinus Torvalds	tristate "PICVUE LCD display driver /proc interface"
3131da177e4SLinus Torvalds	depends on PICVUE
3141da177e4SLinus Torvalds
3151da177e4SLinus Torvaldsconfig DS1603
3161da177e4SLinus Torvalds	bool "DS1603 RTC driver"
3171da177e4SLinus Torvalds	depends on LASAT
3181da177e4SLinus Torvalds
3191da177e4SLinus Torvaldsconfig LASAT_SYSCTL
3201da177e4SLinus Torvalds	bool "LASAT sysctl interface"
3211da177e4SLinus Torvalds	depends on LASAT
3221da177e4SLinus Torvalds
3231da177e4SLinus Torvaldsconfig MIPS_ITE8172
3241da177e4SLinus Torvalds	bool "Support for ITE 8172G board"
3251da177e4SLinus Torvalds	select DMA_NONCOHERENT
3261da177e4SLinus Torvalds	select HW_HAS_PCI
327ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
328ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
3291da177e4SLinus Torvalds	help
3301da177e4SLinus Torvalds	  Ths is an evaluation board made by ITE <http://www.ite.com.tw/>
3311da177e4SLinus Torvalds	  with ATX form factor that utilizes a MIPS R5000 to work with its
3321da177e4SLinus Torvalds	  ITE8172G companion internet appliance chip. The MIPS core can be
3331da177e4SLinus Torvalds	  either a NEC Vr5432 or QED RM5231. Say Y here if you wish to build
3341da177e4SLinus Torvalds	  a kernel for this platform.
3351da177e4SLinus Torvalds
3361da177e4SLinus Torvaldsconfig IT8172_REVC
3371da177e4SLinus Torvalds	bool "Support for older IT8172 (Rev C)"
3381da177e4SLinus Torvalds	depends on MIPS_ITE8172
3391da177e4SLinus Torvalds	help
3401da177e4SLinus Torvalds	  Say Y here to support the older, Revision C version of the Integrated
3411da177e4SLinus Torvalds	  Technology Express, Inc. ITE8172 SBC.  Vendor page at
3421da177e4SLinus Torvalds	  <http://www.ite.com.tw/ia/brief_it8172bsp.htm>; picture of the
3431da177e4SLinus Torvalds	  board at <http://www.mvista.com/partners/semiconductor/ite.html>.
3441da177e4SLinus Torvalds
3451da177e4SLinus Torvaldsconfig MIPS_ATLAS
3461da177e4SLinus Torvalds	bool "Support for MIPS Atlas board"
3471da177e4SLinus Torvalds	select BOOT_ELF32
3481da177e4SLinus Torvalds	select DMA_NONCOHERENT
3491da177e4SLinus Torvalds	select HW_HAS_PCI
3501da177e4SLinus Torvalds	select MIPS_GT64120
351f4b7cdb4SMaciej W. Rozycki	select RM7000_CPU_SCACHE
3521da177e4SLinus Torvalds	select SWAP_IO_SPACE
353ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
354ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
3551da177e4SLinus Torvalds	help
356f638d197SMaciej W. Rozycki	  This enables support for the MIPS Technologies Atlas evaluation
3571da177e4SLinus Torvalds	  board.
3581da177e4SLinus Torvalds
3591da177e4SLinus Torvaldsconfig MIPS_MALTA
3601da177e4SLinus Torvalds	bool "Support for MIPS Malta board"
3611da177e4SLinus Torvalds	select BOOT_ELF32
3621da177e4SLinus Torvalds	select HAVE_STD_PC_SERIAL_PORT
3631da177e4SLinus Torvalds	select DMA_NONCOHERENT
364e01402b1SRalf Baechle	select IRQ_CPU
3651da177e4SLinus Torvalds	select GENERIC_ISA_DMA
3661da177e4SLinus Torvalds	select HW_HAS_PCI
3671da177e4SLinus Torvalds	select I8259
3681da177e4SLinus Torvalds	select MIPS_GT64120
3691da177e4SLinus Torvalds	select SWAP_IO_SPACE
370ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
371ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
3721da177e4SLinus Torvalds	help
373f638d197SMaciej W. Rozycki	  This enables support for the MIPS Technologies Malta evaluation
3741da177e4SLinus Torvalds	  board.
3751da177e4SLinus Torvalds
3761da177e4SLinus Torvaldsconfig MIPS_SEAD
3771da177e4SLinus Torvalds	bool "Support for MIPS SEAD board (EXPERIMENTAL)"
3781da177e4SLinus Torvalds	depends on EXPERIMENTAL
3791da177e4SLinus Torvalds	select IRQ_CPU
3801da177e4SLinus Torvalds	select DMA_NONCOHERENT
381ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
382ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
383f638d197SMaciej W. Rozycki	help
384f638d197SMaciej W. Rozycki	  This enables support for the MIPS Technologies SEAD evaluation
385f638d197SMaciej W. Rozycki	  board.
3861da177e4SLinus Torvalds
3871da177e4SLinus Torvaldsconfig MOMENCO_OCELOT
3881da177e4SLinus Torvalds	bool "Support for Momentum Ocelot board"
3891da177e4SLinus Torvalds	select DMA_NONCOHERENT
3901da177e4SLinus Torvalds	select HW_HAS_PCI
3911da177e4SLinus Torvalds	select IRQ_CPU
3921da177e4SLinus Torvalds	select IRQ_CPU_RM7K
3931da177e4SLinus Torvalds	select MIPS_GT64120
3941da177e4SLinus Torvalds	select RM7000_CPU_SCACHE
3951da177e4SLinus Torvalds	select SWAP_IO_SPACE
396ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
397ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
3981da177e4SLinus Torvalds	help
3991da177e4SLinus Torvalds	  The Ocelot is a MIPS-based Single Board Computer (SBC) made by
4001da177e4SLinus Torvalds	  Momentum Computer <http://www.momenco.com/>.
4011da177e4SLinus Torvalds
4021da177e4SLinus Torvaldsconfig MOMENCO_OCELOT_G
4031da177e4SLinus Torvalds	bool "Support for Momentum Ocelot-G board"
4041da177e4SLinus Torvalds	select DMA_NONCOHERENT
4051da177e4SLinus Torvalds	select HW_HAS_PCI
4061da177e4SLinus Torvalds	select IRQ_CPU
4071da177e4SLinus Torvalds	select IRQ_CPU_RM7K
4081da177e4SLinus Torvalds	select PCI_MARVELL
4091da177e4SLinus Torvalds	select RM7000_CPU_SCACHE
4101da177e4SLinus Torvalds	select SWAP_IO_SPACE
411ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
412ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
4131da177e4SLinus Torvalds	help
4141da177e4SLinus Torvalds	  The Ocelot is a MIPS-based Single Board Computer (SBC) made by
4151da177e4SLinus Torvalds	  Momentum Computer <http://www.momenco.com/>.
4161da177e4SLinus Torvalds
4171da177e4SLinus Torvaldsconfig MOMENCO_OCELOT_C
4181da177e4SLinus Torvalds	bool "Support for Momentum Ocelot-C board"
4191da177e4SLinus Torvalds	select DMA_NONCOHERENT
4201da177e4SLinus Torvalds	select HW_HAS_PCI
4211da177e4SLinus Torvalds	select IRQ_CPU
4221da177e4SLinus Torvalds	select IRQ_MV64340
4231da177e4SLinus Torvalds	select PCI_MARVELL
4241da177e4SLinus Torvalds	select RM7000_CPU_SCACHE
4251da177e4SLinus Torvalds	select SWAP_IO_SPACE
426ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
427ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
4281da177e4SLinus Torvalds	help
4291da177e4SLinus Torvalds	  The Ocelot is a MIPS-based Single Board Computer (SBC) made by
4301da177e4SLinus Torvalds	  Momentum Computer <http://www.momenco.com/>.
4311da177e4SLinus Torvalds
4321da177e4SLinus Torvaldsconfig MOMENCO_OCELOT_3
4331da177e4SLinus Torvalds	bool "Support for Momentum Ocelot-3 board"
4341da177e4SLinus Torvalds	select BOOT_ELF32
4351da177e4SLinus Torvalds	select DMA_NONCOHERENT
4361da177e4SLinus Torvalds	select HW_HAS_PCI
4371da177e4SLinus Torvalds	select IRQ_CPU
4381da177e4SLinus Torvalds	select IRQ_CPU_RM7K
4391da177e4SLinus Torvalds	select IRQ_MV64340
4401da177e4SLinus Torvalds	select PCI_MARVELL
4411da177e4SLinus Torvalds	select RM7000_CPU_SCACHE
4421da177e4SLinus Torvalds	select SWAP_IO_SPACE
443ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
444ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
4451da177e4SLinus Torvalds	help
4461da177e4SLinus Torvalds	  The Ocelot-3 is based off Discovery III System Controller and
4471da177e4SLinus Torvalds	  PMC-Sierra Rm79000 core.
4481da177e4SLinus Torvalds
4491da177e4SLinus Torvaldsconfig MOMENCO_JAGUAR_ATX
4501da177e4SLinus Torvalds	bool "Support for Momentum Jaguar board"
4511da177e4SLinus Torvalds	select BOOT_ELF32
4521da177e4SLinus Torvalds	select DMA_NONCOHERENT
4531da177e4SLinus Torvalds	select HW_HAS_PCI
4541da177e4SLinus Torvalds	select IRQ_CPU
4551da177e4SLinus Torvalds	select IRQ_CPU_RM7K
4561da177e4SLinus Torvalds	select IRQ_MV64340
4571da177e4SLinus Torvalds	select LIMITED_DMA
4581da177e4SLinus Torvalds	select PCI_MARVELL
4591da177e4SLinus Torvalds	select RM7000_CPU_SCACHE
4601da177e4SLinus Torvalds	select SWAP_IO_SPACE
461ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
462ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
4631da177e4SLinus Torvalds	help
4641da177e4SLinus Torvalds	  The Jaguar ATX is a MIPS-based Single Board Computer (SBC) made by
4651da177e4SLinus Torvalds	  Momentum Computer <http://www.momenco.com/>.
4661da177e4SLinus Torvalds
4671da177e4SLinus Torvaldsconfig JAGUAR_DMALOW
4681da177e4SLinus Torvalds	bool "Low DMA Mode"
4691da177e4SLinus Torvalds	depends on MOMENCO_JAGUAR_ATX
4701da177e4SLinus Torvalds	help
4711da177e4SLinus Torvalds	  Select to Y if jump JP5 is set on your board, N otherwise.  Normally
4721da177e4SLinus Torvalds	  the jumper is set, so if you feel unsafe, just say Y.
4731da177e4SLinus Torvalds
4741da177e4SLinus Torvaldsconfig PMC_YOSEMITE
4751da177e4SLinus Torvalds	bool "Support for PMC-Sierra Yosemite eval board"
4761da177e4SLinus Torvalds	select DMA_COHERENT
4771da177e4SLinus Torvalds	select HW_HAS_PCI
4781da177e4SLinus Torvalds	select IRQ_CPU
4791da177e4SLinus Torvalds	select IRQ_CPU_RM7K
4801da177e4SLinus Torvalds	select IRQ_CPU_RM9K
4811da177e4SLinus Torvalds	select SWAP_IO_SPACE
482ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
483ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
4841da177e4SLinus Torvalds	help
4851da177e4SLinus Torvalds	  Yosemite is an evaluation board for the RM9000x2 processor
4861da177e4SLinus Torvalds	  manufactured by PMC-Sierra
4871da177e4SLinus Torvalds
4881da177e4SLinus Torvaldsconfig HYPERTRANSPORT
4891da177e4SLinus Torvalds	bool "Hypertransport Support for PMC-Sierra Yosemite"
4901da177e4SLinus Torvalds	depends on PMC_YOSEMITE
4911da177e4SLinus Torvalds
492bdf21b18SPete Popovconfig PNX8550_V2PCI
493bdf21b18SPete Popov	bool "Support for Philips PNX8550 based Viper2-PCI board"
494bdf21b18SPete Popov	select PNX8550
495bdf21b18SPete Popov	select SYS_SUPPORTS_LITTLE_ENDIAN
496bdf21b18SPete Popov
497bdf21b18SPete Popovconfig PNX8550_JBS
498bdf21b18SPete Popov	bool "Support for Philips PNX8550 based JBS board"
499bdf21b18SPete Popov	select PNX8550
500bdf21b18SPete Popov	select SYS_SUPPORTS_LITTLE_ENDIAN
501bdf21b18SPete Popov
5021da177e4SLinus Torvaldsconfig DDB5074
5031da177e4SLinus Torvalds	bool "Support for NEC DDB Vrc-5074 (EXPERIMENTAL)"
5041da177e4SLinus Torvalds	depends on EXPERIMENTAL
5051da177e4SLinus Torvalds	select DMA_NONCOHERENT
5061da177e4SLinus Torvalds	select HAVE_STD_PC_SERIAL_PORT
5071da177e4SLinus Torvalds	select HW_HAS_PCI
5081da177e4SLinus Torvalds	select IRQ_CPU
5091da177e4SLinus Torvalds	select I8259
5101da177e4SLinus Torvalds	select ISA
511ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
512ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
5131da177e4SLinus Torvalds	help
5141da177e4SLinus Torvalds	  This enables support for the VR5000-based NEC DDB Vrc-5074
5151da177e4SLinus Torvalds	  evaluation board.
5161da177e4SLinus Torvalds
5171da177e4SLinus Torvaldsconfig DDB5476
5181da177e4SLinus Torvalds	bool "Support for NEC DDB Vrc-5476"
5191da177e4SLinus Torvalds	select DMA_NONCOHERENT
5201da177e4SLinus Torvalds	select HAVE_STD_PC_SERIAL_PORT
5211da177e4SLinus Torvalds	select HW_HAS_PCI
5221da177e4SLinus Torvalds	select IRQ_CPU
5231da177e4SLinus Torvalds	select I8259
5241da177e4SLinus Torvalds	select ISA
525ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
526ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
5271da177e4SLinus Torvalds	help
5281da177e4SLinus Torvalds	  This enables support for the R5432-based NEC DDB Vrc-5476
5291da177e4SLinus Torvalds	  evaluation board.
5301da177e4SLinus Torvalds
5311da177e4SLinus Torvalds	  Features : kernel debugging, serial terminal, NFS root fs, on-board
5321da177e4SLinus Torvalds	  ether port USB, AC97, PCI, PCI VGA card & framebuffer console,
5331da177e4SLinus Torvalds	  IDE controller, PS2 keyboard, PS2 mouse, etc.
5341da177e4SLinus Torvalds
5351da177e4SLinus Torvaldsconfig DDB5477
5361da177e4SLinus Torvalds	bool "Support for NEC DDB Vrc-5477"
5371da177e4SLinus Torvalds	select DMA_NONCOHERENT
5381da177e4SLinus Torvalds	select HW_HAS_PCI
5391da177e4SLinus Torvalds	select I8259
5401da177e4SLinus Torvalds	select IRQ_CPU
541ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
542ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
5431da177e4SLinus Torvalds	help
5441da177e4SLinus Torvalds	  This enables support for the R5432-based NEC DDB Vrc-5477,
5451da177e4SLinus Torvalds	  or Rockhopper/SolutionGear boards with R5432/R5500 CPUs.
5461da177e4SLinus Torvalds
5471da177e4SLinus Torvalds	  Features : kernel debugging, serial terminal, NFS root fs, on-board
5481da177e4SLinus Torvalds	  ether port USB, AC97, PCI, etc.
5491da177e4SLinus Torvalds
5501da177e4SLinus Torvaldsconfig DDB5477_BUS_FREQUENCY
5511da177e4SLinus Torvalds	int "bus frequency (in kHZ, 0 for auto-detect)"
5521da177e4SLinus Torvalds	depends on DDB5477
5531da177e4SLinus Torvalds	default 0
5541da177e4SLinus Torvalds
55507119621SRalf Baechleconfig QEMU
55607119621SRalf Baechle	bool "Support for Qemu"
55707119621SRalf Baechle	select DMA_COHERENT
55807119621SRalf Baechle	select GENERIC_ISA_DMA
55907119621SRalf Baechle	select HAVE_STD_PC_SERIAL_PORT
56007119621SRalf Baechle	select I8259
56107119621SRalf Baechle	select ISA
56207119621SRalf Baechle	select SWAP_IO_SPACE
56307119621SRalf Baechle	select SYS_SUPPORTS_32BIT_KERNEL
56407119621SRalf Baechle	select SYS_SUPPORTS_BIG_ENDIAN
565*797798c1SRalf Baechle	select SYS_SUPPORTS_HIGHMEM
56607119621SRalf Baechle	help
56707119621SRalf Baechle	 Qemu is a software emulator which among other architectures also
56807119621SRalf Baechle	 can simulate a MIPS32 4Kc system.  This patch adds support for the
56907119621SRalf Baechle	 system architecture that currently is being simulated by Qemu.  It
57007119621SRalf Baechle	 will eventually be removed again when Qemu has the capability to
57107119621SRalf Baechle	 simulate actual MIPS hardware platforms.  More information on Qemu
57207119621SRalf Baechle	 can be found at http://www.linux-mips.org/wiki/Qemu.
57307119621SRalf Baechle
5741da177e4SLinus Torvaldsconfig SGI_IP22
5751da177e4SLinus Torvalds	bool "Support for SGI IP22 (Indy/Indigo2)"
5761da177e4SLinus Torvalds	select ARC
5771da177e4SLinus Torvalds	select ARC32
5781da177e4SLinus Torvalds	select BOOT_ELF32
5791da177e4SLinus Torvalds	select DMA_NONCOHERENT
5801da177e4SLinus Torvalds	select IP22_CPU_SCACHE
5811da177e4SLinus Torvalds	select IRQ_CPU
5821da177e4SLinus Torvalds	select SWAP_IO_SPACE
583ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
584ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
5851da177e4SLinus Torvalds	help
5861da177e4SLinus Torvalds	  This are the SGI Indy, Challenge S and Indigo2, as well as certain
5871da177e4SLinus Torvalds	  OEM variants like the Tandem CMN B006S. To compile a Linux kernel
5881da177e4SLinus Torvalds	  that runs on these, say Y here.
5891da177e4SLinus Torvalds
5901da177e4SLinus Torvaldsconfig SGI_IP27
5911da177e4SLinus Torvalds	bool "Support for SGI IP27 (Origin200/2000)"
5921da177e4SLinus Torvalds	select ARC
5931da177e4SLinus Torvalds	select ARC64
5941da177e4SLinus Torvalds	select DMA_IP27
5951da177e4SLinus Torvalds	select HW_HAS_PCI
5961da177e4SLinus Torvalds	select PCI_DOMAINS
597ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
5981da177e4SLinus Torvalds	help
5991da177e4SLinus Torvalds	  This are the SGI Origin 200, Origin 2000 and Onyx 2 Graphics
6001da177e4SLinus Torvalds	  workstations.  To compile a Linux kernel that runs on these, say Y
6011da177e4SLinus Torvalds	  here.
6021da177e4SLinus Torvalds
6031da177e4SLinus Torvalds#config SGI_SN0_XXL
6041da177e4SLinus Torvalds#	bool "IP27 XXL"
6051da177e4SLinus Torvalds#	depends on SGI_IP27
6061da177e4SLinus Torvalds#	  This options adds support for userspace processes upto 16TB size.
6071da177e4SLinus Torvalds#	  Normally the limit is just .5TB.
6081da177e4SLinus Torvalds
6091da177e4SLinus Torvaldsconfig SGI_SN0_N_MODE
6101da177e4SLinus Torvalds	bool "IP27 N-Mode"
6111da177e4SLinus Torvalds	depends on SGI_IP27
6121da177e4SLinus Torvalds	help
6131da177e4SLinus Torvalds	  The nodes of Origin 200, Origin 2000 and Onyx 2 systems can be
6141da177e4SLinus Torvalds	  configured in either N-Modes which allows for more nodes or M-Mode
6151da177e4SLinus Torvalds	  which allows for more memory.  Your system is most probably
6161da177e4SLinus Torvalds	  running in M-Mode, so you should say N here.
6171da177e4SLinus Torvalds
6183f22ab27SDave Hansenconfig ARCH_DISCONTIGMEM_ENABLE
6191da177e4SLinus Torvalds	bool
6201da177e4SLinus Torvalds	default y if SGI_IP27
6211da177e4SLinus Torvalds	help
6221da177e4SLinus Torvalds	  Say Y to upport efficient handling of discontiguous physical memory,
6231da177e4SLinus Torvalds	  for architectures which are either NUMA (Non-Uniform Memory Access)
6241da177e4SLinus Torvalds	  or have huge holes in the physical address space for other reasons.
6251da177e4SLinus Torvalds	  See <file:Documentation/vm/numa> for more.
6261da177e4SLinus Torvalds
6271da177e4SLinus Torvaldsconfig NUMA
6281da177e4SLinus Torvalds	bool "NUMA Support"
6291da177e4SLinus Torvalds	depends on SGI_IP27
6301da177e4SLinus Torvalds	help
6311da177e4SLinus Torvalds	  Say Y to compile the kernel to support NUMA (Non-Uniform Memory
6321da177e4SLinus Torvalds	  Access).  This option is for configuring high-end multiprocessor
6331da177e4SLinus Torvalds	  server machines.  If in doubt, say N.
6341da177e4SLinus Torvalds
6351da177e4SLinus Torvaldsconfig MAPPED_KERNEL
6361da177e4SLinus Torvalds	bool "Mapped kernel support"
6371da177e4SLinus Torvalds	depends on SGI_IP27
6381da177e4SLinus Torvalds	help
6391da177e4SLinus Torvalds	  Change the way a Linux kernel is loaded into memory on a MIPS64
6401da177e4SLinus Torvalds	  machine.  This is required in order to support text replication and
6411da177e4SLinus Torvalds	  NUMA.  If you need to understand it, read the source code.
6421da177e4SLinus Torvalds
6431da177e4SLinus Torvaldsconfig REPLICATE_KTEXT
6441da177e4SLinus Torvalds	bool "Kernel text replication support"
6451da177e4SLinus Torvalds	depends on SGI_IP27
6461da177e4SLinus Torvalds	help
6471da177e4SLinus Torvalds	  Say Y here to enable replicating the kernel text across multiple
6481da177e4SLinus Torvalds	  nodes in a NUMA cluster.  This trades memory for speed.
6491da177e4SLinus Torvalds
6501da177e4SLinus Torvaldsconfig REPLICATE_EXHANDLERS
6511da177e4SLinus Torvalds	bool "Exception handler replication support"
6521da177e4SLinus Torvalds	depends on SGI_IP27
6531da177e4SLinus Torvalds	help
6541da177e4SLinus Torvalds	  Say Y here to enable replicating the kernel exception handlers
6551da177e4SLinus Torvalds	  across multiple nodes in a NUMA cluster. This trades memory for
6561da177e4SLinus Torvalds	  speed.
6571da177e4SLinus Torvalds
6581da177e4SLinus Torvaldsconfig SGI_IP32
6591da177e4SLinus Torvalds	bool "Support for SGI IP32 (O2) (EXPERIMENTAL)"
660ed5ba2fbSYoichi Yuasa	depends on EXPERIMENTAL
6611da177e4SLinus Torvalds	select ARC
6621da177e4SLinus Torvalds	select ARC32
6631da177e4SLinus Torvalds	select BOOT_ELF32
6641da177e4SLinus Torvalds	select OWN_DMA
6651da177e4SLinus Torvalds	select DMA_IP32
6661da177e4SLinus Torvalds	select DMA_NONCOHERENT
6675eaf7a21SRalf Baechle	select HAS_TXX9_SERIAL
6681da177e4SLinus Torvalds	select HW_HAS_PCI
6691da177e4SLinus Torvalds	select R5000_CPU_SCACHE
6701da177e4SLinus Torvalds	select RM7000_CPU_SCACHE
671ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
6721da177e4SLinus Torvalds	help
6731da177e4SLinus Torvalds	  If you want this kernel to run on SGI O2 workstation, say Y here.
6741da177e4SLinus Torvalds
675e3ad1c23SPete Popovconfig SOC_AU1200
676e3ad1c23SPete Popov	bool
677e3ad1c23SPete Popov	select SOC_AU1X00
678e3ad1c23SPete Popov
6791da177e4SLinus Torvaldsconfig SOC_AU1X00
6801da177e4SLinus Torvalds	bool "Support for AMD/Alchemy Au1X00 SOCs"
681ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
6821da177e4SLinus Torvalds
6831da177e4SLinus Torvaldschoice
6841da177e4SLinus Torvalds	prompt "Au1X00 SOC Type"
6851da177e4SLinus Torvalds	depends on SOC_AU1X00
6861da177e4SLinus Torvalds	help
6871da177e4SLinus Torvalds	  Say Y here to enable support for one of three AMD/Alchemy
6881da177e4SLinus Torvalds	  SOCs. For additional documentation see www.amd.com.
6891da177e4SLinus Torvalds
6901da177e4SLinus Torvaldsconfig SOC_AU1000
6911da177e4SLinus Torvalds	bool "SOC_AU1000"
6921da177e4SLinus Torvaldsconfig SOC_AU1100
6931da177e4SLinus Torvalds	bool "SOC_AU1100"
6941da177e4SLinus Torvaldsconfig SOC_AU1500
6951da177e4SLinus Torvalds	bool "SOC_AU1500"
6961da177e4SLinus Torvaldsconfig SOC_AU1550
6971da177e4SLinus Torvalds	bool "SOC_AU1550"
6981da177e4SLinus Torvalds
69923fbee9dSRalf Baechleconfig TOSHIBA_RBTX4938
70023fbee9dSRalf Baechle	bool "Support for Toshiba RBTX4938 board"
70123fbee9dSRalf Baechle	select HAVE_STD_PC_SERIAL_PORT
70223fbee9dSRalf Baechle	select DMA_NONCOHERENT
70323fbee9dSRalf Baechle	select GENERIC_ISA_DMA
70423fbee9dSRalf Baechle	select HAS_TXX9_SERIAL
70523fbee9dSRalf Baechle	select HW_HAS_PCI
70623fbee9dSRalf Baechle	select I8259
70723fbee9dSRalf Baechle	select ISA
70823fbee9dSRalf Baechle	select SWAP_IO_SPACE
70923fbee9dSRalf Baechle	select SYS_SUPPORTS_32BIT_KERNEL
71023fbee9dSRalf Baechle	select SYS_SUPPORTS_LITTLE_ENDIAN
71123fbee9dSRalf Baechle	select SYS_SUPPORTS_BIG_ENDIAN
71223fbee9dSRalf Baechle	select TOSHIBA_BOARDS
71323fbee9dSRalf Baechle	help
71423fbee9dSRalf Baechle	  This Toshiba board is based on the TX4938 processor. Say Y here to
71523fbee9dSRalf Baechle	  support this machine type
71623fbee9dSRalf Baechle
7171da177e4SLinus Torvaldsendchoice
7181da177e4SLinus Torvalds
7191da177e4SLinus Torvaldschoice
7201da177e4SLinus Torvalds	prompt "AMD/Alchemy Au1x00 board support"
7211da177e4SLinus Torvalds	depends on SOC_AU1X00
7221da177e4SLinus Torvalds	help
7231da177e4SLinus Torvalds	  These are evaluation boards built by AMD/Alchemy to
7241da177e4SLinus Torvalds	  showcase their Au1X00 Internet Edge Processors. The SOC design
7251da177e4SLinus Torvalds	  is based on the MIPS32 architecture running at 266/400/500MHz
7261da177e4SLinus Torvalds	  with many integrated peripherals. Further information can be
7271da177e4SLinus Torvalds	  found at their website, <http://www.amd.com/>. Say Y here if you
7281da177e4SLinus Torvalds	  wish to build a kernel for this platform.
7291da177e4SLinus Torvalds
7301da177e4SLinus Torvaldsconfig MIPS_PB1000
7311da177e4SLinus Torvalds	bool "PB1000 board"
7321da177e4SLinus Torvalds	depends on SOC_AU1000
7331da177e4SLinus Torvalds	select DMA_NONCOHERENT
7341da177e4SLinus Torvalds	select HW_HAS_PCI
7351da177e4SLinus Torvalds	select SWAP_IO_SPACE
7361da177e4SLinus Torvalds
7371da177e4SLinus Torvaldsconfig MIPS_PB1100
7381da177e4SLinus Torvalds	bool "PB1100 board"
7391da177e4SLinus Torvalds	depends on SOC_AU1100
7401da177e4SLinus Torvalds	select DMA_NONCOHERENT
7411da177e4SLinus Torvalds	select HW_HAS_PCI
7421da177e4SLinus Torvalds	select SWAP_IO_SPACE
7431da177e4SLinus Torvalds
7441da177e4SLinus Torvaldsconfig MIPS_PB1500
7451da177e4SLinus Torvalds	bool "PB1500 board"
7461da177e4SLinus Torvalds	depends on SOC_AU1500
747d8f5d861SPete Popov	select DMA_NONCOHERENT
7481da177e4SLinus Torvalds	select HW_HAS_PCI
7491da177e4SLinus Torvalds
7501da177e4SLinus Torvaldsconfig MIPS_PB1550
7511da177e4SLinus Torvalds	bool "PB1550 board"
7521da177e4SLinus Torvalds	depends on SOC_AU1550
7531da177e4SLinus Torvalds	select DMA_COHERENT
7541da177e4SLinus Torvalds	select HW_HAS_PCI
7551da177e4SLinus Torvalds	select MIPS_DISABLE_OBSOLETE_IDE
7561da177e4SLinus Torvalds
757e3ad1c23SPete Popovconfig MIPS_PB1200
758e3ad1c23SPete Popov	bool "AMD Alchemy PB1200 board"
759e3ad1c23SPete Popov	select SOC_AU1200
760e3ad1c23SPete Popov	select DMA_NONCOHERENT
761e3ad1c23SPete Popov	select MIPS_DISABLE_OBSOLETE_IDE
76281731f79SSteven J. Hill	select SYS_SUPPORTS_BIG_ENDIAN
763*797798c1SRalf Baechle	select SYS_SUPPORTS_HIGHMEM
764*797798c1SRalf Baechle	select SYS_SUPPORTS_HIGHMEM
765*797798c1SRalf Baechle	select SYS_SUPPORTS_HIGHMEM
766*797798c1SRalf Baechle	select SYS_SUPPORTS_HIGHMEM
767e3ad1c23SPete Popov	select SYS_SUPPORTS_LITTLE_ENDIAN
768e3ad1c23SPete Popov
7691da177e4SLinus Torvaldsconfig MIPS_DB1000
7701da177e4SLinus Torvalds	bool "DB1000 board"
7711da177e4SLinus Torvalds	depends on SOC_AU1000
7721da177e4SLinus Torvalds	select DMA_NONCOHERENT
7731da177e4SLinus Torvalds	select HW_HAS_PCI
7741da177e4SLinus Torvalds
7751da177e4SLinus Torvaldsconfig MIPS_DB1100
7761da177e4SLinus Torvalds	bool "DB1100 board"
7771da177e4SLinus Torvalds	depends on SOC_AU1100
7781da177e4SLinus Torvalds	select DMA_NONCOHERENT
7791da177e4SLinus Torvalds
7801da177e4SLinus Torvaldsconfig MIPS_DB1500
7811da177e4SLinus Torvalds	bool "DB1500 board"
7821da177e4SLinus Torvalds	depends on SOC_AU1500
783d8f5d861SPete Popov	select DMA_NONCOHERENT
7841da177e4SLinus Torvalds	select HW_HAS_PCI
7851da177e4SLinus Torvalds	select MIPS_DISABLE_OBSOLETE_IDE
7861da177e4SLinus Torvalds
7871da177e4SLinus Torvaldsconfig MIPS_DB1550
7881da177e4SLinus Torvalds	bool "DB1550 board"
7891da177e4SLinus Torvalds	depends on SOC_AU1550
7901da177e4SLinus Torvalds	select HW_HAS_PCI
791d8f5d861SPete Popov	select DMA_NONCOHERENT
7921da177e4SLinus Torvalds	select MIPS_DISABLE_OBSOLETE_IDE
7931da177e4SLinus Torvalds
7941da177e4SLinus Torvaldsconfig MIPS_BOSPORUS
7951da177e4SLinus Torvalds	bool "Bosporus board"
7961da177e4SLinus Torvalds	depends on SOC_AU1500
7971da177e4SLinus Torvalds	select DMA_NONCOHERENT
7981da177e4SLinus Torvalds
799e3ad1c23SPete Popovconfig MIPS_DB1200
800e3ad1c23SPete Popov	bool "AMD Alchemy DB1200 board"
801e3ad1c23SPete Popov	select SOC_AU1200
802e3ad1c23SPete Popov	select DMA_NONCOHERENT
803e3ad1c23SPete Popov	select MIPS_DISABLE_OBSOLETE_IDE
804e3ad1c23SPete Popov	select SYS_SUPPORTS_LITTLE_ENDIAN
805e3ad1c23SPete Popov
8061da177e4SLinus Torvaldsconfig MIPS_MIRAGE
8071da177e4SLinus Torvalds	bool "Mirage board"
8081da177e4SLinus Torvalds	depends on SOC_AU1500
8091da177e4SLinus Torvalds	select DMA_NONCOHERENT
8101da177e4SLinus Torvalds
8111da177e4SLinus Torvaldsconfig MIPS_XXS1500
8121da177e4SLinus Torvalds	bool "MyCable XXS1500 board"
8131da177e4SLinus Torvalds	depends on SOC_AU1500
8141da177e4SLinus Torvalds	select DMA_NONCOHERENT
8151da177e4SLinus Torvalds
8161da177e4SLinus Torvaldsconfig MIPS_MTX1
8171da177e4SLinus Torvalds	bool "4G Systems MTX-1 board"
8181da177e4SLinus Torvalds	depends on SOC_AU1500
8191da177e4SLinus Torvalds	select HW_HAS_PCI
8201da177e4SLinus Torvalds	select DMA_NONCOHERENT
8211da177e4SLinus Torvalds
8221da177e4SLinus Torvaldsendchoice
8231da177e4SLinus Torvalds
8241da177e4SLinus Torvaldsconfig SNI_RM200_PCI
8251da177e4SLinus Torvalds	bool "Support for SNI RM200 PCI"
8261da177e4SLinus Torvalds	select ARC
8271da177e4SLinus Torvalds	select ARC32
8281da177e4SLinus Torvalds	select BOOT_ELF32
8291da177e4SLinus Torvalds	select DMA_NONCOHERENT
8301da177e4SLinus Torvalds	select GENERIC_ISA_DMA
8311da177e4SLinus Torvalds	select HAVE_STD_PC_SERIAL_PORT
8321da177e4SLinus Torvalds	select HW_HAS_PCI
8331da177e4SLinus Torvalds	select I8259
8341da177e4SLinus Torvalds	select ISA
835ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
836ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
837*797798c1SRalf Baechle	select SYS_SUPPORTS_HIGHMEM
8381da177e4SLinus Torvalds	help
8391da177e4SLinus Torvalds	  The SNI RM200 PCI was a MIPS-based platform manufactured by Siemens
8401da177e4SLinus Torvalds	  Nixdorf Informationssysteme (SNI), parent company of Pyramid
8411da177e4SLinus Torvalds	  Technology and now in turn merged with Fujitsu.  Say Y here to
8421da177e4SLinus Torvalds	  support this machine type.
8431da177e4SLinus Torvalds
8441da177e4SLinus Torvaldsconfig TOSHIBA_RBTX4927
8451da177e4SLinus Torvalds	bool "Support for Toshiba TBTX49[23]7 board"
8461da177e4SLinus Torvalds	select DMA_NONCOHERENT
8471da177e4SLinus Torvalds	select HAS_TXX9_SERIAL
8481da177e4SLinus Torvalds	select HW_HAS_PCI
8491da177e4SLinus Torvalds	select I8259
8501da177e4SLinus Torvalds	select ISA
8511da177e4SLinus Torvalds	select SWAP_IO_SPACE
852ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
853ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
8541da177e4SLinus Torvalds	help
8551da177e4SLinus Torvalds	  This Toshiba board is based on the TX4927 processor. Say Y here to
8561da177e4SLinus Torvalds	  support this machine type
8571da177e4SLinus Torvalds
8581da177e4SLinus Torvaldsconfig TOSHIBA_FPCIB0
8591da177e4SLinus Torvalds	bool "FPCIB0 Backplane Support"
8601da177e4SLinus Torvalds	depends on TOSHIBA_RBTX4927
8611da177e4SLinus Torvalds
86229c48699SRalf Baechlesource "arch/mips/sgi-ip27/Kconfig"
86338b18f72SRalf Baechlesource "arch/mips/sibyte/Kconfig"
86423fbee9dSRalf Baechlesource "arch/mips/tx4938/Kconfig"
865bdf21b18SPete Popovsource "arch/mips/philips/pnx8550/common/Kconfig"
86638b18f72SRalf Baechle
8671da177e4SLinus Torvaldsconfig RWSEM_GENERIC_SPINLOCK
8681da177e4SLinus Torvalds	bool
8691da177e4SLinus Torvalds	default y
8701da177e4SLinus Torvalds
8711da177e4SLinus Torvaldsconfig RWSEM_XCHGADD_ALGORITHM
8721da177e4SLinus Torvalds	bool
8735eaf7a21SRalf Baechle	select HAS_TXX9_SERIAL
8741da177e4SLinus Torvalds
8751da177e4SLinus Torvaldsconfig GENERIC_CALIBRATE_DELAY
8761da177e4SLinus Torvalds	bool
8771da177e4SLinus Torvalds	default y
8781da177e4SLinus Torvalds
8791da177e4SLinus Torvalds#
8801da177e4SLinus Torvalds# Select some configuration options automatically based on user selections.
8811da177e4SLinus Torvalds#
8821da177e4SLinus Torvaldsconfig ARC
8831da177e4SLinus Torvalds	bool
8841da177e4SLinus Torvalds	depends on SNI_RM200_PCI || SGI_IP32 || SGI_IP27 || SGI_IP22 || MIPS_MAGNUM_4000 || OLIVETTI_M700 || ACER_PICA_61
8851da177e4SLinus Torvalds	default y
8861da177e4SLinus Torvalds
8871da177e4SLinus Torvaldsconfig DMA_COHERENT
8881da177e4SLinus Torvalds	bool
8891da177e4SLinus Torvalds
8901da177e4SLinus Torvaldsconfig DMA_IP27
8911da177e4SLinus Torvalds	bool
8921da177e4SLinus Torvalds
8934ce588cdSRalf Baechleconfig DMA_IP32
8944ce588cdSRalf Baechle	bool
8954ce588cdSRalf Baechle	select DMA_NEED_PCI_MAP_STATE
8964ce588cdSRalf Baechle
8971da177e4SLinus Torvaldsconfig DMA_NONCOHERENT
8981da177e4SLinus Torvalds	bool
8994ce588cdSRalf Baechle	select DMA_NEED_PCI_MAP_STATE
9004ce588cdSRalf Baechle
9014ce588cdSRalf Baechleconfig DMA_NEED_PCI_MAP_STATE
9024ce588cdSRalf Baechle	bool
9031da177e4SLinus Torvalds
9041da177e4SLinus Torvaldsconfig EARLY_PRINTK
9051da177e4SLinus Torvalds	bool
9061da177e4SLinus Torvalds	depends on MACH_DECSTATION
9071da177e4SLinus Torvalds	default y
9081da177e4SLinus Torvalds
9091da177e4SLinus Torvaldsconfig GENERIC_ISA_DMA
9101da177e4SLinus Torvalds	bool
9111da177e4SLinus Torvalds	depends on SNI_RM200_PCI || MIPS_MAGNUM_4000 || OLIVETTI_M700 || ACER_PICA_61 || MIPS_MALTA
9121da177e4SLinus Torvalds	default y
9131da177e4SLinus Torvalds
9141da177e4SLinus Torvaldsconfig I8259
9151da177e4SLinus Torvalds	bool
9161da177e4SLinus Torvalds	depends on SNI_RM200_PCI || DDB5477 || DDB5476 || DDB5074 || MACH_JAZZ || MIPS_MALTA || MIPS_COBALT
9171da177e4SLinus Torvalds	default y
9181da177e4SLinus Torvalds
9191da177e4SLinus Torvaldsconfig LIMITED_DMA
9201da177e4SLinus Torvalds	bool
9211da177e4SLinus Torvalds	select HIGHMEM
922*797798c1SRalf Baechle	select SYS_SUPPORTS_HIGHMEM
9231da177e4SLinus Torvalds
9241da177e4SLinus Torvaldsconfig MIPS_BONITO64
9251da177e4SLinus Torvalds	bool
9261da177e4SLinus Torvalds	depends on MIPS_ATLAS || MIPS_MALTA
9271da177e4SLinus Torvalds	default y
9281da177e4SLinus Torvalds
9291da177e4SLinus Torvaldsconfig MIPS_MSC
9301da177e4SLinus Torvalds	bool
9311da177e4SLinus Torvalds	depends on MIPS_ATLAS || MIPS_MALTA
9321da177e4SLinus Torvalds	default y
9331da177e4SLinus Torvalds
9341da177e4SLinus Torvaldsconfig MIPS_NILE4
9351da177e4SLinus Torvalds	bool
9361da177e4SLinus Torvalds	depends on LASAT
9371da177e4SLinus Torvalds	default y
9381da177e4SLinus Torvalds
9391da177e4SLinus Torvaldsconfig MIPS_DISABLE_OBSOLETE_IDE
9401da177e4SLinus Torvalds	bool
9411da177e4SLinus Torvalds
9421da177e4SLinus Torvaldsconfig CPU_LITTLE_ENDIAN
9431da177e4SLinus Torvalds	bool "Generate little endian code"
944ab1418a3SAdrian Bunk	default y if ACER_PICA_61 || CASIO_E55 || DDB5074 || DDB5476 || DDB5477 || MACH_DECSTATION || IBM_WORKPAD || LASAT || MIPS_COBALT || MIPS_ITE8172 || MIPS_IVR || SOC_AU1X00 || OLIVETTI_M700 || SNI_RM200_PCI || VICTOR_MPC30X || ZAO_CAPCELLA
9451da177e4SLinus Torvalds	default n if MIPS_EV64120 || MIPS_EV96100 || MOMENCO_OCELOT || MOMENCO_OCELOT_G || SGI_IP22 || SGI_IP27 || SGI_IP32 || TOSHIBA_JMR3927
9461da177e4SLinus Torvalds	help
9471da177e4SLinus Torvalds	  Some MIPS machines can be configured for either little or big endian
9481da177e4SLinus Torvalds	  byte order. These modes require different kernels. Say Y if your
9491da177e4SLinus Torvalds	  machine is little endian, N if it's a big endian machine.
9501da177e4SLinus Torvalds
9511da177e4SLinus Torvaldsconfig IRQ_CPU
9521da177e4SLinus Torvalds	bool
9531da177e4SLinus Torvalds
9541da177e4SLinus Torvaldsconfig IRQ_CPU_RM7K
9551da177e4SLinus Torvalds	bool
9561da177e4SLinus Torvalds
9571da177e4SLinus Torvaldsconfig IRQ_MV64340
9581da177e4SLinus Torvalds	bool
9591da177e4SLinus Torvalds
9601da177e4SLinus Torvaldsconfig DDB5XXX_COMMON
9611da177e4SLinus Torvalds	bool
9621da177e4SLinus Torvalds	depends on DDB5074 || DDB5476 || DDB5477
9631da177e4SLinus Torvalds	default y
9641da177e4SLinus Torvalds
9651da177e4SLinus Torvaldsconfig MIPS_BOARDS_GEN
9661da177e4SLinus Torvalds	bool
9671da177e4SLinus Torvalds	depends on MIPS_ATLAS || MIPS_MALTA || MIPS_SEAD
9681da177e4SLinus Torvalds	default y
9691da177e4SLinus Torvalds
9701da177e4SLinus Torvaldsconfig MIPS_GT64111
9711da177e4SLinus Torvalds	bool
9721da177e4SLinus Torvalds	depends on MIPS_COBALT
9731da177e4SLinus Torvalds	default y
9741da177e4SLinus Torvalds
9751da177e4SLinus Torvaldsconfig MIPS_GT64120
9761da177e4SLinus Torvalds	bool
9771da177e4SLinus Torvalds	depends on MIPS_EV64120 || MIPS_EV96100 || LASAT || MIPS_ATLAS || MIPS_MALTA || MOMENCO_OCELOT
9781da177e4SLinus Torvalds	default y
9791da177e4SLinus Torvalds
9801da177e4SLinus Torvaldsconfig MIPS_TX3927
9811da177e4SLinus Torvalds	bool
9821da177e4SLinus Torvalds	depends on TOSHIBA_JMR3927
9831da177e4SLinus Torvalds	select HAS_TXX9_SERIAL
9841da177e4SLinus Torvalds	default y
9851da177e4SLinus Torvalds
9861da177e4SLinus Torvaldsconfig PCI_MARVELL
9871da177e4SLinus Torvalds	bool
9881da177e4SLinus Torvalds
9891da177e4SLinus Torvaldsconfig ITE_BOARD_GEN
9901da177e4SLinus Torvalds	bool
9911da177e4SLinus Torvalds	depends on MIPS_IVR || MIPS_ITE8172
9921da177e4SLinus Torvalds	default y
9931da177e4SLinus Torvalds
994bdf21b18SPete Popovconfig PNX8550
995bdf21b18SPete Popov	bool
996bdf21b18SPete Popov	select SOC_PNX8550
997bdf21b18SPete Popov
998bdf21b18SPete Popovconfig SOC_PNX8550
999bdf21b18SPete Popov	bool
1000bdf21b18SPete Popov	select SYS_SUPPORTS_32BIT_KERNEL
1001bdf21b18SPete Popov	select DMA_NONCOHERENT
1002bdf21b18SPete Popov	select HW_HAS_PCI
1003bdf21b18SPete Popov
10041da177e4SLinus Torvaldsconfig SWAP_IO_SPACE
10051da177e4SLinus Torvalds	bool
10061da177e4SLinus Torvalds
10071da177e4SLinus Torvalds#
10081da177e4SLinus Torvalds# Unfortunately not all GT64120 systems run the chip at the same clock.
10091da177e4SLinus Torvalds# As the user for the clock rate and try to minimize the available options.
10101da177e4SLinus Torvalds#
10111da177e4SLinus Torvaldschoice
10121da177e4SLinus Torvalds	prompt "Galileo Chip Clock"
10131da177e4SLinus Torvalds	#default SYSCLK_83 if MIPS_EV64120
10141da177e4SLinus Torvalds	depends on MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G
10151da177e4SLinus Torvalds	default SYSCLK_83 if MIPS_EV64120
10161da177e4SLinus Torvalds	default SYSCLK_100 if MOMENCO_OCELOT || MOMENCO_OCELOT_G
10171da177e4SLinus Torvalds
10181da177e4SLinus Torvaldsconfig SYSCLK_75
10191da177e4SLinus Torvalds	bool "75" if MIPS_EV64120
10201da177e4SLinus Torvalds
10211da177e4SLinus Torvaldsconfig SYSCLK_83
10221da177e4SLinus Torvalds	bool "83.3" if MIPS_EV64120
10231da177e4SLinus Torvalds
10241da177e4SLinus Torvaldsconfig SYSCLK_100
10251da177e4SLinus Torvalds	bool "100" if MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G
10261da177e4SLinus Torvalds
10271da177e4SLinus Torvaldsendchoice
10281da177e4SLinus Torvalds
10291da177e4SLinus Torvaldsconfig AU1X00_USB_DEVICE
10301da177e4SLinus Torvalds	bool
10311da177e4SLinus Torvalds	depends on MIPS_PB1500 || MIPS_PB1100 || MIPS_PB1000
10321da177e4SLinus Torvalds	default n
10331da177e4SLinus Torvalds
10341da177e4SLinus Torvaldsconfig MIPS_GT96100
10351da177e4SLinus Torvalds	bool
10361da177e4SLinus Torvalds	depends on MIPS_EV96100
10371da177e4SLinus Torvalds	default y
10381da177e4SLinus Torvalds	help
10391da177e4SLinus Torvalds	  Say Y here to support the Galileo Technology GT96100 communications
10401da177e4SLinus Torvalds	  controller card.  There is a web page at <http://www.galileot.com/>.
10411da177e4SLinus Torvalds
10421da177e4SLinus Torvaldsconfig IT8172_CIR
10431da177e4SLinus Torvalds	bool
10441da177e4SLinus Torvalds	depends on MIPS_ITE8172 || MIPS_IVR
10451da177e4SLinus Torvalds	default y
10461da177e4SLinus Torvalds
10471da177e4SLinus Torvaldsconfig IT8712
10481da177e4SLinus Torvalds	bool
10491da177e4SLinus Torvalds	depends on MIPS_ITE8172
10501da177e4SLinus Torvalds	default y
10511da177e4SLinus Torvalds
10521da177e4SLinus Torvaldsconfig BOOT_ELF32
10531da177e4SLinus Torvalds	bool
10541da177e4SLinus Torvalds	depends on MACH_DECSTATION || MIPS_ATLAS || MIPS_MALTA || MOMENCO_JAGUAR_ATX || MOMENCO_OCELOT_3 || SIBYTE_SB1xxx_SOC || SGI_IP32 || SGI_IP22 || SNI_RM200_PCI
10551da177e4SLinus Torvalds	default y
10561da177e4SLinus Torvalds
10571da177e4SLinus Torvaldsconfig MIPS_L1_CACHE_SHIFT
10581da177e4SLinus Torvalds	int
10591da177e4SLinus Torvalds	default "4" if MACH_DECSTATION
10601da177e4SLinus Torvalds	default "7" if SGI_IP27
10611da177e4SLinus Torvalds	default "5"
10621da177e4SLinus Torvalds
10631da177e4SLinus Torvaldsconfig ARC32
10641da177e4SLinus Torvalds	bool
10651da177e4SLinus Torvalds	depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP22 || SGI_IP32
10661da177e4SLinus Torvalds	default y
10671da177e4SLinus Torvalds
10681da177e4SLinus Torvaldsconfig HAVE_STD_PC_SERIAL_PORT
10691da177e4SLinus Torvalds	bool
10701da177e4SLinus Torvalds
10711da177e4SLinus Torvaldsconfig ARC_CONSOLE
10721da177e4SLinus Torvalds	bool "ARC console support"
10731da177e4SLinus Torvalds	depends on SGI_IP22 || SNI_RM200_PCI
10741da177e4SLinus Torvalds
10751da177e4SLinus Torvaldsconfig ARC_MEMORY
10761da177e4SLinus Torvalds	bool
10771da177e4SLinus Torvalds	depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP32
10781da177e4SLinus Torvalds	default y
10791da177e4SLinus Torvalds
10801da177e4SLinus Torvaldsconfig ARC_PROMLIB
10811da177e4SLinus Torvalds	bool
10821da177e4SLinus Torvalds	depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP22 || SGI_IP32
10831da177e4SLinus Torvalds	default y
10841da177e4SLinus Torvalds
10851da177e4SLinus Torvaldsconfig ARC64
10861da177e4SLinus Torvalds	bool
10871da177e4SLinus Torvalds	depends on SGI_IP27
10881da177e4SLinus Torvalds	default y
10891da177e4SLinus Torvalds
10901da177e4SLinus Torvaldsconfig BOOT_ELF64
10911da177e4SLinus Torvalds	bool
10921da177e4SLinus Torvalds	depends on SGI_IP27
10931da177e4SLinus Torvalds	default y
10941da177e4SLinus Torvalds
10951da177e4SLinus Torvalds#config MAPPED_PCI_IO y
10961da177e4SLinus Torvalds#	bool
10971da177e4SLinus Torvalds#	depends on SGI_IP27
10981da177e4SLinus Torvalds#	default y
10991da177e4SLinus Torvalds
11001da177e4SLinus Torvaldsconfig TOSHIBA_BOARDS
11011da177e4SLinus Torvalds	bool
11021da177e4SLinus Torvalds	depends on TOSHIBA_JMR3927 || TOSHIBA_RBTX4927
11031da177e4SLinus Torvalds	default y
11041da177e4SLinus Torvalds
11051da177e4SLinus Torvaldsendmenu
11061da177e4SLinus Torvalds
11071da177e4SLinus Torvaldsmenu "CPU selection"
11081da177e4SLinus Torvalds
11091da177e4SLinus Torvaldschoice
11101da177e4SLinus Torvalds	prompt "CPU type"
11111da177e4SLinus Torvalds	default CPU_R4X00
11121da177e4SLinus Torvalds
11136e760c8dSRalf Baechleconfig CPU_MIPS32_R1
11146e760c8dSRalf Baechle	bool "MIPS32 Release 1"
11156e760c8dSRalf Baechle	select CPU_HAS_PREFETCH
1116*797798c1SRalf Baechle	select CPU_SUPPORTS_32BIT_KERNEL
11176e760c8dSRalf Baechle	help
11181e5f1caaSRalf Baechle	  Choose this option to build a kernel for release 2 or later of the
11191e5f1caaSRalf Baechle	  MIPS32 architecture.  Most modern embedded systems with a 32-bit
11201e5f1caaSRalf Baechle	  MIPS processor are based on a MIPS32 processor.  If you know the
11211e5f1caaSRalf Baechle	  specific type of processor in your system, choose those that one
11221e5f1caaSRalf Baechle	  otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
11231e5f1caaSRalf Baechle	  Release 2 of the MIPS32 architecture is available since several
11241e5f1caaSRalf Baechle	  years so chances are you even have a MIPS32 Release 2 processor
11251e5f1caaSRalf Baechle	  in which case you should choose CPU_MIPS32_R2 instead for better
11261e5f1caaSRalf Baechle	  performance.
11271e5f1caaSRalf Baechle
11281e5f1caaSRalf Baechleconfig CPU_MIPS32_R2
11291e5f1caaSRalf Baechle	bool "MIPS32 Release 2"
11301e5f1caaSRalf Baechle	select CPU_HAS_PREFETCH
1131*797798c1SRalf Baechle	select CPU_SUPPORTS_32BIT_KERNEL
11321e5f1caaSRalf Baechle	help
11336e760c8dSRalf Baechle	  Choose this option to build a kernel for release 1 or later of the
11346e760c8dSRalf Baechle	  MIPS32 architecture.  Most modern embedded systems with a 32-bit
11356e760c8dSRalf Baechle	  MIPS processor are based on a MIPS32 processor.  If you know the
11366e760c8dSRalf Baechle	  specific type of processor in your system, choose those that one
11376e760c8dSRalf Baechle	  otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
11381da177e4SLinus Torvalds
11396e760c8dSRalf Baechleconfig CPU_MIPS64_R1
11406e760c8dSRalf Baechle	bool "MIPS64 Release 1"
1141*797798c1SRalf Baechle	select CPU_HAS_PREFETCH
1142ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1143ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11446e760c8dSRalf Baechle	help
11456e760c8dSRalf Baechle	  Choose this option to build a kernel for release 1 or later of the
11466e760c8dSRalf Baechle	  MIPS64 architecture.  Many modern embedded systems with a 64-bit
11476e760c8dSRalf Baechle	  MIPS processor are based on a MIPS64 processor.  If you know the
11486e760c8dSRalf Baechle	  specific type of processor in your system, choose those that one
11496e760c8dSRalf Baechle	  otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
11501e5f1caaSRalf Baechle	  Release 2 of the MIPS64 architecture is available since several
11511e5f1caaSRalf Baechle	  years so chances are you even have a MIPS64 Release 2 processor
11521e5f1caaSRalf Baechle	  in which case you should choose CPU_MIPS64_R2 instead for better
11531e5f1caaSRalf Baechle	  performance.
11541e5f1caaSRalf Baechle
11551e5f1caaSRalf Baechleconfig CPU_MIPS64_R2
11561e5f1caaSRalf Baechle	bool "MIPS64 Release 2"
1157*797798c1SRalf Baechle	select CPU_HAS_PREFETCH
11581e5f1caaSRalf Baechle	select CPU_SUPPORTS_32BIT_KERNEL
11591e5f1caaSRalf Baechle	select CPU_SUPPORTS_64BIT_KERNEL
11601e5f1caaSRalf Baechle	help
11611e5f1caaSRalf Baechle	  Choose this option to build a kernel for release 2 or later of the
11621e5f1caaSRalf Baechle	  MIPS64 architecture.  Many modern embedded systems with a 64-bit
11631e5f1caaSRalf Baechle	  MIPS processor are based on a MIPS64 processor.  If you know the
11641e5f1caaSRalf Baechle	  specific type of processor in your system, choose those that one
11651e5f1caaSRalf Baechle	  otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
11661da177e4SLinus Torvalds
11671da177e4SLinus Torvaldsconfig CPU_R3000
11681da177e4SLinus Torvalds	bool "R3000"
1169ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1170*797798c1SRalf Baechle	select CPU_SUPPORTS_HIGHMEM
11711da177e4SLinus Torvalds	help
11721da177e4SLinus Torvalds	  Please make sure to pick the right CPU type. Linux/MIPS is not
11731da177e4SLinus Torvalds	  designed to be generic, i.e. Kernels compiled for R3000 CPUs will
11741da177e4SLinus Torvalds	  *not* work on R4000 machines and vice versa.  However, since most
11751da177e4SLinus Torvalds	  of the supported machines have an R4000 (or similar) CPU, R4x00
11761da177e4SLinus Torvalds	  might be a safe bet.  If the resulting kernel does not work,
11771da177e4SLinus Torvalds	  try to recompile with R3000.
11781da177e4SLinus Torvalds
11791da177e4SLinus Torvaldsconfig CPU_TX39XX
11801da177e4SLinus Torvalds	bool "R39XX"
1181ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
11821da177e4SLinus Torvalds
11831da177e4SLinus Torvaldsconfig CPU_VR41XX
11841da177e4SLinus Torvalds	bool "R41xx"
1185ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1186ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11871da177e4SLinus Torvalds	help
11881da177e4SLinus Torvalds	  The options selects support for the NEC VR41xx series of processors.
11891da177e4SLinus Torvalds	  Only choose this option if you have one of these processors as a
11901da177e4SLinus Torvalds	  kernel built with this option will not run on any other type of
11911da177e4SLinus Torvalds	  processor or vice versa.
11921da177e4SLinus Torvalds
11931da177e4SLinus Torvaldsconfig CPU_R4300
11941da177e4SLinus Torvalds	bool "R4300"
1195ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1196ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11971da177e4SLinus Torvalds	help
11981da177e4SLinus Torvalds	  MIPS Technologies R4300-series processors.
11991da177e4SLinus Torvalds
12001da177e4SLinus Torvaldsconfig CPU_R4X00
12011da177e4SLinus Torvalds	bool "R4x00"
1202ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1203ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12041da177e4SLinus Torvalds	help
12051da177e4SLinus Torvalds	  MIPS Technologies R4000-series processors other than 4300, including
12061da177e4SLinus Torvalds	  the R4000, R4400, R4600, and 4700.
12071da177e4SLinus Torvalds
12081da177e4SLinus Torvaldsconfig CPU_TX49XX
12091da177e4SLinus Torvalds	bool "R49XX"
1210ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1211ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12121da177e4SLinus Torvalds
12131da177e4SLinus Torvaldsconfig CPU_R5000
12141da177e4SLinus Torvalds	bool "R5000"
1215ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1216ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12171da177e4SLinus Torvalds	help
12181da177e4SLinus Torvalds	  MIPS Technologies R5000-series processors other than the Nevada.
12191da177e4SLinus Torvalds
12201da177e4SLinus Torvaldsconfig CPU_R5432
12211da177e4SLinus Torvalds	bool "R5432"
12221da177e4SLinus Torvalds
12231da177e4SLinus Torvaldsconfig CPU_R6000
12241da177e4SLinus Torvalds	bool "R6000"
1225ed5ba2fbSYoichi Yuasa	depends on EXPERIMENTAL
1226ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
12271da177e4SLinus Torvalds	help
12281da177e4SLinus Torvalds	  MIPS Technologies R6000 and R6000A series processors.  Note these
12291da177e4SLinus Torvalds	  processors are extremly rare and the support for them is incomplete.
12301da177e4SLinus Torvalds
12311da177e4SLinus Torvaldsconfig CPU_NEVADA
12321da177e4SLinus Torvalds	bool "RM52xx"
1233ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1234ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12351da177e4SLinus Torvalds	help
12361da177e4SLinus Torvalds	  QED / PMC-Sierra RM52xx-series ("Nevada") processors.
12371da177e4SLinus Torvalds
12381da177e4SLinus Torvaldsconfig CPU_R8000
12391da177e4SLinus Torvalds	bool "R8000"
1240ed5ba2fbSYoichi Yuasa	depends on EXPERIMENTAL
1241ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12421da177e4SLinus Torvalds	help
12431da177e4SLinus Torvalds	  MIPS Technologies R8000 processors.  Note these processors are
12441da177e4SLinus Torvalds	  uncommon and the support for them is incomplete.
12451da177e4SLinus Torvalds
12461da177e4SLinus Torvaldsconfig CPU_R10000
12471da177e4SLinus Torvalds	bool "R10000"
1248ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1249ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
1250*797798c1SRalf Baechle	select CPU_SUPPORTS_HIGHMEM
12511da177e4SLinus Torvalds	help
12521da177e4SLinus Torvalds	  MIPS Technologies R10000-series processors.
12531da177e4SLinus Torvalds
12541da177e4SLinus Torvaldsconfig CPU_RM7000
12551da177e4SLinus Torvalds	bool "RM7000"
1256ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1257ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
1258*797798c1SRalf Baechle	select CPU_SUPPORTS_HIGHMEM
12591da177e4SLinus Torvalds
12601da177e4SLinus Torvaldsconfig CPU_RM9000
12611da177e4SLinus Torvalds	bool "RM9000"
1262ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1263ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
1264*797798c1SRalf Baechle	select CPU_SUPPORTS_HIGHMEM
12651da177e4SLinus Torvalds
12661da177e4SLinus Torvaldsconfig CPU_SB1
12671da177e4SLinus Torvalds	bool "SB1"
1268ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1269ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
1270*797798c1SRalf Baechle	select CPU_SUPPORTS_HIGHMEM
12711da177e4SLinus Torvalds
12721da177e4SLinus Torvaldsendchoice
12731da177e4SLinus Torvalds
12741da177e4SLinus Torvaldschoice
12751da177e4SLinus Torvalds	prompt "Kernel page size"
12761da177e4SLinus Torvalds	default PAGE_SIZE_4KB
12771da177e4SLinus Torvalds
12781da177e4SLinus Torvaldsconfig PAGE_SIZE_4KB
12791da177e4SLinus Torvalds	bool "4kB"
12801da177e4SLinus Torvalds	help
12811da177e4SLinus Torvalds	 This option select the standard 4kB Linux page size.  On some
12821da177e4SLinus Torvalds	 R3000-family processors this is the only available page size.  Using
12831da177e4SLinus Torvalds	 4kB page size will minimize memory consumption and is therefore
12841da177e4SLinus Torvalds	 recommended for low memory systems.
12851da177e4SLinus Torvalds
12861da177e4SLinus Torvaldsconfig PAGE_SIZE_8KB
12871da177e4SLinus Torvalds	bool "8kB"
12881da177e4SLinus Torvalds	depends on EXPERIMENTAL && CPU_R8000
12891da177e4SLinus Torvalds	help
12901da177e4SLinus Torvalds	  Using 8kB page size will result in higher performance kernel at
12911da177e4SLinus Torvalds	  the price of higher memory consumption.  This option is available
12921da177e4SLinus Torvalds	  only on the R8000 processor.  Not that at the time of this writing
12931da177e4SLinus Torvalds	  this option is still high experimental; there are also issues with
12941da177e4SLinus Torvalds	  compatibility of user applications.
12951da177e4SLinus Torvalds
12961da177e4SLinus Torvaldsconfig PAGE_SIZE_16KB
12971da177e4SLinus Torvalds	bool "16kB"
12981da177e4SLinus Torvalds	depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX
12991da177e4SLinus Torvalds	help
13001da177e4SLinus Torvalds	  Using 16kB page size will result in higher performance kernel at
13011da177e4SLinus Torvalds	  the price of higher memory consumption.  This option is available on
13021da177e4SLinus Torvalds	  all non-R3000 family processor.  Not that at the time of this
13031da177e4SLinus Torvalds	  writing this option is still high experimental; there are also
13041da177e4SLinus Torvalds	  issues with compatibility of user applications.
13051da177e4SLinus Torvalds
13061da177e4SLinus Torvaldsconfig PAGE_SIZE_64KB
13071da177e4SLinus Torvalds	bool "64kB"
13081da177e4SLinus Torvalds	depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX
13091da177e4SLinus Torvalds	help
13101da177e4SLinus Torvalds	  Using 64kB page size will result in higher performance kernel at
13111da177e4SLinus Torvalds	  the price of higher memory consumption.  This option is available on
13121da177e4SLinus Torvalds	  all non-R3000 family processor.  Not that at the time of this
13131da177e4SLinus Torvalds	  writing this option is still high experimental; there are also
13141da177e4SLinus Torvalds	  issues with compatibility of user applications.
13151da177e4SLinus Torvalds
13161da177e4SLinus Torvaldsendchoice
13171da177e4SLinus Torvalds
13181da177e4SLinus Torvaldsconfig BOARD_SCACHE
13191da177e4SLinus Torvalds	bool
13201da177e4SLinus Torvalds
13211da177e4SLinus Torvaldsconfig IP22_CPU_SCACHE
13221da177e4SLinus Torvalds	bool
13231da177e4SLinus Torvalds	select BOARD_SCACHE
13241da177e4SLinus Torvalds
13251da177e4SLinus Torvaldsconfig R5000_CPU_SCACHE
13261da177e4SLinus Torvalds	bool
13271da177e4SLinus Torvalds	select BOARD_SCACHE
13281da177e4SLinus Torvalds
13291da177e4SLinus Torvaldsconfig RM7000_CPU_SCACHE
13301da177e4SLinus Torvalds	bool
13311da177e4SLinus Torvalds	select BOARD_SCACHE
13321da177e4SLinus Torvalds
13331da177e4SLinus Torvaldsconfig SIBYTE_DMA_PAGEOPS
13341da177e4SLinus Torvalds	bool "Use DMA to clear/copy pages"
13351da177e4SLinus Torvalds	depends on CPU_SB1
13361da177e4SLinus Torvalds	help
13371da177e4SLinus Torvalds	  Instead of using the CPU to zero and copy pages, use a Data Mover
13381da177e4SLinus Torvalds	  channel.  These DMA channels are otherwise unused by the standard
13391da177e4SLinus Torvalds	  SiByte Linux port.  Seems to give a small performance benefit.
13401da177e4SLinus Torvalds
13411da177e4SLinus Torvaldsconfig CPU_HAS_PREFETCH
1342c8094b53SRalf Baechle	bool
13431da177e4SLinus Torvalds
1344e01402b1SRalf Baechleconfig MIPS_MT
1345e01402b1SRalf Baechle	bool "Enable MIPS MT"
1346e01402b1SRalf Baechle
1347e01402b1SRalf Baechleconfig MIPS_VPE_LOADER
1348e01402b1SRalf Baechle	bool "VPE loader support."
1349e01402b1SRalf Baechle	depends on MIPS_MT
1350e01402b1SRalf Baechle	help
1351e01402b1SRalf Baechle	  Includes a loader for loading an elf relocatable object
1352e01402b1SRalf Baechle	  onto another VPE and running it.
1353e01402b1SRalf Baechle
1354e01402b1SRalf Baechleconfig MIPS_VPE_LOADER_TOM
1355e01402b1SRalf Baechle	bool "Load VPE program into memory hidden from linux"
1356e01402b1SRalf Baechle	depends on MIPS_VPE_LOADER
1357e01402b1SRalf Baechle	default y
1358e01402b1SRalf Baechle	help
1359e01402b1SRalf Baechle	  The loader can use memory that is present but has been hidden from
1360e01402b1SRalf Baechle	  Linux using the kernel command line option "mem=xxMB". It's up to
1361e01402b1SRalf Baechle	  you to ensure the amount you put in the option and the space your
1362e01402b1SRalf Baechle	  program requires is less or equal to the amount physically present.
1363e01402b1SRalf Baechle
1364e01402b1SRalf Baechle# this should possibly be in drivers/char, but it is rather cpu related. Hmmm
1365e01402b1SRalf Baechleconfig MIPS_VPE_APSP_API
1366e01402b1SRalf Baechle      bool "Enable support for AP/SP API (RTLX)"
1367e01402b1SRalf Baechle      depends on MIPS_VPE_LOADER
1368e01402b1SRalf Baechle
13691da177e4SLinus Torvaldsconfig SB1_PASS_1_WORKAROUNDS
13701da177e4SLinus Torvalds	bool
13711da177e4SLinus Torvalds	depends on CPU_SB1_PASS_1
13721da177e4SLinus Torvalds	default y
13731da177e4SLinus Torvalds
13741da177e4SLinus Torvaldsconfig SB1_PASS_2_WORKAROUNDS
13751da177e4SLinus Torvalds	bool
13761da177e4SLinus Torvalds	depends on CPU_SB1 && (CPU_SB1_PASS_2_2 || CPU_SB1_PASS_2)
13771da177e4SLinus Torvalds	default y
13781da177e4SLinus Torvalds
13791da177e4SLinus Torvaldsconfig SB1_PASS_2_1_WORKAROUNDS
13801da177e4SLinus Torvalds	bool
13811da177e4SLinus Torvalds	depends on CPU_SB1 && CPU_SB1_PASS_2
13821da177e4SLinus Torvalds	default y
13831da177e4SLinus Torvalds
13841da177e4SLinus Torvaldsconfig 64BIT_PHYS_ADDR
13851da177e4SLinus Torvalds	bool "Support for 64-bit physical address space"
13866e760c8dSRalf Baechle	depends on (CPU_R4X00 || CPU_R5000 || CPU_RM7000 || CPU_RM9000 || CPU_R10000 || CPU_SB1 || CPU_MIPS32_R1 || CPU_MIPS64_R1) && 32BIT
13871da177e4SLinus Torvalds
13881da177e4SLinus Torvaldsconfig CPU_ADVANCED
13891da177e4SLinus Torvalds	bool "Override CPU Options"
1390875d43e7SRalf Baechle	depends on 32BIT
13911da177e4SLinus Torvalds	help
13921da177e4SLinus Torvalds	  Saying yes here allows you to select support for various features
13931da177e4SLinus Torvalds	  your CPU may or may not have.  Most people should say N here.
13941da177e4SLinus Torvalds
13951da177e4SLinus Torvaldsconfig CPU_HAS_LLSC
13961da177e4SLinus Torvalds	bool "ll/sc Instructions available" if CPU_ADVANCED
13971da177e4SLinus Torvalds	default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX
13981da177e4SLinus Torvalds	help
13991da177e4SLinus Torvalds	  MIPS R4000 series and later provide the Load Linked (ll)
14001da177e4SLinus Torvalds	  and Store Conditional (sc) instructions. More information is
14011da177e4SLinus Torvalds	  available at <http://www.go-ecs.com/mips/miptek1.htm>.
14021da177e4SLinus Torvalds
14031da177e4SLinus Torvalds	  Say Y here if your CPU has the ll and sc instructions.  Say Y here
14041da177e4SLinus Torvalds	  for better performance, N if you don't know.  You must say Y here
14051da177e4SLinus Torvalds	  for multiprocessor machines.
14061da177e4SLinus Torvalds
14071da177e4SLinus Torvaldsconfig CPU_HAS_LLDSCD
14081da177e4SLinus Torvalds	bool "lld/scd Instructions available" if CPU_ADVANCED
14096e760c8dSRalf Baechle	default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX && !CPU_MIPS32_R1
14101da177e4SLinus Torvalds	help
14111da177e4SLinus Torvalds	  Say Y here if your CPU has the lld and scd instructions, the 64-bit
14121da177e4SLinus Torvalds	  equivalents of ll and sc.  Say Y here for better performance, N if
14131da177e4SLinus Torvalds	  you don't know.  You must say Y here for multiprocessor machines.
14141da177e4SLinus Torvalds
14151da177e4SLinus Torvaldsconfig CPU_HAS_WB
14161da177e4SLinus Torvalds	bool "Writeback Buffer available" if CPU_ADVANCED
14171da177e4SLinus Torvalds	default y if !CPU_ADVANCED && CPU_R3000 && MACH_DECSTATION
14181da177e4SLinus Torvalds	help
14191da177e4SLinus Torvalds	  Say N here for slightly better performance.  You must say Y here for
14201da177e4SLinus Torvalds	  machines which require flushing of write buffers in software.  Saying
14211da177e4SLinus Torvalds	  Y is the safe option; N may result in kernel malfunction and crashes.
14221da177e4SLinus Torvalds
1423e01402b1SRalf Baechlemenu "MIPSR2 Interrupt handling"
1424e01402b1SRalf Baechle	depends on CPU_MIPSR2 && CPU_ADVANCED
1425e01402b1SRalf Baechle
1426e01402b1SRalf Baechleconfig CPU_MIPSR2_IRQ_VI
1427e01402b1SRalf Baechle	bool "Vectored interrupt mode"
1428e01402b1SRalf Baechle	help
1429e01402b1SRalf Baechle	   Vectored interrupt mode allowing faster dispatching of interrupts.
1430e01402b1SRalf Baechle	   The board support code needs to be written to take advantage of this
1431e01402b1SRalf Baechle	   mode.  Compatibility code is included to allow the kernel to run on
1432e01402b1SRalf Baechle	   a CPU that does not support vectored interrupts.  It's safe to
1433e01402b1SRalf Baechle	   say Y here.
1434e01402b1SRalf Baechle
1435e01402b1SRalf Baechleconfig CPU_MIPSR2_IRQ_EI
1436e01402b1SRalf Baechle	bool "External interrupt controller mode"
1437e01402b1SRalf Baechle	help
1438e01402b1SRalf Baechle	   Extended interrupt mode takes advantage of an external interrupt
1439e01402b1SRalf Baechle	   controller to allow fast dispatching from many possible interrupt
1440e01402b1SRalf Baechle	   sources. Say N unless you know that external interrupt support is
1441e01402b1SRalf Baechle	   required.
1442e01402b1SRalf Baechle
1443e01402b1SRalf Baechleconfig CPU_MIPSR2_SRS
1444e01402b1SRalf Baechle	bool "Make shadow set registers available for interrupt handlers"
1445e01402b1SRalf Baechle	depends on CPU_MIPSR2_IRQ_VI || CPU_MIPSR2_IRQ_EI
1446e01402b1SRalf Baechle	help
1447e01402b1SRalf Baechle	   Allow the kernel to use shadow register sets for fast interrupts.
1448e01402b1SRalf Baechle	   Interrupt handlers must be specially written to use shadow sets.
1449e01402b1SRalf Baechle	   Say N unless you know that shadow register set upport is needed.
1450e01402b1SRalf Baechleendmenu
1451e01402b1SRalf Baechle
14521da177e4SLinus Torvaldsconfig CPU_HAS_SYNC
14531da177e4SLinus Torvalds	bool
14541da177e4SLinus Torvalds	depends on !CPU_R3000
14551da177e4SLinus Torvalds	default y
14561da177e4SLinus Torvalds
14571da177e4SLinus Torvalds#
1458*797798c1SRalf Baechle# Use the generic interrupt handling code in kernel/irq/:
1459*797798c1SRalf Baechle#
1460*797798c1SRalf Baechleconfig GENERIC_HARDIRQS
1461*797798c1SRalf Baechle	bool
1462*797798c1SRalf Baechle	default y
1463*797798c1SRalf Baechle
1464*797798c1SRalf Baechleconfig GENERIC_IRQ_PROBE
1465*797798c1SRalf Baechle	bool
1466*797798c1SRalf Baechle	default y
1467*797798c1SRalf Baechle
1468*797798c1SRalf Baechle#
14691da177e4SLinus Torvalds# - Highmem only makes sense for the 32-bit kernel.
14701da177e4SLinus Torvalds# - The current highmem code will only work properly on physically indexed
14711da177e4SLinus Torvalds#   caches such as R3000, SB1, R7000 or those that look like they're virtually
14721da177e4SLinus Torvalds#   indexed such as R4000/R4400 SC and MC versions or R10000.  So for the
14731da177e4SLinus Torvalds#   moment we protect the user and offer the highmem option only on machines
14741da177e4SLinus Torvalds#   where it's known to be safe.  This will not offer highmem on a few systems
14751da177e4SLinus Torvalds#   such as MIPS32 and MIPS64 CPUs which may have virtual and physically
14761da177e4SLinus Torvalds#   indexed CPUs but we're playing safe.
1477*797798c1SRalf Baechle# - We use SYS_SUPPORTS_HIGHMEM to offer highmem only for systems where we
1478*797798c1SRalf Baechle#   know they might have memory configurations that could make use of highmem
1479*797798c1SRalf Baechle#   support.
14801da177e4SLinus Torvalds#
14811da177e4SLinus Torvaldsconfig HIGHMEM
14821da177e4SLinus Torvalds	bool "High Memory Support"
1483*797798c1SRalf Baechle	depends on 32BIT && CPU_SUPPORTS_HIGHMEM && SYS_SUPPORTS_HIGHMEM
1484*797798c1SRalf Baechle
1485*797798c1SRalf Baechleconfig CPU_SUPPORTS_HIGHMEM
1486*797798c1SRalf Baechle	bool
1487*797798c1SRalf Baechle
1488*797798c1SRalf Baechleconfig SYS_SUPPORTS_HIGHMEM
1489*797798c1SRalf Baechle	bool
14901da177e4SLinus Torvalds
1491b4819b59SYoichi Yuasaconfig ARCH_FLATMEM_ENABLE
1492b4819b59SYoichi Yuasa	def_bool y
1493b4819b59SYoichi Yuasa	depends on !NUMA
1494b4819b59SYoichi Yuasa
1495b4819b59SYoichi Yuasasource "mm/Kconfig"
1496b4819b59SYoichi Yuasa
14971da177e4SLinus Torvaldsconfig SMP
14981da177e4SLinus Torvalds	bool "Multi-Processing support"
14991da177e4SLinus Torvalds	depends on CPU_RM9000 || (SIBYTE_SB1250 && !SIBYTE_STANDALONE) || SGI_IP27
15001da177e4SLinus Torvalds	---help---
15011da177e4SLinus Torvalds	  This enables support for systems with more than one CPU. If you have
15021da177e4SLinus Torvalds	  a system with only one CPU, like most personal computers, say N. If
15031da177e4SLinus Torvalds	  you have a system with more than one CPU, say Y.
15041da177e4SLinus Torvalds
15051da177e4SLinus Torvalds	  If you say N here, the kernel will run on single and multiprocessor
15061da177e4SLinus Torvalds	  machines, but will use only one CPU of a multiprocessor machine. If
15071da177e4SLinus Torvalds	  you say Y here, the kernel will run on many, but not all,
15081da177e4SLinus Torvalds	  singleprocessor machines. On a singleprocessor machine, the kernel
15091da177e4SLinus Torvalds	  will run faster if you say N here.
15101da177e4SLinus Torvalds
15111da177e4SLinus Torvalds	  People using multiprocessor machines who say Y here should also say
15121da177e4SLinus Torvalds	  Y to "Enhanced Real Time Clock Support", below.
15131da177e4SLinus Torvalds
15141da177e4SLinus Torvalds	  See also the <file:Documentation/smp.txt> and the SMP-HOWTO
15151da177e4SLinus Torvalds	  available at <http://www.tldp.org/docs.html#howto>.
15161da177e4SLinus Torvalds
15171da177e4SLinus Torvalds	  If you don't know what to do here, say N.
15181da177e4SLinus Torvalds
15191da177e4SLinus Torvaldsconfig NR_CPUS
15201da177e4SLinus Torvalds	int "Maximum number of CPUs (2-64)"
15211da177e4SLinus Torvalds	range 2 64
15221da177e4SLinus Torvalds	depends on SMP
15231da177e4SLinus Torvalds	default "64" if SGI_IP27
15241da177e4SLinus Torvalds	default "2"
15251da177e4SLinus Torvalds	help
15261da177e4SLinus Torvalds	  This allows you to specify the maximum number of CPUs which this
15271da177e4SLinus Torvalds	  kernel will support.  The maximum supported value is 32 for 32-bit
15281da177e4SLinus Torvalds	  kernel and 64 for 64-bit kernels; the minimum value which makes
15291da177e4SLinus Torvalds	  sense is 2.
15301da177e4SLinus Torvalds
15311da177e4SLinus Torvalds	  This is purely to save memory - each supported CPU adds
15321da177e4SLinus Torvalds	  approximately eight kilobytes to the kernel image.
15331da177e4SLinus Torvalds
1534e80de850SRalf Baechlesource "kernel/Kconfig.preempt"
15351da177e4SLinus Torvalds
15361da177e4SLinus Torvaldsconfig RTC_DS1742
15371da177e4SLinus Torvalds	bool "DS1742 BRAM/RTC support"
15381da177e4SLinus Torvalds	depends on TOSHIBA_JMR3927 || TOSHIBA_RBTX4927
15391da177e4SLinus Torvalds
15401da177e4SLinus Torvaldsconfig MIPS_INSANE_LARGE
15411da177e4SLinus Torvalds	bool "Support for large 64-bit configurations"
1542875d43e7SRalf Baechle	depends on CPU_R10000 && 64BIT
15431da177e4SLinus Torvalds	help
15441da177e4SLinus Torvalds	  MIPS R10000 does support a 44 bit / 16TB address space as opposed to
15451da177e4SLinus Torvalds	  previous 64-bit processors which only supported 40 bit / 1TB. If you
15461da177e4SLinus Torvalds	  need processes of more than 1TB virtual address space, say Y here.
15471da177e4SLinus Torvalds	  This will result in additional memory usage, so it is not
15481da177e4SLinus Torvalds	  recommended for normal users.
15491da177e4SLinus Torvalds
15501da177e4SLinus Torvaldsconfig RWSEM_GENERIC_SPINLOCK
15511da177e4SLinus Torvalds	bool
15521da177e4SLinus Torvalds	default y
15531da177e4SLinus Torvalds
15541da177e4SLinus Torvaldsendmenu
15551da177e4SLinus Torvalds
15561da177e4SLinus Torvaldsmenu "Bus options (PCI, PCMCIA, EISA, ISA, TC)"
15571da177e4SLinus Torvalds
15581da177e4SLinus Torvaldsconfig HW_HAS_PCI
15591da177e4SLinus Torvalds	bool
15601da177e4SLinus Torvalds
15611da177e4SLinus Torvaldsconfig PCI
15621da177e4SLinus Torvalds	bool "Support for PCI controller"
15631da177e4SLinus Torvalds	depends on HW_HAS_PCI
15641da177e4SLinus Torvalds	help
15651da177e4SLinus Torvalds	  Find out whether you have a PCI motherboard. PCI is the name of a
15661da177e4SLinus Torvalds	  bus system, i.e. the way the CPU talks to the other stuff inside
15671da177e4SLinus Torvalds	  your box. Other bus systems are ISA, EISA, or VESA. If you have PCI,
15681da177e4SLinus Torvalds	  say Y, otherwise N.
15691da177e4SLinus Torvalds
15701da177e4SLinus Torvalds	  The PCI-HOWTO, available from
15711da177e4SLinus Torvalds	  <http://www.tldp.org/docs.html#howto>, contains valuable
15721da177e4SLinus Torvalds	  information about which PCI hardware does work under Linux and which
15731da177e4SLinus Torvalds	  doesn't.
15741da177e4SLinus Torvalds
15751da177e4SLinus Torvaldsconfig PCI_DOMAINS
15761da177e4SLinus Torvalds	bool
15771da177e4SLinus Torvalds	depends on PCI
15781da177e4SLinus Torvalds
15791da177e4SLinus Torvaldssource "drivers/pci/Kconfig"
15801da177e4SLinus Torvalds
15811da177e4SLinus Torvalds#
15821da177e4SLinus Torvalds# ISA support is now enabled via select.  Too many systems still have the one
15831da177e4SLinus Torvalds# or other ISA chip on the board that users don't know about so don't expect
15841da177e4SLinus Torvalds# users to choose the right thing ...
15851da177e4SLinus Torvalds#
15861da177e4SLinus Torvaldsconfig ISA
15871da177e4SLinus Torvalds	bool
15881da177e4SLinus Torvalds
15891da177e4SLinus Torvaldsconfig EISA
15901da177e4SLinus Torvalds	bool "EISA support"
15911da177e4SLinus Torvalds	depends on SGI_IP22 || SNI_RM200_PCI
15921da177e4SLinus Torvalds	select ISA
15931da177e4SLinus Torvalds	---help---
15941da177e4SLinus Torvalds	  The Extended Industry Standard Architecture (EISA) bus was
15951da177e4SLinus Torvalds	  developed as an open alternative to the IBM MicroChannel bus.
15961da177e4SLinus Torvalds
15971da177e4SLinus Torvalds	  The EISA bus provided some of the features of the IBM MicroChannel
15981da177e4SLinus Torvalds	  bus while maintaining backward compatibility with cards made for
15991da177e4SLinus Torvalds	  the older ISA bus.  The EISA bus saw limited use between 1988 and
16001da177e4SLinus Torvalds	  1995 when it was made obsolete by the PCI bus.
16011da177e4SLinus Torvalds
16021da177e4SLinus Torvalds	  Say Y here if you are building a kernel for an EISA-based machine.
16031da177e4SLinus Torvalds
16041da177e4SLinus Torvalds	  Otherwise, say N.
16051da177e4SLinus Torvalds
16061da177e4SLinus Torvaldssource "drivers/eisa/Kconfig"
16071da177e4SLinus Torvalds
16081da177e4SLinus Torvaldsconfig TC
16091da177e4SLinus Torvalds	bool "TURBOchannel support"
16101da177e4SLinus Torvalds	depends on MACH_DECSTATION
16111da177e4SLinus Torvalds	help
16121da177e4SLinus Torvalds	  TurboChannel is a DEC (now Compaq (now HP)) bus for Alpha and MIPS
16131da177e4SLinus Torvalds	  processors.  Documentation on writing device drivers for TurboChannel
16141da177e4SLinus Torvalds	  is available at:
16151da177e4SLinus Torvalds	  <http://www.cs.arizona.edu/computer.help/policy/DIGITAL_unix/AA-PS3HD-TET1_html/TITLE.html>.
16161da177e4SLinus Torvalds
16171da177e4SLinus Torvalds#config ACCESSBUS
16181da177e4SLinus Torvalds#	bool "Access.Bus support"
16191da177e4SLinus Torvalds#	depends on TC
16201da177e4SLinus Torvalds
16211da177e4SLinus Torvaldsconfig MMU
16221da177e4SLinus Torvalds	bool
16231da177e4SLinus Torvalds	default y
16241da177e4SLinus Torvalds
16251da177e4SLinus Torvaldsconfig MCA
16261da177e4SLinus Torvalds	bool
16271da177e4SLinus Torvalds
16281da177e4SLinus Torvaldsconfig SBUS
16291da177e4SLinus Torvalds	bool
16301da177e4SLinus Torvalds
16311da177e4SLinus Torvaldssource "drivers/pcmcia/Kconfig"
16321da177e4SLinus Torvalds
16331da177e4SLinus Torvaldssource "drivers/pci/hotplug/Kconfig"
16341da177e4SLinus Torvalds
16351da177e4SLinus Torvaldsendmenu
16361da177e4SLinus Torvalds
16371da177e4SLinus Torvaldsmenu "Executable file formats"
16381da177e4SLinus Torvalds
16391da177e4SLinus Torvaldssource "fs/Kconfig.binfmt"
16401da177e4SLinus Torvalds
16411da177e4SLinus Torvaldsconfig TRAD_SIGNALS
16421da177e4SLinus Torvalds	bool
1643875d43e7SRalf Baechle	default y if 32BIT
16441da177e4SLinus Torvalds
16451da177e4SLinus Torvaldsconfig BUILD_ELF64
16461da177e4SLinus Torvalds	bool "Use 64-bit ELF format for building"
1647875d43e7SRalf Baechle	depends on 64BIT
16481da177e4SLinus Torvalds	help
16491da177e4SLinus Torvalds	  A 64-bit kernel is usually built using the 64-bit ELF binary object
16501da177e4SLinus Torvalds	  format as it's one that allows arbitrary 64-bit constructs.  For
16511da177e4SLinus Torvalds	  kernels that are loaded within the KSEG compatibility segments the
16521da177e4SLinus Torvalds	  32-bit ELF format can optionally be used resulting in a somewhat
16531da177e4SLinus Torvalds	  smaller binary, but this option is not explicitly supported by the
16541da177e4SLinus Torvalds	  toolchain and since binutils 2.14 it does not even work at all.
16551da177e4SLinus Torvalds
16561da177e4SLinus Torvalds	  Say Y to use the 64-bit format or N to use the 32-bit one.
16571da177e4SLinus Torvalds
16581da177e4SLinus Torvalds	  If unsure say Y.
16591da177e4SLinus Torvalds
16601da177e4SLinus Torvaldsconfig BINFMT_IRIX
16611da177e4SLinus Torvalds	bool "Include IRIX binary compatibility"
1662875d43e7SRalf Baechle	depends on !CPU_LITTLE_ENDIAN && 32BIT && BROKEN
16631da177e4SLinus Torvalds
16641da177e4SLinus Torvaldsconfig MIPS32_COMPAT
16651da177e4SLinus Torvalds	bool "Kernel support for Linux/MIPS 32-bit binary compatibility"
1666875d43e7SRalf Baechle	depends on 64BIT
16671da177e4SLinus Torvalds	help
16681da177e4SLinus Torvalds	  Select this option if you want Linux/MIPS 32-bit binary
16691da177e4SLinus Torvalds	  compatibility. Since all software available for Linux/MIPS is
16701da177e4SLinus Torvalds	  currently 32-bit you should say Y here.
16711da177e4SLinus Torvalds
16721da177e4SLinus Torvaldsconfig COMPAT
16731da177e4SLinus Torvalds	bool
16741da177e4SLinus Torvalds	depends on MIPS32_COMPAT
16751da177e4SLinus Torvalds	default y
16761da177e4SLinus Torvalds
16771da177e4SLinus Torvaldsconfig MIPS32_O32
16781da177e4SLinus Torvalds	bool "Kernel support for o32 binaries"
16791da177e4SLinus Torvalds	depends on MIPS32_COMPAT
16801da177e4SLinus Torvalds	help
16811da177e4SLinus Torvalds	  Select this option if you want to run o32 binaries.  These are pure
16821da177e4SLinus Torvalds	  32-bit binaries as used by the 32-bit Linux/MIPS port.  Most of
16831da177e4SLinus Torvalds	  existing binaries are in this format.
16841da177e4SLinus Torvalds
16851da177e4SLinus Torvalds	  If unsure, say Y.
16861da177e4SLinus Torvalds
16871da177e4SLinus Torvaldsconfig MIPS32_N32
16881da177e4SLinus Torvalds	bool "Kernel support for n32 binaries"
16891da177e4SLinus Torvalds	depends on MIPS32_COMPAT
16901da177e4SLinus Torvalds	help
16911da177e4SLinus Torvalds	  Select this option if you want to run n32 binaries.  These are
16921da177e4SLinus Torvalds	  64-bit binaries using 32-bit quantities for addressing and certain
16931da177e4SLinus Torvalds	  data that would normally be 64-bit.  They are used in special
16941da177e4SLinus Torvalds	  cases.
16951da177e4SLinus Torvalds
16961da177e4SLinus Torvalds	  If unsure, say N.
16971da177e4SLinus Torvalds
16981da177e4SLinus Torvaldsconfig BINFMT_ELF32
16991da177e4SLinus Torvalds	bool
17001da177e4SLinus Torvalds	default y if MIPS32_O32 || MIPS32_N32
17011da177e4SLinus Torvalds
1702127c6f66SRalf Baechleconfig SECCOMP
1703127c6f66SRalf Baechle	bool "Enable seccomp to safely compute untrusted bytecode"
1704127c6f66SRalf Baechle	depends on PROC_FS && BROKEN
1705127c6f66SRalf Baechle	default y
1706127c6f66SRalf Baechle	help
1707127c6f66SRalf Baechle	  This kernel feature is useful for number crunching applications
1708127c6f66SRalf Baechle	  that may need to compute untrusted bytecode during their
1709127c6f66SRalf Baechle	  execution. By using pipes or other transports made available to
1710127c6f66SRalf Baechle	  the process as file descriptors supporting the read/write
1711127c6f66SRalf Baechle	  syscalls, it's possible to isolate those applications in
1712127c6f66SRalf Baechle	  their own address space using seccomp. Once seccomp is
1713127c6f66SRalf Baechle	  enabled via /proc/<pid>/seccomp, it cannot be disabled
1714127c6f66SRalf Baechle	  and the task is only allowed to execute a few safe syscalls
1715127c6f66SRalf Baechle	  defined by each seccomp mode.
1716127c6f66SRalf Baechle
1717127c6f66SRalf Baechle	  If unsure, say Y. Only embedded should say N here.
1718127c6f66SRalf Baechle
17191da177e4SLinus Torvaldsconfig PM
17201da177e4SLinus Torvalds	bool "Power Management support (EXPERIMENTAL)"
17211da177e4SLinus Torvalds	depends on EXPERIMENTAL && MACH_AU1X00
17221da177e4SLinus Torvalds
17231da177e4SLinus Torvaldsendmenu
17241da177e4SLinus Torvalds
1725d5950b43SSam Ravnborgsource "net/Kconfig"
1726d5950b43SSam Ravnborg
17271da177e4SLinus Torvaldssource "drivers/Kconfig"
17281da177e4SLinus Torvalds
17291da177e4SLinus Torvaldssource "fs/Kconfig"
17301da177e4SLinus Torvalds
17311da177e4SLinus Torvaldssource "arch/mips/Kconfig.debug"
17321da177e4SLinus Torvalds
17331da177e4SLinus Torvaldssource "security/Kconfig"
17341da177e4SLinus Torvalds
17351da177e4SLinus Torvaldssource "crypto/Kconfig"
17361da177e4SLinus Torvalds
17371da177e4SLinus Torvaldssource "lib/Kconfig"
17381da177e4SLinus Torvalds
17395cae841bSAl Viroconfig ISA_DMA_API
17405cae841bSAl Viro	bool
17415cae841bSAl Viro	default y
1742