Kconfig 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758
  1. config MIPS
  2. bool
  3. default y
  4. # Horrible source of confusion. Die, die, die ...
  5. select EMBEDDED
  6. # shouldn't it be per-subarchitecture?
  7. config ARCH_MAY_HAVE_PC_FDC
  8. bool
  9. default y
  10. mainmenu "Linux/MIPS Kernel Configuration"
  11. source "init/Kconfig"
  12. config SYS_SUPPORTS_32BIT_KERNEL
  13. bool
  14. config SYS_SUPPORTS_64BIT_KERNEL
  15. bool
  16. config CPU_SUPPORTS_32BIT_KERNEL
  17. bool
  18. config CPU_SUPPORTS_64BIT_KERNEL
  19. bool
  20. menu "Kernel type"
  21. choice
  22. prompt "Kernel code model"
  23. help
  24. You should only select this option if you have a workload that
  25. actually benefits from 64-bit processing or if your machine has
  26. large memory. You will only be presented a single option in this
  27. menu if your system does not support both 32-bit and 64-bit kernels.
  28. config 32BIT
  29. bool "32-bit kernel"
  30. depends on CPU_SUPPORTS_32BIT_KERNEL && SYS_SUPPORTS_32BIT_KERNEL
  31. select TRAD_SIGNALS
  32. help
  33. Select this option if you want to build a 32-bit kernel.
  34. config 64BIT
  35. bool "64-bit kernel"
  36. depends on CPU_SUPPORTS_64BIT_KERNEL && SYS_SUPPORTS_64BIT_KERNEL
  37. help
  38. Select this option if you want to build a 64-bit kernel.
  39. endchoice
  40. endmenu
  41. menu "Machine selection"
  42. config MACH_JAZZ
  43. bool "Support for the Jazz family of machines"
  44. select ARC
  45. select ARC32
  46. select GENERIC_ISA_DMA
  47. select I8259
  48. select ISA
  49. select SYS_SUPPORTS_32BIT_KERNEL
  50. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  51. help
  52. This a family of machines based on the MIPS R4030 chipset which was
  53. used by several vendors to build RISC/os and Windows NT workstations.
  54. Members include the Acer PICA, MIPS Magnum 4000, MIPS Millenium and
  55. Olivetti M700-10 workstations.
  56. config ACER_PICA_61
  57. bool "Support for Acer PICA 1 chipset (EXPERIMENTAL)"
  58. depends on MACH_JAZZ && EXPERIMENTAL
  59. select DMA_NONCOHERENT
  60. help
  61. This is a machine with a R4400 133/150 MHz CPU. To compile a Linux
  62. kernel that runs on these, say Y here. For details about Linux on
  63. the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at
  64. <http://www.linux-mips.org/>.
  65. config MIPS_MAGNUM_4000
  66. bool "Support for MIPS Magnum 4000"
  67. depends on MACH_JAZZ
  68. select DMA_NONCOHERENT
  69. help
  70. This is a machine with a R4000 100 MHz CPU. To compile a Linux
  71. kernel that runs on these, say Y here. For details about Linux on
  72. the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at
  73. <http://www.linux-mips.org/>.
  74. config OLIVETTI_M700
  75. bool "Support for Olivetti M700-10"
  76. depends on MACH_JAZZ
  77. select DMA_NONCOHERENT
  78. help
  79. This is a machine with a R4000 100 MHz CPU. To compile a Linux
  80. kernel that runs on these, say Y here. For details about Linux on
  81. the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at
  82. <http://www.linux-mips.org/>.
  83. config MACH_VR41XX
  84. bool "Support for NEC VR4100 series based machines"
  85. select SYS_SUPPORTS_32BIT_KERNEL
  86. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  87. config NEC_CMBVR4133
  88. bool "Support for NEC CMB-VR4133"
  89. depends on MACH_VR41XX
  90. select CPU_VR41XX
  91. select DMA_NONCOHERENT
  92. select IRQ_CPU
  93. select HW_HAS_PCI
  94. config ROCKHOPPER
  95. bool "Support for Rockhopper baseboard"
  96. depends on NEC_CMBVR4133
  97. select I8259
  98. select HAVE_STD_PC_SERIAL_PORT
  99. config CASIO_E55
  100. bool "Support for CASIO CASSIOPEIA E-10/15/55/65"
  101. depends on MACH_VR41XX
  102. select CPU_LITTLE_ENDIAN
  103. select DMA_NONCOHERENT
  104. select IRQ_CPU
  105. select ISA
  106. config IBM_WORKPAD
  107. bool "Support for IBM WorkPad z50"
  108. depends on MACH_VR41XX
  109. select CPU_LITTLE_ENDIAN
  110. select DMA_NONCOHERENT
  111. select IRQ_CPU
  112. select ISA
  113. config TANBAC_TB022X
  114. bool "Support for TANBAC VR4131 multichip module and TANBAC VR4131DIMM"
  115. depends on MACH_VR41XX
  116. select CPU_LITTLE_ENDIAN
  117. select DMA_NONCOHERENT
  118. select IRQ_CPU
  119. select HW_HAS_PCI
  120. help
  121. The TANBAC VR4131 multichip module(TB0225) and
  122. the TANBAC VR4131DIMM(TB0229) are MIPS-based platforms
  123. manufactured by TANBAC.
  124. Please refer to <http://www.tanbac.co.jp/>
  125. about VR4131 multichip module and VR4131DIMM.
  126. config TANBAC_TB0226
  127. bool "Support for TANBAC Mbase(TB0226)"
  128. depends on TANBAC_TB022X
  129. select GPIO_VR41XX
  130. help
  131. The TANBAC Mbase(TB0226) is a MIPS-based platform manufactured by TANBAC.
  132. Please refer to <http://www.tanbac.co.jp/> about Mbase.
  133. config TANBAC_TB0287
  134. bool "Support for TANBAC Mini-ITX DIMM base(TB0287)"
  135. depends on TANBAC_TB022X
  136. help
  137. The TANBAC Mini-ITX DIMM base(TB0287) is a MIPS-based platform manufactured by TANBAC.
  138. Please refer to <http://www.tanbac.co.jp/> about Mini-ITX DIMM base.
  139. config VICTOR_MPC30X
  140. bool "Support for Victor MP-C303/304"
  141. depends on MACH_VR41XX
  142. select CPU_LITTLE_ENDIAN
  143. select DMA_NONCOHERENT
  144. select IRQ_CPU
  145. select HW_HAS_PCI
  146. config ZAO_CAPCELLA
  147. bool "Support for ZAO Networks Capcella"
  148. depends on MACH_VR41XX
  149. select CPU_LITTLE_ENDIAN
  150. select DMA_NONCOHERENT
  151. select IRQ_CPU
  152. select HW_HAS_PCI
  153. config PCI_VR41XX
  154. bool "Add PCI control unit support of NEC VR4100 series"
  155. depends on MACH_VR41XX && HW_HAS_PCI
  156. default y
  157. select PCI
  158. config VRC4173
  159. tristate "Add NEC VRC4173 companion chip support"
  160. depends on MACH_VR41XX && PCI_VR41XX
  161. ---help---
  162. The NEC VRC4173 is a companion chip for NEC VR4122/VR4131.
  163. config TOSHIBA_JMR3927
  164. bool "Support for Toshiba JMR-TX3927 board"
  165. select DMA_NONCOHERENT
  166. select HW_HAS_PCI
  167. select SWAP_IO_SPACE
  168. select SYS_SUPPORTS_32BIT_KERNEL
  169. config MIPS_COBALT
  170. bool "Support for Cobalt Server"
  171. depends on EXPERIMENTAL
  172. select DMA_NONCOHERENT
  173. select HW_HAS_PCI
  174. select I8259
  175. select IRQ_CPU
  176. select SYS_SUPPORTS_32BIT_KERNEL
  177. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  178. config MACH_DECSTATION
  179. bool "Support for DECstations"
  180. select BOOT_ELF32
  181. select DMA_NONCOHERENT
  182. select IRQ_CPU
  183. select SYS_SUPPORTS_32BIT_KERNEL
  184. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  185. ---help---
  186. This enables support for DEC's MIPS based workstations. For details
  187. see the Linux/MIPS FAQ on <http://www.linux-mips.org/> and the
  188. DECstation porting pages on <http://decstation.unix-ag.org/>.
  189. If you have one of the following DECstation Models you definitely
  190. want to choose R4xx0 for the CPU Type:
  191. DECstation 5000/50
  192. DECstation 5000/150
  193. DECstation 5000/260
  194. DECsystem 5900/260
  195. otherwise choose R3000.
  196. config MIPS_EV64120
  197. bool "Support for Galileo EV64120 Evaluation board (EXPERIMENTAL)"
  198. depends on EXPERIMENTAL
  199. select DMA_NONCOHERENT
  200. select HW_HAS_PCI
  201. select MIPS_GT64120
  202. select SYS_SUPPORTS_32BIT_KERNEL
  203. select SYS_SUPPORTS_64BIT_KERNEL
  204. help
  205. This is an evaluation board based on the Galileo GT-64120
  206. single-chip system controller that contains a MIPS R5000 compatible
  207. core running at 75/100MHz. Their website is located at
  208. <http://www.marvell.com/>. Say Y here if you wish to build a
  209. kernel for this platform.
  210. config EVB_PCI1
  211. bool "Enable Second PCI (PCI1)"
  212. depends on MIPS_EV64120
  213. config MIPS_EV96100
  214. bool "Support for Galileo EV96100 Evaluation board (EXPERIMENTAL)"
  215. depends on EXPERIMENTAL
  216. select DMA_NONCOHERENT
  217. select HW_HAS_PCI
  218. select IRQ_CPU
  219. select MIPS_GT96100
  220. select RM7000_CPU_SCACHE
  221. select SWAP_IO_SPACE
  222. select SYS_SUPPORTS_32BIT_KERNEL
  223. select SYS_SUPPORTS_64BIT_KERNEL
  224. help
  225. This is an evaluation board based on the Galileo GT-96100 LAN/WAN
  226. communications controllers containing a MIPS R5000 compatible core
  227. running at 83MHz. Their website is <http://www.marvell.com/>. Say Y
  228. here if you wish to build a kernel for this platform.
  229. config MIPS_IVR
  230. bool "Support for Globespan IVR board"
  231. select DMA_NONCOHERENT
  232. select HW_HAS_PCI
  233. select SYS_SUPPORTS_32BIT_KERNEL
  234. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  235. help
  236. This is an evaluation board built by Globespan to showcase thir
  237. iVR (Internet Video Recorder) design. It utilizes a QED RM5231
  238. R5000 MIPS core. More information can be found out their website
  239. located at <http://www.globespan.net/>. Say Y here if you wish to
  240. build a kernel for this platform.
  241. config LASAT
  242. bool "Support for LASAT Networks platforms"
  243. select DMA_NONCOHERENT
  244. select HW_HAS_PCI
  245. select MIPS_GT64120
  246. select R5000_CPU_SCACHE
  247. select SYS_SUPPORTS_32BIT_KERNEL
  248. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  249. config PICVUE
  250. tristate "PICVUE LCD display driver"
  251. depends on LASAT
  252. config PICVUE_PROC
  253. tristate "PICVUE LCD display driver /proc interface"
  254. depends on PICVUE
  255. config DS1603
  256. bool "DS1603 RTC driver"
  257. depends on LASAT
  258. config LASAT_SYSCTL
  259. bool "LASAT sysctl interface"
  260. depends on LASAT
  261. config MIPS_ITE8172
  262. bool "Support for ITE 8172G board"
  263. select DMA_NONCOHERENT
  264. select HW_HAS_PCI
  265. select SYS_SUPPORTS_32BIT_KERNEL
  266. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  267. help
  268. Ths is an evaluation board made by ITE <http://www.ite.com.tw/>
  269. with ATX form factor that utilizes a MIPS R5000 to work with its
  270. ITE8172G companion internet appliance chip. The MIPS core can be
  271. either a NEC Vr5432 or QED RM5231. Say Y here if you wish to build
  272. a kernel for this platform.
  273. config IT8172_REVC
  274. bool "Support for older IT8172 (Rev C)"
  275. depends on MIPS_ITE8172
  276. help
  277. Say Y here to support the older, Revision C version of the Integrated
  278. Technology Express, Inc. ITE8172 SBC. Vendor page at
  279. <http://www.ite.com.tw/ia/brief_it8172bsp.htm>; picture of the
  280. board at <http://www.mvista.com/partners/semiconductor/ite.html>.
  281. config MIPS_ATLAS
  282. bool "Support for MIPS Atlas board"
  283. select BOOT_ELF32
  284. select DMA_NONCOHERENT
  285. select HW_HAS_PCI
  286. select MIPS_GT64120
  287. select SWAP_IO_SPACE
  288. select SYS_SUPPORTS_32BIT_KERNEL
  289. select SYS_SUPPORTS_64BIT_KERNEL
  290. help
  291. This enables support for the QED R5231-based MIPS Atlas evaluation
  292. board.
  293. config MIPS_MALTA
  294. bool "Support for MIPS Malta board"
  295. select BOOT_ELF32
  296. select HAVE_STD_PC_SERIAL_PORT
  297. select DMA_NONCOHERENT
  298. select GENERIC_ISA_DMA
  299. select HW_HAS_PCI
  300. select I8259
  301. select MIPS_GT64120
  302. select SWAP_IO_SPACE
  303. select SYS_SUPPORTS_32BIT_KERNEL
  304. select SYS_SUPPORTS_64BIT_KERNEL
  305. help
  306. This enables support for the VR5000-based MIPS Malta evaluation
  307. board.
  308. config MIPS_SEAD
  309. bool "Support for MIPS SEAD board (EXPERIMENTAL)"
  310. depends on EXPERIMENTAL
  311. select IRQ_CPU
  312. select DMA_NONCOHERENT
  313. select SYS_SUPPORTS_32BIT_KERNEL
  314. select SYS_SUPPORTS_64BIT_KERNEL
  315. config MOMENCO_OCELOT
  316. bool "Support for Momentum Ocelot board"
  317. select DMA_NONCOHERENT
  318. select HW_HAS_PCI
  319. select IRQ_CPU
  320. select IRQ_CPU_RM7K
  321. select MIPS_GT64120
  322. select RM7000_CPU_SCACHE
  323. select SWAP_IO_SPACE
  324. select SYS_SUPPORTS_32BIT_KERNEL
  325. select SYS_SUPPORTS_64BIT_KERNEL
  326. help
  327. The Ocelot is a MIPS-based Single Board Computer (SBC) made by
  328. Momentum Computer <http://www.momenco.com/>.
  329. config MOMENCO_OCELOT_G
  330. bool "Support for Momentum Ocelot-G board"
  331. select DMA_NONCOHERENT
  332. select HW_HAS_PCI
  333. select IRQ_CPU
  334. select IRQ_CPU_RM7K
  335. select PCI_MARVELL
  336. select RM7000_CPU_SCACHE
  337. select SWAP_IO_SPACE
  338. select SYS_SUPPORTS_32BIT_KERNEL
  339. select SYS_SUPPORTS_64BIT_KERNEL
  340. help
  341. The Ocelot is a MIPS-based Single Board Computer (SBC) made by
  342. Momentum Computer <http://www.momenco.com/>.
  343. config MOMENCO_OCELOT_C
  344. bool "Support for Momentum Ocelot-C board"
  345. select DMA_NONCOHERENT
  346. select HW_HAS_PCI
  347. select IRQ_CPU
  348. select IRQ_MV64340
  349. select PCI_MARVELL
  350. select RM7000_CPU_SCACHE
  351. select SWAP_IO_SPACE
  352. select SYS_SUPPORTS_32BIT_KERNEL
  353. select SYS_SUPPORTS_64BIT_KERNEL
  354. help
  355. The Ocelot is a MIPS-based Single Board Computer (SBC) made by
  356. Momentum Computer <http://www.momenco.com/>.
  357. config MOMENCO_OCELOT_3
  358. bool "Support for Momentum Ocelot-3 board"
  359. select BOOT_ELF32
  360. select DMA_NONCOHERENT
  361. select HW_HAS_PCI
  362. select IRQ_CPU
  363. select IRQ_CPU_RM7K
  364. select IRQ_MV64340
  365. select PCI_MARVELL
  366. select RM7000_CPU_SCACHE
  367. select SWAP_IO_SPACE
  368. select SYS_SUPPORTS_32BIT_KERNEL
  369. select SYS_SUPPORTS_64BIT_KERNEL
  370. help
  371. The Ocelot-3 is based off Discovery III System Controller and
  372. PMC-Sierra Rm79000 core.
  373. config MOMENCO_JAGUAR_ATX
  374. bool "Support for Momentum Jaguar board"
  375. select BOOT_ELF32
  376. select DMA_NONCOHERENT
  377. select HW_HAS_PCI
  378. select IRQ_CPU
  379. select IRQ_CPU_RM7K
  380. select IRQ_MV64340
  381. select LIMITED_DMA
  382. select PCI_MARVELL
  383. select RM7000_CPU_SCACHE
  384. select SWAP_IO_SPACE
  385. select SYS_SUPPORTS_32BIT_KERNEL
  386. select SYS_SUPPORTS_64BIT_KERNEL
  387. help
  388. The Jaguar ATX is a MIPS-based Single Board Computer (SBC) made by
  389. Momentum Computer <http://www.momenco.com/>.
  390. config JAGUAR_DMALOW
  391. bool "Low DMA Mode"
  392. depends on MOMENCO_JAGUAR_ATX
  393. help
  394. Select to Y if jump JP5 is set on your board, N otherwise. Normally
  395. the jumper is set, so if you feel unsafe, just say Y.
  396. config PMC_YOSEMITE
  397. bool "Support for PMC-Sierra Yosemite eval board"
  398. select DMA_COHERENT
  399. select HW_HAS_PCI
  400. select IRQ_CPU
  401. select IRQ_CPU_RM7K
  402. select IRQ_CPU_RM9K
  403. select SWAP_IO_SPACE
  404. select SYS_SUPPORTS_32BIT_KERNEL
  405. select SYS_SUPPORTS_64BIT_KERNEL
  406. help
  407. Yosemite is an evaluation board for the RM9000x2 processor
  408. manufactured by PMC-Sierra
  409. config HYPERTRANSPORT
  410. bool "Hypertransport Support for PMC-Sierra Yosemite"
  411. depends on PMC_YOSEMITE
  412. config DDB5074
  413. bool "Support for NEC DDB Vrc-5074 (EXPERIMENTAL)"
  414. depends on EXPERIMENTAL
  415. select DMA_NONCOHERENT
  416. select HAVE_STD_PC_SERIAL_PORT
  417. select HW_HAS_PCI
  418. select IRQ_CPU
  419. select I8259
  420. select ISA
  421. select SYS_SUPPORTS_32BIT_KERNEL
  422. select SYS_SUPPORTS_64BIT_KERNEL
  423. help
  424. This enables support for the VR5000-based NEC DDB Vrc-5074
  425. evaluation board.
  426. config DDB5476
  427. bool "Support for NEC DDB Vrc-5476"
  428. select DMA_NONCOHERENT
  429. select HAVE_STD_PC_SERIAL_PORT
  430. select HW_HAS_PCI
  431. select IRQ_CPU
  432. select I8259
  433. select ISA
  434. select SYS_SUPPORTS_32BIT_KERNEL
  435. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  436. help
  437. This enables support for the R5432-based NEC DDB Vrc-5476
  438. evaluation board.
  439. Features : kernel debugging, serial terminal, NFS root fs, on-board
  440. ether port USB, AC97, PCI, PCI VGA card & framebuffer console,
  441. IDE controller, PS2 keyboard, PS2 mouse, etc.
  442. config DDB5477
  443. bool "Support for NEC DDB Vrc-5477"
  444. select DMA_NONCOHERENT
  445. select HW_HAS_PCI
  446. select I8259
  447. select IRQ_CPU
  448. select SYS_SUPPORTS_32BIT_KERNEL
  449. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  450. help
  451. This enables support for the R5432-based NEC DDB Vrc-5477,
  452. or Rockhopper/SolutionGear boards with R5432/R5500 CPUs.
  453. Features : kernel debugging, serial terminal, NFS root fs, on-board
  454. ether port USB, AC97, PCI, etc.
  455. config DDB5477_BUS_FREQUENCY
  456. int "bus frequency (in kHZ, 0 for auto-detect)"
  457. depends on DDB5477
  458. default 0
  459. config QEMU
  460. bool "Support for Qemu"
  461. select DMA_COHERENT
  462. select GENERIC_ISA_DMA
  463. select HAVE_STD_PC_SERIAL_PORT
  464. select I8259
  465. select ISA
  466. select SWAP_IO_SPACE
  467. select SYS_SUPPORTS_32BIT_KERNEL
  468. select SYS_SUPPORTS_BIG_ENDIAN
  469. help
  470. Qemu is a software emulator which among other architectures also
  471. can simulate a MIPS32 4Kc system. This patch adds support for the
  472. system architecture that currently is being simulated by Qemu. It
  473. will eventually be removed again when Qemu has the capability to
  474. simulate actual MIPS hardware platforms. More information on Qemu
  475. can be found at http://www.linux-mips.org/wiki/Qemu.
  476. config SGI_IP22
  477. bool "Support for SGI IP22 (Indy/Indigo2)"
  478. select ARC
  479. select ARC32
  480. select BOOT_ELF32
  481. select DMA_NONCOHERENT
  482. select IP22_CPU_SCACHE
  483. select IRQ_CPU
  484. select SWAP_IO_SPACE
  485. select SYS_SUPPORTS_32BIT_KERNEL
  486. select SYS_SUPPORTS_64BIT_KERNEL
  487. help
  488. This are the SGI Indy, Challenge S and Indigo2, as well as certain
  489. OEM variants like the Tandem CMN B006S. To compile a Linux kernel
  490. that runs on these, say Y here.
  491. config SGI_IP27
  492. bool "Support for SGI IP27 (Origin200/2000)"
  493. select ARC
  494. select ARC64
  495. select DMA_IP27
  496. select HW_HAS_PCI
  497. select PCI_DOMAINS
  498. select SYS_SUPPORTS_64BIT_KERNEL
  499. help
  500. This are the SGI Origin 200, Origin 2000 and Onyx 2 Graphics
  501. workstations. To compile a Linux kernel that runs on these, say Y
  502. here.
  503. #config SGI_SN0_XXL
  504. # bool "IP27 XXL"
  505. # depends on SGI_IP27
  506. # This options adds support for userspace processes upto 16TB size.
  507. # Normally the limit is just .5TB.
  508. config SGI_SN0_N_MODE
  509. bool "IP27 N-Mode"
  510. depends on SGI_IP27
  511. help
  512. The nodes of Origin 200, Origin 2000 and Onyx 2 systems can be
  513. configured in either N-Modes which allows for more nodes or M-Mode
  514. which allows for more memory. Your system is most probably
  515. running in M-Mode, so you should say N here.
  516. config ARCH_DISCONTIGMEM_ENABLE
  517. bool
  518. default y if SGI_IP27
  519. help
  520. Say Y to upport efficient handling of discontiguous physical memory,
  521. for architectures which are either NUMA (Non-Uniform Memory Access)
  522. or have huge holes in the physical address space for other reasons.
  523. See <file:Documentation/vm/numa> for more.
  524. config NUMA
  525. bool "NUMA Support"
  526. depends on SGI_IP27
  527. help
  528. Say Y to compile the kernel to support NUMA (Non-Uniform Memory
  529. Access). This option is for configuring high-end multiprocessor
  530. server machines. If in doubt, say N.
  531. config MAPPED_KERNEL
  532. bool "Mapped kernel support"
  533. depends on SGI_IP27
  534. help
  535. Change the way a Linux kernel is loaded into memory on a MIPS64
  536. machine. This is required in order to support text replication and
  537. NUMA. If you need to understand it, read the source code.
  538. config REPLICATE_KTEXT
  539. bool "Kernel text replication support"
  540. depends on SGI_IP27
  541. help
  542. Say Y here to enable replicating the kernel text across multiple
  543. nodes in a NUMA cluster. This trades memory for speed.
  544. config REPLICATE_EXHANDLERS
  545. bool "Exception handler replication support"
  546. depends on SGI_IP27
  547. help
  548. Say Y here to enable replicating the kernel exception handlers
  549. across multiple nodes in a NUMA cluster. This trades memory for
  550. speed.
  551. config SGI_IP32
  552. bool "Support for SGI IP32 (O2) (EXPERIMENTAL)"
  553. depends on EXPERIMENTAL
  554. select ARC
  555. select ARC32
  556. select BOOT_ELF32
  557. select OWN_DMA
  558. select DMA_IP32
  559. select DMA_NONCOHERENT
  560. select HW_HAS_PCI
  561. select R5000_CPU_SCACHE
  562. select RM7000_CPU_SCACHE
  563. select SYS_SUPPORTS_64BIT_KERNEL
  564. help
  565. If you want this kernel to run on SGI O2 workstation, say Y here.
  566. config SOC_AU1X00
  567. bool "Support for AMD/Alchemy Au1X00 SOCs"
  568. select SYS_SUPPORTS_32BIT_KERNEL
  569. choice
  570. prompt "Au1X00 SOC Type"
  571. depends on SOC_AU1X00
  572. help
  573. Say Y here to enable support for one of three AMD/Alchemy
  574. SOCs. For additional documentation see www.amd.com.
  575. config SOC_AU1000
  576. bool "SOC_AU1000"
  577. config SOC_AU1100
  578. bool "SOC_AU1100"
  579. config SOC_AU1500
  580. bool "SOC_AU1500"
  581. config SOC_AU1550
  582. bool "SOC_AU1550"
  583. endchoice
  584. choice
  585. prompt "AMD/Alchemy Au1x00 board support"
  586. depends on SOC_AU1X00
  587. help
  588. These are evaluation boards built by AMD/Alchemy to
  589. showcase their Au1X00 Internet Edge Processors. The SOC design
  590. is based on the MIPS32 architecture running at 266/400/500MHz
  591. with many integrated peripherals. Further information can be
  592. found at their website, <http://www.amd.com/>. Say Y here if you
  593. wish to build a kernel for this platform.
  594. config MIPS_PB1000
  595. bool "PB1000 board"
  596. depends on SOC_AU1000
  597. select DMA_NONCOHERENT
  598. select HW_HAS_PCI
  599. select SWAP_IO_SPACE
  600. config MIPS_PB1100
  601. bool "PB1100 board"
  602. depends on SOC_AU1100
  603. select DMA_NONCOHERENT
  604. select HW_HAS_PCI
  605. select SWAP_IO_SPACE
  606. config MIPS_PB1500
  607. bool "PB1500 board"
  608. depends on SOC_AU1500
  609. select DMA_COHERENT
  610. select HW_HAS_PCI
  611. config MIPS_PB1550
  612. bool "PB1550 board"
  613. depends on SOC_AU1550
  614. select DMA_COHERENT
  615. select HW_HAS_PCI
  616. select MIPS_DISABLE_OBSOLETE_IDE
  617. config MIPS_DB1000
  618. bool "DB1000 board"
  619. depends on SOC_AU1000
  620. select DMA_NONCOHERENT
  621. select HW_HAS_PCI
  622. config MIPS_DB1100
  623. bool "DB1100 board"
  624. depends on SOC_AU1100
  625. select DMA_NONCOHERENT
  626. config MIPS_DB1500
  627. bool "DB1500 board"
  628. depends on SOC_AU1500
  629. select DMA_COHERENT
  630. select HW_HAS_PCI
  631. select MIPS_DISABLE_OBSOLETE_IDE
  632. config MIPS_DB1550
  633. bool "DB1550 board"
  634. depends on SOC_AU1550
  635. select HW_HAS_PCI
  636. select DMA_COHERENT
  637. select MIPS_DISABLE_OBSOLETE_IDE
  638. config MIPS_BOSPORUS
  639. bool "Bosporus board"
  640. depends on SOC_AU1500
  641. select DMA_NONCOHERENT
  642. config MIPS_MIRAGE
  643. bool "Mirage board"
  644. depends on SOC_AU1500
  645. select DMA_NONCOHERENT
  646. config MIPS_XXS1500
  647. bool "MyCable XXS1500 board"
  648. depends on SOC_AU1500
  649. select DMA_NONCOHERENT
  650. config MIPS_MTX1
  651. bool "4G Systems MTX-1 board"
  652. depends on SOC_AU1500
  653. select HW_HAS_PCI
  654. select DMA_NONCOHERENT
  655. endchoice
  656. config SIBYTE_SB1xxx_SOC
  657. bool "Support for Broadcom BCM1xxx SOCs (EXPERIMENTAL)"
  658. depends on EXPERIMENTAL
  659. select BOOT_ELF32
  660. select DMA_COHERENT
  661. select SWAP_IO_SPACE
  662. select SYS_SUPPORTS_32BIT_KERNEL
  663. select SYS_SUPPORTS_64BIT_KERNEL
  664. choice
  665. prompt "BCM1xxx SOC-based board"
  666. depends on SIBYTE_SB1xxx_SOC
  667. default SIBYTE_SWARM
  668. help
  669. Enable support for boards based on the SiByte line of SOCs
  670. from Broadcom. There are configurations for the known
  671. evaluation boards, or you can choose "Other" and add your
  672. own board support code.
  673. config SIBYTE_SWARM
  674. bool "BCM91250A-SWARM"
  675. select SIBYTE_SB1250
  676. config SIBYTE_SENTOSA
  677. bool "BCM91250E-Sentosa"
  678. select SIBYTE_SB1250
  679. config SIBYTE_RHONE
  680. bool "BCM91125E-Rhone"
  681. select SIBYTE_BCM1125H
  682. config SIBYTE_CARMEL
  683. bool "BCM91120x-Carmel"
  684. select SIBYTE_BCM1120
  685. config SIBYTE_PTSWARM
  686. bool "BCM91250PT-PTSWARM"
  687. select SIBYTE_SB1250
  688. config SIBYTE_LITTLESUR
  689. bool "BCM91250C2-LittleSur"
  690. select SIBYTE_SB1250
  691. config SIBYTE_CRHINE
  692. bool "BCM91120C-CRhine"
  693. select SIBYTE_BCM1120
  694. config SIBYTE_CRHONE
  695. bool "BCM91125C-CRhone"
  696. select SIBYTE_BCM1125
  697. config SIBYTE_UNKNOWN
  698. bool "Other"
  699. endchoice
  700. config SIBYTE_BOARD
  701. bool
  702. depends on SIBYTE_SB1xxx_SOC && !SIBYTE_UNKNOWN
  703. default y
  704. choice
  705. prompt "BCM1xxx SOC Type"
  706. depends on SIBYTE_UNKNOWN
  707. default SIBYTE_UNK_BCM1250
  708. help
  709. Since you haven't chosen a known evaluation board from
  710. Broadcom, you must explicitly pick the SOC this kernel is
  711. targetted for.
  712. config SIBYTE_UNK_BCM1250
  713. bool "BCM1250"
  714. select SIBYTE_SB1250
  715. config SIBYTE_UNK_BCM1120
  716. bool "BCM1120"
  717. select SIBYTE_BCM1120
  718. config SIBYTE_UNK_BCM1125
  719. bool "BCM1125"
  720. select SIBYTE_BCM1125
  721. config SIBYTE_UNK_BCM1125H
  722. bool "BCM1125H"
  723. select SIBYTE_BCM1125H
  724. endchoice
  725. config SIBYTE_SB1250
  726. bool
  727. select HW_HAS_PCI
  728. config SIBYTE_BCM1120
  729. bool
  730. select SIBYTE_BCM112X
  731. config SIBYTE_BCM1125
  732. bool
  733. select HW_HAS_PCI
  734. select SIBYTE_BCM112X
  735. config SIBYTE_BCM1125H
  736. bool
  737. select HW_HAS_PCI
  738. select SIBYTE_BCM112X
  739. config SIBYTE_BCM112X
  740. bool
  741. choice
  742. prompt "SiByte SOC Stepping"
  743. depends on SIBYTE_SB1xxx_SOC
  744. config CPU_SB1_PASS_1
  745. bool "1250 Pass1"
  746. depends on SIBYTE_SB1250
  747. select CPU_HAS_PREFETCH
  748. config CPU_SB1_PASS_2_1250
  749. bool "1250 An"
  750. depends on SIBYTE_SB1250
  751. select CPU_SB1_PASS_2
  752. help
  753. Also called BCM1250 Pass 2
  754. config CPU_SB1_PASS_2_2
  755. bool "1250 Bn"
  756. depends on SIBYTE_SB1250
  757. select CPU_HAS_PREFETCH
  758. help
  759. Also called BCM1250 Pass 2.2
  760. config CPU_SB1_PASS_4
  761. bool "1250 Cn"
  762. depends on SIBYTE_SB1250
  763. select CPU_HAS_PREFETCH
  764. help
  765. Also called BCM1250 Pass 3
  766. config CPU_SB1_PASS_2_112x
  767. bool "112x Hybrid"
  768. depends on SIBYTE_BCM112X
  769. select CPU_SB1_PASS_2
  770. config CPU_SB1_PASS_3
  771. bool "112x An"
  772. depends on SIBYTE_BCM112X
  773. select CPU_HAS_PREFETCH
  774. endchoice
  775. config CPU_SB1_PASS_2
  776. bool
  777. config SIBYTE_HAS_LDT
  778. bool
  779. depends on PCI && (SIBYTE_SB1250 || SIBYTE_BCM1125H)
  780. default y
  781. config SIMULATION
  782. bool "Running under simulation"
  783. depends on SIBYTE_SB1xxx_SOC
  784. help
  785. Build a kernel suitable for running under the GDB simulator.
  786. Primarily adjusts the kernel's notion of time.
  787. config SIBYTE_CFE
  788. bool "Booting from CFE"
  789. depends on SIBYTE_SB1xxx_SOC
  790. help
  791. Make use of the CFE API for enumerating available memory,
  792. controlling secondary CPUs, and possibly console output.
  793. config SIBYTE_CFE_CONSOLE
  794. bool "Use firmware console"
  795. depends on SIBYTE_CFE
  796. help
  797. Use the CFE API's console write routines during boot. Other console
  798. options (VT console, sb1250 duart console, etc.) should not be
  799. configured.
  800. config SIBYTE_STANDALONE
  801. bool
  802. depends on SIBYTE_SB1xxx_SOC && !SIBYTE_CFE
  803. default y
  804. config SIBYTE_STANDALONE_RAM_SIZE
  805. int "Memory size (in megabytes)"
  806. depends on SIBYTE_STANDALONE
  807. default "32"
  808. config SIBYTE_BUS_WATCHER
  809. bool "Support for Bus Watcher statistics"
  810. depends on SIBYTE_SB1xxx_SOC
  811. help
  812. Handle and keep statistics on the bus error interrupts (COR_ECC,
  813. BAD_ECC, IO_BUS).
  814. config SIBYTE_BW_TRACE
  815. bool "Capture bus trace before bus error"
  816. depends on SIBYTE_BUS_WATCHER
  817. help
  818. Run a continuous bus trace, dumping the raw data as soon as
  819. a ZBbus error is detected. Cannot work if ZBbus profiling
  820. is turned on, and also will interfere with JTAG-based trace
  821. buffer activity. Raw buffer data is dumped to console, and
  822. must be processed off-line.
  823. config SIBYTE_SB1250_PROF
  824. bool "Support for SB1/SOC profiling - SB1/SCD perf counters"
  825. depends on SIBYTE_SB1xxx_SOC
  826. config SIBYTE_TBPROF
  827. bool "Support for ZBbus profiling"
  828. depends on SIBYTE_SB1xxx_SOC
  829. config SNI_RM200_PCI
  830. bool "Support for SNI RM200 PCI"
  831. select ARC
  832. select ARC32
  833. select BOOT_ELF32
  834. select DMA_NONCOHERENT
  835. select GENERIC_ISA_DMA
  836. select HAVE_STD_PC_SERIAL_PORT
  837. select HW_HAS_PCI
  838. select I8259
  839. select ISA
  840. select SYS_SUPPORTS_32BIT_KERNEL
  841. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  842. help
  843. The SNI RM200 PCI was a MIPS-based platform manufactured by Siemens
  844. Nixdorf Informationssysteme (SNI), parent company of Pyramid
  845. Technology and now in turn merged with Fujitsu. Say Y here to
  846. support this machine type.
  847. config TOSHIBA_RBTX4927
  848. bool "Support for Toshiba TBTX49[23]7 board"
  849. select DMA_NONCOHERENT
  850. select HAS_TXX9_SERIAL
  851. select HW_HAS_PCI
  852. select I8259
  853. select ISA
  854. select SWAP_IO_SPACE
  855. select SYS_SUPPORTS_32BIT_KERNEL
  856. select SYS_SUPPORTS_64BIT_KERNEL
  857. help
  858. This Toshiba board is based on the TX4927 processor. Say Y here to
  859. support this machine type
  860. config TOSHIBA_FPCIB0
  861. bool "FPCIB0 Backplane Support"
  862. depends on TOSHIBA_RBTX4927
  863. config RWSEM_GENERIC_SPINLOCK
  864. bool
  865. default y
  866. config RWSEM_XCHGADD_ALGORITHM
  867. bool
  868. config GENERIC_CALIBRATE_DELAY
  869. bool
  870. default y
  871. config HAVE_DEC_LOCK
  872. bool
  873. default y
  874. #
  875. # Select some configuration options automatically based on user selections.
  876. #
  877. config ARC
  878. bool
  879. depends on SNI_RM200_PCI || SGI_IP32 || SGI_IP27 || SGI_IP22 || MIPS_MAGNUM_4000 || OLIVETTI_M700 || ACER_PICA_61
  880. default y
  881. config DMA_COHERENT
  882. bool
  883. config DMA_IP27
  884. bool
  885. config DMA_IP32
  886. bool
  887. select DMA_NEED_PCI_MAP_STATE
  888. config DMA_NONCOHERENT
  889. bool
  890. select DMA_NEED_PCI_MAP_STATE
  891. config DMA_NEED_PCI_MAP_STATE
  892. bool
  893. config EARLY_PRINTK
  894. bool
  895. depends on MACH_DECSTATION
  896. default y
  897. config GENERIC_ISA_DMA
  898. bool
  899. depends on SNI_RM200_PCI || MIPS_MAGNUM_4000 || OLIVETTI_M700 || ACER_PICA_61 || MIPS_MALTA
  900. default y
  901. config I8259
  902. bool
  903. depends on SNI_RM200_PCI || DDB5477 || DDB5476 || DDB5074 || MACH_JAZZ || MIPS_MALTA || MIPS_COBALT
  904. default y
  905. config LIMITED_DMA
  906. bool
  907. select HIGHMEM
  908. config MIPS_BONITO64
  909. bool
  910. depends on MIPS_ATLAS || MIPS_MALTA
  911. default y
  912. config MIPS_MSC
  913. bool
  914. depends on MIPS_ATLAS || MIPS_MALTA
  915. default y
  916. config MIPS_NILE4
  917. bool
  918. depends on LASAT
  919. default y
  920. config MIPS_DISABLE_OBSOLETE_IDE
  921. bool
  922. config CPU_LITTLE_ENDIAN
  923. bool "Generate little endian code"
  924. 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
  925. default n if MIPS_EV64120 || MIPS_EV96100 || MOMENCO_OCELOT || MOMENCO_OCELOT_G || SGI_IP22 || SGI_IP27 || SGI_IP32 || TOSHIBA_JMR3927
  926. help
  927. Some MIPS machines can be configured for either little or big endian
  928. byte order. These modes require different kernels. Say Y if your
  929. machine is little endian, N if it's a big endian machine.
  930. config IRQ_CPU
  931. bool
  932. config IRQ_CPU_RM7K
  933. bool
  934. config IRQ_MV64340
  935. bool
  936. config DDB5XXX_COMMON
  937. bool
  938. depends on DDB5074 || DDB5476 || DDB5477
  939. default y
  940. config MIPS_BOARDS_GEN
  941. bool
  942. depends on MIPS_ATLAS || MIPS_MALTA || MIPS_SEAD
  943. default y
  944. config MIPS_GT64111
  945. bool
  946. depends on MIPS_COBALT
  947. default y
  948. config MIPS_GT64120
  949. bool
  950. depends on MIPS_EV64120 || MIPS_EV96100 || LASAT || MIPS_ATLAS || MIPS_MALTA || MOMENCO_OCELOT
  951. default y
  952. config MIPS_TX3927
  953. bool
  954. depends on TOSHIBA_JMR3927
  955. select HAS_TXX9_SERIAL
  956. default y
  957. config PCI_MARVELL
  958. bool
  959. config ITE_BOARD_GEN
  960. bool
  961. depends on MIPS_IVR || MIPS_ITE8172
  962. default y
  963. config SWAP_IO_SPACE
  964. bool
  965. #
  966. # Unfortunately not all GT64120 systems run the chip at the same clock.
  967. # As the user for the clock rate and try to minimize the available options.
  968. #
  969. choice
  970. prompt "Galileo Chip Clock"
  971. #default SYSCLK_83 if MIPS_EV64120
  972. depends on MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G
  973. default SYSCLK_83 if MIPS_EV64120
  974. default SYSCLK_100 if MOMENCO_OCELOT || MOMENCO_OCELOT_G
  975. config SYSCLK_75
  976. bool "75" if MIPS_EV64120
  977. config SYSCLK_83
  978. bool "83.3" if MIPS_EV64120
  979. config SYSCLK_100
  980. bool "100" if MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G
  981. endchoice
  982. config AU1X00_USB_DEVICE
  983. bool
  984. depends on MIPS_PB1500 || MIPS_PB1100 || MIPS_PB1000
  985. default n
  986. config MIPS_GT96100
  987. bool
  988. depends on MIPS_EV96100
  989. default y
  990. help
  991. Say Y here to support the Galileo Technology GT96100 communications
  992. controller card. There is a web page at <http://www.galileot.com/>.
  993. config IT8172_CIR
  994. bool
  995. depends on MIPS_ITE8172 || MIPS_IVR
  996. default y
  997. config IT8712
  998. bool
  999. depends on MIPS_ITE8172
  1000. default y
  1001. config BOOT_ELF32
  1002. bool
  1003. depends on MACH_DECSTATION || MIPS_ATLAS || MIPS_MALTA || MOMENCO_JAGUAR_ATX || MOMENCO_OCELOT_3 || SIBYTE_SB1xxx_SOC || SGI_IP32 || SGI_IP22 || SNI_RM200_PCI
  1004. default y
  1005. config MIPS_L1_CACHE_SHIFT
  1006. int
  1007. default "4" if MACH_DECSTATION
  1008. default "7" if SGI_IP27
  1009. default "5"
  1010. config ARC32
  1011. bool
  1012. depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP22 || SGI_IP32
  1013. default y
  1014. config HAVE_STD_PC_SERIAL_PORT
  1015. bool
  1016. config ARC_CONSOLE
  1017. bool "ARC console support"
  1018. depends on SGI_IP22 || SNI_RM200_PCI
  1019. config ARC_MEMORY
  1020. bool
  1021. depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP32
  1022. default y
  1023. config ARC_PROMLIB
  1024. bool
  1025. depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP22 || SGI_IP32
  1026. default y
  1027. config ARC64
  1028. bool
  1029. depends on SGI_IP27
  1030. default y
  1031. config BOOT_ELF64
  1032. bool
  1033. depends on SGI_IP27
  1034. default y
  1035. #config MAPPED_PCI_IO y
  1036. # bool
  1037. # depends on SGI_IP27
  1038. # default y
  1039. config QL_ISP_A64
  1040. bool
  1041. depends on SGI_IP27
  1042. default y
  1043. config TOSHIBA_BOARDS
  1044. bool
  1045. depends on TOSHIBA_JMR3927 || TOSHIBA_RBTX4927
  1046. default y
  1047. endmenu
  1048. menu "CPU selection"
  1049. choice
  1050. prompt "CPU type"
  1051. default CPU_R4X00
  1052. config CPU_MIPS32
  1053. bool "MIPS32"
  1054. select CPU_SUPPORTS_32BIT_KERNEL
  1055. config CPU_MIPS64
  1056. bool "MIPS64"
  1057. select CPU_SUPPORTS_32BIT_KERNEL
  1058. select CPU_SUPPORTS_64BIT_KERNEL
  1059. config CPU_R3000
  1060. bool "R3000"
  1061. select CPU_SUPPORTS_32BIT_KERNEL
  1062. help
  1063. Please make sure to pick the right CPU type. Linux/MIPS is not
  1064. designed to be generic, i.e. Kernels compiled for R3000 CPUs will
  1065. *not* work on R4000 machines and vice versa. However, since most
  1066. of the supported machines have an R4000 (or similar) CPU, R4x00
  1067. might be a safe bet. If the resulting kernel does not work,
  1068. try to recompile with R3000.
  1069. config CPU_TX39XX
  1070. bool "R39XX"
  1071. select CPU_SUPPORTS_32BIT_KERNEL
  1072. config CPU_VR41XX
  1073. bool "R41xx"
  1074. select CPU_SUPPORTS_32BIT_KERNEL
  1075. select CPU_SUPPORTS_64BIT_KERNEL
  1076. help
  1077. The options selects support for the NEC VR41xx series of processors.
  1078. Only choose this option if you have one of these processors as a
  1079. kernel built with this option will not run on any other type of
  1080. processor or vice versa.
  1081. config CPU_R4300
  1082. bool "R4300"
  1083. select CPU_SUPPORTS_32BIT_KERNEL
  1084. select CPU_SUPPORTS_64BIT_KERNEL
  1085. help
  1086. MIPS Technologies R4300-series processors.
  1087. config CPU_R4X00
  1088. bool "R4x00"
  1089. select CPU_SUPPORTS_32BIT_KERNEL
  1090. select CPU_SUPPORTS_64BIT_KERNEL
  1091. help
  1092. MIPS Technologies R4000-series processors other than 4300, including
  1093. the R4000, R4400, R4600, and 4700.
  1094. config CPU_TX49XX
  1095. bool "R49XX"
  1096. select CPU_SUPPORTS_32BIT_KERNEL
  1097. select CPU_SUPPORTS_64BIT_KERNEL
  1098. config CPU_R5000
  1099. bool "R5000"
  1100. select CPU_SUPPORTS_32BIT_KERNEL
  1101. select CPU_SUPPORTS_64BIT_KERNEL
  1102. help
  1103. MIPS Technologies R5000-series processors other than the Nevada.
  1104. config CPU_R5432
  1105. bool "R5432"
  1106. config CPU_R6000
  1107. bool "R6000"
  1108. depends on EXPERIMENTAL
  1109. select CPU_SUPPORTS_32BIT_KERNEL
  1110. help
  1111. MIPS Technologies R6000 and R6000A series processors. Note these
  1112. processors are extremly rare and the support for them is incomplete.
  1113. config CPU_NEVADA
  1114. bool "RM52xx"
  1115. select CPU_SUPPORTS_32BIT_KERNEL
  1116. select CPU_SUPPORTS_64BIT_KERNEL
  1117. help
  1118. QED / PMC-Sierra RM52xx-series ("Nevada") processors.
  1119. config CPU_R8000
  1120. bool "R8000"
  1121. depends on EXPERIMENTAL
  1122. select CPU_SUPPORTS_64BIT_KERNEL
  1123. help
  1124. MIPS Technologies R8000 processors. Note these processors are
  1125. uncommon and the support for them is incomplete.
  1126. config CPU_R10000
  1127. bool "R10000"
  1128. select CPU_SUPPORTS_32BIT_KERNEL
  1129. select CPU_SUPPORTS_64BIT_KERNEL
  1130. help
  1131. MIPS Technologies R10000-series processors.
  1132. config CPU_RM7000
  1133. bool "RM7000"
  1134. select CPU_SUPPORTS_32BIT_KERNEL
  1135. select CPU_SUPPORTS_64BIT_KERNEL
  1136. config CPU_RM9000
  1137. bool "RM9000"
  1138. select CPU_SUPPORTS_32BIT_KERNEL
  1139. select CPU_SUPPORTS_64BIT_KERNEL
  1140. config CPU_SB1
  1141. bool "SB1"
  1142. select CPU_SUPPORTS_32BIT_KERNEL
  1143. select CPU_SUPPORTS_64BIT_KERNEL
  1144. endchoice
  1145. choice
  1146. prompt "Kernel page size"
  1147. default PAGE_SIZE_4KB
  1148. config PAGE_SIZE_4KB
  1149. bool "4kB"
  1150. help
  1151. This option select the standard 4kB Linux page size. On some
  1152. R3000-family processors this is the only available page size. Using
  1153. 4kB page size will minimize memory consumption and is therefore
  1154. recommended for low memory systems.
  1155. config PAGE_SIZE_8KB
  1156. bool "8kB"
  1157. depends on EXPERIMENTAL && CPU_R8000
  1158. help
  1159. Using 8kB page size will result in higher performance kernel at
  1160. the price of higher memory consumption. This option is available
  1161. only on the R8000 processor. Not that at the time of this writing
  1162. this option is still high experimental; there are also issues with
  1163. compatibility of user applications.
  1164. config PAGE_SIZE_16KB
  1165. bool "16kB"
  1166. depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX
  1167. help
  1168. Using 16kB page size will result in higher performance kernel at
  1169. the price of higher memory consumption. This option is available on
  1170. all non-R3000 family processor. Not that at the time of this
  1171. writing this option is still high experimental; there are also
  1172. issues with compatibility of user applications.
  1173. config PAGE_SIZE_64KB
  1174. bool "64kB"
  1175. depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX
  1176. help
  1177. Using 64kB page size will result in higher performance kernel at
  1178. the price of higher memory consumption. This option is available on
  1179. all non-R3000 family processor. Not that at the time of this
  1180. writing this option is still high experimental; there are also
  1181. issues with compatibility of user applications.
  1182. endchoice
  1183. config BOARD_SCACHE
  1184. bool
  1185. config IP22_CPU_SCACHE
  1186. bool
  1187. select BOARD_SCACHE
  1188. config R5000_CPU_SCACHE
  1189. bool
  1190. select BOARD_SCACHE
  1191. config RM7000_CPU_SCACHE
  1192. bool
  1193. select BOARD_SCACHE
  1194. config SIBYTE_DMA_PAGEOPS
  1195. bool "Use DMA to clear/copy pages"
  1196. depends on CPU_SB1
  1197. help
  1198. Instead of using the CPU to zero and copy pages, use a Data Mover
  1199. channel. These DMA channels are otherwise unused by the standard
  1200. SiByte Linux port. Seems to give a small performance benefit.
  1201. config CPU_HAS_PREFETCH
  1202. bool "Enable prefetches" if CPU_SB1 && !CPU_SB1_PASS_2
  1203. default y if CPU_MIPS32 || CPU_MIPS64 || CPU_RM7000 || CPU_RM9000 || CPU_R10000
  1204. config VTAG_ICACHE
  1205. bool "Support for Virtual Tagged I-cache" if CPU_MIPS64 || CPU_MIPS32
  1206. default y if CPU_SB1
  1207. config SB1_PASS_1_WORKAROUNDS
  1208. bool
  1209. depends on CPU_SB1_PASS_1
  1210. default y
  1211. config SB1_PASS_2_WORKAROUNDS
  1212. bool
  1213. depends on CPU_SB1 && (CPU_SB1_PASS_2_2 || CPU_SB1_PASS_2)
  1214. default y
  1215. config SB1_PASS_2_1_WORKAROUNDS
  1216. bool
  1217. depends on CPU_SB1 && CPU_SB1_PASS_2
  1218. default y
  1219. config 64BIT_PHYS_ADDR
  1220. bool "Support for 64-bit physical address space"
  1221. depends on (CPU_R4X00 || CPU_R5000 || CPU_RM7000 || CPU_RM9000 || CPU_R10000 || CPU_SB1 || CPU_MIPS32 || CPU_MIPS64) && 32BIT
  1222. config CPU_ADVANCED
  1223. bool "Override CPU Options"
  1224. depends on 32BIT
  1225. help
  1226. Saying yes here allows you to select support for various features
  1227. your CPU may or may not have. Most people should say N here.
  1228. config CPU_HAS_LLSC
  1229. bool "ll/sc Instructions available" if CPU_ADVANCED
  1230. default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX
  1231. help
  1232. MIPS R4000 series and later provide the Load Linked (ll)
  1233. and Store Conditional (sc) instructions. More information is
  1234. available at <http://www.go-ecs.com/mips/miptek1.htm>.
  1235. Say Y here if your CPU has the ll and sc instructions. Say Y here
  1236. for better performance, N if you don't know. You must say Y here
  1237. for multiprocessor machines.
  1238. config CPU_HAS_LLDSCD
  1239. bool "lld/scd Instructions available" if CPU_ADVANCED
  1240. default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX && !CPU_MIPS32
  1241. help
  1242. Say Y here if your CPU has the lld and scd instructions, the 64-bit
  1243. equivalents of ll and sc. Say Y here for better performance, N if
  1244. you don't know. You must say Y here for multiprocessor machines.
  1245. config CPU_HAS_WB
  1246. bool "Writeback Buffer available" if CPU_ADVANCED
  1247. default y if !CPU_ADVANCED && CPU_R3000 && MACH_DECSTATION
  1248. help
  1249. Say N here for slightly better performance. You must say Y here for
  1250. machines which require flushing of write buffers in software. Saying
  1251. Y is the safe option; N may result in kernel malfunction and crashes.
  1252. config CPU_HAS_SYNC
  1253. bool
  1254. depends on !CPU_R3000
  1255. default y
  1256. #
  1257. # - Highmem only makes sense for the 32-bit kernel.
  1258. # - The current highmem code will only work properly on physically indexed
  1259. # caches such as R3000, SB1, R7000 or those that look like they're virtually
  1260. # indexed such as R4000/R4400 SC and MC versions or R10000. So for the
  1261. # moment we protect the user and offer the highmem option only on machines
  1262. # where it's known to be safe. This will not offer highmem on a few systems
  1263. # such as MIPS32 and MIPS64 CPUs which may have virtual and physically
  1264. # indexed CPUs but we're playing safe.
  1265. # - We should not offer highmem for system of which we already know that they
  1266. # don't have memory configurations that could gain from highmem support in
  1267. # the kernel because they don't support configurations with RAM at physical
  1268. # addresses > 0x20000000.
  1269. #
  1270. config HIGHMEM
  1271. bool "High Memory Support"
  1272. depends on 32BIT && (CPU_R3000 || CPU_SB1 || CPU_R7000 || CPU_RM9000 || CPU_R10000) && !(MACH_DECSTATION || MOMENCO_JAGUAR_ATX)
  1273. config ARCH_FLATMEM_ENABLE
  1274. def_bool y
  1275. depends on !NUMA
  1276. source "mm/Kconfig"
  1277. config SMP
  1278. bool "Multi-Processing support"
  1279. depends on CPU_RM9000 || (SIBYTE_SB1250 && !SIBYTE_STANDALONE) || SGI_IP27
  1280. ---help---
  1281. This enables support for systems with more than one CPU. If you have
  1282. a system with only one CPU, like most personal computers, say N. If
  1283. you have a system with more than one CPU, say Y.
  1284. If you say N here, the kernel will run on single and multiprocessor
  1285. machines, but will use only one CPU of a multiprocessor machine. If
  1286. you say Y here, the kernel will run on many, but not all,
  1287. singleprocessor machines. On a singleprocessor machine, the kernel
  1288. will run faster if you say N here.
  1289. People using multiprocessor machines who say Y here should also say
  1290. Y to "Enhanced Real Time Clock Support", below.
  1291. See also the <file:Documentation/smp.txt> and the SMP-HOWTO
  1292. available at <http://www.tldp.org/docs.html#howto>.
  1293. If you don't know what to do here, say N.
  1294. config NR_CPUS
  1295. int "Maximum number of CPUs (2-64)"
  1296. range 2 64
  1297. depends on SMP
  1298. default "64" if SGI_IP27
  1299. default "2"
  1300. help
  1301. This allows you to specify the maximum number of CPUs which this
  1302. kernel will support. The maximum supported value is 32 for 32-bit
  1303. kernel and 64 for 64-bit kernels; the minimum value which makes
  1304. sense is 2.
  1305. This is purely to save memory - each supported CPU adds
  1306. approximately eight kilobytes to the kernel image.
  1307. config PREEMPT
  1308. bool "Preemptible Kernel"
  1309. help
  1310. This option reduces the latency of the kernel when reacting to
  1311. real-time or interactive events by allowing a low priority process to
  1312. be preempted even if it is in kernel mode executing a system call.
  1313. This allows applications to run more reliably even when the system is
  1314. under load.
  1315. config RTC_DS1742
  1316. bool "DS1742 BRAM/RTC support"
  1317. depends on TOSHIBA_JMR3927 || TOSHIBA_RBTX4927
  1318. config MIPS_INSANE_LARGE
  1319. bool "Support for large 64-bit configurations"
  1320. depends on CPU_R10000 && 64BIT
  1321. help
  1322. MIPS R10000 does support a 44 bit / 16TB address space as opposed to
  1323. previous 64-bit processors which only supported 40 bit / 1TB. If you
  1324. need processes of more than 1TB virtual address space, say Y here.
  1325. This will result in additional memory usage, so it is not
  1326. recommended for normal users.
  1327. config RWSEM_GENERIC_SPINLOCK
  1328. bool
  1329. default y
  1330. endmenu
  1331. menu "Bus options (PCI, PCMCIA, EISA, ISA, TC)"
  1332. config HW_HAS_PCI
  1333. bool
  1334. config PCI
  1335. bool "Support for PCI controller"
  1336. depends on HW_HAS_PCI
  1337. help
  1338. Find out whether you have a PCI motherboard. PCI is the name of a
  1339. bus system, i.e. the way the CPU talks to the other stuff inside
  1340. your box. Other bus systems are ISA, EISA, or VESA. If you have PCI,
  1341. say Y, otherwise N.
  1342. The PCI-HOWTO, available from
  1343. <http://www.tldp.org/docs.html#howto>, contains valuable
  1344. information about which PCI hardware does work under Linux and which
  1345. doesn't.
  1346. config PCI_DOMAINS
  1347. bool
  1348. depends on PCI
  1349. source "drivers/pci/Kconfig"
  1350. #
  1351. # ISA support is now enabled via select. Too many systems still have the one
  1352. # or other ISA chip on the board that users don't know about so don't expect
  1353. # users to choose the right thing ...
  1354. #
  1355. config ISA
  1356. bool
  1357. config EISA
  1358. bool "EISA support"
  1359. depends on SGI_IP22 || SNI_RM200_PCI
  1360. select ISA
  1361. ---help---
  1362. The Extended Industry Standard Architecture (EISA) bus was
  1363. developed as an open alternative to the IBM MicroChannel bus.
  1364. The EISA bus provided some of the features of the IBM MicroChannel
  1365. bus while maintaining backward compatibility with cards made for
  1366. the older ISA bus. The EISA bus saw limited use between 1988 and
  1367. 1995 when it was made obsolete by the PCI bus.
  1368. Say Y here if you are building a kernel for an EISA-based machine.
  1369. Otherwise, say N.
  1370. source "drivers/eisa/Kconfig"
  1371. config TC
  1372. bool "TURBOchannel support"
  1373. depends on MACH_DECSTATION
  1374. help
  1375. TurboChannel is a DEC (now Compaq (now HP)) bus for Alpha and MIPS
  1376. processors. Documentation on writing device drivers for TurboChannel
  1377. is available at:
  1378. <http://www.cs.arizona.edu/computer.help/policy/DIGITAL_unix/AA-PS3HD-TET1_html/TITLE.html>.
  1379. #config ACCESSBUS
  1380. # bool "Access.Bus support"
  1381. # depends on TC
  1382. config MMU
  1383. bool
  1384. default y
  1385. config MCA
  1386. bool
  1387. config SBUS
  1388. bool
  1389. source "drivers/pcmcia/Kconfig"
  1390. source "drivers/pci/hotplug/Kconfig"
  1391. endmenu
  1392. menu "Executable file formats"
  1393. source "fs/Kconfig.binfmt"
  1394. config TRAD_SIGNALS
  1395. bool
  1396. default y if 32BIT
  1397. config BUILD_ELF64
  1398. bool "Use 64-bit ELF format for building"
  1399. depends on 64BIT
  1400. help
  1401. A 64-bit kernel is usually built using the 64-bit ELF binary object
  1402. format as it's one that allows arbitrary 64-bit constructs. For
  1403. kernels that are loaded within the KSEG compatibility segments the
  1404. 32-bit ELF format can optionally be used resulting in a somewhat
  1405. smaller binary, but this option is not explicitly supported by the
  1406. toolchain and since binutils 2.14 it does not even work at all.
  1407. Say Y to use the 64-bit format or N to use the 32-bit one.
  1408. If unsure say Y.
  1409. config BINFMT_IRIX
  1410. bool "Include IRIX binary compatibility"
  1411. depends on !CPU_LITTLE_ENDIAN && 32BIT && BROKEN
  1412. config MIPS32_COMPAT
  1413. bool "Kernel support for Linux/MIPS 32-bit binary compatibility"
  1414. depends on 64BIT
  1415. help
  1416. Select this option if you want Linux/MIPS 32-bit binary
  1417. compatibility. Since all software available for Linux/MIPS is
  1418. currently 32-bit you should say Y here.
  1419. config COMPAT
  1420. bool
  1421. depends on MIPS32_COMPAT
  1422. default y
  1423. config MIPS32_O32
  1424. bool "Kernel support for o32 binaries"
  1425. depends on MIPS32_COMPAT
  1426. help
  1427. Select this option if you want to run o32 binaries. These are pure
  1428. 32-bit binaries as used by the 32-bit Linux/MIPS port. Most of
  1429. existing binaries are in this format.
  1430. If unsure, say Y.
  1431. config MIPS32_N32
  1432. bool "Kernel support for n32 binaries"
  1433. depends on MIPS32_COMPAT
  1434. help
  1435. Select this option if you want to run n32 binaries. These are
  1436. 64-bit binaries using 32-bit quantities for addressing and certain
  1437. data that would normally be 64-bit. They are used in special
  1438. cases.
  1439. If unsure, say N.
  1440. config BINFMT_ELF32
  1441. bool
  1442. default y if MIPS32_O32 || MIPS32_N32
  1443. config PM
  1444. bool "Power Management support (EXPERIMENTAL)"
  1445. depends on EXPERIMENTAL && MACH_AU1X00
  1446. endmenu
  1447. source "net/Kconfig"
  1448. source "drivers/Kconfig"
  1449. source "fs/Kconfig"
  1450. source "arch/mips/Kconfig.debug"
  1451. source "security/Kconfig"
  1452. source "crypto/Kconfig"
  1453. source "lib/Kconfig"
  1454. #
  1455. # Use the generic interrupt handling code in kernel/irq/:
  1456. #
  1457. config GENERIC_HARDIRQS
  1458. bool
  1459. default y
  1460. config GENERIC_IRQ_PROBE
  1461. bool
  1462. default y
  1463. config ISA_DMA_API
  1464. bool
  1465. default y