Kconfig 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354
  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. source "drivers/cpufreq/Kconfig"
  175. config CPU_FREQ_PMAC
  176. bool "Support for Apple PowerBooks"
  177. depends on CPU_FREQ && ADB_PMU
  178. select CPU_FREQ_TABLE
  179. help
  180. This adds support for frequency switching on Apple PowerBooks,
  181. this currently includes some models of iBook & Titanium
  182. PowerBook.
  183. config PPC601_SYNC_FIX
  184. bool "Workarounds for PPC601 bugs"
  185. depends on 6xx && (PPC_PREP || PPC_PMAC)
  186. help
  187. Some versions of the PPC601 (the first PowerPC chip) have bugs which
  188. mean that extra synchronization instructions are required near
  189. certain instructions, typically those that make major changes to the
  190. CPU state. These extra instructions reduce performance slightly.
  191. If you say N here, these extra instructions will not be included,
  192. resulting in a kernel which will run faster but may not run at all
  193. on some systems with the PPC601 chip.
  194. If in doubt, say Y here.
  195. source arch/ppc/platforms/4xx/Kconfig
  196. source arch/ppc/platforms/85xx/Kconfig
  197. config PPC64BRIDGE
  198. bool
  199. depends on POWER3 || POWER4
  200. default y
  201. config PPC_STD_MMU
  202. bool
  203. depends on 6xx || POWER3 || POWER4
  204. default y
  205. config NOT_COHERENT_CACHE
  206. bool
  207. depends on 4xx || 8xx || E200
  208. default y
  209. endmenu
  210. menu "Platform options"
  211. choice
  212. prompt "8xx Machine Type"
  213. depends on 8xx
  214. default RPXLITE
  215. config RPXLITE
  216. bool "RPX-Lite"
  217. ---help---
  218. Single-board computers based around the PowerPC MPC8xx chips and
  219. intended for embedded applications. The following types are
  220. supported:
  221. RPX-Lite:
  222. Embedded Planet RPX Lite. PC104 form-factor SBC based on the MPC823.
  223. RPX-Classic:
  224. Embedded Planet RPX Classic Low-fat. Credit-card-size SBC based on
  225. the MPC 860
  226. BSE-IP:
  227. Bright Star Engineering ip-Engine.
  228. TQM823L:
  229. TQM850L:
  230. TQM855L:
  231. TQM860L:
  232. MPC8xx based family of mini modules, half credit card size,
  233. up to 64 MB of RAM, 8 MB Flash, (Fast) Ethernet, 2 x serial ports,
  234. 2 x CAN bus interface, ...
  235. Manufacturer: TQ Components, www.tq-group.de
  236. Date of Release: October (?) 1999
  237. End of Life: not yet :-)
  238. URL:
  239. - module: <http://www.denx.de/PDF/TQM8xxLHWM201.pdf>
  240. - starter kit: <http://www.denx.de/PDF/STK8xxLHWM201.pdf>
  241. - images: <http://www.denx.de/embedded-ppc-en.html>
  242. FPS850L:
  243. FingerPrint Sensor System (based on TQM850L)
  244. Manufacturer: IKENDI AG, <http://www.ikendi.com/>
  245. Date of Release: November 1999
  246. End of life: end 2000 ?
  247. URL: see TQM850L
  248. SPD823TS:
  249. MPC823 based board used in the "Tele Server" product
  250. Manufacturer: Speech Design, <http://www.speech-design.de/>
  251. Date of Release: Mid 2000 (?)
  252. End of life: -
  253. URL: <http://www.speech-design.de/>
  254. select "English", then "Teleteam Solutions", then "TeleServer"
  255. IVMS8:
  256. MPC860 based board used in the "Integrated Voice Mail System",
  257. Small Version (8 voice channels)
  258. Manufacturer: Speech Design, <http://www.speech-design.de/>
  259. Date of Release: December 2000 (?)
  260. End of life: -
  261. URL: <http://www.speech-design.de/>
  262. IVML24:
  263. MPC860 based board used in the "Integrated Voice Mail System",
  264. Large Version (24 voice channels)
  265. Manufacturer: Speech Design, <http://www.speech-design.de/>
  266. Date of Release: March 2001 (?)
  267. End of life: -
  268. URL: <http://www.speech-design.de/>
  269. SM850:
  270. Service Module (based on TQM850L)
  271. Manufacturer: Dependable Computer Systems, <http://www.decomsys.com/>
  272. Date of Release: end 2000 (?)
  273. End of life: mid 2001 (?)
  274. URL: <http://www.tz-mikroelektronik.de/ServiceModule/index.html>
  275. HERMES:
  276. Hermes-Pro ISDN/LAN router with integrated 8 x hub
  277. Manufacturer: Multidata Gesellschaft fur Datentechnik und Informatik
  278. <http://www.multidata.de/>
  279. Date of Release: 2000 (?)
  280. End of life: -
  281. URL: <http://www.multidata.de/english/products/hpro.htm>
  282. IP860:
  283. VMEBus IP (Industry Pack) carrier board with MPC860
  284. Manufacturer: MicroSys GmbH, <http://www.microsys.de/>
  285. Date of Release: ?
  286. End of life: -
  287. URL: <http://www.microsys.de/html/ip860.html>
  288. PCU_E:
  289. PCU = Peripheral Controller Unit, Extended
  290. Manufacturer: Siemens AG, ICN (Information and Communication Networks)
  291. <http://www.siemens.de/page/1,3771,224315-1-999_2_226207-0,00.html>
  292. Date of Release: April 2001
  293. End of life: August 2001
  294. URL: n. a.
  295. config RPXCLASSIC
  296. bool "RPX-Classic"
  297. help
  298. The RPX-Classic is a single-board computer based on the Motorola
  299. MPC860. It features 16MB of DRAM and a variable amount of flash,
  300. I2C EEPROM, thermal monitoring, a PCMCIA slot, a DIP switch and two
  301. LEDs. Variants with Ethernet ports exist. Say Y here to support it
  302. directly.
  303. config BSEIP
  304. bool "BSE-IP"
  305. help
  306. Say Y here to support the Bright Star Engineering ipEngine SBC.
  307. This is a credit-card-sized device featuring a MPC823 processor,
  308. 26MB DRAM, 4MB flash, Ethernet, a 16K-gate FPGA, USB, an LCD/video
  309. controller, and two RS232 ports.
  310. config FADS
  311. bool "FADS"
  312. config TQM823L
  313. bool "TQM823L"
  314. help
  315. Say Y here to support the TQM823L, one of an MPC8xx-based family of
  316. mini SBCs (half credit-card size) from TQ Components first released
  317. in late 1999. Technical references are at
  318. <http://www.denx.de/PDF/TQM8xxLHWM201.pdf>, and
  319. <http://www.denx.de/PDF/STK8xxLHWM201.pdf>, and an image at
  320. <http://www.denx.de/embedded-ppc-en.html>.
  321. config TQM850L
  322. bool "TQM850L"
  323. help
  324. Say Y here to support the TQM850L, one of an MPC8xx-based family of
  325. mini SBCs (half credit-card size) from TQ Components first released
  326. in late 1999. Technical references are at
  327. <http://www.denx.de/PDF/TQM8xxLHWM201.pdf>, and
  328. <http://www.denx.de/PDF/STK8xxLHWM201.pdf>, and an image at
  329. <http://www.denx.de/embedded-ppc-en.html>.
  330. config TQM855L
  331. bool "TQM855L"
  332. help
  333. Say Y here to support the TQM855L, one of an MPC8xx-based family of
  334. mini SBCs (half credit-card size) from TQ Components first released
  335. in late 1999. Technical references are at
  336. <http://www.denx.de/PDF/TQM8xxLHWM201.pdf>, and
  337. <http://www.denx.de/PDF/STK8xxLHWM201.pdf>, and an image at
  338. <http://www.denx.de/embedded-ppc-en.html>.
  339. config TQM860L
  340. bool "TQM860L"
  341. help
  342. Say Y here to support the TQM860L, one of an MPC8xx-based family of
  343. mini SBCs (half credit-card size) from TQ Components first released
  344. in late 1999. Technical references are at
  345. <http://www.denx.de/PDF/TQM8xxLHWM201.pdf>, and
  346. <http://www.denx.de/PDF/STK8xxLHWM201.pdf>, and an image at
  347. <http://www.denx.de/embedded-ppc-en.html>.
  348. config FPS850L
  349. bool "FPS850L"
  350. config SPD823TS
  351. bool "SPD823TS"
  352. help
  353. Say Y here to support the Speech Design 823 Tele-Server from Speech
  354. Design, released in 2000. The manufacturer's website is at
  355. <http://www.speech-design.de/>.
  356. config IVMS8
  357. bool "IVMS8"
  358. help
  359. Say Y here to support the Integrated Voice-Mail Small 8-channel SBC
  360. from Speech Design, released March 2001. The manufacturer's website
  361. is at <http://www.speech-design.de/>.
  362. config IVML24
  363. bool "IVML24"
  364. help
  365. Say Y here to support the Integrated Voice-Mail Large 24-channel SBC
  366. from Speech Design, released March 2001. The manufacturer's website
  367. is at <http://www.speech-design.de/>.
  368. config SM850
  369. bool "SM850"
  370. help
  371. Say Y here to support the Service Module 850 from Dependable
  372. Computer Systems, an SBC based on the TQM850L module by TQ
  373. Components. This board is no longer in production. The
  374. manufacturer's website is at <http://www.decomsys.com/>.
  375. config HERMES_PRO
  376. bool "HERMES"
  377. config IP860
  378. bool "IP860"
  379. config LWMON
  380. bool "LWMON"
  381. config PCU_E
  382. bool "PCU_E"
  383. config CCM
  384. bool "CCM"
  385. config LANTEC
  386. bool "LANTEC"
  387. config MBX
  388. bool "MBX"
  389. help
  390. MBX is a line of Motorola single-board computer based around the
  391. MPC821 and MPC860 processors, and intended for embedded-controller
  392. applications. Say Y here to support these boards directly.
  393. config WINCEPT
  394. bool "WinCept"
  395. help
  396. The Wincept 100/110 is a Motorola single-board computer based on the
  397. MPC821 PowerPC, introduced in 1998 and designed to be used in
  398. thin-client machines. Say Y to support it directly.
  399. endchoice
  400. choice
  401. prompt "Machine Type"
  402. depends on 6xx || POWER3 || POWER4
  403. default PPC_MULTIPLATFORM
  404. ---help---
  405. Linux currently supports several different kinds of PowerPC-based
  406. machines: Apple Power Macintoshes and clones (such as the Motorola
  407. Starmax series), PReP (PowerPC Reference Platform) machines (such
  408. as the Motorola PowerStacks, Motorola cPCI/VME embedded systems,
  409. and some IBM RS/6000 systems), CHRP (Common Hardware Reference
  410. Platform) machines (including all of the recent IBM RS/6000 and
  411. pSeries machines), and several embedded PowerPC systems containing
  412. 4xx, 6xx, 7xx, 8xx, 74xx, and 82xx processors. Currently, the
  413. default option is to build a kernel which works on the first three.
  414. Select CHRP/PowerMac/PReP if configuring for an IBM RS/6000 or
  415. pSeries machine, a Power Macintosh (including iMacs, iBooks and
  416. Powerbooks), or a PReP machine.
  417. Select Gemini if configuring for a Synergy Microsystems' Gemini
  418. series Single Board Computer. More information is available at:
  419. <http://www.synergymicro.com/PressRel/97_10_15.html>.
  420. Select APUS if configuring for a PowerUP Amiga. More information is
  421. available at: <http://linux-apus.sourceforge.net/>.
  422. config PPC_MULTIPLATFORM
  423. bool "CHRP/PowerMac/PReP"
  424. config APUS
  425. bool "Amiga-APUS"
  426. help
  427. Select APUS if configuring for a PowerUP Amiga.
  428. More information is available at:
  429. <http://linux-apus.sourceforge.net/>.
  430. config KATANA
  431. bool "Artesyn-Katana"
  432. help
  433. Select KATANA if configuring an Artesyn KATANA 750i or 3750
  434. cPCI board.
  435. config WILLOW
  436. bool "Cogent-Willow"
  437. config CPCI690
  438. bool "Force-CPCI690"
  439. help
  440. Select CPCI690 if configuring a Force CPCI690 cPCI board.
  441. config PCORE
  442. bool "Force-PowerCore"
  443. config POWERPMC250
  444. bool "Force-PowerPMC250"
  445. config CHESTNUT
  446. bool "IBM 750FX Eval board or 750GX Eval board"
  447. help
  448. Select CHESTNUT if configuring an IBM 750FX Eval Board or a
  449. IBM 750GX Eval board.
  450. config SPRUCE
  451. bool "IBM-Spruce"
  452. config HDPU
  453. bool "Sky-HDPU"
  454. help
  455. Select HDPU if configuring a Sky Computers Compute Blade.
  456. config HDPU_FEATURES
  457. depends HDPU
  458. tristate "HDPU-Features"
  459. help
  460. Select to enable HDPU enhanced features.
  461. config EV64260
  462. bool "Marvell-EV64260BP"
  463. help
  464. Select EV64260 if configuring a Marvell (formerly Galileo)
  465. EV64260BP Evaluation platform.
  466. config LOPEC
  467. bool "Motorola-LoPEC"
  468. config MCPN765
  469. bool "Motorola-MCPN765"
  470. config MVME5100
  471. bool "Motorola-MVME5100"
  472. config PPLUS
  473. bool "Motorola-PowerPlus"
  474. config PRPMC750
  475. bool "Motorola-PrPMC750"
  476. config PRPMC800
  477. bool "Motorola-PrPMC800"
  478. config SANDPOINT
  479. bool "Motorola-Sandpoint"
  480. help
  481. Select SANDPOINT if configuring for a Motorola Sandpoint X3
  482. (any flavor).
  483. config RADSTONE_PPC7D
  484. bool "Radstone Technology PPC7D board"
  485. config ADIR
  486. bool "SBS-Adirondack"
  487. config K2
  488. bool "SBS-K2"
  489. config PAL4
  490. bool "SBS-Palomar4"
  491. config GEMINI
  492. bool "Synergy-Gemini"
  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 || SM850)
  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 || MCPN765 || SPRUCE || PPLUS || PCORE || \
  616. PRPMC750 || K2 || PRPMC800 || LOPEC || \
  617. (EV64260 && !SERIAL_MPSC) || CHESTNUT || RADSTONE_PPC7D || \
  618. 83xx
  619. default y
  620. config FORCE
  621. bool
  622. depends on 6xx && (PCORE || 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 PCORE || 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 CPC710_DATA_GATHERING
  683. bool "Enable CPC710 data gathering"
  684. depends on K2
  685. config HARRIER_STORE_GATHERING
  686. bool "Enable Harrier store gathering"
  687. depends on HARRIER
  688. config MVME5100_IPMC761_PRESENT
  689. bool "MVME5100 configured with an IPMC761"
  690. depends on MVME5100
  691. config SPRUCE_BAUD_33M
  692. bool "Spruce baud clock support"
  693. depends on SPRUCE
  694. config PC_KEYBOARD
  695. bool "PC PS/2 style Keyboard"
  696. depends on 4xx || CPM2
  697. config PPCBUG_NVRAM
  698. bool "Enable reading PPCBUG NVRAM during boot" if PPLUS || LOPEC
  699. default y if PPC_PREP
  700. config SMP
  701. bool "Symmetric multi-processing support"
  702. ---help---
  703. This enables support for systems with more than one CPU. If you have
  704. a system with only one CPU, say N. If you have a system with more
  705. than one CPU, say Y. Note that the kernel does not currently
  706. support SMP machines with 603/603e/603ev or PPC750 ("G3") processors
  707. since they have inadequate hardware support for multiprocessor
  708. operation.
  709. If you say N here, the kernel will run on single and multiprocessor
  710. machines, but will use only one CPU of a multiprocessor machine. If
  711. you say Y here, the kernel will run on single-processor machines.
  712. On a single-processor machine, the kernel will run faster if you say
  713. N here.
  714. If you don't know what to do here, say N.
  715. config IRQ_ALL_CPUS
  716. bool "Distribute interrupts on all CPUs by default"
  717. depends on SMP
  718. help
  719. This option gives the kernel permission to distribute IRQs across
  720. multiple CPUs. Saying N here will route all IRQs to the first
  721. CPU. Generally saying Y is safe, although some problems have been
  722. reported with SMP Power Macintoshes with this option enabled.
  723. config NR_CPUS
  724. int "Maximum number of CPUs (2-32)"
  725. range 2 32
  726. depends on SMP
  727. default "4"
  728. config PREEMPT
  729. bool "Preemptible Kernel"
  730. help
  731. This option reduces the latency of the kernel when reacting to
  732. real-time or interactive events by allowing a low priority process to
  733. be preempted even if it is in kernel mode executing a system call.
  734. Say Y here if you are building a kernel for a desktop, embedded
  735. or real-time system. Say N if you are unsure.
  736. config HIGHMEM
  737. bool "High memory support"
  738. source "mm/Kconfig"
  739. source "fs/Kconfig.binfmt"
  740. config PROC_DEVICETREE
  741. bool "Support for Open Firmware device tree in /proc"
  742. depends on PPC_OF && PROC_FS
  743. help
  744. This option adds a device-tree directory under /proc which contains
  745. an image of the device tree that the kernel copies from Open
  746. Firmware. If unsure, say Y here.
  747. config PREP_RESIDUAL
  748. bool "Support for PReP Residual Data"
  749. depends on PPC_PREP
  750. help
  751. Some PReP systems have residual data passed to the kernel by the
  752. firmware. This allows detection of memory size, devices present and
  753. other useful pieces of information. Sometimes this information is
  754. not present or incorrect, in which case it could lead to the machine
  755. behaving incorrectly. If this happens, either disable PREP_RESIDUAL
  756. or pass the 'noresidual' option to the kernel.
  757. If you are running a PReP system, say Y here, otherwise say N.
  758. config PROC_PREPRESIDUAL
  759. bool "Support for reading of PReP Residual Data in /proc"
  760. depends on PREP_RESIDUAL && PROC_FS
  761. help
  762. Enabling this option will create a /proc/residual file which allows
  763. you to get at the residual data on PReP systems. You will need a tool
  764. (lsresidual) to parse it. If you aren't on a PReP system, you don't
  765. want this.
  766. config CMDLINE_BOOL
  767. bool "Default bootloader kernel arguments"
  768. config CMDLINE
  769. string "Initial kernel command string"
  770. depends on CMDLINE_BOOL
  771. default "console=ttyS0,9600 console=tty0 root=/dev/sda2"
  772. help
  773. On some platforms, there is currently no way for the boot loader to
  774. pass arguments to the kernel. For these platforms, you can supply
  775. some command-line options at build time by entering them here. In
  776. most cases you will need to specify the root device here.
  777. config AMIGA
  778. bool
  779. depends on APUS
  780. default y
  781. help
  782. This option enables support for the Amiga series of computers.
  783. config ZORRO
  784. bool
  785. depends on APUS
  786. default y
  787. help
  788. This enables support for the Zorro bus in the Amiga. If you have
  789. expansion cards in your Amiga that conform to the Amiga
  790. AutoConfig(tm) specification, say Y, otherwise N. Note that even
  791. expansion cards that do not fit in the Zorro slots but fit in e.g.
  792. the CPU slot may fall in this category, so you have to say Y to let
  793. Linux use these.
  794. config ABSTRACT_CONSOLE
  795. bool
  796. depends on APUS
  797. default y
  798. config APUS_FAST_EXCEPT
  799. bool
  800. depends on APUS
  801. default y
  802. config AMIGA_PCMCIA
  803. bool "Amiga 1200/600 PCMCIA support"
  804. depends on APUS && EXPERIMENTAL
  805. help
  806. Include support in the kernel for pcmcia on Amiga 1200 and Amiga
  807. 600. If you intend to use pcmcia cards say Y; otherwise say N.
  808. config AMIGA_BUILTIN_SERIAL
  809. tristate "Amiga builtin serial support"
  810. depends on APUS
  811. help
  812. If you want to use your Amiga's built-in serial port in Linux,
  813. answer Y.
  814. To compile this driver as a module, choose M here.
  815. config GVPIOEXT
  816. tristate "GVP IO-Extender support"
  817. depends on APUS
  818. help
  819. If you want to use a GVP IO-Extender serial card in Linux, say Y.
  820. Otherwise, say N.
  821. config GVPIOEXT_LP
  822. tristate "GVP IO-Extender parallel printer support"
  823. depends on GVPIOEXT
  824. help
  825. Say Y to enable driving a printer from the parallel port on your
  826. GVP IO-Extender card, N otherwise.
  827. config GVPIOEXT_PLIP
  828. tristate "GVP IO-Extender PLIP support"
  829. depends on GVPIOEXT
  830. help
  831. Say Y to enable doing IP over the parallel port on your GVP
  832. IO-Extender card, N otherwise.
  833. config MULTIFACE_III_TTY
  834. tristate "Multiface Card III serial support"
  835. depends on APUS
  836. help
  837. If you want to use a Multiface III card's serial port in Linux,
  838. answer Y.
  839. To compile this driver as a module, choose M here.
  840. config A2232
  841. tristate "Commodore A2232 serial support (EXPERIMENTAL)"
  842. depends on EXPERIMENTAL && APUS
  843. ---help---
  844. This option supports the 2232 7-port serial card shipped with the
  845. Amiga 2000 and other Zorro-bus machines, dating from 1989. At
  846. a max of 19,200 bps, the ports are served by a 6551 ACIA UART chip
  847. each, plus a 8520 CIA, and a master 6502 CPU and buffer as well. The
  848. ports were connected with 8 pin DIN connectors on the card bracket,
  849. for which 8 pin to DB25 adapters were supplied. The card also had
  850. jumpers internally to toggle various pinning configurations.
  851. This driver can be built as a module; but then "generic_serial"
  852. will also be built as a module. This has to be loaded before
  853. "ser_a2232". If you want to do this, answer M here.
  854. config WHIPPET_SERIAL
  855. tristate "Hisoft Whippet PCMCIA serial support"
  856. depends on AMIGA_PCMCIA
  857. help
  858. HiSoft has a web page at <http://www.hisoft.co.uk/>, but there
  859. is no listing for the Whippet in their Amiga section.
  860. config APNE
  861. tristate "PCMCIA NE2000 support"
  862. depends on AMIGA_PCMCIA
  863. help
  864. If you have a PCMCIA NE2000 compatible adapter, say Y. Otherwise,
  865. say N.
  866. To compile this driver as a module, choose M here: the
  867. module will be called apne.
  868. config SERIAL_CONSOLE
  869. bool "Support for serial port console"
  870. depends on APUS && (AMIGA_BUILTIN_SERIAL=y || GVPIOEXT=y || MULTIFACE_III_TTY=y)
  871. config HEARTBEAT
  872. bool "Use power LED as a heartbeat"
  873. depends on APUS
  874. help
  875. Use the power-on LED on your machine as a load meter. The exact
  876. behavior is platform-dependent, but normally the flash frequency is
  877. a hyperbolic function of the 5-minute load average.
  878. config PROC_HARDWARE
  879. bool "/proc/hardware support"
  880. depends on APUS
  881. source "drivers/zorro/Kconfig"
  882. source kernel/power/Kconfig
  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 "drivers/Kconfig"
  1067. source "fs/Kconfig"
  1068. source "arch/ppc/8xx_io/Kconfig"
  1069. source "arch/ppc/8260_io/Kconfig"
  1070. menu "IBM 40x options"
  1071. depends on 40x
  1072. config SERIAL_SICC
  1073. bool "SICC Serial port"
  1074. depends on STB03xxx
  1075. config UART1_DFLT_CONSOLE
  1076. bool
  1077. depends on SERIAL_SICC && UART0_TTYS1
  1078. default y
  1079. config SERIAL_SICC_CONSOLE
  1080. bool
  1081. depends on SERIAL_SICC && UART0_TTYS1
  1082. default y
  1083. endmenu
  1084. source "lib/Kconfig"
  1085. source "arch/ppc/oprofile/Kconfig"
  1086. source "arch/ppc/Kconfig.debug"
  1087. source "security/Kconfig"
  1088. source "crypto/Kconfig"