Kconfig 47 KB

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