Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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_PXA
  24. tristate "PXA PWM support"
  25. depends on ARCH_PXA
  26. help
  27. Generic PWM framework driver for PXA.
  28. To compile this driver as a module, choose M here: the module
  29. will be called pwm-pxa.
  30. config PWM_SAMSUNG
  31. tristate "Samsung pwm support"
  32. depends on PLAT_SAMSUNG
  33. help
  34. Generic PWM framework driver for Samsung.
  35. To compile this driver as a module, choose M here: the module
  36. will be called pwm-samsung.
  37. config PWM_TEGRA
  38. tristate "NVIDIA Tegra PWM support"
  39. depends on ARCH_TEGRA
  40. help
  41. Generic PWM framework driver for the PWFM controller found on NVIDIA
  42. Tegra SoCs.
  43. To compile this driver as a module, choose M here: the module
  44. will be called pwm-tegra.
  45. endif