Kconfig 45 KB

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