Kconfig 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946
  1. config MIPS
  2. bool
  3. default y
  4. select ARCH_MIGHT_HAVE_PC_PARPORT
  5. select ARCH_MIGHT_HAVE_PC_SERIO
  6. select HAVE_CONTEXT_TRACKING
  7. select HAVE_GENERIC_DMA_COHERENT
  8. select HAVE_IDE
  9. select HAVE_OPROFILE
  10. select HAVE_PERF_EVENTS
  11. select PERF_USE_VMALLOC
  12. select HAVE_ARCH_KGDB
  13. select HAVE_ARCH_SECCOMP_FILTER
  14. select HAVE_ARCH_TRACEHOOK
  15. select HAVE_BPF_JIT if !CPU_MICROMIPS
  16. select ARCH_HAVE_CUSTOM_GPIO_H
  17. select HAVE_FUNCTION_TRACER
  18. select HAVE_DYNAMIC_FTRACE
  19. select HAVE_FTRACE_MCOUNT_RECORD
  20. select HAVE_C_RECORDMCOUNT
  21. select HAVE_FUNCTION_GRAPH_TRACER
  22. select HAVE_KPROBES
  23. select HAVE_KRETPROBES
  24. select HAVE_SYSCALL_TRACEPOINTS
  25. select HAVE_DEBUG_KMEMLEAK
  26. select HAVE_SYSCALL_TRACEPOINTS
  27. select ARCH_HAS_ELF_RANDOMIZE
  28. select HAVE_ARCH_TRANSPARENT_HUGEPAGE if CPU_SUPPORTS_HUGEPAGES && 64BIT
  29. select RTC_LIB if !MACH_LOONGSON64
  30. select GENERIC_ATOMIC64 if !64BIT
  31. select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE
  32. select HAVE_DMA_ATTRS
  33. select HAVE_DMA_CONTIGUOUS
  34. select HAVE_DMA_API_DEBUG
  35. select GENERIC_IRQ_PROBE
  36. select GENERIC_IRQ_SHOW
  37. select GENERIC_PCI_IOMAP
  38. select HAVE_ARCH_JUMP_LABEL
  39. select ARCH_WANT_IPC_PARSE_VERSION
  40. select IRQ_FORCED_THREADING
  41. select HAVE_MEMBLOCK
  42. select HAVE_MEMBLOCK_NODE_MAP
  43. select ARCH_DISCARD_MEMBLOCK
  44. select GENERIC_SMP_IDLE_THREAD
  45. select BUILDTIME_EXTABLE_SORT
  46. select GENERIC_CLOCKEVENTS
  47. select GENERIC_SCHED_CLOCK if !CAVIUM_OCTEON_SOC
  48. select GENERIC_CMOS_UPDATE
  49. select HAVE_MOD_ARCH_SPECIFIC
  50. select VIRT_TO_BUS
  51. select MODULES_USE_ELF_REL if MODULES
  52. select MODULES_USE_ELF_RELA if MODULES && 64BIT
  53. select CLONE_BACKWARDS
  54. select HAVE_DEBUG_STACKOVERFLOW
  55. select HAVE_CC_STACKPROTECTOR
  56. select CPU_PM if CPU_IDLE
  57. select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
  58. select ARCH_BINFMT_ELF_STATE
  59. select SYSCTL_EXCEPTION_TRACE
  60. select HAVE_VIRT_CPU_ACCOUNTING_GEN
  61. select HAVE_IRQ_TIME_ACCOUNTING
  62. menu "Machine selection"
  63. choice
  64. prompt "System type"
  65. default SGI_IP22
  66. config MIPS_ALCHEMY
  67. bool "Alchemy processor based machines"
  68. select ARCH_PHYS_ADDR_T_64BIT
  69. select CEVT_R4K
  70. select CSRC_R4K
  71. select IRQ_MIPS_CPU
  72. select DMA_MAYBE_COHERENT # Au1000,1500,1100 aren't, rest is
  73. select SYS_HAS_CPU_MIPS32_R1
  74. select SYS_SUPPORTS_32BIT_KERNEL
  75. select SYS_SUPPORTS_APM_EMULATION
  76. select ARCH_REQUIRE_GPIOLIB
  77. select SYS_SUPPORTS_ZBOOT
  78. select COMMON_CLK
  79. config AR7
  80. bool "Texas Instruments AR7"
  81. select BOOT_ELF32
  82. select DMA_NONCOHERENT
  83. select CEVT_R4K
  84. select CSRC_R4K
  85. select IRQ_MIPS_CPU
  86. select NO_EXCEPT_FILL
  87. select SWAP_IO_SPACE
  88. select SYS_HAS_CPU_MIPS32_R1
  89. select SYS_HAS_EARLY_PRINTK
  90. select SYS_SUPPORTS_32BIT_KERNEL
  91. select SYS_SUPPORTS_LITTLE_ENDIAN
  92. select SYS_SUPPORTS_MIPS16
  93. select SYS_SUPPORTS_ZBOOT_UART16550
  94. select ARCH_REQUIRE_GPIOLIB
  95. select VLYNQ
  96. select HAVE_CLK
  97. help
  98. Support for the Texas Instruments AR7 System-on-a-Chip
  99. family: TNETD7100, 7200 and 7300.
  100. config ATH25
  101. bool "Atheros AR231x/AR531x SoC support"
  102. select CEVT_R4K
  103. select CSRC_R4K
  104. select DMA_NONCOHERENT
  105. select IRQ_MIPS_CPU
  106. select IRQ_DOMAIN
  107. select SYS_HAS_CPU_MIPS32_R1
  108. select SYS_SUPPORTS_BIG_ENDIAN
  109. select SYS_SUPPORTS_32BIT_KERNEL
  110. select SYS_HAS_EARLY_PRINTK
  111. help
  112. Support for Atheros AR231x and Atheros AR531x based boards
  113. config ATH79
  114. bool "Atheros AR71XX/AR724X/AR913X based boards"
  115. select ARCH_REQUIRE_GPIOLIB
  116. select BOOT_RAW
  117. select CEVT_R4K
  118. select CSRC_R4K
  119. select DMA_NONCOHERENT
  120. select HAVE_CLK
  121. select COMMON_CLK
  122. select CLKDEV_LOOKUP
  123. select IRQ_MIPS_CPU
  124. select MIPS_MACHINE
  125. select SYS_HAS_CPU_MIPS32_R2
  126. select SYS_HAS_EARLY_PRINTK
  127. select SYS_SUPPORTS_32BIT_KERNEL
  128. select SYS_SUPPORTS_BIG_ENDIAN
  129. select SYS_SUPPORTS_MIPS16
  130. select SYS_SUPPORTS_ZBOOT
  131. select USE_OF
  132. help
  133. Support for the Atheros AR71XX/AR724X/AR913X SoCs.
  134. config BMIPS_GENERIC
  135. bool "Broadcom Generic BMIPS kernel"
  136. select BOOT_RAW
  137. select NO_EXCEPT_FILL
  138. select USE_OF
  139. select CEVT_R4K
  140. select CSRC_R4K
  141. select SYNC_R4K
  142. select COMMON_CLK
  143. select BCM7038_L1_IRQ
  144. select BCM7120_L2_IRQ
  145. select BRCMSTB_L2_IRQ
  146. select IRQ_MIPS_CPU
  147. select DMA_NONCOHERENT
  148. select SYS_SUPPORTS_32BIT_KERNEL
  149. select SYS_SUPPORTS_LITTLE_ENDIAN
  150. select SYS_SUPPORTS_BIG_ENDIAN
  151. select SYS_SUPPORTS_HIGHMEM
  152. select SYS_HAS_CPU_BMIPS32_3300
  153. select SYS_HAS_CPU_BMIPS4350
  154. select SYS_HAS_CPU_BMIPS4380
  155. select SYS_HAS_CPU_BMIPS5000
  156. select SWAP_IO_SPACE
  157. select USB_EHCI_BIG_ENDIAN_DESC if CPU_BIG_ENDIAN
  158. select USB_EHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN
  159. select USB_OHCI_BIG_ENDIAN_DESC if CPU_BIG_ENDIAN
  160. select USB_OHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN
  161. help
  162. Build a generic DT-based kernel image that boots on select
  163. BCM33xx cable modem chips, BCM63xx DSL chips, and BCM7xxx set-top
  164. box chips. Note that CONFIG_CPU_BIG_ENDIAN/CONFIG_CPU_LITTLE_ENDIAN
  165. must be set appropriately for your board.
  166. config BCM47XX
  167. bool "Broadcom BCM47XX based boards"
  168. select ARCH_WANT_OPTIONAL_GPIOLIB
  169. select BOOT_RAW
  170. select CEVT_R4K
  171. select CSRC_R4K
  172. select DMA_NONCOHERENT
  173. select HW_HAS_PCI
  174. select IRQ_MIPS_CPU
  175. select SYS_HAS_CPU_MIPS32_R1
  176. select NO_EXCEPT_FILL
  177. select SYS_SUPPORTS_32BIT_KERNEL
  178. select SYS_SUPPORTS_LITTLE_ENDIAN
  179. select SYS_SUPPORTS_MIPS16
  180. select SYS_HAS_EARLY_PRINTK
  181. select USE_GENERIC_EARLY_PRINTK_8250
  182. select GPIOLIB
  183. select LEDS_GPIO_REGISTER
  184. select BCM47XX_NVRAM
  185. help
  186. Support for BCM47XX based boards
  187. config BCM63XX
  188. bool "Broadcom BCM63XX based boards"
  189. select BOOT_RAW
  190. select CEVT_R4K
  191. select CSRC_R4K
  192. select SYNC_R4K
  193. select DMA_NONCOHERENT
  194. select IRQ_MIPS_CPU
  195. select SYS_SUPPORTS_32BIT_KERNEL
  196. select SYS_SUPPORTS_BIG_ENDIAN
  197. select SYS_HAS_EARLY_PRINTK
  198. select SWAP_IO_SPACE
  199. select ARCH_REQUIRE_GPIOLIB
  200. select HAVE_CLK
  201. select MIPS_L1_CACHE_SHIFT_4
  202. help
  203. Support for BCM63XX based boards
  204. config MIPS_COBALT
  205. bool "Cobalt Server"
  206. select CEVT_R4K
  207. select CSRC_R4K
  208. select CEVT_GT641XX
  209. select DMA_NONCOHERENT
  210. select HW_HAS_PCI
  211. select I8253
  212. select I8259
  213. select IRQ_MIPS_CPU
  214. select IRQ_GT641XX
  215. select PCI_GT64XXX_PCI0
  216. select PCI
  217. select SYS_HAS_CPU_NEVADA
  218. select SYS_HAS_EARLY_PRINTK
  219. select SYS_SUPPORTS_32BIT_KERNEL
  220. select SYS_SUPPORTS_64BIT_KERNEL
  221. select SYS_SUPPORTS_LITTLE_ENDIAN
  222. select USE_GENERIC_EARLY_PRINTK_8250
  223. config MACH_DECSTATION
  224. bool "DECstations"
  225. select BOOT_ELF32
  226. select CEVT_DS1287
  227. select CEVT_R4K if CPU_R4X00
  228. select CSRC_IOASIC
  229. select CSRC_R4K if CPU_R4X00
  230. select CPU_DADDI_WORKAROUNDS if 64BIT
  231. select CPU_R4000_WORKAROUNDS if 64BIT
  232. select CPU_R4400_WORKAROUNDS if 64BIT
  233. select DMA_NONCOHERENT
  234. select NO_IOPORT_MAP
  235. select IRQ_MIPS_CPU
  236. select SYS_HAS_CPU_R3000
  237. select SYS_HAS_CPU_R4X00
  238. select SYS_SUPPORTS_32BIT_KERNEL
  239. select SYS_SUPPORTS_64BIT_KERNEL
  240. select SYS_SUPPORTS_LITTLE_ENDIAN
  241. select SYS_SUPPORTS_128HZ
  242. select SYS_SUPPORTS_256HZ
  243. select SYS_SUPPORTS_1024HZ
  244. select MIPS_L1_CACHE_SHIFT_4
  245. help
  246. This enables support for DEC's MIPS based workstations. For details
  247. see the Linux/MIPS FAQ on <http://www.linux-mips.org/> and the
  248. DECstation porting pages on <http://decstation.unix-ag.org/>.
  249. If you have one of the following DECstation Models you definitely
  250. want to choose R4xx0 for the CPU Type:
  251. DECstation 5000/50
  252. DECstation 5000/150
  253. DECstation 5000/260
  254. DECsystem 5900/260
  255. otherwise choose R3000.
  256. config MACH_JAZZ
  257. bool "Jazz family of machines"
  258. select FW_ARC
  259. select FW_ARC32
  260. select ARCH_MAY_HAVE_PC_FDC
  261. select CEVT_R4K
  262. select CSRC_R4K
  263. select DEFAULT_SGI_PARTITION if CPU_BIG_ENDIAN
  264. select GENERIC_ISA_DMA
  265. select HAVE_PCSPKR_PLATFORM
  266. select IRQ_MIPS_CPU
  267. select I8253
  268. select I8259
  269. select ISA
  270. select SYS_HAS_CPU_R4X00
  271. select SYS_SUPPORTS_32BIT_KERNEL
  272. select SYS_SUPPORTS_64BIT_KERNEL
  273. select SYS_SUPPORTS_100HZ
  274. help
  275. This a family of machines based on the MIPS R4030 chipset which was
  276. used by several vendors to build RISC/os and Windows NT workstations.
  277. Members include the Acer PICA, MIPS Magnum 4000, MIPS Millennium and
  278. Olivetti M700-10 workstations.
  279. config MACH_INGENIC
  280. bool "Ingenic SoC based machines"
  281. select SYS_SUPPORTS_32BIT_KERNEL
  282. select SYS_SUPPORTS_LITTLE_ENDIAN
  283. select SYS_SUPPORTS_ZBOOT_UART16550
  284. select DMA_NONCOHERENT
  285. select IRQ_MIPS_CPU
  286. select ARCH_REQUIRE_GPIOLIB
  287. select COMMON_CLK
  288. select GENERIC_IRQ_CHIP
  289. select BUILTIN_DTB
  290. select USE_OF
  291. select LIBFDT
  292. config LANTIQ
  293. bool "Lantiq based platforms"
  294. select DMA_NONCOHERENT
  295. select IRQ_MIPS_CPU
  296. select CEVT_R4K
  297. select CSRC_R4K
  298. select SYS_HAS_CPU_MIPS32_R1
  299. select SYS_HAS_CPU_MIPS32_R2
  300. select SYS_SUPPORTS_BIG_ENDIAN
  301. select SYS_SUPPORTS_32BIT_KERNEL
  302. select SYS_SUPPORTS_MIPS16
  303. select SYS_SUPPORTS_MULTITHREADING
  304. select SYS_HAS_EARLY_PRINTK
  305. select ARCH_REQUIRE_GPIOLIB
  306. select SWAP_IO_SPACE
  307. select BOOT_RAW
  308. select HAVE_MACH_CLKDEV
  309. select CLKDEV_LOOKUP
  310. select USE_OF
  311. select PINCTRL
  312. select PINCTRL_LANTIQ
  313. select ARCH_HAS_RESET_CONTROLLER
  314. select RESET_CONTROLLER
  315. config LASAT
  316. bool "LASAT Networks platforms"
  317. select CEVT_R4K
  318. select CRC32
  319. select CSRC_R4K
  320. select DMA_NONCOHERENT
  321. select SYS_HAS_EARLY_PRINTK
  322. select HW_HAS_PCI
  323. select IRQ_MIPS_CPU
  324. select PCI_GT64XXX_PCI0
  325. select MIPS_NILE4
  326. select R5000_CPU_SCACHE
  327. select SYS_HAS_CPU_R5000
  328. select SYS_SUPPORTS_32BIT_KERNEL
  329. select SYS_SUPPORTS_64BIT_KERNEL if BROKEN
  330. select SYS_SUPPORTS_LITTLE_ENDIAN
  331. config MACH_LOONGSON32
  332. bool "Loongson-1 family of machines"
  333. select SYS_SUPPORTS_ZBOOT
  334. help
  335. This enables support for the Loongson-1 family of machines.
  336. Loongson-1 is a family of 32-bit MIPS-compatible SoCs developed by
  337. the Institute of Computing Technology (ICT), Chinese Academy of
  338. Sciences (CAS).
  339. config MACH_LOONGSON64
  340. bool "Loongson-2/3 family of machines"
  341. select SYS_SUPPORTS_ZBOOT
  342. help
  343. This enables the support of Loongson-2/3 family of machines.
  344. Loongson-2 is a family of single-core CPUs and Loongson-3 is a
  345. family of multi-core CPUs. They are both 64-bit general-purpose
  346. MIPS-compatible CPUs. Loongson-2/3 are developed by the Institute
  347. of Computing Technology (ICT), Chinese Academy of Sciences (CAS)
  348. in the People's Republic of China. The chief architect is Professor
  349. Weiwu Hu.
  350. config MACH_PISTACHIO
  351. bool "IMG Pistachio SoC based boards"
  352. select ARCH_REQUIRE_GPIOLIB
  353. select BOOT_ELF32
  354. select BOOT_RAW
  355. select CEVT_R4K
  356. select CLKSRC_MIPS_GIC
  357. select COMMON_CLK
  358. select CSRC_R4K
  359. select DMA_MAYBE_COHERENT
  360. select IRQ_MIPS_CPU
  361. select LIBFDT
  362. select MFD_SYSCON
  363. select MIPS_CPU_SCACHE
  364. select MIPS_GIC
  365. select PINCTRL
  366. select REGULATOR
  367. select SYS_HAS_CPU_MIPS32_R2
  368. select SYS_SUPPORTS_32BIT_KERNEL
  369. select SYS_SUPPORTS_LITTLE_ENDIAN
  370. select SYS_SUPPORTS_MIPS_CPS
  371. select SYS_SUPPORTS_MULTITHREADING
  372. select SYS_SUPPORTS_ZBOOT
  373. select SYS_HAS_EARLY_PRINTK
  374. select USE_GENERIC_EARLY_PRINTK_8250
  375. select USE_OF
  376. help
  377. This enables support for the IMG Pistachio SoC platform.
  378. config MIPS_MALTA
  379. bool "MIPS Malta board"
  380. select ARCH_MAY_HAVE_PC_FDC
  381. select BOOT_ELF32
  382. select BOOT_RAW
  383. select BUILTIN_DTB
  384. select CEVT_R4K
  385. select CSRC_R4K
  386. select CLKSRC_MIPS_GIC
  387. select DMA_MAYBE_COHERENT
  388. select GENERIC_ISA_DMA
  389. select HAVE_PCSPKR_PLATFORM
  390. select IRQ_MIPS_CPU
  391. select MIPS_GIC
  392. select HW_HAS_PCI
  393. select I8253
  394. select I8259
  395. select MIPS_BONITO64
  396. select MIPS_CPU_SCACHE
  397. select MIPS_L1_CACHE_SHIFT_6
  398. select PCI_GT64XXX_PCI0
  399. select MIPS_MSC
  400. select SWAP_IO_SPACE
  401. select SYS_HAS_CPU_MIPS32_R1
  402. select SYS_HAS_CPU_MIPS32_R2
  403. select SYS_HAS_CPU_MIPS32_R3_5
  404. select SYS_HAS_CPU_MIPS32_R5
  405. select SYS_HAS_CPU_MIPS32_R6
  406. select SYS_HAS_CPU_MIPS64_R1
  407. select SYS_HAS_CPU_MIPS64_R2
  408. select SYS_HAS_CPU_MIPS64_R6
  409. select SYS_HAS_CPU_NEVADA
  410. select SYS_HAS_CPU_RM7000
  411. select SYS_SUPPORTS_32BIT_KERNEL
  412. select SYS_SUPPORTS_64BIT_KERNEL
  413. select SYS_SUPPORTS_BIG_ENDIAN
  414. select SYS_SUPPORTS_HIGHMEM
  415. select SYS_SUPPORTS_LITTLE_ENDIAN
  416. select SYS_SUPPORTS_MICROMIPS
  417. select SYS_SUPPORTS_MIPS_CMP
  418. select SYS_SUPPORTS_MIPS_CPS
  419. select SYS_SUPPORTS_MIPS16
  420. select SYS_SUPPORTS_MULTITHREADING
  421. select SYS_SUPPORTS_SMARTMIPS
  422. select SYS_SUPPORTS_ZBOOT
  423. select USE_OF
  424. select ZONE_DMA32 if 64BIT
  425. help
  426. This enables support for the MIPS Technologies Malta evaluation
  427. board.
  428. config MIPS_SEAD3
  429. bool "MIPS SEAD3 board"
  430. select BOOT_ELF32
  431. select BOOT_RAW
  432. select BUILTIN_DTB
  433. select CEVT_R4K
  434. select CSRC_R4K
  435. select CLKSRC_MIPS_GIC
  436. select CPU_MIPSR2_IRQ_VI
  437. select CPU_MIPSR2_IRQ_EI
  438. select DMA_NONCOHERENT
  439. select IRQ_MIPS_CPU
  440. select MIPS_GIC
  441. select LIBFDT
  442. select MIPS_MSC
  443. select SYS_HAS_CPU_MIPS32_R1
  444. select SYS_HAS_CPU_MIPS32_R2
  445. select SYS_HAS_CPU_MIPS64_R1
  446. select SYS_HAS_EARLY_PRINTK
  447. select SYS_SUPPORTS_32BIT_KERNEL
  448. select SYS_SUPPORTS_64BIT_KERNEL
  449. select SYS_SUPPORTS_BIG_ENDIAN
  450. select SYS_SUPPORTS_LITTLE_ENDIAN
  451. select SYS_SUPPORTS_SMARTMIPS
  452. select SYS_SUPPORTS_MICROMIPS
  453. select SYS_SUPPORTS_MIPS16
  454. select USB_EHCI_BIG_ENDIAN_DESC
  455. select USB_EHCI_BIG_ENDIAN_MMIO
  456. select USE_OF
  457. help
  458. This enables support for the MIPS Technologies SEAD3 evaluation
  459. board.
  460. config NEC_MARKEINS
  461. bool "NEC EMMA2RH Mark-eins board"
  462. select SOC_EMMA2RH
  463. select HW_HAS_PCI
  464. help
  465. This enables support for the NEC Electronics Mark-eins boards.
  466. config MACH_VR41XX
  467. bool "NEC VR4100 series based machines"
  468. select CEVT_R4K
  469. select CSRC_R4K
  470. select SYS_HAS_CPU_VR41XX
  471. select SYS_SUPPORTS_MIPS16
  472. select ARCH_REQUIRE_GPIOLIB
  473. config NXP_STB220
  474. bool "NXP STB220 board"
  475. select SOC_PNX833X
  476. help
  477. Support for NXP Semiconductors STB220 Development Board.
  478. config NXP_STB225
  479. bool "NXP 225 board"
  480. select SOC_PNX833X
  481. select SOC_PNX8335
  482. help
  483. Support for NXP Semiconductors STB225 Development Board.
  484. config PMC_MSP
  485. bool "PMC-Sierra MSP chipsets"
  486. select CEVT_R4K
  487. select CSRC_R4K
  488. select DMA_NONCOHERENT
  489. select SWAP_IO_SPACE
  490. select NO_EXCEPT_FILL
  491. select BOOT_RAW
  492. select SYS_HAS_CPU_MIPS32_R1
  493. select SYS_HAS_CPU_MIPS32_R2
  494. select SYS_SUPPORTS_32BIT_KERNEL
  495. select SYS_SUPPORTS_BIG_ENDIAN
  496. select SYS_SUPPORTS_MIPS16
  497. select IRQ_MIPS_CPU
  498. select SERIAL_8250
  499. select SERIAL_8250_CONSOLE
  500. select USB_EHCI_BIG_ENDIAN_MMIO
  501. select USB_EHCI_BIG_ENDIAN_DESC
  502. help
  503. This adds support for the PMC-Sierra family of Multi-Service
  504. Processor System-On-A-Chips. These parts include a number
  505. of integrated peripherals, interfaces and DSPs in addition to
  506. a variety of MIPS cores.
  507. config RALINK
  508. bool "Ralink based machines"
  509. select CEVT_R4K
  510. select CSRC_R4K
  511. select BOOT_RAW
  512. select DMA_NONCOHERENT
  513. select IRQ_MIPS_CPU
  514. select USE_OF
  515. select SYS_HAS_CPU_MIPS32_R1
  516. select SYS_HAS_CPU_MIPS32_R2
  517. select SYS_SUPPORTS_32BIT_KERNEL
  518. select SYS_SUPPORTS_LITTLE_ENDIAN
  519. select SYS_SUPPORTS_MIPS16
  520. select SYS_HAS_EARLY_PRINTK
  521. select HAVE_MACH_CLKDEV
  522. select CLKDEV_LOOKUP
  523. select ARCH_HAS_RESET_CONTROLLER
  524. select RESET_CONTROLLER
  525. config SGI_IP22
  526. bool "SGI IP22 (Indy/Indigo2)"
  527. select FW_ARC
  528. select FW_ARC32
  529. select BOOT_ELF32
  530. select CEVT_R4K
  531. select CSRC_R4K
  532. select DEFAULT_SGI_PARTITION
  533. select DMA_NONCOHERENT
  534. select HW_HAS_EISA
  535. select I8253
  536. select I8259
  537. select IP22_CPU_SCACHE
  538. select IRQ_MIPS_CPU
  539. select GENERIC_ISA_DMA_SUPPORT_BROKEN
  540. select SGI_HAS_I8042
  541. select SGI_HAS_INDYDOG
  542. select SGI_HAS_HAL2
  543. select SGI_HAS_SEEQ
  544. select SGI_HAS_WD93
  545. select SGI_HAS_ZILOG
  546. select SWAP_IO_SPACE
  547. select SYS_HAS_CPU_R4X00
  548. select SYS_HAS_CPU_R5000
  549. #
  550. # Disable EARLY_PRINTK for now since it leads to overwritten prom
  551. # memory during early boot on some machines.
  552. #
  553. # See http://www.linux-mips.org/cgi-bin/mesg.cgi?a=linux-mips&i=20091119164009.GA15038%40deprecation.cyrius.com
  554. # for a more details discussion
  555. #
  556. # select SYS_HAS_EARLY_PRINTK
  557. select SYS_SUPPORTS_32BIT_KERNEL
  558. select SYS_SUPPORTS_64BIT_KERNEL
  559. select SYS_SUPPORTS_BIG_ENDIAN
  560. select MIPS_L1_CACHE_SHIFT_7
  561. help
  562. This are the SGI Indy, Challenge S and Indigo2, as well as certain
  563. OEM variants like the Tandem CMN B006S. To compile a Linux kernel
  564. that runs on these, say Y here.
  565. config SGI_IP27
  566. bool "SGI IP27 (Origin200/2000)"
  567. select FW_ARC
  568. select FW_ARC64
  569. select BOOT_ELF64
  570. select DEFAULT_SGI_PARTITION
  571. select DMA_COHERENT
  572. select SYS_HAS_EARLY_PRINTK
  573. select HW_HAS_PCI
  574. select NR_CPUS_DEFAULT_64
  575. select SYS_HAS_CPU_R10000
  576. select SYS_SUPPORTS_64BIT_KERNEL
  577. select SYS_SUPPORTS_BIG_ENDIAN
  578. select SYS_SUPPORTS_NUMA
  579. select SYS_SUPPORTS_SMP
  580. select MIPS_L1_CACHE_SHIFT_7
  581. help
  582. This are the SGI Origin 200, Origin 2000 and Onyx 2 Graphics
  583. workstations. To compile a Linux kernel that runs on these, say Y
  584. here.
  585. config SGI_IP28
  586. bool "SGI IP28 (Indigo2 R10k)"
  587. select FW_ARC
  588. select FW_ARC64
  589. select BOOT_ELF64
  590. select CEVT_R4K
  591. select CSRC_R4K
  592. select DEFAULT_SGI_PARTITION
  593. select DMA_NONCOHERENT
  594. select GENERIC_ISA_DMA_SUPPORT_BROKEN
  595. select IRQ_MIPS_CPU
  596. select HW_HAS_EISA
  597. select I8253
  598. select I8259
  599. select SGI_HAS_I8042
  600. select SGI_HAS_INDYDOG
  601. select SGI_HAS_HAL2
  602. select SGI_HAS_SEEQ
  603. select SGI_HAS_WD93
  604. select SGI_HAS_ZILOG
  605. select SWAP_IO_SPACE
  606. select SYS_HAS_CPU_R10000
  607. #
  608. # Disable EARLY_PRINTK for now since it leads to overwritten prom
  609. # memory during early boot on some machines.
  610. #
  611. # See http://www.linux-mips.org/cgi-bin/mesg.cgi?a=linux-mips&i=20091119164009.GA15038%40deprecation.cyrius.com
  612. # for a more details discussion
  613. #
  614. # select SYS_HAS_EARLY_PRINTK
  615. select SYS_SUPPORTS_64BIT_KERNEL
  616. select SYS_SUPPORTS_BIG_ENDIAN
  617. select MIPS_L1_CACHE_SHIFT_7
  618. help
  619. This is the SGI Indigo2 with R10000 processor. To compile a Linux
  620. kernel that runs on these, say Y here.
  621. config SGI_IP32
  622. bool "SGI IP32 (O2)"
  623. select FW_ARC
  624. select FW_ARC32
  625. select BOOT_ELF32
  626. select CEVT_R4K
  627. select CSRC_R4K
  628. select DMA_NONCOHERENT
  629. select HW_HAS_PCI
  630. select IRQ_MIPS_CPU
  631. select R5000_CPU_SCACHE
  632. select RM7000_CPU_SCACHE
  633. select SYS_HAS_CPU_R5000
  634. select SYS_HAS_CPU_R10000 if BROKEN
  635. select SYS_HAS_CPU_RM7000
  636. select SYS_HAS_CPU_NEVADA
  637. select SYS_SUPPORTS_64BIT_KERNEL
  638. select SYS_SUPPORTS_BIG_ENDIAN
  639. help
  640. If you want this kernel to run on SGI O2 workstation, say Y here.
  641. config SIBYTE_CRHINE
  642. bool "Sibyte BCM91120C-CRhine"
  643. select BOOT_ELF32
  644. select DMA_COHERENT
  645. select SIBYTE_BCM1120
  646. select SWAP_IO_SPACE
  647. select SYS_HAS_CPU_SB1
  648. select SYS_SUPPORTS_BIG_ENDIAN
  649. select SYS_SUPPORTS_LITTLE_ENDIAN
  650. config SIBYTE_CARMEL
  651. bool "Sibyte BCM91120x-Carmel"
  652. select BOOT_ELF32
  653. select DMA_COHERENT
  654. select SIBYTE_BCM1120
  655. select SWAP_IO_SPACE
  656. select SYS_HAS_CPU_SB1
  657. select SYS_SUPPORTS_BIG_ENDIAN
  658. select SYS_SUPPORTS_LITTLE_ENDIAN
  659. config SIBYTE_CRHONE
  660. bool "Sibyte BCM91125C-CRhone"
  661. select BOOT_ELF32
  662. select DMA_COHERENT
  663. select SIBYTE_BCM1125
  664. select SWAP_IO_SPACE
  665. select SYS_HAS_CPU_SB1
  666. select SYS_SUPPORTS_BIG_ENDIAN
  667. select SYS_SUPPORTS_HIGHMEM
  668. select SYS_SUPPORTS_LITTLE_ENDIAN
  669. config SIBYTE_RHONE
  670. bool "Sibyte BCM91125E-Rhone"
  671. select BOOT_ELF32
  672. select DMA_COHERENT
  673. select SIBYTE_BCM1125H
  674. select SWAP_IO_SPACE
  675. select SYS_HAS_CPU_SB1
  676. select SYS_SUPPORTS_BIG_ENDIAN
  677. select SYS_SUPPORTS_LITTLE_ENDIAN
  678. config SIBYTE_SWARM
  679. bool "Sibyte BCM91250A-SWARM"
  680. select BOOT_ELF32
  681. select DMA_COHERENT
  682. select HAVE_PATA_PLATFORM
  683. select SIBYTE_SB1250
  684. select SWAP_IO_SPACE
  685. select SYS_HAS_CPU_SB1
  686. select SYS_SUPPORTS_BIG_ENDIAN
  687. select SYS_SUPPORTS_HIGHMEM
  688. select SYS_SUPPORTS_LITTLE_ENDIAN
  689. select ZONE_DMA32 if 64BIT
  690. config SIBYTE_LITTLESUR
  691. bool "Sibyte BCM91250C2-LittleSur"
  692. select BOOT_ELF32
  693. select DMA_COHERENT
  694. select HAVE_PATA_PLATFORM
  695. select SIBYTE_SB1250
  696. select SWAP_IO_SPACE
  697. select SYS_HAS_CPU_SB1
  698. select SYS_SUPPORTS_BIG_ENDIAN
  699. select SYS_SUPPORTS_HIGHMEM
  700. select SYS_SUPPORTS_LITTLE_ENDIAN
  701. config SIBYTE_SENTOSA
  702. bool "Sibyte BCM91250E-Sentosa"
  703. select BOOT_ELF32
  704. select DMA_COHERENT
  705. select SIBYTE_SB1250
  706. select SWAP_IO_SPACE
  707. select SYS_HAS_CPU_SB1
  708. select SYS_SUPPORTS_BIG_ENDIAN
  709. select SYS_SUPPORTS_LITTLE_ENDIAN
  710. config SIBYTE_BIGSUR
  711. bool "Sibyte BCM91480B-BigSur"
  712. select BOOT_ELF32
  713. select DMA_COHERENT
  714. select NR_CPUS_DEFAULT_4
  715. select SIBYTE_BCM1x80
  716. select SWAP_IO_SPACE
  717. select SYS_HAS_CPU_SB1
  718. select SYS_SUPPORTS_BIG_ENDIAN
  719. select SYS_SUPPORTS_HIGHMEM
  720. select SYS_SUPPORTS_LITTLE_ENDIAN
  721. select ZONE_DMA32 if 64BIT
  722. config SNI_RM
  723. bool "SNI RM200/300/400"
  724. select FW_ARC if CPU_LITTLE_ENDIAN
  725. select FW_ARC32 if CPU_LITTLE_ENDIAN
  726. select FW_SNIPROM if CPU_BIG_ENDIAN
  727. select ARCH_MAY_HAVE_PC_FDC
  728. select BOOT_ELF32
  729. select CEVT_R4K
  730. select CSRC_R4K
  731. select DEFAULT_SGI_PARTITION if CPU_BIG_ENDIAN
  732. select DMA_NONCOHERENT
  733. select GENERIC_ISA_DMA
  734. select HAVE_PCSPKR_PLATFORM
  735. select HW_HAS_EISA
  736. select HW_HAS_PCI
  737. select IRQ_MIPS_CPU
  738. select I8253
  739. select I8259
  740. select ISA
  741. select SWAP_IO_SPACE if CPU_BIG_ENDIAN
  742. select SYS_HAS_CPU_R4X00
  743. select SYS_HAS_CPU_R5000
  744. select SYS_HAS_CPU_R10000
  745. select R5000_CPU_SCACHE
  746. select SYS_HAS_EARLY_PRINTK
  747. select SYS_SUPPORTS_32BIT_KERNEL
  748. select SYS_SUPPORTS_64BIT_KERNEL
  749. select SYS_SUPPORTS_BIG_ENDIAN
  750. select SYS_SUPPORTS_HIGHMEM
  751. select SYS_SUPPORTS_LITTLE_ENDIAN
  752. help
  753. The SNI RM200/300/400 are MIPS-based machines manufactured by
  754. Siemens Nixdorf Informationssysteme (SNI), parent company of Pyramid
  755. Technology and now in turn merged with Fujitsu. Say Y here to
  756. support this machine type.
  757. config MACH_TX39XX
  758. bool "Toshiba TX39 series based machines"
  759. config MACH_TX49XX
  760. bool "Toshiba TX49 series based machines"
  761. config MIKROTIK_RB532
  762. bool "Mikrotik RB532 boards"
  763. select CEVT_R4K
  764. select CSRC_R4K
  765. select DMA_NONCOHERENT
  766. select HW_HAS_PCI
  767. select IRQ_MIPS_CPU
  768. select SYS_HAS_CPU_MIPS32_R1
  769. select SYS_SUPPORTS_32BIT_KERNEL
  770. select SYS_SUPPORTS_LITTLE_ENDIAN
  771. select SWAP_IO_SPACE
  772. select BOOT_RAW
  773. select ARCH_REQUIRE_GPIOLIB
  774. select MIPS_L1_CACHE_SHIFT_4
  775. help
  776. Support the Mikrotik(tm) RouterBoard 532 series,
  777. based on the IDT RC32434 SoC.
  778. config CAVIUM_OCTEON_SOC
  779. bool "Cavium Networks Octeon SoC based boards"
  780. select CEVT_R4K
  781. select ARCH_PHYS_ADDR_T_64BIT
  782. select DMA_COHERENT
  783. select SYS_SUPPORTS_64BIT_KERNEL
  784. select SYS_SUPPORTS_BIG_ENDIAN
  785. select EDAC_SUPPORT
  786. select EDAC_ATOMIC_SCRUB
  787. select SYS_SUPPORTS_LITTLE_ENDIAN
  788. select SYS_SUPPORTS_HOTPLUG_CPU if CPU_BIG_ENDIAN
  789. select SYS_HAS_EARLY_PRINTK
  790. select SYS_HAS_CPU_CAVIUM_OCTEON
  791. select SWAP_IO_SPACE
  792. select HW_HAS_PCI
  793. select ZONE_DMA32
  794. select HOLES_IN_ZONE
  795. select ARCH_REQUIRE_GPIOLIB
  796. select LIBFDT
  797. select USE_OF
  798. select ARCH_SPARSEMEM_ENABLE
  799. select SYS_SUPPORTS_SMP
  800. select NR_CPUS_DEFAULT_16
  801. select BUILTIN_DTB
  802. select MTD_COMPLEX_MAPPINGS
  803. help
  804. This option supports all of the Octeon reference boards from Cavium
  805. Networks. It builds a kernel that dynamically determines the Octeon
  806. CPU type and supports all known board reference implementations.
  807. Some of the supported boards are:
  808. EBT3000
  809. EBH3000
  810. EBH3100
  811. Thunder
  812. Kodama
  813. Hikari
  814. Say Y here for most Octeon reference boards.
  815. config NLM_XLR_BOARD
  816. bool "Netlogic XLR/XLS based systems"
  817. select BOOT_ELF32
  818. select NLM_COMMON
  819. select SYS_HAS_CPU_XLR
  820. select SYS_SUPPORTS_SMP
  821. select HW_HAS_PCI
  822. select SWAP_IO_SPACE
  823. select SYS_SUPPORTS_32BIT_KERNEL
  824. select SYS_SUPPORTS_64BIT_KERNEL
  825. select ARCH_PHYS_ADDR_T_64BIT
  826. select SYS_SUPPORTS_BIG_ENDIAN
  827. select SYS_SUPPORTS_HIGHMEM
  828. select DMA_COHERENT
  829. select NR_CPUS_DEFAULT_32
  830. select CEVT_R4K
  831. select CSRC_R4K
  832. select IRQ_MIPS_CPU
  833. select ZONE_DMA32 if 64BIT
  834. select SYNC_R4K
  835. select SYS_HAS_EARLY_PRINTK
  836. select SYS_SUPPORTS_ZBOOT
  837. select SYS_SUPPORTS_ZBOOT_UART16550
  838. help
  839. Support for systems based on Netlogic XLR and XLS processors.
  840. Say Y here if you have a XLR or XLS based board.
  841. config NLM_XLP_BOARD
  842. bool "Netlogic XLP based systems"
  843. select BOOT_ELF32
  844. select NLM_COMMON
  845. select SYS_HAS_CPU_XLP
  846. select SYS_SUPPORTS_SMP
  847. select HW_HAS_PCI
  848. select SYS_SUPPORTS_32BIT_KERNEL
  849. select SYS_SUPPORTS_64BIT_KERNEL
  850. select ARCH_PHYS_ADDR_T_64BIT
  851. select SYS_SUPPORTS_BIG_ENDIAN
  852. select SYS_SUPPORTS_LITTLE_ENDIAN
  853. select SYS_SUPPORTS_HIGHMEM
  854. select DMA_COHERENT
  855. select NR_CPUS_DEFAULT_32
  856. select CEVT_R4K
  857. select CSRC_R4K
  858. select IRQ_MIPS_CPU
  859. select ZONE_DMA32 if 64BIT
  860. select SYNC_R4K
  861. select SYS_HAS_EARLY_PRINTK
  862. select USE_OF
  863. select SYS_SUPPORTS_ZBOOT
  864. select SYS_SUPPORTS_ZBOOT_UART16550
  865. help
  866. This board is based on Netlogic XLP Processor.
  867. Say Y here if you have a XLP based board.
  868. config MIPS_PARAVIRT
  869. bool "Para-Virtualized guest system"
  870. select CEVT_R4K
  871. select CSRC_R4K
  872. select DMA_COHERENT
  873. select SYS_SUPPORTS_64BIT_KERNEL
  874. select SYS_SUPPORTS_32BIT_KERNEL
  875. select SYS_SUPPORTS_BIG_ENDIAN
  876. select SYS_SUPPORTS_SMP
  877. select NR_CPUS_DEFAULT_4
  878. select SYS_HAS_EARLY_PRINTK
  879. select SYS_HAS_CPU_MIPS32_R2
  880. select SYS_HAS_CPU_MIPS64_R2
  881. select SYS_HAS_CPU_CAVIUM_OCTEON
  882. select HW_HAS_PCI
  883. select SWAP_IO_SPACE
  884. help
  885. This option supports guest running under ????
  886. endchoice
  887. source "arch/mips/alchemy/Kconfig"
  888. source "arch/mips/ath25/Kconfig"
  889. source "arch/mips/ath79/Kconfig"
  890. source "arch/mips/bcm47xx/Kconfig"
  891. source "arch/mips/bcm63xx/Kconfig"
  892. source "arch/mips/bmips/Kconfig"
  893. source "arch/mips/jazz/Kconfig"
  894. source "arch/mips/jz4740/Kconfig"
  895. source "arch/mips/lantiq/Kconfig"
  896. source "arch/mips/lasat/Kconfig"
  897. source "arch/mips/pmcs-msp71xx/Kconfig"
  898. source "arch/mips/ralink/Kconfig"
  899. source "arch/mips/sgi-ip27/Kconfig"
  900. source "arch/mips/sibyte/Kconfig"
  901. source "arch/mips/txx9/Kconfig"
  902. source "arch/mips/vr41xx/Kconfig"
  903. source "arch/mips/cavium-octeon/Kconfig"
  904. source "arch/mips/loongson32/Kconfig"
  905. source "arch/mips/loongson64/Kconfig"
  906. source "arch/mips/netlogic/Kconfig"
  907. source "arch/mips/paravirt/Kconfig"
  908. endmenu
  909. config RWSEM_GENERIC_SPINLOCK
  910. bool
  911. default y
  912. config RWSEM_XCHGADD_ALGORITHM
  913. bool
  914. config ARCH_HAS_ILOG2_U32
  915. bool
  916. default n
  917. config ARCH_HAS_ILOG2_U64
  918. bool
  919. default n
  920. config GENERIC_HWEIGHT
  921. bool
  922. default y
  923. config GENERIC_CALIBRATE_DELAY
  924. bool
  925. default y
  926. config SCHED_OMIT_FRAME_POINTER
  927. bool
  928. default y
  929. #
  930. # Select some configuration options automatically based on user selections.
  931. #
  932. config FW_ARC
  933. bool
  934. config ARCH_MAY_HAVE_PC_FDC
  935. bool
  936. config BOOT_RAW
  937. bool
  938. config CEVT_BCM1480
  939. bool
  940. config CEVT_DS1287
  941. bool
  942. config CEVT_GT641XX
  943. bool
  944. config CEVT_R4K
  945. bool
  946. config CEVT_SB1250
  947. bool
  948. config CEVT_TXX9
  949. bool
  950. config CSRC_BCM1480
  951. bool
  952. config CSRC_IOASIC
  953. bool
  954. config CSRC_R4K
  955. bool
  956. config CSRC_SB1250
  957. bool
  958. config GPIO_TXX9
  959. select ARCH_REQUIRE_GPIOLIB
  960. bool
  961. config FW_CFE
  962. bool
  963. config ARCH_DMA_ADDR_T_64BIT
  964. def_bool (HIGHMEM && ARCH_PHYS_ADDR_T_64BIT) || 64BIT
  965. config DMA_MAYBE_COHERENT
  966. select DMA_NONCOHERENT
  967. bool
  968. config DMA_COHERENT
  969. bool
  970. config DMA_NONCOHERENT
  971. bool
  972. select NEED_DMA_MAP_STATE
  973. config NEED_DMA_MAP_STATE
  974. bool
  975. config SYS_HAS_EARLY_PRINTK
  976. bool
  977. config HOTPLUG_CPU
  978. bool "Support for hot-pluggable CPUs"
  979. depends on SMP && SYS_SUPPORTS_HOTPLUG_CPU
  980. help
  981. Say Y here to allow turning CPUs off and on. CPUs can be
  982. controlled through /sys/devices/system/cpu.
  983. (Note: power management support will enable this option
  984. automatically on SMP systems. )
  985. Say N if you want to disable CPU hotplug.
  986. config SYS_SUPPORTS_HOTPLUG_CPU
  987. bool
  988. config I8259
  989. bool
  990. select IRQ_DOMAIN
  991. config MIPS_BONITO64
  992. bool
  993. config MIPS_MSC
  994. bool
  995. config MIPS_NILE4
  996. bool
  997. config SYNC_R4K
  998. bool
  999. config MIPS_MACHINE
  1000. def_bool n
  1001. config NO_IOPORT_MAP
  1002. def_bool n
  1003. config GENERIC_CSUM
  1004. bool
  1005. config GENERIC_ISA_DMA
  1006. bool
  1007. select ZONE_DMA if GENERIC_ISA_DMA_SUPPORT_BROKEN=n
  1008. select ISA_DMA_API
  1009. config GENERIC_ISA_DMA_SUPPORT_BROKEN
  1010. bool
  1011. select GENERIC_ISA_DMA
  1012. config ISA_DMA_API
  1013. bool
  1014. config HOLES_IN_ZONE
  1015. bool
  1016. #
  1017. # Endianness selection. Sufficiently obscure so many users don't know what to
  1018. # answer,so we try hard to limit the available choices. Also the use of a
  1019. # choice statement should be more obvious to the user.
  1020. #
  1021. choice
  1022. prompt "Endianness selection"
  1023. help
  1024. Some MIPS machines can be configured for either little or big endian
  1025. byte order. These modes require different kernels and a different
  1026. Linux distribution. In general there is one preferred byteorder for a
  1027. particular system but some systems are just as commonly used in the
  1028. one or the other endianness.
  1029. config CPU_BIG_ENDIAN
  1030. bool "Big endian"
  1031. depends on SYS_SUPPORTS_BIG_ENDIAN
  1032. config CPU_LITTLE_ENDIAN
  1033. bool "Little endian"
  1034. depends on SYS_SUPPORTS_LITTLE_ENDIAN
  1035. endchoice
  1036. config EXPORT_UASM
  1037. bool
  1038. config SYS_SUPPORTS_APM_EMULATION
  1039. bool
  1040. config SYS_SUPPORTS_BIG_ENDIAN
  1041. bool
  1042. config SYS_SUPPORTS_LITTLE_ENDIAN
  1043. bool
  1044. config SYS_SUPPORTS_HUGETLBFS
  1045. bool
  1046. depends on CPU_SUPPORTS_HUGEPAGES && 64BIT
  1047. default y
  1048. config MIPS_HUGE_TLB_SUPPORT
  1049. def_bool HUGETLB_PAGE || TRANSPARENT_HUGEPAGE
  1050. config IRQ_CPU_RM7K
  1051. bool
  1052. config IRQ_MSP_SLP
  1053. bool
  1054. config IRQ_MSP_CIC
  1055. bool
  1056. config IRQ_TXX9
  1057. bool
  1058. config IRQ_GT641XX
  1059. bool
  1060. config PCI_GT64XXX_PCI0
  1061. bool
  1062. config NO_EXCEPT_FILL
  1063. bool
  1064. config SOC_EMMA2RH
  1065. bool
  1066. select CEVT_R4K
  1067. select CSRC_R4K
  1068. select DMA_NONCOHERENT
  1069. select IRQ_MIPS_CPU
  1070. select SWAP_IO_SPACE
  1071. select SYS_HAS_CPU_R5500
  1072. select SYS_SUPPORTS_32BIT_KERNEL
  1073. select SYS_SUPPORTS_64BIT_KERNEL
  1074. select SYS_SUPPORTS_BIG_ENDIAN
  1075. config SOC_PNX833X
  1076. bool
  1077. select CEVT_R4K
  1078. select CSRC_R4K
  1079. select IRQ_MIPS_CPU
  1080. select DMA_NONCOHERENT
  1081. select SYS_HAS_CPU_MIPS32_R2
  1082. select SYS_SUPPORTS_32BIT_KERNEL
  1083. select SYS_SUPPORTS_LITTLE_ENDIAN
  1084. select SYS_SUPPORTS_BIG_ENDIAN
  1085. select SYS_SUPPORTS_MIPS16
  1086. select CPU_MIPSR2_IRQ_VI
  1087. config SOC_PNX8335
  1088. bool
  1089. select SOC_PNX833X
  1090. config MIPS_SPRAM
  1091. bool
  1092. config SWAP_IO_SPACE
  1093. bool
  1094. config SGI_HAS_INDYDOG
  1095. bool
  1096. config SGI_HAS_HAL2
  1097. bool
  1098. config SGI_HAS_SEEQ
  1099. bool
  1100. config SGI_HAS_WD93
  1101. bool
  1102. config SGI_HAS_ZILOG
  1103. bool
  1104. config SGI_HAS_I8042
  1105. bool
  1106. config DEFAULT_SGI_PARTITION
  1107. bool
  1108. config FW_ARC32
  1109. bool
  1110. config FW_SNIPROM
  1111. bool
  1112. config BOOT_ELF32
  1113. bool
  1114. config MIPS_L1_CACHE_SHIFT_4
  1115. bool
  1116. config MIPS_L1_CACHE_SHIFT_5
  1117. bool
  1118. config MIPS_L1_CACHE_SHIFT_6
  1119. bool
  1120. config MIPS_L1_CACHE_SHIFT_7
  1121. bool
  1122. config MIPS_L1_CACHE_SHIFT
  1123. int
  1124. default "7" if MIPS_L1_CACHE_SHIFT_7
  1125. default "6" if MIPS_L1_CACHE_SHIFT_6
  1126. default "5" if MIPS_L1_CACHE_SHIFT_5
  1127. default "4" if MIPS_L1_CACHE_SHIFT_4
  1128. default "5"
  1129. config HAVE_STD_PC_SERIAL_PORT
  1130. bool
  1131. config ARC_CONSOLE
  1132. bool "ARC console support"
  1133. depends on SGI_IP22 || SGI_IP28 || (SNI_RM && CPU_LITTLE_ENDIAN)
  1134. config ARC_MEMORY
  1135. bool
  1136. depends on MACH_JAZZ || SNI_RM || SGI_IP32
  1137. default y
  1138. config ARC_PROMLIB
  1139. bool
  1140. depends on MACH_JAZZ || SNI_RM || SGI_IP22 || SGI_IP28 || SGI_IP32
  1141. default y
  1142. config FW_ARC64
  1143. bool
  1144. config BOOT_ELF64
  1145. bool
  1146. menu "CPU selection"
  1147. choice
  1148. prompt "CPU type"
  1149. default CPU_R4X00
  1150. config CPU_LOONGSON3
  1151. bool "Loongson 3 CPU"
  1152. depends on SYS_HAS_CPU_LOONGSON3
  1153. select CPU_SUPPORTS_64BIT_KERNEL
  1154. select CPU_SUPPORTS_HIGHMEM
  1155. select CPU_SUPPORTS_HUGEPAGES
  1156. select WEAK_ORDERING
  1157. select WEAK_REORDERING_BEYOND_LLSC
  1158. select ARCH_REQUIRE_GPIOLIB
  1159. help
  1160. The Loongson 3 processor implements the MIPS64R2 instruction
  1161. set with many extensions.
  1162. config CPU_LOONGSON2E
  1163. bool "Loongson 2E"
  1164. depends on SYS_HAS_CPU_LOONGSON2E
  1165. select CPU_LOONGSON2
  1166. help
  1167. The Loongson 2E processor implements the MIPS III instruction set
  1168. with many extensions.
  1169. It has an internal FPGA northbridge, which is compatible to
  1170. bonito64.
  1171. config CPU_LOONGSON2F
  1172. bool "Loongson 2F"
  1173. depends on SYS_HAS_CPU_LOONGSON2F
  1174. select CPU_LOONGSON2
  1175. select ARCH_REQUIRE_GPIOLIB
  1176. help
  1177. The Loongson 2F processor implements the MIPS III instruction set
  1178. with many extensions.
  1179. Loongson2F have built-in DDR2 and PCIX controller. The PCIX controller
  1180. have a similar programming interface with FPGA northbridge used in
  1181. Loongson2E.
  1182. config CPU_LOONGSON1B
  1183. bool "Loongson 1B"
  1184. depends on SYS_HAS_CPU_LOONGSON1B
  1185. select CPU_LOONGSON1
  1186. help
  1187. The Loongson 1B is a 32-bit SoC, which implements the MIPS32
  1188. release 2 instruction set.
  1189. config CPU_MIPS32_R1
  1190. bool "MIPS32 Release 1"
  1191. depends on SYS_HAS_CPU_MIPS32_R1
  1192. select CPU_HAS_PREFETCH
  1193. select CPU_SUPPORTS_32BIT_KERNEL
  1194. select CPU_SUPPORTS_HIGHMEM
  1195. help
  1196. Choose this option to build a kernel for release 1 or later of the
  1197. MIPS32 architecture. Most modern embedded systems with a 32-bit
  1198. MIPS processor are based on a MIPS32 processor. If you know the
  1199. specific type of processor in your system, choose those that one
  1200. otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
  1201. Release 2 of the MIPS32 architecture is available since several
  1202. years so chances are you even have a MIPS32 Release 2 processor
  1203. in which case you should choose CPU_MIPS32_R2 instead for better
  1204. performance.
  1205. config CPU_MIPS32_R2
  1206. bool "MIPS32 Release 2"
  1207. depends on SYS_HAS_CPU_MIPS32_R2
  1208. select CPU_HAS_PREFETCH
  1209. select CPU_SUPPORTS_32BIT_KERNEL
  1210. select CPU_SUPPORTS_HIGHMEM
  1211. select CPU_SUPPORTS_MSA
  1212. select HAVE_KVM
  1213. help
  1214. Choose this option to build a kernel for release 2 or later of the
  1215. MIPS32 architecture. Most modern embedded systems with a 32-bit
  1216. MIPS processor are based on a MIPS32 processor. If you know the
  1217. specific type of processor in your system, choose those that one
  1218. otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system.
  1219. config CPU_MIPS32_R6
  1220. bool "MIPS32 Release 6 (EXPERIMENTAL)"
  1221. depends on SYS_HAS_CPU_MIPS32_R6
  1222. select CPU_HAS_PREFETCH
  1223. select CPU_SUPPORTS_32BIT_KERNEL
  1224. select CPU_SUPPORTS_HIGHMEM
  1225. select CPU_SUPPORTS_MSA
  1226. select GENERIC_CSUM
  1227. select HAVE_KVM
  1228. select MIPS_O32_FP64_SUPPORT
  1229. help
  1230. Choose this option to build a kernel for release 6 or later of the
  1231. MIPS32 architecture. New MIPS processors, starting with the Warrior
  1232. family, are based on a MIPS32r6 processor. If you own an older
  1233. processor, you probably need to select MIPS32r1 or MIPS32r2 instead.
  1234. config CPU_MIPS64_R1
  1235. bool "MIPS64 Release 1"
  1236. depends on SYS_HAS_CPU_MIPS64_R1
  1237. select CPU_HAS_PREFETCH
  1238. select CPU_SUPPORTS_32BIT_KERNEL
  1239. select CPU_SUPPORTS_64BIT_KERNEL
  1240. select CPU_SUPPORTS_HIGHMEM
  1241. select CPU_SUPPORTS_HUGEPAGES
  1242. help
  1243. Choose this option to build a kernel for release 1 or later of the
  1244. MIPS64 architecture. Many modern embedded systems with a 64-bit
  1245. MIPS processor are based on a MIPS64 processor. If you know the
  1246. specific type of processor in your system, choose those that one
  1247. otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
  1248. Release 2 of the MIPS64 architecture is available since several
  1249. years so chances are you even have a MIPS64 Release 2 processor
  1250. in which case you should choose CPU_MIPS64_R2 instead for better
  1251. performance.
  1252. config CPU_MIPS64_R2
  1253. bool "MIPS64 Release 2"
  1254. depends on SYS_HAS_CPU_MIPS64_R2
  1255. select CPU_HAS_PREFETCH
  1256. select CPU_SUPPORTS_32BIT_KERNEL
  1257. select CPU_SUPPORTS_64BIT_KERNEL
  1258. select CPU_SUPPORTS_HIGHMEM
  1259. select CPU_SUPPORTS_HUGEPAGES
  1260. select CPU_SUPPORTS_MSA
  1261. help
  1262. Choose this option to build a kernel for release 2 or later of the
  1263. MIPS64 architecture. Many modern embedded systems with a 64-bit
  1264. MIPS processor are based on a MIPS64 processor. If you know the
  1265. specific type of processor in your system, choose those that one
  1266. otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system.
  1267. config CPU_MIPS64_R6
  1268. bool "MIPS64 Release 6 (EXPERIMENTAL)"
  1269. depends on SYS_HAS_CPU_MIPS64_R6
  1270. select CPU_HAS_PREFETCH
  1271. select CPU_SUPPORTS_32BIT_KERNEL
  1272. select CPU_SUPPORTS_64BIT_KERNEL
  1273. select CPU_SUPPORTS_HIGHMEM
  1274. select CPU_SUPPORTS_MSA
  1275. select GENERIC_CSUM
  1276. select MIPS_O32_FP64_SUPPORT if MIPS32_O32
  1277. help
  1278. Choose this option to build a kernel for release 6 or later of the
  1279. MIPS64 architecture. New MIPS processors, starting with the Warrior
  1280. family, are based on a MIPS64r6 processor. If you own an older
  1281. processor, you probably need to select MIPS64r1 or MIPS64r2 instead.
  1282. config CPU_R3000
  1283. bool "R3000"
  1284. depends on SYS_HAS_CPU_R3000
  1285. select CPU_HAS_WB
  1286. select CPU_SUPPORTS_32BIT_KERNEL
  1287. select CPU_SUPPORTS_HIGHMEM
  1288. help
  1289. Please make sure to pick the right CPU type. Linux/MIPS is not
  1290. designed to be generic, i.e. Kernels compiled for R3000 CPUs will
  1291. *not* work on R4000 machines and vice versa. However, since most
  1292. of the supported machines have an R4000 (or similar) CPU, R4x00
  1293. might be a safe bet. If the resulting kernel does not work,
  1294. try to recompile with R3000.
  1295. config CPU_TX39XX
  1296. bool "R39XX"
  1297. depends on SYS_HAS_CPU_TX39XX
  1298. select CPU_SUPPORTS_32BIT_KERNEL
  1299. config CPU_VR41XX
  1300. bool "R41xx"
  1301. depends on SYS_HAS_CPU_VR41XX
  1302. select CPU_SUPPORTS_32BIT_KERNEL
  1303. select CPU_SUPPORTS_64BIT_KERNEL
  1304. help
  1305. The options selects support for the NEC VR4100 series of processors.
  1306. Only choose this option if you have one of these processors as a
  1307. kernel built with this option will not run on any other type of
  1308. processor or vice versa.
  1309. config CPU_R4300
  1310. bool "R4300"
  1311. depends on SYS_HAS_CPU_R4300
  1312. select CPU_SUPPORTS_32BIT_KERNEL
  1313. select CPU_SUPPORTS_64BIT_KERNEL
  1314. help
  1315. MIPS Technologies R4300-series processors.
  1316. config CPU_R4X00
  1317. bool "R4x00"
  1318. depends on SYS_HAS_CPU_R4X00
  1319. select CPU_SUPPORTS_32BIT_KERNEL
  1320. select CPU_SUPPORTS_64BIT_KERNEL
  1321. select CPU_SUPPORTS_HUGEPAGES
  1322. help
  1323. MIPS Technologies R4000-series processors other than 4300, including
  1324. the R4000, R4400, R4600, and 4700.
  1325. config CPU_TX49XX
  1326. bool "R49XX"
  1327. depends on SYS_HAS_CPU_TX49XX
  1328. select CPU_HAS_PREFETCH
  1329. select CPU_SUPPORTS_32BIT_KERNEL
  1330. select CPU_SUPPORTS_64BIT_KERNEL
  1331. select CPU_SUPPORTS_HUGEPAGES
  1332. config CPU_R5000
  1333. bool "R5000"
  1334. depends on SYS_HAS_CPU_R5000
  1335. select CPU_SUPPORTS_32BIT_KERNEL
  1336. select CPU_SUPPORTS_64BIT_KERNEL
  1337. select CPU_SUPPORTS_HUGEPAGES
  1338. help
  1339. MIPS Technologies R5000-series processors other than the Nevada.
  1340. config CPU_R5432
  1341. bool "R5432"
  1342. depends on SYS_HAS_CPU_R5432
  1343. select CPU_SUPPORTS_32BIT_KERNEL
  1344. select CPU_SUPPORTS_64BIT_KERNEL
  1345. select CPU_SUPPORTS_HUGEPAGES
  1346. config CPU_R5500
  1347. bool "R5500"
  1348. depends on SYS_HAS_CPU_R5500
  1349. select CPU_SUPPORTS_32BIT_KERNEL
  1350. select CPU_SUPPORTS_64BIT_KERNEL
  1351. select CPU_SUPPORTS_HUGEPAGES
  1352. help
  1353. NEC VR5500 and VR5500A series processors implement 64-bit MIPS IV
  1354. instruction set.
  1355. config CPU_R6000
  1356. bool "R6000"
  1357. depends on SYS_HAS_CPU_R6000
  1358. select CPU_SUPPORTS_32BIT_KERNEL
  1359. help
  1360. MIPS Technologies R6000 and R6000A series processors. Note these
  1361. processors are extremely rare and the support for them is incomplete.
  1362. config CPU_NEVADA
  1363. bool "RM52xx"
  1364. depends on SYS_HAS_CPU_NEVADA
  1365. select CPU_SUPPORTS_32BIT_KERNEL
  1366. select CPU_SUPPORTS_64BIT_KERNEL
  1367. select CPU_SUPPORTS_HUGEPAGES
  1368. help
  1369. QED / PMC-Sierra RM52xx-series ("Nevada") processors.
  1370. config CPU_R8000
  1371. bool "R8000"
  1372. depends on SYS_HAS_CPU_R8000
  1373. select CPU_HAS_PREFETCH
  1374. select CPU_SUPPORTS_64BIT_KERNEL
  1375. help
  1376. MIPS Technologies R8000 processors. Note these processors are
  1377. uncommon and the support for them is incomplete.
  1378. config CPU_R10000
  1379. bool "R10000"
  1380. depends on SYS_HAS_CPU_R10000
  1381. select CPU_HAS_PREFETCH
  1382. select CPU_SUPPORTS_32BIT_KERNEL
  1383. select CPU_SUPPORTS_64BIT_KERNEL
  1384. select CPU_SUPPORTS_HIGHMEM
  1385. select CPU_SUPPORTS_HUGEPAGES
  1386. help
  1387. MIPS Technologies R10000-series processors.
  1388. config CPU_RM7000
  1389. bool "RM7000"
  1390. depends on SYS_HAS_CPU_RM7000
  1391. select CPU_HAS_PREFETCH
  1392. select CPU_SUPPORTS_32BIT_KERNEL
  1393. select CPU_SUPPORTS_64BIT_KERNEL
  1394. select CPU_SUPPORTS_HIGHMEM
  1395. select CPU_SUPPORTS_HUGEPAGES
  1396. config CPU_SB1
  1397. bool "SB1"
  1398. depends on SYS_HAS_CPU_SB1
  1399. select CPU_SUPPORTS_32BIT_KERNEL
  1400. select CPU_SUPPORTS_64BIT_KERNEL
  1401. select CPU_SUPPORTS_HIGHMEM
  1402. select CPU_SUPPORTS_HUGEPAGES
  1403. select WEAK_ORDERING
  1404. config CPU_CAVIUM_OCTEON
  1405. bool "Cavium Octeon processor"
  1406. depends on SYS_HAS_CPU_CAVIUM_OCTEON
  1407. select CPU_HAS_PREFETCH
  1408. select CPU_SUPPORTS_64BIT_KERNEL
  1409. select WEAK_ORDERING
  1410. select CPU_SUPPORTS_HIGHMEM
  1411. select CPU_SUPPORTS_HUGEPAGES
  1412. select USB_EHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN
  1413. select USB_OHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN
  1414. select MIPS_L1_CACHE_SHIFT_7
  1415. help
  1416. The Cavium Octeon processor is a highly integrated chip containing
  1417. many ethernet hardware widgets for networking tasks. The processor
  1418. can have up to 16 Mips64v2 cores and 8 integrated gigabit ethernets.
  1419. Full details can be found at http://www.caviumnetworks.com.
  1420. config CPU_BMIPS
  1421. bool "Broadcom BMIPS"
  1422. depends on SYS_HAS_CPU_BMIPS
  1423. select CPU_MIPS32
  1424. select CPU_BMIPS32_3300 if SYS_HAS_CPU_BMIPS32_3300
  1425. select CPU_BMIPS4350 if SYS_HAS_CPU_BMIPS4350
  1426. select CPU_BMIPS4380 if SYS_HAS_CPU_BMIPS4380
  1427. select CPU_BMIPS5000 if SYS_HAS_CPU_BMIPS5000
  1428. select CPU_SUPPORTS_32BIT_KERNEL
  1429. select DMA_NONCOHERENT
  1430. select IRQ_MIPS_CPU
  1431. select SWAP_IO_SPACE
  1432. select WEAK_ORDERING
  1433. select CPU_SUPPORTS_HIGHMEM
  1434. select CPU_HAS_PREFETCH
  1435. help
  1436. Support for BMIPS32/3300/4350/4380 and BMIPS5000 processors.
  1437. config CPU_XLR
  1438. bool "Netlogic XLR SoC"
  1439. depends on SYS_HAS_CPU_XLR
  1440. select CPU_SUPPORTS_32BIT_KERNEL
  1441. select CPU_SUPPORTS_64BIT_KERNEL
  1442. select CPU_SUPPORTS_HIGHMEM
  1443. select CPU_SUPPORTS_HUGEPAGES
  1444. select WEAK_ORDERING
  1445. select WEAK_REORDERING_BEYOND_LLSC
  1446. help
  1447. Netlogic Microsystems XLR/XLS processors.
  1448. config CPU_XLP
  1449. bool "Netlogic XLP SoC"
  1450. depends on SYS_HAS_CPU_XLP
  1451. select CPU_SUPPORTS_32BIT_KERNEL
  1452. select CPU_SUPPORTS_64BIT_KERNEL
  1453. select CPU_SUPPORTS_HIGHMEM
  1454. select WEAK_ORDERING
  1455. select WEAK_REORDERING_BEYOND_LLSC
  1456. select CPU_HAS_PREFETCH
  1457. select CPU_MIPSR2
  1458. select CPU_SUPPORTS_HUGEPAGES
  1459. help
  1460. Netlogic Microsystems XLP processors.
  1461. endchoice
  1462. config CPU_MIPS32_3_5_FEATURES
  1463. bool "MIPS32 Release 3.5 Features"
  1464. depends on SYS_HAS_CPU_MIPS32_R3_5
  1465. depends on CPU_MIPS32_R2 || CPU_MIPS32_R6
  1466. help
  1467. Choose this option to build a kernel for release 2 or later of the
  1468. MIPS32 architecture including features from the 3.5 release such as
  1469. support for Enhanced Virtual Addressing (EVA).
  1470. config CPU_MIPS32_3_5_EVA
  1471. bool "Enhanced Virtual Addressing (EVA)"
  1472. depends on CPU_MIPS32_3_5_FEATURES
  1473. select EVA
  1474. default y
  1475. help
  1476. Choose this option if you want to enable the Enhanced Virtual
  1477. Addressing (EVA) on your MIPS32 core (such as proAptiv).
  1478. One of its primary benefits is an increase in the maximum size
  1479. of lowmem (up to 3GB). If unsure, say 'N' here.
  1480. config CPU_MIPS32_R5_FEATURES
  1481. bool "MIPS32 Release 5 Features"
  1482. depends on SYS_HAS_CPU_MIPS32_R5
  1483. depends on CPU_MIPS32_R2
  1484. help
  1485. Choose this option to build a kernel for release 2 or later of the
  1486. MIPS32 architecture including features from release 5 such as
  1487. support for Extended Physical Addressing (XPA).
  1488. config CPU_MIPS32_R5_XPA
  1489. bool "Extended Physical Addressing (XPA)"
  1490. depends on CPU_MIPS32_R5_FEATURES
  1491. depends on !EVA
  1492. depends on !PAGE_SIZE_4KB
  1493. depends on SYS_SUPPORTS_HIGHMEM
  1494. select XPA
  1495. select HIGHMEM
  1496. select ARCH_PHYS_ADDR_T_64BIT
  1497. default n
  1498. help
  1499. Choose this option if you want to enable the Extended Physical
  1500. Addressing (XPA) on your MIPS32 core (such as P5600 series). The
  1501. benefit is to increase physical addressing equal to or greater
  1502. than 40 bits. Note that this has the side effect of turning on
  1503. 64-bit addressing which in turn makes the PTEs 64-bit in size.
  1504. If unsure, say 'N' here.
  1505. if CPU_LOONGSON2F
  1506. config CPU_NOP_WORKAROUNDS
  1507. bool
  1508. config CPU_JUMP_WORKAROUNDS
  1509. bool
  1510. config CPU_LOONGSON2F_WORKAROUNDS
  1511. bool "Loongson 2F Workarounds"
  1512. default y
  1513. select CPU_NOP_WORKAROUNDS
  1514. select CPU_JUMP_WORKAROUNDS
  1515. help
  1516. Loongson 2F01 / 2F02 processors have the NOP & JUMP issues which
  1517. require workarounds. Without workarounds the system may hang
  1518. unexpectedly. For more information please refer to the gas
  1519. -mfix-loongson2f-nop and -mfix-loongson2f-jump options.
  1520. Loongson 2F03 and later have fixed these issues and no workarounds
  1521. are needed. The workarounds have no significant side effect on them
  1522. but may decrease the performance of the system so this option should
  1523. be disabled unless the kernel is intended to be run on 2F01 or 2F02
  1524. systems.
  1525. If unsure, please say Y.
  1526. endif # CPU_LOONGSON2F
  1527. config SYS_SUPPORTS_ZBOOT
  1528. bool
  1529. select HAVE_KERNEL_GZIP
  1530. select HAVE_KERNEL_BZIP2
  1531. select HAVE_KERNEL_LZ4
  1532. select HAVE_KERNEL_LZMA
  1533. select HAVE_KERNEL_LZO
  1534. select HAVE_KERNEL_XZ
  1535. config SYS_SUPPORTS_ZBOOT_UART16550
  1536. bool
  1537. select SYS_SUPPORTS_ZBOOT
  1538. config CPU_LOONGSON2
  1539. bool
  1540. select CPU_SUPPORTS_32BIT_KERNEL
  1541. select CPU_SUPPORTS_64BIT_KERNEL
  1542. select CPU_SUPPORTS_HIGHMEM
  1543. select CPU_SUPPORTS_HUGEPAGES
  1544. config CPU_LOONGSON1
  1545. bool
  1546. select CPU_MIPS32
  1547. select CPU_MIPSR2
  1548. select CPU_HAS_PREFETCH
  1549. select CPU_SUPPORTS_32BIT_KERNEL
  1550. select CPU_SUPPORTS_HIGHMEM
  1551. select CPU_SUPPORTS_CPUFREQ
  1552. config CPU_BMIPS32_3300
  1553. select SMP_UP if SMP
  1554. bool
  1555. config CPU_BMIPS4350
  1556. bool
  1557. select SYS_SUPPORTS_SMP
  1558. select SYS_SUPPORTS_HOTPLUG_CPU
  1559. config CPU_BMIPS4380
  1560. bool
  1561. select MIPS_L1_CACHE_SHIFT_6
  1562. select SYS_SUPPORTS_SMP
  1563. select SYS_SUPPORTS_HOTPLUG_CPU
  1564. config CPU_BMIPS5000
  1565. bool
  1566. select MIPS_CPU_SCACHE
  1567. select MIPS_L1_CACHE_SHIFT_7
  1568. select SYS_SUPPORTS_SMP
  1569. select SYS_SUPPORTS_HOTPLUG_CPU
  1570. config SYS_HAS_CPU_LOONGSON3
  1571. bool
  1572. select CPU_SUPPORTS_CPUFREQ
  1573. config SYS_HAS_CPU_LOONGSON2E
  1574. bool
  1575. config SYS_HAS_CPU_LOONGSON2F
  1576. bool
  1577. select CPU_SUPPORTS_CPUFREQ
  1578. select CPU_SUPPORTS_ADDRWINCFG if 64BIT
  1579. select CPU_SUPPORTS_UNCACHED_ACCELERATED
  1580. config SYS_HAS_CPU_LOONGSON1B
  1581. bool
  1582. config SYS_HAS_CPU_MIPS32_R1
  1583. bool
  1584. config SYS_HAS_CPU_MIPS32_R2
  1585. bool
  1586. config SYS_HAS_CPU_MIPS32_R3_5
  1587. bool
  1588. config SYS_HAS_CPU_MIPS32_R5
  1589. bool
  1590. config SYS_HAS_CPU_MIPS32_R6
  1591. bool
  1592. config SYS_HAS_CPU_MIPS64_R1
  1593. bool
  1594. config SYS_HAS_CPU_MIPS64_R2
  1595. bool
  1596. config SYS_HAS_CPU_MIPS64_R6
  1597. bool
  1598. config SYS_HAS_CPU_R3000
  1599. bool
  1600. config SYS_HAS_CPU_TX39XX
  1601. bool
  1602. config SYS_HAS_CPU_VR41XX
  1603. bool
  1604. config SYS_HAS_CPU_R4300
  1605. bool
  1606. config SYS_HAS_CPU_R4X00
  1607. bool
  1608. config SYS_HAS_CPU_TX49XX
  1609. bool
  1610. config SYS_HAS_CPU_R5000
  1611. bool
  1612. config SYS_HAS_CPU_R5432
  1613. bool
  1614. config SYS_HAS_CPU_R5500
  1615. bool
  1616. config SYS_HAS_CPU_R6000
  1617. bool
  1618. config SYS_HAS_CPU_NEVADA
  1619. bool
  1620. config SYS_HAS_CPU_R8000
  1621. bool
  1622. config SYS_HAS_CPU_R10000
  1623. bool
  1624. config SYS_HAS_CPU_RM7000
  1625. bool
  1626. config SYS_HAS_CPU_SB1
  1627. bool
  1628. config SYS_HAS_CPU_CAVIUM_OCTEON
  1629. bool
  1630. config SYS_HAS_CPU_BMIPS
  1631. bool
  1632. config SYS_HAS_CPU_BMIPS32_3300
  1633. bool
  1634. select SYS_HAS_CPU_BMIPS
  1635. config SYS_HAS_CPU_BMIPS4350
  1636. bool
  1637. select SYS_HAS_CPU_BMIPS
  1638. config SYS_HAS_CPU_BMIPS4380
  1639. bool
  1640. select SYS_HAS_CPU_BMIPS
  1641. config SYS_HAS_CPU_BMIPS5000
  1642. bool
  1643. select SYS_HAS_CPU_BMIPS
  1644. config SYS_HAS_CPU_XLR
  1645. bool
  1646. config SYS_HAS_CPU_XLP
  1647. bool
  1648. config MIPS_MALTA_PM
  1649. depends on MIPS_MALTA
  1650. depends on PCI
  1651. bool
  1652. default y
  1653. #
  1654. # CPU may reorder R->R, R->W, W->R, W->W
  1655. # Reordering beyond LL and SC is handled in WEAK_REORDERING_BEYOND_LLSC
  1656. #
  1657. config WEAK_ORDERING
  1658. bool
  1659. #
  1660. # CPU may reorder reads and writes beyond LL/SC
  1661. # CPU may reorder R->LL, R->LL, W->LL, W->LL, R->SC, R->SC, W->SC, W->SC
  1662. #
  1663. config WEAK_REORDERING_BEYOND_LLSC
  1664. bool
  1665. endmenu
  1666. #
  1667. # These two indicate any level of the MIPS32 and MIPS64 architecture
  1668. #
  1669. config CPU_MIPS32
  1670. bool
  1671. default y if CPU_MIPS32_R1 || CPU_MIPS32_R2 || CPU_MIPS32_R6
  1672. config CPU_MIPS64
  1673. bool
  1674. default y if CPU_MIPS64_R1 || CPU_MIPS64_R2 || CPU_MIPS64_R6
  1675. #
  1676. # These two indicate the revision of the architecture, either Release 1 or Release 2
  1677. #
  1678. config CPU_MIPSR1
  1679. bool
  1680. default y if CPU_MIPS32_R1 || CPU_MIPS64_R1
  1681. config CPU_MIPSR2
  1682. bool
  1683. default y if CPU_MIPS32_R2 || CPU_MIPS64_R2 || CPU_CAVIUM_OCTEON
  1684. select MIPS_SPRAM
  1685. config CPU_MIPSR6
  1686. bool
  1687. default y if CPU_MIPS32_R6 || CPU_MIPS64_R6
  1688. select MIPS_SPRAM
  1689. config EVA
  1690. bool
  1691. config XPA
  1692. bool
  1693. config SYS_SUPPORTS_32BIT_KERNEL
  1694. bool
  1695. config SYS_SUPPORTS_64BIT_KERNEL
  1696. bool
  1697. config CPU_SUPPORTS_32BIT_KERNEL
  1698. bool
  1699. config CPU_SUPPORTS_64BIT_KERNEL
  1700. bool
  1701. config CPU_SUPPORTS_CPUFREQ
  1702. bool
  1703. config CPU_SUPPORTS_ADDRWINCFG
  1704. bool
  1705. config CPU_SUPPORTS_HUGEPAGES
  1706. bool
  1707. config CPU_SUPPORTS_UNCACHED_ACCELERATED
  1708. bool
  1709. config MIPS_PGD_C0_CONTEXT
  1710. bool
  1711. default y if 64BIT && CPU_MIPSR2 && !CPU_XLP
  1712. #
  1713. # Set to y for ptrace access to watch registers.
  1714. #
  1715. config HARDWARE_WATCHPOINTS
  1716. bool
  1717. default y if CPU_MIPSR1 || CPU_MIPSR2
  1718. menu "Kernel type"
  1719. choice
  1720. prompt "Kernel code model"
  1721. help
  1722. You should only select this option if you have a workload that
  1723. actually benefits from 64-bit processing or if your machine has
  1724. large memory. You will only be presented a single option in this
  1725. menu if your system does not support both 32-bit and 64-bit kernels.
  1726. config 32BIT
  1727. bool "32-bit kernel"
  1728. depends on CPU_SUPPORTS_32BIT_KERNEL && SYS_SUPPORTS_32BIT_KERNEL
  1729. select TRAD_SIGNALS
  1730. help
  1731. Select this option if you want to build a 32-bit kernel.
  1732. config 64BIT
  1733. bool "64-bit kernel"
  1734. depends on CPU_SUPPORTS_64BIT_KERNEL && SYS_SUPPORTS_64BIT_KERNEL
  1735. help
  1736. Select this option if you want to build a 64-bit kernel.
  1737. endchoice
  1738. config KVM_GUEST
  1739. bool "KVM Guest Kernel"
  1740. depends on BROKEN_ON_SMP
  1741. help
  1742. Select this option if building a guest kernel for KVM (Trap & Emulate) mode
  1743. config KVM_GUEST_TIMER_FREQ
  1744. int "Count/Compare Timer Frequency (MHz)"
  1745. depends on KVM_GUEST
  1746. default 100
  1747. help
  1748. Set this to non-zero if building a guest kernel for KVM to skip RTC
  1749. emulation when determining guest CPU Frequency. Instead, the guest's
  1750. timer frequency is specified directly.
  1751. choice
  1752. prompt "Kernel page size"
  1753. default PAGE_SIZE_4KB
  1754. config PAGE_SIZE_4KB
  1755. bool "4kB"
  1756. depends on !CPU_LOONGSON2 && !CPU_LOONGSON3
  1757. help
  1758. This option select the standard 4kB Linux page size. On some
  1759. R3000-family processors this is the only available page size. Using
  1760. 4kB page size will minimize memory consumption and is therefore
  1761. recommended for low memory systems.
  1762. config PAGE_SIZE_8KB
  1763. bool "8kB"
  1764. depends on CPU_R8000 || CPU_CAVIUM_OCTEON
  1765. help
  1766. Using 8kB page size will result in higher performance kernel at
  1767. the price of higher memory consumption. This option is available
  1768. only on R8000 and cnMIPS processors. Note that you will need a
  1769. suitable Linux distribution to support this.
  1770. config PAGE_SIZE_16KB
  1771. bool "16kB"
  1772. depends on !CPU_R3000 && !CPU_TX39XX
  1773. help
  1774. Using 16kB page size will result in higher performance kernel at
  1775. the price of higher memory consumption. This option is available on
  1776. all non-R3000 family processors. Note that you will need a suitable
  1777. Linux distribution to support this.
  1778. config PAGE_SIZE_32KB
  1779. bool "32kB"
  1780. depends on CPU_CAVIUM_OCTEON
  1781. help
  1782. Using 32kB page size will result in higher performance kernel at
  1783. the price of higher memory consumption. This option is available
  1784. only on cnMIPS cores. Note that you will need a suitable Linux
  1785. distribution to support this.
  1786. config PAGE_SIZE_64KB
  1787. bool "64kB"
  1788. depends on !CPU_R3000 && !CPU_TX39XX
  1789. help
  1790. Using 64kB page size will result in higher performance kernel at
  1791. the price of higher memory consumption. This option is available on
  1792. all non-R3000 family processor. Not that at the time of this
  1793. writing this option is still high experimental.
  1794. endchoice
  1795. config FORCE_MAX_ZONEORDER
  1796. int "Maximum zone order"
  1797. range 14 64 if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_64KB
  1798. default "14" if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_64KB
  1799. range 13 64 if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_32KB
  1800. default "13" if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_32KB
  1801. range 12 64 if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_16KB
  1802. default "12" if MIPS_HUGE_TLB_SUPPORT && PAGE_SIZE_16KB
  1803. range 11 64
  1804. default "11"
  1805. help
  1806. The kernel memory allocator divides physically contiguous memory
  1807. blocks into "zones", where each zone is a power of two number of
  1808. pages. This option selects the largest power of two that the kernel
  1809. keeps in the memory allocator. If you need to allocate very large
  1810. blocks of physically contiguous memory, then you may need to
  1811. increase this value.
  1812. This config option is actually maximum order plus one. For example,
  1813. a value of 11 means that the largest free memory block is 2^10 pages.
  1814. The page size is not necessarily 4KB. Keep this in mind
  1815. when choosing a value for this option.
  1816. config BOARD_SCACHE
  1817. bool
  1818. config IP22_CPU_SCACHE
  1819. bool
  1820. select BOARD_SCACHE
  1821. #
  1822. # Support for a MIPS32 / MIPS64 style S-caches
  1823. #
  1824. config MIPS_CPU_SCACHE
  1825. bool
  1826. select BOARD_SCACHE
  1827. config R5000_CPU_SCACHE
  1828. bool
  1829. select BOARD_SCACHE
  1830. config RM7000_CPU_SCACHE
  1831. bool
  1832. select BOARD_SCACHE
  1833. config SIBYTE_DMA_PAGEOPS
  1834. bool "Use DMA to clear/copy pages"
  1835. depends on CPU_SB1
  1836. help
  1837. Instead of using the CPU to zero and copy pages, use a Data Mover
  1838. channel. These DMA channels are otherwise unused by the standard
  1839. SiByte Linux port. Seems to give a small performance benefit.
  1840. config CPU_HAS_PREFETCH
  1841. bool
  1842. config CPU_GENERIC_DUMP_TLB
  1843. bool
  1844. default y if !(CPU_R3000 || CPU_R6000 || CPU_R8000 || CPU_TX39XX)
  1845. config CPU_R4K_FPU
  1846. bool
  1847. default y if !(CPU_R3000 || CPU_R6000 || CPU_TX39XX || CPU_CAVIUM_OCTEON)
  1848. config CPU_R4K_CACHE_TLB
  1849. bool
  1850. default y if !(CPU_R3000 || CPU_R8000 || CPU_SB1 || CPU_TX39XX || CPU_CAVIUM_OCTEON)
  1851. config MIPS_MT_SMP
  1852. bool "MIPS MT SMP support (1 TC on each available VPE)"
  1853. depends on SYS_SUPPORTS_MULTITHREADING
  1854. select CPU_MIPSR2_IRQ_VI
  1855. select CPU_MIPSR2_IRQ_EI
  1856. select SYNC_R4K
  1857. select MIPS_GIC_IPI
  1858. select MIPS_MT
  1859. select SMP
  1860. select SMP_UP
  1861. select SYS_SUPPORTS_SMP
  1862. select SYS_SUPPORTS_SCHED_SMT
  1863. select MIPS_PERF_SHARED_TC_COUNTERS
  1864. help
  1865. This is a kernel model which is known as SMVP. This is supported
  1866. on cores with the MT ASE and uses the available VPEs to implement
  1867. virtual processors which supports SMP. This is equivalent to the
  1868. Intel Hyperthreading feature. For further information go to
  1869. <http://www.imgtec.com/mips/mips-multithreading.asp>.
  1870. config MIPS_MT
  1871. bool
  1872. config SCHED_SMT
  1873. bool "SMT (multithreading) scheduler support"
  1874. depends on SYS_SUPPORTS_SCHED_SMT
  1875. default n
  1876. help
  1877. SMT scheduler support improves the CPU scheduler's decision making
  1878. when dealing with MIPS MT enabled cores at a cost of slightly
  1879. increased overhead in some places. If unsure say N here.
  1880. config SYS_SUPPORTS_SCHED_SMT
  1881. bool
  1882. config SYS_SUPPORTS_MULTITHREADING
  1883. bool
  1884. config MIPS_MT_FPAFF
  1885. bool "Dynamic FPU affinity for FP-intensive threads"
  1886. default y
  1887. depends on MIPS_MT_SMP
  1888. config MIPSR2_TO_R6_EMULATOR
  1889. bool "MIPS R2-to-R6 emulator"
  1890. depends on CPU_MIPSR6 && !SMP
  1891. default y
  1892. help
  1893. Choose this option if you want to run non-R6 MIPS userland code.
  1894. Even if you say 'Y' here, the emulator will still be disabled by
  1895. default. You can enable it using the 'mipsr2emu' kernel option.
  1896. The only reason this is a build-time option is to save ~14K from the
  1897. final kernel image.
  1898. comment "MIPS R2-to-R6 emulator is only available for UP kernels"
  1899. depends on SMP && CPU_MIPSR6
  1900. config MIPS_VPE_LOADER
  1901. bool "VPE loader support."
  1902. depends on SYS_SUPPORTS_MULTITHREADING && MODULES
  1903. select CPU_MIPSR2_IRQ_VI
  1904. select CPU_MIPSR2_IRQ_EI
  1905. select MIPS_MT
  1906. help
  1907. Includes a loader for loading an elf relocatable object
  1908. onto another VPE and running it.
  1909. config MIPS_VPE_LOADER_CMP
  1910. bool
  1911. default "y"
  1912. depends on MIPS_VPE_LOADER && MIPS_CMP
  1913. config MIPS_VPE_LOADER_MT
  1914. bool
  1915. default "y"
  1916. depends on MIPS_VPE_LOADER && !MIPS_CMP
  1917. config MIPS_VPE_LOADER_TOM
  1918. bool "Load VPE program into memory hidden from linux"
  1919. depends on MIPS_VPE_LOADER
  1920. default y
  1921. help
  1922. The loader can use memory that is present but has been hidden from
  1923. Linux using the kernel command line option "mem=xxMB". It's up to
  1924. you to ensure the amount you put in the option and the space your
  1925. program requires is less or equal to the amount physically present.
  1926. config MIPS_VPE_APSP_API
  1927. bool "Enable support for AP/SP API (RTLX)"
  1928. depends on MIPS_VPE_LOADER
  1929. help
  1930. config MIPS_VPE_APSP_API_CMP
  1931. bool
  1932. default "y"
  1933. depends on MIPS_VPE_APSP_API && MIPS_CMP
  1934. config MIPS_VPE_APSP_API_MT
  1935. bool
  1936. default "y"
  1937. depends on MIPS_VPE_APSP_API && !MIPS_CMP
  1938. config MIPS_CMP
  1939. bool "MIPS CMP framework support (DEPRECATED)"
  1940. depends on SYS_SUPPORTS_MIPS_CMP
  1941. select MIPS_GIC_IPI
  1942. select SMP
  1943. select SYNC_R4K
  1944. select SYS_SUPPORTS_SMP
  1945. select WEAK_ORDERING
  1946. default n
  1947. help
  1948. Select this if you are using a bootloader which implements the "CMP
  1949. framework" protocol (ie. YAMON) and want your kernel to make use of
  1950. its ability to start secondary CPUs.
  1951. Unless you have a specific need, you should use CONFIG_MIPS_CPS
  1952. instead of this.
  1953. config MIPS_CPS
  1954. bool "MIPS Coherent Processing System support"
  1955. depends on SYS_SUPPORTS_MIPS_CPS
  1956. select MIPS_CM
  1957. select MIPS_CPC
  1958. select MIPS_CPS_PM if HOTPLUG_CPU
  1959. select MIPS_GIC_IPI
  1960. select SMP
  1961. select SYNC_R4K if (CEVT_R4K || CSRC_R4K)
  1962. select SYS_SUPPORTS_HOTPLUG_CPU
  1963. select SYS_SUPPORTS_SMP
  1964. select WEAK_ORDERING
  1965. help
  1966. Select this if you wish to run an SMP kernel across multiple cores
  1967. within a MIPS Coherent Processing System. When this option is
  1968. enabled the kernel will probe for other cores and boot them with
  1969. no external assistance. It is safe to enable this when hardware
  1970. support is unavailable.
  1971. config MIPS_CPS_PM
  1972. depends on MIPS_CPS
  1973. select MIPS_CPC
  1974. bool
  1975. config MIPS_GIC_IPI
  1976. bool
  1977. config MIPS_CM
  1978. bool
  1979. config MIPS_CPC
  1980. bool
  1981. config SB1_PASS_2_WORKAROUNDS
  1982. bool
  1983. depends on CPU_SB1 && (CPU_SB1_PASS_2_2 || CPU_SB1_PASS_2)
  1984. default y
  1985. config SB1_PASS_2_1_WORKAROUNDS
  1986. bool
  1987. depends on CPU_SB1 && CPU_SB1_PASS_2
  1988. default y
  1989. config ARCH_PHYS_ADDR_T_64BIT
  1990. bool
  1991. choice
  1992. prompt "SmartMIPS or microMIPS ASE support"
  1993. config CPU_NEEDS_NO_SMARTMIPS_OR_MICROMIPS
  1994. bool "None"
  1995. help
  1996. Select this if you want neither microMIPS nor SmartMIPS support
  1997. config CPU_HAS_SMARTMIPS
  1998. depends on SYS_SUPPORTS_SMARTMIPS
  1999. bool "SmartMIPS"
  2000. help
  2001. SmartMIPS is a extension of the MIPS32 architecture aimed at
  2002. increased security at both hardware and software level for
  2003. smartcards. Enabling this option will allow proper use of the
  2004. SmartMIPS instructions by Linux applications. However a kernel with
  2005. this option will not work on a MIPS core without SmartMIPS core. If
  2006. you don't know you probably don't have SmartMIPS and should say N
  2007. here.
  2008. config CPU_MICROMIPS
  2009. depends on 32BIT && SYS_SUPPORTS_MICROMIPS && !CPU_MIPSR6
  2010. bool "microMIPS"
  2011. help
  2012. When this option is enabled the kernel will be built using the
  2013. microMIPS ISA
  2014. endchoice
  2015. config CPU_HAS_MSA
  2016. bool "Support for the MIPS SIMD Architecture (EXPERIMENTAL)"
  2017. depends on CPU_SUPPORTS_MSA
  2018. depends on 64BIT || MIPS_O32_FP64_SUPPORT
  2019. help
  2020. MIPS SIMD Architecture (MSA) introduces 128 bit wide vector registers
  2021. and a set of SIMD instructions to operate on them. When this option
  2022. is enabled the kernel will support allocating & switching MSA
  2023. vector register contexts. If you know that your kernel will only be
  2024. running on CPUs which do not support MSA or that your userland will
  2025. not be making use of it then you may wish to say N here to reduce
  2026. the size & complexity of your kernel.
  2027. If unsure, say Y.
  2028. config CPU_HAS_WB
  2029. bool
  2030. config XKS01
  2031. bool
  2032. #
  2033. # Vectored interrupt mode is an R2 feature
  2034. #
  2035. config CPU_MIPSR2_IRQ_VI
  2036. bool
  2037. #
  2038. # Extended interrupt mode is an R2 feature
  2039. #
  2040. config CPU_MIPSR2_IRQ_EI
  2041. bool
  2042. config CPU_HAS_SYNC
  2043. bool
  2044. depends on !CPU_R3000
  2045. default y
  2046. #
  2047. # CPU non-features
  2048. #
  2049. config CPU_DADDI_WORKAROUNDS
  2050. bool
  2051. config CPU_R4000_WORKAROUNDS
  2052. bool
  2053. select CPU_R4400_WORKAROUNDS
  2054. config CPU_R4400_WORKAROUNDS
  2055. bool
  2056. #
  2057. # - Highmem only makes sense for the 32-bit kernel.
  2058. # - The current highmem code will only work properly on physically indexed
  2059. # caches such as R3000, SB1, R7000 or those that look like they're virtually
  2060. # indexed such as R4000/R4400 SC and MC versions or R10000. So for the
  2061. # moment we protect the user and offer the highmem option only on machines
  2062. # where it's known to be safe. This will not offer highmem on a few systems
  2063. # such as MIPS32 and MIPS64 CPUs which may have virtual and physically
  2064. # indexed CPUs but we're playing safe.
  2065. # - We use SYS_SUPPORTS_HIGHMEM to offer highmem only for systems where we
  2066. # know they might have memory configurations that could make use of highmem
  2067. # support.
  2068. #
  2069. config HIGHMEM
  2070. bool "High Memory Support"
  2071. depends on 32BIT && CPU_SUPPORTS_HIGHMEM && SYS_SUPPORTS_HIGHMEM && !CPU_MIPS32_3_5_EVA
  2072. config CPU_SUPPORTS_HIGHMEM
  2073. bool
  2074. config SYS_SUPPORTS_HIGHMEM
  2075. bool
  2076. config SYS_SUPPORTS_SMARTMIPS
  2077. bool
  2078. config SYS_SUPPORTS_MICROMIPS
  2079. bool
  2080. config SYS_SUPPORTS_MIPS16
  2081. bool
  2082. help
  2083. This option must be set if a kernel might be executed on a MIPS16-
  2084. enabled CPU even if MIPS16 is not actually being used. In other
  2085. words, it makes the kernel MIPS16-tolerant.
  2086. config CPU_SUPPORTS_MSA
  2087. bool
  2088. config ARCH_FLATMEM_ENABLE
  2089. def_bool y
  2090. depends on !NUMA && !CPU_LOONGSON2
  2091. config ARCH_DISCONTIGMEM_ENABLE
  2092. bool
  2093. default y if SGI_IP27
  2094. help
  2095. Say Y to support efficient handling of discontiguous physical memory,
  2096. for architectures which are either NUMA (Non-Uniform Memory Access)
  2097. or have huge holes in the physical address space for other reasons.
  2098. See <file:Documentation/vm/numa> for more.
  2099. config ARCH_SPARSEMEM_ENABLE
  2100. bool
  2101. select SPARSEMEM_STATIC
  2102. config NUMA
  2103. bool "NUMA Support"
  2104. depends on SYS_SUPPORTS_NUMA
  2105. help
  2106. Say Y to compile the kernel to support NUMA (Non-Uniform Memory
  2107. Access). This option improves performance on systems with more
  2108. than two nodes; on two node systems it is generally better to
  2109. leave it disabled; on single node systems disable this option
  2110. disabled.
  2111. config SYS_SUPPORTS_NUMA
  2112. bool
  2113. config NODES_SHIFT
  2114. int
  2115. default "6"
  2116. depends on NEED_MULTIPLE_NODES
  2117. config HW_PERF_EVENTS
  2118. bool "Enable hardware performance counter support for perf events"
  2119. depends on PERF_EVENTS && OPROFILE=n && (CPU_MIPS32 || CPU_MIPS64 || CPU_R10000 || CPU_SB1 || CPU_CAVIUM_OCTEON || CPU_XLP || CPU_LOONGSON3)
  2120. default y
  2121. help
  2122. Enable hardware performance counter support for perf events. If
  2123. disabled, perf events will use software events only.
  2124. source "mm/Kconfig"
  2125. config SMP
  2126. bool "Multi-Processing support"
  2127. depends on SYS_SUPPORTS_SMP
  2128. help
  2129. This enables support for systems with more than one CPU. If you have
  2130. a system with only one CPU, say N. If you have a system with more
  2131. than one CPU, say Y.
  2132. If you say N here, the kernel will run on uni- and multiprocessor
  2133. machines, but will use only one CPU of a multiprocessor machine. If
  2134. you say Y here, the kernel will run on many, but not all,
  2135. uniprocessor machines. On a uniprocessor machine, the kernel
  2136. will run faster if you say N here.
  2137. People using multiprocessor machines who say Y here should also say
  2138. Y to "Enhanced Real Time Clock Support", below.
  2139. See also the SMP-HOWTO available at
  2140. <http://www.tldp.org/docs.html#howto>.
  2141. If you don't know what to do here, say N.
  2142. config SMP_UP
  2143. bool
  2144. config SYS_SUPPORTS_MIPS_CMP
  2145. bool
  2146. config SYS_SUPPORTS_MIPS_CPS
  2147. bool
  2148. config SYS_SUPPORTS_SMP
  2149. bool
  2150. config NR_CPUS_DEFAULT_4
  2151. bool
  2152. config NR_CPUS_DEFAULT_8
  2153. bool
  2154. config NR_CPUS_DEFAULT_16
  2155. bool
  2156. config NR_CPUS_DEFAULT_32
  2157. bool
  2158. config NR_CPUS_DEFAULT_64
  2159. bool
  2160. config NR_CPUS
  2161. int "Maximum number of CPUs (2-256)"
  2162. range 2 256
  2163. depends on SMP
  2164. default "4" if NR_CPUS_DEFAULT_4
  2165. default "8" if NR_CPUS_DEFAULT_8
  2166. default "16" if NR_CPUS_DEFAULT_16
  2167. default "32" if NR_CPUS_DEFAULT_32
  2168. default "64" if NR_CPUS_DEFAULT_64
  2169. help
  2170. This allows you to specify the maximum number of CPUs which this
  2171. kernel will support. The maximum supported value is 32 for 32-bit
  2172. kernel and 64 for 64-bit kernels; the minimum value which makes
  2173. sense is 1 for Qemu (useful only for kernel debugging purposes)
  2174. and 2 for all others.
  2175. This is purely to save memory - each supported CPU adds
  2176. approximately eight kilobytes to the kernel image. For best
  2177. performance should round up your number of processors to the next
  2178. power of two.
  2179. config MIPS_PERF_SHARED_TC_COUNTERS
  2180. bool
  2181. #
  2182. # Timer Interrupt Frequency Configuration
  2183. #
  2184. choice
  2185. prompt "Timer frequency"
  2186. default HZ_250
  2187. help
  2188. Allows the configuration of the timer frequency.
  2189. config HZ_48
  2190. bool "48 HZ" if SYS_SUPPORTS_48HZ || SYS_SUPPORTS_ARBIT_HZ
  2191. config HZ_100
  2192. bool "100 HZ" if SYS_SUPPORTS_100HZ || SYS_SUPPORTS_ARBIT_HZ
  2193. config HZ_128
  2194. bool "128 HZ" if SYS_SUPPORTS_128HZ || SYS_SUPPORTS_ARBIT_HZ
  2195. config HZ_250
  2196. bool "250 HZ" if SYS_SUPPORTS_250HZ || SYS_SUPPORTS_ARBIT_HZ
  2197. config HZ_256
  2198. bool "256 HZ" if SYS_SUPPORTS_256HZ || SYS_SUPPORTS_ARBIT_HZ
  2199. config HZ_1000
  2200. bool "1000 HZ" if SYS_SUPPORTS_1000HZ || SYS_SUPPORTS_ARBIT_HZ
  2201. config HZ_1024
  2202. bool "1024 HZ" if SYS_SUPPORTS_1024HZ || SYS_SUPPORTS_ARBIT_HZ
  2203. endchoice
  2204. config SYS_SUPPORTS_48HZ
  2205. bool
  2206. config SYS_SUPPORTS_100HZ
  2207. bool
  2208. config SYS_SUPPORTS_128HZ
  2209. bool
  2210. config SYS_SUPPORTS_250HZ
  2211. bool
  2212. config SYS_SUPPORTS_256HZ
  2213. bool
  2214. config SYS_SUPPORTS_1000HZ
  2215. bool
  2216. config SYS_SUPPORTS_1024HZ
  2217. bool
  2218. config SYS_SUPPORTS_ARBIT_HZ
  2219. bool
  2220. default y if !SYS_SUPPORTS_48HZ && !SYS_SUPPORTS_100HZ && \
  2221. !SYS_SUPPORTS_128HZ && !SYS_SUPPORTS_250HZ && \
  2222. !SYS_SUPPORTS_256HZ && !SYS_SUPPORTS_1000HZ && \
  2223. !SYS_SUPPORTS_1024HZ
  2224. config HZ
  2225. int
  2226. default 48 if HZ_48
  2227. default 100 if HZ_100
  2228. default 128 if HZ_128
  2229. default 250 if HZ_250
  2230. default 256 if HZ_256
  2231. default 1000 if HZ_1000
  2232. default 1024 if HZ_1024
  2233. config SCHED_HRTICK
  2234. def_bool HIGH_RES_TIMERS
  2235. source "kernel/Kconfig.preempt"
  2236. config KEXEC
  2237. bool "Kexec system call"
  2238. help
  2239. kexec is a system call that implements the ability to shutdown your
  2240. current kernel, and to start another kernel. It is like a reboot
  2241. but it is independent of the system firmware. And like a reboot
  2242. you can start any kernel with it, not just Linux.
  2243. The name comes from the similarity to the exec system call.
  2244. It is an ongoing process to be certain the hardware in a machine
  2245. is properly shutdown, so do not be surprised if this code does not
  2246. initially work for you. As of this writing the exact hardware
  2247. interface is strongly in flux, so no good recommendation can be
  2248. made.
  2249. config CRASH_DUMP
  2250. bool "Kernel crash dumps"
  2251. help
  2252. Generate crash dump after being started by kexec.
  2253. This should be normally only set in special crash dump kernels
  2254. which are loaded in the main kernel with kexec-tools into
  2255. a specially reserved region and then later executed after
  2256. a crash by kdump/kexec. The crash dump kernel must be compiled
  2257. to a memory address not used by the main kernel or firmware using
  2258. PHYSICAL_START.
  2259. config PHYSICAL_START
  2260. hex "Physical address where the kernel is loaded"
  2261. default "0xffffffff84000000" if 64BIT
  2262. default "0x84000000" if 32BIT
  2263. depends on CRASH_DUMP
  2264. help
  2265. This gives the CKSEG0 or KSEG0 address where the kernel is loaded.
  2266. If you plan to use kernel for capturing the crash dump change
  2267. this value to start of the reserved region (the "X" value as
  2268. specified in the "crashkernel=YM@XM" command line boot parameter
  2269. passed to the panic-ed kernel).
  2270. config SECCOMP
  2271. bool "Enable seccomp to safely compute untrusted bytecode"
  2272. depends on PROC_FS
  2273. default y
  2274. help
  2275. This kernel feature is useful for number crunching applications
  2276. that may need to compute untrusted bytecode during their
  2277. execution. By using pipes or other transports made available to
  2278. the process as file descriptors supporting the read/write
  2279. syscalls, it's possible to isolate those applications in
  2280. their own address space using seccomp. Once seccomp is
  2281. enabled via /proc/<pid>/seccomp, it cannot be disabled
  2282. and the task is only allowed to execute a few safe syscalls
  2283. defined by each seccomp mode.
  2284. If unsure, say Y. Only embedded should say N here.
  2285. config MIPS_O32_FP64_SUPPORT
  2286. bool "Support for O32 binaries using 64-bit FP (EXPERIMENTAL)"
  2287. depends on 32BIT || MIPS32_O32
  2288. help
  2289. When this is enabled, the kernel will support use of 64-bit floating
  2290. point registers with binaries using the O32 ABI along with the
  2291. EF_MIPS_FP64 ELF header flag (typically built with -mfp64). On
  2292. 32-bit MIPS systems this support is at the cost of increasing the
  2293. size and complexity of the compiled FPU emulator. Thus if you are
  2294. running a MIPS32 system and know that none of your userland binaries
  2295. will require 64-bit floating point, you may wish to reduce the size
  2296. of your kernel & potentially improve FP emulation performance by
  2297. saying N here.
  2298. Although binutils currently supports use of this flag the details
  2299. concerning its effect upon the O32 ABI in userland are still being
  2300. worked on. In order to avoid userland becoming dependant upon current
  2301. behaviour before the details have been finalised, this option should
  2302. be considered experimental and only enabled by those working upon
  2303. said details.
  2304. If unsure, say N.
  2305. config USE_OF
  2306. bool
  2307. select OF
  2308. select OF_EARLY_FLATTREE
  2309. select IRQ_DOMAIN
  2310. config BUILTIN_DTB
  2311. bool
  2312. choice
  2313. prompt "Kernel appended dtb support" if OF
  2314. default MIPS_NO_APPENDED_DTB
  2315. config MIPS_NO_APPENDED_DTB
  2316. bool "None"
  2317. help
  2318. Do not enable appended dtb support.
  2319. config MIPS_RAW_APPENDED_DTB
  2320. bool "vmlinux.bin"
  2321. help
  2322. With this option, the boot code will look for a device tree binary
  2323. DTB) appended to raw vmlinux.bin (without decompressor).
  2324. (e.g. cat vmlinux.bin <filename>.dtb > vmlinux_w_dtb).
  2325. This is meant as a backward compatibility convenience for those
  2326. systems with a bootloader that can't be upgraded to accommodate
  2327. the documented boot protocol using a device tree.
  2328. Beware that there is very little in terms of protection against
  2329. this option being confused by leftover garbage in memory that might
  2330. look like a DTB header after a reboot if no actual DTB is appended
  2331. to vmlinux.bin. Do not leave this option active in a production kernel
  2332. if you don't intend to always append a DTB.
  2333. config MIPS_ZBOOT_APPENDED_DTB
  2334. bool "vmlinuz.bin"
  2335. depends on SYS_SUPPORTS_ZBOOT
  2336. help
  2337. With this option, the boot code will look for a device tree binary
  2338. DTB) appended to raw vmlinuz.bin (with decompressor).
  2339. (e.g. cat vmlinuz.bin <filename>.dtb > vmlinuz_w_dtb).
  2340. This is meant as a backward compatibility convenience for those
  2341. systems with a bootloader that can't be upgraded to accommodate
  2342. the documented boot protocol using a device tree.
  2343. Beware that there is very little in terms of protection against
  2344. this option being confused by leftover garbage in memory that might
  2345. look like a DTB header after a reboot if no actual DTB is appended
  2346. to vmlinuz.bin. Do not leave this option active in a production kernel
  2347. if you don't intend to always append a DTB.
  2348. endchoice
  2349. endmenu
  2350. config LOCKDEP_SUPPORT
  2351. bool
  2352. default y
  2353. config STACKTRACE_SUPPORT
  2354. bool
  2355. default y
  2356. config PGTABLE_LEVELS
  2357. int
  2358. default 3 if 64BIT && !PAGE_SIZE_64KB
  2359. default 2
  2360. source "init/Kconfig"
  2361. source "kernel/Kconfig.freezer"
  2362. menu "Bus options (PCI, PCMCIA, EISA, ISA, TC)"
  2363. config HW_HAS_EISA
  2364. bool
  2365. config HW_HAS_PCI
  2366. bool
  2367. config PCI
  2368. bool "Support for PCI controller"
  2369. depends on HW_HAS_PCI
  2370. select PCI_DOMAINS
  2371. select NO_GENERIC_PCI_IOPORT_MAP
  2372. help
  2373. Find out whether you have a PCI motherboard. PCI is the name of a
  2374. bus system, i.e. the way the CPU talks to the other stuff inside
  2375. your box. Other bus systems are ISA, EISA, or VESA. If you have PCI,
  2376. say Y, otherwise N.
  2377. config HT_PCI
  2378. bool "Support for HT-linked PCI"
  2379. default y
  2380. depends on CPU_LOONGSON3
  2381. select PCI
  2382. select PCI_DOMAINS
  2383. help
  2384. Loongson family machines use Hyper-Transport bus for inter-core
  2385. connection and device connection. The PCI bus is a subordinate
  2386. linked at HT. Choose Y for Loongson-3 based machines.
  2387. config PCI_DOMAINS
  2388. bool
  2389. source "drivers/pci/Kconfig"
  2390. source "drivers/pci/pcie/Kconfig"
  2391. #
  2392. # ISA support is now enabled via select. Too many systems still have the one
  2393. # or other ISA chip on the board that users don't know about so don't expect
  2394. # users to choose the right thing ...
  2395. #
  2396. config ISA
  2397. bool
  2398. config EISA
  2399. bool "EISA support"
  2400. depends on HW_HAS_EISA
  2401. select ISA
  2402. select GENERIC_ISA_DMA
  2403. ---help---
  2404. The Extended Industry Standard Architecture (EISA) bus was
  2405. developed as an open alternative to the IBM MicroChannel bus.
  2406. The EISA bus provided some of the features of the IBM MicroChannel
  2407. bus while maintaining backward compatibility with cards made for
  2408. the older ISA bus. The EISA bus saw limited use between 1988 and
  2409. 1995 when it was made obsolete by the PCI bus.
  2410. Say Y here if you are building a kernel for an EISA-based machine.
  2411. Otherwise, say N.
  2412. source "drivers/eisa/Kconfig"
  2413. config TC
  2414. bool "TURBOchannel support"
  2415. depends on MACH_DECSTATION
  2416. help
  2417. TURBOchannel is a DEC (now Compaq (now HP)) bus for Alpha and MIPS
  2418. processors. TURBOchannel programming specifications are available
  2419. at:
  2420. <ftp://ftp.hp.com/pub/alphaserver/archive/triadd/>
  2421. and:
  2422. <http://www.computer-refuge.org/classiccmp/ftp.digital.com/pub/DEC/TriAdd/>
  2423. Linux driver support status is documented at:
  2424. <http://www.linux-mips.org/wiki/DECstation>
  2425. config MMU
  2426. bool
  2427. default y
  2428. config I8253
  2429. bool
  2430. select CLKSRC_I8253
  2431. select CLKEVT_I8253
  2432. select MIPS_EXTERNAL_TIMER
  2433. config ZONE_DMA
  2434. bool
  2435. config ZONE_DMA32
  2436. bool
  2437. source "drivers/pcmcia/Kconfig"
  2438. source "drivers/pci/hotplug/Kconfig"
  2439. config RAPIDIO
  2440. tristate "RapidIO support"
  2441. depends on PCI
  2442. default n
  2443. help
  2444. If you say Y here, the kernel will include drivers and
  2445. infrastructure code to support RapidIO interconnect devices.
  2446. source "drivers/rapidio/Kconfig"
  2447. endmenu
  2448. menu "Executable file formats"
  2449. source "fs/Kconfig.binfmt"
  2450. config TRAD_SIGNALS
  2451. bool
  2452. config MIPS32_COMPAT
  2453. bool
  2454. config COMPAT
  2455. bool
  2456. config SYSVIPC_COMPAT
  2457. bool
  2458. config MIPS32_O32
  2459. bool "Kernel support for o32 binaries"
  2460. depends on 64BIT
  2461. select ARCH_WANT_OLD_COMPAT_IPC
  2462. select COMPAT
  2463. select MIPS32_COMPAT
  2464. select SYSVIPC_COMPAT if SYSVIPC
  2465. help
  2466. Select this option if you want to run o32 binaries. These are pure
  2467. 32-bit binaries as used by the 32-bit Linux/MIPS port. Most of
  2468. existing binaries are in this format.
  2469. If unsure, say Y.
  2470. config MIPS32_N32
  2471. bool "Kernel support for n32 binaries"
  2472. depends on 64BIT
  2473. select COMPAT
  2474. select MIPS32_COMPAT
  2475. select SYSVIPC_COMPAT if SYSVIPC
  2476. help
  2477. Select this option if you want to run n32 binaries. These are
  2478. 64-bit binaries using 32-bit quantities for addressing and certain
  2479. data that would normally be 64-bit. They are used in special
  2480. cases.
  2481. If unsure, say N.
  2482. config BINFMT_ELF32
  2483. bool
  2484. default y if MIPS32_O32 || MIPS32_N32
  2485. endmenu
  2486. menu "Power management options"
  2487. config ARCH_HIBERNATION_POSSIBLE
  2488. def_bool y
  2489. depends on SYS_SUPPORTS_HOTPLUG_CPU || !SMP
  2490. config ARCH_SUSPEND_POSSIBLE
  2491. def_bool y
  2492. depends on SYS_SUPPORTS_HOTPLUG_CPU || !SMP
  2493. source "kernel/power/Kconfig"
  2494. endmenu
  2495. config MIPS_EXTERNAL_TIMER
  2496. bool
  2497. menu "CPU Power Management"
  2498. if CPU_SUPPORTS_CPUFREQ && MIPS_EXTERNAL_TIMER
  2499. source "drivers/cpufreq/Kconfig"
  2500. endif
  2501. source "drivers/cpuidle/Kconfig"
  2502. endmenu
  2503. source "net/Kconfig"
  2504. source "drivers/Kconfig"
  2505. source "drivers/firmware/Kconfig"
  2506. source "fs/Kconfig"
  2507. source "arch/mips/Kconfig.debug"
  2508. source "security/Kconfig"
  2509. source "crypto/Kconfig"
  2510. source "lib/Kconfig"
  2511. source "arch/mips/kvm/Kconfig"