Kconfig 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. config DM_PWM
  2. bool "Enable support for pulse-width modulation devices (PWM)"
  3. depends on DM
  4. help
  5. A pulse-width modulator emits a pulse of varying width and provides
  6. control over the duty cycle (high and low time) of the signal. This
  7. is often used to control a voltage level. The more time the PWM
  8. spends in the 'high' state, the higher the voltage. The PWM's
  9. frequency/period can be controlled along with the proportion of that
  10. time that the signal is high.
  11. config PWM_EXYNOS
  12. bool "Enable support for the Exynos PWM"
  13. depends on DM_PWM
  14. help
  15. This PWM is found on Samsung Exynos 5250 and other Samsung SoCs. It
  16. supports a programmable period and duty cycle. A 32-bit counter is
  17. used. It provides 5 channels which can be independently
  18. programmed. Channel 4 (the last) is normally used as a timer.
  19. config PWM_IMX
  20. bool "Enable support for i.MX27 and later PWM"
  21. help
  22. This PWM is found i.MX27 and later i.MX SoCs.
  23. config PWM_MESON
  24. bool "Enable support for Amlogic Meson SoCs PWM"
  25. depends on DM_PWM
  26. help
  27. This PWM is found on Amlogic Meson SoCs. It supports a
  28. programmable period and duty cycle for 2 independant channels.
  29. config PWM_MTK
  30. bool "Enable support for MediaTek PWM"
  31. depends on DM_PWM
  32. help
  33. This PWM is found on MT7622, MT7623, and MT7629. It supports a
  34. programmable period and duty cycle.
  35. config PWM_ROCKCHIP
  36. bool "Enable support for the Rockchip PWM"
  37. depends on DM_PWM
  38. help
  39. This PWM is found on RK3288 and other Rockchip SoCs. It supports a
  40. programmable period and duty cycle. A 32-bit counter is used.
  41. Various options provided in the hardware (such as capture mode and
  42. continuous/single-shot) are not supported by the driver.
  43. config PWM_SANDBOX
  44. bool "Enable support for the sandbox PWM"
  45. help
  46. This is a sandbox PWM used for testing. It provides 3 channels and
  47. records the settings passed into it, but otherwise does nothing
  48. useful. The PWM can be enabled but is not connected to any outputs
  49. so this is not very useful.
  50. config PWM_SIFIVE
  51. bool "Enable support for SiFive PWM"
  52. depends on DM_PWM
  53. help
  54. This PWM is found SiFive's FU540 and other SoCs.
  55. config PWM_TEGRA
  56. bool "Enable support for the Tegra PWM"
  57. depends on DM_PWM
  58. help
  59. This PWM is found on Tegra 20 and other Nvidia SoCs. It supports
  60. four channels with a programmable period and duty cycle. Only a
  61. 32KHz clock is supported by the driver but the duty cycle is
  62. configurable.
  63. config PWM_SUNXI
  64. bool "Enable support for the Allwinner Sunxi PWM"
  65. depends on DM_PWM
  66. help
  67. This PWM is found on H3, A64 and other Allwinner SoCs. It supports a
  68. programmable period and duty cycle. A 16-bit counter is used.