Kconfig 49 KB

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