xref: /linux/arch/mips/Kconfig (revision 23fbee9dd5d2a41d36af49ff8e1669fb0c29fda8)
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
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
698*23fbee9dSRalf Baechleconfig TOSHIBA_RBTX4938
699*23fbee9dSRalf Baechle	bool "Support for Toshiba RBTX4938 board"
700*23fbee9dSRalf Baechle	select HAVE_STD_PC_SERIAL_PORT
701*23fbee9dSRalf Baechle	select DMA_NONCOHERENT
702*23fbee9dSRalf Baechle	select GENERIC_ISA_DMA
703*23fbee9dSRalf Baechle	select HAS_TXX9_SERIAL
704*23fbee9dSRalf Baechle	select HW_HAS_PCI
705*23fbee9dSRalf Baechle	select I8259
706*23fbee9dSRalf Baechle	select ISA
707*23fbee9dSRalf Baechle	select SWAP_IO_SPACE
708*23fbee9dSRalf Baechle	select SYS_SUPPORTS_32BIT_KERNEL
709*23fbee9dSRalf Baechle	select SYS_SUPPORTS_LITTLE_ENDIAN
710*23fbee9dSRalf Baechle	select SYS_SUPPORTS_BIG_ENDIAN
711*23fbee9dSRalf Baechle	select TOSHIBA_BOARDS
712*23fbee9dSRalf Baechle	help
713*23fbee9dSRalf Baechle	  This Toshiba board is based on the TX4938 processor. Say Y here to
714*23fbee9dSRalf Baechle	  support this machine type
715*23fbee9dSRalf Baechle
7161da177e4SLinus Torvaldsendchoice
7171da177e4SLinus Torvalds
7181da177e4SLinus Torvaldschoice
7191da177e4SLinus Torvalds	prompt "AMD/Alchemy Au1x00 board support"
7201da177e4SLinus Torvalds	depends on SOC_AU1X00
7211da177e4SLinus Torvalds	help
7221da177e4SLinus Torvalds	  These are evaluation boards built by AMD/Alchemy to
7231da177e4SLinus Torvalds	  showcase their Au1X00 Internet Edge Processors. The SOC design
7241da177e4SLinus Torvalds	  is based on the MIPS32 architecture running at 266/400/500MHz
7251da177e4SLinus Torvalds	  with many integrated peripherals. Further information can be
7261da177e4SLinus Torvalds	  found at their website, <http://www.amd.com/>. Say Y here if you
7271da177e4SLinus Torvalds	  wish to build a kernel for this platform.
7281da177e4SLinus Torvalds
7291da177e4SLinus Torvaldsconfig MIPS_PB1000
7301da177e4SLinus Torvalds	bool "PB1000 board"
7311da177e4SLinus Torvalds	depends on SOC_AU1000
7321da177e4SLinus Torvalds	select DMA_NONCOHERENT
7331da177e4SLinus Torvalds	select HW_HAS_PCI
7341da177e4SLinus Torvalds	select SWAP_IO_SPACE
7351da177e4SLinus Torvalds
7361da177e4SLinus Torvaldsconfig MIPS_PB1100
7371da177e4SLinus Torvalds	bool "PB1100 board"
7381da177e4SLinus Torvalds	depends on SOC_AU1100
7391da177e4SLinus Torvalds	select DMA_NONCOHERENT
7401da177e4SLinus Torvalds	select HW_HAS_PCI
7411da177e4SLinus Torvalds	select SWAP_IO_SPACE
7421da177e4SLinus Torvalds
7431da177e4SLinus Torvaldsconfig MIPS_PB1500
7441da177e4SLinus Torvalds	bool "PB1500 board"
7451da177e4SLinus Torvalds	depends on SOC_AU1500
746d8f5d861SPete Popov	select DMA_NONCOHERENT
7471da177e4SLinus Torvalds	select HW_HAS_PCI
7481da177e4SLinus Torvalds
7491da177e4SLinus Torvaldsconfig MIPS_PB1550
7501da177e4SLinus Torvalds	bool "PB1550 board"
7511da177e4SLinus Torvalds	depends on SOC_AU1550
7521da177e4SLinus Torvalds	select DMA_COHERENT
7531da177e4SLinus Torvalds	select HW_HAS_PCI
7541da177e4SLinus Torvalds	select MIPS_DISABLE_OBSOLETE_IDE
7551da177e4SLinus Torvalds
756e3ad1c23SPete Popovconfig MIPS_PB1200
757e3ad1c23SPete Popov	bool "AMD Alchemy PB1200 board"
758e3ad1c23SPete Popov	select SOC_AU1200
759e3ad1c23SPete Popov	select DMA_NONCOHERENT
760e3ad1c23SPete Popov	select MIPS_DISABLE_OBSOLETE_IDE
76181731f79SSteven J. Hill	select SYS_SUPPORTS_BIG_ENDIAN
762e3ad1c23SPete Popov	select SYS_SUPPORTS_LITTLE_ENDIAN
763e3ad1c23SPete Popov
7641da177e4SLinus Torvaldsconfig MIPS_DB1000
7651da177e4SLinus Torvalds	bool "DB1000 board"
7661da177e4SLinus Torvalds	depends on SOC_AU1000
7671da177e4SLinus Torvalds	select DMA_NONCOHERENT
7681da177e4SLinus Torvalds	select HW_HAS_PCI
7691da177e4SLinus Torvalds
7701da177e4SLinus Torvaldsconfig MIPS_DB1100
7711da177e4SLinus Torvalds	bool "DB1100 board"
7721da177e4SLinus Torvalds	depends on SOC_AU1100
7731da177e4SLinus Torvalds	select DMA_NONCOHERENT
7741da177e4SLinus Torvalds
7751da177e4SLinus Torvaldsconfig MIPS_DB1500
7761da177e4SLinus Torvalds	bool "DB1500 board"
7771da177e4SLinus Torvalds	depends on SOC_AU1500
778d8f5d861SPete Popov	select DMA_NONCOHERENT
7791da177e4SLinus Torvalds	select HW_HAS_PCI
7801da177e4SLinus Torvalds	select MIPS_DISABLE_OBSOLETE_IDE
7811da177e4SLinus Torvalds
7821da177e4SLinus Torvaldsconfig MIPS_DB1550
7831da177e4SLinus Torvalds	bool "DB1550 board"
7841da177e4SLinus Torvalds	depends on SOC_AU1550
7851da177e4SLinus Torvalds	select HW_HAS_PCI
786d8f5d861SPete Popov	select DMA_NONCOHERENT
7871da177e4SLinus Torvalds	select MIPS_DISABLE_OBSOLETE_IDE
7881da177e4SLinus Torvalds
7891da177e4SLinus Torvaldsconfig MIPS_BOSPORUS
7901da177e4SLinus Torvalds	bool "Bosporus board"
7911da177e4SLinus Torvalds	depends on SOC_AU1500
7921da177e4SLinus Torvalds	select DMA_NONCOHERENT
7931da177e4SLinus Torvalds
794e3ad1c23SPete Popovconfig MIPS_DB1200
795e3ad1c23SPete Popov	bool "AMD Alchemy DB1200 board"
796e3ad1c23SPete Popov	select SOC_AU1200
797e3ad1c23SPete Popov	select DMA_NONCOHERENT
798e3ad1c23SPete Popov	select MIPS_DISABLE_OBSOLETE_IDE
799e3ad1c23SPete Popov	select SYS_SUPPORTS_LITTLE_ENDIAN
800e3ad1c23SPete Popov
8011da177e4SLinus Torvaldsconfig MIPS_MIRAGE
8021da177e4SLinus Torvalds	bool "Mirage board"
8031da177e4SLinus Torvalds	depends on SOC_AU1500
8041da177e4SLinus Torvalds	select DMA_NONCOHERENT
8051da177e4SLinus Torvalds
8061da177e4SLinus Torvaldsconfig MIPS_XXS1500
8071da177e4SLinus Torvalds	bool "MyCable XXS1500 board"
8081da177e4SLinus Torvalds	depends on SOC_AU1500
8091da177e4SLinus Torvalds	select DMA_NONCOHERENT
8101da177e4SLinus Torvalds
8111da177e4SLinus Torvaldsconfig MIPS_MTX1
8121da177e4SLinus Torvalds	bool "4G Systems MTX-1 board"
8131da177e4SLinus Torvalds	depends on SOC_AU1500
8141da177e4SLinus Torvalds	select HW_HAS_PCI
8151da177e4SLinus Torvalds	select DMA_NONCOHERENT
8161da177e4SLinus Torvalds
8171da177e4SLinus Torvaldsendchoice
8181da177e4SLinus Torvalds
8191da177e4SLinus Torvaldsconfig SNI_RM200_PCI
8201da177e4SLinus Torvalds	bool "Support for SNI RM200 PCI"
8211da177e4SLinus Torvalds	select ARC
8221da177e4SLinus Torvalds	select ARC32
8231da177e4SLinus Torvalds	select BOOT_ELF32
8241da177e4SLinus Torvalds	select DMA_NONCOHERENT
8251da177e4SLinus Torvalds	select GENERIC_ISA_DMA
8261da177e4SLinus Torvalds	select HAVE_STD_PC_SERIAL_PORT
8271da177e4SLinus Torvalds	select HW_HAS_PCI
8281da177e4SLinus Torvalds	select I8259
8291da177e4SLinus Torvalds	select ISA
830ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
831ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
8321da177e4SLinus Torvalds	help
8331da177e4SLinus Torvalds	  The SNI RM200 PCI was a MIPS-based platform manufactured by Siemens
8341da177e4SLinus Torvalds	  Nixdorf Informationssysteme (SNI), parent company of Pyramid
8351da177e4SLinus Torvalds	  Technology and now in turn merged with Fujitsu.  Say Y here to
8361da177e4SLinus Torvalds	  support this machine type.
8371da177e4SLinus Torvalds
8381da177e4SLinus Torvaldsconfig TOSHIBA_RBTX4927
8391da177e4SLinus Torvalds	bool "Support for Toshiba TBTX49[23]7 board"
8401da177e4SLinus Torvalds	select DMA_NONCOHERENT
8411da177e4SLinus Torvalds	select HAS_TXX9_SERIAL
8421da177e4SLinus Torvalds	select HW_HAS_PCI
8431da177e4SLinus Torvalds	select I8259
8441da177e4SLinus Torvalds	select ISA
8451da177e4SLinus Torvalds	select SWAP_IO_SPACE
846ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_32BIT_KERNEL
847ed5ba2fbSYoichi Yuasa	select SYS_SUPPORTS_64BIT_KERNEL
8481da177e4SLinus Torvalds	help
8491da177e4SLinus Torvalds	  This Toshiba board is based on the TX4927 processor. Say Y here to
8501da177e4SLinus Torvalds	  support this machine type
8511da177e4SLinus Torvalds
8521da177e4SLinus Torvaldsconfig TOSHIBA_FPCIB0
8531da177e4SLinus Torvalds	bool "FPCIB0 Backplane Support"
8541da177e4SLinus Torvalds	depends on TOSHIBA_RBTX4927
8551da177e4SLinus Torvalds
85629c48699SRalf Baechlesource "arch/mips/sgi-ip27/Kconfig"
85738b18f72SRalf Baechlesource "arch/mips/sibyte/Kconfig"
858*23fbee9dSRalf Baechlesource "arch/mips/tx4938/Kconfig"
859bdf21b18SPete Popovsource "arch/mips/philips/pnx8550/common/Kconfig"
86038b18f72SRalf Baechle
8611da177e4SLinus Torvaldsconfig RWSEM_GENERIC_SPINLOCK
8621da177e4SLinus Torvalds	bool
8631da177e4SLinus Torvalds	default y
8641da177e4SLinus Torvalds
8651da177e4SLinus Torvaldsconfig RWSEM_XCHGADD_ALGORITHM
8661da177e4SLinus Torvalds	bool
8675eaf7a21SRalf Baechle	select HAS_TXX9_SERIAL
8681da177e4SLinus Torvalds
8691da177e4SLinus Torvaldsconfig GENERIC_CALIBRATE_DELAY
8701da177e4SLinus Torvalds	bool
8711da177e4SLinus Torvalds	default y
8721da177e4SLinus Torvalds
8731da177e4SLinus Torvalds#
8741da177e4SLinus Torvalds# Select some configuration options automatically based on user selections.
8751da177e4SLinus Torvalds#
8761da177e4SLinus Torvaldsconfig ARC
8771da177e4SLinus Torvalds	bool
8781da177e4SLinus Torvalds	depends on SNI_RM200_PCI || SGI_IP32 || SGI_IP27 || SGI_IP22 || MIPS_MAGNUM_4000 || OLIVETTI_M700 || ACER_PICA_61
8791da177e4SLinus Torvalds	default y
8801da177e4SLinus Torvalds
8811da177e4SLinus Torvaldsconfig DMA_COHERENT
8821da177e4SLinus Torvalds	bool
8831da177e4SLinus Torvalds
8841da177e4SLinus Torvaldsconfig DMA_IP27
8851da177e4SLinus Torvalds	bool
8861da177e4SLinus Torvalds
8874ce588cdSRalf Baechleconfig DMA_IP32
8884ce588cdSRalf Baechle	bool
8894ce588cdSRalf Baechle	select DMA_NEED_PCI_MAP_STATE
8904ce588cdSRalf Baechle
8911da177e4SLinus Torvaldsconfig DMA_NONCOHERENT
8921da177e4SLinus Torvalds	bool
8934ce588cdSRalf Baechle	select DMA_NEED_PCI_MAP_STATE
8944ce588cdSRalf Baechle
8954ce588cdSRalf Baechleconfig DMA_NEED_PCI_MAP_STATE
8964ce588cdSRalf Baechle	bool
8971da177e4SLinus Torvalds
8981da177e4SLinus Torvaldsconfig EARLY_PRINTK
8991da177e4SLinus Torvalds	bool
9001da177e4SLinus Torvalds	depends on MACH_DECSTATION
9011da177e4SLinus Torvalds	default y
9021da177e4SLinus Torvalds
9031da177e4SLinus Torvaldsconfig GENERIC_ISA_DMA
9041da177e4SLinus Torvalds	bool
9051da177e4SLinus Torvalds	depends on SNI_RM200_PCI || MIPS_MAGNUM_4000 || OLIVETTI_M700 || ACER_PICA_61 || MIPS_MALTA
9061da177e4SLinus Torvalds	default y
9071da177e4SLinus Torvalds
9081da177e4SLinus Torvaldsconfig I8259
9091da177e4SLinus Torvalds	bool
9101da177e4SLinus Torvalds	depends on SNI_RM200_PCI || DDB5477 || DDB5476 || DDB5074 || MACH_JAZZ || MIPS_MALTA || MIPS_COBALT
9111da177e4SLinus Torvalds	default y
9121da177e4SLinus Torvalds
9131da177e4SLinus Torvaldsconfig LIMITED_DMA
9141da177e4SLinus Torvalds	bool
9151da177e4SLinus Torvalds	select HIGHMEM
9161da177e4SLinus Torvalds
9171da177e4SLinus Torvaldsconfig MIPS_BONITO64
9181da177e4SLinus Torvalds	bool
9191da177e4SLinus Torvalds	depends on MIPS_ATLAS || MIPS_MALTA
9201da177e4SLinus Torvalds	default y
9211da177e4SLinus Torvalds
9221da177e4SLinus Torvaldsconfig MIPS_MSC
9231da177e4SLinus Torvalds	bool
9241da177e4SLinus Torvalds	depends on MIPS_ATLAS || MIPS_MALTA
9251da177e4SLinus Torvalds	default y
9261da177e4SLinus Torvalds
9271da177e4SLinus Torvaldsconfig MIPS_NILE4
9281da177e4SLinus Torvalds	bool
9291da177e4SLinus Torvalds	depends on LASAT
9301da177e4SLinus Torvalds	default y
9311da177e4SLinus Torvalds
9321da177e4SLinus Torvaldsconfig MIPS_DISABLE_OBSOLETE_IDE
9331da177e4SLinus Torvalds	bool
9341da177e4SLinus Torvalds
9351da177e4SLinus Torvaldsconfig CPU_LITTLE_ENDIAN
9361da177e4SLinus Torvalds	bool "Generate little endian code"
937ab1418a3SAdrian 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
9381da177e4SLinus Torvalds	default n if MIPS_EV64120 || MIPS_EV96100 || MOMENCO_OCELOT || MOMENCO_OCELOT_G || SGI_IP22 || SGI_IP27 || SGI_IP32 || TOSHIBA_JMR3927
9391da177e4SLinus Torvalds	help
9401da177e4SLinus Torvalds	  Some MIPS machines can be configured for either little or big endian
9411da177e4SLinus Torvalds	  byte order. These modes require different kernels. Say Y if your
9421da177e4SLinus Torvalds	  machine is little endian, N if it's a big endian machine.
9431da177e4SLinus Torvalds
9441da177e4SLinus Torvaldsconfig IRQ_CPU
9451da177e4SLinus Torvalds	bool
9461da177e4SLinus Torvalds
9471da177e4SLinus Torvaldsconfig IRQ_CPU_RM7K
9481da177e4SLinus Torvalds	bool
9491da177e4SLinus Torvalds
9501da177e4SLinus Torvaldsconfig IRQ_MV64340
9511da177e4SLinus Torvalds	bool
9521da177e4SLinus Torvalds
9531da177e4SLinus Torvaldsconfig DDB5XXX_COMMON
9541da177e4SLinus Torvalds	bool
9551da177e4SLinus Torvalds	depends on DDB5074 || DDB5476 || DDB5477
9561da177e4SLinus Torvalds	default y
9571da177e4SLinus Torvalds
9581da177e4SLinus Torvaldsconfig MIPS_BOARDS_GEN
9591da177e4SLinus Torvalds	bool
9601da177e4SLinus Torvalds	depends on MIPS_ATLAS || MIPS_MALTA || MIPS_SEAD
9611da177e4SLinus Torvalds	default y
9621da177e4SLinus Torvalds
9631da177e4SLinus Torvaldsconfig MIPS_GT64111
9641da177e4SLinus Torvalds	bool
9651da177e4SLinus Torvalds	depends on MIPS_COBALT
9661da177e4SLinus Torvalds	default y
9671da177e4SLinus Torvalds
9681da177e4SLinus Torvaldsconfig MIPS_GT64120
9691da177e4SLinus Torvalds	bool
9701da177e4SLinus Torvalds	depends on MIPS_EV64120 || MIPS_EV96100 || LASAT || MIPS_ATLAS || MIPS_MALTA || MOMENCO_OCELOT
9711da177e4SLinus Torvalds	default y
9721da177e4SLinus Torvalds
9731da177e4SLinus Torvaldsconfig MIPS_TX3927
9741da177e4SLinus Torvalds	bool
9751da177e4SLinus Torvalds	depends on TOSHIBA_JMR3927
9761da177e4SLinus Torvalds	select HAS_TXX9_SERIAL
9771da177e4SLinus Torvalds	default y
9781da177e4SLinus Torvalds
9791da177e4SLinus Torvaldsconfig PCI_MARVELL
9801da177e4SLinus Torvalds	bool
9811da177e4SLinus Torvalds
9821da177e4SLinus Torvaldsconfig ITE_BOARD_GEN
9831da177e4SLinus Torvalds	bool
9841da177e4SLinus Torvalds	depends on MIPS_IVR || MIPS_ITE8172
9851da177e4SLinus Torvalds	default y
9861da177e4SLinus Torvalds
987bdf21b18SPete Popovconfig PNX8550
988bdf21b18SPete Popov	bool
989bdf21b18SPete Popov	select SOC_PNX8550
990bdf21b18SPete Popov
991bdf21b18SPete Popovconfig SOC_PNX8550
992bdf21b18SPete Popov	bool
993bdf21b18SPete Popov	select SYS_SUPPORTS_32BIT_KERNEL
994bdf21b18SPete Popov	select DMA_NONCOHERENT
995bdf21b18SPete Popov	select HW_HAS_PCI
996bdf21b18SPete Popov
9971da177e4SLinus Torvaldsconfig SWAP_IO_SPACE
9981da177e4SLinus Torvalds	bool
9991da177e4SLinus Torvalds
10001da177e4SLinus Torvalds#
10011da177e4SLinus Torvalds# Unfortunately not all GT64120 systems run the chip at the same clock.
10021da177e4SLinus Torvalds# As the user for the clock rate and try to minimize the available options.
10031da177e4SLinus Torvalds#
10041da177e4SLinus Torvaldschoice
10051da177e4SLinus Torvalds	prompt "Galileo Chip Clock"
10061da177e4SLinus Torvalds	#default SYSCLK_83 if MIPS_EV64120
10071da177e4SLinus Torvalds	depends on MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G
10081da177e4SLinus Torvalds	default SYSCLK_83 if MIPS_EV64120
10091da177e4SLinus Torvalds	default SYSCLK_100 if MOMENCO_OCELOT || MOMENCO_OCELOT_G
10101da177e4SLinus Torvalds
10111da177e4SLinus Torvaldsconfig SYSCLK_75
10121da177e4SLinus Torvalds	bool "75" if MIPS_EV64120
10131da177e4SLinus Torvalds
10141da177e4SLinus Torvaldsconfig SYSCLK_83
10151da177e4SLinus Torvalds	bool "83.3" if MIPS_EV64120
10161da177e4SLinus Torvalds
10171da177e4SLinus Torvaldsconfig SYSCLK_100
10181da177e4SLinus Torvalds	bool "100" if MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G
10191da177e4SLinus Torvalds
10201da177e4SLinus Torvaldsendchoice
10211da177e4SLinus Torvalds
10221da177e4SLinus Torvaldsconfig AU1X00_USB_DEVICE
10231da177e4SLinus Torvalds	bool
10241da177e4SLinus Torvalds	depends on MIPS_PB1500 || MIPS_PB1100 || MIPS_PB1000
10251da177e4SLinus Torvalds	default n
10261da177e4SLinus Torvalds
10271da177e4SLinus Torvaldsconfig MIPS_GT96100
10281da177e4SLinus Torvalds	bool
10291da177e4SLinus Torvalds	depends on MIPS_EV96100
10301da177e4SLinus Torvalds	default y
10311da177e4SLinus Torvalds	help
10321da177e4SLinus Torvalds	  Say Y here to support the Galileo Technology GT96100 communications
10331da177e4SLinus Torvalds	  controller card.  There is a web page at <http://www.galileot.com/>.
10341da177e4SLinus Torvalds
10351da177e4SLinus Torvaldsconfig IT8172_CIR
10361da177e4SLinus Torvalds	bool
10371da177e4SLinus Torvalds	depends on MIPS_ITE8172 || MIPS_IVR
10381da177e4SLinus Torvalds	default y
10391da177e4SLinus Torvalds
10401da177e4SLinus Torvaldsconfig IT8712
10411da177e4SLinus Torvalds	bool
10421da177e4SLinus Torvalds	depends on MIPS_ITE8172
10431da177e4SLinus Torvalds	default y
10441da177e4SLinus Torvalds
10451da177e4SLinus Torvaldsconfig BOOT_ELF32
10461da177e4SLinus Torvalds	bool
10471da177e4SLinus 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
10481da177e4SLinus Torvalds	default y
10491da177e4SLinus Torvalds
10501da177e4SLinus Torvaldsconfig MIPS_L1_CACHE_SHIFT
10511da177e4SLinus Torvalds	int
10521da177e4SLinus Torvalds	default "4" if MACH_DECSTATION
10531da177e4SLinus Torvalds	default "7" if SGI_IP27
10541da177e4SLinus Torvalds	default "5"
10551da177e4SLinus Torvalds
10561da177e4SLinus Torvaldsconfig ARC32
10571da177e4SLinus Torvalds	bool
10581da177e4SLinus Torvalds	depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP22 || SGI_IP32
10591da177e4SLinus Torvalds	default y
10601da177e4SLinus Torvalds
10611da177e4SLinus Torvaldsconfig HAVE_STD_PC_SERIAL_PORT
10621da177e4SLinus Torvalds	bool
10631da177e4SLinus Torvalds
10641da177e4SLinus Torvaldsconfig ARC_CONSOLE
10651da177e4SLinus Torvalds	bool "ARC console support"
10661da177e4SLinus Torvalds	depends on SGI_IP22 || SNI_RM200_PCI
10671da177e4SLinus Torvalds
10681da177e4SLinus Torvaldsconfig ARC_MEMORY
10691da177e4SLinus Torvalds	bool
10701da177e4SLinus Torvalds	depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP32
10711da177e4SLinus Torvalds	default y
10721da177e4SLinus Torvalds
10731da177e4SLinus Torvaldsconfig ARC_PROMLIB
10741da177e4SLinus Torvalds	bool
10751da177e4SLinus Torvalds	depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP22 || SGI_IP32
10761da177e4SLinus Torvalds	default y
10771da177e4SLinus Torvalds
10781da177e4SLinus Torvaldsconfig ARC64
10791da177e4SLinus Torvalds	bool
10801da177e4SLinus Torvalds	depends on SGI_IP27
10811da177e4SLinus Torvalds	default y
10821da177e4SLinus Torvalds
10831da177e4SLinus Torvaldsconfig BOOT_ELF64
10841da177e4SLinus Torvalds	bool
10851da177e4SLinus Torvalds	depends on SGI_IP27
10861da177e4SLinus Torvalds	default y
10871da177e4SLinus Torvalds
10881da177e4SLinus Torvalds#config MAPPED_PCI_IO y
10891da177e4SLinus Torvalds#	bool
10901da177e4SLinus Torvalds#	depends on SGI_IP27
10911da177e4SLinus Torvalds#	default y
10921da177e4SLinus Torvalds
10931da177e4SLinus Torvaldsconfig TOSHIBA_BOARDS
10941da177e4SLinus Torvalds	bool
10951da177e4SLinus Torvalds	depends on TOSHIBA_JMR3927 || TOSHIBA_RBTX4927
10961da177e4SLinus Torvalds	default y
10971da177e4SLinus Torvalds
10981da177e4SLinus Torvaldsendmenu
10991da177e4SLinus Torvalds
11001da177e4SLinus Torvaldsmenu "CPU selection"
11011da177e4SLinus Torvalds
11021da177e4SLinus Torvaldschoice
11031da177e4SLinus Torvalds	prompt "CPU type"
11041da177e4SLinus Torvalds	default CPU_R4X00
11051da177e4SLinus Torvalds
11066e760c8dSRalf Baechleconfig CPU_MIPS32_R1
11076e760c8dSRalf Baechle	bool "MIPS32 Release 1"
1108ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
11096e760c8dSRalf Baechle	select CPU_HAS_PREFETCH
11106e760c8dSRalf Baechle	help
11111e5f1caaSRalf Baechle	  Choose this option to build a kernel for release 2 or later of the
11121e5f1caaSRalf Baechle	  MIPS32 architecture.  Most modern embedded systems with a 32-bit
11131e5f1caaSRalf Baechle	  MIPS processor are based on a MIPS32 processor.  If you know the
11141e5f1caaSRalf Baechle	  specific type of processor in your system, choose those that one
11151e5f1caaSRalf Baechle	  otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
11161e5f1caaSRalf Baechle	  Release 2 of the MIPS32 architecture is available since several
11171e5f1caaSRalf Baechle	  years so chances are you even have a MIPS32 Release 2 processor
11181e5f1caaSRalf Baechle	  in which case you should choose CPU_MIPS32_R2 instead for better
11191e5f1caaSRalf Baechle	  performance.
11201e5f1caaSRalf Baechle
11211e5f1caaSRalf Baechleconfig CPU_MIPS32_R2
11221e5f1caaSRalf Baechle	bool "MIPS32 Release 2"
11231e5f1caaSRalf Baechle	select CPU_SUPPORTS_32BIT_KERNEL
11241e5f1caaSRalf Baechle	select CPU_HAS_PREFETCH
11251e5f1caaSRalf Baechle	help
11266e760c8dSRalf Baechle	  Choose this option to build a kernel for release 1 or later of the
11276e760c8dSRalf Baechle	  MIPS32 architecture.  Most modern embedded systems with a 32-bit
11286e760c8dSRalf Baechle	  MIPS processor are based on a MIPS32 processor.  If you know the
11296e760c8dSRalf Baechle	  specific type of processor in your system, choose those that one
11306e760c8dSRalf Baechle	  otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
11311da177e4SLinus Torvalds
11326e760c8dSRalf Baechleconfig CPU_MIPS64_R1
11336e760c8dSRalf Baechle	bool "MIPS64 Release 1"
1134ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1135ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11366e760c8dSRalf Baechle	select CPU_HAS_PREFETCH
11376e760c8dSRalf Baechle	help
11386e760c8dSRalf Baechle	  Choose this option to build a kernel for release 1 or later of the
11396e760c8dSRalf Baechle	  MIPS64 architecture.  Many modern embedded systems with a 64-bit
11406e760c8dSRalf Baechle	  MIPS processor are based on a MIPS64 processor.  If you know the
11416e760c8dSRalf Baechle	  specific type of processor in your system, choose those that one
11426e760c8dSRalf Baechle	  otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
11431e5f1caaSRalf Baechle	  Release 2 of the MIPS64 architecture is available since several
11441e5f1caaSRalf Baechle	  years so chances are you even have a MIPS64 Release 2 processor
11451e5f1caaSRalf Baechle	  in which case you should choose CPU_MIPS64_R2 instead for better
11461e5f1caaSRalf Baechle	  performance.
11471e5f1caaSRalf Baechle
11481e5f1caaSRalf Baechleconfig CPU_MIPS64_R2
11491e5f1caaSRalf Baechle	bool "MIPS64 Release 2"
11501e5f1caaSRalf Baechle	select CPU_SUPPORTS_32BIT_KERNEL
11511e5f1caaSRalf Baechle	select CPU_SUPPORTS_64BIT_KERNEL
11521e5f1caaSRalf Baechle	select CPU_HAS_PREFETCH
11531e5f1caaSRalf Baechle	help
11541e5f1caaSRalf Baechle	  Choose this option to build a kernel for release 2 or later of the
11551e5f1caaSRalf Baechle	  MIPS64 architecture.  Many modern embedded systems with a 64-bit
11561e5f1caaSRalf Baechle	  MIPS processor are based on a MIPS64 processor.  If you know the
11571e5f1caaSRalf Baechle	  specific type of processor in your system, choose those that one
11581e5f1caaSRalf Baechle	  otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
11591da177e4SLinus Torvalds
11601da177e4SLinus Torvaldsconfig CPU_R3000
11611da177e4SLinus Torvalds	bool "R3000"
1162ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
11631da177e4SLinus Torvalds	help
11641da177e4SLinus Torvalds	  Please make sure to pick the right CPU type. Linux/MIPS is not
11651da177e4SLinus Torvalds	  designed to be generic, i.e. Kernels compiled for R3000 CPUs will
11661da177e4SLinus Torvalds	  *not* work on R4000 machines and vice versa.  However, since most
11671da177e4SLinus Torvalds	  of the supported machines have an R4000 (or similar) CPU, R4x00
11681da177e4SLinus Torvalds	  might be a safe bet.  If the resulting kernel does not work,
11691da177e4SLinus Torvalds	  try to recompile with R3000.
11701da177e4SLinus Torvalds
11711da177e4SLinus Torvaldsconfig CPU_TX39XX
11721da177e4SLinus Torvalds	bool "R39XX"
1173ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
11741da177e4SLinus Torvalds
11751da177e4SLinus Torvaldsconfig CPU_VR41XX
11761da177e4SLinus Torvalds	bool "R41xx"
1177ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1178ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11791da177e4SLinus Torvalds	help
11801da177e4SLinus Torvalds	  The options selects support for the NEC VR41xx series of processors.
11811da177e4SLinus Torvalds	  Only choose this option if you have one of these processors as a
11821da177e4SLinus Torvalds	  kernel built with this option will not run on any other type of
11831da177e4SLinus Torvalds	  processor or vice versa.
11841da177e4SLinus Torvalds
11851da177e4SLinus Torvaldsconfig CPU_R4300
11861da177e4SLinus Torvalds	bool "R4300"
1187ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1188ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11891da177e4SLinus Torvalds	help
11901da177e4SLinus Torvalds	  MIPS Technologies R4300-series processors.
11911da177e4SLinus Torvalds
11921da177e4SLinus Torvaldsconfig CPU_R4X00
11931da177e4SLinus Torvalds	bool "R4x00"
1194ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1195ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
11961da177e4SLinus Torvalds	help
11971da177e4SLinus Torvalds	  MIPS Technologies R4000-series processors other than 4300, including
11981da177e4SLinus Torvalds	  the R4000, R4400, R4600, and 4700.
11991da177e4SLinus Torvalds
12001da177e4SLinus Torvaldsconfig CPU_TX49XX
12011da177e4SLinus Torvalds	bool "R49XX"
1202ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1203ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12041da177e4SLinus Torvalds
12051da177e4SLinus Torvaldsconfig CPU_R5000
12061da177e4SLinus Torvalds	bool "R5000"
1207ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1208ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12091da177e4SLinus Torvalds	help
12101da177e4SLinus Torvalds	  MIPS Technologies R5000-series processors other than the Nevada.
12111da177e4SLinus Torvalds
12121da177e4SLinus Torvaldsconfig CPU_R5432
12131da177e4SLinus Torvalds	bool "R5432"
12141da177e4SLinus Torvalds
12151da177e4SLinus Torvaldsconfig CPU_R6000
12161da177e4SLinus Torvalds	bool "R6000"
1217ed5ba2fbSYoichi Yuasa	depends on EXPERIMENTAL
1218ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
12191da177e4SLinus Torvalds	help
12201da177e4SLinus Torvalds	  MIPS Technologies R6000 and R6000A series processors.  Note these
12211da177e4SLinus Torvalds	  processors are extremly rare and the support for them is incomplete.
12221da177e4SLinus Torvalds
12231da177e4SLinus Torvaldsconfig CPU_NEVADA
12241da177e4SLinus Torvalds	bool "RM52xx"
1225ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1226ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12271da177e4SLinus Torvalds	help
12281da177e4SLinus Torvalds	  QED / PMC-Sierra RM52xx-series ("Nevada") processors.
12291da177e4SLinus Torvalds
12301da177e4SLinus Torvaldsconfig CPU_R8000
12311da177e4SLinus Torvalds	bool "R8000"
1232ed5ba2fbSYoichi Yuasa	depends on EXPERIMENTAL
1233ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12341da177e4SLinus Torvalds	help
12351da177e4SLinus Torvalds	  MIPS Technologies R8000 processors.  Note these processors are
12361da177e4SLinus Torvalds	  uncommon and the support for them is incomplete.
12371da177e4SLinus Torvalds
12381da177e4SLinus Torvaldsconfig CPU_R10000
12391da177e4SLinus Torvalds	bool "R10000"
1240ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1241ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12421da177e4SLinus Torvalds	help
12431da177e4SLinus Torvalds	  MIPS Technologies R10000-series processors.
12441da177e4SLinus Torvalds
12451da177e4SLinus Torvaldsconfig CPU_RM7000
12461da177e4SLinus Torvalds	bool "RM7000"
1247ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1248ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12491da177e4SLinus Torvalds
12501da177e4SLinus Torvaldsconfig CPU_RM9000
12511da177e4SLinus Torvalds	bool "RM9000"
1252ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1253ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12541da177e4SLinus Torvalds
12551da177e4SLinus Torvaldsconfig CPU_SB1
12561da177e4SLinus Torvalds	bool "SB1"
1257ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_32BIT_KERNEL
1258ed5ba2fbSYoichi Yuasa	select CPU_SUPPORTS_64BIT_KERNEL
12591da177e4SLinus Torvalds
12601da177e4SLinus Torvaldsendchoice
12611da177e4SLinus Torvalds
12621da177e4SLinus Torvaldschoice
12631da177e4SLinus Torvalds	prompt "Kernel page size"
12641da177e4SLinus Torvalds	default PAGE_SIZE_4KB
12651da177e4SLinus Torvalds
12661da177e4SLinus Torvaldsconfig PAGE_SIZE_4KB
12671da177e4SLinus Torvalds	bool "4kB"
12681da177e4SLinus Torvalds	help
12691da177e4SLinus Torvalds	 This option select the standard 4kB Linux page size.  On some
12701da177e4SLinus Torvalds	 R3000-family processors this is the only available page size.  Using
12711da177e4SLinus Torvalds	 4kB page size will minimize memory consumption and is therefore
12721da177e4SLinus Torvalds	 recommended for low memory systems.
12731da177e4SLinus Torvalds
12741da177e4SLinus Torvaldsconfig PAGE_SIZE_8KB
12751da177e4SLinus Torvalds	bool "8kB"
12761da177e4SLinus Torvalds	depends on EXPERIMENTAL && CPU_R8000
12771da177e4SLinus Torvalds	help
12781da177e4SLinus Torvalds	  Using 8kB page size will result in higher performance kernel at
12791da177e4SLinus Torvalds	  the price of higher memory consumption.  This option is available
12801da177e4SLinus Torvalds	  only on the R8000 processor.  Not that at the time of this writing
12811da177e4SLinus Torvalds	  this option is still high experimental; there are also issues with
12821da177e4SLinus Torvalds	  compatibility of user applications.
12831da177e4SLinus Torvalds
12841da177e4SLinus Torvaldsconfig PAGE_SIZE_16KB
12851da177e4SLinus Torvalds	bool "16kB"
12861da177e4SLinus Torvalds	depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX
12871da177e4SLinus Torvalds	help
12881da177e4SLinus Torvalds	  Using 16kB page size will result in higher performance kernel at
12891da177e4SLinus Torvalds	  the price of higher memory consumption.  This option is available on
12901da177e4SLinus Torvalds	  all non-R3000 family processor.  Not that at the time of this
12911da177e4SLinus Torvalds	  writing this option is still high experimental; there are also
12921da177e4SLinus Torvalds	  issues with compatibility of user applications.
12931da177e4SLinus Torvalds
12941da177e4SLinus Torvaldsconfig PAGE_SIZE_64KB
12951da177e4SLinus Torvalds	bool "64kB"
12961da177e4SLinus Torvalds	depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX
12971da177e4SLinus Torvalds	help
12981da177e4SLinus Torvalds	  Using 64kB page size will result in higher performance kernel at
12991da177e4SLinus Torvalds	  the price of higher memory consumption.  This option is available on
13001da177e4SLinus Torvalds	  all non-R3000 family processor.  Not that at the time of this
13011da177e4SLinus Torvalds	  writing this option is still high experimental; there are also
13021da177e4SLinus Torvalds	  issues with compatibility of user applications.
13031da177e4SLinus Torvalds
13041da177e4SLinus Torvaldsendchoice
13051da177e4SLinus Torvalds
13061da177e4SLinus Torvaldsconfig BOARD_SCACHE
13071da177e4SLinus Torvalds	bool
13081da177e4SLinus Torvalds
13091da177e4SLinus Torvaldsconfig IP22_CPU_SCACHE
13101da177e4SLinus Torvalds	bool
13111da177e4SLinus Torvalds	select BOARD_SCACHE
13121da177e4SLinus Torvalds
13131da177e4SLinus Torvaldsconfig R5000_CPU_SCACHE
13141da177e4SLinus Torvalds	bool
13151da177e4SLinus Torvalds	select BOARD_SCACHE
13161da177e4SLinus Torvalds
13171da177e4SLinus Torvaldsconfig RM7000_CPU_SCACHE
13181da177e4SLinus Torvalds	bool
13191da177e4SLinus Torvalds	select BOARD_SCACHE
13201da177e4SLinus Torvalds
13211da177e4SLinus Torvaldsconfig SIBYTE_DMA_PAGEOPS
13221da177e4SLinus Torvalds	bool "Use DMA to clear/copy pages"
13231da177e4SLinus Torvalds	depends on CPU_SB1
13241da177e4SLinus Torvalds	help
13251da177e4SLinus Torvalds	  Instead of using the CPU to zero and copy pages, use a Data Mover
13261da177e4SLinus Torvalds	  channel.  These DMA channels are otherwise unused by the standard
13271da177e4SLinus Torvalds	  SiByte Linux port.  Seems to give a small performance benefit.
13281da177e4SLinus Torvalds
13291da177e4SLinus Torvaldsconfig CPU_HAS_PREFETCH
13301da177e4SLinus Torvalds	bool "Enable prefetches" if CPU_SB1 && !CPU_SB1_PASS_2
13311da177e4SLinus Torvalds	default y if CPU_MIPS32 || CPU_MIPS64 || CPU_RM7000 || CPU_RM9000 || CPU_R10000
13321da177e4SLinus Torvalds
1333e01402b1SRalf Baechleconfig MIPS_MT
1334e01402b1SRalf Baechle	bool "Enable MIPS MT"
1335e01402b1SRalf Baechle
1336e01402b1SRalf Baechleconfig MIPS_VPE_LOADER
1337e01402b1SRalf Baechle	bool "VPE loader support."
1338e01402b1SRalf Baechle	depends on MIPS_MT
1339e01402b1SRalf Baechle	help
1340e01402b1SRalf Baechle	  Includes a loader for loading an elf relocatable object
1341e01402b1SRalf Baechle	  onto another VPE and running it.
1342e01402b1SRalf Baechle
1343e01402b1SRalf Baechleconfig MIPS_VPE_LOADER_TOM
1344e01402b1SRalf Baechle	bool "Load VPE program into memory hidden from linux"
1345e01402b1SRalf Baechle	depends on MIPS_VPE_LOADER
1346e01402b1SRalf Baechle	default y
1347e01402b1SRalf Baechle	help
1348e01402b1SRalf Baechle	  The loader can use memory that is present but has been hidden from
1349e01402b1SRalf Baechle	  Linux using the kernel command line option "mem=xxMB". It's up to
1350e01402b1SRalf Baechle	  you to ensure the amount you put in the option and the space your
1351e01402b1SRalf Baechle	  program requires is less or equal to the amount physically present.
1352e01402b1SRalf Baechle
1353e01402b1SRalf Baechle# this should possibly be in drivers/char, but it is rather cpu related. Hmmm
1354e01402b1SRalf Baechleconfig MIPS_VPE_APSP_API
1355e01402b1SRalf Baechle      bool "Enable support for AP/SP API (RTLX)"
1356e01402b1SRalf Baechle      depends on MIPS_VPE_LOADER
1357e01402b1SRalf Baechle
13581da177e4SLinus Torvaldsconfig VTAG_ICACHE
13591da177e4SLinus Torvalds	bool "Support for Virtual Tagged I-cache" if CPU_MIPS64 || CPU_MIPS32
13601da177e4SLinus Torvalds	default y if CPU_SB1
13611da177e4SLinus Torvalds
13621da177e4SLinus Torvaldsconfig SB1_PASS_1_WORKAROUNDS
13631da177e4SLinus Torvalds	bool
13641da177e4SLinus Torvalds	depends on CPU_SB1_PASS_1
13651da177e4SLinus Torvalds	default y
13661da177e4SLinus Torvalds
13671da177e4SLinus Torvaldsconfig SB1_PASS_2_WORKAROUNDS
13681da177e4SLinus Torvalds	bool
13691da177e4SLinus Torvalds	depends on CPU_SB1 && (CPU_SB1_PASS_2_2 || CPU_SB1_PASS_2)
13701da177e4SLinus Torvalds	default y
13711da177e4SLinus Torvalds
13721da177e4SLinus Torvaldsconfig SB1_PASS_2_1_WORKAROUNDS
13731da177e4SLinus Torvalds	bool
13741da177e4SLinus Torvalds	depends on CPU_SB1 && CPU_SB1_PASS_2
13751da177e4SLinus Torvalds	default y
13761da177e4SLinus Torvalds
13771da177e4SLinus Torvaldsconfig 64BIT_PHYS_ADDR
13781da177e4SLinus Torvalds	bool "Support for 64-bit physical address space"
13796e760c8dSRalf Baechle	depends on (CPU_R4X00 || CPU_R5000 || CPU_RM7000 || CPU_RM9000 || CPU_R10000 || CPU_SB1 || CPU_MIPS32_R1 || CPU_MIPS64_R1) && 32BIT
13801da177e4SLinus Torvalds
13811da177e4SLinus Torvaldsconfig CPU_ADVANCED
13821da177e4SLinus Torvalds	bool "Override CPU Options"
1383875d43e7SRalf Baechle	depends on 32BIT
13841da177e4SLinus Torvalds	help
13851da177e4SLinus Torvalds	  Saying yes here allows you to select support for various features
13861da177e4SLinus Torvalds	  your CPU may or may not have.  Most people should say N here.
13871da177e4SLinus Torvalds
13881da177e4SLinus Torvaldsconfig CPU_HAS_LLSC
13891da177e4SLinus Torvalds	bool "ll/sc Instructions available" if CPU_ADVANCED
13901da177e4SLinus Torvalds	default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX
13911da177e4SLinus Torvalds	help
13921da177e4SLinus Torvalds	  MIPS R4000 series and later provide the Load Linked (ll)
13931da177e4SLinus Torvalds	  and Store Conditional (sc) instructions. More information is
13941da177e4SLinus Torvalds	  available at <http://www.go-ecs.com/mips/miptek1.htm>.
13951da177e4SLinus Torvalds
13961da177e4SLinus Torvalds	  Say Y here if your CPU has the ll and sc instructions.  Say Y here
13971da177e4SLinus Torvalds	  for better performance, N if you don't know.  You must say Y here
13981da177e4SLinus Torvalds	  for multiprocessor machines.
13991da177e4SLinus Torvalds
14001da177e4SLinus Torvaldsconfig CPU_HAS_LLDSCD
14011da177e4SLinus Torvalds	bool "lld/scd Instructions available" if CPU_ADVANCED
14026e760c8dSRalf Baechle	default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX && !CPU_MIPS32_R1
14031da177e4SLinus Torvalds	help
14041da177e4SLinus Torvalds	  Say Y here if your CPU has the lld and scd instructions, the 64-bit
14051da177e4SLinus Torvalds	  equivalents of ll and sc.  Say Y here for better performance, N if
14061da177e4SLinus Torvalds	  you don't know.  You must say Y here for multiprocessor machines.
14071da177e4SLinus Torvalds
14081da177e4SLinus Torvaldsconfig CPU_HAS_WB
14091da177e4SLinus Torvalds	bool "Writeback Buffer available" if CPU_ADVANCED
14101da177e4SLinus Torvalds	default y if !CPU_ADVANCED && CPU_R3000 && MACH_DECSTATION
14111da177e4SLinus Torvalds	help
14121da177e4SLinus Torvalds	  Say N here for slightly better performance.  You must say Y here for
14131da177e4SLinus Torvalds	  machines which require flushing of write buffers in software.  Saying
14141da177e4SLinus Torvalds	  Y is the safe option; N may result in kernel malfunction and crashes.
14151da177e4SLinus Torvalds
1416e01402b1SRalf Baechlemenu "MIPSR2 Interrupt handling"
1417e01402b1SRalf Baechle	depends on CPU_MIPSR2 && CPU_ADVANCED
1418e01402b1SRalf Baechle
1419e01402b1SRalf Baechleconfig CPU_MIPSR2_IRQ_VI
1420e01402b1SRalf Baechle	bool "Vectored interrupt mode"
1421e01402b1SRalf Baechle	help
1422e01402b1SRalf Baechle	   Vectored interrupt mode allowing faster dispatching of interrupts.
1423e01402b1SRalf Baechle	   The board support code needs to be written to take advantage of this
1424e01402b1SRalf Baechle	   mode.  Compatibility code is included to allow the kernel to run on
1425e01402b1SRalf Baechle	   a CPU that does not support vectored interrupts.  It's safe to
1426e01402b1SRalf Baechle	   say Y here.
1427e01402b1SRalf Baechle
1428e01402b1SRalf Baechleconfig CPU_MIPSR2_IRQ_EI
1429e01402b1SRalf Baechle	bool "External interrupt controller mode"
1430e01402b1SRalf Baechle	help
1431e01402b1SRalf Baechle	   Extended interrupt mode takes advantage of an external interrupt
1432e01402b1SRalf Baechle	   controller to allow fast dispatching from many possible interrupt
1433e01402b1SRalf Baechle	   sources. Say N unless you know that external interrupt support is
1434e01402b1SRalf Baechle	   required.
1435e01402b1SRalf Baechle
1436e01402b1SRalf Baechleconfig CPU_MIPSR2_SRS
1437e01402b1SRalf Baechle	bool "Make shadow set registers available for interrupt handlers"
1438e01402b1SRalf Baechle	depends on CPU_MIPSR2_IRQ_VI || CPU_MIPSR2_IRQ_EI
1439e01402b1SRalf Baechle	help
1440e01402b1SRalf Baechle	   Allow the kernel to use shadow register sets for fast interrupts.
1441e01402b1SRalf Baechle	   Interrupt handlers must be specially written to use shadow sets.
1442e01402b1SRalf Baechle	   Say N unless you know that shadow register set upport is needed.
1443e01402b1SRalf Baechleendmenu
1444e01402b1SRalf Baechle
14451da177e4SLinus Torvaldsconfig CPU_HAS_SYNC
14461da177e4SLinus Torvalds	bool
14471da177e4SLinus Torvalds	depends on !CPU_R3000
14481da177e4SLinus Torvalds	default y
14491da177e4SLinus Torvalds
14501da177e4SLinus Torvalds#
14511da177e4SLinus Torvalds# - Highmem only makes sense for the 32-bit kernel.
14521da177e4SLinus Torvalds# - The current highmem code will only work properly on physically indexed
14531da177e4SLinus Torvalds#   caches such as R3000, SB1, R7000 or those that look like they're virtually
14541da177e4SLinus Torvalds#   indexed such as R4000/R4400 SC and MC versions or R10000.  So for the
14551da177e4SLinus Torvalds#   moment we protect the user and offer the highmem option only on machines
14561da177e4SLinus Torvalds#   where it's known to be safe.  This will not offer highmem on a few systems
14571da177e4SLinus Torvalds#   such as MIPS32 and MIPS64 CPUs which may have virtual and physically
14581da177e4SLinus Torvalds#   indexed CPUs but we're playing safe.
14591da177e4SLinus Torvalds# - We should not offer highmem for system of which we already know that they
14601da177e4SLinus Torvalds#   don't have memory configurations that could gain from highmem support in
14611da177e4SLinus Torvalds#   the kernel because they don't support configurations with RAM at physical
14621da177e4SLinus Torvalds#   addresses > 0x20000000.
14631da177e4SLinus Torvalds#
14641da177e4SLinus Torvaldsconfig HIGHMEM
14651da177e4SLinus Torvalds	bool "High Memory Support"
1466875d43e7SRalf Baechle	depends on 32BIT && (CPU_R3000 || CPU_SB1 || CPU_R7000 || CPU_RM9000 || CPU_R10000) && !(MACH_DECSTATION || MOMENCO_JAGUAR_ATX)
14671da177e4SLinus Torvalds
1468b4819b59SYoichi Yuasaconfig ARCH_FLATMEM_ENABLE
1469b4819b59SYoichi Yuasa	def_bool y
1470b4819b59SYoichi Yuasa	depends on !NUMA
1471b4819b59SYoichi Yuasa
1472b4819b59SYoichi Yuasasource "mm/Kconfig"
1473b4819b59SYoichi Yuasa
14741da177e4SLinus Torvaldsconfig SMP
14751da177e4SLinus Torvalds	bool "Multi-Processing support"
14761da177e4SLinus Torvalds	depends on CPU_RM9000 || (SIBYTE_SB1250 && !SIBYTE_STANDALONE) || SGI_IP27
14771da177e4SLinus Torvalds	---help---
14781da177e4SLinus Torvalds	  This enables support for systems with more than one CPU. If you have
14791da177e4SLinus Torvalds	  a system with only one CPU, like most personal computers, say N. If
14801da177e4SLinus Torvalds	  you have a system with more than one CPU, say Y.
14811da177e4SLinus Torvalds
14821da177e4SLinus Torvalds	  If you say N here, the kernel will run on single and multiprocessor
14831da177e4SLinus Torvalds	  machines, but will use only one CPU of a multiprocessor machine. If
14841da177e4SLinus Torvalds	  you say Y here, the kernel will run on many, but not all,
14851da177e4SLinus Torvalds	  singleprocessor machines. On a singleprocessor machine, the kernel
14861da177e4SLinus Torvalds	  will run faster if you say N here.
14871da177e4SLinus Torvalds
14881da177e4SLinus Torvalds	  People using multiprocessor machines who say Y here should also say
14891da177e4SLinus Torvalds	  Y to "Enhanced Real Time Clock Support", below.
14901da177e4SLinus Torvalds
14911da177e4SLinus Torvalds	  See also the <file:Documentation/smp.txt> and the SMP-HOWTO
14921da177e4SLinus Torvalds	  available at <http://www.tldp.org/docs.html#howto>.
14931da177e4SLinus Torvalds
14941da177e4SLinus Torvalds	  If you don't know what to do here, say N.
14951da177e4SLinus Torvalds
14961da177e4SLinus Torvaldsconfig NR_CPUS
14971da177e4SLinus Torvalds	int "Maximum number of CPUs (2-64)"
14981da177e4SLinus Torvalds	range 2 64
14991da177e4SLinus Torvalds	depends on SMP
15001da177e4SLinus Torvalds	default "64" if SGI_IP27
15011da177e4SLinus Torvalds	default "2"
15021da177e4SLinus Torvalds	help
15031da177e4SLinus Torvalds	  This allows you to specify the maximum number of CPUs which this
15041da177e4SLinus Torvalds	  kernel will support.  The maximum supported value is 32 for 32-bit
15051da177e4SLinus Torvalds	  kernel and 64 for 64-bit kernels; the minimum value which makes
15061da177e4SLinus Torvalds	  sense is 2.
15071da177e4SLinus Torvalds
15081da177e4SLinus Torvalds	  This is purely to save memory - each supported CPU adds
15091da177e4SLinus Torvalds	  approximately eight kilobytes to the kernel image.
15101da177e4SLinus Torvalds
1511e80de850SRalf Baechlesource "kernel/Kconfig.preempt"
15121da177e4SLinus Torvalds
15131da177e4SLinus Torvaldsconfig RTC_DS1742
15141da177e4SLinus Torvalds	bool "DS1742 BRAM/RTC support"
15151da177e4SLinus Torvalds	depends on TOSHIBA_JMR3927 || TOSHIBA_RBTX4927
15161da177e4SLinus Torvalds
15171da177e4SLinus Torvaldsconfig MIPS_INSANE_LARGE
15181da177e4SLinus Torvalds	bool "Support for large 64-bit configurations"
1519875d43e7SRalf Baechle	depends on CPU_R10000 && 64BIT
15201da177e4SLinus Torvalds	help
15211da177e4SLinus Torvalds	  MIPS R10000 does support a 44 bit / 16TB address space as opposed to
15221da177e4SLinus Torvalds	  previous 64-bit processors which only supported 40 bit / 1TB. If you
15231da177e4SLinus Torvalds	  need processes of more than 1TB virtual address space, say Y here.
15241da177e4SLinus Torvalds	  This will result in additional memory usage, so it is not
15251da177e4SLinus Torvalds	  recommended for normal users.
15261da177e4SLinus Torvalds
15271da177e4SLinus Torvaldsconfig RWSEM_GENERIC_SPINLOCK
15281da177e4SLinus Torvalds	bool
15291da177e4SLinus Torvalds	default y
15301da177e4SLinus Torvalds
15311da177e4SLinus Torvaldsendmenu
15321da177e4SLinus Torvalds
15331da177e4SLinus Torvaldsmenu "Bus options (PCI, PCMCIA, EISA, ISA, TC)"
15341da177e4SLinus Torvalds
15351da177e4SLinus Torvaldsconfig HW_HAS_PCI
15361da177e4SLinus Torvalds	bool
15371da177e4SLinus Torvalds
15381da177e4SLinus Torvaldsconfig PCI
15391da177e4SLinus Torvalds	bool "Support for PCI controller"
15401da177e4SLinus Torvalds	depends on HW_HAS_PCI
15411da177e4SLinus Torvalds	help
15421da177e4SLinus Torvalds	  Find out whether you have a PCI motherboard. PCI is the name of a
15431da177e4SLinus Torvalds	  bus system, i.e. the way the CPU talks to the other stuff inside
15441da177e4SLinus Torvalds	  your box. Other bus systems are ISA, EISA, or VESA. If you have PCI,
15451da177e4SLinus Torvalds	  say Y, otherwise N.
15461da177e4SLinus Torvalds
15471da177e4SLinus Torvalds	  The PCI-HOWTO, available from
15481da177e4SLinus Torvalds	  <http://www.tldp.org/docs.html#howto>, contains valuable
15491da177e4SLinus Torvalds	  information about which PCI hardware does work under Linux and which
15501da177e4SLinus Torvalds	  doesn't.
15511da177e4SLinus Torvalds
15521da177e4SLinus Torvaldsconfig PCI_DOMAINS
15531da177e4SLinus Torvalds	bool
15541da177e4SLinus Torvalds	depends on PCI
15551da177e4SLinus Torvalds
15561da177e4SLinus Torvaldssource "drivers/pci/Kconfig"
15571da177e4SLinus Torvalds
15581da177e4SLinus Torvalds#
15591da177e4SLinus Torvalds# ISA support is now enabled via select.  Too many systems still have the one
15601da177e4SLinus Torvalds# or other ISA chip on the board that users don't know about so don't expect
15611da177e4SLinus Torvalds# users to choose the right thing ...
15621da177e4SLinus Torvalds#
15631da177e4SLinus Torvaldsconfig ISA
15641da177e4SLinus Torvalds	bool
15651da177e4SLinus Torvalds
15661da177e4SLinus Torvaldsconfig EISA
15671da177e4SLinus Torvalds	bool "EISA support"
15681da177e4SLinus Torvalds	depends on SGI_IP22 || SNI_RM200_PCI
15691da177e4SLinus Torvalds	select ISA
15701da177e4SLinus Torvalds	---help---
15711da177e4SLinus Torvalds	  The Extended Industry Standard Architecture (EISA) bus was
15721da177e4SLinus Torvalds	  developed as an open alternative to the IBM MicroChannel bus.
15731da177e4SLinus Torvalds
15741da177e4SLinus Torvalds	  The EISA bus provided some of the features of the IBM MicroChannel
15751da177e4SLinus Torvalds	  bus while maintaining backward compatibility with cards made for
15761da177e4SLinus Torvalds	  the older ISA bus.  The EISA bus saw limited use between 1988 and
15771da177e4SLinus Torvalds	  1995 when it was made obsolete by the PCI bus.
15781da177e4SLinus Torvalds
15791da177e4SLinus Torvalds	  Say Y here if you are building a kernel for an EISA-based machine.
15801da177e4SLinus Torvalds
15811da177e4SLinus Torvalds	  Otherwise, say N.
15821da177e4SLinus Torvalds
15831da177e4SLinus Torvaldssource "drivers/eisa/Kconfig"
15841da177e4SLinus Torvalds
15851da177e4SLinus Torvaldsconfig TC
15861da177e4SLinus Torvalds	bool "TURBOchannel support"
15871da177e4SLinus Torvalds	depends on MACH_DECSTATION
15881da177e4SLinus Torvalds	help
15891da177e4SLinus Torvalds	  TurboChannel is a DEC (now Compaq (now HP)) bus for Alpha and MIPS
15901da177e4SLinus Torvalds	  processors.  Documentation on writing device drivers for TurboChannel
15911da177e4SLinus Torvalds	  is available at:
15921da177e4SLinus Torvalds	  <http://www.cs.arizona.edu/computer.help/policy/DIGITAL_unix/AA-PS3HD-TET1_html/TITLE.html>.
15931da177e4SLinus Torvalds
15941da177e4SLinus Torvalds#config ACCESSBUS
15951da177e4SLinus Torvalds#	bool "Access.Bus support"
15961da177e4SLinus Torvalds#	depends on TC
15971da177e4SLinus Torvalds
15981da177e4SLinus Torvaldsconfig MMU
15991da177e4SLinus Torvalds	bool
16001da177e4SLinus Torvalds	default y
16011da177e4SLinus Torvalds
16021da177e4SLinus Torvaldsconfig MCA
16031da177e4SLinus Torvalds	bool
16041da177e4SLinus Torvalds
16051da177e4SLinus Torvaldsconfig SBUS
16061da177e4SLinus Torvalds	bool
16071da177e4SLinus Torvalds
16081da177e4SLinus Torvaldssource "drivers/pcmcia/Kconfig"
16091da177e4SLinus Torvalds
16101da177e4SLinus Torvaldssource "drivers/pci/hotplug/Kconfig"
16111da177e4SLinus Torvalds
16121da177e4SLinus Torvaldsendmenu
16131da177e4SLinus Torvalds
16141da177e4SLinus Torvaldsmenu "Executable file formats"
16151da177e4SLinus Torvalds
16161da177e4SLinus Torvaldssource "fs/Kconfig.binfmt"
16171da177e4SLinus Torvalds
16181da177e4SLinus Torvaldsconfig TRAD_SIGNALS
16191da177e4SLinus Torvalds	bool
1620875d43e7SRalf Baechle	default y if 32BIT
16211da177e4SLinus Torvalds
16221da177e4SLinus Torvaldsconfig BUILD_ELF64
16231da177e4SLinus Torvalds	bool "Use 64-bit ELF format for building"
1624875d43e7SRalf Baechle	depends on 64BIT
16251da177e4SLinus Torvalds	help
16261da177e4SLinus Torvalds	  A 64-bit kernel is usually built using the 64-bit ELF binary object
16271da177e4SLinus Torvalds	  format as it's one that allows arbitrary 64-bit constructs.  For
16281da177e4SLinus Torvalds	  kernels that are loaded within the KSEG compatibility segments the
16291da177e4SLinus Torvalds	  32-bit ELF format can optionally be used resulting in a somewhat
16301da177e4SLinus Torvalds	  smaller binary, but this option is not explicitly supported by the
16311da177e4SLinus Torvalds	  toolchain and since binutils 2.14 it does not even work at all.
16321da177e4SLinus Torvalds
16331da177e4SLinus Torvalds	  Say Y to use the 64-bit format or N to use the 32-bit one.
16341da177e4SLinus Torvalds
16351da177e4SLinus Torvalds	  If unsure say Y.
16361da177e4SLinus Torvalds
16371da177e4SLinus Torvaldsconfig BINFMT_IRIX
16381da177e4SLinus Torvalds	bool "Include IRIX binary compatibility"
1639875d43e7SRalf Baechle	depends on !CPU_LITTLE_ENDIAN && 32BIT && BROKEN
16401da177e4SLinus Torvalds
16411da177e4SLinus Torvaldsconfig MIPS32_COMPAT
16421da177e4SLinus Torvalds	bool "Kernel support for Linux/MIPS 32-bit binary compatibility"
1643875d43e7SRalf Baechle	depends on 64BIT
16441da177e4SLinus Torvalds	help
16451da177e4SLinus Torvalds	  Select this option if you want Linux/MIPS 32-bit binary
16461da177e4SLinus Torvalds	  compatibility. Since all software available for Linux/MIPS is
16471da177e4SLinus Torvalds	  currently 32-bit you should say Y here.
16481da177e4SLinus Torvalds
16491da177e4SLinus Torvaldsconfig COMPAT
16501da177e4SLinus Torvalds	bool
16511da177e4SLinus Torvalds	depends on MIPS32_COMPAT
16521da177e4SLinus Torvalds	default y
16531da177e4SLinus Torvalds
16541da177e4SLinus Torvaldsconfig MIPS32_O32
16551da177e4SLinus Torvalds	bool "Kernel support for o32 binaries"
16561da177e4SLinus Torvalds	depends on MIPS32_COMPAT
16571da177e4SLinus Torvalds	help
16581da177e4SLinus Torvalds	  Select this option if you want to run o32 binaries.  These are pure
16591da177e4SLinus Torvalds	  32-bit binaries as used by the 32-bit Linux/MIPS port.  Most of
16601da177e4SLinus Torvalds	  existing binaries are in this format.
16611da177e4SLinus Torvalds
16621da177e4SLinus Torvalds	  If unsure, say Y.
16631da177e4SLinus Torvalds
16641da177e4SLinus Torvaldsconfig MIPS32_N32
16651da177e4SLinus Torvalds	bool "Kernel support for n32 binaries"
16661da177e4SLinus Torvalds	depends on MIPS32_COMPAT
16671da177e4SLinus Torvalds	help
16681da177e4SLinus Torvalds	  Select this option if you want to run n32 binaries.  These are
16691da177e4SLinus Torvalds	  64-bit binaries using 32-bit quantities for addressing and certain
16701da177e4SLinus Torvalds	  data that would normally be 64-bit.  They are used in special
16711da177e4SLinus Torvalds	  cases.
16721da177e4SLinus Torvalds
16731da177e4SLinus Torvalds	  If unsure, say N.
16741da177e4SLinus Torvalds
16751da177e4SLinus Torvaldsconfig BINFMT_ELF32
16761da177e4SLinus Torvalds	bool
16771da177e4SLinus Torvalds	default y if MIPS32_O32 || MIPS32_N32
16781da177e4SLinus Torvalds
1679127c6f66SRalf Baechleconfig SECCOMP
1680127c6f66SRalf Baechle	bool "Enable seccomp to safely compute untrusted bytecode"
1681127c6f66SRalf Baechle	depends on PROC_FS && BROKEN
1682127c6f66SRalf Baechle	default y
1683127c6f66SRalf Baechle	help
1684127c6f66SRalf Baechle	  This kernel feature is useful for number crunching applications
1685127c6f66SRalf Baechle	  that may need to compute untrusted bytecode during their
1686127c6f66SRalf Baechle	  execution. By using pipes or other transports made available to
1687127c6f66SRalf Baechle	  the process as file descriptors supporting the read/write
1688127c6f66SRalf Baechle	  syscalls, it's possible to isolate those applications in
1689127c6f66SRalf Baechle	  their own address space using seccomp. Once seccomp is
1690127c6f66SRalf Baechle	  enabled via /proc/<pid>/seccomp, it cannot be disabled
1691127c6f66SRalf Baechle	  and the task is only allowed to execute a few safe syscalls
1692127c6f66SRalf Baechle	  defined by each seccomp mode.
1693127c6f66SRalf Baechle
1694127c6f66SRalf Baechle	  If unsure, say Y. Only embedded should say N here.
1695127c6f66SRalf Baechle
16961da177e4SLinus Torvaldsconfig PM
16971da177e4SLinus Torvalds	bool "Power Management support (EXPERIMENTAL)"
16981da177e4SLinus Torvalds	depends on EXPERIMENTAL && MACH_AU1X00
16991da177e4SLinus Torvalds
17001da177e4SLinus Torvaldsendmenu
17011da177e4SLinus Torvalds
1702d5950b43SSam Ravnborgsource "net/Kconfig"
1703d5950b43SSam Ravnborg
17041da177e4SLinus Torvaldssource "drivers/Kconfig"
17051da177e4SLinus Torvalds
17061da177e4SLinus Torvaldssource "fs/Kconfig"
17071da177e4SLinus Torvalds
17081da177e4SLinus Torvaldssource "arch/mips/Kconfig.debug"
17091da177e4SLinus Torvalds
17101da177e4SLinus Torvaldssource "security/Kconfig"
17111da177e4SLinus Torvalds
17121da177e4SLinus Torvaldssource "crypto/Kconfig"
17131da177e4SLinus Torvalds
17141da177e4SLinus Torvaldssource "lib/Kconfig"
17151da177e4SLinus Torvalds
17161da177e4SLinus Torvalds#
17171da177e4SLinus Torvalds# Use the generic interrupt handling code in kernel/irq/:
17181da177e4SLinus Torvalds#
17191da177e4SLinus Torvaldsconfig GENERIC_HARDIRQS
17201da177e4SLinus Torvalds	bool
17211da177e4SLinus Torvalds	default y
17221da177e4SLinus Torvalds
17231da177e4SLinus Torvaldsconfig GENERIC_IRQ_PROBE
17241da177e4SLinus Torvalds	bool
17251da177e4SLinus Torvalds	default y
17265cae841bSAl Viro
17275cae841bSAl Viroconfig ISA_DMA_API
17285cae841bSAl Viro	bool
17295cae841bSAl Viro	default y
1730