Kconfig 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944
  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. menu "Machine selection"
  8. choice
  9. prompt "System type"
  10. default SGI_IP22
  11. config MIPS_MTX1
  12. bool "4G Systems MTX-1 board"
  13. select DMA_NONCOHERENT
  14. select HW_HAS_PCI
  15. select SOC_AU1500
  16. select SYS_HAS_CPU_MIPS32_R1
  17. select SYS_SUPPORTS_LITTLE_ENDIAN
  18. config MIPS_BOSPORUS
  19. bool "AMD Alchemy Bosporus board"
  20. select SOC_AU1500
  21. select DMA_NONCOHERENT
  22. select SYS_HAS_CPU_MIPS32_R1
  23. select SYS_SUPPORTS_LITTLE_ENDIAN
  24. config MIPS_PB1000
  25. bool "AMD Alchemy PB1000 board"
  26. select SOC_AU1000
  27. select DMA_NONCOHERENT
  28. select HW_HAS_PCI
  29. select SWAP_IO_SPACE
  30. select SYS_HAS_CPU_MIPS32_R1
  31. select SYS_SUPPORTS_LITTLE_ENDIAN
  32. config MIPS_PB1100
  33. bool "AMD Alchemy PB1100 board"
  34. select SOC_AU1100
  35. select DMA_NONCOHERENT
  36. select HW_HAS_PCI
  37. select SWAP_IO_SPACE
  38. select SYS_HAS_CPU_MIPS32_R1
  39. select SYS_SUPPORTS_LITTLE_ENDIAN
  40. config MIPS_PB1500
  41. bool "AMD Alchemy PB1500 board"
  42. select SOC_AU1500
  43. select DMA_NONCOHERENT
  44. select HW_HAS_PCI
  45. select SYS_HAS_CPU_MIPS32_R1
  46. select SYS_SUPPORTS_LITTLE_ENDIAN
  47. config MIPS_PB1550
  48. bool "AMD Alchemy PB1550 board"
  49. select SOC_AU1550
  50. select DMA_NONCOHERENT
  51. select HW_HAS_PCI
  52. select MIPS_DISABLE_OBSOLETE_IDE
  53. select SYS_HAS_CPU_MIPS32_R1
  54. select SYS_SUPPORTS_LITTLE_ENDIAN
  55. config MIPS_PB1200
  56. bool "AMD Alchemy PB1200 board"
  57. select SOC_AU1200
  58. select DMA_NONCOHERENT
  59. select MIPS_DISABLE_OBSOLETE_IDE
  60. select SYS_HAS_CPU_MIPS32_R1
  61. select SYS_SUPPORTS_LITTLE_ENDIAN
  62. config MIPS_DB1000
  63. bool "AMD Alchemy DB1000 board"
  64. select SOC_AU1000
  65. select DMA_NONCOHERENT
  66. select HW_HAS_PCI
  67. select SYS_HAS_CPU_MIPS32_R1
  68. select SYS_SUPPORTS_LITTLE_ENDIAN
  69. config MIPS_DB1100
  70. bool "AMD Alchemy DB1100 board"
  71. select SOC_AU1100
  72. select DMA_NONCOHERENT
  73. select SYS_HAS_CPU_MIPS32_R1
  74. select SYS_SUPPORTS_LITTLE_ENDIAN
  75. config MIPS_DB1500
  76. bool "AMD Alchemy DB1500 board"
  77. select SOC_AU1500
  78. select DMA_NONCOHERENT
  79. select HW_HAS_PCI
  80. select MIPS_DISABLE_OBSOLETE_IDE
  81. select SYS_HAS_CPU_MIPS32_R1
  82. select SYS_SUPPORTS_BIG_ENDIAN
  83. select SYS_SUPPORTS_LITTLE_ENDIAN
  84. config MIPS_DB1550
  85. bool "AMD Alchemy DB1550 board"
  86. select SOC_AU1550
  87. select HW_HAS_PCI
  88. select DMA_NONCOHERENT
  89. select MIPS_DISABLE_OBSOLETE_IDE
  90. select SYS_HAS_CPU_MIPS32_R1
  91. select SYS_SUPPORTS_LITTLE_ENDIAN
  92. config MIPS_DB1200
  93. bool "AMD Alchemy DB1200 board"
  94. select SOC_AU1200
  95. select DMA_COHERENT
  96. select MIPS_DISABLE_OBSOLETE_IDE
  97. select SYS_HAS_CPU_MIPS32_R1
  98. select SYS_SUPPORTS_LITTLE_ENDIAN
  99. config MIPS_MIRAGE
  100. bool "AMD Alchemy Mirage board"
  101. select DMA_NONCOHERENT
  102. select SOC_AU1500
  103. select SYS_HAS_CPU_MIPS32_R1
  104. select SYS_SUPPORTS_LITTLE_ENDIAN
  105. config BASLER_EXCITE
  106. bool "Basler eXcite smart camera support"
  107. select DMA_COHERENT
  108. select HW_HAS_PCI
  109. select IRQ_CPU
  110. select IRQ_CPU_RM7K
  111. select IRQ_CPU_RM9K
  112. select SERIAL_RM9000
  113. select SYS_HAS_CPU_RM9000
  114. select SYS_SUPPORTS_32BIT_KERNEL
  115. select SYS_SUPPORTS_64BIT_KERNEL
  116. select SYS_SUPPORTS_BIG_ENDIAN
  117. help
  118. The eXcite is a smart camera platform manufactured by
  119. Basler Vision Technologies AG
  120. config BASLER_EXCITE_PROTOTYPE
  121. bool "Support for pre-release units"
  122. depends on BASLER_EXCITE
  123. default n
  124. help
  125. Pre-series (prototype) units are different from later ones in
  126. some ways. Select this option if you have one of these. Please
  127. note that a kernel built with this option selected will not be
  128. able to run on normal units.
  129. config MIPS_COBALT
  130. bool "Cobalt Server"
  131. select DMA_NONCOHERENT
  132. select HW_HAS_PCI
  133. select I8259
  134. select IRQ_CPU
  135. select MIPS_GT64111
  136. select SYS_HAS_CPU_NEVADA
  137. select SYS_SUPPORTS_32BIT_KERNEL
  138. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  139. select SYS_SUPPORTS_LITTLE_ENDIAN
  140. config MACH_DECSTATION
  141. bool "DECstations"
  142. select BOOT_ELF32
  143. select DMA_NONCOHERENT
  144. select EARLY_PRINTK
  145. select IRQ_CPU
  146. select SYS_HAS_CPU_R3000
  147. select SYS_HAS_CPU_R4X00
  148. select SYS_SUPPORTS_32BIT_KERNEL
  149. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  150. select SYS_SUPPORTS_LITTLE_ENDIAN
  151. help
  152. This enables support for DEC's MIPS based workstations. For details
  153. see the Linux/MIPS FAQ on <http://www.linux-mips.org/> and the
  154. DECstation porting pages on <http://decstation.unix-ag.org/>.
  155. If you have one of the following DECstation Models you definitely
  156. want to choose R4xx0 for the CPU Type:
  157. DECstation 5000/50
  158. DECstation 5000/150
  159. DECstation 5000/260
  160. DECsystem 5900/260
  161. otherwise choose R3000.
  162. config MIPS_EV64120
  163. bool "Galileo EV64120 Evaluation board (EXPERIMENTAL)"
  164. depends on EXPERIMENTAL
  165. select DMA_NONCOHERENT
  166. select HW_HAS_PCI
  167. select MIPS_GT64120
  168. select SYS_HAS_CPU_R5000
  169. select SYS_SUPPORTS_32BIT_KERNEL
  170. select SYS_SUPPORTS_64BIT_KERNEL
  171. select SYS_SUPPORTS_BIG_ENDIAN
  172. help
  173. This is an evaluation board based on the Galileo GT-64120
  174. single-chip system controller that contains a MIPS R5000 compatible
  175. core running at 75/100MHz. Their website is located at
  176. <http://www.marvell.com/>. Say Y here if you wish to build a
  177. kernel for this platform.
  178. config MIPS_EV96100
  179. bool "Galileo EV96100 Evaluation board (EXPERIMENTAL)"
  180. depends on EXPERIMENTAL
  181. select DMA_NONCOHERENT
  182. select HW_HAS_PCI
  183. select IRQ_CPU
  184. select MIPS_GT96100
  185. select RM7000_CPU_SCACHE
  186. select SWAP_IO_SPACE
  187. select SYS_HAS_CPU_R5000
  188. select SYS_HAS_CPU_RM7000
  189. select SYS_SUPPORTS_32BIT_KERNEL
  190. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  191. select SYS_SUPPORTS_BIG_ENDIAN
  192. help
  193. This is an evaluation board based on the Galileo GT-96100 LAN/WAN
  194. communications controllers containing a MIPS R5000 compatible core
  195. running at 83MHz. Their website is <http://www.marvell.com/>. Say Y
  196. here if you wish to build a kernel for this platform.
  197. config MIPS_IVR
  198. bool "Globespan IVR board"
  199. select DMA_NONCOHERENT
  200. select HW_HAS_PCI
  201. select ITE_BOARD_GEN
  202. select SYS_HAS_CPU_NEVADA
  203. select SYS_SUPPORTS_32BIT_KERNEL
  204. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  205. select SYS_SUPPORTS_LITTLE_ENDIAN
  206. help
  207. This is an evaluation board built by Globespan to showcase thir
  208. iVR (Internet Video Recorder) design. It utilizes a QED RM5231
  209. R5000 MIPS core. More information can be found out their website
  210. located at <http://www.globespan.net/>. Say Y here if you wish to
  211. build a kernel for this platform.
  212. config MIPS_ITE8172
  213. bool "ITE 8172G board"
  214. select DMA_NONCOHERENT
  215. select HW_HAS_PCI
  216. select ITE_BOARD_GEN
  217. select SYS_HAS_CPU_R5432
  218. select SYS_HAS_CPU_NEVADA
  219. select SYS_SUPPORTS_32BIT_KERNEL
  220. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  221. select SYS_SUPPORTS_LITTLE_ENDIAN
  222. help
  223. Ths is an evaluation board made by ITE <http://www.ite.com.tw/>
  224. with ATX form factor that utilizes a MIPS R5000 to work with its
  225. ITE8172G companion internet appliance chip. The MIPS core can be
  226. either a NEC Vr5432 or QED RM5231. Say Y here if you wish to build
  227. a kernel for this platform.
  228. config MACH_JAZZ
  229. bool "Jazz family of machines"
  230. select ARC
  231. select ARC32
  232. select ARCH_MAY_HAVE_PC_FDC
  233. select GENERIC_ISA_DMA
  234. select I8253
  235. select I8259
  236. select ISA
  237. select SYS_HAS_CPU_R4X00
  238. select SYS_SUPPORTS_32BIT_KERNEL
  239. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  240. help
  241. This a family of machines based on the MIPS R4030 chipset which was
  242. used by several vendors to build RISC/os and Windows NT workstations.
  243. Members include the Acer PICA, MIPS Magnum 4000, MIPS Millenium and
  244. Olivetti M700-10 workstations.
  245. config LASAT
  246. bool "LASAT Networks platforms"
  247. select DMA_NONCOHERENT
  248. select HW_HAS_PCI
  249. select MIPS_GT64120
  250. select MIPS_NILE4
  251. select R5000_CPU_SCACHE
  252. select SYS_HAS_CPU_R5000
  253. select SYS_SUPPORTS_32BIT_KERNEL
  254. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  255. select SYS_SUPPORTS_LITTLE_ENDIAN
  256. config MIPS_ATLAS
  257. bool "MIPS Atlas board"
  258. select BOOT_ELF32
  259. select DMA_NONCOHERENT
  260. select IRQ_CPU
  261. select HW_HAS_PCI
  262. select MIPS_BOARDS_GEN
  263. select MIPS_BONITO64
  264. select MIPS_GT64120
  265. select MIPS_MSC
  266. select RM7000_CPU_SCACHE
  267. select SWAP_IO_SPACE
  268. select SYS_HAS_CPU_MIPS32_R1
  269. select SYS_HAS_CPU_MIPS32_R2
  270. select SYS_HAS_CPU_MIPS64_R1
  271. select SYS_HAS_CPU_NEVADA
  272. select SYS_HAS_CPU_RM7000
  273. select SYS_SUPPORTS_32BIT_KERNEL
  274. select SYS_SUPPORTS_64BIT_KERNEL
  275. select SYS_SUPPORTS_BIG_ENDIAN
  276. select SYS_SUPPORTS_LITTLE_ENDIAN
  277. help
  278. This enables support for the MIPS Technologies Atlas evaluation
  279. board.
  280. config MIPS_MALTA
  281. bool "MIPS Malta board"
  282. select ARCH_MAY_HAVE_PC_FDC
  283. select BOOT_ELF32
  284. select HAVE_STD_PC_SERIAL_PORT
  285. select DMA_NONCOHERENT
  286. select IRQ_CPU
  287. select GENERIC_ISA_DMA
  288. select HW_HAS_PCI
  289. select I8259
  290. select MIPS_BOARDS_GEN
  291. select MIPS_BONITO64
  292. select MIPS_GT64120
  293. select MIPS_MSC
  294. select SWAP_IO_SPACE
  295. select SYS_HAS_CPU_MIPS32_R1
  296. select SYS_HAS_CPU_MIPS32_R2
  297. select SYS_HAS_CPU_MIPS64_R1
  298. select SYS_HAS_CPU_NEVADA
  299. select SYS_HAS_CPU_RM7000
  300. select SYS_SUPPORTS_32BIT_KERNEL
  301. select SYS_SUPPORTS_64BIT_KERNEL
  302. select SYS_SUPPORTS_BIG_ENDIAN
  303. select SYS_SUPPORTS_LITTLE_ENDIAN
  304. help
  305. This enables support for the MIPS Technologies Malta evaluation
  306. board.
  307. config MIPS_SEAD
  308. bool "MIPS SEAD board (EXPERIMENTAL)"
  309. depends on EXPERIMENTAL
  310. select IRQ_CPU
  311. select DMA_NONCOHERENT
  312. select MIPS_BOARDS_GEN
  313. select SYS_HAS_CPU_MIPS32_R1
  314. select SYS_HAS_CPU_MIPS32_R2
  315. select SYS_HAS_CPU_MIPS64_R1
  316. select SYS_SUPPORTS_32BIT_KERNEL
  317. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  318. select SYS_SUPPORTS_BIG_ENDIAN
  319. select SYS_SUPPORTS_LITTLE_ENDIAN
  320. help
  321. This enables support for the MIPS Technologies SEAD evaluation
  322. board.
  323. config WR_PPMC
  324. bool "Support for Wind River PPMC board"
  325. select IRQ_CPU
  326. select BOOT_ELF32
  327. select DMA_NONCOHERENT
  328. select HW_HAS_PCI
  329. select MIPS_GT64120
  330. select SWAP_IO_SPACE
  331. select SYS_HAS_CPU_MIPS32_R1
  332. select SYS_HAS_CPU_MIPS32_R2
  333. select SYS_HAS_CPU_MIPS64_R1
  334. select SYS_HAS_CPU_NEVADA
  335. select SYS_HAS_CPU_RM7000
  336. select SYS_SUPPORTS_32BIT_KERNEL
  337. select SYS_SUPPORTS_64BIT_KERNEL
  338. select SYS_SUPPORTS_BIG_ENDIAN
  339. select SYS_SUPPORTS_LITTLE_ENDIAN
  340. help
  341. This enables support for the Wind River MIPS32 4KC PPMC evaluation
  342. board, which is based on GT64120 bridge chip.
  343. config MIPS_SIM
  344. bool 'MIPS simulator (MIPSsim)'
  345. select DMA_NONCOHERENT
  346. select IRQ_CPU
  347. select SYS_HAS_CPU_MIPS32_R1
  348. select SYS_HAS_CPU_MIPS32_R2
  349. select SYS_SUPPORTS_32BIT_KERNEL
  350. select SYS_SUPPORTS_BIG_ENDIAN
  351. select SYS_SUPPORTS_LITTLE_ENDIAN
  352. help
  353. This option enables support for MIPS Technologies MIPSsim software
  354. emulator.
  355. config MOMENCO_JAGUAR_ATX
  356. bool "Momentum Jaguar board"
  357. select BOOT_ELF32
  358. select DMA_NONCOHERENT
  359. select HW_HAS_PCI
  360. select IRQ_CPU
  361. select IRQ_CPU_RM7K
  362. select IRQ_MV64340
  363. select LIMITED_DMA
  364. select PCI_MARVELL
  365. select RM7000_CPU_SCACHE
  366. select SWAP_IO_SPACE
  367. select SYS_HAS_CPU_RM9000
  368. select SYS_SUPPORTS_32BIT_KERNEL
  369. select SYS_SUPPORTS_64BIT_KERNEL
  370. select SYS_SUPPORTS_BIG_ENDIAN
  371. help
  372. The Jaguar ATX is a MIPS-based Single Board Computer (SBC) made by
  373. Momentum Computer <http://www.momenco.com/>.
  374. config MOMENCO_OCELOT
  375. bool "Momentum Ocelot board"
  376. select DMA_NONCOHERENT
  377. select HW_HAS_PCI
  378. select IRQ_CPU
  379. select IRQ_CPU_RM7K
  380. select MIPS_GT64120
  381. select RM7000_CPU_SCACHE
  382. select SWAP_IO_SPACE
  383. select SYS_HAS_CPU_RM7000
  384. select SYS_SUPPORTS_32BIT_KERNEL
  385. select SYS_SUPPORTS_64BIT_KERNEL
  386. select SYS_SUPPORTS_BIG_ENDIAN
  387. help
  388. The Ocelot is a MIPS-based Single Board Computer (SBC) made by
  389. Momentum Computer <http://www.momenco.com/>.
  390. config MOMENCO_OCELOT_3
  391. bool "Momentum Ocelot-3 board"
  392. select BOOT_ELF32
  393. select DMA_NONCOHERENT
  394. select HW_HAS_PCI
  395. select IRQ_CPU
  396. select IRQ_CPU_RM7K
  397. select IRQ_MV64340
  398. select PCI_MARVELL
  399. select RM7000_CPU_SCACHE
  400. select SWAP_IO_SPACE
  401. select SYS_HAS_CPU_RM9000
  402. select SYS_SUPPORTS_32BIT_KERNEL
  403. select SYS_SUPPORTS_64BIT_KERNEL
  404. select SYS_SUPPORTS_BIG_ENDIAN
  405. help
  406. The Ocelot-3 is based off Discovery III System Controller and
  407. PMC-Sierra Rm79000 core.
  408. config MOMENCO_OCELOT_C
  409. bool "Momentum Ocelot-C board"
  410. select DMA_NONCOHERENT
  411. select HW_HAS_PCI
  412. select IRQ_CPU
  413. select IRQ_MV64340
  414. select PCI_MARVELL
  415. select RM7000_CPU_SCACHE
  416. select SWAP_IO_SPACE
  417. select SYS_HAS_CPU_RM7000
  418. select SYS_SUPPORTS_32BIT_KERNEL
  419. select SYS_SUPPORTS_64BIT_KERNEL
  420. select SYS_SUPPORTS_BIG_ENDIAN
  421. help
  422. The Ocelot is a MIPS-based Single Board Computer (SBC) made by
  423. Momentum Computer <http://www.momenco.com/>.
  424. config MOMENCO_OCELOT_G
  425. bool "Momentum Ocelot-G board"
  426. select DMA_NONCOHERENT
  427. select HW_HAS_PCI
  428. select IRQ_CPU
  429. select IRQ_CPU_RM7K
  430. select PCI_MARVELL
  431. select RM7000_CPU_SCACHE
  432. select SWAP_IO_SPACE
  433. select SYS_HAS_CPU_RM7000
  434. select SYS_SUPPORTS_32BIT_KERNEL
  435. select SYS_SUPPORTS_64BIT_KERNEL
  436. select SYS_SUPPORTS_BIG_ENDIAN
  437. help
  438. The Ocelot is a MIPS-based Single Board Computer (SBC) made by
  439. Momentum Computer <http://www.momenco.com/>.
  440. config MIPS_XXS1500
  441. bool "MyCable XXS1500 board"
  442. select DMA_NONCOHERENT
  443. select SOC_AU1500
  444. select SYS_SUPPORTS_LITTLE_ENDIAN
  445. config PNX8550_V2PCI
  446. bool "Philips PNX8550 based Viper2-PCI board"
  447. depends on BROKEN
  448. select PNX8550
  449. select SYS_SUPPORTS_LITTLE_ENDIAN
  450. config PNX8550_JBS
  451. bool "Philips PNX8550 based JBS board"
  452. depends on BROKEN
  453. select PNX8550
  454. select SYS_SUPPORTS_LITTLE_ENDIAN
  455. config DDB5477
  456. bool "NEC DDB Vrc-5477"
  457. select DDB5XXX_COMMON
  458. select DMA_NONCOHERENT
  459. select HW_HAS_PCI
  460. select I8259
  461. select IRQ_CPU
  462. select SYS_HAS_CPU_R5432
  463. select SYS_SUPPORTS_32BIT_KERNEL
  464. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  465. select SYS_SUPPORTS_LITTLE_ENDIAN
  466. help
  467. This enables support for the R5432-based NEC DDB Vrc-5477,
  468. or Rockhopper/SolutionGear boards with R5432/R5500 CPUs.
  469. Features : kernel debugging, serial terminal, NFS root fs, on-board
  470. ether port USB, AC97, PCI, etc.
  471. config MACH_VR41XX
  472. bool "NEC VR41XX-based machines"
  473. select SYS_HAS_CPU_VR41XX
  474. select SYS_SUPPORTS_32BIT_KERNEL
  475. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  476. config PMC_YOSEMITE
  477. bool "PMC-Sierra Yosemite eval board"
  478. select DMA_COHERENT
  479. select HW_HAS_PCI
  480. select IRQ_CPU
  481. select IRQ_CPU_RM7K
  482. select IRQ_CPU_RM9K
  483. select SWAP_IO_SPACE
  484. select SYS_HAS_CPU_RM9000
  485. select SYS_SUPPORTS_32BIT_KERNEL
  486. select SYS_SUPPORTS_64BIT_KERNEL
  487. select SYS_SUPPORTS_BIG_ENDIAN
  488. select SYS_SUPPORTS_HIGHMEM
  489. help
  490. Yosemite is an evaluation board for the RM9000x2 processor
  491. manufactured by PMC-Sierra.
  492. config QEMU
  493. bool "Qemu"
  494. select DMA_COHERENT
  495. select GENERIC_ISA_DMA
  496. select HAVE_STD_PC_SERIAL_PORT
  497. select I8253
  498. select I8259
  499. select ISA
  500. select SWAP_IO_SPACE
  501. select SYS_HAS_CPU_MIPS32_R1
  502. select SYS_SUPPORTS_32BIT_KERNEL
  503. select SYS_SUPPORTS_BIG_ENDIAN
  504. help
  505. Qemu is a software emulator which among other architectures also
  506. can simulate a MIPS32 4Kc system. This patch adds support for the
  507. system architecture that currently is being simulated by Qemu. It
  508. will eventually be removed again when Qemu has the capability to
  509. simulate actual MIPS hardware platforms. More information on Qemu
  510. can be found at http://www.linux-mips.org/wiki/Qemu.
  511. config MARKEINS
  512. bool "Support for NEC EMMA2RH Mark-eins"
  513. select DMA_NONCOHERENT
  514. select HW_HAS_PCI
  515. select IRQ_CPU
  516. select SWAP_IO_SPACE
  517. select SYS_SUPPORTS_32BIT_KERNEL
  518. select SYS_SUPPORTS_BIG_ENDIAN
  519. select SYS_SUPPORTS_LITTLE_ENDIAN
  520. select SYS_HAS_CPU_R5000
  521. help
  522. This enables support for the R5432-based NEC Mark-eins
  523. boards with R5500 CPU.
  524. config SGI_IP22
  525. bool "SGI IP22 (Indy/Indigo2)"
  526. select ARC
  527. select ARC32
  528. select BOOT_ELF32
  529. select DMA_NONCOHERENT
  530. select HW_HAS_EISA
  531. select IP22_CPU_SCACHE
  532. select IRQ_CPU
  533. select NO_ISA if ISA
  534. select SWAP_IO_SPACE
  535. select SYS_HAS_CPU_R4X00
  536. select SYS_HAS_CPU_R5000
  537. select SYS_SUPPORTS_32BIT_KERNEL
  538. select SYS_SUPPORTS_64BIT_KERNEL
  539. select SYS_SUPPORTS_BIG_ENDIAN
  540. help
  541. This are the SGI Indy, Challenge S and Indigo2, as well as certain
  542. OEM variants like the Tandem CMN B006S. To compile a Linux kernel
  543. that runs on these, say Y here.
  544. config SGI_IP27
  545. bool "SGI IP27 (Origin200/2000)"
  546. select ARC
  547. select ARC64
  548. select BOOT_ELF64
  549. select DMA_IP27
  550. select HW_HAS_PCI
  551. select PCI_DOMAINS
  552. select SYS_HAS_CPU_R10000
  553. select SYS_SUPPORTS_64BIT_KERNEL
  554. select SYS_SUPPORTS_BIG_ENDIAN
  555. select SYS_SUPPORTS_NUMA
  556. help
  557. This are the SGI Origin 200, Origin 2000 and Onyx 2 Graphics
  558. workstations. To compile a Linux kernel that runs on these, say Y
  559. here.
  560. config SGI_IP32
  561. bool "SGI IP32 (O2) (EXPERIMENTAL)"
  562. depends on EXPERIMENTAL
  563. select ARC
  564. select ARC32
  565. select BOOT_ELF32
  566. select OWN_DMA
  567. select DMA_IP32
  568. select DMA_NONCOHERENT
  569. select HW_HAS_PCI
  570. select R5000_CPU_SCACHE
  571. select RM7000_CPU_SCACHE
  572. select SYS_HAS_CPU_R5000
  573. select SYS_HAS_CPU_R10000 if BROKEN
  574. select SYS_HAS_CPU_RM7000
  575. select SYS_HAS_CPU_NEVADA
  576. select SYS_SUPPORTS_64BIT_KERNEL
  577. select SYS_SUPPORTS_BIG_ENDIAN
  578. help
  579. If you want this kernel to run on SGI O2 workstation, say Y here.
  580. config SIBYTE_BIGSUR
  581. bool "Sibyte BCM91480B-BigSur"
  582. select BOOT_ELF32
  583. select DMA_COHERENT
  584. select PCI_DOMAINS
  585. select SIBYTE_BCM1x80
  586. select SWAP_IO_SPACE
  587. select SYS_HAS_CPU_SB1
  588. select SYS_SUPPORTS_BIG_ENDIAN
  589. select SYS_SUPPORTS_LITTLE_ENDIAN
  590. config SIBYTE_SWARM
  591. bool "Sibyte BCM91250A-SWARM"
  592. select BOOT_ELF32
  593. select DMA_COHERENT
  594. select SIBYTE_SB1250
  595. select SWAP_IO_SPACE
  596. select SYS_HAS_CPU_SB1
  597. select SYS_SUPPORTS_BIG_ENDIAN
  598. select SYS_SUPPORTS_HIGHMEM
  599. select SYS_SUPPORTS_LITTLE_ENDIAN
  600. config SIBYTE_SENTOSA
  601. bool "Sibyte BCM91250E-Sentosa"
  602. depends on EXPERIMENTAL
  603. select BOOT_ELF32
  604. select DMA_COHERENT
  605. select SIBYTE_SB1250
  606. select SWAP_IO_SPACE
  607. select SYS_HAS_CPU_SB1
  608. select SYS_SUPPORTS_BIG_ENDIAN
  609. select SYS_SUPPORTS_LITTLE_ENDIAN
  610. config SIBYTE_RHONE
  611. bool "Sibyte BCM91125E-Rhone"
  612. depends on EXPERIMENTAL
  613. select BOOT_ELF32
  614. select DMA_COHERENT
  615. select SIBYTE_BCM1125H
  616. select SWAP_IO_SPACE
  617. select SYS_HAS_CPU_SB1
  618. select SYS_SUPPORTS_BIG_ENDIAN
  619. select SYS_SUPPORTS_LITTLE_ENDIAN
  620. config SIBYTE_CARMEL
  621. bool "Sibyte BCM91120x-Carmel"
  622. depends on EXPERIMENTAL
  623. select BOOT_ELF32
  624. select DMA_COHERENT
  625. select SIBYTE_BCM1120
  626. select SWAP_IO_SPACE
  627. select SYS_HAS_CPU_SB1
  628. select SYS_SUPPORTS_BIG_ENDIAN
  629. select SYS_SUPPORTS_LITTLE_ENDIAN
  630. config SIBYTE_PTSWARM
  631. bool "Sibyte BCM91250PT-PTSWARM"
  632. depends on EXPERIMENTAL
  633. select BOOT_ELF32
  634. select DMA_COHERENT
  635. select SIBYTE_SB1250
  636. select SWAP_IO_SPACE
  637. select SYS_HAS_CPU_SB1
  638. select SYS_SUPPORTS_BIG_ENDIAN
  639. select SYS_SUPPORTS_HIGHMEM
  640. select SYS_SUPPORTS_LITTLE_ENDIAN
  641. config SIBYTE_LITTLESUR
  642. bool "Sibyte BCM91250C2-LittleSur"
  643. depends on EXPERIMENTAL
  644. select BOOT_ELF32
  645. select DMA_COHERENT
  646. select SIBYTE_SB1250
  647. select SWAP_IO_SPACE
  648. select SYS_HAS_CPU_SB1
  649. select SYS_SUPPORTS_BIG_ENDIAN
  650. select SYS_SUPPORTS_HIGHMEM
  651. select SYS_SUPPORTS_LITTLE_ENDIAN
  652. config SIBYTE_CRHINE
  653. bool "Sibyte BCM91120C-CRhine"
  654. depends on EXPERIMENTAL
  655. select BOOT_ELF32
  656. select DMA_COHERENT
  657. select SIBYTE_BCM1120
  658. select SWAP_IO_SPACE
  659. select SYS_HAS_CPU_SB1
  660. select SYS_SUPPORTS_BIG_ENDIAN
  661. select SYS_SUPPORTS_LITTLE_ENDIAN
  662. config SIBYTE_CRHONE
  663. bool "Sibyte BCM91125C-CRhone"
  664. depends on EXPERIMENTAL
  665. select BOOT_ELF32
  666. select DMA_COHERENT
  667. select SIBYTE_BCM1125
  668. select SWAP_IO_SPACE
  669. select SYS_HAS_CPU_SB1
  670. select SYS_SUPPORTS_BIG_ENDIAN
  671. select SYS_SUPPORTS_HIGHMEM
  672. select SYS_SUPPORTS_LITTLE_ENDIAN
  673. config SNI_RM200_PCI
  674. bool "SNI RM200 PCI"
  675. select ARC if CPU_LITTLE_ENDIAN
  676. select ARC32 if CPU_LITTLE_ENDIAN
  677. select ARCH_MAY_HAVE_PC_FDC
  678. select BOOT_ELF32
  679. select DMA_NONCOHERENT
  680. select GENERIC_ISA_DMA
  681. select HAVE_STD_PC_SERIAL_PORT
  682. select HW_HAS_EISA
  683. select HW_HAS_PCI
  684. select I8253
  685. select I8259
  686. select ISA
  687. select SWAP_IO_SPACE if CPU_BIG_ENDIAN
  688. select SYS_HAS_CPU_R4X00
  689. select SYS_HAS_CPU_R5000
  690. select R5000_CPU_SCACHE
  691. select SYS_SUPPORTS_32BIT_KERNEL
  692. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  693. select SYS_SUPPORTS_BIG_ENDIAN
  694. select SYS_SUPPORTS_HIGHMEM
  695. select SYS_SUPPORTS_LITTLE_ENDIAN
  696. help
  697. The SNI RM200 PCI was a MIPS-based platform manufactured by Siemens
  698. Nixdorf Informationssysteme (SNI), parent company of Pyramid
  699. Technology and now in turn merged with Fujitsu. Say Y here to
  700. support this machine type.
  701. config TOSHIBA_JMR3927
  702. bool "Toshiba JMR-TX3927 board"
  703. select DMA_NONCOHERENT
  704. select HW_HAS_PCI
  705. select MIPS_TX3927
  706. select SWAP_IO_SPACE
  707. select SYS_HAS_CPU_TX39XX
  708. select SYS_SUPPORTS_32BIT_KERNEL
  709. select SYS_SUPPORTS_BIG_ENDIAN
  710. select TOSHIBA_BOARDS
  711. config TOSHIBA_RBTX4927
  712. bool "Toshiba TBTX49[23]7 board"
  713. select DMA_NONCOHERENT
  714. select HAS_TXX9_SERIAL
  715. select HW_HAS_PCI
  716. select I8259
  717. select ISA
  718. select SWAP_IO_SPACE
  719. select SYS_HAS_CPU_TX49XX
  720. select SYS_SUPPORTS_32BIT_KERNEL
  721. select SYS_SUPPORTS_64BIT_KERNEL
  722. select SYS_SUPPORTS_BIG_ENDIAN
  723. select TOSHIBA_BOARDS
  724. help
  725. This Toshiba board is based on the TX4927 processor. Say Y here to
  726. support this machine type
  727. config TOSHIBA_RBTX4938
  728. bool "Toshiba RBTX4938 board"
  729. select HAVE_STD_PC_SERIAL_PORT
  730. select DMA_NONCOHERENT
  731. select GENERIC_ISA_DMA
  732. select HAS_TXX9_SERIAL
  733. select HW_HAS_PCI
  734. select I8259
  735. select ISA
  736. select SWAP_IO_SPACE
  737. select SYS_HAS_CPU_TX49XX
  738. select SYS_SUPPORTS_32BIT_KERNEL
  739. select SYS_SUPPORTS_LITTLE_ENDIAN
  740. select SYS_SUPPORTS_BIG_ENDIAN
  741. select TOSHIBA_BOARDS
  742. help
  743. This Toshiba board is based on the TX4938 processor. Say Y here to
  744. support this machine type
  745. endchoice
  746. source "arch/mips/ddb5xxx/Kconfig"
  747. source "arch/mips/gt64120/ev64120/Kconfig"
  748. source "arch/mips/jazz/Kconfig"
  749. source "arch/mips/ite-boards/Kconfig"
  750. source "arch/mips/lasat/Kconfig"
  751. source "arch/mips/momentum/Kconfig"
  752. source "arch/mips/pmc-sierra/Kconfig"
  753. source "arch/mips/sgi-ip27/Kconfig"
  754. source "arch/mips/sibyte/Kconfig"
  755. source "arch/mips/tx4927/Kconfig"
  756. source "arch/mips/tx4938/Kconfig"
  757. source "arch/mips/vr41xx/Kconfig"
  758. source "arch/mips/philips/pnx8550/common/Kconfig"
  759. source "arch/mips/cobalt/Kconfig"
  760. endmenu
  761. config RWSEM_GENERIC_SPINLOCK
  762. bool
  763. default y
  764. config RWSEM_XCHGADD_ALGORITHM
  765. bool
  766. config GENERIC_FIND_NEXT_BIT
  767. bool
  768. default y
  769. config GENERIC_HWEIGHT
  770. bool
  771. default y
  772. config GENERIC_CALIBRATE_DELAY
  773. bool
  774. default y
  775. config SCHED_NO_NO_OMIT_FRAME_POINTER
  776. bool
  777. default y
  778. #
  779. # Select some configuration options automatically based on user selections.
  780. #
  781. config ARC
  782. bool
  783. config ARCH_MAY_HAVE_PC_FDC
  784. bool
  785. config DMA_COHERENT
  786. bool
  787. config DMA_IP27
  788. bool
  789. config DMA_IP32
  790. bool
  791. select DMA_NEED_PCI_MAP_STATE
  792. config DMA_NONCOHERENT
  793. bool
  794. select DMA_NEED_PCI_MAP_STATE
  795. config DMA_NEED_PCI_MAP_STATE
  796. bool
  797. config OWN_DMA
  798. bool
  799. config EARLY_PRINTK
  800. bool
  801. config GENERIC_ISA_DMA
  802. bool
  803. config I8259
  804. bool
  805. config LIMITED_DMA
  806. bool
  807. select HIGHMEM
  808. select SYS_SUPPORTS_HIGHMEM
  809. config MIPS_BONITO64
  810. bool
  811. config MIPS_MSC
  812. bool
  813. config MIPS_NILE4
  814. bool
  815. config MIPS_DISABLE_OBSOLETE_IDE
  816. bool
  817. #
  818. # Endianess selection. Suffiently obscure so many users don't know what to
  819. # answer,so we try hard to limit the available choices. Also the use of a
  820. # choice statement should be more obvious to the user.
  821. #
  822. choice
  823. prompt "Endianess selection"
  824. help
  825. Some MIPS machines can be configured for either little or big endian
  826. byte order. These modes require different kernels and a different
  827. Linux distribution. In general there is one prefered byteorder for a
  828. particular system but some systems are just as commonly used in the
  829. one or the other endianess.
  830. config CPU_BIG_ENDIAN
  831. bool "Big endian"
  832. depends on SYS_SUPPORTS_BIG_ENDIAN
  833. config CPU_LITTLE_ENDIAN
  834. bool "Little endian"
  835. depends on SYS_SUPPORTS_LITTLE_ENDIAN
  836. help
  837. endchoice
  838. config SYS_SUPPORTS_BIG_ENDIAN
  839. bool
  840. config SYS_SUPPORTS_LITTLE_ENDIAN
  841. bool
  842. config IRQ_CPU
  843. bool
  844. config IRQ_CPU_RM7K
  845. bool
  846. config IRQ_CPU_RM9K
  847. bool
  848. config IRQ_MV64340
  849. bool
  850. config DDB5XXX_COMMON
  851. bool
  852. config MIPS_BOARDS_GEN
  853. bool
  854. config MIPS_GT64111
  855. bool
  856. config MIPS_GT64120
  857. bool
  858. config MIPS_TX3927
  859. bool
  860. select HAS_TXX9_SERIAL
  861. config PCI_MARVELL
  862. bool
  863. config ITE_BOARD_GEN
  864. bool
  865. config SOC_AU1000
  866. bool
  867. select SOC_AU1X00
  868. config SOC_AU1100
  869. bool
  870. select SOC_AU1X00
  871. config SOC_AU1500
  872. bool
  873. select SOC_AU1X00
  874. config SOC_AU1550
  875. bool
  876. select SOC_AU1X00
  877. config SOC_AU1200
  878. bool
  879. select SOC_AU1X00
  880. config SOC_AU1X00
  881. bool
  882. select SYS_HAS_CPU_MIPS32_R1
  883. select SYS_SUPPORTS_32BIT_KERNEL
  884. config PNX8550
  885. bool
  886. select SOC_PNX8550
  887. config SOC_PNX8550
  888. bool
  889. select DMA_NONCOHERENT
  890. select HW_HAS_PCI
  891. select SYS_HAS_CPU_MIPS32_R1
  892. select SYS_SUPPORTS_32BIT_KERNEL
  893. config SWAP_IO_SPACE
  894. bool
  895. config EMMA2RH
  896. bool
  897. depends on MARKEINS
  898. default y
  899. #
  900. # Unfortunately not all GT64120 systems run the chip at the same clock.
  901. # As the user for the clock rate and try to minimize the available options.
  902. #
  903. choice
  904. prompt "Galileo Chip Clock"
  905. #default SYSCLK_83 if MIPS_EV64120
  906. depends on MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G
  907. default SYSCLK_83 if MIPS_EV64120
  908. default SYSCLK_100 if MOMENCO_OCELOT || MOMENCO_OCELOT_G
  909. config SYSCLK_75
  910. bool "75" if MIPS_EV64120
  911. config SYSCLK_83
  912. bool "83.3" if MIPS_EV64120
  913. config SYSCLK_100
  914. bool "100" if MIPS_EV64120 || MOMENCO_OCELOT || MOMENCO_OCELOT_G
  915. endchoice
  916. config ARC32
  917. bool
  918. config AU1X00_USB_DEVICE
  919. bool
  920. depends on MIPS_PB1500 || MIPS_PB1100 || MIPS_PB1000
  921. default n
  922. config MIPS_GT96100
  923. bool
  924. select MIPS_GT64120
  925. config IT8172_CIR
  926. bool
  927. depends on MIPS_ITE8172 || MIPS_IVR
  928. default y
  929. config IT8712
  930. bool
  931. depends on MIPS_ITE8172
  932. default y
  933. config BOOT_ELF32
  934. bool
  935. config MIPS_L1_CACHE_SHIFT
  936. int
  937. default "4" if MACH_DECSTATION
  938. default "7" if SGI_IP27
  939. default "5"
  940. config HAVE_STD_PC_SERIAL_PORT
  941. bool
  942. config ARC_CONSOLE
  943. bool "ARC console support"
  944. depends on SGI_IP22 || SNI_RM200_PCI
  945. config ARC_MEMORY
  946. bool
  947. depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP32
  948. default y
  949. config ARC_PROMLIB
  950. bool
  951. depends on MACH_JAZZ || SNI_RM200_PCI || SGI_IP22 || SGI_IP32
  952. default y
  953. config ARC64
  954. bool
  955. config BOOT_ELF64
  956. bool
  957. config TOSHIBA_BOARDS
  958. bool
  959. menu "CPU selection"
  960. choice
  961. prompt "CPU type"
  962. default CPU_R4X00
  963. config CPU_MIPS32_R1
  964. bool "MIPS32 Release 1"
  965. depends on SYS_HAS_CPU_MIPS32_R1
  966. select CPU_HAS_LLSC
  967. select CPU_HAS_PREFETCH
  968. select CPU_SUPPORTS_32BIT_KERNEL
  969. select CPU_SUPPORTS_HIGHMEM
  970. help
  971. Choose this option to build a kernel for release 1 or later of the
  972. MIPS32 architecture. Most modern embedded systems with a 32-bit
  973. MIPS processor are based on a MIPS32 processor. If you know the
  974. specific type of processor in your system, choose those that one
  975. otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
  976. Release 2 of the MIPS32 architecture is available since several
  977. years so chances are you even have a MIPS32 Release 2 processor
  978. in which case you should choose CPU_MIPS32_R2 instead for better
  979. performance.
  980. config CPU_MIPS32_R2
  981. bool "MIPS32 Release 2"
  982. depends on SYS_HAS_CPU_MIPS32_R2
  983. select CPU_HAS_LLSC
  984. select CPU_HAS_PREFETCH
  985. select CPU_SUPPORTS_32BIT_KERNEL
  986. select CPU_SUPPORTS_HIGHMEM
  987. help
  988. Choose this option to build a kernel for release 2 or later of the
  989. MIPS32 architecture. Most modern embedded systems with a 32-bit
  990. MIPS processor are based on a MIPS32 processor. If you know the
  991. specific type of processor in your system, choose those that one
  992. otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
  993. config CPU_MIPS64_R1
  994. bool "MIPS64 Release 1"
  995. depends on SYS_HAS_CPU_MIPS64_R1
  996. select CPU_HAS_LLSC
  997. select CPU_HAS_PREFETCH
  998. select CPU_SUPPORTS_32BIT_KERNEL
  999. select CPU_SUPPORTS_64BIT_KERNEL
  1000. select CPU_SUPPORTS_HIGHMEM
  1001. help
  1002. Choose this option to build a kernel for release 1 or later of the
  1003. MIPS64 architecture. Many modern embedded systems with a 64-bit
  1004. MIPS processor are based on a MIPS64 processor. If you know the
  1005. specific type of processor in your system, choose those that one
  1006. otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
  1007. Release 2 of the MIPS64 architecture is available since several
  1008. years so chances are you even have a MIPS64 Release 2 processor
  1009. in which case you should choose CPU_MIPS64_R2 instead for better
  1010. performance.
  1011. config CPU_MIPS64_R2
  1012. bool "MIPS64 Release 2"
  1013. depends on SYS_HAS_CPU_MIPS64_R2
  1014. select CPU_HAS_LLSC
  1015. select CPU_HAS_PREFETCH
  1016. select CPU_SUPPORTS_32BIT_KERNEL
  1017. select CPU_SUPPORTS_64BIT_KERNEL
  1018. select CPU_SUPPORTS_HIGHMEM
  1019. help
  1020. Choose this option to build a kernel for release 2 or later of the
  1021. MIPS64 architecture. Many modern embedded systems with a 64-bit
  1022. MIPS processor are based on a MIPS64 processor. If you know the
  1023. specific type of processor in your system, choose those that one
  1024. otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
  1025. config CPU_R3000
  1026. bool "R3000"
  1027. depends on SYS_HAS_CPU_R3000
  1028. select CPU_HAS_WB
  1029. select CPU_SUPPORTS_32BIT_KERNEL
  1030. select CPU_SUPPORTS_HIGHMEM
  1031. help
  1032. Please make sure to pick the right CPU type. Linux/MIPS is not
  1033. designed to be generic, i.e. Kernels compiled for R3000 CPUs will
  1034. *not* work on R4000 machines and vice versa. However, since most
  1035. of the supported machines have an R4000 (or similar) CPU, R4x00
  1036. might be a safe bet. If the resulting kernel does not work,
  1037. try to recompile with R3000.
  1038. config CPU_TX39XX
  1039. bool "R39XX"
  1040. depends on SYS_HAS_CPU_TX39XX
  1041. select CPU_SUPPORTS_32BIT_KERNEL
  1042. config CPU_VR41XX
  1043. bool "R41xx"
  1044. depends on SYS_HAS_CPU_VR41XX
  1045. select CPU_SUPPORTS_32BIT_KERNEL
  1046. select CPU_SUPPORTS_64BIT_KERNEL
  1047. help
  1048. The options selects support for the NEC VR4100 series of processors.
  1049. Only choose this option if you have one of these processors as a
  1050. kernel built with this option will not run on any other type of
  1051. processor or vice versa.
  1052. config CPU_R4300
  1053. bool "R4300"
  1054. depends on SYS_HAS_CPU_R4300
  1055. select CPU_HAS_LLSC
  1056. select CPU_SUPPORTS_32BIT_KERNEL
  1057. select CPU_SUPPORTS_64BIT_KERNEL
  1058. help
  1059. MIPS Technologies R4300-series processors.
  1060. config CPU_R4X00
  1061. bool "R4x00"
  1062. depends on SYS_HAS_CPU_R4X00
  1063. select CPU_HAS_LLSC
  1064. select CPU_SUPPORTS_32BIT_KERNEL
  1065. select CPU_SUPPORTS_64BIT_KERNEL
  1066. help
  1067. MIPS Technologies R4000-series processors other than 4300, including
  1068. the R4000, R4400, R4600, and 4700.
  1069. config CPU_TX49XX
  1070. bool "R49XX"
  1071. depends on SYS_HAS_CPU_TX49XX
  1072. select CPU_HAS_LLSC
  1073. select CPU_HAS_PREFETCH
  1074. select CPU_SUPPORTS_32BIT_KERNEL
  1075. select CPU_SUPPORTS_64BIT_KERNEL
  1076. config CPU_R5000
  1077. bool "R5000"
  1078. depends on SYS_HAS_CPU_R5000
  1079. select CPU_HAS_LLSC
  1080. select CPU_SUPPORTS_32BIT_KERNEL
  1081. select CPU_SUPPORTS_64BIT_KERNEL
  1082. help
  1083. MIPS Technologies R5000-series processors other than the Nevada.
  1084. config CPU_R5432
  1085. bool "R5432"
  1086. depends on SYS_HAS_CPU_R5432
  1087. select CPU_HAS_LLSC
  1088. select CPU_SUPPORTS_32BIT_KERNEL
  1089. select CPU_SUPPORTS_64BIT_KERNEL
  1090. config CPU_R6000
  1091. bool "R6000"
  1092. depends on EXPERIMENTAL
  1093. select CPU_HAS_LLSC
  1094. depends on SYS_HAS_CPU_R6000
  1095. select CPU_SUPPORTS_32BIT_KERNEL
  1096. help
  1097. MIPS Technologies R6000 and R6000A series processors. Note these
  1098. processors are extremly rare and the support for them is incomplete.
  1099. config CPU_NEVADA
  1100. bool "RM52xx"
  1101. depends on SYS_HAS_CPU_NEVADA
  1102. select CPU_HAS_LLSC
  1103. select CPU_SUPPORTS_32BIT_KERNEL
  1104. select CPU_SUPPORTS_64BIT_KERNEL
  1105. help
  1106. QED / PMC-Sierra RM52xx-series ("Nevada") processors.
  1107. config CPU_R8000
  1108. bool "R8000"
  1109. depends on EXPERIMENTAL
  1110. depends on SYS_HAS_CPU_R8000
  1111. select CPU_HAS_LLSC
  1112. select CPU_HAS_PREFETCH
  1113. select CPU_SUPPORTS_64BIT_KERNEL
  1114. help
  1115. MIPS Technologies R8000 processors. Note these processors are
  1116. uncommon and the support for them is incomplete.
  1117. config CPU_R10000
  1118. bool "R10000"
  1119. depends on SYS_HAS_CPU_R10000
  1120. select CPU_HAS_LLSC
  1121. select CPU_HAS_PREFETCH
  1122. select CPU_SUPPORTS_32BIT_KERNEL
  1123. select CPU_SUPPORTS_64BIT_KERNEL
  1124. select CPU_SUPPORTS_HIGHMEM
  1125. help
  1126. MIPS Technologies R10000-series processors.
  1127. config CPU_RM7000
  1128. bool "RM7000"
  1129. depends on SYS_HAS_CPU_RM7000
  1130. select CPU_HAS_LLSC
  1131. select CPU_HAS_PREFETCH
  1132. select CPU_SUPPORTS_32BIT_KERNEL
  1133. select CPU_SUPPORTS_64BIT_KERNEL
  1134. select CPU_SUPPORTS_HIGHMEM
  1135. config CPU_RM9000
  1136. bool "RM9000"
  1137. depends on SYS_HAS_CPU_RM9000
  1138. select CPU_HAS_LLSC
  1139. select CPU_HAS_PREFETCH
  1140. select CPU_SUPPORTS_32BIT_KERNEL
  1141. select CPU_SUPPORTS_64BIT_KERNEL
  1142. select CPU_SUPPORTS_HIGHMEM
  1143. config CPU_SB1
  1144. bool "SB1"
  1145. depends on SYS_HAS_CPU_SB1
  1146. select CPU_HAS_LLSC
  1147. select CPU_SUPPORTS_32BIT_KERNEL
  1148. select CPU_SUPPORTS_64BIT_KERNEL
  1149. select CPU_SUPPORTS_HIGHMEM
  1150. endchoice
  1151. config SYS_HAS_CPU_MIPS32_R1
  1152. bool
  1153. config SYS_HAS_CPU_MIPS32_R2
  1154. bool
  1155. config SYS_HAS_CPU_MIPS64_R1
  1156. bool
  1157. config SYS_HAS_CPU_MIPS64_R2
  1158. bool
  1159. config SYS_HAS_CPU_R3000
  1160. bool
  1161. config SYS_HAS_CPU_TX39XX
  1162. bool
  1163. config SYS_HAS_CPU_VR41XX
  1164. bool
  1165. config SYS_HAS_CPU_R4300
  1166. bool
  1167. config SYS_HAS_CPU_R4X00
  1168. bool
  1169. config SYS_HAS_CPU_TX49XX
  1170. bool
  1171. config SYS_HAS_CPU_R5000
  1172. bool
  1173. config SYS_HAS_CPU_R5432
  1174. bool
  1175. config SYS_HAS_CPU_R6000
  1176. bool
  1177. config SYS_HAS_CPU_NEVADA
  1178. bool
  1179. config SYS_HAS_CPU_R8000
  1180. bool
  1181. config SYS_HAS_CPU_R10000
  1182. bool
  1183. config SYS_HAS_CPU_RM7000
  1184. bool
  1185. config SYS_HAS_CPU_RM9000
  1186. bool
  1187. config SYS_HAS_CPU_SB1
  1188. bool
  1189. endmenu
  1190. #
  1191. # These two indicate any levelof the MIPS32 and MIPS64 architecture
  1192. #
  1193. config CPU_MIPS32
  1194. bool
  1195. default y if CPU_MIPS32_R1 || CPU_MIPS32_R2
  1196. config CPU_MIPS64
  1197. bool
  1198. default y if CPU_MIPS64_R1 || CPU_MIPS64_R2
  1199. #
  1200. # These two indicate the revision of the architecture, either 32 bot 64 bit.
  1201. #
  1202. config CPU_MIPSR1
  1203. bool
  1204. default y if CPU_MIPS32_R1 || CPU_MIPS64_R1
  1205. config CPU_MIPSR2
  1206. bool
  1207. default y if CPU_MIPS32_R2 || CPU_MIPS64_R2
  1208. config SYS_SUPPORTS_32BIT_KERNEL
  1209. bool
  1210. config SYS_SUPPORTS_64BIT_KERNEL
  1211. bool
  1212. config CPU_SUPPORTS_32BIT_KERNEL
  1213. bool
  1214. config CPU_SUPPORTS_64BIT_KERNEL
  1215. bool
  1216. menu "Kernel type"
  1217. choice
  1218. prompt "Kernel code model"
  1219. help
  1220. You should only select this option if you have a workload that
  1221. actually benefits from 64-bit processing or if your machine has
  1222. large memory. You will only be presented a single option in this
  1223. menu if your system does not support both 32-bit and 64-bit kernels.
  1224. config 32BIT
  1225. bool "32-bit kernel"
  1226. depends on CPU_SUPPORTS_32BIT_KERNEL && SYS_SUPPORTS_32BIT_KERNEL
  1227. select TRAD_SIGNALS
  1228. help
  1229. Select this option if you want to build a 32-bit kernel.
  1230. config 64BIT
  1231. bool "64-bit kernel"
  1232. depends on CPU_SUPPORTS_64BIT_KERNEL && SYS_SUPPORTS_64BIT_KERNEL
  1233. help
  1234. Select this option if you want to build a 64-bit kernel.
  1235. endchoice
  1236. choice
  1237. prompt "Kernel page size"
  1238. default PAGE_SIZE_4KB
  1239. config PAGE_SIZE_4KB
  1240. bool "4kB"
  1241. help
  1242. This option select the standard 4kB Linux page size. On some
  1243. R3000-family processors this is the only available page size. Using
  1244. 4kB page size will minimize memory consumption and is therefore
  1245. recommended for low memory systems.
  1246. config PAGE_SIZE_8KB
  1247. bool "8kB"
  1248. depends on EXPERIMENTAL && CPU_R8000
  1249. help
  1250. Using 8kB page size will result in higher performance kernel at
  1251. the price of higher memory consumption. This option is available
  1252. only on the R8000 processor. Not that at the time of this writing
  1253. this option is still high experimental; there are also issues with
  1254. compatibility of user applications.
  1255. config PAGE_SIZE_16KB
  1256. bool "16kB"
  1257. depends on !CPU_R3000 && !CPU_TX39XX
  1258. help
  1259. Using 16kB page size will result in higher performance kernel at
  1260. the price of higher memory consumption. This option is available on
  1261. all non-R3000 family processors. Note that you will need a suitable
  1262. Linux distribution to support this.
  1263. config PAGE_SIZE_64KB
  1264. bool "64kB"
  1265. depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX
  1266. help
  1267. Using 64kB page size will result in higher performance kernel at
  1268. the price of higher memory consumption. This option is available on
  1269. all non-R3000 family processor. Not that at the time of this
  1270. writing this option is still high experimental.
  1271. endchoice
  1272. config BOARD_SCACHE
  1273. bool
  1274. config IP22_CPU_SCACHE
  1275. bool
  1276. select BOARD_SCACHE
  1277. config R5000_CPU_SCACHE
  1278. bool
  1279. select BOARD_SCACHE
  1280. config RM7000_CPU_SCACHE
  1281. bool
  1282. select BOARD_SCACHE
  1283. config SIBYTE_DMA_PAGEOPS
  1284. bool "Use DMA to clear/copy pages"
  1285. depends on CPU_SB1
  1286. help
  1287. Instead of using the CPU to zero and copy pages, use a Data Mover
  1288. channel. These DMA channels are otherwise unused by the standard
  1289. SiByte Linux port. Seems to give a small performance benefit.
  1290. config CPU_HAS_PREFETCH
  1291. bool
  1292. config MIPS_MT
  1293. bool "Enable MIPS MT"
  1294. choice
  1295. prompt "MIPS MT options"
  1296. depends on MIPS_MT
  1297. config MIPS_MT_SMTC
  1298. bool "SMTC: Use all TCs on all VPEs for SMP"
  1299. select CPU_MIPSR2_IRQ_VI
  1300. select CPU_MIPSR2_SRS
  1301. select SMP
  1302. config MIPS_MT_SMP
  1303. bool "Use 1 TC on each available VPE for SMP"
  1304. select SMP
  1305. config MIPS_VPE_LOADER
  1306. bool "VPE loader support."
  1307. depends on MIPS_MT
  1308. help
  1309. Includes a loader for loading an elf relocatable object
  1310. onto another VPE and running it.
  1311. endchoice
  1312. config MIPS_MT_FPAFF
  1313. bool "Dynamic FPU affinity for FP-intensive threads"
  1314. depends on MIPS_MT
  1315. default y
  1316. config MIPS_VPE_LOADER_TOM
  1317. bool "Load VPE program into memory hidden from linux"
  1318. depends on MIPS_VPE_LOADER
  1319. default y
  1320. help
  1321. The loader can use memory that is present but has been hidden from
  1322. Linux using the kernel command line option "mem=xxMB". It's up to
  1323. you to ensure the amount you put in the option and the space your
  1324. program requires is less or equal to the amount physically present.
  1325. # this should possibly be in drivers/char, but it is rather cpu related. Hmmm
  1326. config MIPS_VPE_APSP_API
  1327. bool "Enable support for AP/SP API (RTLX)"
  1328. depends on MIPS_VPE_LOADER
  1329. help
  1330. config MIPS_APSP_KSPD
  1331. bool "Enable KSPD"
  1332. depends on MIPS_VPE_APSP_API
  1333. default y
  1334. help
  1335. KSPD is a kernel daemon that accepts syscall requests from the SP
  1336. side, actions them and returns the results. It also handles the
  1337. "exit" syscall notifying other kernel modules the SP program is
  1338. exiting. You probably want to say yes here.
  1339. config SB1_PASS_1_WORKAROUNDS
  1340. bool
  1341. depends on CPU_SB1_PASS_1
  1342. default y
  1343. config SB1_PASS_2_WORKAROUNDS
  1344. bool
  1345. depends on CPU_SB1 && (CPU_SB1_PASS_2_2 || CPU_SB1_PASS_2)
  1346. default y
  1347. config SB1_PASS_2_1_WORKAROUNDS
  1348. bool
  1349. depends on CPU_SB1 && CPU_SB1_PASS_2
  1350. default y
  1351. config 64BIT_PHYS_ADDR
  1352. bool "Support for 64-bit physical address space"
  1353. depends on (CPU_R4X00 || CPU_R5000 || CPU_RM7000 || CPU_RM9000 || CPU_R10000 || CPU_SB1 || CPU_MIPS32 || CPU_MIPS64) && 32BIT
  1354. config CPU_HAS_LLSC
  1355. bool
  1356. config CPU_HAS_WB
  1357. bool
  1358. config CPU_MIPSR2_IRQ_VI
  1359. bool "Vectored interrupt mode"
  1360. depends on CPU_MIPSR2
  1361. help
  1362. Vectored interrupt mode allowing faster dispatching of interrupts.
  1363. The board support code needs to be written to take advantage of this
  1364. mode. Compatibility code is included to allow the kernel to run on
  1365. a CPU that does not support vectored interrupts. It's safe to
  1366. say Y here.
  1367. config CPU_MIPSR2_IRQ_EI
  1368. bool "External interrupt controller mode"
  1369. depends on CPU_MIPSR2
  1370. help
  1371. Extended interrupt mode takes advantage of an external interrupt
  1372. controller to allow fast dispatching from many possible interrupt
  1373. sources. Say N unless you know that external interrupt support is
  1374. required.
  1375. config CPU_MIPSR2_SRS
  1376. bool "Make shadow set registers available for interrupt handlers"
  1377. depends on CPU_MIPSR2_IRQ_VI || CPU_MIPSR2_IRQ_EI
  1378. help
  1379. Allow the kernel to use shadow register sets for fast interrupts.
  1380. Interrupt handlers must be specially written to use shadow sets.
  1381. Say N unless you know that shadow register set upport is needed.
  1382. config CPU_HAS_SYNC
  1383. bool
  1384. depends on !CPU_R3000
  1385. default y
  1386. #
  1387. # Use the generic interrupt handling code in kernel/irq/:
  1388. #
  1389. config GENERIC_HARDIRQS
  1390. bool
  1391. default y
  1392. config GENERIC_IRQ_PROBE
  1393. bool
  1394. default y
  1395. #
  1396. # - Highmem only makes sense for the 32-bit kernel.
  1397. # - The current highmem code will only work properly on physically indexed
  1398. # caches such as R3000, SB1, R7000 or those that look like they're virtually
  1399. # indexed such as R4000/R4400 SC and MC versions or R10000. So for the
  1400. # moment we protect the user and offer the highmem option only on machines
  1401. # where it's known to be safe. This will not offer highmem on a few systems
  1402. # such as MIPS32 and MIPS64 CPUs which may have virtual and physically
  1403. # indexed CPUs but we're playing safe.
  1404. # - We use SYS_SUPPORTS_HIGHMEM to offer highmem only for systems where we
  1405. # know they might have memory configurations that could make use of highmem
  1406. # support.
  1407. #
  1408. config HIGHMEM
  1409. bool "High Memory Support"
  1410. depends on 32BIT && CPU_SUPPORTS_HIGHMEM && SYS_SUPPORTS_HIGHMEM
  1411. config CPU_SUPPORTS_HIGHMEM
  1412. bool
  1413. config SYS_SUPPORTS_HIGHMEM
  1414. bool
  1415. config ARCH_FLATMEM_ENABLE
  1416. def_bool y
  1417. depends on !NUMA
  1418. config ARCH_DISCONTIGMEM_ENABLE
  1419. bool
  1420. default y if SGI_IP27
  1421. help
  1422. Say Y to upport efficient handling of discontiguous physical memory,
  1423. for architectures which are either NUMA (Non-Uniform Memory Access)
  1424. or have huge holes in the physical address space for other reasons.
  1425. See <file:Documentation/vm/numa> for more.
  1426. config NUMA
  1427. bool "NUMA Support"
  1428. depends on SYS_SUPPORTS_NUMA
  1429. help
  1430. Say Y to compile the kernel to support NUMA (Non-Uniform Memory
  1431. Access). This option improves performance on systems with more
  1432. than two nodes; on two node systems it is generally better to
  1433. leave it disabled; on single node systems disable this option
  1434. disabled.
  1435. config SYS_SUPPORTS_NUMA
  1436. bool
  1437. config NODES_SHIFT
  1438. int
  1439. default "6"
  1440. depends on NEED_MULTIPLE_NODES
  1441. source "mm/Kconfig"
  1442. config SMP
  1443. bool "Multi-Processing support"
  1444. depends on CPU_RM9000 || ((SIBYTE_BCM1x80 || SIBYTE_BCM1x55 || SIBYTE_SB1250 || QEMU) && !SIBYTE_STANDALONE) || SGI_IP27 || MIPS_MT_SMP || MIPS_MT_SMTC
  1445. ---help---
  1446. This enables support for systems with more than one CPU. If you have
  1447. a system with only one CPU, like most personal computers, say N. If
  1448. you have a system with more than one CPU, say Y.
  1449. If you say N here, the kernel will run on single and multiprocessor
  1450. machines, but will use only one CPU of a multiprocessor machine. If
  1451. you say Y here, the kernel will run on many, but not all,
  1452. singleprocessor machines. On a singleprocessor machine, the kernel
  1453. will run faster if you say N here.
  1454. People using multiprocessor machines who say Y here should also say
  1455. Y to "Enhanced Real Time Clock Support", below.
  1456. See also the <file:Documentation/smp.txt> and the SMP-HOWTO
  1457. available at <http://www.tldp.org/docs.html#howto>.
  1458. If you don't know what to do here, say N.
  1459. config NR_CPUS
  1460. int "Maximum number of CPUs (2-64)"
  1461. range 2 64
  1462. depends on SMP
  1463. default "64" if SGI_IP27
  1464. default "2"
  1465. help
  1466. This allows you to specify the maximum number of CPUs which this
  1467. kernel will support. The maximum supported value is 32 for 32-bit
  1468. kernel and 64 for 64-bit kernels; the minimum value which makes
  1469. sense is 2.
  1470. This is purely to save memory - each supported CPU adds
  1471. approximately eight kilobytes to the kernel image.
  1472. source "kernel/Kconfig.preempt"
  1473. config RTC_DS1742
  1474. bool "DS1742 BRAM/RTC support"
  1475. depends on TOSHIBA_JMR3927 || TOSHIBA_RBTX4927
  1476. config MIPS_INSANE_LARGE
  1477. bool "Support for large 64-bit configurations"
  1478. depends on CPU_R10000 && 64BIT
  1479. help
  1480. MIPS R10000 does support a 44 bit / 16TB address space as opposed to
  1481. previous 64-bit processors which only supported 40 bit / 1TB. If you
  1482. need processes of more than 1TB virtual address space, say Y here.
  1483. This will result in additional memory usage, so it is not
  1484. recommended for normal users.
  1485. endmenu
  1486. config RWSEM_GENERIC_SPINLOCK
  1487. bool
  1488. default y
  1489. source "init/Kconfig"
  1490. menu "Bus options (PCI, PCMCIA, EISA, ISA, TC)"
  1491. config HW_HAS_EISA
  1492. bool
  1493. config HW_HAS_PCI
  1494. bool
  1495. config PCI
  1496. bool "Support for PCI controller"
  1497. depends on HW_HAS_PCI
  1498. help
  1499. Find out whether you have a PCI motherboard. PCI is the name of a
  1500. bus system, i.e. the way the CPU talks to the other stuff inside
  1501. your box. Other bus systems are ISA, EISA, or VESA. If you have PCI,
  1502. say Y, otherwise N.
  1503. The PCI-HOWTO, available from
  1504. <http://www.tldp.org/docs.html#howto>, contains valuable
  1505. information about which PCI hardware does work under Linux and which
  1506. doesn't.
  1507. config PCI_DOMAINS
  1508. bool
  1509. depends on PCI
  1510. source "drivers/pci/Kconfig"
  1511. #
  1512. # ISA support is now enabled via select. Too many systems still have the one
  1513. # or other ISA chip on the board that users don't know about so don't expect
  1514. # users to choose the right thing ...
  1515. #
  1516. config ISA
  1517. bool
  1518. config NO_ISA
  1519. bool
  1520. config EISA
  1521. bool "EISA support"
  1522. depends on HW_HAS_EISA
  1523. select ISA
  1524. ---help---
  1525. The Extended Industry Standard Architecture (EISA) bus was
  1526. developed as an open alternative to the IBM MicroChannel bus.
  1527. The EISA bus provided some of the features of the IBM MicroChannel
  1528. bus while maintaining backward compatibility with cards made for
  1529. the older ISA bus. The EISA bus saw limited use between 1988 and
  1530. 1995 when it was made obsolete by the PCI bus.
  1531. Say Y here if you are building a kernel for an EISA-based machine.
  1532. Otherwise, say N.
  1533. source "drivers/eisa/Kconfig"
  1534. config TC
  1535. bool "TURBOchannel support"
  1536. depends on MACH_DECSTATION
  1537. help
  1538. TurboChannel is a DEC (now Compaq (now HP)) bus for Alpha and MIPS
  1539. processors. Documentation on writing device drivers for TurboChannel
  1540. is available at:
  1541. <http://www.cs.arizona.edu/computer.help/policy/DIGITAL_unix/AA-PS3HD-TET1_html/TITLE.html>.
  1542. #config ACCESSBUS
  1543. # bool "Access.Bus support"
  1544. # depends on TC
  1545. config MMU
  1546. bool
  1547. default y
  1548. config I8253
  1549. bool
  1550. source "drivers/pcmcia/Kconfig"
  1551. source "drivers/pci/hotplug/Kconfig"
  1552. endmenu
  1553. menu "Executable file formats"
  1554. source "fs/Kconfig.binfmt"
  1555. config TRAD_SIGNALS
  1556. bool
  1557. config BUILD_ELF64
  1558. bool "Use 64-bit ELF format for building"
  1559. depends on 64BIT
  1560. help
  1561. A 64-bit kernel is usually built using the 64-bit ELF binary object
  1562. format as it's one that allows arbitrary 64-bit constructs. For
  1563. kernels that are loaded within the KSEG compatibility segments the
  1564. 32-bit ELF format can optionally be used resulting in a somewhat
  1565. smaller binary, but this option is not explicitly supported by the
  1566. toolchain and since binutils 2.14 it does not even work at all.
  1567. Say Y to use the 64-bit format or N to use the 32-bit one.
  1568. If unsure say Y.
  1569. config BINFMT_IRIX
  1570. bool "Include IRIX binary compatibility"
  1571. depends on CPU_BIG_ENDIAN && 32BIT && BROKEN
  1572. config MIPS32_COMPAT
  1573. bool "Kernel support for Linux/MIPS 32-bit binary compatibility"
  1574. depends on 64BIT
  1575. help
  1576. Select this option if you want Linux/MIPS 32-bit binary
  1577. compatibility. Since all software available for Linux/MIPS is
  1578. currently 32-bit you should say Y here.
  1579. config COMPAT
  1580. bool
  1581. depends on MIPS32_COMPAT
  1582. default y
  1583. config MIPS32_O32
  1584. bool "Kernel support for o32 binaries"
  1585. depends on MIPS32_COMPAT
  1586. help
  1587. Select this option if you want to run o32 binaries. These are pure
  1588. 32-bit binaries as used by the 32-bit Linux/MIPS port. Most of
  1589. existing binaries are in this format.
  1590. If unsure, say Y.
  1591. config MIPS32_N32
  1592. bool "Kernel support for n32 binaries"
  1593. depends on MIPS32_COMPAT
  1594. help
  1595. Select this option if you want to run n32 binaries. These are
  1596. 64-bit binaries using 32-bit quantities for addressing and certain
  1597. data that would normally be 64-bit. They are used in special
  1598. cases.
  1599. If unsure, say N.
  1600. config BINFMT_ELF32
  1601. bool
  1602. default y if MIPS32_O32 || MIPS32_N32
  1603. config SECCOMP
  1604. bool "Enable seccomp to safely compute untrusted bytecode"
  1605. depends on PROC_FS && BROKEN
  1606. default y
  1607. help
  1608. This kernel feature is useful for number crunching applications
  1609. that may need to compute untrusted bytecode during their
  1610. execution. By using pipes or other transports made available to
  1611. the process as file descriptors supporting the read/write
  1612. syscalls, it's possible to isolate those applications in
  1613. their own address space using seccomp. Once seccomp is
  1614. enabled via /proc/<pid>/seccomp, it cannot be disabled
  1615. and the task is only allowed to execute a few safe syscalls
  1616. defined by each seccomp mode.
  1617. If unsure, say Y. Only embedded should say N here.
  1618. config PM
  1619. bool "Power Management support (EXPERIMENTAL)"
  1620. depends on EXPERIMENTAL && SOC_AU1X00
  1621. config APM
  1622. tristate "Advanced Power Management Emulation"
  1623. depends on PM
  1624. ---help---
  1625. APM is a BIOS specification for saving power using several different
  1626. techniques. This is mostly useful for battery powered systems with
  1627. APM compliant BIOSes. If you say Y here, the system time will be
  1628. reset after a RESUME operation, the /proc/apm device will provide
  1629. battery status information, and user-space programs will receive
  1630. notification of APM "events" (e.g. battery status change).
  1631. In order to use APM, you will need supporting software. For location
  1632. and more information, read <file:Documentation/pm.txt> and the
  1633. Battery Powered Linux mini-HOWTO, available from
  1634. <http://www.tldp.org/docs.html#howto>.
  1635. This driver does not spin down disk drives (see the hdparm(8)
  1636. manpage ("man 8 hdparm") for that), and it doesn't turn off
  1637. VESA-compliant "green" monitors.
  1638. Generally, if you don't have a battery in your machine, there isn't
  1639. much point in using this driver and you should say N. If you get
  1640. random kernel OOPSes or reboots that don't seem to be related to
  1641. anything, try disabling/enabling this option (or disabling/enabling
  1642. APM in your BIOS).
  1643. endmenu
  1644. source "net/Kconfig"
  1645. source "drivers/Kconfig"
  1646. source "fs/Kconfig"
  1647. source "arch/mips/oprofile/Kconfig"
  1648. source "arch/mips/Kconfig.debug"
  1649. source "security/Kconfig"
  1650. source "crypto/Kconfig"
  1651. source "lib/Kconfig"