Kconfig 47 KB

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