Kconfig 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 Microelectronics.
  26. source "drivers/clk/versatile/Kconfig"
  27. config COMMON_CLK_MAX_GEN
  28. bool
  29. config COMMON_CLK_MAX77686
  30. tristate "Clock driver for Maxim 77686 MFD"
  31. depends on MFD_MAX77686
  32. select COMMON_CLK_MAX_GEN
  33. ---help---
  34. This driver supports Maxim 77686 crystal oscillator clock.
  35. config COMMON_CLK_MAX77802
  36. tristate "Clock driver for Maxim 77802 PMIC"
  37. depends on MFD_MAX77686
  38. select COMMON_CLK_MAX_GEN
  39. ---help---
  40. This driver supports Maxim 77802 crystal oscillator clock.
  41. config COMMON_CLK_RK808
  42. tristate "Clock driver for RK808"
  43. depends on MFD_RK808
  44. ---help---
  45. This driver supports RK808 crystal oscillator clock. These
  46. multi-function devices have two fixed-rate oscillators,
  47. clocked at 32KHz each. Clkout1 is always on, Clkout2 can off
  48. by control register.
  49. config COMMON_CLK_SI5351
  50. tristate "Clock driver for SiLabs 5351A/B/C"
  51. depends on I2C
  52. select REGMAP_I2C
  53. select RATIONAL
  54. ---help---
  55. This driver supports Silicon Labs 5351A/B/C programmable clock
  56. generators.
  57. config COMMON_CLK_SI570
  58. tristate "Clock driver for SiLabs 570 and compatible devices"
  59. depends on I2C
  60. depends on OF
  61. select REGMAP_I2C
  62. help
  63. ---help---
  64. This driver supports Silicon Labs 570/571/598/599 programmable
  65. clock generators.
  66. config COMMON_CLK_S2MPS11
  67. tristate "Clock driver for S2MPS1X/S5M8767 MFD"
  68. depends on MFD_SEC_CORE
  69. ---help---
  70. This driver supports S2MPS11/S2MPS14/S5M8767 crystal oscillator
  71. clock. These multi-function devices have two (S2MPS14) or three
  72. (S2MPS11, S5M8767) fixed-rate oscillators, clocked at 32KHz each.
  73. config CLK_TWL6040
  74. tristate "External McPDM functional clock from twl6040"
  75. depends on TWL6040_CORE
  76. ---help---
  77. Enable the external functional clock support on OMAP4+ platforms for
  78. McPDM. McPDM module is using the external bit clock on the McPDM bus
  79. as functional clock.
  80. config COMMON_CLK_AXI_CLKGEN
  81. tristate "AXI clkgen driver"
  82. depends on ARCH_ZYNQ || MICROBLAZE
  83. help
  84. ---help---
  85. Support for the Analog Devices axi-clkgen pcore clock generator for Xilinx
  86. FPGAs. It is commonly used in Analog Devices' reference designs.
  87. config CLK_PPC_CORENET
  88. bool "Clock driver for PowerPC corenet platforms"
  89. depends on PPC_E500MC && OF
  90. ---help---
  91. This adds the clock driver support for Freescale PowerPC corenet
  92. platforms using common clock framework.
  93. config COMMON_CLK_XGENE
  94. bool "Clock driver for APM XGene SoC"
  95. default y
  96. depends on ARM64
  97. ---help---
  98. Sypport for the APM X-Gene SoC reference, PLL, and device clocks.
  99. config COMMON_CLK_KEYSTONE
  100. tristate "Clock drivers for Keystone based SOCs"
  101. depends on ARCH_KEYSTONE && OF
  102. ---help---
  103. Supports clock drivers for Keystone based SOCs. These SOCs have local
  104. a power sleep control module that gate the clock to the IPs and PLLs.
  105. config COMMON_CLK_PALMAS
  106. tristate "Clock driver for TI Palmas devices"
  107. depends on MFD_PALMAS
  108. ---help---
  109. This driver supports TI Palmas devices 32KHz output KG and KG_AUDIO
  110. using common clock framework.
  111. config COMMON_CLK_PXA
  112. def_bool COMMON_CLK && ARCH_PXA
  113. ---help---
  114. Sypport for the Marvell PXA SoC.
  115. source "drivers/clk/qcom/Kconfig"
  116. endmenu
  117. source "drivers/clk/bcm/Kconfig"
  118. source "drivers/clk/mvebu/Kconfig"
  119. source "drivers/clk/samsung/Kconfig"