Kconfig 49 KB

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