Kconfig.arm 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. #
  2. # ARM CPU Frequency scaling drivers
  3. #
  4. config ARM_BIG_LITTLE_CPUFREQ
  5. tristate "Generic ARM big LITTLE CPUfreq driver"
  6. depends on ARM_CPU_TOPOLOGY && PM_OPP && HAVE_CLK
  7. select CPU_FREQ_TABLE
  8. help
  9. This enables the Generic CPUfreq driver for ARM big.LITTLE platforms.
  10. config ARM_DT_BL_CPUFREQ
  11. tristate "Generic probing via DT for ARM big LITTLE CPUfreq driver"
  12. depends on ARM_BIG_LITTLE_CPUFREQ && OF
  13. help
  14. This enables probing via DT for Generic CPUfreq driver for ARM
  15. big.LITTLE platform. This gets frequency tables from DT.
  16. config ARM_EXYNOS_CPUFREQ
  17. bool
  18. select CPU_FREQ_TABLE
  19. config ARM_EXYNOS4210_CPUFREQ
  20. bool "SAMSUNG EXYNOS4210"
  21. depends on CPU_EXYNOS4210
  22. default y
  23. select ARM_EXYNOS_CPUFREQ
  24. help
  25. This adds the CPUFreq driver for Samsung EXYNOS4210
  26. SoC (S5PV310 or S5PC210).
  27. If in doubt, say N.
  28. config ARM_EXYNOS4X12_CPUFREQ
  29. bool "SAMSUNG EXYNOS4x12"
  30. depends on (SOC_EXYNOS4212 || SOC_EXYNOS4412)
  31. default y
  32. select ARM_EXYNOS_CPUFREQ
  33. help
  34. This adds the CPUFreq driver for Samsung EXYNOS4X12
  35. SoC (EXYNOS4212 or EXYNOS4412).
  36. If in doubt, say N.
  37. config ARM_EXYNOS5250_CPUFREQ
  38. bool "SAMSUNG EXYNOS5250"
  39. depends on SOC_EXYNOS5250
  40. default y
  41. select ARM_EXYNOS_CPUFREQ
  42. help
  43. This adds the CPUFreq driver for Samsung EXYNOS5250
  44. SoC.
  45. If in doubt, say N.
  46. config ARM_EXYNOS5440_CPUFREQ
  47. bool "SAMSUNG EXYNOS5440"
  48. depends on SOC_EXYNOS5440
  49. depends on HAVE_CLK && PM_OPP && OF
  50. default y
  51. select CPU_FREQ_TABLE
  52. help
  53. This adds the CPUFreq driver for Samsung EXYNOS5440
  54. SoC. The nature of exynos5440 clock controller is
  55. different than previous exynos controllers so not using
  56. the common exynos framework.
  57. If in doubt, say N.
  58. config ARM_HIGHBANK_CPUFREQ
  59. tristate "Calxeda Highbank-based"
  60. depends on ARCH_HIGHBANK
  61. select GENERIC_CPUFREQ_CPU0
  62. select PM_OPP
  63. select REGULATOR
  64. default m
  65. help
  66. This adds the CPUFreq driver for Calxeda Highbank SoC
  67. based boards.
  68. If in doubt, say N.
  69. config ARM_IMX6Q_CPUFREQ
  70. tristate "Freescale i.MX6Q cpufreq support"
  71. depends on SOC_IMX6Q
  72. depends on REGULATOR_ANATOP
  73. select CPU_FREQ_TABLE
  74. help
  75. This adds cpufreq driver support for Freescale i.MX6Q SOC.
  76. If in doubt, say N.
  77. config ARM_INTEGRATOR
  78. tristate "CPUfreq driver for ARM Integrator CPUs"
  79. depends on ARCH_INTEGRATOR
  80. default y
  81. help
  82. This enables the CPUfreq driver for ARM Integrator CPUs.
  83. If in doubt, say Y.
  84. config ARM_KIRKWOOD_CPUFREQ
  85. def_bool ARCH_KIRKWOOD && OF
  86. select CPU_FREQ_TABLE
  87. help
  88. This adds the CPUFreq driver for Marvell Kirkwood
  89. SoCs.
  90. config ARM_OMAP2PLUS_CPUFREQ
  91. bool "TI OMAP2+"
  92. depends on ARCH_OMAP2PLUS
  93. default ARCH_OMAP2PLUS
  94. select CPU_FREQ_TABLE
  95. config ARM_S3C_CPUFREQ
  96. bool
  97. help
  98. Internal configuration node for common cpufreq on Samsung SoC
  99. config ARM_S3C24XX_CPUFREQ
  100. bool "CPUfreq driver for Samsung S3C24XX series CPUs (EXPERIMENTAL)"
  101. depends on ARCH_S3C24XX
  102. select ARM_S3C_CPUFREQ
  103. help
  104. This enables the CPUfreq driver for the Samsung S3C24XX family
  105. of CPUs.
  106. For details, take a look at <file:Documentation/cpu-freq>.
  107. If in doubt, say N.
  108. config ARM_S3C24XX_CPUFREQ_DEBUG
  109. bool "Debug CPUfreq Samsung driver core"
  110. depends on ARM_S3C24XX_CPUFREQ
  111. help
  112. Enable s3c_freq_dbg for the Samsung S3C CPUfreq core
  113. config ARM_S3C24XX_CPUFREQ_IODEBUG
  114. bool "Debug CPUfreq Samsung driver IO timing"
  115. depends on ARM_S3C24XX_CPUFREQ
  116. help
  117. Enable s3c_freq_iodbg for the Samsung S3C CPUfreq core
  118. config ARM_S3C24XX_CPUFREQ_DEBUGFS
  119. bool "Export debugfs for CPUFreq"
  120. depends on ARM_S3C24XX_CPUFREQ && DEBUG_FS
  121. help
  122. Export status information via debugfs.
  123. config ARM_S3C2410_CPUFREQ
  124. bool
  125. depends on ARM_S3C24XX_CPUFREQ && CPU_S3C2410
  126. select S3C2410_CPUFREQ_UTILS
  127. help
  128. CPU Frequency scaling support for S3C2410
  129. config ARM_S3C2412_CPUFREQ
  130. bool
  131. depends on ARM_S3C24XX_CPUFREQ && CPU_S3C2412
  132. default y
  133. select S3C2412_IOTIMING
  134. help
  135. CPU Frequency scaling support for S3C2412 and S3C2413 SoC CPUs.
  136. config ARM_S3C2416_CPUFREQ
  137. bool "S3C2416 CPU Frequency scaling support"
  138. depends on CPU_S3C2416
  139. select CPU_FREQ_TABLE
  140. help
  141. This adds the CPUFreq driver for the Samsung S3C2416 and
  142. S3C2450 SoC. The S3C2416 supports changing the rate of the
  143. armdiv clock source and also entering a so called dynamic
  144. voltage scaling mode in which it is possible to reduce the
  145. core voltage of the cpu.
  146. If in doubt, say N.
  147. config ARM_S3C2416_CPUFREQ_VCORESCALE
  148. bool "Allow voltage scaling for S3C2416 arm core"
  149. depends on ARM_S3C2416_CPUFREQ && REGULATOR
  150. help
  151. Enable CPU voltage scaling when entering the dvs mode.
  152. It uses information gathered through existing hardware and
  153. tests but not documented in any datasheet.
  154. If in doubt, say N.
  155. config ARM_S3C2440_CPUFREQ
  156. bool "S3C2440/S3C2442 CPU Frequency scaling support"
  157. depends on ARM_S3C24XX_CPUFREQ && (CPU_S3C2440 || CPU_S3C2442)
  158. select S3C2410_CPUFREQ_UTILS
  159. default y
  160. help
  161. CPU Frequency scaling support for S3C2440 and S3C2442 SoC CPUs.
  162. config ARM_S3C64XX_CPUFREQ
  163. bool "Samsung S3C64XX"
  164. depends on CPU_S3C6410
  165. select CPU_FREQ_TABLE
  166. default y
  167. help
  168. This adds the CPUFreq driver for Samsung S3C6410 SoC.
  169. If in doubt, say N.
  170. config ARM_S5PV210_CPUFREQ
  171. bool "Samsung S5PV210 and S5PC110"
  172. depends on CPU_S5PV210
  173. select CPU_FREQ_TABLE
  174. default y
  175. help
  176. This adds the CPUFreq driver for Samsung S5PV210 and
  177. S5PC110 SoCs.
  178. If in doubt, say N.
  179. config ARM_SA1100_CPUFREQ
  180. bool
  181. config ARM_SA1110_CPUFREQ
  182. bool
  183. config ARM_SPEAR_CPUFREQ
  184. bool "SPEAr CPUFreq support"
  185. depends on PLAT_SPEAR
  186. select CPU_FREQ_TABLE
  187. default y
  188. help
  189. This adds the CPUFreq driver support for SPEAr SOCs.
  190. config ARM_TEGRA_CPUFREQ
  191. bool "TEGRA CPUFreq support"
  192. depends on ARCH_TEGRA
  193. select CPU_FREQ_TABLE
  194. default y
  195. help
  196. This adds the CPUFreq driver support for TEGRA SOCs.