Kconfig 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. menuconfig PWM
  2. bool "PWM Support"
  3. help
  4. This enables PWM support through the generic PWM framework.
  5. You only need to enable this, if you also want to enable
  6. one or more of the PWM drivers below.
  7. If unsure, say N.
  8. if PWM
  9. config PWM_BFIN
  10. tristate "Blackfin PWM support"
  11. depends on BFIN_GPTIMERS
  12. help
  13. Generic PWM framework driver for Blackfin.
  14. To compile this driver as a module, choose M here: the module
  15. will be called pwm-bfin.
  16. config PWM_IMX
  17. tristate "i.MX pwm support"
  18. depends on ARCH_MXC
  19. help
  20. Generic PWM framework driver for i.MX.
  21. To compile this driver as a module, choose M here: the module
  22. will be called pwm-imx.
  23. config PWM_MXS
  24. tristate "Freescale MXS PWM support"
  25. depends on ARCH_MXS && OF
  26. help
  27. Generic PWM framework driver for Freescale MXS.
  28. To compile this driver as a module, choose M here: the module
  29. will be called pwm-mxs.
  30. config PWM_PXA
  31. tristate "PXA PWM support"
  32. depends on ARCH_PXA
  33. help
  34. Generic PWM framework driver for PXA.
  35. To compile this driver as a module, choose M here: the module
  36. will be called pwm-pxa.
  37. config PWM_SAMSUNG
  38. tristate "Samsung pwm support"
  39. depends on PLAT_SAMSUNG
  40. help
  41. Generic PWM framework driver for Samsung.
  42. To compile this driver as a module, choose M here: the module
  43. will be called pwm-samsung.
  44. config PWM_TEGRA
  45. tristate "NVIDIA Tegra PWM support"
  46. depends on ARCH_TEGRA
  47. help
  48. Generic PWM framework driver for the PWFM controller found on NVIDIA
  49. Tegra SoCs.
  50. To compile this driver as a module, choose M here: the module
  51. will be called pwm-tegra.
  52. config PWM_VT8500
  53. tristate "vt8500 pwm support"
  54. depends on ARCH_VT8500
  55. help
  56. Generic PWM framework driver for vt8500.
  57. To compile this driver as a module, choose M here: the module
  58. will be called pwm-vt8500.
  59. endif