Kconfig 1.8 KB

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