Kconfig 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374
  1. # For a description of the syntax of this configuration file,
  2. # see Documentation/kbuild/kconfig-language.txt.
  3. #
  4. mainmenu "Linux/PowerPC Kernel Configuration"
  5. config MMU
  6. bool
  7. default y
  8. config UID16
  9. bool
  10. config GENERIC_HARDIRQS
  11. bool
  12. default y
  13. config RWSEM_GENERIC_SPINLOCK
  14. bool
  15. config RWSEM_XCHGADD_ALGORITHM
  16. bool
  17. default y
  18. config GENERIC_CALIBRATE_DELAY
  19. bool
  20. default y
  21. config HAVE_DEC_LOCK
  22. bool
  23. default y
  24. config PPC
  25. bool
  26. default y
  27. config PPC32
  28. bool
  29. default y
  30. # All PPCs use generic nvram driver through ppc_md
  31. config GENERIC_NVRAM
  32. bool
  33. default y
  34. config SCHED_NO_NO_OMIT_FRAME_POINTER
  35. bool
  36. default y
  37. source "init/Kconfig"
  38. menu "Processor"
  39. choice
  40. prompt "Processor Type"
  41. default 6xx
  42. config 6xx
  43. bool "6xx/7xx/74xx/52xx/82xx/83xx"
  44. select PPC_FPU
  45. help
  46. There are four types of PowerPC chips supported. The more common
  47. types (601, 603, 604, 740, 750, 7400), the Motorola embedded
  48. versions (821, 823, 850, 855, 860, 52xx, 82xx, 83xx), the IBM embedded
  49. versions (403 and 405) and the high end 64 bit Power processors
  50. (POWER 3, POWER4, and IBM 970 also known as G5)
  51. Unless you are building a kernel for one of the embedded processor
  52. systems, 64 bit IBM RS/6000 or an Apple G5, choose 6xx.
  53. Note that the kernel runs in 32-bit mode even on 64-bit chips.
  54. Also note that because the 52xx, 82xx, & 83xx family has a 603e core,
  55. specific support for that chipset is asked later on.
  56. config 40x
  57. bool "40x"
  58. config 44x
  59. bool "44x"
  60. config POWER3
  61. select PPC_FPU
  62. bool "POWER3"
  63. config POWER4
  64. select PPC_FPU
  65. bool "POWER4 and 970 (G5)"
  66. config 8xx
  67. depends on BROKEN
  68. bool "8xx"
  69. config E200
  70. bool "e200"
  71. config E500
  72. bool "e500"
  73. endchoice
  74. config PPC_FPU
  75. bool
  76. config BOOKE
  77. bool
  78. depends on E200 || E500
  79. default y
  80. config FSL_BOOKE
  81. bool
  82. depends on E200 || E500
  83. default y
  84. config PTE_64BIT
  85. bool
  86. depends on 44x || E500
  87. default y if 44x
  88. default y if E500 && PHYS_64BIT
  89. config PHYS_64BIT
  90. bool 'Large physical address support' if E500
  91. depends on 44x || E500
  92. default y if 44x
  93. ---help---
  94. This option enables kernel support for larger than 32-bit physical
  95. addresses. This features is not be available on all e500 cores.
  96. If in doubt, say N here.
  97. config ALTIVEC
  98. bool "AltiVec Support"
  99. depends on 6xx || POWER4
  100. depends on !8260 && !83xx
  101. ---help---
  102. This option enables kernel support for the Altivec extensions to the
  103. PowerPC processor. The kernel currently supports saving and restoring
  104. altivec registers, and turning on the 'altivec enable' bit so user
  105. processes can execute altivec instructions.
  106. This option is only usefully if you have a processor that supports
  107. altivec (G4, otherwise known as 74xx series), but does not have
  108. any affect on a non-altivec cpu (it does, however add code to the
  109. kernel).
  110. If in doubt, say Y here.
  111. config SPE
  112. bool "SPE Support"
  113. depends on E200 || E500
  114. ---help---
  115. This option enables kernel support for the Signal Processing
  116. Extensions (SPE) to the PowerPC processor. The kernel currently
  117. supports saving and restoring SPE registers, and turning on the
  118. 'spe enable' bit so user processes can execute SPE instructions.
  119. This option is only useful if you have a processor that supports
  120. SPE (e500, otherwise known as 85xx series), but does not have any
  121. effect on a non-spe cpu (it does, however add code to the kernel).
  122. If in doubt, say Y here.
  123. config TAU
  124. bool "Thermal Management Support"
  125. depends on 6xx && !8260 && !83xx
  126. help
  127. G3 and G4 processors have an on-chip temperature sensor called the
  128. 'Thermal Assist Unit (TAU)', which, in theory, can measure the on-die
  129. temperature within 2-4 degrees Celsius. This option shows the current
  130. on-die temperature in /proc/cpuinfo if the cpu supports it.
  131. Unfortunately, on some chip revisions, this sensor is very inaccurate
  132. and in some cases, does not work at all, so don't assume the cpu
  133. temp is actually what /proc/cpuinfo says it is.
  134. config TAU_INT
  135. bool "Interrupt driven TAU driver (DANGEROUS)"
  136. depends on TAU
  137. ---help---
  138. The TAU supports an interrupt driven mode which causes an interrupt
  139. whenever the temperature goes out of range. This is the fastest way
  140. to get notified the temp has exceeded a range. With this option off,
  141. a timer is used to re-check the temperature periodically.
  142. However, on some cpus it appears that the TAU interrupt hardware
  143. is buggy and can cause a situation which would lead unexplained hard
  144. lockups.
  145. Unless you are extending the TAU driver, or enjoy kernel/hardware
  146. debugging, leave this option off.
  147. config TAU_AVERAGE
  148. bool "Average high and low temp"
  149. depends on TAU
  150. ---help---
  151. The TAU hardware can compare the temperature to an upper and lower
  152. bound. The default behavior is to show both the upper and lower
  153. bound in /proc/cpuinfo. If the range is large, the temperature is
  154. either changing a lot, or the TAU hardware is broken (likely on some
  155. G4's). If the range is small (around 4 degrees), the temperature is
  156. relatively stable. If you say Y here, a single temperature value,
  157. halfway between the upper and lower bounds, will be reported in
  158. /proc/cpuinfo.
  159. If in doubt, say N here.
  160. config MATH_EMULATION
  161. bool "Math emulation"
  162. depends on 4xx || 8xx || E200 || E500
  163. ---help---
  164. Some PowerPC chips designed for embedded applications do not have
  165. a floating-point unit and therefore do not implement the
  166. floating-point instructions in the PowerPC instruction set. If you
  167. say Y here, the kernel will include code to emulate a floating-point
  168. unit, which will allow programs that use floating-point
  169. instructions to run.
  170. If you have an Apple machine or an IBM RS/6000 or pSeries machine,
  171. or any machine with a 6xx, 7xx or 7xxx series processor, say N
  172. here. Saying Y here will not hurt performance (on any machine) but
  173. will increase the size of the kernel.
  174. config KEXEC
  175. bool "kexec system call (EXPERIMENTAL)"
  176. depends on EXPERIMENTAL
  177. help
  178. kexec is a system call that implements the ability to shutdown your
  179. current kernel, and to start another kernel. It is like a reboot
  180. but it is indepedent of the system firmware. And like a reboot
  181. you can start any kernel with it, not just Linux.
  182. The name comes from the similiarity to the exec system call.
  183. It is an ongoing process to be certain the hardware in a machine
  184. is properly shutdown, so do not be surprised if this code does not
  185. initially work for you. It may help to enable device hotplugging
  186. support. As of this writing the exact hardware interface is
  187. strongly in flux, so no good recommendation can be made.
  188. In the GameCube implementation, kexec allows you to load and
  189. run DOL files, including kernel and homebrew DOLs.
  190. source "drivers/cpufreq/Kconfig"
  191. config CPU_FREQ_PMAC
  192. bool "Support for Apple PowerBooks"
  193. depends on CPU_FREQ && ADB_PMU
  194. select CPU_FREQ_TABLE
  195. help
  196. This adds support for frequency switching on Apple PowerBooks,
  197. this currently includes some models of iBook & Titanium
  198. PowerBook.
  199. config PPC601_SYNC_FIX
  200. bool "Workarounds for PPC601 bugs"
  201. depends on 6xx && (PPC_PREP || PPC_PMAC)
  202. help
  203. Some versions of the PPC601 (the first PowerPC chip) have bugs which
  204. mean that extra synchronization instructions are required near
  205. certain instructions, typically those that make major changes to the
  206. CPU state. These extra instructions reduce performance slightly.
  207. If you say N here, these extra instructions will not be included,
  208. resulting in a kernel which will run faster but may not run at all
  209. on some systems with the PPC601 chip.
  210. If in doubt, say Y here.
  211. source arch/ppc/platforms/4xx/Kconfig
  212. source arch/ppc/platforms/85xx/Kconfig
  213. config PPC64BRIDGE
  214. bool
  215. depends on POWER3 || POWER4
  216. default y
  217. config PPC_STD_MMU
  218. bool
  219. depends on 6xx || POWER3 || POWER4
  220. default y
  221. config NOT_COHERENT_CACHE
  222. bool
  223. depends on 4xx || 8xx || E200
  224. default y
  225. endmenu
  226. menu "Platform options"
  227. choice
  228. prompt "8xx Machine Type"
  229. depends on 8xx
  230. default RPXLITE
  231. config RPXLITE
  232. bool "RPX-Lite"
  233. ---help---
  234. Single-board computers based around the PowerPC MPC8xx chips and
  235. intended for embedded applications. The following types are
  236. supported:
  237. RPX-Lite:
  238. Embedded Planet RPX Lite. PC104 form-factor SBC based on the MPC823.
  239. RPX-Classic:
  240. Embedded Planet RPX Classic Low-fat. Credit-card-size SBC based on
  241. the MPC 860
  242. BSE-IP:
  243. Bright Star Engineering ip-Engine.
  244. TQM823L:
  245. TQM850L:
  246. TQM855L:
  247. TQM860L:
  248. MPC8xx based family of mini modules, half credit card size,
  249. up to 64 MB of RAM, 8 MB Flash, (Fast) Ethernet, 2 x serial ports,
  250. 2 x CAN bus interface, ...
  251. Manufacturer: TQ Components, www.tq-group.de
  252. Date of Release: October (?) 1999
  253. End of Life: not yet :-)
  254. URL:
  255. - module: <http://www.denx.de/PDF/TQM8xxLHWM201.pdf>
  256. - starter kit: <http://www.denx.de/PDF/STK8xxLHWM201.pdf>
  257. - images: <http://www.denx.de/embedded-ppc-en.html>
  258. FPS850L:
  259. FingerPrint Sensor System (based on TQM850L)
  260. Manufacturer: IKENDI AG, <http://www.ikendi.com/>
  261. Date of Release: November 1999
  262. End of life: end 2000 ?
  263. URL: see TQM850L
  264. SPD823TS:
  265. MPC823 based board used in the "Tele Server" product
  266. Manufacturer: Speech Design, <http://www.speech-design.de/>
  267. Date of Release: Mid 2000 (?)
  268. End of life: -
  269. URL: <http://www.speech-design.de/>
  270. select "English", then "Teleteam Solutions", then "TeleServer"
  271. IVMS8:
  272. MPC860 based board used in the "Integrated Voice Mail System",
  273. Small Version (8 voice channels)
  274. Manufacturer: Speech Design, <http://www.speech-design.de/>
  275. Date of Release: December 2000 (?)
  276. End of life: -
  277. URL: <http://www.speech-design.de/>
  278. IVML24:
  279. MPC860 based board used in the "Integrated Voice Mail System",
  280. Large Version (24 voice channels)
  281. Manufacturer: Speech Design, <http://www.speech-design.de/>
  282. Date of Release: March 2001 (?)
  283. End of life: -
  284. URL: <http://www.speech-design.de/>
  285. SM850:
  286. Service Module (based on TQM850L)
  287. Manufacturer: Dependable Computer Systems, <http://www.decomsys.com/>
  288. Date of Release: end 2000 (?)
  289. End of life: mid 2001 (?)
  290. URL: <http://www.tz-mikroelektronik.de/ServiceModule/index.html>
  291. HERMES:
  292. Hermes-Pro ISDN/LAN router with integrated 8 x hub
  293. Manufacturer: Multidata Gesellschaft fur Datentechnik und Informatik
  294. <http://www.multidata.de/>
  295. Date of Release: 2000 (?)
  296. End of life: -
  297. URL: <http://www.multidata.de/english/products/hpro.htm>
  298. IP860:
  299. VMEBus IP (Industry Pack) carrier board with MPC860
  300. Manufacturer: MicroSys GmbH, <http://www.microsys.de/>
  301. Date of Release: ?
  302. End of life: -
  303. URL: <http://www.microsys.de/html/ip860.html>
  304. PCU_E:
  305. PCU = Peripheral Controller Unit, Extended
  306. Manufacturer: Siemens AG, ICN (Information and Communication Networks)
  307. <http://www.siemens.de/page/1,3771,224315-1-999_2_226207-0,00.html>
  308. Date of Release: April 2001
  309. End of life: August 2001
  310. URL: n. a.
  311. config RPXCLASSIC
  312. bool "RPX-Classic"
  313. help
  314. The RPX-Classic is a single-board computer based on the Motorola
  315. MPC860. It features 16MB of DRAM and a variable amount of flash,
  316. I2C EEPROM, thermal monitoring, a PCMCIA slot, a DIP switch and two
  317. LEDs. Variants with Ethernet ports exist. Say Y here to support it
  318. directly.
  319. config BSEIP
  320. bool "BSE-IP"
  321. help
  322. Say Y here to support the Bright Star Engineering ipEngine SBC.
  323. This is a credit-card-sized device featuring a MPC823 processor,
  324. 26MB DRAM, 4MB flash, Ethernet, a 16K-gate FPGA, USB, an LCD/video
  325. controller, and two RS232 ports.
  326. config FADS
  327. bool "FADS"
  328. config TQM823L
  329. bool "TQM823L"
  330. help
  331. Say Y here to support the TQM823L, one of an MPC8xx-based family of
  332. mini SBCs (half credit-card size) from TQ Components first released
  333. in late 1999. Technical references are at
  334. <http://www.denx.de/PDF/TQM8xxLHWM201.pdf>, and
  335. <http://www.denx.de/PDF/STK8xxLHWM201.pdf>, and an image at
  336. <http://www.denx.de/embedded-ppc-en.html>.
  337. config TQM850L
  338. bool "TQM850L"
  339. help
  340. Say Y here to support the TQM850L, one of an MPC8xx-based family of
  341. mini SBCs (half credit-card size) from TQ Components first released
  342. in late 1999. Technical references are at
  343. <http://www.denx.de/PDF/TQM8xxLHWM201.pdf>, and
  344. <http://www.denx.de/PDF/STK8xxLHWM201.pdf>, and an image at
  345. <http://www.denx.de/embedded-ppc-en.html>.
  346. config TQM855L
  347. bool "TQM855L"
  348. help
  349. Say Y here to support the TQM855L, one of an MPC8xx-based family of
  350. mini SBCs (half credit-card size) from TQ Components first released
  351. in late 1999. Technical references are at
  352. <http://www.denx.de/PDF/TQM8xxLHWM201.pdf>, and
  353. <http://www.denx.de/PDF/STK8xxLHWM201.pdf>, and an image at
  354. <http://www.denx.de/embedded-ppc-en.html>.
  355. config TQM860L
  356. bool "TQM860L"
  357. help
  358. Say Y here to support the TQM860L, one of an MPC8xx-based family of
  359. mini SBCs (half credit-card size) from TQ Components first released
  360. in late 1999. Technical references are at
  361. <http://www.denx.de/PDF/TQM8xxLHWM201.pdf>, and
  362. <http://www.denx.de/PDF/STK8xxLHWM201.pdf>, and an image at
  363. <http://www.denx.de/embedded-ppc-en.html>.
  364. config FPS850L
  365. bool "FPS850L"
  366. config SPD823TS
  367. bool "SPD823TS"
  368. help
  369. Say Y here to support the Speech Design 823 Tele-Server from Speech
  370. Design, released in 2000. The manufacturer's website is at
  371. <http://www.speech-design.de/>.
  372. config IVMS8
  373. bool "IVMS8"
  374. help
  375. Say Y here to support the Integrated Voice-Mail Small 8-channel SBC
  376. from Speech Design, released March 2001. The manufacturer's website
  377. is at <http://www.speech-design.de/>.
  378. config IVML24
  379. bool "IVML24"
  380. help
  381. Say Y here to support the Integrated Voice-Mail Large 24-channel SBC
  382. from Speech Design, released March 2001. The manufacturer's website
  383. is at <http://www.speech-design.de/>.
  384. config SM850
  385. bool "SM850"
  386. help
  387. Say Y here to support the Service Module 850 from Dependable
  388. Computer Systems, an SBC based on the TQM850L module by TQ
  389. Components. This board is no longer in production. The
  390. manufacturer's website is at <http://www.decomsys.com/>.
  391. config HERMES_PRO
  392. bool "HERMES"
  393. config IP860
  394. bool "IP860"
  395. config LWMON
  396. bool "LWMON"
  397. config PCU_E
  398. bool "PCU_E"
  399. config CCM
  400. bool "CCM"
  401. config LANTEC
  402. bool "LANTEC"
  403. config MBX
  404. bool "MBX"
  405. help
  406. MBX is a line of Motorola single-board computer based around the
  407. MPC821 and MPC860 processors, and intended for embedded-controller
  408. applications. Say Y here to support these boards directly.
  409. config WINCEPT
  410. bool "WinCept"
  411. help
  412. The Wincept 100/110 is a Motorola single-board computer based on the
  413. MPC821 PowerPC, introduced in 1998 and designed to be used in
  414. thin-client machines. Say Y to support it directly.
  415. endchoice
  416. choice
  417. prompt "Machine Type"
  418. depends on 6xx || POWER3 || POWER4
  419. default PPC_MULTIPLATFORM
  420. ---help---
  421. Linux currently supports several different kinds of PowerPC-based
  422. machines: Apple Power Macintoshes and clones (such as the Motorola
  423. Starmax series), PReP (PowerPC Reference Platform) machines (such
  424. as the Motorola PowerStacks, Motorola cPCI/VME embedded systems,
  425. and some IBM RS/6000 systems), CHRP (Common Hardware Reference
  426. Platform) machines (including all of the recent IBM RS/6000 and
  427. pSeries machines), and several embedded PowerPC systems containing
  428. 4xx, 6xx, 7xx, 8xx, 74xx, and 82xx processors. Currently, the
  429. default option is to build a kernel which works on the first three.
  430. Select CHRP/PowerMac/PReP if configuring for an IBM RS/6000 or
  431. pSeries machine, a Power Macintosh (including iMacs, iBooks and
  432. Powerbooks), or a PReP machine.
  433. Select Gemini if configuring for a Synergy Microsystems' Gemini
  434. series Single Board Computer. More information is available at:
  435. <http://www.synergymicro.com/PressRel/97_10_15.html>.
  436. Select APUS if configuring for a PowerUP Amiga. More information is
  437. available at: <http://linux-apus.sourceforge.net/>.
  438. config PPC_MULTIPLATFORM
  439. bool "CHRP/PowerMac/PReP"
  440. config APUS
  441. bool "Amiga-APUS"
  442. help
  443. Select APUS if configuring for a PowerUP Amiga.
  444. More information is available at:
  445. <http://linux-apus.sourceforge.net/>.
  446. config KATANA
  447. bool "Artesyn-Katana"
  448. help
  449. Select KATANA if configuring an Artesyn KATANA 750i or 3750
  450. cPCI board.
  451. config WILLOW
  452. bool "Cogent-Willow"
  453. config CPCI690
  454. bool "Force-CPCI690"
  455. help
  456. Select CPCI690 if configuring a Force CPCI690 cPCI board.
  457. config PCORE
  458. bool "Force-PowerCore"
  459. config POWERPMC250
  460. bool "Force-PowerPMC250"
  461. config CHESTNUT
  462. bool "IBM 750FX Eval board or 750GX Eval board"
  463. help
  464. Select CHESTNUT if configuring an IBM 750FX Eval Board or a
  465. IBM 750GX Eval board.
  466. config SPRUCE
  467. bool "IBM-Spruce"
  468. config HDPU
  469. bool "Sky-HDPU"
  470. help
  471. Select HDPU if configuring a Sky Computers Compute Blade.
  472. config HDPU_FEATURES
  473. depends HDPU
  474. tristate "HDPU-Features"
  475. help
  476. Select to enable HDPU enhanced features.
  477. config EV64260
  478. bool "Marvell-EV64260BP"
  479. help
  480. Select EV64260 if configuring a Marvell (formerly Galileo)
  481. EV64260BP Evaluation platform.
  482. config LOPEC
  483. bool "Motorola-LoPEC"
  484. config MCPN765
  485. bool "Motorola-MCPN765"
  486. config MVME5100
  487. bool "Motorola-MVME5100"
  488. config PPLUS
  489. bool "Motorola-PowerPlus"
  490. config PRPMC750
  491. bool "Motorola-PrPMC750"
  492. config PRPMC800
  493. bool "Motorola-PrPMC800"
  494. config SANDPOINT
  495. bool "Motorola-Sandpoint"
  496. help
  497. Select SANDPOINT if configuring for a Motorola Sandpoint X3
  498. (any flavor).
  499. config RADSTONE_PPC7D
  500. bool "Radstone Technology PPC7D board"
  501. config ADIR
  502. bool "SBS-Adirondack"
  503. config K2
  504. bool "SBS-K2"
  505. config PAL4
  506. bool "SBS-Palomar4"
  507. config GEMINI
  508. bool "Synergy-Gemini"
  509. help
  510. Select Gemini if configuring for a Synergy Microsystems' Gemini
  511. series Single Board Computer. More information is available at:
  512. <http://www.synergymicro.com/PressRel/97_10_15.html>.
  513. config EST8260
  514. bool "EST8260"
  515. ---help---
  516. The EST8260 is a single-board computer manufactured by Wind River
  517. Systems, Inc. (formerly Embedded Support Tools Corp.) and based on
  518. the MPC8260. Wind River Systems has a website at
  519. <http://www.windriver.com/>, but the EST8260 cannot be found on it
  520. and has probably been discontinued or rebadged.
  521. config SBC82xx
  522. bool "SBC82xx"
  523. ---help---
  524. SBC PowerQUICC II, single-board computer with MPC82xx CPU
  525. Manufacturer: Wind River Systems, Inc.
  526. Date of Release: May 2003
  527. End of Life: -
  528. URL: <http://www.windriver.com/>
  529. config SBS8260
  530. bool "SBS8260"
  531. config RPX8260
  532. bool "RPXSUPER"
  533. config TQM8260
  534. bool "TQM8260"
  535. ---help---
  536. MPC8260 based module, little larger than credit card,
  537. up to 128 MB global + 64 MB local RAM, 32 MB Flash,
  538. 32 kB EEPROM, 256 kB L@ Cache, 10baseT + 100baseT Ethernet,
  539. 2 x serial ports, ...
  540. Manufacturer: TQ Components, www.tq-group.de
  541. Date of Release: June 2001
  542. End of Life: not yet :-)
  543. URL: <http://www.denx.de/PDF/TQM82xx_SPEC_Rev005.pdf>
  544. config ADS8272
  545. bool "ADS8272"
  546. config PQ2FADS
  547. bool "Freescale-PQ2FADS"
  548. help
  549. Select PQ2FADS if you wish to configure for a Freescale
  550. PQ2FADS board (-VR or -ZU).
  551. config LITE5200
  552. bool "Freescale LITE5200 / (IceCube)"
  553. select PPC_MPC52xx
  554. help
  555. Support for the LITE5200 dev board for the MPC5200 from Freescale.
  556. This is for the LITE5200 version 2.0 board. Don't know if it changes
  557. much but it's only been tested on this board version. I think this
  558. board is also known as IceCube.
  559. config MPC834x_SYS
  560. bool "Freescale MPC834x SYS"
  561. help
  562. This option enables support for the MPC 834x SYS evaluation board.
  563. endchoice
  564. config PQ2ADS
  565. bool
  566. depends on ADS8272
  567. default y
  568. config TQM8xxL
  569. bool
  570. depends on 8xx && (TQM823L || TQM850L || FPS850L || TQM855L || TQM860L || SM850)
  571. default y
  572. config EMBEDDEDBOOT
  573. bool
  574. depends on 8xx || 8260
  575. default y
  576. config PPC_MPC52xx
  577. bool
  578. config 8260
  579. bool "CPM2 Support" if WILLOW
  580. depends on 6xx
  581. default y if TQM8260 || RPX8260 || EST8260 || SBS8260 || SBC82xx || PQ2FADS
  582. help
  583. The MPC8260 is a typical embedded CPU made by Motorola. Selecting
  584. this option means that you wish to build a kernel for a machine with
  585. an 8260 class CPU.
  586. config 8272
  587. bool
  588. depends on 6xx
  589. default y if ADS8272
  590. select 8260
  591. help
  592. The MPC8272 CPM has a different internal dpram setup than other CPM2
  593. devices
  594. config 83xx
  595. bool
  596. default y if MPC834x_SYS
  597. config MPC834x
  598. bool
  599. default y if MPC834x_SYS
  600. config CPM2
  601. bool
  602. depends on 8260 || MPC8560 || MPC8555
  603. default y
  604. help
  605. The CPM2 (Communications Processor Module) is a coprocessor on
  606. embedded CPUs made by Motorola. Selecting this option means that
  607. you wish to build a kernel for a machine with a CPM2 coprocessor
  608. on it (826x, 827x, 8560).
  609. config PPC_CHRP
  610. bool
  611. depends on PPC_MULTIPLATFORM
  612. default y
  613. config PPC_PMAC
  614. bool
  615. depends on PPC_MULTIPLATFORM
  616. default y
  617. config PPC_PMAC64
  618. bool
  619. depends on PPC_PMAC && POWER4
  620. default y
  621. config PPC_PREP
  622. bool
  623. depends on PPC_MULTIPLATFORM
  624. default y
  625. config PPC_OF
  626. bool
  627. depends on PPC_PMAC || PPC_CHRP
  628. default y
  629. config PPC_GEN550
  630. bool
  631. depends on SANDPOINT || MCPN765 || SPRUCE || PPLUS || PCORE || \
  632. PRPMC750 || K2 || PRPMC800 || LOPEC || \
  633. (EV64260 && !SERIAL_MPSC) || CHESTNUT || RADSTONE_PPC7D || \
  634. 83xx
  635. default y
  636. config FORCE
  637. bool
  638. depends on 6xx && (PCORE || POWERPMC250)
  639. default y
  640. config GT64260
  641. bool
  642. depends on EV64260 || CPCI690
  643. default y
  644. config MV64360 # Really MV64360 & MV64460
  645. bool
  646. depends on CHESTNUT || KATANA || RADSTONE_PPC7D || HDPU
  647. default y
  648. config MV64X60
  649. bool
  650. depends on (GT64260 || MV64360)
  651. default y
  652. menu "Set bridge options"
  653. depends on MV64X60
  654. config NOT_COHERENT_CACHE
  655. bool "Turn off Cache Coherency"
  656. default n
  657. help
  658. Some 64x60 bridges lock up when trying to enforce cache coherency.
  659. When this option is selected, cache coherency will be turned off.
  660. Note that this can cause other problems (e.g., stale data being
  661. speculatively loaded via a cached mapping). Use at your own risk.
  662. config MV64X60_BASE
  663. hex "Set bridge base used by firmware"
  664. default "0xf1000000"
  665. help
  666. A firmware can leave the base address of the bridge's registers at
  667. a non-standard location. If so, set this value to reflect the
  668. address of that non-standard location.
  669. config MV64X60_NEW_BASE
  670. hex "Set bridge base used by kernel"
  671. default "0xf1000000"
  672. help
  673. If the current base address of the bridge's registers is not where
  674. you want it, set this value to the address that you want it moved to.
  675. endmenu
  676. config NONMONARCH_SUPPORT
  677. bool "Enable Non-Monarch Support"
  678. depends on PRPMC800
  679. config HARRIER
  680. bool
  681. depends on PRPMC800
  682. default y
  683. config EPIC_SERIAL_MODE
  684. bool
  685. depends on 6xx && (LOPEC || SANDPOINT)
  686. default y
  687. config MPC10X_BRIDGE
  688. bool
  689. depends on PCORE || POWERPMC250 || LOPEC || SANDPOINT
  690. default y
  691. config MPC10X_OPENPIC
  692. bool
  693. depends on POWERPMC250 || LOPEC || SANDPOINT
  694. default y
  695. config MPC10X_STORE_GATHERING
  696. bool "Enable MPC10x store gathering"
  697. depends on MPC10X_BRIDGE
  698. config CPC710_DATA_GATHERING
  699. bool "Enable CPC710 data gathering"
  700. depends on K2
  701. config HARRIER_STORE_GATHERING
  702. bool "Enable Harrier store gathering"
  703. depends on HARRIER
  704. config MVME5100_IPMC761_PRESENT
  705. bool "MVME5100 configured with an IPMC761"
  706. depends on MVME5100
  707. config SPRUCE_BAUD_33M
  708. bool "Spruce baud clock support"
  709. depends on SPRUCE
  710. config PC_KEYBOARD
  711. bool "PC PS/2 style Keyboard"
  712. depends on 4xx || CPM2
  713. config PPCBUG_NVRAM
  714. bool "Enable reading PPCBUG NVRAM during boot" if PPLUS || LOPEC
  715. default y if PPC_PREP
  716. config SMP
  717. bool "Symmetric multi-processing support"
  718. ---help---
  719. This enables support for systems with more than one CPU. If you have
  720. a system with only one CPU, say N. If you have a system with more
  721. than one CPU, say Y. Note that the kernel does not currently
  722. support SMP machines with 603/603e/603ev or PPC750 ("G3") processors
  723. since they have inadequate hardware support for multiprocessor
  724. operation.
  725. If you say N here, the kernel will run on single and multiprocessor
  726. machines, but will use only one CPU of a multiprocessor machine. If
  727. you say Y here, the kernel will run on single-processor machines.
  728. On a single-processor machine, the kernel will run faster if you say
  729. N here.
  730. If you don't know what to do here, say N.
  731. config IRQ_ALL_CPUS
  732. bool "Distribute interrupts on all CPUs by default"
  733. depends on SMP
  734. help
  735. This option gives the kernel permission to distribute IRQs across
  736. multiple CPUs. Saying N here will route all IRQs to the first
  737. CPU. Generally saying Y is safe, although some problems have been
  738. reported with SMP Power Macintoshes with this option enabled.
  739. config NR_CPUS
  740. int "Maximum number of CPUs (2-32)"
  741. range 2 32
  742. depends on SMP
  743. default "4"
  744. config PREEMPT
  745. bool "Preemptible Kernel"
  746. help
  747. This option reduces the latency of the kernel when reacting to
  748. real-time or interactive events by allowing a low priority process to
  749. be preempted even if it is in kernel mode executing a system call.
  750. Say Y here if you are building a kernel for a desktop, embedded
  751. or real-time system. Say N if you are unsure.
  752. config HIGHMEM
  753. bool "High memory support"
  754. source "mm/Kconfig"
  755. source "fs/Kconfig.binfmt"
  756. config PROC_DEVICETREE
  757. bool "Support for Open Firmware device tree in /proc"
  758. depends on PPC_OF && PROC_FS
  759. help
  760. This option adds a device-tree directory under /proc which contains
  761. an image of the device tree that the kernel copies from Open
  762. Firmware. If unsure, say Y here.
  763. config PREP_RESIDUAL
  764. bool "Support for PReP Residual Data"
  765. depends on PPC_PREP
  766. help
  767. Some PReP systems have residual data passed to the kernel by the
  768. firmware. This allows detection of memory size, devices present and
  769. other useful pieces of information. Sometimes this information is
  770. not present or incorrect, in which case it could lead to the machine
  771. behaving incorrectly. If this happens, either disable PREP_RESIDUAL
  772. or pass the 'noresidual' option to the kernel.
  773. If you are running a PReP system, say Y here, otherwise say N.
  774. config PROC_PREPRESIDUAL
  775. bool "Support for reading of PReP Residual Data in /proc"
  776. depends on PREP_RESIDUAL && PROC_FS
  777. help
  778. Enabling this option will create a /proc/residual file which allows
  779. you to get at the residual data on PReP systems. You will need a tool
  780. (lsresidual) to parse it. If you aren't on a PReP system, you don't
  781. want this.
  782. config CMDLINE_BOOL
  783. bool "Default bootloader kernel arguments"
  784. config CMDLINE
  785. string "Initial kernel command string"
  786. depends on CMDLINE_BOOL
  787. default "console=ttyS0,9600 console=tty0 root=/dev/sda2"
  788. help
  789. On some platforms, there is currently no way for the boot loader to
  790. pass arguments to the kernel. For these platforms, you can supply
  791. some command-line options at build time by entering them here. In
  792. most cases you will need to specify the root device here.
  793. config AMIGA
  794. bool
  795. depends on APUS
  796. default y
  797. help
  798. This option enables support for the Amiga series of computers.
  799. config ZORRO
  800. bool
  801. depends on APUS
  802. default y
  803. help
  804. This enables support for the Zorro bus in the Amiga. If you have
  805. expansion cards in your Amiga that conform to the Amiga
  806. AutoConfig(tm) specification, say Y, otherwise N. Note that even
  807. expansion cards that do not fit in the Zorro slots but fit in e.g.
  808. the CPU slot may fall in this category, so you have to say Y to let
  809. Linux use these.
  810. config ABSTRACT_CONSOLE
  811. bool
  812. depends on APUS
  813. default y
  814. config APUS_FAST_EXCEPT
  815. bool
  816. depends on APUS
  817. default y
  818. config AMIGA_PCMCIA
  819. bool "Amiga 1200/600 PCMCIA support"
  820. depends on APUS && EXPERIMENTAL
  821. help
  822. Include support in the kernel for pcmcia on Amiga 1200 and Amiga
  823. 600. If you intend to use pcmcia cards say Y; otherwise say N.
  824. config AMIGA_BUILTIN_SERIAL
  825. tristate "Amiga builtin serial support"
  826. depends on APUS
  827. help
  828. If you want to use your Amiga's built-in serial port in Linux,
  829. answer Y.
  830. To compile this driver as a module, choose M here.
  831. config GVPIOEXT
  832. tristate "GVP IO-Extender support"
  833. depends on APUS
  834. help
  835. If you want to use a GVP IO-Extender serial card in Linux, say Y.
  836. Otherwise, say N.
  837. config GVPIOEXT_LP
  838. tristate "GVP IO-Extender parallel printer support"
  839. depends on GVPIOEXT
  840. help
  841. Say Y to enable driving a printer from the parallel port on your
  842. GVP IO-Extender card, N otherwise.
  843. config GVPIOEXT_PLIP
  844. tristate "GVP IO-Extender PLIP support"
  845. depends on GVPIOEXT
  846. help
  847. Say Y to enable doing IP over the parallel port on your GVP
  848. IO-Extender card, N otherwise.
  849. config MULTIFACE_III_TTY
  850. tristate "Multiface Card III serial support"
  851. depends on APUS
  852. help
  853. If you want to use a Multiface III card's serial port in Linux,
  854. answer Y.
  855. To compile this driver as a module, choose M here.
  856. config A2232
  857. tristate "Commodore A2232 serial support (EXPERIMENTAL)"
  858. depends on EXPERIMENTAL && APUS
  859. ---help---
  860. This option supports the 2232 7-port serial card shipped with the
  861. Amiga 2000 and other Zorro-bus machines, dating from 1989. At
  862. a max of 19,200 bps, the ports are served by a 6551 ACIA UART chip
  863. each, plus a 8520 CIA, and a master 6502 CPU and buffer as well. The
  864. ports were connected with 8 pin DIN connectors on the card bracket,
  865. for which 8 pin to DB25 adapters were supplied. The card also had
  866. jumpers internally to toggle various pinning configurations.
  867. This driver can be built as a module; but then "generic_serial"
  868. will also be built as a module. This has to be loaded before
  869. "ser_a2232". If you want to do this, answer M here.
  870. config WHIPPET_SERIAL
  871. tristate "Hisoft Whippet PCMCIA serial support"
  872. depends on AMIGA_PCMCIA
  873. help
  874. HiSoft has a web page at <http://www.hisoft.co.uk/>, but there
  875. is no listing for the Whippet in their Amiga section.
  876. config APNE
  877. tristate "PCMCIA NE2000 support"
  878. depends on AMIGA_PCMCIA
  879. help
  880. If you have a PCMCIA NE2000 compatible adapter, say Y. Otherwise,
  881. say N.
  882. To compile this driver as a module, choose M here: the
  883. module will be called apne.
  884. config SERIAL_CONSOLE
  885. bool "Support for serial port console"
  886. depends on APUS && (AMIGA_BUILTIN_SERIAL=y || GVPIOEXT=y || MULTIFACE_III_TTY=y)
  887. config HEARTBEAT
  888. bool "Use power LED as a heartbeat"
  889. depends on APUS
  890. help
  891. Use the power-on LED on your machine as a load meter. The exact
  892. behavior is platform-dependent, but normally the flash frequency is
  893. a hyperbolic function of the 5-minute load average.
  894. config PROC_HARDWARE
  895. bool "/proc/hardware support"
  896. depends on APUS
  897. source "drivers/zorro/Kconfig"
  898. source kernel/power/Kconfig
  899. config SECCOMP
  900. bool "Enable seccomp to safely compute untrusted bytecode"
  901. depends on PROC_FS
  902. default y
  903. help
  904. This kernel feature is useful for number crunching applications
  905. that may need to compute untrusted bytecode during their
  906. execution. By using pipes or other transports made available to
  907. the process as file descriptors supporting the read/write
  908. syscalls, it's possible to isolate those applications in
  909. their own address space using seccomp. Once seccomp is
  910. enabled via /proc/<pid>/seccomp, it cannot be disabled
  911. and the task is only allowed to execute a few safe syscalls
  912. defined by each seccomp mode.
  913. If unsure, say Y. Only embedded should say N here.
  914. endmenu
  915. config ISA_DMA_API
  916. bool
  917. default y
  918. menu "Bus options"
  919. config ISA
  920. bool "Support for ISA-bus hardware"
  921. depends on PPC_PREP || PPC_CHRP
  922. help
  923. Find out whether you have ISA slots on your motherboard. ISA is the
  924. name of a bus system, i.e. the way the CPU talks to the other stuff
  925. inside your box. If you have an Apple machine, say N here; if you
  926. have an IBM RS/6000 or pSeries machine or a PReP machine, say Y. If
  927. you have an embedded board, consult your board documentation.
  928. config GENERIC_ISA_DMA
  929. bool
  930. depends on POWER3 || POWER4 || 6xx && !CPM2
  931. default y
  932. config EISA
  933. bool
  934. help
  935. The Extended Industry Standard Architecture (EISA) bus is a bus
  936. architecture used on some older intel-based PCs.
  937. config SBUS
  938. bool
  939. # Yes MCA RS/6000s exist but Linux-PPC does not currently support any
  940. config MCA
  941. bool
  942. config PCI
  943. bool "PCI support" if 40x || CPM2 || 83xx || 85xx || PPC_MPC52xx
  944. default y if !40x && !CPM2 && !8xx && !APUS && !83xx && !85xx
  945. default PCI_PERMEDIA if !4xx && !CPM2 && !8xx && APUS
  946. default PCI_QSPAN if !4xx && !CPM2 && 8xx
  947. help
  948. Find out whether your system includes a PCI bus. PCI is the name of
  949. a bus system, i.e. the way the CPU talks to the other stuff inside
  950. your box. If you say Y here, the kernel will include drivers and
  951. infrastructure code to support PCI bus devices.
  952. config PCI_DOMAINS
  953. bool
  954. default PCI
  955. config PCI_QSPAN
  956. bool "QSpan PCI"
  957. depends on !4xx && !CPM2 && 8xx
  958. help
  959. Say Y here if you have a system based on a Motorola 8xx-series
  960. embedded processor with a QSPAN PCI interface, otherwise say N.
  961. config PCI_8260
  962. bool
  963. depends on PCI && 8260
  964. default y
  965. config 8260_PCI9
  966. bool " Enable workaround for MPC826x erratum PCI 9"
  967. depends on PCI_8260 && !ADS8272
  968. default y
  969. choice
  970. prompt " IDMA channel for PCI 9 workaround"
  971. depends on 8260_PCI9
  972. config 8260_PCI9_IDMA1
  973. bool "IDMA1"
  974. config 8260_PCI9_IDMA2
  975. bool "IDMA2"
  976. config 8260_PCI9_IDMA3
  977. bool "IDMA3"
  978. config 8260_PCI9_IDMA4
  979. bool "IDMA4"
  980. endchoice
  981. config PCI_PERMEDIA
  982. bool "PCI for Permedia2"
  983. depends on !4xx && !8xx && APUS
  984. source "drivers/pci/Kconfig"
  985. source "drivers/pcmcia/Kconfig"
  986. endmenu
  987. menu "Advanced setup"
  988. config ADVANCED_OPTIONS
  989. bool "Prompt for advanced kernel configuration options"
  990. help
  991. This option will enable prompting for a variety of advanced kernel
  992. configuration options. These options can cause the kernel to not
  993. work if they are set incorrectly, but can be used to optimize certain
  994. aspects of kernel memory management.
  995. Unless you know what you are doing, say N here.
  996. comment "Default settings for advanced configuration options are used"
  997. depends on !ADVANCED_OPTIONS
  998. config HIGHMEM_START_BOOL
  999. bool "Set high memory pool address"
  1000. depends on ADVANCED_OPTIONS && HIGHMEM
  1001. help
  1002. This option allows you to set the base address of the kernel virtual
  1003. area used to map high memory pages. This can be useful in
  1004. optimizing the layout of kernel virtual memory.
  1005. Say N here unless you know what you are doing.
  1006. config HIGHMEM_START
  1007. hex "Virtual start address of high memory pool" if HIGHMEM_START_BOOL
  1008. default "0xfe000000"
  1009. config LOWMEM_SIZE_BOOL
  1010. bool "Set maximum low memory"
  1011. depends on ADVANCED_OPTIONS
  1012. help
  1013. This option allows you to set the maximum amount of memory which
  1014. will be used as "low memory", that is, memory which the kernel can
  1015. access directly, without having to set up a kernel virtual mapping.
  1016. This can be useful in optimizing the layout of kernel virtual
  1017. memory.
  1018. Say N here unless you know what you are doing.
  1019. config LOWMEM_SIZE
  1020. hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL
  1021. default "0x30000000"
  1022. config KERNEL_START_BOOL
  1023. bool "Set custom kernel base address"
  1024. depends on ADVANCED_OPTIONS
  1025. help
  1026. This option allows you to set the kernel virtual address at which
  1027. the kernel will map low memory (the kernel image will be linked at
  1028. this address). This can be useful in optimizing the virtual memory
  1029. layout of the system.
  1030. Say N here unless you know what you are doing.
  1031. config KERNEL_START
  1032. hex "Virtual address of kernel base" if KERNEL_START_BOOL
  1033. default "0xc0000000"
  1034. config TASK_SIZE_BOOL
  1035. bool "Set custom user task size"
  1036. depends on ADVANCED_OPTIONS
  1037. help
  1038. This option allows you to set the amount of virtual address space
  1039. allocated to user tasks. This can be useful in optimizing the
  1040. virtual memory layout of the system.
  1041. Say N here unless you know what you are doing.
  1042. config TASK_SIZE
  1043. hex "Size of user task space" if TASK_SIZE_BOOL
  1044. default "0x80000000"
  1045. config CONSISTENT_START_BOOL
  1046. bool "Set custom consistent memory pool address"
  1047. depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
  1048. help
  1049. This option allows you to set the base virtual address
  1050. of the the consistent memory pool. This pool of virtual
  1051. memory is used to make consistent memory allocations.
  1052. config CONSISTENT_START
  1053. hex "Base virtual address of consistent memory pool" if CONSISTENT_START_BOOL
  1054. default "0xff100000" if NOT_COHERENT_CACHE
  1055. config CONSISTENT_SIZE_BOOL
  1056. bool "Set custom consistent memory pool size"
  1057. depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
  1058. help
  1059. This option allows you to set the size of the the
  1060. consistent memory pool. This pool of virtual memory
  1061. is used to make consistent memory allocations.
  1062. config CONSISTENT_SIZE
  1063. hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL
  1064. default "0x00200000" if NOT_COHERENT_CACHE
  1065. config BOOT_LOAD_BOOL
  1066. bool "Set the boot link/load address"
  1067. depends on ADVANCED_OPTIONS && !PPC_MULTIPLATFORM
  1068. help
  1069. This option allows you to set the initial load address of the zImage
  1070. or zImage.initrd file. This can be useful if you are on a board
  1071. which has a small amount of memory.
  1072. Say N here unless you know what you are doing.
  1073. config BOOT_LOAD
  1074. hex "Link/load address for booting" if BOOT_LOAD_BOOL
  1075. default "0x00400000" if 40x || 8xx || 8260
  1076. default "0x01000000" if 44x
  1077. default "0x00800000"
  1078. config PIN_TLB
  1079. bool "Pinned Kernel TLBs (860 ONLY)"
  1080. depends on ADVANCED_OPTIONS && 8xx
  1081. endmenu
  1082. source "drivers/Kconfig"
  1083. source "fs/Kconfig"
  1084. source "arch/ppc/8xx_io/Kconfig"
  1085. source "arch/ppc/8260_io/Kconfig"
  1086. menu "IBM 40x options"
  1087. depends on 40x
  1088. config SERIAL_SICC
  1089. bool "SICC Serial port"
  1090. depends on STB03xxx
  1091. config UART1_DFLT_CONSOLE
  1092. bool
  1093. depends on SERIAL_SICC && UART0_TTYS1
  1094. default y
  1095. config SERIAL_SICC_CONSOLE
  1096. bool
  1097. depends on SERIAL_SICC && UART0_TTYS1
  1098. default y
  1099. endmenu
  1100. source "lib/Kconfig"
  1101. source "arch/ppc/oprofile/Kconfig"
  1102. source "arch/ppc/Kconfig.debug"
  1103. source "security/Kconfig"
  1104. source "crypto/Kconfig"