Kconfig 48 KB

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