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 7561ed242dSRalf Baechle select ARCH_MAY_HAVE_PC_FDC 761da177e4SLinus Torvalds select GENERIC_ISA_DMA 771da177e4SLinus Torvalds select I8259 781da177e4SLinus Torvalds select ISA 79ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 80ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL 811da177e4SLinus Torvalds help 821da177e4SLinus Torvalds This a family of machines based on the MIPS R4030 chipset which was 831da177e4SLinus Torvalds used by several vendors to build RISC/os and Windows NT workstations. 841da177e4SLinus Torvalds Members include the Acer PICA, MIPS Magnum 4000, MIPS Millenium and 851da177e4SLinus Torvalds Olivetti M700-10 workstations. 861da177e4SLinus Torvalds 871da177e4SLinus Torvaldsconfig ACER_PICA_61 881da177e4SLinus Torvalds bool "Support for Acer PICA 1 chipset (EXPERIMENTAL)" 891da177e4SLinus Torvalds depends on MACH_JAZZ && EXPERIMENTAL 901da177e4SLinus Torvalds select DMA_NONCOHERENT 911da177e4SLinus Torvalds help 921da177e4SLinus Torvalds This is a machine with a R4400 133/150 MHz CPU. To compile a Linux 931da177e4SLinus Torvalds kernel that runs on these, say Y here. For details about Linux on 941da177e4SLinus Torvalds the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at 951da177e4SLinus Torvalds <http://www.linux-mips.org/>. 961da177e4SLinus Torvalds 971da177e4SLinus Torvaldsconfig MIPS_MAGNUM_4000 981da177e4SLinus Torvalds bool "Support for MIPS Magnum 4000" 991da177e4SLinus Torvalds depends on MACH_JAZZ 1001da177e4SLinus Torvalds select DMA_NONCOHERENT 1011da177e4SLinus Torvalds help 1021da177e4SLinus Torvalds This is a machine with a R4000 100 MHz CPU. To compile a Linux 1031da177e4SLinus Torvalds kernel that runs on these, say Y here. For details about Linux on 1041da177e4SLinus Torvalds the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at 1051da177e4SLinus Torvalds <http://www.linux-mips.org/>. 1061da177e4SLinus Torvalds 1071da177e4SLinus Torvaldsconfig OLIVETTI_M700 1081da177e4SLinus Torvalds bool "Support for Olivetti M700-10" 1091da177e4SLinus Torvalds depends on MACH_JAZZ 1101da177e4SLinus Torvalds select DMA_NONCOHERENT 1111da177e4SLinus Torvalds help 1121da177e4SLinus Torvalds This is a machine with a R4000 100 MHz CPU. To compile a Linux 1131da177e4SLinus Torvalds kernel that runs on these, say Y here. For details about Linux on 1141da177e4SLinus Torvalds the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at 1151da177e4SLinus Torvalds <http://www.linux-mips.org/>. 1161da177e4SLinus Torvalds 1171da177e4SLinus Torvaldsconfig MACH_VR41XX 11863fb6fd1SYoichi Yuasa bool "Support for NEC VR4100 series based machines" 119ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 120ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL 1211da177e4SLinus Torvalds 1221da177e4SLinus Torvaldsconfig NEC_CMBVR4133 1231da177e4SLinus Torvalds bool "Support for NEC CMB-VR4133" 1241da177e4SLinus Torvalds depends on MACH_VR41XX 1251da177e4SLinus Torvalds select CPU_VR41XX 1261da177e4SLinus Torvalds select DMA_NONCOHERENT 1271da177e4SLinus Torvalds select IRQ_CPU 1281da177e4SLinus Torvalds select HW_HAS_PCI 1291da177e4SLinus Torvalds 1301da177e4SLinus Torvaldsconfig ROCKHOPPER 1311da177e4SLinus Torvalds bool "Support for Rockhopper baseboard" 1321da177e4SLinus Torvalds depends on NEC_CMBVR4133 1331da177e4SLinus Torvalds select I8259 1341da177e4SLinus Torvalds select HAVE_STD_PC_SERIAL_PORT 1351da177e4SLinus Torvalds 1361da177e4SLinus Torvaldsconfig CASIO_E55 1371da177e4SLinus Torvalds bool "Support for CASIO CASSIOPEIA E-10/15/55/65" 1381da177e4SLinus Torvalds depends on MACH_VR41XX 1398dd4aebeSYoichi Yuasa select CPU_LITTLE_ENDIAN 1401da177e4SLinus Torvalds select DMA_NONCOHERENT 1411da177e4SLinus Torvalds select IRQ_CPU 1421da177e4SLinus Torvalds select ISA 1431da177e4SLinus Torvalds 1441da177e4SLinus Torvaldsconfig IBM_WORKPAD 1451da177e4SLinus Torvalds bool "Support for IBM WorkPad z50" 1461da177e4SLinus Torvalds depends on MACH_VR41XX 1478dd4aebeSYoichi Yuasa select CPU_LITTLE_ENDIAN 1481da177e4SLinus Torvalds select DMA_NONCOHERENT 1491da177e4SLinus Torvalds select IRQ_CPU 1501da177e4SLinus Torvalds select ISA 1511da177e4SLinus Torvalds 15263b799f9SYoichi Yuasaconfig TANBAC_TB022X 15363b799f9SYoichi Yuasa bool "Support for TANBAC VR4131 multichip module and TANBAC VR4131DIMM" 1541da177e4SLinus Torvalds depends on MACH_VR41XX 15563b799f9SYoichi Yuasa select CPU_LITTLE_ENDIAN 1561da177e4SLinus Torvalds select DMA_NONCOHERENT 1571da177e4SLinus Torvalds select IRQ_CPU 15863b799f9SYoichi Yuasa select HW_HAS_PCI 1591da177e4SLinus Torvalds help 16063b799f9SYoichi Yuasa The TANBAC VR4131 multichip module(TB0225) and 16163b799f9SYoichi Yuasa the TANBAC VR4131DIMM(TB0229) are MIPS-based platforms 16263b799f9SYoichi Yuasa manufactured by TANBAC. 16363b799f9SYoichi Yuasa Please refer to <http://www.tanbac.co.jp/> 16463b799f9SYoichi Yuasa about VR4131 multichip module and VR4131DIMM. 1651da177e4SLinus Torvalds 16663b799f9SYoichi Yuasaconfig TANBAC_TB0226 16763b799f9SYoichi Yuasa bool "Support for TANBAC Mbase(TB0226)" 16863b799f9SYoichi Yuasa depends on TANBAC_TB022X 16963b799f9SYoichi Yuasa select GPIO_VR41XX 1701da177e4SLinus Torvalds help 17163b799f9SYoichi Yuasa The TANBAC Mbase(TB0226) is a MIPS-based platform manufactured by TANBAC. 17263b799f9SYoichi Yuasa Please refer to <http://www.tanbac.co.jp/> about Mbase. 1731da177e4SLinus Torvalds 1744d666d7aSYoichi Yuasaconfig TANBAC_TB0287 1754d666d7aSYoichi Yuasa bool "Support for TANBAC Mini-ITX DIMM base(TB0287)" 1764d666d7aSYoichi Yuasa depends on TANBAC_TB022X 1774d666d7aSYoichi Yuasa help 1784d666d7aSYoichi Yuasa The TANBAC Mini-ITX DIMM base(TB0287) is a MIPS-based platform manufactured by TANBAC. 1794d666d7aSYoichi Yuasa Please refer to <http://www.tanbac.co.jp/> about Mini-ITX DIMM base. 1804d666d7aSYoichi Yuasa 1811da177e4SLinus Torvaldsconfig VICTOR_MPC30X 1821da177e4SLinus Torvalds bool "Support for Victor MP-C303/304" 1831da177e4SLinus Torvalds depends on MACH_VR41XX 1848dd4aebeSYoichi Yuasa select CPU_LITTLE_ENDIAN 1858dd4aebeSYoichi Yuasa select DMA_NONCOHERENT 1868dd4aebeSYoichi Yuasa select IRQ_CPU 1878dd4aebeSYoichi Yuasa select HW_HAS_PCI 1881da177e4SLinus Torvalds 1891da177e4SLinus Torvaldsconfig ZAO_CAPCELLA 1901da177e4SLinus Torvalds bool "Support for ZAO Networks Capcella" 1911da177e4SLinus Torvalds depends on MACH_VR41XX 1928dd4aebeSYoichi Yuasa select CPU_LITTLE_ENDIAN 1931da177e4SLinus Torvalds select DMA_NONCOHERENT 1941da177e4SLinus Torvalds select IRQ_CPU 1958dd4aebeSYoichi Yuasa select HW_HAS_PCI 1961da177e4SLinus Torvalds 1971da177e4SLinus Torvaldsconfig PCI_VR41XX 1981da177e4SLinus Torvalds bool "Add PCI control unit support of NEC VR4100 series" 199466adc66SYoichi Yuasa depends on MACH_VR41XX && HW_HAS_PCI 200466adc66SYoichi Yuasa default y 201466adc66SYoichi Yuasa select PCI 2021da177e4SLinus Torvalds 2031da177e4SLinus Torvaldsconfig VRC4173 2041da177e4SLinus Torvalds tristate "Add NEC VRC4173 companion chip support" 2051da177e4SLinus Torvalds depends on MACH_VR41XX && PCI_VR41XX 2061da177e4SLinus Torvalds ---help--- 2071da177e4SLinus Torvalds The NEC VRC4173 is a companion chip for NEC VR4122/VR4131. 2081da177e4SLinus Torvalds 2091da177e4SLinus Torvaldsconfig TOSHIBA_JMR3927 2101da177e4SLinus Torvalds bool "Support for Toshiba JMR-TX3927 board" 2111da177e4SLinus Torvalds select DMA_NONCOHERENT 2121da177e4SLinus Torvalds select HW_HAS_PCI 2131da177e4SLinus Torvalds select SWAP_IO_SPACE 214ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 2151da177e4SLinus Torvalds 2161da177e4SLinus Torvaldsconfig MIPS_COBALT 217ed5ba2fbSYoichi Yuasa bool "Support for Cobalt Server" 2181da177e4SLinus Torvalds depends on EXPERIMENTAL 2191da177e4SLinus Torvalds select DMA_NONCOHERENT 2201da177e4SLinus Torvalds select HW_HAS_PCI 2211da177e4SLinus Torvalds select I8259 2221da177e4SLinus Torvalds select IRQ_CPU 223ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 224ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL 2251da177e4SLinus Torvalds 2261da177e4SLinus Torvaldsconfig MACH_DECSTATION 2271da177e4SLinus Torvalds bool "Support for DECstations" 2281da177e4SLinus Torvalds select BOOT_ELF32 2291da177e4SLinus Torvalds select DMA_NONCOHERENT 230b6d468ecSMaciej W. Rozycki select EARLY_PRINTK 2311da177e4SLinus Torvalds select IRQ_CPU 232ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 233ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL 2341da177e4SLinus Torvalds ---help--- 2351da177e4SLinus Torvalds This enables support for DEC's MIPS based workstations. For details 2361da177e4SLinus Torvalds see the Linux/MIPS FAQ on <http://www.linux-mips.org/> and the 2371da177e4SLinus Torvalds DECstation porting pages on <http://decstation.unix-ag.org/>. 2381da177e4SLinus Torvalds 2391da177e4SLinus Torvalds If you have one of the following DECstation Models you definitely 2401da177e4SLinus Torvalds want to choose R4xx0 for the CPU Type: 2411da177e4SLinus Torvalds 2421da177e4SLinus Torvalds DECstation 5000/50 2431da177e4SLinus Torvalds DECstation 5000/150 2441da177e4SLinus Torvalds DECstation 5000/260 2451da177e4SLinus Torvalds DECsystem 5900/260 2461da177e4SLinus Torvalds 2471da177e4SLinus Torvalds otherwise choose R3000. 2481da177e4SLinus Torvalds 2491da177e4SLinus Torvaldsconfig MIPS_EV64120 2501da177e4SLinus Torvalds bool "Support for Galileo EV64120 Evaluation board (EXPERIMENTAL)" 2511da177e4SLinus Torvalds depends on EXPERIMENTAL 2521da177e4SLinus Torvalds select DMA_NONCOHERENT 253e01402b1SRalf Baechle select IRQ_CPU 2541da177e4SLinus Torvalds select HW_HAS_PCI 2551da177e4SLinus Torvalds select MIPS_GT64120 256ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 257ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 2581da177e4SLinus Torvalds help 2591da177e4SLinus Torvalds This is an evaluation board based on the Galileo GT-64120 2601da177e4SLinus Torvalds single-chip system controller that contains a MIPS R5000 compatible 2611da177e4SLinus Torvalds core running at 75/100MHz. Their website is located at 2621da177e4SLinus Torvalds <http://www.marvell.com/>. Say Y here if you wish to build a 2631da177e4SLinus Torvalds kernel for this platform. 2641da177e4SLinus Torvalds 2651da177e4SLinus Torvaldsconfig EVB_PCI1 2661da177e4SLinus Torvalds bool "Enable Second PCI (PCI1)" 2671da177e4SLinus Torvalds depends on MIPS_EV64120 2681da177e4SLinus Torvalds 2691da177e4SLinus Torvaldsconfig MIPS_EV96100 2701da177e4SLinus Torvalds bool "Support for Galileo EV96100 Evaluation board (EXPERIMENTAL)" 2711da177e4SLinus Torvalds depends on EXPERIMENTAL 2721da177e4SLinus Torvalds select DMA_NONCOHERENT 2731da177e4SLinus Torvalds select HW_HAS_PCI 2741da177e4SLinus Torvalds select IRQ_CPU 2751da177e4SLinus Torvalds select MIPS_GT96100 2761da177e4SLinus Torvalds select RM7000_CPU_SCACHE 2771da177e4SLinus Torvalds select SWAP_IO_SPACE 278ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 279ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 2801da177e4SLinus Torvalds help 2811da177e4SLinus Torvalds This is an evaluation board based on the Galileo GT-96100 LAN/WAN 2821da177e4SLinus Torvalds communications controllers containing a MIPS R5000 compatible core 2831da177e4SLinus Torvalds running at 83MHz. Their website is <http://www.marvell.com/>. Say Y 2841da177e4SLinus Torvalds here if you wish to build a kernel for this platform. 2851da177e4SLinus Torvalds 2861da177e4SLinus Torvaldsconfig MIPS_IVR 2871da177e4SLinus Torvalds bool "Support for Globespan IVR board" 2881da177e4SLinus Torvalds select DMA_NONCOHERENT 2891da177e4SLinus Torvalds select HW_HAS_PCI 290ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 291ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL 2921da177e4SLinus Torvalds help 2931da177e4SLinus Torvalds This is an evaluation board built by Globespan to showcase thir 2941da177e4SLinus Torvalds iVR (Internet Video Recorder) design. It utilizes a QED RM5231 2951da177e4SLinus Torvalds R5000 MIPS core. More information can be found out their website 2961da177e4SLinus Torvalds located at <http://www.globespan.net/>. Say Y here if you wish to 2971da177e4SLinus Torvalds build a kernel for this platform. 2981da177e4SLinus Torvalds 2991da177e4SLinus Torvaldsconfig LASAT 3001da177e4SLinus Torvalds bool "Support for LASAT Networks platforms" 3011da177e4SLinus Torvalds select DMA_NONCOHERENT 3021da177e4SLinus Torvalds select HW_HAS_PCI 3031da177e4SLinus Torvalds select MIPS_GT64120 3041da177e4SLinus Torvalds select R5000_CPU_SCACHE 305ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 306ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL 3071da177e4SLinus Torvalds 3081da177e4SLinus Torvaldsconfig PICVUE 3091da177e4SLinus Torvalds tristate "PICVUE LCD display driver" 3101da177e4SLinus Torvalds depends on LASAT 3111da177e4SLinus Torvalds 3121da177e4SLinus Torvaldsconfig PICVUE_PROC 3131da177e4SLinus Torvalds tristate "PICVUE LCD display driver /proc interface" 3141da177e4SLinus Torvalds depends on PICVUE 3151da177e4SLinus Torvalds 3161da177e4SLinus Torvaldsconfig DS1603 3171da177e4SLinus Torvalds bool "DS1603 RTC driver" 3181da177e4SLinus Torvalds depends on LASAT 3191da177e4SLinus Torvalds 3201da177e4SLinus Torvaldsconfig LASAT_SYSCTL 3211da177e4SLinus Torvalds bool "LASAT sysctl interface" 3221da177e4SLinus Torvalds depends on LASAT 3231da177e4SLinus Torvalds 3241da177e4SLinus Torvaldsconfig MIPS_ITE8172 3251da177e4SLinus Torvalds bool "Support for ITE 8172G board" 3261da177e4SLinus Torvalds select DMA_NONCOHERENT 3271da177e4SLinus Torvalds select HW_HAS_PCI 328ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 329ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL 3301da177e4SLinus Torvalds help 3311da177e4SLinus Torvalds Ths is an evaluation board made by ITE <http://www.ite.com.tw/> 3321da177e4SLinus Torvalds with ATX form factor that utilizes a MIPS R5000 to work with its 3331da177e4SLinus Torvalds ITE8172G companion internet appliance chip. The MIPS core can be 3341da177e4SLinus Torvalds either a NEC Vr5432 or QED RM5231. Say Y here if you wish to build 3351da177e4SLinus Torvalds a kernel for this platform. 3361da177e4SLinus Torvalds 3371da177e4SLinus Torvaldsconfig IT8172_REVC 3381da177e4SLinus Torvalds bool "Support for older IT8172 (Rev C)" 3391da177e4SLinus Torvalds depends on MIPS_ITE8172 3401da177e4SLinus Torvalds help 3411da177e4SLinus Torvalds Say Y here to support the older, Revision C version of the Integrated 3421da177e4SLinus Torvalds Technology Express, Inc. ITE8172 SBC. Vendor page at 3431da177e4SLinus Torvalds <http://www.ite.com.tw/ia/brief_it8172bsp.htm>; picture of the 3441da177e4SLinus Torvalds board at <http://www.mvista.com/partners/semiconductor/ite.html>. 3451da177e4SLinus Torvalds 3461da177e4SLinus Torvaldsconfig MIPS_ATLAS 3471da177e4SLinus Torvalds bool "Support for MIPS Atlas board" 3481da177e4SLinus Torvalds select BOOT_ELF32 3491da177e4SLinus Torvalds select DMA_NONCOHERENT 3501da177e4SLinus Torvalds select HW_HAS_PCI 3511da177e4SLinus Torvalds select MIPS_GT64120 352f4b7cdb4SMaciej W. Rozycki select RM7000_CPU_SCACHE 3531da177e4SLinus Torvalds select SWAP_IO_SPACE 354ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 355ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 3561da177e4SLinus Torvalds help 357f638d197SMaciej W. Rozycki This enables support for the MIPS Technologies Atlas evaluation 3581da177e4SLinus Torvalds board. 3591da177e4SLinus Torvalds 3601da177e4SLinus Torvaldsconfig MIPS_MALTA 3611da177e4SLinus Torvalds bool "Support for MIPS Malta board" 36261ed242dSRalf Baechle select ARCH_MAY_HAVE_PC_FDC 3631da177e4SLinus Torvalds select BOOT_ELF32 3641da177e4SLinus Torvalds select HAVE_STD_PC_SERIAL_PORT 3651da177e4SLinus Torvalds select DMA_NONCOHERENT 366e01402b1SRalf Baechle select IRQ_CPU 3671da177e4SLinus Torvalds select GENERIC_ISA_DMA 3681da177e4SLinus Torvalds select HW_HAS_PCI 3691da177e4SLinus Torvalds select I8259 3701da177e4SLinus Torvalds select MIPS_GT64120 3711da177e4SLinus Torvalds select SWAP_IO_SPACE 372ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 373ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 3741da177e4SLinus Torvalds help 375f638d197SMaciej W. Rozycki This enables support for the MIPS Technologies Malta evaluation 3761da177e4SLinus Torvalds board. 3771da177e4SLinus Torvalds 3781da177e4SLinus Torvaldsconfig MIPS_SEAD 3791da177e4SLinus Torvalds bool "Support for MIPS SEAD board (EXPERIMENTAL)" 3801da177e4SLinus Torvalds depends on EXPERIMENTAL 3811da177e4SLinus Torvalds select IRQ_CPU 3821da177e4SLinus Torvalds select DMA_NONCOHERENT 383ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 384ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 385f638d197SMaciej W. Rozycki help 386f638d197SMaciej W. Rozycki This enables support for the MIPS Technologies SEAD evaluation 387f638d197SMaciej W. Rozycki board. 3881da177e4SLinus Torvalds 3891da177e4SLinus Torvaldsconfig MOMENCO_OCELOT 3901da177e4SLinus Torvalds bool "Support for Momentum Ocelot board" 3911da177e4SLinus Torvalds select DMA_NONCOHERENT 3921da177e4SLinus Torvalds select HW_HAS_PCI 3931da177e4SLinus Torvalds select IRQ_CPU 3941da177e4SLinus Torvalds select IRQ_CPU_RM7K 3951da177e4SLinus Torvalds select MIPS_GT64120 3961da177e4SLinus Torvalds select RM7000_CPU_SCACHE 3971da177e4SLinus Torvalds select SWAP_IO_SPACE 398ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 399ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 4001da177e4SLinus Torvalds help 4011da177e4SLinus Torvalds The Ocelot is a MIPS-based Single Board Computer (SBC) made by 4021da177e4SLinus Torvalds Momentum Computer <http://www.momenco.com/>. 4031da177e4SLinus Torvalds 4041da177e4SLinus Torvaldsconfig MOMENCO_OCELOT_G 4051da177e4SLinus Torvalds bool "Support for Momentum Ocelot-G board" 4061da177e4SLinus Torvalds select DMA_NONCOHERENT 4071da177e4SLinus Torvalds select HW_HAS_PCI 4081da177e4SLinus Torvalds select IRQ_CPU 4091da177e4SLinus Torvalds select IRQ_CPU_RM7K 4101da177e4SLinus Torvalds select PCI_MARVELL 4111da177e4SLinus Torvalds select RM7000_CPU_SCACHE 4121da177e4SLinus Torvalds select SWAP_IO_SPACE 413ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 414ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 4151da177e4SLinus Torvalds help 4161da177e4SLinus Torvalds The Ocelot is a MIPS-based Single Board Computer (SBC) made by 4171da177e4SLinus Torvalds Momentum Computer <http://www.momenco.com/>. 4181da177e4SLinus Torvalds 4191da177e4SLinus Torvaldsconfig MOMENCO_OCELOT_C 4201da177e4SLinus Torvalds bool "Support for Momentum Ocelot-C board" 4211da177e4SLinus Torvalds select DMA_NONCOHERENT 4221da177e4SLinus Torvalds select HW_HAS_PCI 4231da177e4SLinus Torvalds select IRQ_CPU 4241da177e4SLinus Torvalds select IRQ_MV64340 4251da177e4SLinus Torvalds select PCI_MARVELL 4261da177e4SLinus Torvalds select RM7000_CPU_SCACHE 4271da177e4SLinus Torvalds select SWAP_IO_SPACE 428ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 429ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 4301da177e4SLinus Torvalds help 4311da177e4SLinus Torvalds The Ocelot is a MIPS-based Single Board Computer (SBC) made by 4321da177e4SLinus Torvalds Momentum Computer <http://www.momenco.com/>. 4331da177e4SLinus Torvalds 4341da177e4SLinus Torvaldsconfig MOMENCO_OCELOT_3 4351da177e4SLinus Torvalds bool "Support for Momentum Ocelot-3 board" 4361da177e4SLinus Torvalds select BOOT_ELF32 4371da177e4SLinus Torvalds select DMA_NONCOHERENT 4381da177e4SLinus Torvalds select HW_HAS_PCI 4391da177e4SLinus Torvalds select IRQ_CPU 4401da177e4SLinus Torvalds select IRQ_CPU_RM7K 4411da177e4SLinus Torvalds select IRQ_MV64340 4421da177e4SLinus Torvalds select PCI_MARVELL 4431da177e4SLinus Torvalds select RM7000_CPU_SCACHE 4441da177e4SLinus Torvalds select SWAP_IO_SPACE 445ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 446ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 4471da177e4SLinus Torvalds help 4481da177e4SLinus Torvalds The Ocelot-3 is based off Discovery III System Controller and 4491da177e4SLinus Torvalds PMC-Sierra Rm79000 core. 4501da177e4SLinus Torvalds 451*c78cbf49SRalf Baechleconfig MIPS_SIM 452*c78cbf49SRalf Baechle bool 'Support for MIPS simulator (MIPSsim)' 453*c78cbf49SRalf Baechle select DMA_NONCOHERENT 454*c78cbf49SRalf Baechle select IRQ_CPU 455*c78cbf49SRalf Baechle select SYS_SUPPORTS_32BIT_KERNEL 456*c78cbf49SRalf Baechle select SYS_SUPPORTS_BIG_ENDIAN 457*c78cbf49SRalf Baechle select SYS_SUPPORTS_LITTLE_ENDIAN 458*c78cbf49SRalf Baechle help 459*c78cbf49SRalf Baechle This option enables support for MIPS Technologies MIPSsim software 460*c78cbf49SRalf Baechle emulator. 461*c78cbf49SRalf Baechle 4621da177e4SLinus Torvaldsconfig MOMENCO_JAGUAR_ATX 4631da177e4SLinus Torvalds bool "Support for Momentum Jaguar board" 4641da177e4SLinus Torvalds select BOOT_ELF32 4651da177e4SLinus Torvalds select DMA_NONCOHERENT 4661da177e4SLinus Torvalds select HW_HAS_PCI 4671da177e4SLinus Torvalds select IRQ_CPU 4681da177e4SLinus Torvalds select IRQ_CPU_RM7K 4691da177e4SLinus Torvalds select IRQ_MV64340 4701da177e4SLinus Torvalds select LIMITED_DMA 4711da177e4SLinus Torvalds select PCI_MARVELL 4721da177e4SLinus Torvalds select RM7000_CPU_SCACHE 4731da177e4SLinus Torvalds select SWAP_IO_SPACE 474ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 475ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 4761da177e4SLinus Torvalds help 4771da177e4SLinus Torvalds The Jaguar ATX is a MIPS-based Single Board Computer (SBC) made by 4781da177e4SLinus Torvalds Momentum Computer <http://www.momenco.com/>. 4791da177e4SLinus Torvalds 4801da177e4SLinus Torvaldsconfig JAGUAR_DMALOW 4811da177e4SLinus Torvalds bool "Low DMA Mode" 4821da177e4SLinus Torvalds depends on MOMENCO_JAGUAR_ATX 4831da177e4SLinus Torvalds help 4841da177e4SLinus Torvalds Select to Y if jump JP5 is set on your board, N otherwise. Normally 4851da177e4SLinus Torvalds the jumper is set, so if you feel unsafe, just say Y. 4861da177e4SLinus Torvalds 4871da177e4SLinus Torvaldsconfig PMC_YOSEMITE 4881da177e4SLinus Torvalds bool "Support for PMC-Sierra Yosemite eval board" 4891da177e4SLinus Torvalds select DMA_COHERENT 4901da177e4SLinus Torvalds select HW_HAS_PCI 4911da177e4SLinus Torvalds select IRQ_CPU 4921da177e4SLinus Torvalds select IRQ_CPU_RM7K 4931da177e4SLinus Torvalds select IRQ_CPU_RM9K 4941da177e4SLinus Torvalds select SWAP_IO_SPACE 495ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 496ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 4971da177e4SLinus Torvalds help 4981da177e4SLinus Torvalds Yosemite is an evaluation board for the RM9000x2 processor 4991da177e4SLinus Torvalds manufactured by PMC-Sierra 5001da177e4SLinus Torvalds 5011da177e4SLinus Torvaldsconfig HYPERTRANSPORT 5021da177e4SLinus Torvalds bool "Hypertransport Support for PMC-Sierra Yosemite" 5031da177e4SLinus Torvalds depends on PMC_YOSEMITE 5041da177e4SLinus Torvalds 505bdf21b18SPete Popovconfig PNX8550_V2PCI 506bdf21b18SPete Popov bool "Support for Philips PNX8550 based Viper2-PCI board" 507bdf21b18SPete Popov select PNX8550 508bdf21b18SPete Popov select SYS_SUPPORTS_LITTLE_ENDIAN 509bdf21b18SPete Popov 510bdf21b18SPete Popovconfig PNX8550_JBS 511bdf21b18SPete Popov bool "Support for Philips PNX8550 based JBS board" 512bdf21b18SPete Popov select PNX8550 513bdf21b18SPete Popov select SYS_SUPPORTS_LITTLE_ENDIAN 514bdf21b18SPete Popov 5151da177e4SLinus Torvaldsconfig DDB5074 5161da177e4SLinus Torvalds bool "Support for NEC DDB Vrc-5074 (EXPERIMENTAL)" 5171da177e4SLinus Torvalds depends on EXPERIMENTAL 5181da177e4SLinus Torvalds select DMA_NONCOHERENT 5191da177e4SLinus Torvalds select HAVE_STD_PC_SERIAL_PORT 5201da177e4SLinus Torvalds select HW_HAS_PCI 5211da177e4SLinus Torvalds select IRQ_CPU 5221da177e4SLinus Torvalds select I8259 5231da177e4SLinus Torvalds select ISA 524ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 525ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 5261da177e4SLinus Torvalds help 5271da177e4SLinus Torvalds This enables support for the VR5000-based NEC DDB Vrc-5074 5281da177e4SLinus Torvalds evaluation board. 5291da177e4SLinus Torvalds 5301da177e4SLinus Torvaldsconfig DDB5476 5311da177e4SLinus Torvalds bool "Support for NEC DDB Vrc-5476" 5321da177e4SLinus Torvalds select DMA_NONCOHERENT 5331da177e4SLinus Torvalds select HAVE_STD_PC_SERIAL_PORT 5341da177e4SLinus Torvalds select HW_HAS_PCI 5351da177e4SLinus Torvalds select IRQ_CPU 5361da177e4SLinus Torvalds select I8259 5371da177e4SLinus Torvalds select ISA 538ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 539ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL 5401da177e4SLinus Torvalds help 5411da177e4SLinus Torvalds This enables support for the R5432-based NEC DDB Vrc-5476 5421da177e4SLinus Torvalds evaluation board. 5431da177e4SLinus Torvalds 5441da177e4SLinus Torvalds Features : kernel debugging, serial terminal, NFS root fs, on-board 5451da177e4SLinus Torvalds ether port USB, AC97, PCI, PCI VGA card & framebuffer console, 5461da177e4SLinus Torvalds IDE controller, PS2 keyboard, PS2 mouse, etc. 5471da177e4SLinus Torvalds 5481da177e4SLinus Torvaldsconfig DDB5477 5491da177e4SLinus Torvalds bool "Support for NEC DDB Vrc-5477" 5501da177e4SLinus Torvalds select DMA_NONCOHERENT 5511da177e4SLinus Torvalds select HW_HAS_PCI 5521da177e4SLinus Torvalds select I8259 5531da177e4SLinus Torvalds select IRQ_CPU 554ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 555ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL 5561da177e4SLinus Torvalds help 5571da177e4SLinus Torvalds This enables support for the R5432-based NEC DDB Vrc-5477, 5581da177e4SLinus Torvalds or Rockhopper/SolutionGear boards with R5432/R5500 CPUs. 5591da177e4SLinus Torvalds 5601da177e4SLinus Torvalds Features : kernel debugging, serial terminal, NFS root fs, on-board 5611da177e4SLinus Torvalds ether port USB, AC97, PCI, etc. 5621da177e4SLinus Torvalds 5631da177e4SLinus Torvaldsconfig DDB5477_BUS_FREQUENCY 5641da177e4SLinus Torvalds int "bus frequency (in kHZ, 0 for auto-detect)" 5651da177e4SLinus Torvalds depends on DDB5477 5661da177e4SLinus Torvalds default 0 5671da177e4SLinus Torvalds 56807119621SRalf Baechleconfig QEMU 56907119621SRalf Baechle bool "Support for Qemu" 57007119621SRalf Baechle select DMA_COHERENT 57107119621SRalf Baechle select GENERIC_ISA_DMA 57207119621SRalf Baechle select HAVE_STD_PC_SERIAL_PORT 57307119621SRalf Baechle select I8259 57407119621SRalf Baechle select ISA 57507119621SRalf Baechle select SWAP_IO_SPACE 57607119621SRalf Baechle select SYS_SUPPORTS_32BIT_KERNEL 57707119621SRalf Baechle select SYS_SUPPORTS_BIG_ENDIAN 578797798c1SRalf Baechle select SYS_SUPPORTS_HIGHMEM 57907119621SRalf Baechle help 58007119621SRalf Baechle Qemu is a software emulator which among other architectures also 58107119621SRalf Baechle can simulate a MIPS32 4Kc system. This patch adds support for the 58207119621SRalf Baechle system architecture that currently is being simulated by Qemu. It 58307119621SRalf Baechle will eventually be removed again when Qemu has the capability to 58407119621SRalf Baechle simulate actual MIPS hardware platforms. More information on Qemu 58507119621SRalf Baechle can be found at http://www.linux-mips.org/wiki/Qemu. 58607119621SRalf Baechle 5871da177e4SLinus Torvaldsconfig SGI_IP22 5881da177e4SLinus Torvalds bool "Support for SGI IP22 (Indy/Indigo2)" 5891da177e4SLinus Torvalds select ARC 5901da177e4SLinus Torvalds select ARC32 5911da177e4SLinus Torvalds select BOOT_ELF32 5921da177e4SLinus Torvalds select DMA_NONCOHERENT 5931da177e4SLinus Torvalds select IP22_CPU_SCACHE 5941da177e4SLinus Torvalds select IRQ_CPU 5951da177e4SLinus Torvalds select SWAP_IO_SPACE 596ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 597ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 5981da177e4SLinus Torvalds help 5991da177e4SLinus Torvalds This are the SGI Indy, Challenge S and Indigo2, as well as certain 6001da177e4SLinus Torvalds OEM variants like the Tandem CMN B006S. To compile a Linux kernel 6011da177e4SLinus Torvalds that runs on these, say Y here. 6021da177e4SLinus Torvalds 6031da177e4SLinus Torvaldsconfig SGI_IP27 6041da177e4SLinus Torvalds bool "Support for SGI IP27 (Origin200/2000)" 6051da177e4SLinus Torvalds select ARC 6061da177e4SLinus Torvalds select ARC64 6071da177e4SLinus Torvalds select DMA_IP27 6081da177e4SLinus Torvalds select HW_HAS_PCI 6091da177e4SLinus Torvalds select PCI_DOMAINS 610ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 6111da177e4SLinus Torvalds help 6121da177e4SLinus Torvalds This are the SGI Origin 200, Origin 2000 and Onyx 2 Graphics 6131da177e4SLinus Torvalds workstations. To compile a Linux kernel that runs on these, say Y 6141da177e4SLinus Torvalds here. 6151da177e4SLinus Torvalds 6161da177e4SLinus Torvalds#config SGI_SN0_XXL 6171da177e4SLinus Torvalds# bool "IP27 XXL" 6181da177e4SLinus Torvalds# depends on SGI_IP27 6191da177e4SLinus Torvalds# This options adds support for userspace processes upto 16TB size. 6201da177e4SLinus Torvalds# Normally the limit is just .5TB. 6211da177e4SLinus Torvalds 6221da177e4SLinus Torvaldsconfig SGI_SN0_N_MODE 6231da177e4SLinus Torvalds bool "IP27 N-Mode" 6241da177e4SLinus Torvalds depends on SGI_IP27 6251da177e4SLinus Torvalds help 6261da177e4SLinus Torvalds The nodes of Origin 200, Origin 2000 and Onyx 2 systems can be 6271da177e4SLinus Torvalds configured in either N-Modes which allows for more nodes or M-Mode 6281da177e4SLinus Torvalds which allows for more memory. Your system is most probably 6291da177e4SLinus Torvalds running in M-Mode, so you should say N here. 6301da177e4SLinus Torvalds 6313f22ab27SDave Hansenconfig ARCH_DISCONTIGMEM_ENABLE 6321da177e4SLinus Torvalds bool 6331da177e4SLinus Torvalds default y if SGI_IP27 6341da177e4SLinus Torvalds help 6351da177e4SLinus Torvalds Say Y to upport efficient handling of discontiguous physical memory, 6361da177e4SLinus Torvalds for architectures which are either NUMA (Non-Uniform Memory Access) 6371da177e4SLinus Torvalds or have huge holes in the physical address space for other reasons. 6381da177e4SLinus Torvalds See <file:Documentation/vm/numa> for more. 6391da177e4SLinus Torvalds 6401da177e4SLinus Torvaldsconfig NUMA 6411da177e4SLinus Torvalds bool "NUMA Support" 6421da177e4SLinus Torvalds depends on SGI_IP27 6431da177e4SLinus Torvalds help 6441da177e4SLinus Torvalds Say Y to compile the kernel to support NUMA (Non-Uniform Memory 6451da177e4SLinus Torvalds Access). This option is for configuring high-end multiprocessor 6461da177e4SLinus Torvalds server machines. If in doubt, say N. 6471da177e4SLinus Torvalds 6481da177e4SLinus Torvaldsconfig MAPPED_KERNEL 6491da177e4SLinus Torvalds bool "Mapped kernel support" 6501da177e4SLinus Torvalds depends on SGI_IP27 6511da177e4SLinus Torvalds help 6521da177e4SLinus Torvalds Change the way a Linux kernel is loaded into memory on a MIPS64 6531da177e4SLinus Torvalds machine. This is required in order to support text replication and 6541da177e4SLinus Torvalds NUMA. If you need to understand it, read the source code. 6551da177e4SLinus Torvalds 6561da177e4SLinus Torvaldsconfig REPLICATE_KTEXT 6571da177e4SLinus Torvalds bool "Kernel text replication support" 6581da177e4SLinus Torvalds depends on SGI_IP27 6591da177e4SLinus Torvalds help 6601da177e4SLinus Torvalds Say Y here to enable replicating the kernel text across multiple 6611da177e4SLinus Torvalds nodes in a NUMA cluster. This trades memory for speed. 6621da177e4SLinus Torvalds 6631da177e4SLinus Torvaldsconfig REPLICATE_EXHANDLERS 6641da177e4SLinus Torvalds bool "Exception handler replication support" 6651da177e4SLinus Torvalds depends on SGI_IP27 6661da177e4SLinus Torvalds help 6671da177e4SLinus Torvalds Say Y here to enable replicating the kernel exception handlers 6681da177e4SLinus Torvalds across multiple nodes in a NUMA cluster. This trades memory for 6691da177e4SLinus Torvalds speed. 6701da177e4SLinus Torvalds 6711da177e4SLinus Torvaldsconfig SGI_IP32 6721da177e4SLinus Torvalds bool "Support for SGI IP32 (O2) (EXPERIMENTAL)" 673ed5ba2fbSYoichi Yuasa depends on EXPERIMENTAL 6741da177e4SLinus Torvalds select ARC 6751da177e4SLinus Torvalds select ARC32 6761da177e4SLinus Torvalds select BOOT_ELF32 6771da177e4SLinus Torvalds select OWN_DMA 6781da177e4SLinus Torvalds select DMA_IP32 6791da177e4SLinus Torvalds select DMA_NONCOHERENT 6805eaf7a21SRalf Baechle select HAS_TXX9_SERIAL 6811da177e4SLinus Torvalds select HW_HAS_PCI 6821da177e4SLinus Torvalds select R5000_CPU_SCACHE 6831da177e4SLinus Torvalds select RM7000_CPU_SCACHE 684ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 6851da177e4SLinus Torvalds help 6861da177e4SLinus Torvalds If you want this kernel to run on SGI O2 workstation, say Y here. 6871da177e4SLinus Torvalds 688e3ad1c23SPete Popovconfig SOC_AU1200 689e3ad1c23SPete Popov bool 690e3ad1c23SPete Popov select SOC_AU1X00 691e3ad1c23SPete Popov 6921da177e4SLinus Torvaldsconfig SOC_AU1X00 6931da177e4SLinus Torvalds bool "Support for AMD/Alchemy Au1X00 SOCs" 694ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 6951da177e4SLinus Torvalds 6961da177e4SLinus Torvaldschoice 6971da177e4SLinus Torvalds prompt "Au1X00 SOC Type" 6981da177e4SLinus Torvalds depends on SOC_AU1X00 6991da177e4SLinus Torvalds help 7001da177e4SLinus Torvalds Say Y here to enable support for one of three AMD/Alchemy 7011da177e4SLinus Torvalds SOCs. For additional documentation see www.amd.com. 7021da177e4SLinus Torvalds 7031da177e4SLinus Torvaldsconfig SOC_AU1000 7041da177e4SLinus Torvalds bool "SOC_AU1000" 7051da177e4SLinus Torvaldsconfig SOC_AU1100 7061da177e4SLinus Torvalds bool "SOC_AU1100" 7071da177e4SLinus Torvaldsconfig SOC_AU1500 7081da177e4SLinus Torvalds bool "SOC_AU1500" 7091da177e4SLinus Torvaldsconfig SOC_AU1550 7101da177e4SLinus Torvalds bool "SOC_AU1550" 7111da177e4SLinus Torvalds 71223fbee9dSRalf Baechleconfig TOSHIBA_RBTX4938 71323fbee9dSRalf Baechle bool "Support for Toshiba RBTX4938 board" 71423fbee9dSRalf Baechle select HAVE_STD_PC_SERIAL_PORT 71523fbee9dSRalf Baechle select DMA_NONCOHERENT 71623fbee9dSRalf Baechle select GENERIC_ISA_DMA 71723fbee9dSRalf Baechle select HAS_TXX9_SERIAL 71823fbee9dSRalf Baechle select HW_HAS_PCI 71923fbee9dSRalf Baechle select I8259 72023fbee9dSRalf Baechle select ISA 72123fbee9dSRalf Baechle select SWAP_IO_SPACE 72223fbee9dSRalf Baechle select SYS_SUPPORTS_32BIT_KERNEL 72323fbee9dSRalf Baechle select SYS_SUPPORTS_LITTLE_ENDIAN 72423fbee9dSRalf Baechle select SYS_SUPPORTS_BIG_ENDIAN 72523fbee9dSRalf Baechle select TOSHIBA_BOARDS 72623fbee9dSRalf Baechle help 72723fbee9dSRalf Baechle This Toshiba board is based on the TX4938 processor. Say Y here to 72823fbee9dSRalf Baechle support this machine type 72923fbee9dSRalf Baechle 7301da177e4SLinus Torvaldsendchoice 7311da177e4SLinus Torvalds 7321da177e4SLinus Torvaldschoice 7331da177e4SLinus Torvalds prompt "AMD/Alchemy Au1x00 board support" 7341da177e4SLinus Torvalds depends on SOC_AU1X00 7351da177e4SLinus Torvalds help 7361da177e4SLinus Torvalds These are evaluation boards built by AMD/Alchemy to 7371da177e4SLinus Torvalds showcase their Au1X00 Internet Edge Processors. The SOC design 7381da177e4SLinus Torvalds is based on the MIPS32 architecture running at 266/400/500MHz 7391da177e4SLinus Torvalds with many integrated peripherals. Further information can be 7401da177e4SLinus Torvalds found at their website, <http://www.amd.com/>. Say Y here if you 7411da177e4SLinus Torvalds wish to build a kernel for this platform. 7421da177e4SLinus Torvalds 7431da177e4SLinus Torvaldsconfig MIPS_PB1000 7441da177e4SLinus Torvalds bool "PB1000 board" 7451da177e4SLinus Torvalds depends on SOC_AU1000 7461da177e4SLinus Torvalds select DMA_NONCOHERENT 7471da177e4SLinus Torvalds select HW_HAS_PCI 7481da177e4SLinus Torvalds select SWAP_IO_SPACE 7491da177e4SLinus Torvalds 7501da177e4SLinus Torvaldsconfig MIPS_PB1100 7511da177e4SLinus Torvalds bool "PB1100 board" 7521da177e4SLinus Torvalds depends on SOC_AU1100 7531da177e4SLinus Torvalds select DMA_NONCOHERENT 7541da177e4SLinus Torvalds select HW_HAS_PCI 7551da177e4SLinus Torvalds select SWAP_IO_SPACE 7561da177e4SLinus Torvalds 7571da177e4SLinus Torvaldsconfig MIPS_PB1500 7581da177e4SLinus Torvalds bool "PB1500 board" 7591da177e4SLinus Torvalds depends on SOC_AU1500 760d8f5d861SPete Popov select DMA_NONCOHERENT 7611da177e4SLinus Torvalds select HW_HAS_PCI 7621da177e4SLinus Torvalds 7631da177e4SLinus Torvaldsconfig MIPS_PB1550 7641da177e4SLinus Torvalds bool "PB1550 board" 7651da177e4SLinus Torvalds depends on SOC_AU1550 7661da177e4SLinus Torvalds select DMA_COHERENT 7671da177e4SLinus Torvalds select HW_HAS_PCI 7681da177e4SLinus Torvalds select MIPS_DISABLE_OBSOLETE_IDE 7691da177e4SLinus Torvalds 770e3ad1c23SPete Popovconfig MIPS_PB1200 771e3ad1c23SPete Popov bool "AMD Alchemy PB1200 board" 772e3ad1c23SPete Popov select SOC_AU1200 773e3ad1c23SPete Popov select DMA_NONCOHERENT 774e3ad1c23SPete Popov select MIPS_DISABLE_OBSOLETE_IDE 77581731f79SSteven J. Hill select SYS_SUPPORTS_BIG_ENDIAN 776797798c1SRalf Baechle select SYS_SUPPORTS_HIGHMEM 777797798c1SRalf Baechle select SYS_SUPPORTS_HIGHMEM 778797798c1SRalf Baechle select SYS_SUPPORTS_HIGHMEM 779797798c1SRalf Baechle select SYS_SUPPORTS_HIGHMEM 780e3ad1c23SPete Popov select SYS_SUPPORTS_LITTLE_ENDIAN 781e3ad1c23SPete Popov 7821da177e4SLinus Torvaldsconfig MIPS_DB1000 7831da177e4SLinus Torvalds bool "DB1000 board" 7841da177e4SLinus Torvalds depends on SOC_AU1000 7851da177e4SLinus Torvalds select DMA_NONCOHERENT 7861da177e4SLinus Torvalds select HW_HAS_PCI 7871da177e4SLinus Torvalds 7881da177e4SLinus Torvaldsconfig MIPS_DB1100 7891da177e4SLinus Torvalds bool "DB1100 board" 7901da177e4SLinus Torvalds depends on SOC_AU1100 7911da177e4SLinus Torvalds select DMA_NONCOHERENT 7921da177e4SLinus Torvalds 7931da177e4SLinus Torvaldsconfig MIPS_DB1500 7941da177e4SLinus Torvalds bool "DB1500 board" 7951da177e4SLinus Torvalds depends on SOC_AU1500 796d8f5d861SPete Popov select DMA_NONCOHERENT 7971da177e4SLinus Torvalds select HW_HAS_PCI 7981da177e4SLinus Torvalds select MIPS_DISABLE_OBSOLETE_IDE 7991da177e4SLinus Torvalds 8001da177e4SLinus Torvaldsconfig MIPS_DB1550 8011da177e4SLinus Torvalds bool "DB1550 board" 8021da177e4SLinus Torvalds depends on SOC_AU1550 8031da177e4SLinus Torvalds select HW_HAS_PCI 804d8f5d861SPete Popov select DMA_NONCOHERENT 8051da177e4SLinus Torvalds select MIPS_DISABLE_OBSOLETE_IDE 8061da177e4SLinus Torvalds 8071da177e4SLinus Torvaldsconfig MIPS_BOSPORUS 8081da177e4SLinus Torvalds bool "Bosporus board" 8091da177e4SLinus Torvalds depends on SOC_AU1500 8101da177e4SLinus Torvalds select DMA_NONCOHERENT 8111da177e4SLinus Torvalds 812e3ad1c23SPete Popovconfig MIPS_DB1200 813e3ad1c23SPete Popov bool "AMD Alchemy DB1200 board" 814e3ad1c23SPete Popov select SOC_AU1200 81526a940e2SPete Popov select DMA_COHERENT 816e3ad1c23SPete Popov select MIPS_DISABLE_OBSOLETE_IDE 817e3ad1c23SPete Popov select SYS_SUPPORTS_LITTLE_ENDIAN 818e3ad1c23SPete Popov 8191da177e4SLinus Torvaldsconfig MIPS_MIRAGE 8201da177e4SLinus Torvalds bool "Mirage board" 8211da177e4SLinus Torvalds depends on SOC_AU1500 8221da177e4SLinus Torvalds select DMA_NONCOHERENT 8231da177e4SLinus Torvalds 8241da177e4SLinus Torvaldsconfig MIPS_XXS1500 8251da177e4SLinus Torvalds bool "MyCable XXS1500 board" 8261da177e4SLinus Torvalds depends on SOC_AU1500 8271da177e4SLinus Torvalds select DMA_NONCOHERENT 8281da177e4SLinus Torvalds 8291da177e4SLinus Torvaldsconfig MIPS_MTX1 8301da177e4SLinus Torvalds bool "4G Systems MTX-1 board" 8311da177e4SLinus Torvalds depends on SOC_AU1500 8321da177e4SLinus Torvalds select HW_HAS_PCI 8331da177e4SLinus Torvalds select DMA_NONCOHERENT 8341da177e4SLinus Torvalds 8351da177e4SLinus Torvaldsendchoice 8361da177e4SLinus Torvalds 8371da177e4SLinus Torvaldsconfig SNI_RM200_PCI 8381da177e4SLinus Torvalds bool "Support for SNI RM200 PCI" 8391da177e4SLinus Torvalds select ARC 8401da177e4SLinus Torvalds select ARC32 84161ed242dSRalf Baechle select ARCH_MAY_HAVE_PC_FDC 8421da177e4SLinus Torvalds select BOOT_ELF32 8431da177e4SLinus Torvalds select DMA_NONCOHERENT 8441da177e4SLinus Torvalds select GENERIC_ISA_DMA 8451da177e4SLinus Torvalds select HAVE_STD_PC_SERIAL_PORT 8461da177e4SLinus Torvalds select HW_HAS_PCI 8471da177e4SLinus Torvalds select I8259 8481da177e4SLinus Torvalds select ISA 849ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 850ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL 851797798c1SRalf Baechle select SYS_SUPPORTS_HIGHMEM 8521da177e4SLinus Torvalds help 8531da177e4SLinus Torvalds The SNI RM200 PCI was a MIPS-based platform manufactured by Siemens 8541da177e4SLinus Torvalds Nixdorf Informationssysteme (SNI), parent company of Pyramid 8551da177e4SLinus Torvalds Technology and now in turn merged with Fujitsu. Say Y here to 8561da177e4SLinus Torvalds support this machine type. 8571da177e4SLinus Torvalds 8581da177e4SLinus Torvaldsconfig TOSHIBA_RBTX4927 8591da177e4SLinus Torvalds bool "Support for Toshiba TBTX49[23]7 board" 8601da177e4SLinus Torvalds select DMA_NONCOHERENT 8611da177e4SLinus Torvalds select HAS_TXX9_SERIAL 8621da177e4SLinus Torvalds select HW_HAS_PCI 8631da177e4SLinus Torvalds select I8259 8641da177e4SLinus Torvalds select ISA 8651da177e4SLinus Torvalds select SWAP_IO_SPACE 866ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_32BIT_KERNEL 867ed5ba2fbSYoichi Yuasa select SYS_SUPPORTS_64BIT_KERNEL 8681da177e4SLinus Torvalds help 8691da177e4SLinus Torvalds This Toshiba board is based on the TX4927 processor. Say Y here to 8701da177e4SLinus Torvalds support this machine type 8711da177e4SLinus Torvalds 8721da177e4SLinus Torvaldsconfig TOSHIBA_FPCIB0 8731da177e4SLinus Torvalds bool "FPCIB0 Backplane Support" 8741da177e4SLinus Torvalds depends on TOSHIBA_RBTX4927 8751da177e4SLinus Torvalds 87629c48699SRalf Baechlesource "arch/mips/sgi-ip27/Kconfig" 87738b18f72SRalf Baechlesource "arch/mips/sibyte/Kconfig" 87823fbee9dSRalf Baechlesource "arch/mips/tx4938/Kconfig" 879bdf21b18SPete Popovsource "arch/mips/philips/pnx8550/common/Kconfig" 88038b18f72SRalf Baechle 8811da177e4SLinus Torvaldsconfig RWSEM_GENERIC_SPINLOCK 8821da177e4SLinus Torvalds bool 8831da177e4SLinus Torvalds default y 8841da177e4SLinus Torvalds 8851da177e4SLinus Torvaldsconfig RWSEM_XCHGADD_ALGORITHM 8861da177e4SLinus Torvalds bool 8875eaf7a21SRalf Baechle select HAS_TXX9_SERIAL 8881da177e4SLinus Torvalds 8891da177e4SLinus Torvaldsconfig GENERIC_CALIBRATE_DELAY 8901da177e4SLinus Torvalds bool 8911da177e4SLinus Torvalds default y 8921da177e4SLinus Torvalds 8931da177e4SLinus Torvalds# 8941da177e4SLinus Torvalds# Select some configuration options automatically based on user selections. 8951da177e4SLinus Torvalds# 8961da177e4SLinus Torvaldsconfig ARC 8971da177e4SLinus Torvalds bool 8981da177e4SLinus Torvalds depends on SNI_RM200_PCI || SGI_IP32 || SGI_IP27 || SGI_IP22 || MIPS_MAGNUM_4000 || OLIVETTI_M700 || ACER_PICA_61 8991da177e4SLinus Torvalds default y 9001da177e4SLinus Torvalds 90161ed242dSRalf Baechleconfig ARCH_MAY_HAVE_PC_FDC 90261ed242dSRalf Baechle bool 90361ed242dSRalf Baechle 9041da177e4SLinus Torvaldsconfig DMA_COHERENT 9051da177e4SLinus Torvalds bool 9061da177e4SLinus Torvalds 9071da177e4SLinus Torvaldsconfig DMA_IP27 9081da177e4SLinus Torvalds bool 9091da177e4SLinus Torvalds 9104ce588cdSRalf Baechleconfig DMA_IP32 9114ce588cdSRalf Baechle bool 9124ce588cdSRalf Baechle select DMA_NEED_PCI_MAP_STATE 9134ce588cdSRalf Baechle 9141da177e4SLinus Torvaldsconfig DMA_NONCOHERENT 9151da177e4SLinus Torvalds bool 9164ce588cdSRalf Baechle select DMA_NEED_PCI_MAP_STATE 9174ce588cdSRalf Baechle 9184ce588cdSRalf Baechleconfig DMA_NEED_PCI_MAP_STATE 9194ce588cdSRalf Baechle bool 9201da177e4SLinus Torvalds 9211da177e4SLinus Torvaldsconfig EARLY_PRINTK 9221da177e4SLinus Torvalds bool 9231da177e4SLinus Torvalds depends on MACH_DECSTATION 9241da177e4SLinus Torvalds default y 9251da177e4SLinus Torvalds 9261da177e4SLinus Torvaldsconfig GENERIC_ISA_DMA 9271da177e4SLinus Torvalds bool 9281da177e4SLinus Torvalds depends on SNI_RM200_PCI || MIPS_MAGNUM_4000 || OLIVETTI_M700 || ACER_PICA_61 || MIPS_MALTA 9291da177e4SLinus Torvalds default y 9301da177e4SLinus Torvalds 9311da177e4SLinus Torvaldsconfig I8259 9321da177e4SLinus Torvalds bool 9331da177e4SLinus Torvalds depends on SNI_RM200_PCI || DDB5477 || DDB5476 || DDB5074 || MACH_JAZZ || MIPS_MALTA || MIPS_COBALT 9341da177e4SLinus Torvalds default y 9351da177e4SLinus Torvalds 9361da177e4SLinus Torvaldsconfig LIMITED_DMA 9371da177e4SLinus Torvalds bool 9381da177e4SLinus Torvalds select HIGHMEM 939797798c1SRalf Baechle select SYS_SUPPORTS_HIGHMEM 9401da177e4SLinus Torvalds 9411da177e4SLinus Torvaldsconfig MIPS_BONITO64 9421da177e4SLinus Torvalds bool 9431da177e4SLinus Torvalds depends on MIPS_ATLAS || MIPS_MALTA 9441da177e4SLinus Torvalds default y 9451da177e4SLinus Torvalds 9461da177e4SLinus Torvaldsconfig MIPS_MSC 9471da177e4SLinus Torvalds bool 9481da177e4SLinus Torvalds depends on MIPS_ATLAS || MIPS_MALTA 9491da177e4SLinus Torvalds default y 9501da177e4SLinus Torvalds 9511da177e4SLinus Torvaldsconfig MIPS_NILE4 9521da177e4SLinus Torvalds bool 9531da177e4SLinus Torvalds depends on LASAT 9541da177e4SLinus Torvalds default y 9551da177e4SLinus Torvalds 9561da177e4SLinus Torvaldsconfig MIPS_DISABLE_OBSOLETE_IDE 9571da177e4SLinus Torvalds bool 9581da177e4SLinus Torvalds 9591da177e4SLinus Torvaldsconfig CPU_LITTLE_ENDIAN 9601da177e4SLinus Torvalds bool "Generate little endian code" 961ab1418a3SAdrian 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 9621da177e4SLinus Torvalds default n if MIPS_EV64120 || MIPS_EV96100 || MOMENCO_OCELOT || MOMENCO_OCELOT_G || SGI_IP22 || SGI_IP27 || SGI_IP32 || TOSHIBA_JMR3927 9631da177e4SLinus Torvalds help 9641da177e4SLinus Torvalds Some MIPS machines can be configured for either little or big endian 9651da177e4SLinus Torvalds byte order. These modes require different kernels. Say Y if your 9661da177e4SLinus Torvalds machine is little endian, N if it's a big endian machine. 9671da177e4SLinus Torvalds 9681da177e4SLinus Torvaldsconfig IRQ_CPU 9691da177e4SLinus Torvalds bool 9701da177e4SLinus Torvalds 9711da177e4SLinus Torvaldsconfig IRQ_CPU_RM7K 9721da177e4SLinus Torvalds bool 9731da177e4SLinus Torvalds 9741da177e4SLinus Torvaldsconfig IRQ_MV64340 9751da177e4SLinus Torvalds bool 9761da177e4SLinus Torvalds 9771da177e4SLinus Torvaldsconfig DDB5XXX_COMMON 9781da177e4SLinus Torvalds bool 9791da177e4SLinus Torvalds depends on DDB5074 || DDB5476 || DDB5477 9801da177e4SLinus Torvalds default y 9811da177e4SLinus Torvalds 9821da177e4SLinus Torvaldsconfig MIPS_BOARDS_GEN 9831da177e4SLinus Torvalds bool 9841da177e4SLinus Torvalds depends on MIPS_ATLAS || MIPS_MALTA || MIPS_SEAD 9851da177e4SLinus Torvalds default y 9861da177e4SLinus Torvalds 9871da177e4SLinus Torvaldsconfig MIPS_GT64111 9881da177e4SLinus Torvalds bool 9891da177e4SLinus Torvalds depends on MIPS_COBALT 9901da177e4SLinus Torvalds default y 9911da177e4SLinus Torvalds 9921da177e4SLinus Torvaldsconfig MIPS_GT64120 9931da177e4SLinus Torvalds bool 9941da177e4SLinus Torvalds depends on MIPS_EV64120 || MIPS_EV96100 || LASAT || MIPS_ATLAS || MIPS_MALTA || MOMENCO_OCELOT 9951da177e4SLinus Torvalds default y 9961da177e4SLinus Torvalds 9971da177e4SLinus Torvaldsconfig MIPS_TX3927 9981da177e4SLinus Torvalds bool 9991da177e4SLinus Torvalds depends on TOSHIBA_JMR3927 10001da177e4SLinus Torvalds select HAS_TXX9_SERIAL 10011da177e4SLinus Torvalds default y 10021da177e4SLinus Torvalds 10031da177e4SLinus Torvaldsconfig PCI_MARVELL 10041da177e4SLinus Torvalds bool 10051da177e4SLinus Torvalds 10061da177e4SLinus Torvaldsconfig ITE_BOARD_GEN 10071da177e4SLinus Torvalds bool 10081da177e4SLinus Torvalds depends on MIPS_IVR || MIPS_ITE8172 10091da177e4SLinus Torvalds default y 10101da177e4SLinus Torvalds 1011bdf21b18SPete Popovconfig PNX8550 1012bdf21b18SPete Popov bool 1013bdf21b18SPete Popov select SOC_PNX8550 1014bdf21b18SPete Popov 1015bdf21b18SPete Popovconfig SOC_PNX8550 1016bdf21b18SPete Popov bool 1017bdf21b18SPete Popov select SYS_SUPPORTS_32BIT_KERNEL 1018bdf21b18SPete Popov select DMA_NONCOHERENT 1019bdf21b18SPete Popov select HW_HAS_PCI 1020bdf21b18SPete Popov 10211da177e4SLinus Torvaldsconfig SWAP_IO_SPACE 10221da177e4SLinus Torvalds bool 10231da177e4SLinus Torvalds 10241da177e4SLinus Torvalds# 10251da177e4SLinus Torvalds# Unfortunately not all GT64120 systems run the chip at the same clock. 10261da177e4SLinus Torvalds# As the user for the clock rate and try to minimize the available options. 10271da177e4SLinus Torvalds# 10281da177e4SLinus Torvaldschoice 10291da177e4SLinus Torvalds prompt "Galileo Chip Clock" 10301da177e4SLinus Torvalds #default SYSCLK_83 if MIPS_EV64120 10311da177e4SLinus Torvalds depends on MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G 10321da177e4SLinus Torvalds default SYSCLK_83 if MIPS_EV64120 10331da177e4SLinus Torvalds default SYSCLK_100 if MOMENCO_OCELOT || MOMENCO_OCELOT_G 10341da177e4SLinus Torvalds 10351da177e4SLinus Torvaldsconfig SYSCLK_75 10361da177e4SLinus Torvalds bool "75" if MIPS_EV64120 10371da177e4SLinus Torvalds 10381da177e4SLinus Torvaldsconfig SYSCLK_83 10391da177e4SLinus Torvalds bool "83.3" if MIPS_EV64120 10401da177e4SLinus Torvalds 10411da177e4SLinus Torvaldsconfig SYSCLK_100 10421da177e4SLinus Torvalds bool "100" if MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G 10431da177e4SLinus Torvalds 10441da177e4SLinus Torvaldsendchoice 10451da177e4SLinus Torvalds 10461da177e4SLinus Torvaldsconfig AU1X00_USB_DEVICE 10471da177e4SLinus Torvalds bool 10481da177e4SLinus Torvalds depends on MIPS_PB1500 || MIPS_PB1100 || MIPS_PB1000 10491da177e4SLinus Torvalds default n 10501da177e4SLinus Torvalds 10511da177e4SLinus Torvaldsconfig MIPS_GT96100 10521da177e4SLinus Torvalds bool 10531da177e4SLinus Torvalds depends on MIPS_EV96100 10541da177e4SLinus Torvalds default y 10551da177e4SLinus Torvalds help 10561da177e4SLinus Torvalds Say Y here to support the Galileo Technology GT96100 communications 10571da177e4SLinus Torvalds controller card. There is a web page at <http://www.galileot.com/>. 10581da177e4SLinus Torvalds 10591da177e4SLinus Torvaldsconfig IT8172_CIR 10601da177e4SLinus Torvalds bool 10611da177e4SLinus Torvalds depends on MIPS_ITE8172 || MIPS_IVR 10621da177e4SLinus Torvalds default y 10631da177e4SLinus Torvalds 10641da177e4SLinus Torvaldsconfig IT8712 10651da177e4SLinus Torvalds bool 10661da177e4SLinus Torvalds depends on MIPS_ITE8172 10671da177e4SLinus Torvalds default y 10681da177e4SLinus Torvalds 10691da177e4SLinus Torvaldsconfig BOOT_ELF32 10701da177e4SLinus Torvalds bool 10711da177e4SLinus 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 10721da177e4SLinus Torvalds default y 10731da177e4SLinus Torvalds 10741da177e4SLinus Torvaldsconfig MIPS_L1_CACHE_SHIFT 10751da177e4SLinus Torvalds int 10761da177e4SLinus Torvalds default "4" if MACH_DECSTATION 10771da177e4SLinus Torvalds default "7" if SGI_IP27 10781da177e4SLinus Torvalds default "5" 10791da177e4SLinus Torvalds 10801da177e4SLinus Torvaldsconfig ARC32 10811da177e4SLinus Torvalds bool 10821da177e4SLinus Torvalds depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP22 || SGI_IP32 10831da177e4SLinus Torvalds default y 10841da177e4SLinus Torvalds 10851da177e4SLinus Torvaldsconfig HAVE_STD_PC_SERIAL_PORT 10861da177e4SLinus Torvalds bool 10871da177e4SLinus Torvalds 10881da177e4SLinus Torvaldsconfig ARC_CONSOLE 10891da177e4SLinus Torvalds bool "ARC console support" 10901da177e4SLinus Torvalds depends on SGI_IP22 || SNI_RM200_PCI 10911da177e4SLinus Torvalds 10921da177e4SLinus Torvaldsconfig ARC_MEMORY 10931da177e4SLinus Torvalds bool 10941da177e4SLinus Torvalds depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP32 10951da177e4SLinus Torvalds default y 10961da177e4SLinus Torvalds 10971da177e4SLinus Torvaldsconfig ARC_PROMLIB 10981da177e4SLinus Torvalds bool 10991da177e4SLinus Torvalds depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP22 || SGI_IP32 11001da177e4SLinus Torvalds default y 11011da177e4SLinus Torvalds 11021da177e4SLinus Torvaldsconfig ARC64 11031da177e4SLinus Torvalds bool 11041da177e4SLinus Torvalds depends on SGI_IP27 11051da177e4SLinus Torvalds default y 11061da177e4SLinus Torvalds 11071da177e4SLinus Torvaldsconfig BOOT_ELF64 11081da177e4SLinus Torvalds bool 11091da177e4SLinus Torvalds depends on SGI_IP27 11101da177e4SLinus Torvalds default y 11111da177e4SLinus Torvalds 11121da177e4SLinus Torvalds#config MAPPED_PCI_IO y 11131da177e4SLinus Torvalds# bool 11141da177e4SLinus Torvalds# depends on SGI_IP27 11151da177e4SLinus Torvalds# default y 11161da177e4SLinus Torvalds 11171da177e4SLinus Torvaldsconfig TOSHIBA_BOARDS 11181da177e4SLinus Torvalds bool 11191da177e4SLinus Torvalds depends on TOSHIBA_JMR3927 || TOSHIBA_RBTX4927 11201da177e4SLinus Torvalds default y 11211da177e4SLinus Torvalds 11221da177e4SLinus Torvaldsendmenu 11231da177e4SLinus Torvalds 11241da177e4SLinus Torvaldsmenu "CPU selection" 11251da177e4SLinus Torvalds 11261da177e4SLinus Torvaldschoice 11271da177e4SLinus Torvalds prompt "CPU type" 11281da177e4SLinus Torvalds default CPU_R4X00 11291da177e4SLinus Torvalds 11306e760c8dSRalf Baechleconfig CPU_MIPS32_R1 11316e760c8dSRalf Baechle bool "MIPS32 Release 1" 11326e760c8dSRalf Baechle select CPU_HAS_PREFETCH 1133797798c1SRalf Baechle select CPU_SUPPORTS_32BIT_KERNEL 11346e760c8dSRalf Baechle help 11351e5f1caaSRalf Baechle Choose this option to build a kernel for release 2 or later of the 11361e5f1caaSRalf Baechle MIPS32 architecture. Most modern embedded systems with a 32-bit 11371e5f1caaSRalf Baechle MIPS processor are based on a MIPS32 processor. If you know the 11381e5f1caaSRalf Baechle specific type of processor in your system, choose those that one 11391e5f1caaSRalf Baechle otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system. 11401e5f1caaSRalf Baechle Release 2 of the MIPS32 architecture is available since several 11411e5f1caaSRalf Baechle years so chances are you even have a MIPS32 Release 2 processor 11421e5f1caaSRalf Baechle in which case you should choose CPU_MIPS32_R2 instead for better 11431e5f1caaSRalf Baechle performance. 11441e5f1caaSRalf Baechle 11451e5f1caaSRalf Baechleconfig CPU_MIPS32_R2 11461e5f1caaSRalf Baechle bool "MIPS32 Release 2" 11471e5f1caaSRalf Baechle select CPU_HAS_PREFETCH 1148797798c1SRalf Baechle select CPU_SUPPORTS_32BIT_KERNEL 11491e5f1caaSRalf Baechle help 11506e760c8dSRalf Baechle Choose this option to build a kernel for release 1 or later of the 11516e760c8dSRalf Baechle MIPS32 architecture. Most modern embedded systems with a 32-bit 11526e760c8dSRalf Baechle MIPS processor are based on a MIPS32 processor. If you know the 11536e760c8dSRalf Baechle specific type of processor in your system, choose those that one 11546e760c8dSRalf Baechle otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system. 11551da177e4SLinus Torvalds 11566e760c8dSRalf Baechleconfig CPU_MIPS64_R1 11576e760c8dSRalf Baechle bool "MIPS64 Release 1" 1158797798c1SRalf Baechle select CPU_HAS_PREFETCH 1159ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1160ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 11616e760c8dSRalf Baechle help 11626e760c8dSRalf Baechle Choose this option to build a kernel for release 1 or later of the 11636e760c8dSRalf Baechle MIPS64 architecture. Many modern embedded systems with a 64-bit 11646e760c8dSRalf Baechle MIPS processor are based on a MIPS64 processor. If you know the 11656e760c8dSRalf Baechle specific type of processor in your system, choose those that one 11666e760c8dSRalf Baechle otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system. 11671e5f1caaSRalf Baechle Release 2 of the MIPS64 architecture is available since several 11681e5f1caaSRalf Baechle years so chances are you even have a MIPS64 Release 2 processor 11691e5f1caaSRalf Baechle in which case you should choose CPU_MIPS64_R2 instead for better 11701e5f1caaSRalf Baechle performance. 11711e5f1caaSRalf Baechle 11721e5f1caaSRalf Baechleconfig CPU_MIPS64_R2 11731e5f1caaSRalf Baechle bool "MIPS64 Release 2" 1174797798c1SRalf Baechle select CPU_HAS_PREFETCH 11751e5f1caaSRalf Baechle select CPU_SUPPORTS_32BIT_KERNEL 11761e5f1caaSRalf Baechle select CPU_SUPPORTS_64BIT_KERNEL 11771e5f1caaSRalf Baechle help 11781e5f1caaSRalf Baechle Choose this option to build a kernel for release 2 or later of the 11791e5f1caaSRalf Baechle MIPS64 architecture. Many modern embedded systems with a 64-bit 11801e5f1caaSRalf Baechle MIPS processor are based on a MIPS64 processor. If you know the 11811e5f1caaSRalf Baechle specific type of processor in your system, choose those that one 11821e5f1caaSRalf Baechle otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system. 11831da177e4SLinus Torvalds 11841da177e4SLinus Torvaldsconfig CPU_R3000 11851da177e4SLinus Torvalds bool "R3000" 1186ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1187797798c1SRalf Baechle select CPU_SUPPORTS_HIGHMEM 11881da177e4SLinus Torvalds help 11891da177e4SLinus Torvalds Please make sure to pick the right CPU type. Linux/MIPS is not 11901da177e4SLinus Torvalds designed to be generic, i.e. Kernels compiled for R3000 CPUs will 11911da177e4SLinus Torvalds *not* work on R4000 machines and vice versa. However, since most 11921da177e4SLinus Torvalds of the supported machines have an R4000 (or similar) CPU, R4x00 11931da177e4SLinus Torvalds might be a safe bet. If the resulting kernel does not work, 11941da177e4SLinus Torvalds try to recompile with R3000. 11951da177e4SLinus Torvalds 11961da177e4SLinus Torvaldsconfig CPU_TX39XX 11971da177e4SLinus Torvalds bool "R39XX" 1198ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 11991da177e4SLinus Torvalds 12001da177e4SLinus Torvaldsconfig CPU_VR41XX 12011da177e4SLinus Torvalds bool "R41xx" 1202ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1203ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 12041da177e4SLinus Torvalds help 12051da177e4SLinus Torvalds The options selects support for the NEC VR41xx series of processors. 12061da177e4SLinus Torvalds Only choose this option if you have one of these processors as a 12071da177e4SLinus Torvalds kernel built with this option will not run on any other type of 12081da177e4SLinus Torvalds processor or vice versa. 12091da177e4SLinus Torvalds 12101da177e4SLinus Torvaldsconfig CPU_R4300 12111da177e4SLinus Torvalds bool "R4300" 1212ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1213ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 12141da177e4SLinus Torvalds help 12151da177e4SLinus Torvalds MIPS Technologies R4300-series processors. 12161da177e4SLinus Torvalds 12171da177e4SLinus Torvaldsconfig CPU_R4X00 12181da177e4SLinus Torvalds bool "R4x00" 1219ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1220ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 12211da177e4SLinus Torvalds help 12221da177e4SLinus Torvalds MIPS Technologies R4000-series processors other than 4300, including 12231da177e4SLinus Torvalds the R4000, R4400, R4600, and 4700. 12241da177e4SLinus Torvalds 12251da177e4SLinus Torvaldsconfig CPU_TX49XX 12261da177e4SLinus Torvalds bool "R49XX" 1227ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1228ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 12291da177e4SLinus Torvalds 12301da177e4SLinus Torvaldsconfig CPU_R5000 12311da177e4SLinus Torvalds bool "R5000" 1232ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1233ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 12341da177e4SLinus Torvalds help 12351da177e4SLinus Torvalds MIPS Technologies R5000-series processors other than the Nevada. 12361da177e4SLinus Torvalds 12371da177e4SLinus Torvaldsconfig CPU_R5432 12381da177e4SLinus Torvalds bool "R5432" 12391da177e4SLinus Torvalds 12401da177e4SLinus Torvaldsconfig CPU_R6000 12411da177e4SLinus Torvalds bool "R6000" 1242ed5ba2fbSYoichi Yuasa depends on EXPERIMENTAL 1243ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 12441da177e4SLinus Torvalds help 12451da177e4SLinus Torvalds MIPS Technologies R6000 and R6000A series processors. Note these 12461da177e4SLinus Torvalds processors are extremly rare and the support for them is incomplete. 12471da177e4SLinus Torvalds 12481da177e4SLinus Torvaldsconfig CPU_NEVADA 12491da177e4SLinus Torvalds bool "RM52xx" 1250ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1251ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 12521da177e4SLinus Torvalds help 12531da177e4SLinus Torvalds QED / PMC-Sierra RM52xx-series ("Nevada") processors. 12541da177e4SLinus Torvalds 12551da177e4SLinus Torvaldsconfig CPU_R8000 12561da177e4SLinus Torvalds bool "R8000" 1257ed5ba2fbSYoichi Yuasa depends on EXPERIMENTAL 1258ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 12591da177e4SLinus Torvalds help 12601da177e4SLinus Torvalds MIPS Technologies R8000 processors. Note these processors are 12611da177e4SLinus Torvalds uncommon and the support for them is incomplete. 12621da177e4SLinus Torvalds 12631da177e4SLinus Torvaldsconfig CPU_R10000 12641da177e4SLinus Torvalds bool "R10000" 1265ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1266ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 1267797798c1SRalf Baechle select CPU_SUPPORTS_HIGHMEM 12681da177e4SLinus Torvalds help 12691da177e4SLinus Torvalds MIPS Technologies R10000-series processors. 12701da177e4SLinus Torvalds 12711da177e4SLinus Torvaldsconfig CPU_RM7000 12721da177e4SLinus Torvalds bool "RM7000" 1273ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1274ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 1275797798c1SRalf Baechle select CPU_SUPPORTS_HIGHMEM 12761da177e4SLinus Torvalds 12771da177e4SLinus Torvaldsconfig CPU_RM9000 12781da177e4SLinus Torvalds bool "RM9000" 1279ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1280ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 1281797798c1SRalf Baechle select CPU_SUPPORTS_HIGHMEM 12821da177e4SLinus Torvalds 12831da177e4SLinus Torvaldsconfig CPU_SB1 12841da177e4SLinus Torvalds bool "SB1" 1285ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_32BIT_KERNEL 1286ed5ba2fbSYoichi Yuasa select CPU_SUPPORTS_64BIT_KERNEL 1287797798c1SRalf Baechle select CPU_SUPPORTS_HIGHMEM 12881da177e4SLinus Torvalds 12891da177e4SLinus Torvaldsendchoice 12901da177e4SLinus Torvalds 12911da177e4SLinus Torvaldschoice 12921da177e4SLinus Torvalds prompt "Kernel page size" 12931da177e4SLinus Torvalds default PAGE_SIZE_4KB 12941da177e4SLinus Torvalds 12951da177e4SLinus Torvaldsconfig PAGE_SIZE_4KB 12961da177e4SLinus Torvalds bool "4kB" 12971da177e4SLinus Torvalds help 12981da177e4SLinus Torvalds This option select the standard 4kB Linux page size. On some 12991da177e4SLinus Torvalds R3000-family processors this is the only available page size. Using 13001da177e4SLinus Torvalds 4kB page size will minimize memory consumption and is therefore 13011da177e4SLinus Torvalds recommended for low memory systems. 13021da177e4SLinus Torvalds 13031da177e4SLinus Torvaldsconfig PAGE_SIZE_8KB 13041da177e4SLinus Torvalds bool "8kB" 13051da177e4SLinus Torvalds depends on EXPERIMENTAL && CPU_R8000 13061da177e4SLinus Torvalds help 13071da177e4SLinus Torvalds Using 8kB page size will result in higher performance kernel at 13081da177e4SLinus Torvalds the price of higher memory consumption. This option is available 13091da177e4SLinus Torvalds only on the R8000 processor. Not that at the time of this writing 13101da177e4SLinus Torvalds this option is still high experimental; there are also issues with 13111da177e4SLinus Torvalds compatibility of user applications. 13121da177e4SLinus Torvalds 13131da177e4SLinus Torvaldsconfig PAGE_SIZE_16KB 13141da177e4SLinus Torvalds bool "16kB" 13151da177e4SLinus Torvalds depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX 13161da177e4SLinus Torvalds help 13171da177e4SLinus Torvalds Using 16kB page size will result in higher performance kernel at 13181da177e4SLinus Torvalds the price of higher memory consumption. This option is available on 13191da177e4SLinus Torvalds all non-R3000 family processor. Not that at the time of this 13201da177e4SLinus Torvalds writing this option is still high experimental; there are also 13211da177e4SLinus Torvalds issues with compatibility of user applications. 13221da177e4SLinus Torvalds 13231da177e4SLinus Torvaldsconfig PAGE_SIZE_64KB 13241da177e4SLinus Torvalds bool "64kB" 13251da177e4SLinus Torvalds depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX 13261da177e4SLinus Torvalds help 13271da177e4SLinus Torvalds Using 64kB page size will result in higher performance kernel at 13281da177e4SLinus Torvalds the price of higher memory consumption. This option is available on 13291da177e4SLinus Torvalds all non-R3000 family processor. Not that at the time of this 13301da177e4SLinus Torvalds writing this option is still high experimental; there are also 13311da177e4SLinus Torvalds issues with compatibility of user applications. 13321da177e4SLinus Torvalds 13331da177e4SLinus Torvaldsendchoice 13341da177e4SLinus Torvalds 13351da177e4SLinus Torvaldsconfig BOARD_SCACHE 13361da177e4SLinus Torvalds bool 13371da177e4SLinus Torvalds 13381da177e4SLinus Torvaldsconfig IP22_CPU_SCACHE 13391da177e4SLinus Torvalds bool 13401da177e4SLinus Torvalds select BOARD_SCACHE 13411da177e4SLinus Torvalds 13421da177e4SLinus Torvaldsconfig R5000_CPU_SCACHE 13431da177e4SLinus Torvalds bool 13441da177e4SLinus Torvalds select BOARD_SCACHE 13451da177e4SLinus Torvalds 13461da177e4SLinus Torvaldsconfig RM7000_CPU_SCACHE 13471da177e4SLinus Torvalds bool 13481da177e4SLinus Torvalds select BOARD_SCACHE 13491da177e4SLinus Torvalds 13501da177e4SLinus Torvaldsconfig SIBYTE_DMA_PAGEOPS 13511da177e4SLinus Torvalds bool "Use DMA to clear/copy pages" 13521da177e4SLinus Torvalds depends on CPU_SB1 13531da177e4SLinus Torvalds help 13541da177e4SLinus Torvalds Instead of using the CPU to zero and copy pages, use a Data Mover 13551da177e4SLinus Torvalds channel. These DMA channels are otherwise unused by the standard 13561da177e4SLinus Torvalds SiByte Linux port. Seems to give a small performance benefit. 13571da177e4SLinus Torvalds 13581da177e4SLinus Torvaldsconfig CPU_HAS_PREFETCH 1359c8094b53SRalf Baechle bool 13601da177e4SLinus Torvalds 1361e01402b1SRalf Baechleconfig MIPS_MT 1362e01402b1SRalf Baechle bool "Enable MIPS MT" 1363e01402b1SRalf Baechle 1364340ee4b9SRalf Baechlechoice 1365340ee4b9SRalf Baechle prompt "MIPS MT options" 1366340ee4b9SRalf Baechle depends on MIPS_MT 1367340ee4b9SRalf Baechle 1368340ee4b9SRalf Baechleconfig MIPS_MT_SMP 1369340ee4b9SRalf Baechle bool "Use 1 TC on each available VPE for SMP" 1370340ee4b9SRalf Baechle select SMP 1371340ee4b9SRalf Baechle 1372e01402b1SRalf Baechleconfig MIPS_VPE_LOADER 1373e01402b1SRalf Baechle bool "VPE loader support." 1374e01402b1SRalf Baechle depends on MIPS_MT 1375e01402b1SRalf Baechle help 1376e01402b1SRalf Baechle Includes a loader for loading an elf relocatable object 1377e01402b1SRalf Baechle onto another VPE and running it. 1378e01402b1SRalf Baechle 1379340ee4b9SRalf Baechleendchoice 1380340ee4b9SRalf Baechle 1381e01402b1SRalf Baechleconfig MIPS_VPE_LOADER_TOM 1382e01402b1SRalf Baechle bool "Load VPE program into memory hidden from linux" 1383e01402b1SRalf Baechle depends on MIPS_VPE_LOADER 1384e01402b1SRalf Baechle default y 1385e01402b1SRalf Baechle help 1386e01402b1SRalf Baechle The loader can use memory that is present but has been hidden from 1387e01402b1SRalf Baechle Linux using the kernel command line option "mem=xxMB". It's up to 1388e01402b1SRalf Baechle you to ensure the amount you put in the option and the space your 1389e01402b1SRalf Baechle program requires is less or equal to the amount physically present. 1390e01402b1SRalf Baechle 1391e01402b1SRalf Baechle# this should possibly be in drivers/char, but it is rather cpu related. Hmmm 1392e01402b1SRalf Baechleconfig MIPS_VPE_APSP_API 1393e01402b1SRalf Baechle bool "Enable support for AP/SP API (RTLX)" 1394e01402b1SRalf Baechle depends on MIPS_VPE_LOADER 1395e01402b1SRalf Baechle 13961da177e4SLinus Torvaldsconfig SB1_PASS_1_WORKAROUNDS 13971da177e4SLinus Torvalds bool 13981da177e4SLinus Torvalds depends on CPU_SB1_PASS_1 13991da177e4SLinus Torvalds default y 14001da177e4SLinus Torvalds 14011da177e4SLinus Torvaldsconfig SB1_PASS_2_WORKAROUNDS 14021da177e4SLinus Torvalds bool 14031da177e4SLinus Torvalds depends on CPU_SB1 && (CPU_SB1_PASS_2_2 || CPU_SB1_PASS_2) 14041da177e4SLinus Torvalds default y 14051da177e4SLinus Torvalds 14061da177e4SLinus Torvaldsconfig SB1_PASS_2_1_WORKAROUNDS 14071da177e4SLinus Torvalds bool 14081da177e4SLinus Torvalds depends on CPU_SB1 && CPU_SB1_PASS_2 14091da177e4SLinus Torvalds default y 14101da177e4SLinus Torvalds 14111da177e4SLinus Torvaldsconfig 64BIT_PHYS_ADDR 14121da177e4SLinus Torvalds bool "Support for 64-bit physical address space" 14136e760c8dSRalf Baechle depends on (CPU_R4X00 || CPU_R5000 || CPU_RM7000 || CPU_RM9000 || CPU_R10000 || CPU_SB1 || CPU_MIPS32_R1 || CPU_MIPS64_R1) && 32BIT 14141da177e4SLinus Torvalds 14151da177e4SLinus Torvaldsconfig CPU_ADVANCED 14161da177e4SLinus Torvalds bool "Override CPU Options" 1417875d43e7SRalf Baechle depends on 32BIT 14181da177e4SLinus Torvalds help 14191da177e4SLinus Torvalds Saying yes here allows you to select support for various features 14201da177e4SLinus Torvalds your CPU may or may not have. Most people should say N here. 14211da177e4SLinus Torvalds 14221da177e4SLinus Torvaldsconfig CPU_HAS_LLSC 14231da177e4SLinus Torvalds bool "ll/sc Instructions available" if CPU_ADVANCED 14241da177e4SLinus Torvalds default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX 14251da177e4SLinus Torvalds help 14261da177e4SLinus Torvalds MIPS R4000 series and later provide the Load Linked (ll) 14271da177e4SLinus Torvalds and Store Conditional (sc) instructions. More information is 14281da177e4SLinus Torvalds available at <http://www.go-ecs.com/mips/miptek1.htm>. 14291da177e4SLinus Torvalds 14301da177e4SLinus Torvalds Say Y here if your CPU has the ll and sc instructions. Say Y here 14311da177e4SLinus Torvalds for better performance, N if you don't know. You must say Y here 14321da177e4SLinus Torvalds for multiprocessor machines. 14331da177e4SLinus Torvalds 14341da177e4SLinus Torvaldsconfig CPU_HAS_LLDSCD 14351da177e4SLinus Torvalds bool "lld/scd Instructions available" if CPU_ADVANCED 14366e760c8dSRalf Baechle default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX && !CPU_MIPS32_R1 14371da177e4SLinus Torvalds help 14381da177e4SLinus Torvalds Say Y here if your CPU has the lld and scd instructions, the 64-bit 14391da177e4SLinus Torvalds equivalents of ll and sc. Say Y here for better performance, N if 14401da177e4SLinus Torvalds you don't know. You must say Y here for multiprocessor machines. 14411da177e4SLinus Torvalds 14421da177e4SLinus Torvaldsconfig CPU_HAS_WB 14431da177e4SLinus Torvalds bool "Writeback Buffer available" if CPU_ADVANCED 14441da177e4SLinus Torvalds default y if !CPU_ADVANCED && CPU_R3000 && MACH_DECSTATION 14451da177e4SLinus Torvalds help 14461da177e4SLinus Torvalds Say N here for slightly better performance. You must say Y here for 14471da177e4SLinus Torvalds machines which require flushing of write buffers in software. Saying 14481da177e4SLinus Torvalds Y is the safe option; N may result in kernel malfunction and crashes. 14491da177e4SLinus Torvalds 1450e01402b1SRalf Baechlemenu "MIPSR2 Interrupt handling" 1451e01402b1SRalf Baechle depends on CPU_MIPSR2 && CPU_ADVANCED 1452e01402b1SRalf Baechle 1453e01402b1SRalf Baechleconfig CPU_MIPSR2_IRQ_VI 1454e01402b1SRalf Baechle bool "Vectored interrupt mode" 1455e01402b1SRalf Baechle help 1456e01402b1SRalf Baechle Vectored interrupt mode allowing faster dispatching of interrupts. 1457e01402b1SRalf Baechle The board support code needs to be written to take advantage of this 1458e01402b1SRalf Baechle mode. Compatibility code is included to allow the kernel to run on 1459e01402b1SRalf Baechle a CPU that does not support vectored interrupts. It's safe to 1460e01402b1SRalf Baechle say Y here. 1461e01402b1SRalf Baechle 1462e01402b1SRalf Baechleconfig CPU_MIPSR2_IRQ_EI 1463e01402b1SRalf Baechle bool "External interrupt controller mode" 1464e01402b1SRalf Baechle help 1465e01402b1SRalf Baechle Extended interrupt mode takes advantage of an external interrupt 1466e01402b1SRalf Baechle controller to allow fast dispatching from many possible interrupt 1467e01402b1SRalf Baechle sources. Say N unless you know that external interrupt support is 1468e01402b1SRalf Baechle required. 1469e01402b1SRalf Baechle 1470e01402b1SRalf Baechleconfig CPU_MIPSR2_SRS 1471e01402b1SRalf Baechle bool "Make shadow set registers available for interrupt handlers" 1472e01402b1SRalf Baechle depends on CPU_MIPSR2_IRQ_VI || CPU_MIPSR2_IRQ_EI 1473e01402b1SRalf Baechle help 1474e01402b1SRalf Baechle Allow the kernel to use shadow register sets for fast interrupts. 1475e01402b1SRalf Baechle Interrupt handlers must be specially written to use shadow sets. 1476e01402b1SRalf Baechle Say N unless you know that shadow register set upport is needed. 1477e01402b1SRalf Baechleendmenu 1478e01402b1SRalf Baechle 14791da177e4SLinus Torvaldsconfig CPU_HAS_SYNC 14801da177e4SLinus Torvalds bool 14811da177e4SLinus Torvalds depends on !CPU_R3000 14821da177e4SLinus Torvalds default y 14831da177e4SLinus Torvalds 14841da177e4SLinus Torvalds# 1485797798c1SRalf Baechle# Use the generic interrupt handling code in kernel/irq/: 1486797798c1SRalf Baechle# 1487797798c1SRalf Baechleconfig GENERIC_HARDIRQS 1488797798c1SRalf Baechle bool 1489797798c1SRalf Baechle default y 1490797798c1SRalf Baechle 1491797798c1SRalf Baechleconfig GENERIC_IRQ_PROBE 1492797798c1SRalf Baechle bool 1493797798c1SRalf Baechle default y 1494797798c1SRalf Baechle 1495797798c1SRalf Baechle# 14961da177e4SLinus Torvalds# - Highmem only makes sense for the 32-bit kernel. 14971da177e4SLinus Torvalds# - The current highmem code will only work properly on physically indexed 14981da177e4SLinus Torvalds# caches such as R3000, SB1, R7000 or those that look like they're virtually 14991da177e4SLinus Torvalds# indexed such as R4000/R4400 SC and MC versions or R10000. So for the 15001da177e4SLinus Torvalds# moment we protect the user and offer the highmem option only on machines 15011da177e4SLinus Torvalds# where it's known to be safe. This will not offer highmem on a few systems 15021da177e4SLinus Torvalds# such as MIPS32 and MIPS64 CPUs which may have virtual and physically 15031da177e4SLinus Torvalds# indexed CPUs but we're playing safe. 1504797798c1SRalf Baechle# - We use SYS_SUPPORTS_HIGHMEM to offer highmem only for systems where we 1505797798c1SRalf Baechle# know they might have memory configurations that could make use of highmem 1506797798c1SRalf Baechle# support. 15071da177e4SLinus Torvalds# 15081da177e4SLinus Torvaldsconfig HIGHMEM 15091da177e4SLinus Torvalds bool "High Memory Support" 1510797798c1SRalf Baechle depends on 32BIT && CPU_SUPPORTS_HIGHMEM && SYS_SUPPORTS_HIGHMEM 1511797798c1SRalf Baechle 1512797798c1SRalf Baechleconfig CPU_SUPPORTS_HIGHMEM 1513797798c1SRalf Baechle bool 1514797798c1SRalf Baechle 1515797798c1SRalf Baechleconfig SYS_SUPPORTS_HIGHMEM 1516797798c1SRalf Baechle bool 15171da177e4SLinus Torvalds 1518b4819b59SYoichi Yuasaconfig ARCH_FLATMEM_ENABLE 1519b4819b59SYoichi Yuasa def_bool y 1520b4819b59SYoichi Yuasa depends on !NUMA 1521b4819b59SYoichi Yuasa 1522b4819b59SYoichi Yuasasource "mm/Kconfig" 1523b4819b59SYoichi Yuasa 15241da177e4SLinus Torvaldsconfig SMP 15251da177e4SLinus Torvalds bool "Multi-Processing support" 1526340ee4b9SRalf Baechle depends on CPU_RM9000 || (SIBYTE_SB1250 && !SIBYTE_STANDALONE) || SGI_IP27 || MIPS_MT_SMP 15271da177e4SLinus Torvalds ---help--- 15281da177e4SLinus Torvalds This enables support for systems with more than one CPU. If you have 15291da177e4SLinus Torvalds a system with only one CPU, like most personal computers, say N. If 15301da177e4SLinus Torvalds you have a system with more than one CPU, say Y. 15311da177e4SLinus Torvalds 15321da177e4SLinus Torvalds If you say N here, the kernel will run on single and multiprocessor 15331da177e4SLinus Torvalds machines, but will use only one CPU of a multiprocessor machine. If 15341da177e4SLinus Torvalds you say Y here, the kernel will run on many, but not all, 15351da177e4SLinus Torvalds singleprocessor machines. On a singleprocessor machine, the kernel 15361da177e4SLinus Torvalds will run faster if you say N here. 15371da177e4SLinus Torvalds 15381da177e4SLinus Torvalds People using multiprocessor machines who say Y here should also say 15391da177e4SLinus Torvalds Y to "Enhanced Real Time Clock Support", below. 15401da177e4SLinus Torvalds 15411da177e4SLinus Torvalds See also the <file:Documentation/smp.txt> and the SMP-HOWTO 15421da177e4SLinus Torvalds available at <http://www.tldp.org/docs.html#howto>. 15431da177e4SLinus Torvalds 15441da177e4SLinus Torvalds If you don't know what to do here, say N. 15451da177e4SLinus Torvalds 15461da177e4SLinus Torvaldsconfig NR_CPUS 15471da177e4SLinus Torvalds int "Maximum number of CPUs (2-64)" 15481da177e4SLinus Torvalds range 2 64 15491da177e4SLinus Torvalds depends on SMP 15501da177e4SLinus Torvalds default "64" if SGI_IP27 15511da177e4SLinus Torvalds default "2" 15521da177e4SLinus Torvalds help 15531da177e4SLinus Torvalds This allows you to specify the maximum number of CPUs which this 15541da177e4SLinus Torvalds kernel will support. The maximum supported value is 32 for 32-bit 15551da177e4SLinus Torvalds kernel and 64 for 64-bit kernels; the minimum value which makes 15561da177e4SLinus Torvalds sense is 2. 15571da177e4SLinus Torvalds 15581da177e4SLinus Torvalds This is purely to save memory - each supported CPU adds 15591da177e4SLinus Torvalds approximately eight kilobytes to the kernel image. 15601da177e4SLinus Torvalds 1561e80de850SRalf Baechlesource "kernel/Kconfig.preempt" 15621da177e4SLinus Torvalds 15631da177e4SLinus Torvaldsconfig RTC_DS1742 15641da177e4SLinus Torvalds bool "DS1742 BRAM/RTC support" 15651da177e4SLinus Torvalds depends on TOSHIBA_JMR3927 || TOSHIBA_RBTX4927 15661da177e4SLinus Torvalds 15671da177e4SLinus Torvaldsconfig MIPS_INSANE_LARGE 15681da177e4SLinus Torvalds bool "Support for large 64-bit configurations" 1569875d43e7SRalf Baechle depends on CPU_R10000 && 64BIT 15701da177e4SLinus Torvalds help 15711da177e4SLinus Torvalds MIPS R10000 does support a 44 bit / 16TB address space as opposed to 15721da177e4SLinus Torvalds previous 64-bit processors which only supported 40 bit / 1TB. If you 15731da177e4SLinus Torvalds need processes of more than 1TB virtual address space, say Y here. 15741da177e4SLinus Torvalds This will result in additional memory usage, so it is not 15751da177e4SLinus Torvalds recommended for normal users. 15761da177e4SLinus Torvalds 15771da177e4SLinus Torvaldsconfig RWSEM_GENERIC_SPINLOCK 15781da177e4SLinus Torvalds bool 15791da177e4SLinus Torvalds default y 15801da177e4SLinus Torvalds 15811da177e4SLinus Torvaldsendmenu 15821da177e4SLinus Torvalds 15831da177e4SLinus Torvaldsmenu "Bus options (PCI, PCMCIA, EISA, ISA, TC)" 15841da177e4SLinus Torvalds 15851da177e4SLinus Torvaldsconfig HW_HAS_PCI 15861da177e4SLinus Torvalds bool 15871da177e4SLinus Torvalds 15881da177e4SLinus Torvaldsconfig PCI 15891da177e4SLinus Torvalds bool "Support for PCI controller" 15901da177e4SLinus Torvalds depends on HW_HAS_PCI 15911da177e4SLinus Torvalds help 15921da177e4SLinus Torvalds Find out whether you have a PCI motherboard. PCI is the name of a 15931da177e4SLinus Torvalds bus system, i.e. the way the CPU talks to the other stuff inside 15941da177e4SLinus Torvalds your box. Other bus systems are ISA, EISA, or VESA. If you have PCI, 15951da177e4SLinus Torvalds say Y, otherwise N. 15961da177e4SLinus Torvalds 15971da177e4SLinus Torvalds The PCI-HOWTO, available from 15981da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>, contains valuable 15991da177e4SLinus Torvalds information about which PCI hardware does work under Linux and which 16001da177e4SLinus Torvalds doesn't. 16011da177e4SLinus Torvalds 16021da177e4SLinus Torvaldsconfig PCI_DOMAINS 16031da177e4SLinus Torvalds bool 16041da177e4SLinus Torvalds depends on PCI 16051da177e4SLinus Torvalds 16061da177e4SLinus Torvaldssource "drivers/pci/Kconfig" 16071da177e4SLinus Torvalds 16081da177e4SLinus Torvalds# 16091da177e4SLinus Torvalds# ISA support is now enabled via select. Too many systems still have the one 16101da177e4SLinus Torvalds# or other ISA chip on the board that users don't know about so don't expect 16111da177e4SLinus Torvalds# users to choose the right thing ... 16121da177e4SLinus Torvalds# 16131da177e4SLinus Torvaldsconfig ISA 16141da177e4SLinus Torvalds bool 16151da177e4SLinus Torvalds 16161da177e4SLinus Torvaldsconfig EISA 16171da177e4SLinus Torvalds bool "EISA support" 16181da177e4SLinus Torvalds depends on SGI_IP22 || SNI_RM200_PCI 16191da177e4SLinus Torvalds select ISA 16201da177e4SLinus Torvalds ---help--- 16211da177e4SLinus Torvalds The Extended Industry Standard Architecture (EISA) bus was 16221da177e4SLinus Torvalds developed as an open alternative to the IBM MicroChannel bus. 16231da177e4SLinus Torvalds 16241da177e4SLinus Torvalds The EISA bus provided some of the features of the IBM MicroChannel 16251da177e4SLinus Torvalds bus while maintaining backward compatibility with cards made for 16261da177e4SLinus Torvalds the older ISA bus. The EISA bus saw limited use between 1988 and 16271da177e4SLinus Torvalds 1995 when it was made obsolete by the PCI bus. 16281da177e4SLinus Torvalds 16291da177e4SLinus Torvalds Say Y here if you are building a kernel for an EISA-based machine. 16301da177e4SLinus Torvalds 16311da177e4SLinus Torvalds Otherwise, say N. 16321da177e4SLinus Torvalds 16331da177e4SLinus Torvaldssource "drivers/eisa/Kconfig" 16341da177e4SLinus Torvalds 16351da177e4SLinus Torvaldsconfig TC 16361da177e4SLinus Torvalds bool "TURBOchannel support" 16371da177e4SLinus Torvalds depends on MACH_DECSTATION 16381da177e4SLinus Torvalds help 16391da177e4SLinus Torvalds TurboChannel is a DEC (now Compaq (now HP)) bus for Alpha and MIPS 16401da177e4SLinus Torvalds processors. Documentation on writing device drivers for TurboChannel 16411da177e4SLinus Torvalds is available at: 16421da177e4SLinus Torvalds <http://www.cs.arizona.edu/computer.help/policy/DIGITAL_unix/AA-PS3HD-TET1_html/TITLE.html>. 16431da177e4SLinus Torvalds 16441da177e4SLinus Torvalds#config ACCESSBUS 16451da177e4SLinus Torvalds# bool "Access.Bus support" 16461da177e4SLinus Torvalds# depends on TC 16471da177e4SLinus Torvalds 16481da177e4SLinus Torvaldsconfig MMU 16491da177e4SLinus Torvalds bool 16501da177e4SLinus Torvalds default y 16511da177e4SLinus Torvalds 16521da177e4SLinus Torvaldsconfig MCA 16531da177e4SLinus Torvalds bool 16541da177e4SLinus Torvalds 16551da177e4SLinus Torvaldsconfig SBUS 16561da177e4SLinus Torvalds bool 16571da177e4SLinus Torvalds 16581da177e4SLinus Torvaldssource "drivers/pcmcia/Kconfig" 16591da177e4SLinus Torvalds 16601da177e4SLinus Torvaldssource "drivers/pci/hotplug/Kconfig" 16611da177e4SLinus Torvalds 16621da177e4SLinus Torvaldsendmenu 16631da177e4SLinus Torvalds 16641da177e4SLinus Torvaldsmenu "Executable file formats" 16651da177e4SLinus Torvalds 16661da177e4SLinus Torvaldssource "fs/Kconfig.binfmt" 16671da177e4SLinus Torvalds 16681da177e4SLinus Torvaldsconfig TRAD_SIGNALS 16691da177e4SLinus Torvalds bool 1670875d43e7SRalf Baechle default y if 32BIT 16711da177e4SLinus Torvalds 16721da177e4SLinus Torvaldsconfig BUILD_ELF64 16731da177e4SLinus Torvalds bool "Use 64-bit ELF format for building" 1674875d43e7SRalf Baechle depends on 64BIT 16751da177e4SLinus Torvalds help 16761da177e4SLinus Torvalds A 64-bit kernel is usually built using the 64-bit ELF binary object 16771da177e4SLinus Torvalds format as it's one that allows arbitrary 64-bit constructs. For 16781da177e4SLinus Torvalds kernels that are loaded within the KSEG compatibility segments the 16791da177e4SLinus Torvalds 32-bit ELF format can optionally be used resulting in a somewhat 16801da177e4SLinus Torvalds smaller binary, but this option is not explicitly supported by the 16811da177e4SLinus Torvalds toolchain and since binutils 2.14 it does not even work at all. 16821da177e4SLinus Torvalds 16831da177e4SLinus Torvalds Say Y to use the 64-bit format or N to use the 32-bit one. 16841da177e4SLinus Torvalds 16851da177e4SLinus Torvalds If unsure say Y. 16861da177e4SLinus Torvalds 16871da177e4SLinus Torvaldsconfig BINFMT_IRIX 16881da177e4SLinus Torvalds bool "Include IRIX binary compatibility" 1689875d43e7SRalf Baechle depends on !CPU_LITTLE_ENDIAN && 32BIT && BROKEN 16901da177e4SLinus Torvalds 16911da177e4SLinus Torvaldsconfig MIPS32_COMPAT 16921da177e4SLinus Torvalds bool "Kernel support for Linux/MIPS 32-bit binary compatibility" 1693875d43e7SRalf Baechle depends on 64BIT 16941da177e4SLinus Torvalds help 16951da177e4SLinus Torvalds Select this option if you want Linux/MIPS 32-bit binary 16961da177e4SLinus Torvalds compatibility. Since all software available for Linux/MIPS is 16971da177e4SLinus Torvalds currently 32-bit you should say Y here. 16981da177e4SLinus Torvalds 16991da177e4SLinus Torvaldsconfig COMPAT 17001da177e4SLinus Torvalds bool 17011da177e4SLinus Torvalds depends on MIPS32_COMPAT 17021da177e4SLinus Torvalds default y 17031da177e4SLinus Torvalds 17041da177e4SLinus Torvaldsconfig MIPS32_O32 17051da177e4SLinus Torvalds bool "Kernel support for o32 binaries" 17061da177e4SLinus Torvalds depends on MIPS32_COMPAT 17071da177e4SLinus Torvalds help 17081da177e4SLinus Torvalds Select this option if you want to run o32 binaries. These are pure 17091da177e4SLinus Torvalds 32-bit binaries as used by the 32-bit Linux/MIPS port. Most of 17101da177e4SLinus Torvalds existing binaries are in this format. 17111da177e4SLinus Torvalds 17121da177e4SLinus Torvalds If unsure, say Y. 17131da177e4SLinus Torvalds 17141da177e4SLinus Torvaldsconfig MIPS32_N32 17151da177e4SLinus Torvalds bool "Kernel support for n32 binaries" 17161da177e4SLinus Torvalds depends on MIPS32_COMPAT 17171da177e4SLinus Torvalds help 17181da177e4SLinus Torvalds Select this option if you want to run n32 binaries. These are 17191da177e4SLinus Torvalds 64-bit binaries using 32-bit quantities for addressing and certain 17201da177e4SLinus Torvalds data that would normally be 64-bit. They are used in special 17211da177e4SLinus Torvalds cases. 17221da177e4SLinus Torvalds 17231da177e4SLinus Torvalds If unsure, say N. 17241da177e4SLinus Torvalds 17251da177e4SLinus Torvaldsconfig BINFMT_ELF32 17261da177e4SLinus Torvalds bool 17271da177e4SLinus Torvalds default y if MIPS32_O32 || MIPS32_N32 17281da177e4SLinus Torvalds 1729127c6f66SRalf Baechleconfig SECCOMP 1730127c6f66SRalf Baechle bool "Enable seccomp to safely compute untrusted bytecode" 1731127c6f66SRalf Baechle depends on PROC_FS && BROKEN 1732127c6f66SRalf Baechle default y 1733127c6f66SRalf Baechle help 1734127c6f66SRalf Baechle This kernel feature is useful for number crunching applications 1735127c6f66SRalf Baechle that may need to compute untrusted bytecode during their 1736127c6f66SRalf Baechle execution. By using pipes or other transports made available to 1737127c6f66SRalf Baechle the process as file descriptors supporting the read/write 1738127c6f66SRalf Baechle syscalls, it's possible to isolate those applications in 1739127c6f66SRalf Baechle their own address space using seccomp. Once seccomp is 1740127c6f66SRalf Baechle enabled via /proc/<pid>/seccomp, it cannot be disabled 1741127c6f66SRalf Baechle and the task is only allowed to execute a few safe syscalls 1742127c6f66SRalf Baechle defined by each seccomp mode. 1743127c6f66SRalf Baechle 1744127c6f66SRalf Baechle If unsure, say Y. Only embedded should say N here. 1745127c6f66SRalf Baechle 17461da177e4SLinus Torvaldsconfig PM 17471da177e4SLinus Torvalds bool "Power Management support (EXPERIMENTAL)" 17481da177e4SLinus Torvalds depends on EXPERIMENTAL && MACH_AU1X00 17491da177e4SLinus Torvalds 17501da177e4SLinus Torvaldsendmenu 17511da177e4SLinus Torvalds 1752d5950b43SSam Ravnborgsource "net/Kconfig" 1753d5950b43SSam Ravnborg 17541da177e4SLinus Torvaldssource "drivers/Kconfig" 17551da177e4SLinus Torvalds 17561da177e4SLinus Torvaldssource "fs/Kconfig" 17571da177e4SLinus Torvalds 17581da177e4SLinus Torvaldssource "arch/mips/Kconfig.debug" 17591da177e4SLinus Torvalds 17601da177e4SLinus Torvaldssource "security/Kconfig" 17611da177e4SLinus Torvalds 17621da177e4SLinus Torvaldssource "crypto/Kconfig" 17631da177e4SLinus Torvalds 17641da177e4SLinus Torvaldssource "lib/Kconfig" 17651da177e4SLinus Torvalds 17665cae841bSAl Viroconfig ISA_DMA_API 17675cae841bSAl Viro bool 17685cae841bSAl Viro default y 1769