Kconfig 36 KB

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