Kconfig 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. menu "Clock"
  2. config CLK
  3. bool "Enable clock driver support"
  4. depends on DM
  5. help
  6. This allows drivers to be provided for clock generators, including
  7. oscillators and PLLs. Devices can use a common clock API to request
  8. a particular clock rate and check on available clocks. Clocks can
  9. feed into other clocks in a tree structure, with multiplexers to
  10. choose the source for each clock.
  11. config SPL_CLK
  12. bool "Enable clock support in SPL"
  13. depends on CLK && SPL && SPL_DM
  14. help
  15. The clock subsystem adds a small amount of overhead to the image.
  16. If this is acceptable and you have a need to use clock drivers in
  17. SPL, enable this option. It might provide a cleaner interface to
  18. setting up clocks within SPL, and allows the same drivers to be
  19. used as U-Boot proper.
  20. config TPL_CLK
  21. bool "Enable clock support in TPL"
  22. depends on CLK && TPL_DM
  23. help
  24. The clock subsystem adds a small amount of overhead to the image.
  25. If this is acceptable and you have a need to use clock drivers in
  26. SPL, enable this option. It might provide a cleaner interface to
  27. setting up clocks within TPL, and allows the same drivers to be
  28. used as U-Boot proper.
  29. config CLK_BCM6345
  30. bool "Clock controller driver for BCM6345"
  31. depends on CLK && ARCH_BMIPS
  32. default y
  33. help
  34. This clock driver adds support for enabling and disabling peripheral
  35. clocks on BCM6345 SoCs. HW has no rate changing capabilities.
  36. config CLK_BOSTON
  37. def_bool y if TARGET_BOSTON
  38. depends on CLK
  39. select REGMAP
  40. select SYSCON
  41. help
  42. Enable this to support the clocks
  43. config SPL_CLK_CCF
  44. bool "SPL Common Clock Framework [CCF] support "
  45. depends on SPL
  46. help
  47. Enable this option if you want to (re-)use the Linux kernel's Common
  48. Clock Framework [CCF] code in U-Boot's SPL.
  49. config SPL_CLK_COMPOSITE_CCF
  50. bool "SPL Common Clock Framework [CCF] composite clk support "
  51. depends on SPL_CLK_CCF
  52. help
  53. Enable this option if you want to (re-)use the Linux kernel's Common
  54. Clock Framework [CCF] composite code in U-Boot's SPL.
  55. config CLK_CCF
  56. bool "Common Clock Framework [CCF] support "
  57. help
  58. Enable this option if you want to (re-)use the Linux kernel's Common
  59. Clock Framework [CCF] code in U-Boot's clock driver.
  60. config CLK_COMPOSITE_CCF
  61. bool "Common Clock Framework [CCF] composite clk support "
  62. depends on CLK_CCF
  63. help
  64. Enable this option if you want to (re-)use the Linux kernel's Common
  65. Clock Framework [CCF] composite code in U-Boot's clock driver.
  66. config CLK_INTEL
  67. bool "Enable clock driver for Intel x86"
  68. depends on CLK && X86
  69. help
  70. This provides very basic support for clocks on Intel SoCs. The driver
  71. is barely used at present but could be expanded as needs arise.
  72. Much clock configuration in U-Boot is either set up by the FSP, or
  73. set up by U-Boot itself but only statically. Thus the driver does not
  74. support changing clock rates, only querying them.
  75. config CLK_STM32F
  76. bool "Enable clock driver support for STM32F family"
  77. depends on CLK && (STM32F7 || STM32F4)
  78. default y
  79. help
  80. This clock driver adds support for RCC clock management
  81. for STM32F4 and STM32F7 SoCs.
  82. config CLK_TI_SCI
  83. bool "TI System Control Interface (TI SCI) clock driver"
  84. depends on CLK && TI_SCI_PROTOCOL && OF_CONTROL
  85. help
  86. This enables the clock driver support over TI System Control Interface
  87. available on some new TI's SoCs. If you wish to use clock resources
  88. managed by the TI System Controller, say Y here. Otherwise, say N.
  89. config CLK_HSDK
  90. bool "Enable cgu clock driver for HSDK boards"
  91. depends on CLK && TARGET_HSDK
  92. help
  93. Enable this to support the cgu clocks on Synopsys ARC HSDK and
  94. Synopsys ARC HSDK-4xD boards
  95. config CLK_VERSAL
  96. bool "Enable clock driver support for Versal"
  97. depends on ARCH_VERSAL
  98. select ZYNQMP_FIRMWARE
  99. help
  100. This clock driver adds support for clock realted settings for
  101. Versal platform.
  102. config CLK_VEXPRESS_OSC
  103. bool "Enable driver for Arm Versatile Express OSC clock generators"
  104. depends on CLK && VEXPRESS_CONFIG
  105. help
  106. This clock driver adds support for clock generators present on
  107. Arm Versatile Express platforms.
  108. config CLK_ZYNQ
  109. bool "Enable clock driver support for Zynq"
  110. depends on CLK && ARCH_ZYNQ
  111. default y
  112. help
  113. This clock driver adds support for clock realted settings for
  114. Zynq platform.
  115. config CLK_ZYNQMP
  116. bool "Enable clock driver support for ZynqMP"
  117. depends on ARCH_ZYNQMP
  118. select ZYNQMP_FIRMWARE
  119. help
  120. This clock driver adds support for clock realted settings for
  121. ZynqMP platform.
  122. config CLK_STM32MP1
  123. bool "Enable RCC clock driver for STM32MP1"
  124. depends on ARCH_STM32MP && CLK
  125. default y
  126. help
  127. Enable the STM32 clock (RCC) driver. Enable support for
  128. manipulating STM32MP1's on-SoC clocks.
  129. config CLK_CDCE9XX
  130. bool "Enable CDCD9XX clock driver"
  131. depends on CLK
  132. help
  133. Enable the clock synthesizer driver for CDCE913/925/937/949
  134. series of chips.
  135. source "drivers/clk/analogbits/Kconfig"
  136. source "drivers/clk/at91/Kconfig"
  137. source "drivers/clk/exynos/Kconfig"
  138. source "drivers/clk/imx/Kconfig"
  139. source "drivers/clk/kendryte/Kconfig"
  140. source "drivers/clk/meson/Kconfig"
  141. source "drivers/clk/mvebu/Kconfig"
  142. source "drivers/clk/owl/Kconfig"
  143. source "drivers/clk/renesas/Kconfig"
  144. source "drivers/clk/sunxi/Kconfig"
  145. source "drivers/clk/sifive/Kconfig"
  146. source "drivers/clk/tegra/Kconfig"
  147. source "drivers/clk/uniphier/Kconfig"
  148. config ICS8N3QV01
  149. bool "Enable ICS8N3QV01 VCXO driver"
  150. depends on CLK
  151. help
  152. Support for the ICS8N3QV01 Quad-Frequency VCXO (Voltage-Controlled
  153. Crystal Oscillator). The output frequency can be programmed via an
  154. I2C interface.
  155. config CLK_MPC83XX
  156. bool "Enable MPC83xx clock driver"
  157. depends on CLK
  158. help
  159. Support for the clock driver of the MPC83xx series of SoCs.
  160. config SANDBOX_CLK_CCF
  161. bool "Sandbox Common Clock Framework [CCF] support "
  162. depends on SANDBOX
  163. select CLK_CCF
  164. help
  165. Enable this option if you want to test the Linux kernel's Common
  166. Clock Framework [CCF] code in U-Boot's Sandbox clock driver.
  167. endmenu