Kconfig 44 KB

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