Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. select STMP_DEVICE
  27. help
  28. Generic PWM framework driver for Freescale MXS.
  29. To compile this driver as a module, choose M here: the module
  30. will be called pwm-mxs.
  31. config PWM_PXA
  32. tristate "PXA PWM support"
  33. depends on ARCH_PXA
  34. help
  35. Generic PWM framework driver for PXA.
  36. To compile this driver as a module, choose M here: the module
  37. will be called pwm-pxa.
  38. config PWM_SAMSUNG
  39. tristate "Samsung pwm support"
  40. depends on PLAT_SAMSUNG
  41. help
  42. Generic PWM framework driver for Samsung.
  43. To compile this driver as a module, choose M here: the module
  44. will be called pwm-samsung.
  45. config PWM_TEGRA
  46. tristate "NVIDIA Tegra PWM support"
  47. depends on ARCH_TEGRA
  48. help
  49. Generic PWM framework driver for the PWFM controller found on NVIDIA
  50. Tegra SoCs.
  51. To compile this driver as a module, choose M here: the module
  52. will be called pwm-tegra.
  53. config PWM_VT8500
  54. tristate "vt8500 pwm support"
  55. depends on ARCH_VT8500
  56. help
  57. Generic PWM framework driver for vt8500.
  58. To compile this driver as a module, choose M here: the module
  59. will be called pwm-vt8500.
  60. endif