Kconfig 50 KB

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