Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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_TEGRA
  31. tristate "NVIDIA Tegra PWM support"
  32. depends on ARCH_TEGRA
  33. help
  34. Generic PWM framework driver for the PWFM controller found on NVIDIA
  35. Tegra SoCs.
  36. To compile this driver as a module, choose M here: the module
  37. will be called pwm-tegra.
  38. endif