Kconfig 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541
  1. config MIPS
  2. bool
  3. default y
  4. select HAVE_GENERIC_DMA_COHERENT
  5. select HAVE_IDE
  6. select HAVE_OPROFILE
  7. select HAVE_IRQ_WORK
  8. select HAVE_PERF_EVENTS
  9. select PERF_USE_VMALLOC
  10. select HAVE_ARCH_KGDB
  11. select ARCH_HAVE_CUSTOM_GPIO_H
  12. select HAVE_FUNCTION_TRACER
  13. select HAVE_FUNCTION_TRACE_MCOUNT_TEST
  14. select HAVE_DYNAMIC_FTRACE
  15. select HAVE_FTRACE_MCOUNT_RECORD
  16. select HAVE_C_RECORDMCOUNT
  17. select HAVE_FUNCTION_GRAPH_TRACER
  18. select HAVE_KPROBES
  19. select HAVE_KRETPROBES
  20. select ARCH_BINFMT_ELF_RANDOMIZE_PIE
  21. select RTC_LIB if !MACH_LOONGSON
  22. select GENERIC_ATOMIC64 if !64BIT
  23. select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE
  24. select HAVE_DMA_ATTRS
  25. select HAVE_DMA_API_DEBUG
  26. select HAVE_GENERIC_HARDIRQS
  27. select GENERIC_IRQ_PROBE
  28. select GENERIC_IRQ_SHOW
  29. select HAVE_ARCH_JUMP_LABEL
  30. select ARCH_WANT_IPC_PARSE_VERSION
  31. select IRQ_FORCED_THREADING
  32. select HAVE_MEMBLOCK
  33. select HAVE_MEMBLOCK_NODE_MAP
  34. select ARCH_DISCARD_MEMBLOCK
  35. select GENERIC_SMP_IDLE_THREAD
  36. select BUILDTIME_EXTABLE_SORT
  37. select GENERIC_CLOCKEVENTS
  38. select GENERIC_CMOS_UPDATE
  39. menu "Machine selection"
  40. config ZONE_DMA
  41. bool
  42. choice
  43. prompt "System type"
  44. default SGI_IP22
  45. config MIPS_ALCHEMY
  46. bool "Alchemy processor based machines"
  47. select 64BIT_PHYS_ADDR
  48. select CEVT_R4K_LIB
  49. select CSRC_R4K_LIB
  50. select IRQ_CPU
  51. select SYS_HAS_CPU_MIPS32_R1
  52. select SYS_SUPPORTS_32BIT_KERNEL
  53. select SYS_SUPPORTS_APM_EMULATION
  54. select GENERIC_GPIO
  55. select ARCH_WANT_OPTIONAL_GPIOLIB
  56. select SYS_SUPPORTS_ZBOOT
  57. select USB_ARCH_HAS_OHCI
  58. select USB_ARCH_HAS_EHCI
  59. config AR7
  60. bool "Texas Instruments AR7"
  61. select BOOT_ELF32
  62. select DMA_NONCOHERENT
  63. select CEVT_R4K
  64. select CSRC_R4K
  65. select IRQ_CPU
  66. select NO_EXCEPT_FILL
  67. select SWAP_IO_SPACE
  68. select SYS_HAS_CPU_MIPS32_R1
  69. select SYS_HAS_EARLY_PRINTK
  70. select SYS_SUPPORTS_32BIT_KERNEL
  71. select SYS_SUPPORTS_LITTLE_ENDIAN
  72. select SYS_SUPPORTS_ZBOOT_UART16550
  73. select ARCH_REQUIRE_GPIOLIB
  74. select VLYNQ
  75. select HAVE_CLK
  76. help
  77. Support for the Texas Instruments AR7 System-on-a-Chip
  78. family: TNETD7100, 7200 and 7300.
  79. config ATH79
  80. bool "Atheros AR71XX/AR724X/AR913X based boards"
  81. select ARCH_REQUIRE_GPIOLIB
  82. select BOOT_RAW
  83. select CEVT_R4K
  84. select CSRC_R4K
  85. select DMA_NONCOHERENT
  86. select IRQ_CPU
  87. select MIPS_MACHINE
  88. select SYS_HAS_CPU_MIPS32_R2
  89. select SYS_HAS_EARLY_PRINTK
  90. select SYS_SUPPORTS_32BIT_KERNEL
  91. select SYS_SUPPORTS_BIG_ENDIAN
  92. help
  93. Support for the Atheros AR71XX/AR724X/AR913X SoCs.
  94. config BCM47XX
  95. bool "Broadcom BCM47XX based boards"
  96. select CEVT_R4K
  97. select CSRC_R4K
  98. select DMA_NONCOHERENT
  99. select HW_HAS_PCI
  100. select IRQ_CPU
  101. select SYS_SUPPORTS_32BIT_KERNEL
  102. select SYS_SUPPORTS_LITTLE_ENDIAN
  103. select GENERIC_GPIO
  104. select SYS_HAS_EARLY_PRINTK
  105. select CFE
  106. help
  107. Support for BCM47XX based boards
  108. config BCM63XX
  109. bool "Broadcom BCM63XX based boards"
  110. select CEVT_R4K
  111. select CSRC_R4K
  112. select DMA_NONCOHERENT
  113. select IRQ_CPU
  114. select SYS_HAS_CPU_MIPS32_R1
  115. select SYS_SUPPORTS_32BIT_KERNEL
  116. select SYS_SUPPORTS_BIG_ENDIAN
  117. select SYS_HAS_EARLY_PRINTK
  118. select SWAP_IO_SPACE
  119. select ARCH_REQUIRE_GPIOLIB
  120. select HAVE_CLK
  121. help
  122. Support for BCM63XX based boards
  123. config MIPS_COBALT
  124. bool "Cobalt Server"
  125. select CEVT_R4K
  126. select CSRC_R4K
  127. select CEVT_GT641XX
  128. select DMA_NONCOHERENT
  129. select HW_HAS_PCI
  130. select I8253
  131. select I8259
  132. select IRQ_CPU
  133. select IRQ_GT641XX
  134. select PCI_GT64XXX_PCI0
  135. select PCI
  136. select SYS_HAS_CPU_NEVADA
  137. select SYS_HAS_EARLY_PRINTK
  138. select SYS_SUPPORTS_32BIT_KERNEL
  139. select SYS_SUPPORTS_64BIT_KERNEL
  140. select SYS_SUPPORTS_LITTLE_ENDIAN
  141. config MACH_DECSTATION
  142. bool "DECstations"
  143. select BOOT_ELF32
  144. select CEVT_DS1287
  145. select CEVT_R4K
  146. select CSRC_IOASIC
  147. select CSRC_R4K
  148. select CPU_DADDI_WORKAROUNDS if 64BIT
  149. select CPU_R4000_WORKAROUNDS if 64BIT
  150. select CPU_R4400_WORKAROUNDS if 64BIT
  151. select DMA_NONCOHERENT
  152. select NO_IOPORT
  153. select IRQ_CPU
  154. select SYS_HAS_CPU_R3000
  155. select SYS_HAS_CPU_R4X00
  156. select SYS_SUPPORTS_32BIT_KERNEL
  157. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  158. select SYS_SUPPORTS_LITTLE_ENDIAN
  159. select SYS_SUPPORTS_128HZ
  160. select SYS_SUPPORTS_256HZ
  161. select SYS_SUPPORTS_1024HZ
  162. help
  163. This enables support for DEC's MIPS based workstations. For details
  164. see the Linux/MIPS FAQ on <http://www.linux-mips.org/> and the
  165. DECstation porting pages on <http://decstation.unix-ag.org/>.
  166. If you have one of the following DECstation Models you definitely
  167. want to choose R4xx0 for the CPU Type:
  168. DECstation 5000/50
  169. DECstation 5000/150
  170. DECstation 5000/260
  171. DECsystem 5900/260
  172. otherwise choose R3000.
  173. config MACH_JAZZ
  174. bool "Jazz family of machines"
  175. select ARC
  176. select ARC32
  177. select ARCH_MAY_HAVE_PC_FDC
  178. select CEVT_R4K
  179. select CSRC_R4K
  180. select DEFAULT_SGI_PARTITION if CPU_BIG_ENDIAN
  181. select GENERIC_ISA_DMA
  182. select HAVE_PCSPKR_PLATFORM
  183. select IRQ_CPU
  184. select I8253
  185. select I8259
  186. select ISA
  187. select SYS_HAS_CPU_R4X00
  188. select SYS_SUPPORTS_32BIT_KERNEL
  189. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  190. select SYS_SUPPORTS_100HZ
  191. help
  192. This a family of machines based on the MIPS R4030 chipset which was
  193. used by several vendors to build RISC/os and Windows NT workstations.
  194. Members include the Acer PICA, MIPS Magnum 4000, MIPS Millennium and
  195. Olivetti M700-10 workstations.
  196. config MACH_JZ4740
  197. bool "Ingenic JZ4740 based machines"
  198. select SYS_HAS_CPU_MIPS32_R1
  199. select SYS_SUPPORTS_32BIT_KERNEL
  200. select SYS_SUPPORTS_LITTLE_ENDIAN
  201. select SYS_SUPPORTS_ZBOOT_UART16550
  202. select DMA_NONCOHERENT
  203. select IRQ_CPU
  204. select GENERIC_GPIO
  205. select ARCH_REQUIRE_GPIOLIB
  206. select SYS_HAS_EARLY_PRINTK
  207. select HAVE_PWM
  208. select HAVE_CLK
  209. select GENERIC_IRQ_CHIP
  210. config LANTIQ
  211. bool "Lantiq based platforms"
  212. select DMA_NONCOHERENT
  213. select IRQ_CPU
  214. select CEVT_R4K
  215. select CSRC_R4K
  216. select SYS_HAS_CPU_MIPS32_R1
  217. select SYS_HAS_CPU_MIPS32_R2
  218. select SYS_SUPPORTS_BIG_ENDIAN
  219. select SYS_SUPPORTS_32BIT_KERNEL
  220. select SYS_SUPPORTS_MULTITHREADING
  221. select SYS_HAS_EARLY_PRINTK
  222. select ARCH_REQUIRE_GPIOLIB
  223. select SWAP_IO_SPACE
  224. select BOOT_RAW
  225. select HAVE_MACH_CLKDEV
  226. select CLKDEV_LOOKUP
  227. select USE_OF
  228. config LASAT
  229. bool "LASAT Networks platforms"
  230. select CEVT_R4K
  231. select CSRC_R4K
  232. select DMA_NONCOHERENT
  233. select SYS_HAS_EARLY_PRINTK
  234. select HW_HAS_PCI
  235. select IRQ_CPU
  236. select PCI_GT64XXX_PCI0
  237. select MIPS_NILE4
  238. select R5000_CPU_SCACHE
  239. select SYS_HAS_CPU_R5000
  240. select SYS_SUPPORTS_32BIT_KERNEL
  241. select SYS_SUPPORTS_64BIT_KERNEL if BROKEN
  242. select SYS_SUPPORTS_LITTLE_ENDIAN
  243. config MACH_LOONGSON
  244. bool "Loongson family of machines"
  245. select SYS_SUPPORTS_ZBOOT
  246. help
  247. This enables the support of Loongson family of machines.
  248. Loongson is a family of general-purpose MIPS-compatible CPUs.
  249. developed at Institute of Computing Technology (ICT),
  250. Chinese Academy of Sciences (CAS) in the People's Republic
  251. of China. The chief architect is Professor Weiwu Hu.
  252. config MACH_LOONGSON1
  253. bool "Loongson 1 family of machines"
  254. select SYS_SUPPORTS_ZBOOT
  255. help
  256. This enables support for the Loongson 1 based machines.
  257. Loongson 1 is a family of 32-bit MIPS-compatible SoCs developed by
  258. the ICT (Institute of Computing Technology) and the Chinese Academy
  259. of Sciences.
  260. config MIPS_MALTA
  261. bool "MIPS Malta board"
  262. select ARCH_MAY_HAVE_PC_FDC
  263. select BOOT_ELF32
  264. select BOOT_RAW
  265. select CEVT_R4K
  266. select CSRC_R4K
  267. select DMA_NONCOHERENT
  268. select GENERIC_ISA_DMA
  269. select HAVE_PCSPKR_PLATFORM
  270. select IRQ_CPU
  271. select IRQ_GIC
  272. select HW_HAS_PCI
  273. select I8253
  274. select I8259
  275. select MIPS_BOARDS_GEN
  276. select MIPS_BONITO64
  277. select MIPS_CPU_SCACHE
  278. select PCI_GT64XXX_PCI0
  279. select MIPS_MSC
  280. select SWAP_IO_SPACE
  281. select SYS_HAS_CPU_MIPS32_R1
  282. select SYS_HAS_CPU_MIPS32_R2
  283. select SYS_HAS_CPU_MIPS64_R1
  284. select SYS_HAS_CPU_MIPS64_R2
  285. select SYS_HAS_CPU_NEVADA
  286. select SYS_HAS_CPU_RM7000
  287. select SYS_HAS_EARLY_PRINTK
  288. select SYS_SUPPORTS_32BIT_KERNEL
  289. select SYS_SUPPORTS_64BIT_KERNEL
  290. select SYS_SUPPORTS_BIG_ENDIAN
  291. select SYS_SUPPORTS_LITTLE_ENDIAN
  292. select SYS_SUPPORTS_MIPS_CMP
  293. select SYS_SUPPORTS_MULTITHREADING
  294. select SYS_SUPPORTS_SMARTMIPS
  295. select SYS_SUPPORTS_ZBOOT
  296. help
  297. This enables support for the MIPS Technologies Malta evaluation
  298. board.
  299. config NEC_MARKEINS
  300. bool "NEC EMMA2RH Mark-eins board"
  301. select SOC_EMMA2RH
  302. select HW_HAS_PCI
  303. help
  304. This enables support for the NEC Electronics Mark-eins boards.
  305. config MACH_VR41XX
  306. bool "NEC VR4100 series based machines"
  307. select CEVT_R4K
  308. select CSRC_R4K
  309. select SYS_HAS_CPU_VR41XX
  310. select ARCH_REQUIRE_GPIOLIB
  311. config NXP_STB220
  312. bool "NXP STB220 board"
  313. select SOC_PNX833X
  314. help
  315. Support for NXP Semiconductors STB220 Development Board.
  316. config NXP_STB225
  317. bool "NXP 225 board"
  318. select SOC_PNX833X
  319. select SOC_PNX8335
  320. help
  321. Support for NXP Semiconductors STB225 Development Board.
  322. config PNX8550_JBS
  323. bool "NXP PNX8550 based JBS board"
  324. select PNX8550
  325. select SYS_SUPPORTS_LITTLE_ENDIAN
  326. config PNX8550_STB810
  327. bool "NXP PNX8550 based STB810 board"
  328. select PNX8550
  329. select SYS_SUPPORTS_LITTLE_ENDIAN
  330. config PMC_MSP
  331. bool "PMC-Sierra MSP chipsets"
  332. depends on EXPERIMENTAL
  333. select CEVT_R4K
  334. select CSRC_R4K
  335. select DMA_NONCOHERENT
  336. select SWAP_IO_SPACE
  337. select NO_EXCEPT_FILL
  338. select BOOT_RAW
  339. select SYS_HAS_CPU_MIPS32_R1
  340. select SYS_HAS_CPU_MIPS32_R2
  341. select SYS_SUPPORTS_32BIT_KERNEL
  342. select SYS_SUPPORTS_BIG_ENDIAN
  343. select IRQ_CPU
  344. select SERIAL_8250
  345. select SERIAL_8250_CONSOLE
  346. help
  347. This adds support for the PMC-Sierra family of Multi-Service
  348. Processor System-On-A-Chips. These parts include a number
  349. of integrated peripherals, interfaces and DSPs in addition to
  350. a variety of MIPS cores.
  351. config PMC_YOSEMITE
  352. bool "PMC-Sierra Yosemite eval board"
  353. select CEVT_R4K
  354. select CSRC_R4K
  355. select DMA_COHERENT
  356. select HW_HAS_PCI
  357. select IRQ_CPU
  358. select IRQ_CPU_RM7K
  359. select IRQ_CPU_RM9K
  360. select SWAP_IO_SPACE
  361. select SYS_HAS_CPU_RM9000
  362. select SYS_HAS_EARLY_PRINTK
  363. select SYS_SUPPORTS_32BIT_KERNEL
  364. select SYS_SUPPORTS_64BIT_KERNEL
  365. select SYS_SUPPORTS_BIG_ENDIAN
  366. select SYS_SUPPORTS_HIGHMEM
  367. select SYS_SUPPORTS_SMP
  368. help
  369. Yosemite is an evaluation board for the RM9000x2 processor
  370. manufactured by PMC-Sierra.
  371. config POWERTV
  372. bool "Cisco PowerTV"
  373. select BOOT_ELF32
  374. select CEVT_R4K
  375. select CPU_MIPSR2_IRQ_VI
  376. select CPU_MIPSR2_IRQ_EI
  377. select CSRC_POWERTV
  378. select DMA_NONCOHERENT
  379. select HW_HAS_PCI
  380. select SYS_HAS_EARLY_PRINTK
  381. select SYS_HAS_CPU_MIPS32_R2
  382. select SYS_SUPPORTS_32BIT_KERNEL
  383. select SYS_SUPPORTS_BIG_ENDIAN
  384. select SYS_SUPPORTS_HIGHMEM
  385. select USB_OHCI_LITTLE_ENDIAN
  386. help
  387. This enables support for the Cisco PowerTV Platform.
  388. config SGI_IP22
  389. bool "SGI IP22 (Indy/Indigo2)"
  390. select ARC
  391. select ARC32
  392. select BOOT_ELF32
  393. select CEVT_R4K
  394. select CSRC_R4K
  395. select DEFAULT_SGI_PARTITION
  396. select DMA_NONCOHERENT
  397. select HW_HAS_EISA
  398. select I8253
  399. select I8259
  400. select IP22_CPU_SCACHE
  401. select IRQ_CPU
  402. select GENERIC_ISA_DMA_SUPPORT_BROKEN
  403. select SGI_HAS_I8042
  404. select SGI_HAS_INDYDOG
  405. select SGI_HAS_HAL2
  406. select SGI_HAS_SEEQ
  407. select SGI_HAS_WD93
  408. select SGI_HAS_ZILOG
  409. select SWAP_IO_SPACE
  410. select SYS_HAS_CPU_R4X00
  411. select SYS_HAS_CPU_R5000
  412. #
  413. # Disable EARLY_PRINTK for now since it leads to overwritten prom
  414. # memory during early boot on some machines.
  415. #
  416. # See http://www.linux-mips.org/cgi-bin/mesg.cgi?a=linux-mips&i=20091119164009.GA15038%40deprecation.cyrius.com
  417. # for a more details discussion
  418. #
  419. # select SYS_HAS_EARLY_PRINTK
  420. select SYS_SUPPORTS_32BIT_KERNEL
  421. select SYS_SUPPORTS_64BIT_KERNEL
  422. select SYS_SUPPORTS_BIG_ENDIAN
  423. help
  424. This are the SGI Indy, Challenge S and Indigo2, as well as certain
  425. OEM variants like the Tandem CMN B006S. To compile a Linux kernel
  426. that runs on these, say Y here.
  427. config SGI_IP27
  428. bool "SGI IP27 (Origin200/2000)"
  429. select ARC
  430. select ARC64
  431. select BOOT_ELF64
  432. select DEFAULT_SGI_PARTITION
  433. select DMA_COHERENT
  434. select SYS_HAS_EARLY_PRINTK
  435. select HW_HAS_PCI
  436. select NR_CPUS_DEFAULT_64
  437. select SYS_HAS_CPU_R10000
  438. select SYS_SUPPORTS_64BIT_KERNEL
  439. select SYS_SUPPORTS_BIG_ENDIAN
  440. select SYS_SUPPORTS_NUMA
  441. select SYS_SUPPORTS_SMP
  442. help
  443. This are the SGI Origin 200, Origin 2000 and Onyx 2 Graphics
  444. workstations. To compile a Linux kernel that runs on these, say Y
  445. here.
  446. config SGI_IP28
  447. bool "SGI IP28 (Indigo2 R10k) (EXPERIMENTAL)"
  448. depends on EXPERIMENTAL
  449. select ARC
  450. select ARC64
  451. select BOOT_ELF64
  452. select CEVT_R4K
  453. select CSRC_R4K
  454. select DEFAULT_SGI_PARTITION
  455. select DMA_NONCOHERENT
  456. select GENERIC_ISA_DMA_SUPPORT_BROKEN
  457. select IRQ_CPU
  458. select HW_HAS_EISA
  459. select I8253
  460. select I8259
  461. select SGI_HAS_I8042
  462. select SGI_HAS_INDYDOG
  463. select SGI_HAS_HAL2
  464. select SGI_HAS_SEEQ
  465. select SGI_HAS_WD93
  466. select SGI_HAS_ZILOG
  467. select SWAP_IO_SPACE
  468. select SYS_HAS_CPU_R10000
  469. #
  470. # Disable EARLY_PRINTK for now since it leads to overwritten prom
  471. # memory during early boot on some machines.
  472. #
  473. # See http://www.linux-mips.org/cgi-bin/mesg.cgi?a=linux-mips&i=20091119164009.GA15038%40deprecation.cyrius.com
  474. # for a more details discussion
  475. #
  476. # select SYS_HAS_EARLY_PRINTK
  477. select SYS_SUPPORTS_64BIT_KERNEL
  478. select SYS_SUPPORTS_BIG_ENDIAN
  479. help
  480. This is the SGI Indigo2 with R10000 processor. To compile a Linux
  481. kernel that runs on these, say Y here.
  482. config SGI_IP32
  483. bool "SGI IP32 (O2)"
  484. select ARC
  485. select ARC32
  486. select BOOT_ELF32
  487. select CEVT_R4K
  488. select CSRC_R4K
  489. select DMA_NONCOHERENT
  490. select HW_HAS_PCI
  491. select IRQ_CPU
  492. select R5000_CPU_SCACHE
  493. select RM7000_CPU_SCACHE
  494. select SYS_HAS_CPU_R5000
  495. select SYS_HAS_CPU_R10000 if BROKEN
  496. select SYS_HAS_CPU_RM7000
  497. select SYS_HAS_CPU_NEVADA
  498. select SYS_SUPPORTS_64BIT_KERNEL
  499. select SYS_SUPPORTS_BIG_ENDIAN
  500. help
  501. If you want this kernel to run on SGI O2 workstation, say Y here.
  502. config SIBYTE_CRHINE
  503. bool "Sibyte BCM91120C-CRhine"
  504. depends on EXPERIMENTAL
  505. select BOOT_ELF32
  506. select DMA_COHERENT
  507. select SIBYTE_BCM1120
  508. select SWAP_IO_SPACE
  509. select SYS_HAS_CPU_SB1
  510. select SYS_SUPPORTS_BIG_ENDIAN
  511. select SYS_SUPPORTS_LITTLE_ENDIAN
  512. config SIBYTE_CARMEL
  513. bool "Sibyte BCM91120x-Carmel"
  514. depends on EXPERIMENTAL
  515. select BOOT_ELF32
  516. select DMA_COHERENT
  517. select SIBYTE_BCM1120
  518. select SWAP_IO_SPACE
  519. select SYS_HAS_CPU_SB1
  520. select SYS_SUPPORTS_BIG_ENDIAN
  521. select SYS_SUPPORTS_LITTLE_ENDIAN
  522. config SIBYTE_CRHONE
  523. bool "Sibyte BCM91125C-CRhone"
  524. depends on EXPERIMENTAL
  525. select BOOT_ELF32
  526. select DMA_COHERENT
  527. select SIBYTE_BCM1125
  528. select SWAP_IO_SPACE
  529. select SYS_HAS_CPU_SB1
  530. select SYS_SUPPORTS_BIG_ENDIAN
  531. select SYS_SUPPORTS_HIGHMEM
  532. select SYS_SUPPORTS_LITTLE_ENDIAN
  533. config SIBYTE_RHONE
  534. bool "Sibyte BCM91125E-Rhone"
  535. depends on EXPERIMENTAL
  536. select BOOT_ELF32
  537. select DMA_COHERENT
  538. select SIBYTE_BCM1125H
  539. select SWAP_IO_SPACE
  540. select SYS_HAS_CPU_SB1
  541. select SYS_SUPPORTS_BIG_ENDIAN
  542. select SYS_SUPPORTS_LITTLE_ENDIAN
  543. config SIBYTE_SWARM
  544. bool "Sibyte BCM91250A-SWARM"
  545. select BOOT_ELF32
  546. select DMA_COHERENT
  547. select HAVE_PATA_PLATFORM
  548. select NR_CPUS_DEFAULT_2
  549. select SIBYTE_SB1250
  550. select SWAP_IO_SPACE
  551. select SYS_HAS_CPU_SB1
  552. select SYS_SUPPORTS_BIG_ENDIAN
  553. select SYS_SUPPORTS_HIGHMEM
  554. select SYS_SUPPORTS_LITTLE_ENDIAN
  555. select ZONE_DMA32 if 64BIT
  556. config SIBYTE_LITTLESUR
  557. bool "Sibyte BCM91250C2-LittleSur"
  558. depends on EXPERIMENTAL
  559. select BOOT_ELF32
  560. select DMA_COHERENT
  561. select HAVE_PATA_PLATFORM
  562. select NR_CPUS_DEFAULT_2
  563. select SIBYTE_SB1250
  564. select SWAP_IO_SPACE
  565. select SYS_HAS_CPU_SB1
  566. select SYS_SUPPORTS_BIG_ENDIAN
  567. select SYS_SUPPORTS_HIGHMEM
  568. select SYS_SUPPORTS_LITTLE_ENDIAN
  569. config SIBYTE_SENTOSA
  570. bool "Sibyte BCM91250E-Sentosa"
  571. depends on EXPERIMENTAL
  572. select BOOT_ELF32
  573. select DMA_COHERENT
  574. select NR_CPUS_DEFAULT_2
  575. select SIBYTE_SB1250
  576. select SWAP_IO_SPACE
  577. select SYS_HAS_CPU_SB1
  578. select SYS_SUPPORTS_BIG_ENDIAN
  579. select SYS_SUPPORTS_LITTLE_ENDIAN
  580. config SIBYTE_BIGSUR
  581. bool "Sibyte BCM91480B-BigSur"
  582. select BOOT_ELF32
  583. select DMA_COHERENT
  584. select NR_CPUS_DEFAULT_4
  585. select SIBYTE_BCM1x80
  586. select SWAP_IO_SPACE
  587. select SYS_HAS_CPU_SB1
  588. select SYS_SUPPORTS_BIG_ENDIAN
  589. select SYS_SUPPORTS_HIGHMEM
  590. select SYS_SUPPORTS_LITTLE_ENDIAN
  591. select ZONE_DMA32 if 64BIT
  592. config SNI_RM
  593. bool "SNI RM200/300/400"
  594. select ARC if CPU_LITTLE_ENDIAN
  595. select ARC32 if CPU_LITTLE_ENDIAN
  596. select SNIPROM if CPU_BIG_ENDIAN
  597. select ARCH_MAY_HAVE_PC_FDC
  598. select BOOT_ELF32
  599. select CEVT_R4K
  600. select CSRC_R4K
  601. select DEFAULT_SGI_PARTITION if CPU_BIG_ENDIAN
  602. select DMA_NONCOHERENT
  603. select GENERIC_ISA_DMA
  604. select HAVE_PCSPKR_PLATFORM
  605. select HW_HAS_EISA
  606. select HW_HAS_PCI
  607. select IRQ_CPU
  608. select I8253
  609. select I8259
  610. select ISA
  611. select SWAP_IO_SPACE if CPU_BIG_ENDIAN
  612. select SYS_HAS_CPU_R4X00
  613. select SYS_HAS_CPU_R5000
  614. select SYS_HAS_CPU_R10000
  615. select R5000_CPU_SCACHE
  616. select SYS_HAS_EARLY_PRINTK
  617. select SYS_SUPPORTS_32BIT_KERNEL
  618. select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
  619. select SYS_SUPPORTS_BIG_ENDIAN
  620. select SYS_SUPPORTS_HIGHMEM
  621. select SYS_SUPPORTS_LITTLE_ENDIAN
  622. help
  623. The SNI RM200/300/400 are MIPS-based machines manufactured by
  624. Siemens Nixdorf Informationssysteme (SNI), parent company of Pyramid
  625. Technology and now in turn merged with Fujitsu. Say Y here to
  626. support this machine type.
  627. config MACH_TX39XX
  628. bool "Toshiba TX39 series based machines"
  629. config MACH_TX49XX
  630. bool "Toshiba TX49 series based machines"
  631. config MIKROTIK_RB532
  632. bool "Mikrotik RB532 boards"
  633. select CEVT_R4K
  634. select CSRC_R4K
  635. select DMA_NONCOHERENT
  636. select HW_HAS_PCI
  637. select IRQ_CPU
  638. select SYS_HAS_CPU_MIPS32_R1
  639. select SYS_SUPPORTS_32BIT_KERNEL
  640. select SYS_SUPPORTS_LITTLE_ENDIAN
  641. select SWAP_IO_SPACE
  642. select BOOT_RAW
  643. select ARCH_REQUIRE_GPIOLIB
  644. help
  645. Support the Mikrotik(tm) RouterBoard 532 series,
  646. based on the IDT RC32434 SoC.
  647. config WR_PPMC
  648. bool "Wind River PPMC board"
  649. select CEVT_R4K
  650. select CSRC_R4K
  651. select IRQ_CPU
  652. select BOOT_ELF32
  653. select DMA_NONCOHERENT
  654. select HW_HAS_PCI
  655. select PCI_GT64XXX_PCI0
  656. select SWAP_IO_SPACE
  657. select SYS_HAS_CPU_MIPS32_R1
  658. select SYS_HAS_CPU_MIPS32_R2
  659. select SYS_HAS_CPU_MIPS64_R1
  660. select SYS_HAS_CPU_NEVADA
  661. select SYS_HAS_CPU_RM7000
  662. select SYS_SUPPORTS_32BIT_KERNEL
  663. select SYS_SUPPORTS_64BIT_KERNEL
  664. select SYS_SUPPORTS_BIG_ENDIAN
  665. select SYS_SUPPORTS_LITTLE_ENDIAN
  666. help
  667. This enables support for the Wind River MIPS32 4KC PPMC evaluation
  668. board, which is based on GT64120 bridge chip.
  669. config CAVIUM_OCTEON_SIMULATOR
  670. bool "Cavium Networks Octeon Simulator"
  671. select CEVT_R4K
  672. select 64BIT_PHYS_ADDR
  673. select DMA_COHERENT
  674. select SYS_SUPPORTS_64BIT_KERNEL
  675. select SYS_SUPPORTS_BIG_ENDIAN
  676. select SYS_SUPPORTS_HOTPLUG_CPU
  677. select SYS_HAS_CPU_CAVIUM_OCTEON
  678. select HOLES_IN_ZONE
  679. help
  680. The Octeon simulator is software performance model of the Cavium
  681. Octeon Processor. It supports simulating Octeon processors on x86
  682. hardware.
  683. config CAVIUM_OCTEON_REFERENCE_BOARD
  684. bool "Cavium Networks Octeon reference board"
  685. select CEVT_R4K
  686. select 64BIT_PHYS_ADDR
  687. select DMA_COHERENT
  688. select SYS_SUPPORTS_64BIT_KERNEL
  689. select SYS_SUPPORTS_BIG_ENDIAN
  690. select SYS_SUPPORTS_HOTPLUG_CPU
  691. select SYS_HAS_EARLY_PRINTK
  692. select SYS_HAS_CPU_CAVIUM_OCTEON
  693. select SWAP_IO_SPACE
  694. select HW_HAS_PCI
  695. select ARCH_SUPPORTS_MSI
  696. select ZONE_DMA32
  697. select USB_ARCH_HAS_OHCI
  698. select USB_ARCH_HAS_EHCI
  699. select HOLES_IN_ZONE
  700. help
  701. This option supports all of the Octeon reference boards from Cavium
  702. Networks. It builds a kernel that dynamically determines the Octeon
  703. CPU type and supports all known board reference implementations.
  704. Some of the supported boards are:
  705. EBT3000
  706. EBH3000
  707. EBH3100
  708. Thunder
  709. Kodama
  710. Hikari
  711. Say Y here for most Octeon reference boards.
  712. config NLM_XLR_BOARD
  713. bool "Netlogic XLR/XLS based systems"
  714. depends on EXPERIMENTAL
  715. select BOOT_ELF32
  716. select NLM_COMMON
  717. select SYS_HAS_CPU_XLR
  718. select SYS_SUPPORTS_SMP
  719. select HW_HAS_PCI
  720. select SWAP_IO_SPACE
  721. select SYS_SUPPORTS_32BIT_KERNEL
  722. select SYS_SUPPORTS_64BIT_KERNEL
  723. select 64BIT_PHYS_ADDR
  724. select SYS_SUPPORTS_BIG_ENDIAN
  725. select SYS_SUPPORTS_HIGHMEM
  726. select DMA_COHERENT
  727. select NR_CPUS_DEFAULT_32
  728. select CEVT_R4K
  729. select CSRC_R4K
  730. select IRQ_CPU
  731. select ARCH_SUPPORTS_MSI
  732. select ZONE_DMA if 64BIT
  733. select SYNC_R4K
  734. select SYS_HAS_EARLY_PRINTK
  735. select USB_ARCH_HAS_OHCI if USB_SUPPORT
  736. select USB_ARCH_HAS_EHCI if USB_SUPPORT
  737. help
  738. Support for systems based on Netlogic XLR and XLS processors.
  739. Say Y here if you have a XLR or XLS based board.
  740. config NLM_XLP_BOARD
  741. bool "Netlogic XLP based systems"
  742. depends on EXPERIMENTAL
  743. select BOOT_ELF32
  744. select NLM_COMMON
  745. select SYS_HAS_CPU_XLP
  746. select SYS_SUPPORTS_SMP
  747. select HW_HAS_PCI
  748. select SYS_SUPPORTS_32BIT_KERNEL
  749. select SYS_SUPPORTS_64BIT_KERNEL
  750. select 64BIT_PHYS_ADDR
  751. select SYS_SUPPORTS_BIG_ENDIAN
  752. select SYS_SUPPORTS_LITTLE_ENDIAN
  753. select SYS_SUPPORTS_HIGHMEM
  754. select DMA_COHERENT
  755. select NR_CPUS_DEFAULT_32
  756. select CEVT_R4K
  757. select CSRC_R4K
  758. select IRQ_CPU
  759. select ZONE_DMA if 64BIT
  760. select SYNC_R4K
  761. select SYS_HAS_EARLY_PRINTK
  762. help
  763. This board is based on Netlogic XLP Processor.
  764. Say Y here if you have a XLP based board.
  765. endchoice
  766. source "arch/mips/alchemy/Kconfig"
  767. source "arch/mips/ath79/Kconfig"
  768. source "arch/mips/bcm47xx/Kconfig"
  769. source "arch/mips/bcm63xx/Kconfig"
  770. source "arch/mips/jazz/Kconfig"
  771. source "arch/mips/jz4740/Kconfig"
  772. source "arch/mips/lantiq/Kconfig"
  773. source "arch/mips/lasat/Kconfig"
  774. source "arch/mips/pmc-sierra/Kconfig"
  775. source "arch/mips/powertv/Kconfig"
  776. source "arch/mips/sgi-ip27/Kconfig"
  777. source "arch/mips/sibyte/Kconfig"
  778. source "arch/mips/txx9/Kconfig"
  779. source "arch/mips/vr41xx/Kconfig"
  780. source "arch/mips/cavium-octeon/Kconfig"
  781. source "arch/mips/loongson/Kconfig"
  782. source "arch/mips/loongson1/Kconfig"
  783. source "arch/mips/netlogic/Kconfig"
  784. endmenu
  785. config RWSEM_GENERIC_SPINLOCK
  786. bool
  787. default y
  788. config RWSEM_XCHGADD_ALGORITHM
  789. bool
  790. config ARCH_HAS_ILOG2_U32
  791. bool
  792. default n
  793. config ARCH_HAS_ILOG2_U64
  794. bool
  795. default n
  796. config GENERIC_HWEIGHT
  797. bool
  798. default y
  799. config GENERIC_CALIBRATE_DELAY
  800. bool
  801. default y
  802. config SCHED_OMIT_FRAME_POINTER
  803. bool
  804. default y
  805. #
  806. # Select some configuration options automatically based on user selections.
  807. #
  808. config ARC
  809. bool
  810. config ARCH_MAY_HAVE_PC_FDC
  811. bool
  812. config BOOT_RAW
  813. bool
  814. config CEVT_BCM1480
  815. bool
  816. config CEVT_DS1287
  817. bool
  818. config CEVT_GT641XX
  819. bool
  820. config CEVT_R4K_LIB
  821. bool
  822. config CEVT_R4K
  823. select CEVT_R4K_LIB
  824. bool
  825. config CEVT_SB1250
  826. bool
  827. config CEVT_TXX9
  828. bool
  829. config CSRC_BCM1480
  830. bool
  831. config CSRC_IOASIC
  832. bool
  833. config CSRC_POWERTV
  834. bool
  835. config CSRC_R4K_LIB
  836. bool
  837. config CSRC_R4K
  838. select CSRC_R4K_LIB
  839. bool
  840. config CSRC_SB1250
  841. bool
  842. config GPIO_TXX9
  843. select GENERIC_GPIO
  844. select ARCH_REQUIRE_GPIOLIB
  845. bool
  846. config CFE
  847. bool
  848. config ARCH_DMA_ADDR_T_64BIT
  849. def_bool (HIGHMEM && 64BIT_PHYS_ADDR) || 64BIT
  850. config DMA_COHERENT
  851. bool
  852. config DMA_NONCOHERENT
  853. bool
  854. select NEED_DMA_MAP_STATE
  855. config NEED_DMA_MAP_STATE
  856. bool
  857. config SYS_HAS_EARLY_PRINTK
  858. bool
  859. config HOTPLUG_CPU
  860. bool "Support for hot-pluggable CPUs"
  861. depends on SMP && HOTPLUG && SYS_SUPPORTS_HOTPLUG_CPU
  862. help
  863. Say Y here to allow turning CPUs off and on. CPUs can be
  864. controlled through /sys/devices/system/cpu.
  865. (Note: power management support will enable this option
  866. automatically on SMP systems. )
  867. Say N if you want to disable CPU hotplug.
  868. config SYS_SUPPORTS_HOTPLUG_CPU
  869. bool
  870. config I8259
  871. bool
  872. config MIPS_BONITO64
  873. bool
  874. config MIPS_MSC
  875. bool
  876. config MIPS_NILE4
  877. bool
  878. config MIPS_DISABLE_OBSOLETE_IDE
  879. bool
  880. config SYNC_R4K
  881. bool
  882. config MIPS_MACHINE
  883. def_bool n
  884. config NO_IOPORT
  885. def_bool n
  886. config GENERIC_ISA_DMA
  887. bool
  888. select ZONE_DMA if GENERIC_ISA_DMA_SUPPORT_BROKEN=n
  889. select ISA_DMA_API
  890. config GENERIC_ISA_DMA_SUPPORT_BROKEN
  891. bool
  892. select GENERIC_ISA_DMA
  893. config ISA_DMA_API
  894. bool
  895. config GENERIC_GPIO
  896. bool
  897. config HOLES_IN_ZONE
  898. bool
  899. #
  900. # Endianness selection. Sufficiently obscure so many users don't know what to
  901. # answer,so we try hard to limit the available choices. Also the use of a
  902. # choice statement should be more obvious to the user.
  903. #
  904. choice
  905. prompt "Endianness selection"
  906. help
  907. Some MIPS machines can be configured for either little or big endian
  908. byte order. These modes require different kernels and a different
  909. Linux distribution. In general there is one preferred byteorder for a
  910. particular system but some systems are just as commonly used in the
  911. one or the other endianness.
  912. config CPU_BIG_ENDIAN
  913. bool "Big endian"
  914. depends on SYS_SUPPORTS_BIG_ENDIAN
  915. config CPU_LITTLE_ENDIAN
  916. bool "Little endian"
  917. depends on SYS_SUPPORTS_LITTLE_ENDIAN
  918. help
  919. endchoice
  920. config EXPORT_UASM
  921. bool
  922. config SYS_SUPPORTS_APM_EMULATION
  923. bool
  924. config SYS_SUPPORTS_BIG_ENDIAN
  925. bool
  926. config SYS_SUPPORTS_LITTLE_ENDIAN
  927. bool
  928. config SYS_SUPPORTS_HUGETLBFS
  929. bool
  930. depends on CPU_SUPPORTS_HUGEPAGES && 64BIT
  931. default y
  932. config IRQ_CPU
  933. bool
  934. config IRQ_CPU_RM7K
  935. bool
  936. config IRQ_CPU_RM9K
  937. bool
  938. config IRQ_MSP_SLP
  939. bool
  940. config IRQ_MSP_CIC
  941. bool
  942. config IRQ_TXX9
  943. bool
  944. config IRQ_GT641XX
  945. bool
  946. config IRQ_GIC
  947. bool
  948. config MIPS_BOARDS_GEN
  949. bool
  950. config PCI_GT64XXX_PCI0
  951. bool
  952. config NO_EXCEPT_FILL
  953. bool
  954. config MIPS_RM9122
  955. bool
  956. select SERIAL_RM9000
  957. config SOC_EMMA2RH
  958. bool
  959. select CEVT_R4K
  960. select CSRC_R4K
  961. select DMA_NONCOHERENT
  962. select IRQ_CPU
  963. select SWAP_IO_SPACE
  964. select SYS_HAS_CPU_R5500
  965. select SYS_SUPPORTS_32BIT_KERNEL
  966. select SYS_SUPPORTS_64BIT_KERNEL
  967. select SYS_SUPPORTS_BIG_ENDIAN
  968. config SOC_PNX833X
  969. bool
  970. select CEVT_R4K
  971. select CSRC_R4K
  972. select IRQ_CPU
  973. select DMA_NONCOHERENT
  974. select SYS_HAS_CPU_MIPS32_R2
  975. select SYS_SUPPORTS_32BIT_KERNEL
  976. select SYS_SUPPORTS_LITTLE_ENDIAN
  977. select SYS_SUPPORTS_BIG_ENDIAN
  978. select GENERIC_GPIO
  979. select CPU_MIPSR2_IRQ_VI
  980. config SOC_PNX8335
  981. bool
  982. select SOC_PNX833X
  983. config PNX8550
  984. bool
  985. select SOC_PNX8550
  986. config SOC_PNX8550
  987. bool
  988. select DMA_NONCOHERENT
  989. select HW_HAS_PCI
  990. select SYS_HAS_CPU_MIPS32_R1
  991. select SYS_HAS_EARLY_PRINTK
  992. select SYS_SUPPORTS_32BIT_KERNEL
  993. select GENERIC_GPIO
  994. config SWAP_IO_SPACE
  995. bool
  996. config SERIAL_RM9000
  997. bool
  998. config SGI_HAS_INDYDOG
  999. bool
  1000. config SGI_HAS_HAL2
  1001. bool
  1002. config SGI_HAS_SEEQ
  1003. bool
  1004. config SGI_HAS_WD93
  1005. bool
  1006. config SGI_HAS_ZILOG
  1007. bool
  1008. config SGI_HAS_I8042
  1009. bool
  1010. config DEFAULT_SGI_PARTITION
  1011. bool
  1012. config ARC32
  1013. bool
  1014. config SNIPROM
  1015. bool
  1016. config BOOT_ELF32
  1017. bool
  1018. config MIPS_L1_CACHE_SHIFT
  1019. int
  1020. default "4" if MACH_DECSTATION || MIKROTIK_RB532 || PMC_MSP4200_EVAL
  1021. default "6" if MIPS_CPU_SCACHE
  1022. default "7" if SGI_IP22 || SGI_IP27 || SGI_IP28 || SNI_RM || CPU_CAVIUM_OCTEON
  1023. default "5"
  1024. config HAVE_STD_PC_SERIAL_PORT
  1025. bool
  1026. config ARC_CONSOLE
  1027. bool "ARC console support"
  1028. depends on SGI_IP22 || SGI_IP28 || (SNI_RM && CPU_LITTLE_ENDIAN)
  1029. config ARC_MEMORY
  1030. bool
  1031. depends on MACH_JAZZ || SNI_RM || SGI_IP32
  1032. default y
  1033. config ARC_PROMLIB
  1034. bool
  1035. depends on MACH_JAZZ || SNI_RM || SGI_IP22 || SGI_IP28 || SGI_IP32
  1036. default y
  1037. config ARC64
  1038. bool
  1039. config BOOT_ELF64
  1040. bool
  1041. menu "CPU selection"
  1042. choice
  1043. prompt "CPU type"
  1044. default CPU_R4X00
  1045. config CPU_LOONGSON2E
  1046. bool "Loongson 2E"
  1047. depends on SYS_HAS_CPU_LOONGSON2E
  1048. select CPU_LOONGSON2
  1049. help
  1050. The Loongson 2E processor implements the MIPS III instruction set
  1051. with many extensions.
  1052. It has an internal FPGA northbridge, which is compatible to
  1053. bonito64.
  1054. config CPU_LOONGSON2F
  1055. bool "Loongson 2F"
  1056. depends on SYS_HAS_CPU_LOONGSON2F
  1057. select CPU_LOONGSON2
  1058. select GENERIC_GPIO
  1059. select ARCH_REQUIRE_GPIOLIB
  1060. help
  1061. The Loongson 2F processor implements the MIPS III instruction set
  1062. with many extensions.
  1063. Loongson2F have built-in DDR2 and PCIX controller. The PCIX controller
  1064. have a similar programming interface with FPGA northbridge used in
  1065. Loongson2E.
  1066. config CPU_LOONGSON1B
  1067. bool "Loongson 1B"
  1068. depends on SYS_HAS_CPU_LOONGSON1B
  1069. select CPU_LOONGSON1
  1070. help
  1071. The Loongson 1B is a 32-bit SoC, which implements the MIPS32
  1072. release 2 instruction set.
  1073. config CPU_MIPS32_R1
  1074. bool "MIPS32 Release 1"
  1075. depends on SYS_HAS_CPU_MIPS32_R1
  1076. select CPU_HAS_PREFETCH
  1077. select CPU_SUPPORTS_32BIT_KERNEL
  1078. select CPU_SUPPORTS_HIGHMEM
  1079. help
  1080. Choose this option to build a kernel for release 1 or later of the
  1081. MIPS32 architecture. Most modern embedded systems with a 32-bit
  1082. MIPS processor are based on a MIPS32 processor. If you know the
  1083. specific type of processor in your system, choose those that one
  1084. otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
  1085. Release 2 of the MIPS32 architecture is available since several
  1086. years so chances are you even have a MIPS32 Release 2 processor
  1087. in which case you should choose CPU_MIPS32_R2 instead for better
  1088. performance.
  1089. config CPU_MIPS32_R2
  1090. bool "MIPS32 Release 2"
  1091. depends on SYS_HAS_CPU_MIPS32_R2
  1092. select CPU_HAS_PREFETCH
  1093. select CPU_SUPPORTS_32BIT_KERNEL
  1094. select CPU_SUPPORTS_HIGHMEM
  1095. help
  1096. Choose this option to build a kernel for release 2 or later of the
  1097. MIPS32 architecture. Most modern embedded systems with a 32-bit
  1098. MIPS processor are based on a MIPS32 processor. If you know the
  1099. specific type of processor in your system, choose those that one
  1100. otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
  1101. config CPU_MIPS64_R1
  1102. bool "MIPS64 Release 1"
  1103. depends on SYS_HAS_CPU_MIPS64_R1
  1104. select CPU_HAS_PREFETCH
  1105. select CPU_SUPPORTS_32BIT_KERNEL
  1106. select CPU_SUPPORTS_64BIT_KERNEL
  1107. select CPU_SUPPORTS_HIGHMEM
  1108. select CPU_SUPPORTS_HUGEPAGES
  1109. help
  1110. Choose this option to build a kernel for release 1 or later of the
  1111. MIPS64 architecture. Many modern embedded systems with a 64-bit
  1112. MIPS processor are based on a MIPS64 processor. If you know the
  1113. specific type of processor in your system, choose those that one
  1114. otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
  1115. Release 2 of the MIPS64 architecture is available since several
  1116. years so chances are you even have a MIPS64 Release 2 processor
  1117. in which case you should choose CPU_MIPS64_R2 instead for better
  1118. performance.
  1119. config CPU_MIPS64_R2
  1120. bool "MIPS64 Release 2"
  1121. depends on SYS_HAS_CPU_MIPS64_R2
  1122. select CPU_HAS_PREFETCH
  1123. select CPU_SUPPORTS_32BIT_KERNEL
  1124. select CPU_SUPPORTS_64BIT_KERNEL
  1125. select CPU_SUPPORTS_HIGHMEM
  1126. select CPU_SUPPORTS_HUGEPAGES
  1127. help
  1128. Choose this option to build a kernel for release 2 or later of the
  1129. MIPS64 architecture. Many modern embedded systems with a 64-bit
  1130. MIPS processor are based on a MIPS64 processor. If you know the
  1131. specific type of processor in your system, choose those that one
  1132. otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
  1133. config CPU_R3000
  1134. bool "R3000"
  1135. depends on SYS_HAS_CPU_R3000
  1136. select CPU_HAS_WB
  1137. select CPU_SUPPORTS_32BIT_KERNEL
  1138. select CPU_SUPPORTS_HIGHMEM
  1139. help
  1140. Please make sure to pick the right CPU type. Linux/MIPS is not
  1141. designed to be generic, i.e. Kernels compiled for R3000 CPUs will
  1142. *not* work on R4000 machines and vice versa. However, since most
  1143. of the supported machines have an R4000 (or similar) CPU, R4x00
  1144. might be a safe bet. If the resulting kernel does not work,
  1145. try to recompile with R3000.
  1146. config CPU_TX39XX
  1147. bool "R39XX"
  1148. depends on SYS_HAS_CPU_TX39XX
  1149. select CPU_SUPPORTS_32BIT_KERNEL
  1150. config CPU_VR41XX
  1151. bool "R41xx"
  1152. depends on SYS_HAS_CPU_VR41XX
  1153. select CPU_SUPPORTS_32BIT_KERNEL
  1154. select CPU_SUPPORTS_64BIT_KERNEL
  1155. help
  1156. The options selects support for the NEC VR4100 series of processors.
  1157. Only choose this option if you have one of these processors as a
  1158. kernel built with this option will not run on any other type of
  1159. processor or vice versa.
  1160. config CPU_R4300
  1161. bool "R4300"
  1162. depends on SYS_HAS_CPU_R4300
  1163. select CPU_SUPPORTS_32BIT_KERNEL
  1164. select CPU_SUPPORTS_64BIT_KERNEL
  1165. help
  1166. MIPS Technologies R4300-series processors.
  1167. config CPU_R4X00
  1168. bool "R4x00"
  1169. depends on SYS_HAS_CPU_R4X00
  1170. select CPU_SUPPORTS_32BIT_KERNEL
  1171. select CPU_SUPPORTS_64BIT_KERNEL
  1172. help
  1173. MIPS Technologies R4000-series processors other than 4300, including
  1174. the R4000, R4400, R4600, and 4700.
  1175. config CPU_TX49XX
  1176. bool "R49XX"
  1177. depends on SYS_HAS_CPU_TX49XX
  1178. select CPU_HAS_PREFETCH
  1179. select CPU_SUPPORTS_32BIT_KERNEL
  1180. select CPU_SUPPORTS_64BIT_KERNEL
  1181. config CPU_R5000
  1182. bool "R5000"
  1183. depends on SYS_HAS_CPU_R5000
  1184. select CPU_SUPPORTS_32BIT_KERNEL
  1185. select CPU_SUPPORTS_64BIT_KERNEL
  1186. help
  1187. MIPS Technologies R5000-series processors other than the Nevada.
  1188. config CPU_R5432
  1189. bool "R5432"
  1190. depends on SYS_HAS_CPU_R5432
  1191. select CPU_SUPPORTS_32BIT_KERNEL
  1192. select CPU_SUPPORTS_64BIT_KERNEL
  1193. config CPU_R5500
  1194. bool "R5500"
  1195. depends on SYS_HAS_CPU_R5500
  1196. select CPU_SUPPORTS_32BIT_KERNEL
  1197. select CPU_SUPPORTS_64BIT_KERNEL
  1198. select CPU_SUPPORTS_HUGEPAGES
  1199. help
  1200. NEC VR5500 and VR5500A series processors implement 64-bit MIPS IV
  1201. instruction set.
  1202. config CPU_R6000
  1203. bool "R6000"
  1204. depends on EXPERIMENTAL
  1205. depends on SYS_HAS_CPU_R6000
  1206. select CPU_SUPPORTS_32BIT_KERNEL
  1207. help
  1208. MIPS Technologies R6000 and R6000A series processors. Note these
  1209. processors are extremely rare and the support for them is incomplete.
  1210. config CPU_NEVADA
  1211. bool "RM52xx"
  1212. depends on SYS_HAS_CPU_NEVADA
  1213. select CPU_SUPPORTS_32BIT_KERNEL
  1214. select CPU_SUPPORTS_64BIT_KERNEL
  1215. help
  1216. QED / PMC-Sierra RM52xx-series ("Nevada") processors.
  1217. config CPU_R8000
  1218. bool "R8000"
  1219. depends on EXPERIMENTAL
  1220. depends on SYS_HAS_CPU_R8000
  1221. select CPU_HAS_PREFETCH
  1222. select CPU_SUPPORTS_64BIT_KERNEL
  1223. help
  1224. MIPS Technologies R8000 processors. Note these processors are
  1225. uncommon and the support for them is incomplete.
  1226. config CPU_R10000
  1227. bool "R10000"
  1228. depends on SYS_HAS_CPU_R10000
  1229. select CPU_HAS_PREFETCH
  1230. select CPU_SUPPORTS_32BIT_KERNEL
  1231. select CPU_SUPPORTS_64BIT_KERNEL
  1232. select CPU_SUPPORTS_HIGHMEM
  1233. help
  1234. MIPS Technologies R10000-series processors.
  1235. config CPU_RM7000
  1236. bool "RM7000"
  1237. depends on SYS_HAS_CPU_RM7000
  1238. select CPU_HAS_PREFETCH
  1239. select CPU_SUPPORTS_32BIT_KERNEL
  1240. select CPU_SUPPORTS_64BIT_KERNEL
  1241. select CPU_SUPPORTS_HIGHMEM
  1242. config CPU_RM9000
  1243. bool "RM9000"
  1244. depends on SYS_HAS_CPU_RM9000
  1245. select CPU_HAS_PREFETCH
  1246. select CPU_SUPPORTS_32BIT_KERNEL
  1247. select CPU_SUPPORTS_64BIT_KERNEL
  1248. select CPU_SUPPORTS_HIGHMEM
  1249. select WEAK_ORDERING
  1250. config CPU_SB1
  1251. bool "SB1"
  1252. depends on SYS_HAS_CPU_SB1
  1253. select CPU_SUPPORTS_32BIT_KERNEL
  1254. select CPU_SUPPORTS_64BIT_KERNEL
  1255. select CPU_SUPPORTS_HIGHMEM
  1256. select WEAK_ORDERING
  1257. config CPU_CAVIUM_OCTEON
  1258. bool "Cavium Octeon processor"
  1259. depends on SYS_HAS_CPU_CAVIUM_OCTEON
  1260. select ARCH_SPARSEMEM_ENABLE
  1261. select CPU_HAS_PREFETCH
  1262. select CPU_SUPPORTS_64BIT_KERNEL
  1263. select SYS_SUPPORTS_SMP
  1264. select NR_CPUS_DEFAULT_16
  1265. select WEAK_ORDERING
  1266. select CPU_SUPPORTS_HIGHMEM
  1267. select CPU_SUPPORTS_HUGEPAGES
  1268. select LIBFDT
  1269. select USE_OF
  1270. help
  1271. The Cavium Octeon processor is a highly integrated chip containing
  1272. many ethernet hardware widgets for networking tasks. The processor
  1273. can have up to 16 Mips64v2 cores and 8 integrated gigabit ethernets.
  1274. Full details can be found at http://www.caviumnetworks.com.
  1275. config CPU_BMIPS3300
  1276. bool "BMIPS3300"
  1277. depends on SYS_HAS_CPU_BMIPS3300
  1278. select CPU_BMIPS
  1279. help
  1280. Broadcom BMIPS3300 processors.
  1281. config CPU_BMIPS4350
  1282. bool "BMIPS4350"
  1283. depends on SYS_HAS_CPU_BMIPS4350
  1284. select CPU_BMIPS
  1285. select SYS_SUPPORTS_SMP
  1286. select SYS_SUPPORTS_HOTPLUG_CPU
  1287. help
  1288. Broadcom BMIPS4350 ("VIPER") processors.
  1289. config CPU_BMIPS4380
  1290. bool "BMIPS4380"
  1291. depends on SYS_HAS_CPU_BMIPS4380
  1292. select CPU_BMIPS
  1293. select SYS_SUPPORTS_SMP
  1294. select SYS_SUPPORTS_HOTPLUG_CPU
  1295. help
  1296. Broadcom BMIPS4380 processors.
  1297. config CPU_BMIPS5000
  1298. bool "BMIPS5000"
  1299. depends on SYS_HAS_CPU_BMIPS5000
  1300. select CPU_BMIPS
  1301. select CPU_SUPPORTS_HIGHMEM
  1302. select MIPS_CPU_SCACHE
  1303. select SYS_SUPPORTS_SMP
  1304. select SYS_SUPPORTS_HOTPLUG_CPU
  1305. help
  1306. Broadcom BMIPS5000 processors.
  1307. config CPU_XLR
  1308. bool "Netlogic XLR SoC"
  1309. depends on SYS_HAS_CPU_XLR
  1310. select CPU_SUPPORTS_32BIT_KERNEL
  1311. select CPU_SUPPORTS_64BIT_KERNEL
  1312. select CPU_SUPPORTS_HIGHMEM
  1313. select WEAK_ORDERING
  1314. select WEAK_REORDERING_BEYOND_LLSC
  1315. select CPU_SUPPORTS_HUGEPAGES
  1316. help
  1317. Netlogic Microsystems XLR/XLS processors.
  1318. config CPU_XLP
  1319. bool "Netlogic XLP SoC"
  1320. depends on SYS_HAS_CPU_XLP
  1321. select CPU_SUPPORTS_32BIT_KERNEL
  1322. select CPU_SUPPORTS_64BIT_KERNEL
  1323. select CPU_SUPPORTS_HIGHMEM
  1324. select CPU_HAS_LLSC
  1325. select WEAK_ORDERING
  1326. select WEAK_REORDERING_BEYOND_LLSC
  1327. select CPU_HAS_PREFETCH
  1328. help
  1329. Netlogic Microsystems XLP processors.
  1330. endchoice
  1331. if CPU_LOONGSON2F
  1332. config CPU_NOP_WORKAROUNDS
  1333. bool
  1334. config CPU_JUMP_WORKAROUNDS
  1335. bool
  1336. config CPU_LOONGSON2F_WORKAROUNDS
  1337. bool "Loongson 2F Workarounds"
  1338. default y
  1339. select CPU_NOP_WORKAROUNDS
  1340. select CPU_JUMP_WORKAROUNDS
  1341. help
  1342. Loongson 2F01 / 2F02 processors have the NOP & JUMP issues which
  1343. require workarounds. Without workarounds the system may hang
  1344. unexpectedly. For more information please refer to the gas
  1345. -mfix-loongson2f-nop and -mfix-loongson2f-jump options.
  1346. Loongson 2F03 and later have fixed these issues and no workarounds
  1347. are needed. The workarounds have no significant side effect on them
  1348. but may decrease the performance of the system so this option should
  1349. be disabled unless the kernel is intended to be run on 2F01 or 2F02
  1350. systems.
  1351. If unsure, please say Y.
  1352. endif # CPU_LOONGSON2F
  1353. config SYS_SUPPORTS_ZBOOT
  1354. bool
  1355. select HAVE_KERNEL_GZIP
  1356. select HAVE_KERNEL_BZIP2
  1357. select HAVE_KERNEL_LZMA
  1358. select HAVE_KERNEL_LZO
  1359. config SYS_SUPPORTS_ZBOOT_UART16550
  1360. bool
  1361. select SYS_SUPPORTS_ZBOOT
  1362. config CPU_LOONGSON2
  1363. bool
  1364. select CPU_SUPPORTS_32BIT_KERNEL
  1365. select CPU_SUPPORTS_64BIT_KERNEL
  1366. select CPU_SUPPORTS_HIGHMEM
  1367. config CPU_LOONGSON1
  1368. bool
  1369. select CPU_MIPS32
  1370. select CPU_MIPSR2
  1371. select CPU_HAS_PREFETCH
  1372. select CPU_SUPPORTS_32BIT_KERNEL
  1373. select CPU_SUPPORTS_HIGHMEM
  1374. config CPU_BMIPS
  1375. bool
  1376. select CPU_MIPS32
  1377. select CPU_SUPPORTS_32BIT_KERNEL
  1378. select DMA_NONCOHERENT
  1379. select IRQ_CPU
  1380. select SWAP_IO_SPACE
  1381. select WEAK_ORDERING
  1382. config SYS_HAS_CPU_LOONGSON2E
  1383. bool
  1384. config SYS_HAS_CPU_LOONGSON2F
  1385. bool
  1386. select CPU_SUPPORTS_CPUFREQ
  1387. select CPU_SUPPORTS_ADDRWINCFG if 64BIT
  1388. select CPU_SUPPORTS_UNCACHED_ACCELERATED
  1389. config SYS_HAS_CPU_LOONGSON1B
  1390. bool
  1391. config SYS_HAS_CPU_MIPS32_R1
  1392. bool
  1393. config SYS_HAS_CPU_MIPS32_R2
  1394. bool
  1395. config SYS_HAS_CPU_MIPS64_R1
  1396. bool
  1397. config SYS_HAS_CPU_MIPS64_R2
  1398. bool
  1399. config SYS_HAS_CPU_R3000
  1400. bool
  1401. config SYS_HAS_CPU_TX39XX
  1402. bool
  1403. config SYS_HAS_CPU_VR41XX
  1404. bool
  1405. config SYS_HAS_CPU_R4300
  1406. bool
  1407. config SYS_HAS_CPU_R4X00
  1408. bool
  1409. config SYS_HAS_CPU_TX49XX
  1410. bool
  1411. config SYS_HAS_CPU_R5000
  1412. bool
  1413. config SYS_HAS_CPU_R5432
  1414. bool
  1415. config SYS_HAS_CPU_R5500
  1416. bool
  1417. config SYS_HAS_CPU_R6000
  1418. bool
  1419. config SYS_HAS_CPU_NEVADA
  1420. bool
  1421. config SYS_HAS_CPU_R8000
  1422. bool
  1423. config SYS_HAS_CPU_R10000
  1424. bool
  1425. config SYS_HAS_CPU_RM7000
  1426. bool
  1427. config SYS_HAS_CPU_RM9000
  1428. bool
  1429. config SYS_HAS_CPU_SB1
  1430. bool
  1431. config SYS_HAS_CPU_CAVIUM_OCTEON
  1432. bool
  1433. config SYS_HAS_CPU_BMIPS3300
  1434. bool
  1435. config SYS_HAS_CPU_BMIPS4350
  1436. bool
  1437. config SYS_HAS_CPU_BMIPS4380
  1438. bool
  1439. config SYS_HAS_CPU_BMIPS5000
  1440. bool
  1441. config SYS_HAS_CPU_XLR
  1442. bool
  1443. config SYS_HAS_CPU_XLP
  1444. bool
  1445. #
  1446. # CPU may reorder R->R, R->W, W->R, W->W
  1447. # Reordering beyond LL and SC is handled in WEAK_REORDERING_BEYOND_LLSC
  1448. #
  1449. config WEAK_ORDERING
  1450. bool
  1451. #
  1452. # CPU may reorder reads and writes beyond LL/SC
  1453. # CPU may reorder R->LL, R->LL, W->LL, W->LL, R->SC, R->SC, W->SC, W->SC
  1454. #
  1455. config WEAK_REORDERING_BEYOND_LLSC
  1456. bool
  1457. endmenu
  1458. #
  1459. # These two indicate any level of the MIPS32 and MIPS64 architecture
  1460. #
  1461. config CPU_MIPS32
  1462. bool
  1463. default y if CPU_MIPS32_R1 || CPU_MIPS32_R2
  1464. config CPU_MIPS64
  1465. bool
  1466. default y if CPU_MIPS64_R1 || CPU_MIPS64_R2
  1467. #
  1468. # These two indicate the revision of the architecture, either Release 1 or Release 2
  1469. #
  1470. config CPU_MIPSR1
  1471. bool
  1472. default y if CPU_MIPS32_R1 || CPU_MIPS64_R1
  1473. config CPU_MIPSR2
  1474. bool
  1475. default y if CPU_MIPS32_R2 || CPU_MIPS64_R2 || CPU_CAVIUM_OCTEON
  1476. config SYS_SUPPORTS_32BIT_KERNEL
  1477. bool
  1478. config SYS_SUPPORTS_64BIT_KERNEL
  1479. bool
  1480. config CPU_SUPPORTS_32BIT_KERNEL
  1481. bool
  1482. config CPU_SUPPORTS_64BIT_KERNEL
  1483. bool
  1484. config CPU_SUPPORTS_CPUFREQ
  1485. bool
  1486. config CPU_SUPPORTS_ADDRWINCFG
  1487. bool
  1488. config CPU_SUPPORTS_HUGEPAGES
  1489. bool
  1490. config CPU_SUPPORTS_UNCACHED_ACCELERATED
  1491. bool
  1492. config MIPS_PGD_C0_CONTEXT
  1493. bool
  1494. default y if 64BIT && CPU_MIPSR2
  1495. #
  1496. # Set to y for ptrace access to watch registers.
  1497. #
  1498. config HARDWARE_WATCHPOINTS
  1499. bool
  1500. default y if CPU_MIPSR1 || CPU_MIPSR2
  1501. menu "Kernel type"
  1502. choice
  1503. prompt "Kernel code model"
  1504. help
  1505. You should only select this option if you have a workload that
  1506. actually benefits from 64-bit processing or if your machine has
  1507. large memory. You will only be presented a single option in this
  1508. menu if your system does not support both 32-bit and 64-bit kernels.
  1509. config 32BIT
  1510. bool "32-bit kernel"
  1511. depends on CPU_SUPPORTS_32BIT_KERNEL && SYS_SUPPORTS_32BIT_KERNEL
  1512. select TRAD_SIGNALS
  1513. help
  1514. Select this option if you want to build a 32-bit kernel.
  1515. config 64BIT
  1516. bool "64-bit kernel"
  1517. depends on CPU_SUPPORTS_64BIT_KERNEL && SYS_SUPPORTS_64BIT_KERNEL
  1518. select HAVE_SYSCALL_WRAPPERS
  1519. help
  1520. Select this option if you want to build a 64-bit kernel.
  1521. endchoice
  1522. choice
  1523. prompt "Kernel page size"
  1524. default PAGE_SIZE_4KB
  1525. config PAGE_SIZE_4KB
  1526. bool "4kB"
  1527. depends on !CPU_LOONGSON2
  1528. help
  1529. This option select the standard 4kB Linux page size. On some
  1530. R3000-family processors this is the only available page size. Using
  1531. 4kB page size will minimize memory consumption and is therefore
  1532. recommended for low memory systems.
  1533. config PAGE_SIZE_8KB
  1534. bool "8kB"
  1535. depends on (EXPERIMENTAL && CPU_R8000) || CPU_CAVIUM_OCTEON
  1536. help
  1537. Using 8kB page size will result in higher performance kernel at
  1538. the price of higher memory consumption. This option is available
  1539. only on R8000 and cnMIPS processors. Note that you will need a
  1540. suitable Linux distribution to support this.
  1541. config PAGE_SIZE_16KB
  1542. bool "16kB"
  1543. depends on !CPU_R3000 && !CPU_TX39XX
  1544. help
  1545. Using 16kB page size will result in higher performance kernel at
  1546. the price of higher memory consumption. This option is available on
  1547. all non-R3000 family processors. Note that you will need a suitable
  1548. Linux distribution to support this.
  1549. config PAGE_SIZE_32KB
  1550. bool "32kB"
  1551. depends on CPU_CAVIUM_OCTEON
  1552. help
  1553. Using 32kB page size will result in higher performance kernel at
  1554. the price of higher memory consumption. This option is available
  1555. only on cnMIPS cores. Note that you will need a suitable Linux
  1556. distribution to support this.
  1557. config PAGE_SIZE_64KB
  1558. bool "64kB"
  1559. depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX
  1560. help
  1561. Using 64kB page size will result in higher performance kernel at
  1562. the price of higher memory consumption. This option is available on
  1563. all non-R3000 family processor. Not that at the time of this
  1564. writing this option is still high experimental.
  1565. endchoice
  1566. config FORCE_MAX_ZONEORDER
  1567. int "Maximum zone order"
  1568. range 14 64 if HUGETLB_PAGE && PAGE_SIZE_64KB
  1569. default "14" if HUGETLB_PAGE && PAGE_SIZE_64KB
  1570. range 13 64 if HUGETLB_PAGE && PAGE_SIZE_32KB
  1571. default "13" if HUGETLB_PAGE && PAGE_SIZE_32KB
  1572. range 12 64 if HUGETLB_PAGE && PAGE_SIZE_16KB
  1573. default "12" if HUGETLB_PAGE && PAGE_SIZE_16KB
  1574. range 11 64
  1575. default "11"
  1576. help
  1577. The kernel memory allocator divides physically contiguous memory
  1578. blocks into "zones", where each zone is a power of two number of
  1579. pages. This option selects the largest power of two that the kernel
  1580. keeps in the memory allocator. If you need to allocate very large
  1581. blocks of physically contiguous memory, then you may need to
  1582. increase this value.
  1583. This config option is actually maximum order plus one. For example,
  1584. a value of 11 means that the largest free memory block is 2^10 pages.
  1585. The page size is not necessarily 4KB. Keep this in mind
  1586. when choosing a value for this option.
  1587. config BOARD_SCACHE
  1588. bool
  1589. config IP22_CPU_SCACHE
  1590. bool
  1591. select BOARD_SCACHE
  1592. #
  1593. # Support for a MIPS32 / MIPS64 style S-caches
  1594. #
  1595. config MIPS_CPU_SCACHE
  1596. bool
  1597. select BOARD_SCACHE
  1598. config R5000_CPU_SCACHE
  1599. bool
  1600. select BOARD_SCACHE
  1601. config RM7000_CPU_SCACHE
  1602. bool
  1603. select BOARD_SCACHE
  1604. config SIBYTE_DMA_PAGEOPS
  1605. bool "Use DMA to clear/copy pages"
  1606. depends on CPU_SB1
  1607. help
  1608. Instead of using the CPU to zero and copy pages, use a Data Mover
  1609. channel. These DMA channels are otherwise unused by the standard
  1610. SiByte Linux port. Seems to give a small performance benefit.
  1611. config CPU_HAS_PREFETCH
  1612. bool
  1613. choice
  1614. prompt "MIPS MT options"
  1615. config MIPS_MT_DISABLED
  1616. bool "Disable multithreading support."
  1617. help
  1618. Use this option if your workload can't take advantage of
  1619. MIPS hardware multithreading support. On systems that don't have
  1620. the option of an MT-enabled processor this option will be the only
  1621. option in this menu.
  1622. config MIPS_MT_SMP
  1623. bool "Use 1 TC on each available VPE for SMP"
  1624. depends on SYS_SUPPORTS_MULTITHREADING
  1625. select CPU_MIPSR2_IRQ_VI
  1626. select CPU_MIPSR2_IRQ_EI
  1627. select MIPS_MT
  1628. select NR_CPUS_DEFAULT_2
  1629. select SMP
  1630. select SYS_SUPPORTS_SCHED_SMT if SMP
  1631. select SYS_SUPPORTS_SMP
  1632. select SMP_UP
  1633. help
  1634. This is a kernel model which is known a VSMP but lately has been
  1635. marketesed into SMVP.
  1636. Virtual SMP uses the processor's VPEs to implement virtual
  1637. processors. In currently available configuration of the 34K processor
  1638. this allows for a dual processor. Both processors will share the same
  1639. primary caches; each will obtain the half of the TLB for it's own
  1640. exclusive use. For a layman this model can be described as similar to
  1641. what Intel calls Hyperthreading.
  1642. For further information see http://www.linux-mips.org/wiki/34K#VSMP
  1643. config MIPS_MT_SMTC
  1644. bool "SMTC: Use all TCs on all VPEs for SMP"
  1645. depends on CPU_MIPS32_R2
  1646. #depends on CPU_MIPS64_R2 # once there is hardware ...
  1647. depends on SYS_SUPPORTS_MULTITHREADING
  1648. select CPU_MIPSR2_IRQ_VI
  1649. select CPU_MIPSR2_IRQ_EI
  1650. select MIPS_MT
  1651. select NR_CPUS_DEFAULT_8
  1652. select SMP
  1653. select SYS_SUPPORTS_SMP
  1654. select SMP_UP
  1655. help
  1656. This is a kernel model which is known a SMTC or lately has been
  1657. marketesed into SMVP.
  1658. is presenting the available TC's of the core as processors to Linux.
  1659. On currently available 34K processors this means a Linux system will
  1660. see up to 5 processors. The implementation of the SMTC kernel differs
  1661. significantly from VSMP and cannot efficiently coexist in the same
  1662. kernel binary so the choice between VSMP and SMTC is a compile time
  1663. decision.
  1664. For further information see http://www.linux-mips.org/wiki/34K#SMTC
  1665. endchoice
  1666. config MIPS_MT
  1667. bool
  1668. config SCHED_SMT
  1669. bool "SMT (multithreading) scheduler support"
  1670. depends on SYS_SUPPORTS_SCHED_SMT
  1671. default n
  1672. help
  1673. SMT scheduler support improves the CPU scheduler's decision making
  1674. when dealing with MIPS MT enabled cores at a cost of slightly
  1675. increased overhead in some places. If unsure say N here.
  1676. config SYS_SUPPORTS_SCHED_SMT
  1677. bool
  1678. config SYS_SUPPORTS_MULTITHREADING
  1679. bool
  1680. config MIPS_MT_FPAFF
  1681. bool "Dynamic FPU affinity for FP-intensive threads"
  1682. default y
  1683. depends on MIPS_MT_SMP || MIPS_MT_SMTC
  1684. config MIPS_VPE_LOADER
  1685. bool "VPE loader support."
  1686. depends on SYS_SUPPORTS_MULTITHREADING
  1687. select CPU_MIPSR2_IRQ_VI
  1688. select CPU_MIPSR2_IRQ_EI
  1689. select MIPS_MT
  1690. help
  1691. Includes a loader for loading an elf relocatable object
  1692. onto another VPE and running it.
  1693. config MIPS_MT_SMTC_IM_BACKSTOP
  1694. bool "Use per-TC register bits as backstop for inhibited IM bits"
  1695. depends on MIPS_MT_SMTC
  1696. default n
  1697. help
  1698. To support multiple TC microthreads acting as "CPUs" within
  1699. a VPE, VPE-wide interrupt mask bits must be specially manipulated
  1700. during interrupt handling. To support legacy drivers and interrupt
  1701. controller management code, SMTC has a "backstop" to track and
  1702. if necessary restore the interrupt mask. This has some performance
  1703. impact on interrupt service overhead.
  1704. config MIPS_MT_SMTC_IRQAFF
  1705. bool "Support IRQ affinity API"
  1706. depends on MIPS_MT_SMTC
  1707. default n
  1708. help
  1709. Enables SMP IRQ affinity API (/proc/irq/*/smp_affinity, etc.)
  1710. for SMTC Linux kernel. Requires platform support, of which
  1711. an example can be found in the MIPS kernel i8259 and Malta
  1712. platform code. Adds some overhead to interrupt dispatch, and
  1713. should be used only if you know what you are doing.
  1714. config MIPS_VPE_LOADER_TOM
  1715. bool "Load VPE program into memory hidden from linux"
  1716. depends on MIPS_VPE_LOADER
  1717. default y
  1718. help
  1719. The loader can use memory that is present but has been hidden from
  1720. Linux using the kernel command line option "mem=xxMB". It's up to
  1721. you to ensure the amount you put in the option and the space your
  1722. program requires is less or equal to the amount physically present.
  1723. # this should possibly be in drivers/char, but it is rather cpu related. Hmmm
  1724. config MIPS_VPE_APSP_API
  1725. bool "Enable support for AP/SP API (RTLX)"
  1726. depends on MIPS_VPE_LOADER
  1727. help
  1728. config MIPS_APSP_KSPD
  1729. bool "Enable KSPD"
  1730. depends on MIPS_VPE_APSP_API
  1731. default y
  1732. help
  1733. KSPD is a kernel daemon that accepts syscall requests from the SP
  1734. side, actions them and returns the results. It also handles the
  1735. "exit" syscall notifying other kernel modules the SP program is
  1736. exiting. You probably want to say yes here.
  1737. config MIPS_CMP
  1738. bool "MIPS CMP framework support"
  1739. depends on SYS_SUPPORTS_MIPS_CMP
  1740. select SYNC_R4K
  1741. select SYS_SUPPORTS_SMP
  1742. select SYS_SUPPORTS_SCHED_SMT if SMP
  1743. select WEAK_ORDERING
  1744. default n
  1745. help
  1746. This is a placeholder option for the GCMP work. It will need to
  1747. be handled differently...
  1748. config SB1_PASS_1_WORKAROUNDS
  1749. bool
  1750. depends on CPU_SB1_PASS_1
  1751. default y
  1752. config SB1_PASS_2_WORKAROUNDS
  1753. bool
  1754. depends on CPU_SB1 && (CPU_SB1_PASS_2_2 || CPU_SB1_PASS_2)
  1755. default y
  1756. config SB1_PASS_2_1_WORKAROUNDS
  1757. bool
  1758. depends on CPU_SB1 && CPU_SB1_PASS_2
  1759. default y
  1760. config 64BIT_PHYS_ADDR
  1761. bool
  1762. config ARCH_PHYS_ADDR_T_64BIT
  1763. def_bool 64BIT_PHYS_ADDR
  1764. config CPU_HAS_SMARTMIPS
  1765. depends on SYS_SUPPORTS_SMARTMIPS
  1766. bool "Support for the SmartMIPS ASE"
  1767. help
  1768. SmartMIPS is a extension of the MIPS32 architecture aimed at
  1769. increased security at both hardware and software level for
  1770. smartcards. Enabling this option will allow proper use of the
  1771. SmartMIPS instructions by Linux applications. However a kernel with
  1772. this option will not work on a MIPS core without SmartMIPS core. If
  1773. you don't know you probably don't have SmartMIPS and should say N
  1774. here.
  1775. config CPU_HAS_WB
  1776. bool
  1777. config XKS01
  1778. bool
  1779. #
  1780. # Vectored interrupt mode is an R2 feature
  1781. #
  1782. config CPU_MIPSR2_IRQ_VI
  1783. bool
  1784. #
  1785. # Extended interrupt mode is an R2 feature
  1786. #
  1787. config CPU_MIPSR2_IRQ_EI
  1788. bool
  1789. config CPU_HAS_SYNC
  1790. bool
  1791. depends on !CPU_R3000
  1792. default y
  1793. #
  1794. # CPU non-features
  1795. #
  1796. config CPU_DADDI_WORKAROUNDS
  1797. bool
  1798. config CPU_R4000_WORKAROUNDS
  1799. bool
  1800. select CPU_R4400_WORKAROUNDS
  1801. config CPU_R4400_WORKAROUNDS
  1802. bool
  1803. #
  1804. # - Highmem only makes sense for the 32-bit kernel.
  1805. # - The current highmem code will only work properly on physically indexed
  1806. # caches such as R3000, SB1, R7000 or those that look like they're virtually
  1807. # indexed such as R4000/R4400 SC and MC versions or R10000. So for the
  1808. # moment we protect the user and offer the highmem option only on machines
  1809. # where it's known to be safe. This will not offer highmem on a few systems
  1810. # such as MIPS32 and MIPS64 CPUs which may have virtual and physically
  1811. # indexed CPUs but we're playing safe.
  1812. # - We use SYS_SUPPORTS_HIGHMEM to offer highmem only for systems where we
  1813. # know they might have memory configurations that could make use of highmem
  1814. # support.
  1815. #
  1816. config HIGHMEM
  1817. bool "High Memory Support"
  1818. depends on 32BIT && CPU_SUPPORTS_HIGHMEM && SYS_SUPPORTS_HIGHMEM
  1819. config CPU_SUPPORTS_HIGHMEM
  1820. bool
  1821. config SYS_SUPPORTS_HIGHMEM
  1822. bool
  1823. config SYS_SUPPORTS_SMARTMIPS
  1824. bool
  1825. config ARCH_FLATMEM_ENABLE
  1826. def_bool y
  1827. depends on !NUMA && !CPU_LOONGSON2
  1828. config ARCH_DISCONTIGMEM_ENABLE
  1829. bool
  1830. default y if SGI_IP27
  1831. help
  1832. Say Y to support efficient handling of discontiguous physical memory,
  1833. for architectures which are either NUMA (Non-Uniform Memory Access)
  1834. or have huge holes in the physical address space for other reasons.
  1835. See <file:Documentation/vm/numa> for more.
  1836. config ARCH_SPARSEMEM_ENABLE
  1837. bool
  1838. select SPARSEMEM_STATIC
  1839. config NUMA
  1840. bool "NUMA Support"
  1841. depends on SYS_SUPPORTS_NUMA
  1842. help
  1843. Say Y to compile the kernel to support NUMA (Non-Uniform Memory
  1844. Access). This option improves performance on systems with more
  1845. than two nodes; on two node systems it is generally better to
  1846. leave it disabled; on single node systems disable this option
  1847. disabled.
  1848. config SYS_SUPPORTS_NUMA
  1849. bool
  1850. config NODES_SHIFT
  1851. int
  1852. default "6"
  1853. depends on NEED_MULTIPLE_NODES
  1854. config HW_PERF_EVENTS
  1855. bool "Enable hardware performance counter support for perf events"
  1856. depends on PERF_EVENTS && !MIPS_MT_SMTC && OPROFILE=n && (CPU_MIPS32 || CPU_MIPS64 || CPU_R10000 || CPU_SB1 || CPU_CAVIUM_OCTEON)
  1857. default y
  1858. help
  1859. Enable hardware performance counter support for perf events. If
  1860. disabled, perf events will use software events only.
  1861. source "mm/Kconfig"
  1862. config SMP
  1863. bool "Multi-Processing support"
  1864. depends on SYS_SUPPORTS_SMP
  1865. select IRQ_PER_CPU
  1866. select USE_GENERIC_SMP_HELPERS
  1867. help
  1868. This enables support for systems with more than one CPU. If you have
  1869. a system with only one CPU, like most personal computers, say N. If
  1870. you have a system with more than one CPU, say Y.
  1871. If you say N here, the kernel will run on single and multiprocessor
  1872. machines, but will use only one CPU of a multiprocessor machine. If
  1873. you say Y here, the kernel will run on many, but not all,
  1874. singleprocessor machines. On a singleprocessor machine, the kernel
  1875. will run faster if you say N here.
  1876. People using multiprocessor machines who say Y here should also say
  1877. Y to "Enhanced Real Time Clock Support", below.
  1878. See also the SMP-HOWTO available at
  1879. <http://www.tldp.org/docs.html#howto>.
  1880. If you don't know what to do here, say N.
  1881. config SMP_UP
  1882. bool
  1883. config SYS_SUPPORTS_MIPS_CMP
  1884. bool
  1885. config SYS_SUPPORTS_SMP
  1886. bool
  1887. config NR_CPUS_DEFAULT_1
  1888. bool
  1889. config NR_CPUS_DEFAULT_2
  1890. bool
  1891. config NR_CPUS_DEFAULT_4
  1892. bool
  1893. config NR_CPUS_DEFAULT_8
  1894. bool
  1895. config NR_CPUS_DEFAULT_16
  1896. bool
  1897. config NR_CPUS_DEFAULT_32
  1898. bool
  1899. config NR_CPUS_DEFAULT_64
  1900. bool
  1901. config NR_CPUS
  1902. int "Maximum number of CPUs (2-64)"
  1903. range 1 64 if NR_CPUS_DEFAULT_1
  1904. depends on SMP
  1905. default "1" if NR_CPUS_DEFAULT_1
  1906. default "2" if NR_CPUS_DEFAULT_2
  1907. default "4" if NR_CPUS_DEFAULT_4
  1908. default "8" if NR_CPUS_DEFAULT_8
  1909. default "16" if NR_CPUS_DEFAULT_16
  1910. default "32" if NR_CPUS_DEFAULT_32
  1911. default "64" if NR_CPUS_DEFAULT_64
  1912. help
  1913. This allows you to specify the maximum number of CPUs which this
  1914. kernel will support. The maximum supported value is 32 for 32-bit
  1915. kernel and 64 for 64-bit kernels; the minimum value which makes
  1916. sense is 1 for Qemu (useful only for kernel debugging purposes)
  1917. and 2 for all others.
  1918. This is purely to save memory - each supported CPU adds
  1919. approximately eight kilobytes to the kernel image. For best
  1920. performance should round up your number of processors to the next
  1921. power of two.
  1922. #
  1923. # Timer Interrupt Frequency Configuration
  1924. #
  1925. choice
  1926. prompt "Timer frequency"
  1927. default HZ_250
  1928. help
  1929. Allows the configuration of the timer frequency.
  1930. config HZ_48
  1931. bool "48 HZ" if SYS_SUPPORTS_48HZ || SYS_SUPPORTS_ARBIT_HZ
  1932. config HZ_100
  1933. bool "100 HZ" if SYS_SUPPORTS_100HZ || SYS_SUPPORTS_ARBIT_HZ
  1934. config HZ_128
  1935. bool "128 HZ" if SYS_SUPPORTS_128HZ || SYS_SUPPORTS_ARBIT_HZ
  1936. config HZ_250
  1937. bool "250 HZ" if SYS_SUPPORTS_250HZ || SYS_SUPPORTS_ARBIT_HZ
  1938. config HZ_256
  1939. bool "256 HZ" if SYS_SUPPORTS_256HZ || SYS_SUPPORTS_ARBIT_HZ
  1940. config HZ_1000
  1941. bool "1000 HZ" if SYS_SUPPORTS_1000HZ || SYS_SUPPORTS_ARBIT_HZ
  1942. config HZ_1024
  1943. bool "1024 HZ" if SYS_SUPPORTS_1024HZ || SYS_SUPPORTS_ARBIT_HZ
  1944. endchoice
  1945. config SYS_SUPPORTS_48HZ
  1946. bool
  1947. config SYS_SUPPORTS_100HZ
  1948. bool
  1949. config SYS_SUPPORTS_128HZ
  1950. bool
  1951. config SYS_SUPPORTS_250HZ
  1952. bool
  1953. config SYS_SUPPORTS_256HZ
  1954. bool
  1955. config SYS_SUPPORTS_1000HZ
  1956. bool
  1957. config SYS_SUPPORTS_1024HZ
  1958. bool
  1959. config SYS_SUPPORTS_ARBIT_HZ
  1960. bool
  1961. default y if !SYS_SUPPORTS_48HZ && !SYS_SUPPORTS_100HZ && \
  1962. !SYS_SUPPORTS_128HZ && !SYS_SUPPORTS_250HZ && \
  1963. !SYS_SUPPORTS_256HZ && !SYS_SUPPORTS_1000HZ && \
  1964. !SYS_SUPPORTS_1024HZ
  1965. config HZ
  1966. int
  1967. default 48 if HZ_48
  1968. default 100 if HZ_100
  1969. default 128 if HZ_128
  1970. default 250 if HZ_250
  1971. default 256 if HZ_256
  1972. default 1000 if HZ_1000
  1973. default 1024 if HZ_1024
  1974. source "kernel/Kconfig.preempt"
  1975. config KEXEC
  1976. bool "Kexec system call (EXPERIMENTAL)"
  1977. depends on EXPERIMENTAL
  1978. help
  1979. kexec is a system call that implements the ability to shutdown your
  1980. current kernel, and to start another kernel. It is like a reboot
  1981. but it is independent of the system firmware. And like a reboot
  1982. you can start any kernel with it, not just Linux.
  1983. The name comes from the similarity to the exec system call.
  1984. It is an ongoing process to be certain the hardware in a machine
  1985. is properly shutdown, so do not be surprised if this code does not
  1986. initially work for you. It may help to enable device hotplugging
  1987. support. As of this writing the exact hardware interface is
  1988. strongly in flux, so no good recommendation can be made.
  1989. config SECCOMP
  1990. bool "Enable seccomp to safely compute untrusted bytecode"
  1991. depends on PROC_FS
  1992. default y
  1993. help
  1994. This kernel feature is useful for number crunching applications
  1995. that may need to compute untrusted bytecode during their
  1996. execution. By using pipes or other transports made available to
  1997. the process as file descriptors supporting the read/write
  1998. syscalls, it's possible to isolate those applications in
  1999. their own address space using seccomp. Once seccomp is
  2000. enabled via /proc/<pid>/seccomp, it cannot be disabled
  2001. and the task is only allowed to execute a few safe syscalls
  2002. defined by each seccomp mode.
  2003. If unsure, say Y. Only embedded should say N here.
  2004. config USE_OF
  2005. bool "Flattened Device Tree support"
  2006. select OF
  2007. select OF_EARLY_FLATTREE
  2008. select IRQ_DOMAIN
  2009. help
  2010. Include support for flattened device tree machine descriptions.
  2011. endmenu
  2012. config LOCKDEP_SUPPORT
  2013. bool
  2014. default y
  2015. config STACKTRACE_SUPPORT
  2016. bool
  2017. default y
  2018. source "init/Kconfig"
  2019. source "kernel/Kconfig.freezer"
  2020. menu "Bus options (PCI, PCMCIA, EISA, ISA, TC)"
  2021. config HW_HAS_EISA
  2022. bool
  2023. config HW_HAS_PCI
  2024. bool
  2025. config PCI
  2026. bool "Support for PCI controller"
  2027. depends on HW_HAS_PCI
  2028. select PCI_DOMAINS
  2029. select GENERIC_PCI_IOMAP
  2030. select NO_GENERIC_PCI_IOPORT_MAP
  2031. help
  2032. Find out whether you have a PCI motherboard. PCI is the name of a
  2033. bus system, i.e. the way the CPU talks to the other stuff inside
  2034. your box. Other bus systems are ISA, EISA, or VESA. If you have PCI,
  2035. say Y, otherwise N.
  2036. config PCI_DOMAINS
  2037. bool
  2038. source "drivers/pci/Kconfig"
  2039. source "drivers/pci/pcie/Kconfig"
  2040. #
  2041. # ISA support is now enabled via select. Too many systems still have the one
  2042. # or other ISA chip on the board that users don't know about so don't expect
  2043. # users to choose the right thing ...
  2044. #
  2045. config ISA
  2046. bool
  2047. config EISA
  2048. bool "EISA support"
  2049. depends on HW_HAS_EISA
  2050. select ISA
  2051. select GENERIC_ISA_DMA
  2052. ---help---
  2053. The Extended Industry Standard Architecture (EISA) bus was
  2054. developed as an open alternative to the IBM MicroChannel bus.
  2055. The EISA bus provided some of the features of the IBM MicroChannel
  2056. bus while maintaining backward compatibility with cards made for
  2057. the older ISA bus. The EISA bus saw limited use between 1988 and
  2058. 1995 when it was made obsolete by the PCI bus.
  2059. Say Y here if you are building a kernel for an EISA-based machine.
  2060. Otherwise, say N.
  2061. source "drivers/eisa/Kconfig"
  2062. config TC
  2063. bool "TURBOchannel support"
  2064. depends on MACH_DECSTATION
  2065. help
  2066. TURBOchannel is a DEC (now Compaq (now HP)) bus for Alpha and MIPS
  2067. processors. TURBOchannel programming specifications are available
  2068. at:
  2069. <ftp://ftp.hp.com/pub/alphaserver/archive/triadd/>
  2070. and:
  2071. <http://www.computer-refuge.org/classiccmp/ftp.digital.com/pub/DEC/TriAdd/>
  2072. Linux driver support status is documented at:
  2073. <http://www.linux-mips.org/wiki/DECstation>
  2074. config MMU
  2075. bool
  2076. default y
  2077. config I8253
  2078. bool
  2079. select CLKSRC_I8253
  2080. select CLKEVT_I8253
  2081. select MIPS_EXTERNAL_TIMER
  2082. config ZONE_DMA32
  2083. bool
  2084. source "drivers/pcmcia/Kconfig"
  2085. source "drivers/pci/hotplug/Kconfig"
  2086. config RAPIDIO
  2087. bool "RapidIO support"
  2088. depends on PCI
  2089. default n
  2090. help
  2091. If you say Y here, the kernel will include drivers and
  2092. infrastructure code to support RapidIO interconnect devices.
  2093. source "drivers/rapidio/Kconfig"
  2094. endmenu
  2095. menu "Executable file formats"
  2096. source "fs/Kconfig.binfmt"
  2097. config TRAD_SIGNALS
  2098. bool
  2099. config MIPS32_COMPAT
  2100. bool "Kernel support for Linux/MIPS 32-bit binary compatibility"
  2101. depends on 64BIT
  2102. help
  2103. Select this option if you want Linux/MIPS 32-bit binary
  2104. compatibility. Since all software available for Linux/MIPS is
  2105. currently 32-bit you should say Y here.
  2106. config COMPAT
  2107. bool
  2108. depends on MIPS32_COMPAT
  2109. select ARCH_WANT_OLD_COMPAT_IPC
  2110. default y
  2111. config SYSVIPC_COMPAT
  2112. bool
  2113. depends on COMPAT && SYSVIPC
  2114. default y
  2115. config MIPS32_O32
  2116. bool "Kernel support for o32 binaries"
  2117. depends on MIPS32_COMPAT
  2118. help
  2119. Select this option if you want to run o32 binaries. These are pure
  2120. 32-bit binaries as used by the 32-bit Linux/MIPS port. Most of
  2121. existing binaries are in this format.
  2122. If unsure, say Y.
  2123. config MIPS32_N32
  2124. bool "Kernel support for n32 binaries"
  2125. depends on MIPS32_COMPAT
  2126. help
  2127. Select this option if you want to run n32 binaries. These are
  2128. 64-bit binaries using 32-bit quantities for addressing and certain
  2129. data that would normally be 64-bit. They are used in special
  2130. cases.
  2131. If unsure, say N.
  2132. config BINFMT_ELF32
  2133. bool
  2134. default y if MIPS32_O32 || MIPS32_N32
  2135. endmenu
  2136. menu "Power management options"
  2137. config ARCH_HIBERNATION_POSSIBLE
  2138. def_bool y
  2139. depends on SYS_SUPPORTS_HOTPLUG_CPU || !SMP
  2140. config ARCH_SUSPEND_POSSIBLE
  2141. def_bool y
  2142. depends on SYS_SUPPORTS_HOTPLUG_CPU || !SMP
  2143. source "kernel/power/Kconfig"
  2144. endmenu
  2145. source "arch/mips/kernel/cpufreq/Kconfig"
  2146. source "net/Kconfig"
  2147. source "drivers/Kconfig"
  2148. source "fs/Kconfig"
  2149. source "arch/mips/Kconfig.debug"
  2150. source "security/Kconfig"
  2151. source "crypto/Kconfig"
  2152. source "lib/Kconfig"