Kconfig 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. menu "Platform support"
  2. choice
  3. prompt "Machine type"
  4. depends on PPC64 || CLASSIC32
  5. default PPC_MULTIPLATFORM
  6. config PPC_MULTIPLATFORM
  7. bool "Generic desktop/server/laptop"
  8. help
  9. Select this option if configuring for an IBM pSeries or
  10. RS/6000 machine, an Apple machine, or a PReP, CHRP,
  11. Maple or Cell-based machine.
  12. config EMBEDDED6xx
  13. bool "Embedded 6xx/7xx/7xxx-based board"
  14. depends on PPC32 && (BROKEN||BROKEN_ON_SMP)
  15. config APUS
  16. bool "Amiga-APUS"
  17. depends on PPC32 && BROKEN
  18. help
  19. Select APUS if configuring for a PowerUP Amiga.
  20. More information is available at:
  21. <http://linux-apus.sourceforge.net/>.
  22. endchoice
  23. source "arch/powerpc/platforms/pseries/Kconfig"
  24. source "arch/powerpc/platforms/iseries/Kconfig"
  25. source "arch/powerpc/platforms/chrp/Kconfig"
  26. source "arch/powerpc/platforms/52xx/Kconfig"
  27. source "arch/powerpc/platforms/powermac/Kconfig"
  28. source "arch/powerpc/platforms/prep/Kconfig"
  29. source "arch/powerpc/platforms/maple/Kconfig"
  30. source "arch/powerpc/platforms/pasemi/Kconfig"
  31. source "arch/powerpc/platforms/celleb/Kconfig"
  32. source "arch/powerpc/platforms/ps3/Kconfig"
  33. source "arch/powerpc/platforms/cell/Kconfig"
  34. source "arch/powerpc/platforms/8xx/Kconfig"
  35. source "arch/powerpc/platforms/82xx/Kconfig"
  36. source "arch/powerpc/platforms/83xx/Kconfig"
  37. source "arch/powerpc/platforms/85xx/Kconfig"
  38. source "arch/powerpc/platforms/86xx/Kconfig"
  39. source "arch/powerpc/platforms/embedded6xx/Kconfig"
  40. source "arch/powerpc/platforms/44x/Kconfig"
  41. #source "arch/powerpc/platforms/4xx/Kconfig
  42. config PPC_NATIVE
  43. bool
  44. depends on PPC_MULTIPLATFORM
  45. help
  46. Support for running natively on the hardware, i.e. without
  47. a hypervisor. This option is not user-selectable but should
  48. be selected by all platforms that need it.
  49. config UDBG_RTAS_CONSOLE
  50. bool "RTAS based debug console"
  51. depends on PPC_RTAS
  52. default n
  53. config PPC_UDBG_BEAT
  54. bool "BEAT based debug console"
  55. depends on PPC_CELLEB
  56. default n
  57. config XICS
  58. depends on PPC_PSERIES
  59. bool
  60. default y
  61. config MPIC
  62. bool
  63. default n
  64. config MPIC_WEIRD
  65. bool
  66. default n
  67. config PPC_I8259
  68. bool
  69. default n
  70. config U3_DART
  71. bool
  72. depends on PPC_MULTIPLATFORM && PPC64
  73. default n
  74. config PPC_RTAS
  75. bool
  76. default n
  77. config RTAS_ERROR_LOGGING
  78. bool
  79. depends on PPC_RTAS
  80. default n
  81. config RTAS_PROC
  82. bool "Proc interface to RTAS"
  83. depends on PPC_RTAS
  84. default y
  85. config RTAS_FLASH
  86. tristate "Firmware flash interface"
  87. depends on PPC64 && RTAS_PROC
  88. config PPC_PMI
  89. tristate "Support for PMI"
  90. depends PPC_IBM_CELL_BLADE
  91. help
  92. PMI (Platform Management Interrupt) is a way to
  93. communicate with the BMC (Baseboard Mangement Controller).
  94. It is used in some IBM Cell blades.
  95. default m
  96. config MMIO_NVRAM
  97. bool
  98. default n
  99. config MPIC_U3_HT_IRQS
  100. bool
  101. depends on PPC_MAPLE
  102. default y
  103. config IBMVIO
  104. depends on PPC_PSERIES || PPC_ISERIES
  105. bool
  106. default y
  107. config IBMEBUS
  108. depends on PPC_PSERIES
  109. bool "Support for GX bus based adapters"
  110. help
  111. Bus device driver for GX bus based adapters.
  112. config PPC_MPC106
  113. bool
  114. default n
  115. config PPC_970_NAP
  116. bool
  117. default n
  118. config PPC_INDIRECT_IO
  119. bool
  120. select GENERIC_IOMAP
  121. default n
  122. config GENERIC_IOMAP
  123. bool
  124. default n
  125. source "drivers/cpufreq/Kconfig"
  126. menu "CPU Frequency drivers"
  127. depends on CPU_FREQ
  128. config CPU_FREQ_PMAC
  129. bool "Support for Apple PowerBooks"
  130. depends on ADB_PMU && PPC32
  131. select CPU_FREQ_TABLE
  132. help
  133. This adds support for frequency switching on Apple PowerBooks,
  134. this currently includes some models of iBook & Titanium
  135. PowerBook.
  136. config CPU_FREQ_PMAC64
  137. bool "Support for some Apple G5s"
  138. depends on PPC_PMAC && PPC64
  139. select CPU_FREQ_TABLE
  140. help
  141. This adds support for frequency switching on Apple iMac G5,
  142. and some of the more recent desktop G5 machines as well.
  143. config PPC_PASEMI_CPUFREQ
  144. bool "Support for PA Semi PWRficient"
  145. depends on PPC_PASEMI
  146. default y
  147. select CPU_FREQ_TABLE
  148. help
  149. This adds the support for frequency switching on PA Semi
  150. PWRficient processors.
  151. endmenu
  152. config PPC601_SYNC_FIX
  153. bool "Workarounds for PPC601 bugs"
  154. depends on 6xx && (PPC_PREP || PPC_PMAC)
  155. help
  156. Some versions of the PPC601 (the first PowerPC chip) have bugs which
  157. mean that extra synchronization instructions are required near
  158. certain instructions, typically those that make major changes to the
  159. CPU state. These extra instructions reduce performance slightly.
  160. If you say N here, these extra instructions will not be included,
  161. resulting in a kernel which will run faster but may not run at all
  162. on some systems with the PPC601 chip.
  163. If in doubt, say Y here.
  164. config TAU
  165. bool "On-chip CPU temperature sensor support"
  166. depends on CLASSIC32
  167. help
  168. G3 and G4 processors have an on-chip temperature sensor called the
  169. 'Thermal Assist Unit (TAU)', which, in theory, can measure the on-die
  170. temperature within 2-4 degrees Celsius. This option shows the current
  171. on-die temperature in /proc/cpuinfo if the cpu supports it.
  172. Unfortunately, on some chip revisions, this sensor is very inaccurate
  173. and in many cases, does not work at all, so don't assume the cpu
  174. temp is actually what /proc/cpuinfo says it is.
  175. config TAU_INT
  176. bool "Interrupt driven TAU driver (DANGEROUS)"
  177. depends on TAU
  178. ---help---
  179. The TAU supports an interrupt driven mode which causes an interrupt
  180. whenever the temperature goes out of range. This is the fastest way
  181. to get notified the temp has exceeded a range. With this option off,
  182. a timer is used to re-check the temperature periodically.
  183. However, on some cpus it appears that the TAU interrupt hardware
  184. is buggy and can cause a situation which would lead unexplained hard
  185. lockups.
  186. Unless you are extending the TAU driver, or enjoy kernel/hardware
  187. debugging, leave this option off.
  188. config TAU_AVERAGE
  189. bool "Average high and low temp"
  190. depends on TAU
  191. ---help---
  192. The TAU hardware can compare the temperature to an upper and lower
  193. bound. The default behavior is to show both the upper and lower
  194. bound in /proc/cpuinfo. If the range is large, the temperature is
  195. either changing a lot, or the TAU hardware is broken (likely on some
  196. G4's). If the range is small (around 4 degrees), the temperature is
  197. relatively stable. If you say Y here, a single temperature value,
  198. halfway between the upper and lower bounds, will be reported in
  199. /proc/cpuinfo.
  200. If in doubt, say N here.
  201. config QUICC_ENGINE
  202. bool
  203. help
  204. The QUICC Engine (QE) is a new generation of communications
  205. coprocessors on Freescale embedded CPUs (akin to CPM in older chips).
  206. Selecting this option means that you wish to build a kernel
  207. for a machine with a QE coprocessor.
  208. config CPM2
  209. bool
  210. default n
  211. help
  212. The CPM2 (Communications Processor Module) is a coprocessor on
  213. embedded CPUs made by Freescale. Selecting this option means that
  214. you wish to build a kernel for a machine with a CPM2 coprocessor
  215. on it (826x, 827x, 8560).
  216. endmenu