Kconfig 35 KB

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