Kconfig 47 KB

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