Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. depends on COMMON_CLK
  23. select DEBUG_FS
  24. ---help---
  25. Creates a directory hierchy in debugfs for visualizing the clk
  26. tree structure. Each directory contains read-only members
  27. that export information specific to that clk node: clk_rate,
  28. clk_flags, clk_prepare_count, clk_enable_count &
  29. clk_notifier_count.
  30. config COMMON_CLK_WM831X
  31. tristate "Clock driver for WM831x/2x PMICs"
  32. depends on MFD_WM831X
  33. ---help---
  34. Supports the clocking subsystem of the WM831x/2x series of
  35. PMICs from Wolfson Microlectronics.
  36. endmenu