Kconfig 35 KB

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