xref: /linux/arch/mips/Kconfig (revision bdf21b18b4abf983db38f04ef7fec88f47389867)
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
492*bdf21b18SPete Popovconfig PNX8550_V2PCI
493*bdf21b18SPete Popov	bool "Support for Philips PNX8550 based Viper2-PCI board"
494*bdf21b18SPete Popov	select PNX8550
495*bdf21b18SPete Popov	select SYS_SUPPORTS_LITTLE_ENDIAN
496*bdf21b18SPete Popov
497*bdf21b18SPete Popovconfig PNX8550_JBS
498*bdf21b18SPete Popov	bool "Support for Philips PNX8550 based JBS board"
499*bdf21b18SPete Popov	select PNX8550
500*bdf21b18SPete Popov	select SYS_SUPPORTS_LITTLE_ENDIAN
501*bdf21b18SPete 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
56507119621SRalf Baechle	help
56607119621SRalf Baechle	 Qemu is a software emulator which among other architectures also
56707119621SRalf Baechle	 can simulate a MIPS32 4Kc system.  This patch adds support for the
56807119621SRalf Baechle	 system architecture that currently is being simulated by Qemu.  It
56907119621SRalf Baechle	 will eventually be removed again when Qemu has the capability to
57007119621SRalf Baechle	 simulate actual MIPS hardware platforms.  More information on Qemu
57107119621SRalf Baechle	 can be found at http://www.linux-mips.org/wiki/Qemu.
57207119621SRalf Baechle
5731da177e4SLinus Torvaldsconfig SGI_IP22
5741da177e4SLinus Torvalds	bool "Support for SGI IP22 (Indy/Indigo2)"
5751da177e4SLinus Torvalds	select ARC
5761da177e4SLinus Torvalds	select ARC32
5771da177e4SLinus Torvalds	select BOOT_ELF32
5781da177e4SLinus Torvalds	select DMA_NONCOHERENT
5791da177e4SLinus Torvalds	select IP22_CPU_SCACHE
5801da177e4SLinus Torvalds	select IRQ_CPU
5811da177e4SLinus Torvalds	select SWAP_IO_SPACE
582ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
583ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
5841da177e4SLinus Torvalds	help
5851da177e4SLinus Torvalds	  This are the SGI Indy, Challenge S and Indigo2, as well as certain
5861da177e4SLinus Torvalds	  OEM variants like the Tandem CMN B006S. To compile a Linux kernel
5871da177e4SLinus Torvalds	  that runs on these, say Y here.
5881da177e4SLinus Torvalds
5891da177e4SLinus Torvaldsconfig SGI_IP27
5901da177e4SLinus Torvalds	bool "Support for SGI IP27 (Origin200/2000)"
5911da177e4SLinus Torvalds	select ARC
5921da177e4SLinus Torvalds	select ARC64
5931da177e4SLinus Torvalds	select DMA_IP27
5941da177e4SLinus Torvalds	select HW_HAS_PCI
5951da177e4SLinus Torvalds	select PCI_DOMAINS
596ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
5971da177e4SLinus Torvalds	help
5981da177e4SLinus Torvalds	  This are the SGI Origin 200, Origin 2000 and Onyx 2 Graphics
5991da177e4SLinus Torvalds	  workstations.  To compile a Linux kernel that runs on these, say Y
6001da177e4SLinus Torvalds	  here.
6011da177e4SLinus Torvalds
6021da177e4SLinus Torvalds#config SGI_SN0_XXL
6031da177e4SLinus Torvalds#	bool "IP27 XXL"
6041da177e4SLinus Torvalds#	depends on SGI_IP27
6051da177e4SLinus Torvalds#	  This options adds support for userspace processes upto 16TB size.
6061da177e4SLinus Torvalds#	  Normally the limit is just .5TB.
6071da177e4SLinus Torvalds
6081da177e4SLinus Torvaldsconfig SGI_SN0_N_MODE
6091da177e4SLinus Torvalds	bool "IP27 N-Mode"
6101da177e4SLinus Torvalds	depends on SGI_IP27
6111da177e4SLinus Torvalds	help
6121da177e4SLinus Torvalds	  The nodes of Origin 200, Origin 2000 and Onyx 2 systems can be
6131da177e4SLinus Torvalds	  configured in either N-Modes which allows for more nodes or M-Mode
6141da177e4SLinus Torvalds	  which allows for more memory.  Your system is most probably
6151da177e4SLinus Torvalds	  running in M-Mode, so you should say N here.
6161da177e4SLinus Torvalds
6173f22ab27SDave Hansenconfig ARCH_DISCONTIGMEM_ENABLE
6181da177e4SLinus Torvalds	bool
6191da177e4SLinus Torvalds	default y if SGI_IP27
6201da177e4SLinus Torvalds	help
6211da177e4SLinus Torvalds	  Say Y to upport efficient handling of discontiguous physical memory,
6221da177e4SLinus Torvalds	  for architectures which are either NUMA (Non-Uniform Memory Access)
6231da177e4SLinus Torvalds	  or have huge holes in the physical address space for other reasons.
6241da177e4SLinus Torvalds	  See <file:Documentation/vm/numa> for more.
6251da177e4SLinus Torvalds
6261da177e4SLinus Torvaldsconfig NUMA
6271da177e4SLinus Torvalds	bool "NUMA Support"
6281da177e4SLinus Torvalds	depends on SGI_IP27
6291da177e4SLinus Torvalds	help
6301da177e4SLinus Torvalds	  Say Y to compile the kernel to support NUMA (Non-Uniform Memory
6311da177e4SLinus Torvalds	  Access).  This option is for configuring high-end multiprocessor
6321da177e4SLinus Torvalds	  server machines.  If in doubt, say N.
6331da177e4SLinus Torvalds
6341da177e4SLinus Torvaldsconfig MAPPED_KERNEL
6351da177e4SLinus Torvalds	bool "Mapped kernel support"
6361da177e4SLinus Torvalds	depends on SGI_IP27
6371da177e4SLinus Torvalds	help
6381da177e4SLinus Torvalds	  Change the way a Linux kernel is loaded into memory on a MIPS64
6391da177e4SLinus Torvalds	  machine.  This is required in order to support text replication and
6401da177e4SLinus Torvalds	  NUMA.  If you need to understand it, read the source code.
6411da177e4SLinus Torvalds
6421da177e4SLinus Torvaldsconfig REPLICATE_KTEXT
6431da177e4SLinus Torvalds	bool "Kernel text replication support"
6441da177e4SLinus Torvalds	depends on SGI_IP27
6451da177e4SLinus Torvalds	help
6461da177e4SLinus Torvalds	  Say Y here to enable replicating the kernel text across multiple
6471da177e4SLinus Torvalds	  nodes in a NUMA cluster.  This trades memory for speed.
6481da177e4SLinus Torvalds
6491da177e4SLinus Torvaldsconfig REPLICATE_EXHANDLERS
6501da177e4SLinus Torvalds	bool "Exception handler replication support"
6511da177e4SLinus Torvalds	depends on SGI_IP27
6521da177e4SLinus Torvalds	help
6531da177e4SLinus Torvalds	  Say Y here to enable replicating the kernel exception handlers
6541da177e4SLinus Torvalds	  across multiple nodes in a NUMA cluster. This trades memory for
6551da177e4SLinus Torvalds	  speed.
6561da177e4SLinus Torvalds
6571da177e4SLinus Torvaldsconfig SGI_IP32
6581da177e4SLinus Torvalds	bool "Support for SGI IP32 (O2) (EXPERIMENTAL)"
659ed5ba2fbSYoichi Yuasa	depends on EXPERIMENTAL
6601da177e4SLinus Torvalds	select ARC
6611da177e4SLinus Torvalds	select ARC32
6621da177e4SLinus Torvalds	select BOOT_ELF32
6631da177e4SLinus Torvalds	select OWN_DMA
6641da177e4SLinus Torvalds	select DMA_IP32
6651da177e4SLinus Torvalds	select DMA_NONCOHERENT
6665eaf7a21SRalf Baechle	select HAS_TXX9_SERIAL
6671da177e4SLinus Torvalds	select HW_HAS_PCI
6681da177e4SLinus Torvalds	select R5000_CPU_SCACHE
6691da177e4SLinus Torvalds	select RM7000_CPU_SCACHE
670ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
6711da177e4SLinus Torvalds	help
6721da177e4SLinus Torvalds	  If you want this kernel to run on SGI O2 workstation, say Y here.
6731da177e4SLinus Torvalds
674e3ad1c23SPete Popovconfig SOC_AU1200
675e3ad1c23SPete Popov	bool
676e3ad1c23SPete Popov	select SOC_AU1X00
677e3ad1c23SPete Popov
6781da177e4SLinus Torvaldsconfig SOC_AU1X00
6791da177e4SLinus Torvalds	bool "Support for AMD/Alchemy Au1X00 SOCs"
680ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
6811da177e4SLinus Torvalds
6821da177e4SLinus Torvaldschoice
6831da177e4SLinus Torvalds	prompt "Au1X00 SOC Type"
6841da177e4SLinus Torvalds	depends on SOC_AU1X00
6851da177e4SLinus Torvalds	help
6861da177e4SLinus Torvalds	  Say Y here to enable support for one of three AMD/Alchemy
6871da177e4SLinus Torvalds	  SOCs. For additional documentation see www.amd.com.
6881da177e4SLinus Torvalds
6891da177e4SLinus Torvaldsconfig SOC_AU1000
6901da177e4SLinus Torvalds	bool "SOC_AU1000"
6911da177e4SLinus Torvaldsconfig SOC_AU1100
6921da177e4SLinus Torvalds	bool "SOC_AU1100"
6931da177e4SLinus Torvaldsconfig SOC_AU1500
6941da177e4SLinus Torvalds	bool "SOC_AU1500"
6951da177e4SLinus Torvaldsconfig SOC_AU1550
6961da177e4SLinus Torvalds	bool "SOC_AU1550"
6971da177e4SLinus Torvalds
6981da177e4SLinus Torvaldsendchoice
6991da177e4SLinus Torvalds
7001da177e4SLinus Torvaldschoice
7011da177e4SLinus Torvalds	prompt "AMD/Alchemy Au1x00 board support"
7021da177e4SLinus Torvalds	depends on SOC_AU1X00
7031da177e4SLinus Torvalds	help
7041da177e4SLinus Torvalds	  These are evaluation boards built by AMD/Alchemy to
7051da177e4SLinus Torvalds	  showcase their Au1X00 Internet Edge Processors. The SOC design
7061da177e4SLinus Torvalds	  is based on the MIPS32 architecture running at 266/400/500MHz
7071da177e4SLinus Torvalds	  with many integrated peripherals. Further information can be
7081da177e4SLinus Torvalds	  found at their website, <http://www.amd.com/>. Say Y here if you
7091da177e4SLinus Torvalds	  wish to build a kernel for this platform.
7101da177e4SLinus Torvalds
7111da177e4SLinus Torvaldsconfig MIPS_PB1000
7121da177e4SLinus Torvalds	bool "PB1000 board"
7131da177e4SLinus Torvalds	depends on SOC_AU1000
7141da177e4SLinus Torvalds	select DMA_NONCOHERENT
7151da177e4SLinus Torvalds	select HW_HAS_PCI
7161da177e4SLinus Torvalds	select SWAP_IO_SPACE
7171da177e4SLinus Torvalds
7181da177e4SLinus Torvaldsconfig MIPS_PB1100
7191da177e4SLinus Torvalds	bool "PB1100 board"
7201da177e4SLinus Torvalds	depends on SOC_AU1100
7211da177e4SLinus Torvalds	select DMA_NONCOHERENT
7221da177e4SLinus Torvalds	select HW_HAS_PCI
7231da177e4SLinus Torvalds	select SWAP_IO_SPACE
7241da177e4SLinus Torvalds
7251da177e4SLinus Torvaldsconfig MIPS_PB1500
7261da177e4SLinus Torvalds	bool "PB1500 board"
7271da177e4SLinus Torvalds	depends on SOC_AU1500
728d8f5d861SPete Popov	select DMA_NONCOHERENT
7291da177e4SLinus Torvalds	select HW_HAS_PCI
7301da177e4SLinus Torvalds
7311da177e4SLinus Torvaldsconfig MIPS_PB1550
7321da177e4SLinus Torvalds	bool "PB1550 board"
7331da177e4SLinus Torvalds	depends on SOC_AU1550
7341da177e4SLinus Torvalds	select DMA_COHERENT
7351da177e4SLinus Torvalds	select HW_HAS_PCI
7361da177e4SLinus Torvalds	select MIPS_DISABLE_OBSOLETE_IDE
7371da177e4SLinus Torvalds
738e3ad1c23SPete Popovconfig MIPS_PB1200
739e3ad1c23SPete Popov	bool "AMD Alchemy PB1200 board"
740e3ad1c23SPete Popov	select SOC_AU1200
741e3ad1c23SPete Popov	select DMA_NONCOHERENT
742e3ad1c23SPete Popov	select MIPS_DISABLE_OBSOLETE_IDE
74381731f79SSteven J. Hill	select SYS_SUPPORTS_BIG_ENDIAN
744e3ad1c23SPete Popov	select SYS_SUPPORTS_LITTLE_ENDIAN
745e3ad1c23SPete Popov
7461da177e4SLinus Torvaldsconfig MIPS_DB1000
7471da177e4SLinus Torvalds	bool "DB1000 board"
7481da177e4SLinus Torvalds	depends on SOC_AU1000
7491da177e4SLinus Torvalds	select DMA_NONCOHERENT
7501da177e4SLinus Torvalds	select HW_HAS_PCI
7511da177e4SLinus Torvalds
7521da177e4SLinus Torvaldsconfig MIPS_DB1100
7531da177e4SLinus Torvalds	bool "DB1100 board"
7541da177e4SLinus Torvalds	depends on SOC_AU1100
7551da177e4SLinus Torvalds	select DMA_NONCOHERENT
7561da177e4SLinus Torvalds
7571da177e4SLinus Torvaldsconfig MIPS_DB1500
7581da177e4SLinus Torvalds	bool "DB1500 board"
7591da177e4SLinus Torvalds	depends on SOC_AU1500
760d8f5d861SPete Popov	select DMA_NONCOHERENT
7611da177e4SLinus Torvalds	select HW_HAS_PCI
7621da177e4SLinus Torvalds	select MIPS_DISABLE_OBSOLETE_IDE
7631da177e4SLinus Torvalds
7641da177e4SLinus Torvaldsconfig MIPS_DB1550
7651da177e4SLinus Torvalds	bool "DB1550 board"
7661da177e4SLinus Torvalds	depends on SOC_AU1550
7671da177e4SLinus Torvalds	select HW_HAS_PCI
768d8f5d861SPete Popov	select DMA_NONCOHERENT
7691da177e4SLinus Torvalds	select MIPS_DISABLE_OBSOLETE_IDE
7701da177e4SLinus Torvalds
7711da177e4SLinus Torvaldsconfig MIPS_BOSPORUS
7721da177e4SLinus Torvalds	bool "Bosporus board"
7731da177e4SLinus Torvalds	depends on SOC_AU1500
7741da177e4SLinus Torvalds	select DMA_NONCOHERENT
7751da177e4SLinus Torvalds
776e3ad1c23SPete Popovconfig MIPS_DB1200
777e3ad1c23SPete Popov	bool "AMD Alchemy DB1200 board"
778e3ad1c23SPete Popov	select SOC_AU1200
779e3ad1c23SPete Popov	select DMA_NONCOHERENT
780e3ad1c23SPete Popov	select MIPS_DISABLE_OBSOLETE_IDE
781e3ad1c23SPete Popov	select SYS_SUPPORTS_LITTLE_ENDIAN
782e3ad1c23SPete Popov
7831da177e4SLinus Torvaldsconfig MIPS_MIRAGE
7841da177e4SLinus Torvalds	bool "Mirage board"
7851da177e4SLinus Torvalds	depends on SOC_AU1500
7861da177e4SLinus Torvalds	select DMA_NONCOHERENT
7871da177e4SLinus Torvalds
7881da177e4SLinus Torvaldsconfig MIPS_XXS1500
7891da177e4SLinus Torvalds	bool "MyCable XXS1500 board"
7901da177e4SLinus Torvalds	depends on SOC_AU1500
7911da177e4SLinus Torvalds	select DMA_NONCOHERENT
7921da177e4SLinus Torvalds
7931da177e4SLinus Torvaldsconfig MIPS_MTX1
7941da177e4SLinus Torvalds	bool "4G Systems MTX-1 board"
7951da177e4SLinus Torvalds	depends on SOC_AU1500
7961da177e4SLinus Torvalds	select HW_HAS_PCI
7971da177e4SLinus Torvalds	select DMA_NONCOHERENT
7981da177e4SLinus Torvalds
7991da177e4SLinus Torvaldsendchoice
8001da177e4SLinus Torvalds
8011da177e4SLinus Torvaldsconfig SNI_RM200_PCI
8021da177e4SLinus Torvalds	bool "Support for SNI RM200 PCI"
8031da177e4SLinus Torvalds	select ARC
8041da177e4SLinus Torvalds	select ARC32
8051da177e4SLinus Torvalds	select BOOT_ELF32
8061da177e4SLinus Torvalds	select DMA_NONCOHERENT
8071da177e4SLinus Torvalds	select GENERIC_ISA_DMA
8081da177e4SLinus Torvalds	select HAVE_STD_PC_SERIAL_PORT
8091da177e4SLinus Torvalds	select HW_HAS_PCI
8101da177e4SLinus Torvalds	select I8259
8111da177e4SLinus Torvalds	select ISA
812ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
813ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
8141da177e4SLinus Torvalds	help
8151da177e4SLinus Torvalds	  The SNI RM200 PCI was a MIPS-based platform manufactured by Siemens
8161da177e4SLinus Torvalds	  Nixdorf Informationssysteme (SNI), parent company of Pyramid
8171da177e4SLinus Torvalds	  Technology and now in turn merged with Fujitsu.  Say Y here to
8181da177e4SLinus Torvalds	  support this machine type.
8191da177e4SLinus Torvalds
8201da177e4SLinus Torvaldsconfig TOSHIBA_RBTX4927
8211da177e4SLinus Torvalds	bool "Support for Toshiba TBTX49[23]7 board"
8221da177e4SLinus Torvalds	select DMA_NONCOHERENT
8231da177e4SLinus Torvalds	select HAS_TXX9_SERIAL
8241da177e4SLinus Torvalds	select HW_HAS_PCI
8251da177e4SLinus Torvalds	select I8259
8261da177e4SLinus Torvalds	select ISA
8271da177e4SLinus Torvalds	select SWAP_IO_SPACE
828ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
829ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
8301da177e4SLinus Torvalds	help
8311da177e4SLinus Torvalds	  This Toshiba board is based on the TX4927 processor. Say Y here to
8321da177e4SLinus Torvalds	  support this machine type
8331da177e4SLinus Torvalds
8341da177e4SLinus Torvaldsconfig TOSHIBA_FPCIB0
8351da177e4SLinus Torvalds	bool "FPCIB0 Backplane Support"
8361da177e4SLinus Torvalds	depends on TOSHIBA_RBTX4927
8371da177e4SLinus Torvalds
83829c48699SRalf Baechlesource "arch/mips/sgi-ip27/Kconfig"
83938b18f72SRalf Baechlesource "arch/mips/sibyte/Kconfig"
840*bdf21b18SPete Popovsource "arch/mips/philips/pnx8550/common/Kconfig"
84138b18f72SRalf Baechle
8421da177e4SLinus Torvaldsconfig RWSEM_GENERIC_SPINLOCK
8431da177e4SLinus Torvalds	bool
8441da177e4SLinus Torvalds	default y
8451da177e4SLinus Torvalds
8461da177e4SLinus Torvaldsconfig RWSEM_XCHGADD_ALGORITHM
8471da177e4SLinus Torvalds	bool
8485eaf7a21SRalf Baechle	select HAS_TXX9_SERIAL
8491da177e4SLinus Torvalds
8501da177e4SLinus Torvaldsconfig GENERIC_CALIBRATE_DELAY
8511da177e4SLinus Torvalds	bool
8521da177e4SLinus Torvalds	default y
8531da177e4SLinus Torvalds
8541da177e4SLinus Torvalds#
8551da177e4SLinus Torvalds# Select some configuration options automatically based on user selections.
8561da177e4SLinus Torvalds#
8571da177e4SLinus Torvaldsconfig ARC
8581da177e4SLinus Torvalds	bool
8591da177e4SLinus Torvalds	depends on SNI_RM200_PCI || SGI_IP32 || SGI_IP27 || SGI_IP22 || MIPS_MAGNUM_4000 || OLIVETTI_M700 || ACER_PICA_61
8601da177e4SLinus Torvalds	default y
8611da177e4SLinus Torvalds
8621da177e4SLinus Torvaldsconfig DMA_COHERENT
8631da177e4SLinus Torvalds	bool
8641da177e4SLinus Torvalds
8651da177e4SLinus Torvaldsconfig DMA_IP27
8661da177e4SLinus Torvalds	bool
8671da177e4SLinus Torvalds
8684ce588cdSRalf Baechleconfig DMA_IP32
8694ce588cdSRalf Baechle	bool
8704ce588cdSRalf Baechle	select DMA_NEED_PCI_MAP_STATE
8714ce588cdSRalf Baechle
8721da177e4SLinus Torvaldsconfig DMA_NONCOHERENT
8731da177e4SLinus Torvalds	bool
8744ce588cdSRalf Baechle	select DMA_NEED_PCI_MAP_STATE
8754ce588cdSRalf Baechle
8764ce588cdSRalf Baechleconfig DMA_NEED_PCI_MAP_STATE
8774ce588cdSRalf Baechle	bool
8781da177e4SLinus Torvalds
8791da177e4SLinus Torvaldsconfig EARLY_PRINTK
8801da177e4SLinus Torvalds	bool
8811da177e4SLinus Torvalds	depends on MACH_DECSTATION
8821da177e4SLinus Torvalds	default y
8831da177e4SLinus Torvalds
8841da177e4SLinus Torvaldsconfig GENERIC_ISA_DMA
8851da177e4SLinus Torvalds	bool
8861da177e4SLinus Torvalds	depends on SNI_RM200_PCI || MIPS_MAGNUM_4000 || OLIVETTI_M700 || ACER_PICA_61 || MIPS_MALTA
8871da177e4SLinus Torvalds	default y
8881da177e4SLinus Torvalds
8891da177e4SLinus Torvaldsconfig I8259
8901da177e4SLinus Torvalds	bool
8911da177e4SLinus Torvalds	depends on SNI_RM200_PCI || DDB5477 || DDB5476 || DDB5074 || MACH_JAZZ || MIPS_MALTA || MIPS_COBALT
8921da177e4SLinus Torvalds	default y
8931da177e4SLinus Torvalds
8941da177e4SLinus Torvaldsconfig LIMITED_DMA
8951da177e4SLinus Torvalds	bool
8961da177e4SLinus Torvalds	select HIGHMEM
8971da177e4SLinus Torvalds
8981da177e4SLinus Torvaldsconfig MIPS_BONITO64
8991da177e4SLinus Torvalds	bool
9001da177e4SLinus Torvalds	depends on MIPS_ATLAS || MIPS_MALTA
9011da177e4SLinus Torvalds	default y
9021da177e4SLinus Torvalds
9031da177e4SLinus Torvaldsconfig MIPS_MSC
9041da177e4SLinus Torvalds	bool
9051da177e4SLinus Torvalds	depends on MIPS_ATLAS || MIPS_MALTA
9061da177e4SLinus Torvalds	default y
9071da177e4SLinus Torvalds
9081da177e4SLinus Torvaldsconfig MIPS_NILE4
9091da177e4SLinus Torvalds	bool
9101da177e4SLinus Torvalds	depends on LASAT
9111da177e4SLinus Torvalds	default y
9121da177e4SLinus Torvalds
9131da177e4SLinus Torvaldsconfig MIPS_DISABLE_OBSOLETE_IDE
9141da177e4SLinus Torvalds	bool
9151da177e4SLinus Torvalds
9161da177e4SLinus Torvaldsconfig CPU_LITTLE_ENDIAN
9171da177e4SLinus Torvalds	bool "Generate little endian code"
918ab1418a3SAdrian 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
9191da177e4SLinus Torvalds	default n if MIPS_EV64120 || MIPS_EV96100 || MOMENCO_OCELOT || MOMENCO_OCELOT_G || SGI_IP22 || SGI_IP27 || SGI_IP32 || TOSHIBA_JMR3927
9201da177e4SLinus Torvalds	help
9211da177e4SLinus Torvalds	  Some MIPS machines can be configured for either little or big endian
9221da177e4SLinus Torvalds	  byte order. These modes require different kernels. Say Y if your
9231da177e4SLinus Torvalds	  machine is little endian, N if it's a big endian machine.
9241da177e4SLinus Torvalds
9251da177e4SLinus Torvaldsconfig IRQ_CPU
9261da177e4SLinus Torvalds	bool
9271da177e4SLinus Torvalds
9281da177e4SLinus Torvaldsconfig IRQ_CPU_RM7K
9291da177e4SLinus Torvalds	bool
9301da177e4SLinus Torvalds
9311da177e4SLinus Torvaldsconfig IRQ_MV64340
9321da177e4SLinus Torvalds	bool
9331da177e4SLinus Torvalds
9341da177e4SLinus Torvaldsconfig DDB5XXX_COMMON
9351da177e4SLinus Torvalds	bool
9361da177e4SLinus Torvalds	depends on DDB5074 || DDB5476 || DDB5477
9371da177e4SLinus Torvalds	default y
9381da177e4SLinus Torvalds
9391da177e4SLinus Torvaldsconfig MIPS_BOARDS_GEN
9401da177e4SLinus Torvalds	bool
9411da177e4SLinus Torvalds	depends on MIPS_ATLAS || MIPS_MALTA || MIPS_SEAD
9421da177e4SLinus Torvalds	default y
9431da177e4SLinus Torvalds
9441da177e4SLinus Torvaldsconfig MIPS_GT64111
9451da177e4SLinus Torvalds	bool
9461da177e4SLinus Torvalds	depends on MIPS_COBALT
9471da177e4SLinus Torvalds	default y
9481da177e4SLinus Torvalds
9491da177e4SLinus Torvaldsconfig MIPS_GT64120
9501da177e4SLinus Torvalds	bool
9511da177e4SLinus Torvalds	depends on MIPS_EV64120 || MIPS_EV96100 || LASAT || MIPS_ATLAS || MIPS_MALTA || MOMENCO_OCELOT
9521da177e4SLinus Torvalds	default y
9531da177e4SLinus Torvalds
9541da177e4SLinus Torvaldsconfig MIPS_TX3927
9551da177e4SLinus Torvalds	bool
9561da177e4SLinus Torvalds	depends on TOSHIBA_JMR3927
9571da177e4SLinus Torvalds	select HAS_TXX9_SERIAL
9581da177e4SLinus Torvalds	default y
9591da177e4SLinus Torvalds
9601da177e4SLinus Torvaldsconfig PCI_MARVELL
9611da177e4SLinus Torvalds	bool
9621da177e4SLinus Torvalds
9631da177e4SLinus Torvaldsconfig ITE_BOARD_GEN
9641da177e4SLinus Torvalds	bool
9651da177e4SLinus Torvalds	depends on MIPS_IVR || MIPS_ITE8172
9661da177e4SLinus Torvalds	default y
9671da177e4SLinus Torvalds
968*bdf21b18SPete Popovconfig PNX8550
969*bdf21b18SPete Popov	bool
970*bdf21b18SPete Popov	select SOC_PNX8550
971*bdf21b18SPete Popov
972*bdf21b18SPete Popovconfig SOC_PNX8550
973*bdf21b18SPete Popov	bool
974*bdf21b18SPete Popov	select SYS_SUPPORTS_32BIT_KERNEL
975*bdf21b18SPete Popov	select DMA_NONCOHERENT
976*bdf21b18SPete Popov	select HW_HAS_PCI
977*bdf21b18SPete Popov
9781da177e4SLinus Torvaldsconfig SWAP_IO_SPACE
9791da177e4SLinus Torvalds	bool
9801da177e4SLinus Torvalds
9811da177e4SLinus Torvalds#
9821da177e4SLinus Torvalds# Unfortunately not all GT64120 systems run the chip at the same clock.
9831da177e4SLinus Torvalds# As the user for the clock rate and try to minimize the available options.
9841da177e4SLinus Torvalds#
9851da177e4SLinus Torvaldschoice
9861da177e4SLinus Torvalds	prompt "Galileo Chip Clock"
9871da177e4SLinus Torvalds	#default SYSCLK_83 if MIPS_EV64120
9881da177e4SLinus Torvalds	depends on MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G
9891da177e4SLinus Torvalds	default SYSCLK_83 if MIPS_EV64120
9901da177e4SLinus Torvalds	default SYSCLK_100 if MOMENCO_OCELOT || MOMENCO_OCELOT_G
9911da177e4SLinus Torvalds
9921da177e4SLinus Torvaldsconfig SYSCLK_75
9931da177e4SLinus Torvalds	bool "75" if MIPS_EV64120
9941da177e4SLinus Torvalds
9951da177e4SLinus Torvaldsconfig SYSCLK_83
9961da177e4SLinus Torvalds	bool "83.3" if MIPS_EV64120
9971da177e4SLinus Torvalds
9981da177e4SLinus Torvaldsconfig SYSCLK_100
9991da177e4SLinus Torvalds	bool "100" if MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G
10001da177e4SLinus Torvalds
10011da177e4SLinus Torvaldsendchoice
10021da177e4SLinus Torvalds
10031da177e4SLinus Torvaldsconfig AU1X00_USB_DEVICE
10041da177e4SLinus Torvalds	bool
10051da177e4SLinus Torvalds	depends on MIPS_PB1500 || MIPS_PB1100 || MIPS_PB1000
10061da177e4SLinus Torvalds	default n
10071da177e4SLinus Torvalds
10081da177e4SLinus Torvaldsconfig MIPS_GT96100
10091da177e4SLinus Torvalds	bool
10101da177e4SLinus Torvalds	depends on MIPS_EV96100
10111da177e4SLinus Torvalds	default y
10121da177e4SLinus Torvalds	help
10131da177e4SLinus Torvalds	  Say Y here to support the Galileo Technology GT96100 communications
10141da177e4SLinus Torvalds	  controller card.  There is a web page at <http://www.galileot.com/>.
10151da177e4SLinus Torvalds
10161da177e4SLinus Torvaldsconfig IT8172_CIR
10171da177e4SLinus Torvalds	bool
10181da177e4SLinus Torvalds	depends on MIPS_ITE8172 || MIPS_IVR
10191da177e4SLinus Torvalds	default y
10201da177e4SLinus Torvalds
10211da177e4SLinus Torvaldsconfig IT8712
10221da177e4SLinus Torvalds	bool
10231da177e4SLinus Torvalds	depends on MIPS_ITE8172
10241da177e4SLinus Torvalds	default y
10251da177e4SLinus Torvalds
10261da177e4SLinus Torvaldsconfig BOOT_ELF32
10271da177e4SLinus Torvalds	bool
10281da177e4SLinus 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
10291da177e4SLinus Torvalds	default y
10301da177e4SLinus Torvalds
10311da177e4SLinus Torvaldsconfig MIPS_L1_CACHE_SHIFT
10321da177e4SLinus Torvalds	int
10331da177e4SLinus Torvalds	default "4" if MACH_DECSTATION
10341da177e4SLinus Torvalds	default "7" if SGI_IP27
10351da177e4SLinus Torvalds	default "5"
10361da177e4SLinus Torvalds
10371da177e4SLinus Torvaldsconfig ARC32
10381da177e4SLinus Torvalds	bool
10391da177e4SLinus Torvalds	depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP22 || SGI_IP32
10401da177e4SLinus Torvalds	default y
10411da177e4SLinus Torvalds
10421da177e4SLinus Torvaldsconfig HAVE_STD_PC_SERIAL_PORT
10431da177e4SLinus Torvalds	bool
10441da177e4SLinus Torvalds
10451da177e4SLinus Torvaldsconfig ARC_CONSOLE
10461da177e4SLinus Torvalds	bool "ARC console support"
10471da177e4SLinus Torvalds	depends on SGI_IP22 || SNI_RM200_PCI
10481da177e4SLinus Torvalds
10491da177e4SLinus Torvaldsconfig ARC_MEMORY
10501da177e4SLinus Torvalds	bool
10511da177e4SLinus Torvalds	depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP32
10521da177e4SLinus Torvalds	default y
10531da177e4SLinus Torvalds
10541da177e4SLinus Torvaldsconfig ARC_PROMLIB
10551da177e4SLinus Torvalds	bool
10561da177e4SLinus Torvalds	depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP22 || SGI_IP32
10571da177e4SLinus Torvalds	default y
10581da177e4SLinus Torvalds
10591da177e4SLinus Torvaldsconfig ARC64
10601da177e4SLinus Torvalds	bool
10611da177e4SLinus Torvalds	depends on SGI_IP27
10621da177e4SLinus Torvalds	default y
10631da177e4SLinus Torvalds
10641da177e4SLinus Torvaldsconfig BOOT_ELF64
10651da177e4SLinus Torvalds	bool
10661da177e4SLinus Torvalds	depends on SGI_IP27
10671da177e4SLinus Torvalds	default y
10681da177e4SLinus Torvalds
10691da177e4SLinus Torvalds#config MAPPED_PCI_IO y
10701da177e4SLinus Torvalds#	bool
10711da177e4SLinus Torvalds#	depends on SGI_IP27
10721da177e4SLinus Torvalds#	default y
10731da177e4SLinus Torvalds
10741da177e4SLinus Torvaldsconfig QL_ISP_A64
10751da177e4SLinus Torvalds	bool
10761da177e4SLinus Torvalds	depends on SGI_IP27
10771da177e4SLinus Torvalds	default y
10781da177e4SLinus Torvalds
10791da177e4SLinus Torvaldsconfig TOSHIBA_BOARDS
10801da177e4SLinus Torvalds	bool
10811da177e4SLinus Torvalds	depends on TOSHIBA_JMR3927 || TOSHIBA_RBTX4927
10821da177e4SLinus Torvalds	default y
10831da177e4SLinus Torvalds
10841da177e4SLinus Torvaldsendmenu
10851da177e4SLinus Torvalds
10861da177e4SLinus Torvaldsmenu "CPU selection"
10871da177e4SLinus Torvalds
10881da177e4SLinus Torvaldschoice
10891da177e4SLinus Torvalds	prompt "CPU type"
10901da177e4SLinus Torvalds	default CPU_R4X00
10911da177e4SLinus Torvalds
10926e760c8dSRalf Baechleconfig CPU_MIPS32_R1
10936e760c8dSRalf Baechle	bool "MIPS32 Release 1"
1094ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
10956e760c8dSRalf Baechle	select CPU_HAS_PREFETCH
10966e760c8dSRalf Baechle	help
10971e5f1caaSRalf Baechle	  Choose this option to build a kernel for release 2 or later of the
10981e5f1caaSRalf Baechle	  MIPS32 architecture.  Most modern embedded systems with a 32-bit
10991e5f1caaSRalf Baechle	  MIPS processor are based on a MIPS32 processor.  If you know the
11001e5f1caaSRalf Baechle	  specific type of processor in your system, choose those that one
11011e5f1caaSRalf Baechle	  otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
11021e5f1caaSRalf Baechle	  Release 2 of the MIPS32 architecture is available since several
11031e5f1caaSRalf Baechle	  years so chances are you even have a MIPS32 Release 2 processor
11041e5f1caaSRalf Baechle	  in which case you should choose CPU_MIPS32_R2 instead for better
11051e5f1caaSRalf Baechle	  performance.
11061e5f1caaSRalf Baechle
11071e5f1caaSRalf Baechleconfig CPU_MIPS32_R2
11081e5f1caaSRalf Baechle	bool "MIPS32 Release 2"
11091e5f1caaSRalf Baechle	select CPU_SUPPORTS_32BIT_KERNEL
11101e5f1caaSRalf Baechle	select CPU_HAS_PREFETCH
11111e5f1caaSRalf Baechle	help
11126e760c8dSRalf Baechle	  Choose this option to build a kernel for release 1 or later of the
11136e760c8dSRalf Baechle	  MIPS32 architecture.  Most modern embedded systems with a 32-bit
11146e760c8dSRalf Baechle	  MIPS processor are based on a MIPS32 processor.  If you know the
11156e760c8dSRalf Baechle	  specific type of processor in your system, choose those that one
11166e760c8dSRalf Baechle	  otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
11171da177e4SLinus Torvalds
11186e760c8dSRalf Baechleconfig CPU_MIPS64_R1
11196e760c8dSRalf Baechle	bool "MIPS64 Release 1"
1120ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1121ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11226e760c8dSRalf Baechle	select CPU_HAS_PREFETCH
11236e760c8dSRalf Baechle	help
11246e760c8dSRalf Baechle	  Choose this option to build a kernel for release 1 or later of the
11256e760c8dSRalf Baechle	  MIPS64 architecture.  Many modern embedded systems with a 64-bit
11266e760c8dSRalf Baechle	  MIPS processor are based on a MIPS64 processor.  If you know the
11276e760c8dSRalf Baechle	  specific type of processor in your system, choose those that one
11286e760c8dSRalf Baechle	  otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
11291e5f1caaSRalf Baechle	  Release 2 of the MIPS64 architecture is available since several
11301e5f1caaSRalf Baechle	  years so chances are you even have a MIPS64 Release 2 processor
11311e5f1caaSRalf Baechle	  in which case you should choose CPU_MIPS64_R2 instead for better
11321e5f1caaSRalf Baechle	  performance.
11331e5f1caaSRalf Baechle
11341e5f1caaSRalf Baechleconfig CPU_MIPS64_R2
11351e5f1caaSRalf Baechle	bool "MIPS64 Release 2"
11361e5f1caaSRalf Baechle	select CPU_SUPPORTS_32BIT_KERNEL
11371e5f1caaSRalf Baechle	select CPU_SUPPORTS_64BIT_KERNEL
11381e5f1caaSRalf Baechle	select CPU_HAS_PREFETCH
11391e5f1caaSRalf Baechle	help
11401e5f1caaSRalf Baechle	  Choose this option to build a kernel for release 2 or later of the
11411e5f1caaSRalf Baechle	  MIPS64 architecture.  Many modern embedded systems with a 64-bit
11421e5f1caaSRalf Baechle	  MIPS processor are based on a MIPS64 processor.  If you know the
11431e5f1caaSRalf Baechle	  specific type of processor in your system, choose those that one
11441e5f1caaSRalf Baechle	  otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
11451da177e4SLinus Torvalds
11461da177e4SLinus Torvaldsconfig CPU_R3000
11471da177e4SLinus Torvalds	bool "R3000"
1148ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
11491da177e4SLinus Torvalds	help
11501da177e4SLinus Torvalds	  Please make sure to pick the right CPU type. Linux/MIPS is not
11511da177e4SLinus Torvalds	  designed to be generic, i.e. Kernels compiled for R3000 CPUs will
11521da177e4SLinus Torvalds	  *not* work on R4000 machines and vice versa.  However, since most
11531da177e4SLinus Torvalds	  of the supported machines have an R4000 (or similar) CPU, R4x00
11541da177e4SLinus Torvalds	  might be a safe bet.  If the resulting kernel does not work,
11551da177e4SLinus Torvalds	  try to recompile with R3000.
11561da177e4SLinus Torvalds
11571da177e4SLinus Torvaldsconfig CPU_TX39XX
11581da177e4SLinus Torvalds	bool "R39XX"
1159ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
11601da177e4SLinus Torvalds
11611da177e4SLinus Torvaldsconfig CPU_VR41XX
11621da177e4SLinus Torvalds	bool "R41xx"
1163ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1164ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11651da177e4SLinus Torvalds	help
11661da177e4SLinus Torvalds	  The options selects support for the NEC VR41xx series of processors.
11671da177e4SLinus Torvalds	  Only choose this option if you have one of these processors as a
11681da177e4SLinus Torvalds	  kernel built with this option will not run on any other type of
11691da177e4SLinus Torvalds	  processor or vice versa.
11701da177e4SLinus Torvalds
11711da177e4SLinus Torvaldsconfig CPU_R4300
11721da177e4SLinus Torvalds	bool "R4300"
1173ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1174ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11751da177e4SLinus Torvalds	help
11761da177e4SLinus Torvalds	  MIPS Technologies R4300-series processors.
11771da177e4SLinus Torvalds
11781da177e4SLinus Torvaldsconfig CPU_R4X00
11791da177e4SLinus Torvalds	bool "R4x00"
1180ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1181ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11821da177e4SLinus Torvalds	help
11831da177e4SLinus Torvalds	  MIPS Technologies R4000-series processors other than 4300, including
11841da177e4SLinus Torvalds	  the R4000, R4400, R4600, and 4700.
11851da177e4SLinus Torvalds
11861da177e4SLinus Torvaldsconfig CPU_TX49XX
11871da177e4SLinus Torvalds	bool "R49XX"
1188ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1189ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11901da177e4SLinus Torvalds
11911da177e4SLinus Torvaldsconfig CPU_R5000
11921da177e4SLinus Torvalds	bool "R5000"
1193ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1194ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11951da177e4SLinus Torvalds	help
11961da177e4SLinus Torvalds	  MIPS Technologies R5000-series processors other than the Nevada.
11971da177e4SLinus Torvalds
11981da177e4SLinus Torvaldsconfig CPU_R5432
11991da177e4SLinus Torvalds	bool "R5432"
12001da177e4SLinus Torvalds
12011da177e4SLinus Torvaldsconfig CPU_R6000
12021da177e4SLinus Torvalds	bool "R6000"
1203ed5ba2fbSYoichi Yuasa	depends on EXPERIMENTAL
1204ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
12051da177e4SLinus Torvalds	help
12061da177e4SLinus Torvalds	  MIPS Technologies R6000 and R6000A series processors.  Note these
12071da177e4SLinus Torvalds	  processors are extremly rare and the support for them is incomplete.
12081da177e4SLinus Torvalds
12091da177e4SLinus Torvaldsconfig CPU_NEVADA
12101da177e4SLinus Torvalds	bool "RM52xx"
1211ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1212ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12131da177e4SLinus Torvalds	help
12141da177e4SLinus Torvalds	  QED / PMC-Sierra RM52xx-series ("Nevada") processors.
12151da177e4SLinus Torvalds
12161da177e4SLinus Torvaldsconfig CPU_R8000
12171da177e4SLinus Torvalds	bool "R8000"
1218ed5ba2fbSYoichi Yuasa	depends on EXPERIMENTAL
1219ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12201da177e4SLinus Torvalds	help
12211da177e4SLinus Torvalds	  MIPS Technologies R8000 processors.  Note these processors are
12221da177e4SLinus Torvalds	  uncommon and the support for them is incomplete.
12231da177e4SLinus Torvalds
12241da177e4SLinus Torvaldsconfig CPU_R10000
12251da177e4SLinus Torvalds	bool "R10000"
1226ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1227ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12281da177e4SLinus Torvalds	help
12291da177e4SLinus Torvalds	  MIPS Technologies R10000-series processors.
12301da177e4SLinus Torvalds
12311da177e4SLinus Torvaldsconfig CPU_RM7000
12321da177e4SLinus Torvalds	bool "RM7000"
1233ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1234ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12351da177e4SLinus Torvalds
12361da177e4SLinus Torvaldsconfig CPU_RM9000
12371da177e4SLinus Torvalds	bool "RM9000"
1238ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1239ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12401da177e4SLinus Torvalds
12411da177e4SLinus Torvaldsconfig CPU_SB1
12421da177e4SLinus Torvalds	bool "SB1"
1243ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1244ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12451da177e4SLinus Torvalds
12461da177e4SLinus Torvaldsendchoice
12471da177e4SLinus Torvalds
12481da177e4SLinus Torvaldschoice
12491da177e4SLinus Torvalds	prompt "Kernel page size"
12501da177e4SLinus Torvalds	default PAGE_SIZE_4KB
12511da177e4SLinus Torvalds
12521da177e4SLinus Torvaldsconfig PAGE_SIZE_4KB
12531da177e4SLinus Torvalds	bool "4kB"
12541da177e4SLinus Torvalds	help
12551da177e4SLinus Torvalds	 This option select the standard 4kB Linux page size.  On some
12561da177e4SLinus Torvalds	 R3000-family processors this is the only available page size.  Using
12571da177e4SLinus Torvalds	 4kB page size will minimize memory consumption and is therefore
12581da177e4SLinus Torvalds	 recommended for low memory systems.
12591da177e4SLinus Torvalds
12601da177e4SLinus Torvaldsconfig PAGE_SIZE_8KB
12611da177e4SLinus Torvalds	bool "8kB"
12621da177e4SLinus Torvalds	depends on EXPERIMENTAL && CPU_R8000
12631da177e4SLinus Torvalds	help
12641da177e4SLinus Torvalds	  Using 8kB page size will result in higher performance kernel at
12651da177e4SLinus Torvalds	  the price of higher memory consumption.  This option is available
12661da177e4SLinus Torvalds	  only on the R8000 processor.  Not that at the time of this writing
12671da177e4SLinus Torvalds	  this option is still high experimental; there are also issues with
12681da177e4SLinus Torvalds	  compatibility of user applications.
12691da177e4SLinus Torvalds
12701da177e4SLinus Torvaldsconfig PAGE_SIZE_16KB
12711da177e4SLinus Torvalds	bool "16kB"
12721da177e4SLinus Torvalds	depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX
12731da177e4SLinus Torvalds	help
12741da177e4SLinus Torvalds	  Using 16kB page size will result in higher performance kernel at
12751da177e4SLinus Torvalds	  the price of higher memory consumption.  This option is available on
12761da177e4SLinus Torvalds	  all non-R3000 family processor.  Not that at the time of this
12771da177e4SLinus Torvalds	  writing this option is still high experimental; there are also
12781da177e4SLinus Torvalds	  issues with compatibility of user applications.
12791da177e4SLinus Torvalds
12801da177e4SLinus Torvaldsconfig PAGE_SIZE_64KB
12811da177e4SLinus Torvalds	bool "64kB"
12821da177e4SLinus Torvalds	depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX
12831da177e4SLinus Torvalds	help
12841da177e4SLinus Torvalds	  Using 64kB page size will result in higher performance kernel at
12851da177e4SLinus Torvalds	  the price of higher memory consumption.  This option is available on
12861da177e4SLinus Torvalds	  all non-R3000 family processor.  Not that at the time of this
12871da177e4SLinus Torvalds	  writing this option is still high experimental; there are also
12881da177e4SLinus Torvalds	  issues with compatibility of user applications.
12891da177e4SLinus Torvalds
12901da177e4SLinus Torvaldsendchoice
12911da177e4SLinus Torvalds
12921da177e4SLinus Torvaldsconfig BOARD_SCACHE
12931da177e4SLinus Torvalds	bool
12941da177e4SLinus Torvalds
12951da177e4SLinus Torvaldsconfig IP22_CPU_SCACHE
12961da177e4SLinus Torvalds	bool
12971da177e4SLinus Torvalds	select BOARD_SCACHE
12981da177e4SLinus Torvalds
12991da177e4SLinus Torvaldsconfig R5000_CPU_SCACHE
13001da177e4SLinus Torvalds	bool
13011da177e4SLinus Torvalds	select BOARD_SCACHE
13021da177e4SLinus Torvalds
13031da177e4SLinus Torvaldsconfig RM7000_CPU_SCACHE
13041da177e4SLinus Torvalds	bool
13051da177e4SLinus Torvalds	select BOARD_SCACHE
13061da177e4SLinus Torvalds
13071da177e4SLinus Torvaldsconfig SIBYTE_DMA_PAGEOPS
13081da177e4SLinus Torvalds	bool "Use DMA to clear/copy pages"
13091da177e4SLinus Torvalds	depends on CPU_SB1
13101da177e4SLinus Torvalds	help
13111da177e4SLinus Torvalds	  Instead of using the CPU to zero and copy pages, use a Data Mover
13121da177e4SLinus Torvalds	  channel.  These DMA channels are otherwise unused by the standard
13131da177e4SLinus Torvalds	  SiByte Linux port.  Seems to give a small performance benefit.
13141da177e4SLinus Torvalds
13151da177e4SLinus Torvaldsconfig CPU_HAS_PREFETCH
13161da177e4SLinus Torvalds	bool "Enable prefetches" if CPU_SB1 && !CPU_SB1_PASS_2
13171da177e4SLinus Torvalds	default y if CPU_MIPS32 || CPU_MIPS64 || CPU_RM7000 || CPU_RM9000 || CPU_R10000
13181da177e4SLinus Torvalds
1319e01402b1SRalf Baechleconfig MIPS_MT
1320e01402b1SRalf Baechle	bool "Enable MIPS MT"
1321e01402b1SRalf Baechle
1322e01402b1SRalf Baechleconfig MIPS_VPE_LOADER
1323e01402b1SRalf Baechle	bool "VPE loader support."
1324e01402b1SRalf Baechle	depends on MIPS_MT
1325e01402b1SRalf Baechle	help
1326e01402b1SRalf Baechle	  Includes a loader for loading an elf relocatable object
1327e01402b1SRalf Baechle	  onto another VPE and running it.
1328e01402b1SRalf Baechle
1329e01402b1SRalf Baechleconfig MIPS_VPE_LOADER_TOM
1330e01402b1SRalf Baechle	bool "Load VPE program into memory hidden from linux"
1331e01402b1SRalf Baechle	depends on MIPS_VPE_LOADER
1332e01402b1SRalf Baechle	default y
1333e01402b1SRalf Baechle	help
1334e01402b1SRalf Baechle	  The loader can use memory that is present but has been hidden from
1335e01402b1SRalf Baechle	  Linux using the kernel command line option "mem=xxMB". It's up to
1336e01402b1SRalf Baechle	  you to ensure the amount you put in the option and the space your
1337e01402b1SRalf Baechle	  program requires is less or equal to the amount physically present.
1338e01402b1SRalf Baechle
1339e01402b1SRalf Baechle# this should possibly be in drivers/char, but it is rather cpu related. Hmmm
1340e01402b1SRalf Baechleconfig MIPS_VPE_APSP_API
1341e01402b1SRalf Baechle      bool "Enable support for AP/SP API (RTLX)"
1342e01402b1SRalf Baechle      depends on MIPS_VPE_LOADER
1343e01402b1SRalf Baechle
13441da177e4SLinus Torvaldsconfig VTAG_ICACHE
13451da177e4SLinus Torvalds	bool "Support for Virtual Tagged I-cache" if CPU_MIPS64 || CPU_MIPS32
13461da177e4SLinus Torvalds	default y if CPU_SB1
13471da177e4SLinus Torvalds
13481da177e4SLinus Torvaldsconfig SB1_PASS_1_WORKAROUNDS
13491da177e4SLinus Torvalds	bool
13501da177e4SLinus Torvalds	depends on CPU_SB1_PASS_1
13511da177e4SLinus Torvalds	default y
13521da177e4SLinus Torvalds
13531da177e4SLinus Torvaldsconfig SB1_PASS_2_WORKAROUNDS
13541da177e4SLinus Torvalds	bool
13551da177e4SLinus Torvalds	depends on CPU_SB1 && (CPU_SB1_PASS_2_2 || CPU_SB1_PASS_2)
13561da177e4SLinus Torvalds	default y
13571da177e4SLinus Torvalds
13581da177e4SLinus Torvaldsconfig SB1_PASS_2_1_WORKAROUNDS
13591da177e4SLinus Torvalds	bool
13601da177e4SLinus Torvalds	depends on CPU_SB1 && CPU_SB1_PASS_2
13611da177e4SLinus Torvalds	default y
13621da177e4SLinus Torvalds
13631da177e4SLinus Torvaldsconfig 64BIT_PHYS_ADDR
13641da177e4SLinus Torvalds	bool "Support for 64-bit physical address space"
13656e760c8dSRalf Baechle	depends on (CPU_R4X00 || CPU_R5000 || CPU_RM7000 || CPU_RM9000 || CPU_R10000 || CPU_SB1 || CPU_MIPS32_R1 || CPU_MIPS64_R1) && 32BIT
13661da177e4SLinus Torvalds
13671da177e4SLinus Torvaldsconfig CPU_ADVANCED
13681da177e4SLinus Torvalds	bool "Override CPU Options"
1369875d43e7SRalf Baechle	depends on 32BIT
13701da177e4SLinus Torvalds	help
13711da177e4SLinus Torvalds	  Saying yes here allows you to select support for various features
13721da177e4SLinus Torvalds	  your CPU may or may not have.  Most people should say N here.
13731da177e4SLinus Torvalds
13741da177e4SLinus Torvaldsconfig CPU_HAS_LLSC
13751da177e4SLinus Torvalds	bool "ll/sc Instructions available" if CPU_ADVANCED
13761da177e4SLinus Torvalds	default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX
13771da177e4SLinus Torvalds	help
13781da177e4SLinus Torvalds	  MIPS R4000 series and later provide the Load Linked (ll)
13791da177e4SLinus Torvalds	  and Store Conditional (sc) instructions. More information is
13801da177e4SLinus Torvalds	  available at <http://www.go-ecs.com/mips/miptek1.htm>.
13811da177e4SLinus Torvalds
13821da177e4SLinus Torvalds	  Say Y here if your CPU has the ll and sc instructions.  Say Y here
13831da177e4SLinus Torvalds	  for better performance, N if you don't know.  You must say Y here
13841da177e4SLinus Torvalds	  for multiprocessor machines.
13851da177e4SLinus Torvalds
13861da177e4SLinus Torvaldsconfig CPU_HAS_LLDSCD
13871da177e4SLinus Torvalds	bool "lld/scd Instructions available" if CPU_ADVANCED
13886e760c8dSRalf Baechle	default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX && !CPU_MIPS32_R1
13891da177e4SLinus Torvalds	help
13901da177e4SLinus Torvalds	  Say Y here if your CPU has the lld and scd instructions, the 64-bit
13911da177e4SLinus Torvalds	  equivalents of ll and sc.  Say Y here for better performance, N if
13921da177e4SLinus Torvalds	  you don't know.  You must say Y here for multiprocessor machines.
13931da177e4SLinus Torvalds
13941da177e4SLinus Torvaldsconfig CPU_HAS_WB
13951da177e4SLinus Torvalds	bool "Writeback Buffer available" if CPU_ADVANCED
13961da177e4SLinus Torvalds	default y if !CPU_ADVANCED && CPU_R3000 && MACH_DECSTATION
13971da177e4SLinus Torvalds	help
13981da177e4SLinus Torvalds	  Say N here for slightly better performance.  You must say Y here for
13991da177e4SLinus Torvalds	  machines which require flushing of write buffers in software.  Saying
14001da177e4SLinus Torvalds	  Y is the safe option; N may result in kernel malfunction and crashes.
14011da177e4SLinus Torvalds
1402e01402b1SRalf Baechlemenu "MIPSR2 Interrupt handling"
1403e01402b1SRalf Baechle	depends on CPU_MIPSR2 && CPU_ADVANCED
1404e01402b1SRalf Baechle
1405e01402b1SRalf Baechleconfig CPU_MIPSR2_IRQ_VI
1406e01402b1SRalf Baechle	bool "Vectored interrupt mode"
1407e01402b1SRalf Baechle	help
1408e01402b1SRalf Baechle	   Vectored interrupt mode allowing faster dispatching of interrupts.
1409e01402b1SRalf Baechle	   The board support code needs to be written to take advantage of this
1410e01402b1SRalf Baechle	   mode.  Compatibility code is included to allow the kernel to run on
1411e01402b1SRalf Baechle	   a CPU that does not support vectored interrupts.  It's safe to
1412e01402b1SRalf Baechle	   say Y here.
1413e01402b1SRalf Baechle
1414e01402b1SRalf Baechleconfig CPU_MIPSR2_IRQ_EI
1415e01402b1SRalf Baechle	bool "External interrupt controller mode"
1416e01402b1SRalf Baechle	help
1417e01402b1SRalf Baechle	   Extended interrupt mode takes advantage of an external interrupt
1418e01402b1SRalf Baechle	   controller to allow fast dispatching from many possible interrupt
1419e01402b1SRalf Baechle	   sources. Say N unless you know that external interrupt support is
1420e01402b1SRalf Baechle	   required.
1421e01402b1SRalf Baechle
1422e01402b1SRalf Baechleconfig CPU_MIPSR2_SRS
1423e01402b1SRalf Baechle	bool "Make shadow set registers available for interrupt handlers"
1424e01402b1SRalf Baechle	depends on CPU_MIPSR2_IRQ_VI || CPU_MIPSR2_IRQ_EI
1425e01402b1SRalf Baechle	help
1426e01402b1SRalf Baechle	   Allow the kernel to use shadow register sets for fast interrupts.
1427e01402b1SRalf Baechle	   Interrupt handlers must be specially written to use shadow sets.
1428e01402b1SRalf Baechle	   Say N unless you know that shadow register set upport is needed.
1429e01402b1SRalf Baechleendmenu
1430e01402b1SRalf Baechle
14311da177e4SLinus Torvaldsconfig CPU_HAS_SYNC
14321da177e4SLinus Torvalds	bool
14331da177e4SLinus Torvalds	depends on !CPU_R3000
14341da177e4SLinus Torvalds	default y
14351da177e4SLinus Torvalds
14361da177e4SLinus Torvalds#
14371da177e4SLinus Torvalds# - Highmem only makes sense for the 32-bit kernel.
14381da177e4SLinus Torvalds# - The current highmem code will only work properly on physically indexed
14391da177e4SLinus Torvalds#   caches such as R3000, SB1, R7000 or those that look like they're virtually
14401da177e4SLinus Torvalds#   indexed such as R4000/R4400 SC and MC versions or R10000.  So for the
14411da177e4SLinus Torvalds#   moment we protect the user and offer the highmem option only on machines
14421da177e4SLinus Torvalds#   where it's known to be safe.  This will not offer highmem on a few systems
14431da177e4SLinus Torvalds#   such as MIPS32 and MIPS64 CPUs which may have virtual and physically
14441da177e4SLinus Torvalds#   indexed CPUs but we're playing safe.
14451da177e4SLinus Torvalds# - We should not offer highmem for system of which we already know that they
14461da177e4SLinus Torvalds#   don't have memory configurations that could gain from highmem support in
14471da177e4SLinus Torvalds#   the kernel because they don't support configurations with RAM at physical
14481da177e4SLinus Torvalds#   addresses > 0x20000000.
14491da177e4SLinus Torvalds#
14501da177e4SLinus Torvaldsconfig HIGHMEM
14511da177e4SLinus Torvalds	bool "High Memory Support"
1452875d43e7SRalf Baechle	depends on 32BIT && (CPU_R3000 || CPU_SB1 || CPU_R7000 || CPU_RM9000 || CPU_R10000) && !(MACH_DECSTATION || MOMENCO_JAGUAR_ATX)
14531da177e4SLinus Torvalds
1454b4819b59SYoichi Yuasaconfig ARCH_FLATMEM_ENABLE
1455b4819b59SYoichi Yuasa	def_bool y
1456b4819b59SYoichi Yuasa	depends on !NUMA
1457b4819b59SYoichi Yuasa
1458b4819b59SYoichi Yuasasource "mm/Kconfig"
1459b4819b59SYoichi Yuasa
14601da177e4SLinus Torvaldsconfig SMP
14611da177e4SLinus Torvalds	bool "Multi-Processing support"
14621da177e4SLinus Torvalds	depends on CPU_RM9000 || (SIBYTE_SB1250 && !SIBYTE_STANDALONE) || SGI_IP27
14631da177e4SLinus Torvalds	---help---
14641da177e4SLinus Torvalds	  This enables support for systems with more than one CPU. If you have
14651da177e4SLinus Torvalds	  a system with only one CPU, like most personal computers, say N. If
14661da177e4SLinus Torvalds	  you have a system with more than one CPU, say Y.
14671da177e4SLinus Torvalds
14681da177e4SLinus Torvalds	  If you say N here, the kernel will run on single and multiprocessor
14691da177e4SLinus Torvalds	  machines, but will use only one CPU of a multiprocessor machine. If
14701da177e4SLinus Torvalds	  you say Y here, the kernel will run on many, but not all,
14711da177e4SLinus Torvalds	  singleprocessor machines. On a singleprocessor machine, the kernel
14721da177e4SLinus Torvalds	  will run faster if you say N here.
14731da177e4SLinus Torvalds
14741da177e4SLinus Torvalds	  People using multiprocessor machines who say Y here should also say
14751da177e4SLinus Torvalds	  Y to "Enhanced Real Time Clock Support", below.
14761da177e4SLinus Torvalds
14771da177e4SLinus Torvalds	  See also the <file:Documentation/smp.txt> and the SMP-HOWTO
14781da177e4SLinus Torvalds	  available at <http://www.tldp.org/docs.html#howto>.
14791da177e4SLinus Torvalds
14801da177e4SLinus Torvalds	  If you don't know what to do here, say N.
14811da177e4SLinus Torvalds
14821da177e4SLinus Torvaldsconfig NR_CPUS
14831da177e4SLinus Torvalds	int "Maximum number of CPUs (2-64)"
14841da177e4SLinus Torvalds	range 2 64
14851da177e4SLinus Torvalds	depends on SMP
14861da177e4SLinus Torvalds	default "64" if SGI_IP27
14871da177e4SLinus Torvalds	default "2"
14881da177e4SLinus Torvalds	help
14891da177e4SLinus Torvalds	  This allows you to specify the maximum number of CPUs which this
14901da177e4SLinus Torvalds	  kernel will support.  The maximum supported value is 32 for 32-bit
14911da177e4SLinus Torvalds	  kernel and 64 for 64-bit kernels; the minimum value which makes
14921da177e4SLinus Torvalds	  sense is 2.
14931da177e4SLinus Torvalds
14941da177e4SLinus Torvalds	  This is purely to save memory - each supported CPU adds
14951da177e4SLinus Torvalds	  approximately eight kilobytes to the kernel image.
14961da177e4SLinus Torvalds
1497e80de850SRalf Baechlesource "kernel/Kconfig.preempt"
14981da177e4SLinus Torvalds
14991da177e4SLinus Torvaldsconfig RTC_DS1742
15001da177e4SLinus Torvalds	bool "DS1742 BRAM/RTC support"
15011da177e4SLinus Torvalds	depends on TOSHIBA_JMR3927 || TOSHIBA_RBTX4927
15021da177e4SLinus Torvalds
15031da177e4SLinus Torvaldsconfig MIPS_INSANE_LARGE
15041da177e4SLinus Torvalds	bool "Support for large 64-bit configurations"
1505875d43e7SRalf Baechle	depends on CPU_R10000 && 64BIT
15061da177e4SLinus Torvalds	help
15071da177e4SLinus Torvalds	  MIPS R10000 does support a 44 bit / 16TB address space as opposed to
15081da177e4SLinus Torvalds	  previous 64-bit processors which only supported 40 bit / 1TB. If you
15091da177e4SLinus Torvalds	  need processes of more than 1TB virtual address space, say Y here.
15101da177e4SLinus Torvalds	  This will result in additional memory usage, so it is not
15111da177e4SLinus Torvalds	  recommended for normal users.
15121da177e4SLinus Torvalds
15131da177e4SLinus Torvaldsconfig RWSEM_GENERIC_SPINLOCK
15141da177e4SLinus Torvalds	bool
15151da177e4SLinus Torvalds	default y
15161da177e4SLinus Torvalds
15171da177e4SLinus Torvaldsendmenu
15181da177e4SLinus Torvalds
15191da177e4SLinus Torvaldsmenu "Bus options (PCI, PCMCIA, EISA, ISA, TC)"
15201da177e4SLinus Torvalds
15211da177e4SLinus Torvaldsconfig HW_HAS_PCI
15221da177e4SLinus Torvalds	bool
15231da177e4SLinus Torvalds
15241da177e4SLinus Torvaldsconfig PCI
15251da177e4SLinus Torvalds	bool "Support for PCI controller"
15261da177e4SLinus Torvalds	depends on HW_HAS_PCI
15271da177e4SLinus Torvalds	help
15281da177e4SLinus Torvalds	  Find out whether you have a PCI motherboard. PCI is the name of a
15291da177e4SLinus Torvalds	  bus system, i.e. the way the CPU talks to the other stuff inside
15301da177e4SLinus Torvalds	  your box. Other bus systems are ISA, EISA, or VESA. If you have PCI,
15311da177e4SLinus Torvalds	  say Y, otherwise N.
15321da177e4SLinus Torvalds
15331da177e4SLinus Torvalds	  The PCI-HOWTO, available from
15341da177e4SLinus Torvalds	  <http://www.tldp.org/docs.html#howto>, contains valuable
15351da177e4SLinus Torvalds	  information about which PCI hardware does work under Linux and which
15361da177e4SLinus Torvalds	  doesn't.
15371da177e4SLinus Torvalds
15381da177e4SLinus Torvaldsconfig PCI_DOMAINS
15391da177e4SLinus Torvalds	bool
15401da177e4SLinus Torvalds	depends on PCI
15411da177e4SLinus Torvalds
15421da177e4SLinus Torvaldssource "drivers/pci/Kconfig"
15431da177e4SLinus Torvalds
15441da177e4SLinus Torvalds#
15451da177e4SLinus Torvalds# ISA support is now enabled via select.  Too many systems still have the one
15461da177e4SLinus Torvalds# or other ISA chip on the board that users don't know about so don't expect
15471da177e4SLinus Torvalds# users to choose the right thing ...
15481da177e4SLinus Torvalds#
15491da177e4SLinus Torvaldsconfig ISA
15501da177e4SLinus Torvalds	bool
15511da177e4SLinus Torvalds
15521da177e4SLinus Torvaldsconfig EISA
15531da177e4SLinus Torvalds	bool "EISA support"
15541da177e4SLinus Torvalds	depends on SGI_IP22 || SNI_RM200_PCI
15551da177e4SLinus Torvalds	select ISA
15561da177e4SLinus Torvalds	---help---
15571da177e4SLinus Torvalds	  The Extended Industry Standard Architecture (EISA) bus was
15581da177e4SLinus Torvalds	  developed as an open alternative to the IBM MicroChannel bus.
15591da177e4SLinus Torvalds
15601da177e4SLinus Torvalds	  The EISA bus provided some of the features of the IBM MicroChannel
15611da177e4SLinus Torvalds	  bus while maintaining backward compatibility with cards made for
15621da177e4SLinus Torvalds	  the older ISA bus.  The EISA bus saw limited use between 1988 and
15631da177e4SLinus Torvalds	  1995 when it was made obsolete by the PCI bus.
15641da177e4SLinus Torvalds
15651da177e4SLinus Torvalds	  Say Y here if you are building a kernel for an EISA-based machine.
15661da177e4SLinus Torvalds
15671da177e4SLinus Torvalds	  Otherwise, say N.
15681da177e4SLinus Torvalds
15691da177e4SLinus Torvaldssource "drivers/eisa/Kconfig"
15701da177e4SLinus Torvalds
15711da177e4SLinus Torvaldsconfig TC
15721da177e4SLinus Torvalds	bool "TURBOchannel support"
15731da177e4SLinus Torvalds	depends on MACH_DECSTATION
15741da177e4SLinus Torvalds	help
15751da177e4SLinus Torvalds	  TurboChannel is a DEC (now Compaq (now HP)) bus for Alpha and MIPS
15761da177e4SLinus Torvalds	  processors.  Documentation on writing device drivers for TurboChannel
15771da177e4SLinus Torvalds	  is available at:
15781da177e4SLinus Torvalds	  <http://www.cs.arizona.edu/computer.help/policy/DIGITAL_unix/AA-PS3HD-TET1_html/TITLE.html>.
15791da177e4SLinus Torvalds
15801da177e4SLinus Torvalds#config ACCESSBUS
15811da177e4SLinus Torvalds#	bool "Access.Bus support"
15821da177e4SLinus Torvalds#	depends on TC
15831da177e4SLinus Torvalds
15841da177e4SLinus Torvaldsconfig MMU
15851da177e4SLinus Torvalds	bool
15861da177e4SLinus Torvalds	default y
15871da177e4SLinus Torvalds
15881da177e4SLinus Torvaldsconfig MCA
15891da177e4SLinus Torvalds	bool
15901da177e4SLinus Torvalds
15911da177e4SLinus Torvaldsconfig SBUS
15921da177e4SLinus Torvalds	bool
15931da177e4SLinus Torvalds
15941da177e4SLinus Torvaldssource "drivers/pcmcia/Kconfig"
15951da177e4SLinus Torvalds
15961da177e4SLinus Torvaldssource "drivers/pci/hotplug/Kconfig"
15971da177e4SLinus Torvalds
15981da177e4SLinus Torvaldsendmenu
15991da177e4SLinus Torvalds
16001da177e4SLinus Torvaldsmenu "Executable file formats"
16011da177e4SLinus Torvalds
16021da177e4SLinus Torvaldssource "fs/Kconfig.binfmt"
16031da177e4SLinus Torvalds
16041da177e4SLinus Torvaldsconfig TRAD_SIGNALS
16051da177e4SLinus Torvalds	bool
1606875d43e7SRalf Baechle	default y if 32BIT
16071da177e4SLinus Torvalds
16081da177e4SLinus Torvaldsconfig BUILD_ELF64
16091da177e4SLinus Torvalds	bool "Use 64-bit ELF format for building"
1610875d43e7SRalf Baechle	depends on 64BIT
16111da177e4SLinus Torvalds	help
16121da177e4SLinus Torvalds	  A 64-bit kernel is usually built using the 64-bit ELF binary object
16131da177e4SLinus Torvalds	  format as it's one that allows arbitrary 64-bit constructs.  For
16141da177e4SLinus Torvalds	  kernels that are loaded within the KSEG compatibility segments the
16151da177e4SLinus Torvalds	  32-bit ELF format can optionally be used resulting in a somewhat
16161da177e4SLinus Torvalds	  smaller binary, but this option is not explicitly supported by the
16171da177e4SLinus Torvalds	  toolchain and since binutils 2.14 it does not even work at all.
16181da177e4SLinus Torvalds
16191da177e4SLinus Torvalds	  Say Y to use the 64-bit format or N to use the 32-bit one.
16201da177e4SLinus Torvalds
16211da177e4SLinus Torvalds	  If unsure say Y.
16221da177e4SLinus Torvalds
16231da177e4SLinus Torvaldsconfig BINFMT_IRIX
16241da177e4SLinus Torvalds	bool "Include IRIX binary compatibility"
1625875d43e7SRalf Baechle	depends on !CPU_LITTLE_ENDIAN && 32BIT && BROKEN
16261da177e4SLinus Torvalds
16271da177e4SLinus Torvaldsconfig MIPS32_COMPAT
16281da177e4SLinus Torvalds	bool "Kernel support for Linux/MIPS 32-bit binary compatibility"
1629875d43e7SRalf Baechle	depends on 64BIT
16301da177e4SLinus Torvalds	help
16311da177e4SLinus Torvalds	  Select this option if you want Linux/MIPS 32-bit binary
16321da177e4SLinus Torvalds	  compatibility. Since all software available for Linux/MIPS is
16331da177e4SLinus Torvalds	  currently 32-bit you should say Y here.
16341da177e4SLinus Torvalds
16351da177e4SLinus Torvaldsconfig COMPAT
16361da177e4SLinus Torvalds	bool
16371da177e4SLinus Torvalds	depends on MIPS32_COMPAT
16381da177e4SLinus Torvalds	default y
16391da177e4SLinus Torvalds
16401da177e4SLinus Torvaldsconfig MIPS32_O32
16411da177e4SLinus Torvalds	bool "Kernel support for o32 binaries"
16421da177e4SLinus Torvalds	depends on MIPS32_COMPAT
16431da177e4SLinus Torvalds	help
16441da177e4SLinus Torvalds	  Select this option if you want to run o32 binaries.  These are pure
16451da177e4SLinus Torvalds	  32-bit binaries as used by the 32-bit Linux/MIPS port.  Most of
16461da177e4SLinus Torvalds	  existing binaries are in this format.
16471da177e4SLinus Torvalds
16481da177e4SLinus Torvalds	  If unsure, say Y.
16491da177e4SLinus Torvalds
16501da177e4SLinus Torvaldsconfig MIPS32_N32
16511da177e4SLinus Torvalds	bool "Kernel support for n32 binaries"
16521da177e4SLinus Torvalds	depends on MIPS32_COMPAT
16531da177e4SLinus Torvalds	help
16541da177e4SLinus Torvalds	  Select this option if you want to run n32 binaries.  These are
16551da177e4SLinus Torvalds	  64-bit binaries using 32-bit quantities for addressing and certain
16561da177e4SLinus Torvalds	  data that would normally be 64-bit.  They are used in special
16571da177e4SLinus Torvalds	  cases.
16581da177e4SLinus Torvalds
16591da177e4SLinus Torvalds	  If unsure, say N.
16601da177e4SLinus Torvalds
16611da177e4SLinus Torvaldsconfig BINFMT_ELF32
16621da177e4SLinus Torvalds	bool
16631da177e4SLinus Torvalds	default y if MIPS32_O32 || MIPS32_N32
16641da177e4SLinus Torvalds
1665127c6f66SRalf Baechleconfig SECCOMP
1666127c6f66SRalf Baechle	bool "Enable seccomp to safely compute untrusted bytecode"
1667127c6f66SRalf Baechle	depends on PROC_FS && BROKEN
1668127c6f66SRalf Baechle	default y
1669127c6f66SRalf Baechle	help
1670127c6f66SRalf Baechle	  This kernel feature is useful for number crunching applications
1671127c6f66SRalf Baechle	  that may need to compute untrusted bytecode during their
1672127c6f66SRalf Baechle	  execution. By using pipes or other transports made available to
1673127c6f66SRalf Baechle	  the process as file descriptors supporting the read/write
1674127c6f66SRalf Baechle	  syscalls, it's possible to isolate those applications in
1675127c6f66SRalf Baechle	  their own address space using seccomp. Once seccomp is
1676127c6f66SRalf Baechle	  enabled via /proc/<pid>/seccomp, it cannot be disabled
1677127c6f66SRalf Baechle	  and the task is only allowed to execute a few safe syscalls
1678127c6f66SRalf Baechle	  defined by each seccomp mode.
1679127c6f66SRalf Baechle
1680127c6f66SRalf Baechle	  If unsure, say Y. Only embedded should say N here.
1681127c6f66SRalf Baechle
16821da177e4SLinus Torvaldsconfig PM
16831da177e4SLinus Torvalds	bool "Power Management support (EXPERIMENTAL)"
16841da177e4SLinus Torvalds	depends on EXPERIMENTAL && MACH_AU1X00
16851da177e4SLinus Torvalds
16861da177e4SLinus Torvaldsendmenu
16871da177e4SLinus Torvalds
1688d5950b43SSam Ravnborgsource "net/Kconfig"
1689d5950b43SSam Ravnborg
16901da177e4SLinus Torvaldssource "drivers/Kconfig"
16911da177e4SLinus Torvalds
16921da177e4SLinus Torvaldssource "fs/Kconfig"
16931da177e4SLinus Torvalds
16941da177e4SLinus Torvaldssource "arch/mips/Kconfig.debug"
16951da177e4SLinus Torvalds
16961da177e4SLinus Torvaldssource "security/Kconfig"
16971da177e4SLinus Torvalds
16981da177e4SLinus Torvaldssource "crypto/Kconfig"
16991da177e4SLinus Torvalds
17001da177e4SLinus Torvaldssource "lib/Kconfig"
17011da177e4SLinus Torvalds
17021da177e4SLinus Torvalds#
17031da177e4SLinus Torvalds# Use the generic interrupt handling code in kernel/irq/:
17041da177e4SLinus Torvalds#
17051da177e4SLinus Torvaldsconfig GENERIC_HARDIRQS
17061da177e4SLinus Torvalds	bool
17071da177e4SLinus Torvalds	default y
17081da177e4SLinus Torvalds
17091da177e4SLinus Torvaldsconfig GENERIC_IRQ_PROBE
17101da177e4SLinus Torvalds	bool
17111da177e4SLinus Torvalds	default y
17125cae841bSAl Viro
17135cae841bSAl Viroconfig ISA_DMA_API
17145cae841bSAl Viro	bool
17155cae841bSAl Viro	default y
1716