Kconfig 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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_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_ZYNQ
  44. bool "Enable clock driver support for Zynq"
  45. depends on CLK && ARCH_ZYNQ
  46. default y
  47. help
  48. This clock driver adds support for clock realted settings for
  49. Zynq platform.
  50. config CLK_ZYNQMP
  51. bool "Enable clock driver support for ZynqMP"
  52. depends on ARCH_ZYNQMP
  53. help
  54. This clock driver adds support for clock realted settings for
  55. ZynqMP platform.
  56. source "drivers/clk/tegra/Kconfig"
  57. source "drivers/clk/uniphier/Kconfig"
  58. source "drivers/clk/exynos/Kconfig"
  59. source "drivers/clk/at91/Kconfig"
  60. source "drivers/clk/renesas/Kconfig"
  61. endmenu