Kconfig 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. menu "Platform support"
  2. source "arch/powerpc/platforms/pseries/Kconfig"
  3. source "arch/powerpc/platforms/iseries/Kconfig"
  4. source "arch/powerpc/platforms/chrp/Kconfig"
  5. source "arch/powerpc/platforms/512x/Kconfig"
  6. source "arch/powerpc/platforms/52xx/Kconfig"
  7. source "arch/powerpc/platforms/powermac/Kconfig"
  8. source "arch/powerpc/platforms/prep/Kconfig"
  9. source "arch/powerpc/platforms/maple/Kconfig"
  10. source "arch/powerpc/platforms/pasemi/Kconfig"
  11. source "arch/powerpc/platforms/ps3/Kconfig"
  12. source "arch/powerpc/platforms/cell/Kconfig"
  13. source "arch/powerpc/platforms/8xx/Kconfig"
  14. source "arch/powerpc/platforms/82xx/Kconfig"
  15. source "arch/powerpc/platforms/83xx/Kconfig"
  16. source "arch/powerpc/platforms/85xx/Kconfig"
  17. source "arch/powerpc/platforms/86xx/Kconfig"
  18. source "arch/powerpc/platforms/embedded6xx/Kconfig"
  19. source "arch/powerpc/platforms/44x/Kconfig"
  20. source "arch/powerpc/platforms/40x/Kconfig"
  21. source "arch/powerpc/platforms/amigaone/Kconfig"
  22. source "arch/powerpc/platforms/wsp/Kconfig"
  23. config KVM_GUEST
  24. bool "KVM Guest support"
  25. default y
  26. ---help---
  27. This option enables various optimizations for running under the KVM
  28. hypervisor. Overhead for the kernel when not running inside KVM should
  29. be minimal.
  30. In case of doubt, say Y
  31. config PPC_NATIVE
  32. bool
  33. depends on 6xx || PPC64
  34. help
  35. Support for running natively on the hardware, i.e. without
  36. a hypervisor. This option is not user-selectable but should
  37. be selected by all platforms that need it.
  38. config PPC_OF_BOOT_TRAMPOLINE
  39. bool "Support booting from Open Firmware or yaboot"
  40. depends on 6xx || PPC64
  41. default y
  42. help
  43. Support from booting from Open Firmware or yaboot using an
  44. Open Firmware client interface. This enables the kernel to
  45. communicate with open firmware to retrieve system information
  46. such as the device tree.
  47. In case of doubt, say Y
  48. config UDBG_RTAS_CONSOLE
  49. bool "RTAS based debug console"
  50. depends on PPC_RTAS
  51. default n
  52. config PPC_UDBG_BEAT
  53. bool "BEAT based debug console"
  54. depends on PPC_CELLEB
  55. default n
  56. config XICS
  57. depends on PPC_PSERIES
  58. bool
  59. default y
  60. config IPIC
  61. bool
  62. default n
  63. config MPIC
  64. bool
  65. default n
  66. config MPIC_WEIRD
  67. bool
  68. default n
  69. config PPC_I8259
  70. bool
  71. default n
  72. config U3_DART
  73. bool
  74. depends on PPC64
  75. default n
  76. config PPC_RTAS
  77. bool
  78. default n
  79. config RTAS_ERROR_LOGGING
  80. bool
  81. depends on PPC_RTAS
  82. default n
  83. config PPC_RTAS_DAEMON
  84. bool
  85. depends on PPC_RTAS
  86. default n
  87. config RTAS_PROC
  88. bool "Proc interface to RTAS"
  89. depends on PPC_RTAS
  90. default y
  91. config RTAS_FLASH
  92. tristate "Firmware flash interface"
  93. depends on PPC64 && RTAS_PROC
  94. config MMIO_NVRAM
  95. bool
  96. default n
  97. config MPIC_U3_HT_IRQS
  98. bool
  99. default n
  100. config MPIC_BROKEN_REGREAD
  101. bool
  102. depends on MPIC
  103. help
  104. This option enables a MPIC driver workaround for some chips
  105. that have a bug that causes some interrupt source information
  106. to not read back properly. It is safe to use on other chips as
  107. well, but enabling it uses about 8KB of memory to keep copies
  108. of the register contents in software.
  109. config IBMVIO
  110. depends on PPC_PSERIES || PPC_ISERIES
  111. bool
  112. default y
  113. config IBMEBUS
  114. depends on PPC_PSERIES
  115. bool "Support for GX bus based adapters"
  116. help
  117. Bus device driver for GX bus based adapters.
  118. config PPC_MPC106
  119. bool
  120. default n
  121. config PPC_970_NAP
  122. bool
  123. default n
  124. config PPC_P7_NAP
  125. bool
  126. default n
  127. config PPC_INDIRECT_IO
  128. bool
  129. select GENERIC_IOMAP
  130. config PPC_INDIRECT_PIO
  131. bool
  132. select PPC_INDIRECT_IO
  133. config PPC_INDIRECT_MMIO
  134. bool
  135. select PPC_INDIRECT_IO
  136. config PPC_IO_WORKAROUNDS
  137. bool
  138. config GENERIC_IOMAP
  139. bool
  140. source "drivers/cpufreq/Kconfig"
  141. menu "CPU Frequency drivers"
  142. depends on CPU_FREQ
  143. config CPU_FREQ_PMAC
  144. bool "Support for Apple PowerBooks"
  145. depends on ADB_PMU && PPC32
  146. select CPU_FREQ_TABLE
  147. help
  148. This adds support for frequency switching on Apple PowerBooks,
  149. this currently includes some models of iBook & Titanium
  150. PowerBook.
  151. config CPU_FREQ_PMAC64
  152. bool "Support for some Apple G5s"
  153. depends on PPC_PMAC && PPC64
  154. select CPU_FREQ_TABLE
  155. help
  156. This adds support for frequency switching on Apple iMac G5,
  157. and some of the more recent desktop G5 machines as well.
  158. config PPC_PASEMI_CPUFREQ
  159. bool "Support for PA Semi PWRficient"
  160. depends on PPC_PASEMI
  161. default y
  162. select CPU_FREQ_TABLE
  163. help
  164. This adds the support for frequency switching on PA Semi
  165. PWRficient processors.
  166. endmenu
  167. config PPC601_SYNC_FIX
  168. bool "Workarounds for PPC601 bugs"
  169. depends on 6xx && (PPC_PREP || PPC_PMAC)
  170. help
  171. Some versions of the PPC601 (the first PowerPC chip) have bugs which
  172. mean that extra synchronization instructions are required near
  173. certain instructions, typically those that make major changes to the
  174. CPU state. These extra instructions reduce performance slightly.
  175. If you say N here, these extra instructions will not be included,
  176. resulting in a kernel which will run faster but may not run at all
  177. on some systems with the PPC601 chip.
  178. If in doubt, say Y here.
  179. config TAU
  180. bool "On-chip CPU temperature sensor support"
  181. depends on 6xx
  182. help
  183. G3 and G4 processors have an on-chip temperature sensor called the
  184. 'Thermal Assist Unit (TAU)', which, in theory, can measure the on-die
  185. temperature within 2-4 degrees Celsius. This option shows the current
  186. on-die temperature in /proc/cpuinfo if the cpu supports it.
  187. Unfortunately, on some chip revisions, this sensor is very inaccurate
  188. and in many cases, does not work at all, so don't assume the cpu
  189. temp is actually what /proc/cpuinfo says it is.
  190. config TAU_INT
  191. bool "Interrupt driven TAU driver (DANGEROUS)"
  192. depends on TAU
  193. ---help---
  194. The TAU supports an interrupt driven mode which causes an interrupt
  195. whenever the temperature goes out of range. This is the fastest way
  196. to get notified the temp has exceeded a range. With this option off,
  197. a timer is used to re-check the temperature periodically.
  198. However, on some cpus it appears that the TAU interrupt hardware
  199. is buggy and can cause a situation which would lead unexplained hard
  200. lockups.
  201. Unless you are extending the TAU driver, or enjoy kernel/hardware
  202. debugging, leave this option off.
  203. config TAU_AVERAGE
  204. bool "Average high and low temp"
  205. depends on TAU
  206. ---help---
  207. The TAU hardware can compare the temperature to an upper and lower
  208. bound. The default behavior is to show both the upper and lower
  209. bound in /proc/cpuinfo. If the range is large, the temperature is
  210. either changing a lot, or the TAU hardware is broken (likely on some
  211. G4's). If the range is small (around 4 degrees), the temperature is
  212. relatively stable. If you say Y here, a single temperature value,
  213. halfway between the upper and lower bounds, will be reported in
  214. /proc/cpuinfo.
  215. If in doubt, say N here.
  216. config QUICC_ENGINE
  217. bool "Freescale QUICC Engine (QE) Support"
  218. depends on FSL_SOC
  219. select PPC_LIB_RHEAP
  220. select CRC32
  221. help
  222. The QUICC Engine (QE) is a new generation of communications
  223. coprocessors on Freescale embedded CPUs (akin to CPM in older chips).
  224. Selecting this option means that you wish to build a kernel
  225. for a machine with a QE coprocessor.
  226. config QE_GPIO
  227. bool "QE GPIO support"
  228. depends on QUICC_ENGINE
  229. select GENERIC_GPIO
  230. select ARCH_REQUIRE_GPIOLIB
  231. help
  232. Say Y here if you're going to use hardware that connects to the
  233. QE GPIOs.
  234. config CPM2
  235. bool "Enable support for the CPM2 (Communications Processor Module)"
  236. depends on (FSL_SOC_BOOKE && PPC32) || 8260
  237. select CPM
  238. select PPC_LIB_RHEAP
  239. select PPC_PCI_CHOICE
  240. select ARCH_REQUIRE_GPIOLIB
  241. select GENERIC_GPIO
  242. help
  243. The CPM2 (Communications Processor Module) is a coprocessor on
  244. embedded CPUs made by Freescale. Selecting this option means that
  245. you wish to build a kernel for a machine with a CPM2 coprocessor
  246. on it (826x, 827x, 8560).
  247. config AXON_RAM
  248. tristate "Axon DDR2 memory device driver"
  249. depends on PPC_IBM_CELL_BLADE && BLOCK
  250. default m
  251. help
  252. It registers one block device per Axon's DDR2 memory bank found
  253. on a system. Block devices are called axonram?, their major and
  254. minor numbers are available in /proc/devices, /proc/partitions or
  255. in /sys/block/axonram?/dev.
  256. config FSL_ULI1575
  257. bool
  258. default n
  259. select GENERIC_ISA_DMA
  260. help
  261. Supports for the ULI1575 PCIe south bridge that exists on some
  262. Freescale reference boards. The boards all use the ULI in pretty
  263. much the same way.
  264. config CPM
  265. bool
  266. select PPC_CLOCK
  267. config OF_RTC
  268. bool
  269. help
  270. Uses information from the OF or flattened device tree to instantiate
  271. platform devices for direct mapped RTC chips like the DS1742 or DS1743.
  272. source "arch/powerpc/sysdev/bestcomm/Kconfig"
  273. config MPC8xxx_GPIO
  274. bool "MPC512x/MPC8xxx GPIO support"
  275. depends on PPC_MPC512x || PPC_MPC831x || PPC_MPC834x || PPC_MPC837x || \
  276. FSL_SOC_BOOKE || PPC_86xx
  277. select GENERIC_GPIO
  278. select ARCH_REQUIRE_GPIOLIB
  279. help
  280. Say Y here if you're going to use hardware that connects to the
  281. MPC512x/831x/834x/837x/8572/8610 GPIOs.
  282. config SIMPLE_GPIO
  283. bool "Support for simple, memory-mapped GPIO controllers"
  284. depends on PPC
  285. select GENERIC_GPIO
  286. select ARCH_REQUIRE_GPIOLIB
  287. help
  288. Say Y here to support simple, memory-mapped GPIO controllers.
  289. These are usually BCSRs used to control board's switches, LEDs,
  290. chip-selects, Ethernet/USB PHY's power and various other small
  291. on-board peripherals.
  292. config MCU_MPC8349EMITX
  293. tristate "MPC8349E-mITX MCU driver"
  294. depends on I2C && PPC_83xx
  295. select GENERIC_GPIO
  296. select ARCH_REQUIRE_GPIOLIB
  297. help
  298. Say Y here to enable soft power-off functionality on the Freescale
  299. boards with the MPC8349E-mITX-compatible MCU chips. This driver will
  300. also register MCU GPIOs with the generic GPIO API, so you'll able
  301. to use MCU pins as GPIOs.
  302. config XILINX_PCI
  303. bool "Xilinx PCI host bridge support"
  304. depends on PCI && XILINX_VIRTEX
  305. endmenu