Kconfig 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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 CLK_STM32F
  44. bool "Enable clock driver support for STM32F family"
  45. depends on CLK && (STM32F7 || STM32F4)
  46. default y
  47. help
  48. This clock driver adds support for RCC clock management
  49. for STM32F4 and STM32F7 SoCs.
  50. config CLK_TI_SCI
  51. bool "TI System Control Interface (TI SCI) clock driver"
  52. depends on CLK && TI_SCI_PROTOCOL && OF_CONTROL
  53. help
  54. This enables the clock driver support over TI System Control Interface
  55. available on some new TI's SoCs. If you wish to use clock resources
  56. managed by the TI System Controller, say Y here. Otherwise, say N.
  57. config CLK_HSDK
  58. bool "Enable cgu clock driver for HSDK"
  59. depends on CLK
  60. help
  61. Enable this to support the cgu clocks on Synopsys ARC HSDK
  62. config CLK_VEXPRESS_OSC
  63. bool "Enable driver for Arm Versatile Express OSC clock generators"
  64. depends on CLK && VEXPRESS_CONFIG
  65. help
  66. This clock driver adds support for clock generators present on
  67. Arm Versatile Express platforms.
  68. config CLK_ZYNQ
  69. bool "Enable clock driver support for Zynq"
  70. depends on CLK && ARCH_ZYNQ
  71. default y
  72. help
  73. This clock driver adds support for clock realted settings for
  74. Zynq platform.
  75. config CLK_ZYNQMP
  76. bool "Enable clock driver support for ZynqMP"
  77. depends on ARCH_ZYNQMP
  78. help
  79. This clock driver adds support for clock realted settings for
  80. ZynqMP platform.
  81. config CLK_STM32MP1
  82. bool "Enable RCC clock driver for STM32MP1"
  83. depends on ARCH_STM32MP && CLK
  84. default y
  85. help
  86. Enable the STM32 clock (RCC) driver. Enable support for
  87. manipulating STM32MP1's on-SoC clocks.
  88. source "drivers/clk/at91/Kconfig"
  89. source "drivers/clk/exynos/Kconfig"
  90. source "drivers/clk/imx/Kconfig"
  91. source "drivers/clk/mvebu/Kconfig"
  92. source "drivers/clk/owl/Kconfig"
  93. source "drivers/clk/renesas/Kconfig"
  94. source "drivers/clk/tegra/Kconfig"
  95. source "drivers/clk/uniphier/Kconfig"
  96. config ICS8N3QV01
  97. bool "Enable ICS8N3QV01 VCXO driver"
  98. depends on CLK
  99. help
  100. Support for the ICS8N3QV01 Quad-Frequency VCXO (Voltage-Controlled
  101. Crystal Oscillator). The output frequency can be programmed via an
  102. I2C interface.
  103. config CLK_MPC83XX
  104. bool "Enable MPC83xx clock driver"
  105. depends on CLK
  106. help
  107. Support for the clock driver of the MPC83xx series of SoCs.
  108. endmenu