Kconfig 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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_DEBUG
  21. bool "DebugFS representation of clock tree"
  22. select DEBUG_FS
  23. ---help---
  24. Creates a directory hierarchy in debugfs for visualizing the clk
  25. tree structure. Each directory contains read-only members
  26. that export information specific to that clk node: clk_rate,
  27. clk_flags, clk_prepare_count, clk_enable_count &
  28. clk_notifier_count.
  29. config COMMON_CLK_WM831X
  30. tristate "Clock driver for WM831x/2x PMICs"
  31. depends on MFD_WM831X
  32. ---help---
  33. Supports the clocking subsystem of the WM831x/2x series of
  34. PMICs from Wolfson Microlectronics.
  35. config COMMON_CLK_VERSATILE
  36. bool "Clock driver for ARM Reference designs"
  37. depends on ARCH_INTEGRATOR || ARCH_REALVIEW || ARCH_VEXPRESS || ARM64
  38. ---help---
  39. Supports clocking on ARM Reference designs:
  40. - Integrator/AP and Integrator/CP
  41. - RealView PB1176, EB, PB11MP and PBX
  42. - Versatile Express
  43. config COMMON_CLK_MAX77686
  44. tristate "Clock driver for Maxim 77686 MFD"
  45. depends on MFD_MAX77686
  46. ---help---
  47. This driver supports Maxim 77686 crystal oscillator clock.
  48. config COMMON_CLK_SI5351
  49. tristate "Clock driver for SiLabs 5351A/B/C"
  50. depends on I2C
  51. select REGMAP_I2C
  52. select RATIONAL
  53. ---help---
  54. This driver supports Silicon Labs 5351A/B/C programmable clock
  55. generators.
  56. config COMMON_CLK_S2MPS11
  57. tristate "Clock driver for S2MPS11 MFD"
  58. depends on MFD_SEC_CORE
  59. ---help---
  60. This driver supports S2MPS11 crystal oscillator clock.
  61. config CLK_TWL6040
  62. tristate "External McPDM functional clock from twl6040"
  63. depends on TWL6040_CORE
  64. ---help---
  65. Enable the external functional clock support on OMAP4+ platforms for
  66. McPDM. McPDM module is using the external bit clock on the McPDM bus
  67. as functional clock.
  68. config COMMON_CLK_AXI_CLKGEN
  69. tristate "AXI clkgen driver"
  70. depends on ARCH_ZYNQ || MICROBLAZE
  71. help
  72. ---help---
  73. Support for the Analog Devices axi-clkgen pcore clock generator for Xilinx
  74. FPGAs. It is commonly used in Analog Devices' reference designs.
  75. config CLK_PPC_CORENET
  76. bool "Clock driver for PowerPC corenet platforms"
  77. depends on PPC_E500MC && OF
  78. ---help---
  79. This adds the clock driver support for Freescale PowerPC corenet
  80. platforms using common clock framework.
  81. endmenu
  82. source "drivers/clk/mvebu/Kconfig"