Kconfig 50 KB

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