Kconfig 9.1 KB

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