Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. config CLKDEV_LOOKUP
  2. bool
  3. select HAVE_CLK
  4. config HAVE_CLK_PREPARE
  5. bool
  6. config HAVE_MACH_CLKDEV
  7. bool
  8. config COMMON_CLK
  9. bool
  10. select HAVE_CLK_PREPARE
  11. select CLKDEV_LOOKUP
  12. ---help---
  13. The common clock framework is a single definition of struct
  14. clk, useful across many platforms, as well as an
  15. implementation of the clock API in include/linux/clk.h.
  16. Architectures utilizing the common struct clk should select
  17. this option.
  18. menu "Common Clock Framework"
  19. depends on COMMON_CLK
  20. config COMMON_CLK_WM831X
  21. tristate "Clock driver for WM831x/2x PMICs"
  22. depends on MFD_WM831X
  23. ---help---
  24. Supports the clocking subsystem of the WM831x/2x series of
  25. PMICs from Wolfson Microlectronics.
  26. config COMMON_CLK_VERSATILE
  27. bool "Clock driver for ARM Reference designs"
  28. depends on ARCH_INTEGRATOR || ARCH_REALVIEW || ARCH_VEXPRESS || ARM64
  29. ---help---
  30. Supports clocking on ARM Reference designs:
  31. - Integrator/AP and Integrator/CP
  32. - RealView PB1176, EB, PB11MP and PBX
  33. - Versatile Express
  34. config COMMON_CLK_MAX77686
  35. tristate "Clock driver for Maxim 77686 MFD"
  36. depends on MFD_MAX77686
  37. ---help---
  38. This driver supports Maxim 77686 crystal oscillator clock.
  39. config COMMON_CLK_SI5351
  40. tristate "Clock driver for SiLabs 5351A/B/C"
  41. depends on I2C
  42. select REGMAP_I2C
  43. select RATIONAL
  44. ---help---
  45. This driver supports Silicon Labs 5351A/B/C programmable clock
  46. generators.
  47. config COMMON_CLK_SI570
  48. tristate "Clock driver for SiLabs 570 and compatible devices"
  49. depends on I2C
  50. depends on OF
  51. select REGMAP_I2C
  52. help
  53. ---help---
  54. This driver supports Silicon Labs 570/571/598/599 programmable
  55. clock generators.
  56. config COMMON_CLK_S2MPS11
  57. tristate "Clock driver for S2MPS11/S5M8767 MFD"
  58. depends on MFD_SEC_CORE
  59. ---help---
  60. This driver supports S2MPS11/S5M8767 crystal oscillator clock. These
  61. multi-function devices have 3 fixed-rate oscillators, clocked at
  62. 32KHz each.
  63. config CLK_TWL6040
  64. tristate "External McPDM functional clock from twl6040"
  65. depends on TWL6040_CORE
  66. ---help---
  67. Enable the external functional clock support on OMAP4+ platforms for
  68. McPDM. McPDM module is using the external bit clock on the McPDM bus
  69. as functional clock.
  70. config COMMON_CLK_AXI_CLKGEN
  71. tristate "AXI clkgen driver"
  72. depends on ARCH_ZYNQ || MICROBLAZE
  73. help
  74. ---help---
  75. Support for the Analog Devices axi-clkgen pcore clock generator for Xilinx
  76. FPGAs. It is commonly used in Analog Devices' reference designs.
  77. config CLK_PPC_CORENET
  78. bool "Clock driver for PowerPC corenet platforms"
  79. depends on PPC_E500MC && OF
  80. ---help---
  81. This adds the clock driver support for Freescale PowerPC corenet
  82. platforms using common clock framework.
  83. config COMMON_CLK_XGENE
  84. bool "Clock driver for APM XGene SoC"
  85. default y
  86. depends on ARM64
  87. ---help---
  88. Sypport for the APM X-Gene SoC reference, PLL, and device clocks.
  89. config COMMON_CLK_KEYSTONE
  90. tristate "Clock drivers for Keystone based SOCs"
  91. depends on ARCH_KEYSTONE && OF
  92. ---help---
  93. Supports clock drivers for Keystone based SOCs. These SOCs have local
  94. a power sleep control module that gate the clock to the IPs and PLLs.
  95. source "drivers/clk/qcom/Kconfig"
  96. endmenu
  97. source "drivers/clk/bcm/Kconfig"
  98. source "drivers/clk/mvebu/Kconfig"