Kconfig 38 KB

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