xref: /openbmc/linux/drivers/pwm/Kconfig (revision a3f37a10)
10c2498f1SSascha Hauermenuconfig PWM
2b817bf5cSThierry Reding	bool "Pulse-Width Modulation (PWM) Support"
30c2498f1SSascha Hauer	help
4b817bf5cSThierry Reding	  Generic Pulse-Width Modulation (PWM) support.
50c2498f1SSascha Hauer
6b817bf5cSThierry Reding	  In Pulse-Width Modulation, a variation of the width of pulses
7b817bf5cSThierry Reding	  in a rectangular pulse signal is used as a means to alter the
8b817bf5cSThierry Reding	  average power of the signal. Applications include efficient
9b817bf5cSThierry Reding	  power delivery and voltage regulation. In computer systems,
10b817bf5cSThierry Reding	  PWMs are commonly used to control fans or the brightness of
11b817bf5cSThierry Reding	  display backlights.
12b817bf5cSThierry Reding
13b817bf5cSThierry Reding	  This framework provides a generic interface to PWM devices
14b817bf5cSThierry Reding	  within the Linux kernel. On the driver side it provides an API
15b817bf5cSThierry Reding	  to register and unregister a PWM chip, an abstraction of a PWM
16b817bf5cSThierry Reding	  controller, that supports one or more PWM devices. Client
17b817bf5cSThierry Reding	  drivers can request PWM devices and use the generic framework
18b817bf5cSThierry Reding	  to configure as well as enable and disable them.
19b817bf5cSThierry Reding
20b817bf5cSThierry Reding	  This generic framework replaces the legacy PWM framework which
21b817bf5cSThierry Reding	  allows only a single driver implementing the required API. Not
22b817bf5cSThierry Reding	  all legacy implementations have been ported to the framework
23b817bf5cSThierry Reding	  yet. The framework provides an API that is backward compatible
24b817bf5cSThierry Reding	  with the legacy framework so that existing client drivers
25b817bf5cSThierry Reding	  continue to work as expected.
26b817bf5cSThierry Reding
27b817bf5cSThierry Reding	  If unsure, say no.
280c2498f1SSascha Hauer
290c2498f1SSascha Hauerif PWM
300c2498f1SSascha Hauer
3176abbddeSH Hartley Sweetenconfig PWM_SYSFS
3276abbddeSH Hartley Sweeten	bool
3376abbddeSH Hartley Sweeten	default y if SYSFS
3476abbddeSH Hartley Sweeten
356173f8f4SThierry Redingconfig PWM_AB8500
366173f8f4SThierry Reding	tristate "AB8500 PWM support"
376173f8f4SThierry Reding	depends on AB8500_CORE && ARCH_U8500
386173f8f4SThierry Reding	help
396173f8f4SThierry Reding	  Generic PWM framework driver for Analog Baseband AB8500.
406173f8f4SThierry Reding
416173f8f4SThierry Reding	  To compile this driver as a module, choose M here: the module
426173f8f4SThierry Reding	  will be called pwm-ab8500.
436173f8f4SThierry Reding
4432b16d46SBo Shenconfig PWM_ATMEL
4532b16d46SBo Shen	tristate "Atmel PWM support"
46bb4bbbaaSAlexandre Belloni	depends on ARCH_AT91 || AVR32
4732b16d46SBo Shen	help
4832b16d46SBo Shen	  Generic PWM framework driver for Atmel SoC.
4932b16d46SBo Shen
5032b16d46SBo Shen	  To compile this driver as a module, choose M here: the module
5132b16d46SBo Shen	  will be called pwm-atmel.
5232b16d46SBo Shen
532b4984beSBoris Brezillonconfig PWM_ATMEL_HLCDC_PWM
542b4984beSBoris Brezillon	tristate "Atmel HLCDC PWM support"
552b4984beSBoris Brezillon	depends on MFD_ATMEL_HLCDC
56d2048c49SThierry Reding	depends on HAVE_CLK
572b4984beSBoris Brezillon	help
582b4984beSBoris Brezillon	  Generic PWM framework driver for the PWM output of the HLCDC
592b4984beSBoris Brezillon	  (Atmel High-end LCD Controller). This PWM output is mainly used
602b4984beSBoris Brezillon	  to control the LCD backlight.
612b4984beSBoris Brezillon
622b4984beSBoris Brezillon	  To compile this driver as a module, choose M here: the module
632b4984beSBoris Brezillon	  will be called pwm-atmel-hlcdc.
642b4984beSBoris Brezillon
659421badeSBoris BREZILLONconfig PWM_ATMEL_TCB
66b133d2a1SThierry Reding	tristate "Atmel TC Block PWM support"
679421badeSBoris BREZILLON	depends on ATMEL_TCLIB && OF
689421badeSBoris BREZILLON	help
699421badeSBoris BREZILLON	  Generic PWM framework driver for Atmel Timer Counter Block.
709421badeSBoris BREZILLON
719421badeSBoris BREZILLON	  A Timer Counter Block provides 6 PWM devices grouped by 2.
729421badeSBoris BREZILLON	  Devices in a given group must have the same period.
739421badeSBoris BREZILLON
749421badeSBoris BREZILLON	  To compile this driver as a module, choose M here: the module
759421badeSBoris BREZILLON	  will be called pwm-atmel-tcb.
769421badeSBoris BREZILLON
776a4e4bffSTim Krygerconfig PWM_BCM_KONA
786a4e4bffSTim Kryger	tristate "Kona PWM support"
796a4e4bffSTim Kryger	depends on ARCH_BCM_MOBILE
806a4e4bffSTim Kryger	help
816a4e4bffSTim Kryger	  Generic PWM framework driver for Broadcom Kona PWM block.
826a4e4bffSTim Kryger
836a4e4bffSTim Kryger	  To compile this driver as a module, choose M here: the module
846a4e4bffSTim Kryger	  will be called pwm-bcm-kona.
856a4e4bffSTim Kryger
86e5a06dc5SBart Tangheconfig PWM_BCM2835
87e5a06dc5SBart Tanghe	tristate "BCM2835 PWM support"
88e5a06dc5SBart Tanghe	depends on ARCH_BCM2835
89e5a06dc5SBart Tanghe	help
90e5a06dc5SBart Tanghe	  PWM framework driver for BCM2835 controller (Raspberry Pi)
91e5a06dc5SBart Tanghe
92e5a06dc5SBart Tanghe	  To compile this driver as a module, choose M here: the module
93e5a06dc5SBart Tanghe	  will be called pwm-bcm2835.
94e5a06dc5SBart Tanghe
95a4315e3cSThierry Redingconfig PWM_BFIN
96a4315e3cSThierry Reding	tristate "Blackfin PWM support"
97a4315e3cSThierry Reding	depends on BFIN_GPTIMERS
98a4315e3cSThierry Reding	help
99a4315e3cSThierry Reding	  Generic PWM framework driver for Blackfin.
100a4315e3cSThierry Reding
101a4315e3cSThierry Reding	  To compile this driver as a module, choose M here: the module
102a4315e3cSThierry Reding	  will be called pwm-bfin.
103a4315e3cSThierry Reding
1047eb3f6ffSAlexander Shiyanconfig PWM_CLPS711X
1057eb3f6ffSAlexander Shiyan	tristate "CLPS711X PWM support"
1067eb3f6ffSAlexander Shiyan	depends on ARCH_CLPS711X || COMPILE_TEST
107dec02f98SChen Gang	depends on HAS_IOMEM
1087eb3f6ffSAlexander Shiyan	help
1097eb3f6ffSAlexander Shiyan	  Generic PWM framework driver for Cirrus Logic CLPS711X.
1107eb3f6ffSAlexander Shiyan
1117eb3f6ffSAlexander Shiyan	  To compile this driver as a module, choose M here: the module
1127eb3f6ffSAlexander Shiyan	  will be called pwm-clps711x.
1137eb3f6ffSAlexander Shiyan
114*a3f37a10SShobhit Kumarconfig PWM_CRC
115*a3f37a10SShobhit Kumar	bool "Intel Crystalcove (CRC) PWM support"
116*a3f37a10SShobhit Kumar	depends on X86 && INTEL_SOC_PMIC
117*a3f37a10SShobhit Kumar	help
118*a3f37a10SShobhit Kumar	  Generic PWM framework driver for Crystalcove (CRC) PMIC based PWM
119*a3f37a10SShobhit Kumar	  control.
120*a3f37a10SShobhit Kumar
121a2308698SH Hartley Sweetenconfig PWM_EP93XX
122a2308698SH Hartley Sweeten	tristate "Cirrus Logic EP93xx PWM support"
123a2308698SH Hartley Sweeten	depends on ARCH_EP93XX
124a2308698SH Hartley Sweeten	help
125a2308698SH Hartley Sweeten	  Generic PWM framework driver for Cirrus Logic EP93xx.
126a2308698SH Hartley Sweeten
127a2308698SH Hartley Sweeten	  To compile this driver as a module, choose M here: the module
128a2308698SH Hartley Sweeten	  will be called pwm-ep93xx.
129a2308698SH Hartley Sweeten
130b505183bSXiubo Liconfig PWM_FSL_FTM
131b505183bSXiubo Li	tristate "Freescale FlexTimer Module (FTM) PWM support"
132b505183bSXiubo Li	depends on OF
13300018a8aSFabio Estevam	select REGMAP_MMIO
134b505183bSXiubo Li	help
135b505183bSXiubo Li	  Generic FTM PWM framework driver for Freescale VF610 and
136b505183bSXiubo Li	  Layerscape LS-1 SoCs.
137b505183bSXiubo Li
138b505183bSXiubo Li	  To compile this driver as a module, choose M here: the module
139b505183bSXiubo Li	  will be called pwm-fsl-ftm.
140b505183bSXiubo Li
141277bb6a2SNaidu Tellapaticonfig PWM_IMG
142277bb6a2SNaidu Tellapati	tristate "Imagination Technologies PWM driver"
143277bb6a2SNaidu Tellapati	depends on HAS_IOMEM
144277bb6a2SNaidu Tellapati	depends on MFD_SYSCON
145277bb6a2SNaidu Tellapati	depends on COMMON_CLK
146277bb6a2SNaidu Tellapati	depends on MIPS || COMPILE_TEST
147277bb6a2SNaidu Tellapati	help
148277bb6a2SNaidu Tellapati	  Generic PWM framework driver for Imagination Technologies
149277bb6a2SNaidu Tellapati	  PWM block which supports 4 channels.
150277bb6a2SNaidu Tellapati
151277bb6a2SNaidu Tellapati	  To compile this driver as a module, choose M here: the module
152277bb6a2SNaidu Tellapati	  will be called pwm-img
153277bb6a2SNaidu Tellapati
15429693248SSascha Hauerconfig PWM_IMX
155b133d2a1SThierry Reding	tristate "i.MX PWM support"
15629693248SSascha Hauer	depends on ARCH_MXC
15729693248SSascha Hauer	help
15829693248SSascha Hauer	  Generic PWM framework driver for i.MX.
15929693248SSascha Hauer
16029693248SSascha Hauer	  To compile this driver as a module, choose M here: the module
16129693248SSascha Hauer	  will be called pwm-imx.
16229693248SSascha Hauer
163f6b8a570SThierry Redingconfig PWM_JZ4740
164f6b8a570SThierry Reding	tristate "Ingenic JZ4740 PWM support"
165f6b8a570SThierry Reding	depends on MACH_JZ4740
166f6b8a570SThierry Reding	help
167f6b8a570SThierry Reding	  Generic PWM framework driver for Ingenic JZ4740 based
168f6b8a570SThierry Reding	  machines.
169f6b8a570SThierry Reding
170f6b8a570SThierry Reding	  To compile this driver as a module, choose M here: the module
171f6b8a570SThierry Reding	  will be called pwm-jz4740.
172f6b8a570SThierry Reding
173af66b3c0SMilo Kimconfig PWM_LP3943
174af66b3c0SMilo Kim	tristate "TI/National Semiconductor LP3943 PWM support"
175af66b3c0SMilo Kim	depends on MFD_LP3943
176af66b3c0SMilo Kim	help
177af66b3c0SMilo Kim	  Generic PWM framework driver for LP3943 which supports two PWM
178af66b3c0SMilo Kim	  channels.
179af66b3c0SMilo Kim
180af66b3c0SMilo Kim	  To compile this driver as a module, choose M here: the module
181af66b3c0SMilo Kim	  will be called pwm-lp3943.
182af66b3c0SMilo Kim
1832132fa8dSAlexandre Pereira da Silvaconfig PWM_LPC32XX
1842132fa8dSAlexandre Pereira da Silva	tristate "LPC32XX PWM support"
1852132fa8dSAlexandre Pereira da Silva	depends on ARCH_LPC32XX
1862132fa8dSAlexandre Pereira da Silva	help
1872132fa8dSAlexandre Pereira da Silva	  Generic PWM framework driver for LPC32XX. The LPC32XX SOC has two
1882132fa8dSAlexandre Pereira da Silva	  PWM controllers.
1892132fa8dSAlexandre Pereira da Silva
1902132fa8dSAlexandre Pereira da Silva	  To compile this driver as a module, choose M here: the module
1912132fa8dSAlexandre Pereira da Silva	  will be called pwm-lpc32xx.
1922132fa8dSAlexandre Pereira da Silva
193d16a5aa9SMika Westerbergconfig PWM_LPSS
194d16a5aa9SMika Westerberg	tristate "Intel LPSS PWM support"
195ad16202dSAndy Shevchenko	depends on X86
196d16a5aa9SMika Westerberg	help
197d16a5aa9SMika Westerberg	  Generic PWM framework driver for Intel Low Power Subsystem PWM
198d16a5aa9SMika Westerberg	  controller.
199d16a5aa9SMika Westerberg
200d16a5aa9SMika Westerberg	  To compile this driver as a module, choose M here: the module
201d16a5aa9SMika Westerberg	  will be called pwm-lpss.
202d16a5aa9SMika Westerberg
203c558e39eSAndy Shevchenkoconfig PWM_LPSS_PCI
204c558e39eSAndy Shevchenko	tristate "Intel LPSS PWM PCI driver"
205c558e39eSAndy Shevchenko	depends on PWM_LPSS && PCI
206c558e39eSAndy Shevchenko	help
207c558e39eSAndy Shevchenko	  The PCI driver for Intel Low Power Subsystem PWM controller.
208c558e39eSAndy Shevchenko
209c558e39eSAndy Shevchenko	  To compile this driver as a module, choose M here: the module
210c558e39eSAndy Shevchenko	  will be called pwm-lpss-pci.
211c558e39eSAndy Shevchenko
212c558e39eSAndy Shevchenkoconfig PWM_LPSS_PLATFORM
213c558e39eSAndy Shevchenko	tristate "Intel LPSS PWM platform driver"
214c558e39eSAndy Shevchenko	depends on PWM_LPSS && ACPI
215c558e39eSAndy Shevchenko	help
216c558e39eSAndy Shevchenko	  The platform driver for Intel Low Power Subsystem PWM controller.
217c558e39eSAndy Shevchenko
218c558e39eSAndy Shevchenko	  To compile this driver as a module, choose M here: the module
219c558e39eSAndy Shevchenko	  will be called pwm-lpss-platform.
220c558e39eSAndy Shevchenko
2214dce82c1SShawn Guoconfig PWM_MXS
2224dce82c1SShawn Guo	tristate "Freescale MXS PWM support"
2234dce82c1SShawn Guo	depends on ARCH_MXS && OF
22401bf32e9SShawn Guo	select STMP_DEVICE
2254dce82c1SShawn Guo	help
2264dce82c1SShawn Guo	  Generic PWM framework driver for Freescale MXS.
2274dce82c1SShawn Guo
2284dce82c1SShawn Guo	  To compile this driver as a module, choose M here: the module
2294dce82c1SShawn Guo	  will be called pwm-mxs.
2304dce82c1SShawn Guo
23188b613e6SSteffen Trumtrarconfig PWM_PCA9685
23288b613e6SSteffen Trumtrar	tristate "NXP PCA9685 PWM driver"
2332c80a492SAxel Lin	depends on OF && I2C
2342c80a492SAxel Lin	select REGMAP_I2C
23588b613e6SSteffen Trumtrar	help
23688b613e6SSteffen Trumtrar	  Generic PWM framework driver for NXP PCA9685 LED controller.
23788b613e6SSteffen Trumtrar
23888b613e6SSteffen Trumtrar	  To compile this driver as a module, choose M here: the module
23988b613e6SSteffen Trumtrar	  will be called pwm-pca9685.
24088b613e6SSteffen Trumtrar
24179c11b6fSThierry Redingconfig PWM_PUV3
24279c11b6fSThierry Reding	tristate "PKUnity NetBook-0916 PWM support"
24379c11b6fSThierry Reding	depends on ARCH_PUV3
24479c11b6fSThierry Reding	help
24579c11b6fSThierry Reding	  Generic PWM framework driver for PKUnity NetBook-0916.
24679c11b6fSThierry Reding
24779c11b6fSThierry Reding	  To compile this driver as a module, choose M here: the module
24879c11b6fSThierry Reding	  will be called pwm-puv3.
24979c11b6fSThierry Reding
25017b2b478SThierry Redingconfig PWM_PXA
25117b2b478SThierry Reding	tristate "PXA PWM support"
25217b2b478SThierry Reding	depends on ARCH_PXA
25317b2b478SThierry Reding	help
25417b2b478SThierry Reding	  Generic PWM framework driver for PXA.
25517b2b478SThierry Reding
25617b2b478SThierry Reding	  To compile this driver as a module, choose M here: the module
25717b2b478SThierry Reding	  will be called pwm-pxa.
25817b2b478SThierry Reding
25999b82abbSLaurent Pinchartconfig PWM_RENESAS_TPU
26099b82abbSLaurent Pinchart	tristate "Renesas TPU PWM support"
26194d88d63SLaurent Pinchart	depends on ARCH_SHMOBILE || COMPILE_TEST
2622974b098SRichard Weinberger	depends on HAS_IOMEM
26399b82abbSLaurent Pinchart	help
26499b82abbSLaurent Pinchart	  This driver exposes the Timer Pulse Unit (TPU) PWM controller found
26599b82abbSLaurent Pinchart	  in Renesas chips through the PWM API.
26699b82abbSLaurent Pinchart
26799b82abbSLaurent Pinchart	  To compile this driver as a module, choose M here: the module
26899b82abbSLaurent Pinchart	  will be called pwm-renesas-tpu.
26999b82abbSLaurent Pinchart
270101353c8SBeniamino Galvaniconfig PWM_ROCKCHIP
271101353c8SBeniamino Galvani	tristate "Rockchip PWM support"
272101353c8SBeniamino Galvani	depends on ARCH_ROCKCHIP
273101353c8SBeniamino Galvani	help
274101353c8SBeniamino Galvani	  Generic PWM framework driver for the PWM controller found on
275101353c8SBeniamino Galvani	  Rockchip SoCs.
276101353c8SBeniamino Galvani
277215c29d3SSascha Hauerconfig PWM_SAMSUNG
278b133d2a1SThierry Reding	tristate "Samsung PWM support"
27906e4cb6bSAbhilash Kesavan	depends on PLAT_SAMSUNG || ARCH_EXYNOS
280215c29d3SSascha Hauer	help
281215c29d3SSascha Hauer	  Generic PWM framework driver for Samsung.
282215c29d3SSascha Hauer
283215c29d3SSascha Hauer	  To compile this driver as a module, choose M here: the module
284215c29d3SSascha Hauer	  will be called pwm-samsung.
285215c29d3SSascha Hauer
286ce20364bSShiraz Hashimconfig PWM_SPEAR
287ce20364bSShiraz Hashim	tristate "STMicroelectronics SPEAr PWM support"
288ce20364bSShiraz Hashim	depends on PLAT_SPEAR
289ce20364bSShiraz Hashim	depends on OF
290ce20364bSShiraz Hashim	help
291ce20364bSShiraz Hashim	  Generic PWM framework driver for the PWM controller on ST
292ce20364bSShiraz Hashim	  SPEAr SoCs.
293ce20364bSShiraz Hashim
294ce20364bSShiraz Hashim	  To compile this driver as a module, choose M here: the module
295ce20364bSShiraz Hashim	  will be called pwm-spear.
296ce20364bSShiraz Hashim
297378fe115SLee Jonesconfig PWM_STI
298378fe115SLee Jones	tristate "STiH4xx PWM support"
299378fe115SLee Jones	depends on ARCH_STI
300378fe115SLee Jones	depends on OF
301378fe115SLee Jones	help
302378fe115SLee Jones	  Generic PWM framework driver for STiH4xx SoCs.
303378fe115SLee Jones
304378fe115SLee Jones	  To compile this driver as a module, choose M here: the module
305378fe115SLee Jones	  will be called pwm-sti.
306378fe115SLee Jones
30709853ce7SAlexandre Belloniconfig PWM_SUN4I
30809853ce7SAlexandre Belloni	tristate "Allwinner PWM support"
30909853ce7SAlexandre Belloni	depends on ARCH_SUNXI || COMPILE_TEST
31009853ce7SAlexandre Belloni	depends on HAS_IOMEM && COMMON_CLK
31109853ce7SAlexandre Belloni	help
31209853ce7SAlexandre Belloni	  Generic PWM framework driver for Allwinner SoCs.
31309853ce7SAlexandre Belloni
31409853ce7SAlexandre Belloni	  To compile this driver as a module, choose M here: the module
31509853ce7SAlexandre Belloni	  will be called pwm-sun4i.
31609853ce7SAlexandre Belloni
3170134b932SThierry Redingconfig PWM_TEGRA
3180134b932SThierry Reding	tristate "NVIDIA Tegra PWM support"
3190134b932SThierry Reding	depends on ARCH_TEGRA
3200134b932SThierry Reding	help
3210134b932SThierry Reding	  Generic PWM framework driver for the PWFM controller found on NVIDIA
3220134b932SThierry Reding	  Tegra SoCs.
3230134b932SThierry Reding
3240134b932SThierry Reding	  To compile this driver as a module, choose M here: the module
3250134b932SThierry Reding	  will be called pwm-tegra.
3260134b932SThierry Reding
3278e0cb05bSPhilip, Avinashconfig  PWM_TIECAP
3288e0cb05bSPhilip, Avinash	tristate "ECAP PWM support"
3291bf0f20bSPhilip Avinash	depends on SOC_AM33XX || ARCH_DAVINCI_DA8XX
3308e0cb05bSPhilip, Avinash	help
3318e0cb05bSPhilip, Avinash	  PWM driver support for the ECAP APWM controller found on AM33XX
3328e0cb05bSPhilip, Avinash	  TI SOC
3338e0cb05bSPhilip, Avinash
3348e0cb05bSPhilip, Avinash	  To compile this driver as a module, choose M here: the module
3358e0cb05bSPhilip, Avinash	  will be called pwm-tiecap.
3368e0cb05bSPhilip, Avinash
33719891b20SPhilip, Avinashconfig  PWM_TIEHRPWM
33819891b20SPhilip, Avinash	tristate "EHRPWM PWM support"
3391bf0f20bSPhilip Avinash	depends on SOC_AM33XX || ARCH_DAVINCI_DA8XX
34019891b20SPhilip, Avinash	help
34119891b20SPhilip, Avinash	  PWM driver support for the EHRPWM controller found on AM33XX
34219891b20SPhilip, Avinash	  TI SOC
34319891b20SPhilip, Avinash
34419891b20SPhilip, Avinash	  To compile this driver as a module, choose M here: the module
34519891b20SPhilip, Avinash	  will be called pwm-tiehrpwm.
34619891b20SPhilip, Avinash
347af0ba001SPhilip, Avinashconfig  PWM_TIPWMSS
348af0ba001SPhilip, Avinash	bool
3491bf0f20bSPhilip Avinash	default y if SOC_AM33XX && (PWM_TIECAP || PWM_TIEHRPWM)
350af0ba001SPhilip, Avinash	help
351af0ba001SPhilip, Avinash	  PWM Subsystem driver support for AM33xx SOC.
352af0ba001SPhilip, Avinash
353af0ba001SPhilip, Avinash	  PWM submodules require PWM config space access from submodule
354af0ba001SPhilip, Avinash	  drivers and require common parent driver support.
355af0ba001SPhilip, Avinash
3563744c263SPeter Ujfalusiconfig PWM_TWL
3573744c263SPeter Ujfalusi	tristate "TWL4030/6030 PWM support"
3583744c263SPeter Ujfalusi	depends on TWL4030_CORE
3593744c263SPeter Ujfalusi	help
3603744c263SPeter Ujfalusi	  Generic PWM framework driver for TWL4030/6030.
3613744c263SPeter Ujfalusi
3623744c263SPeter Ujfalusi	  To compile this driver as a module, choose M here: the module
3633744c263SPeter Ujfalusi	  will be called pwm-twl.
3643744c263SPeter Ujfalusi
365aa765647SPeter Ujfalusiconfig PWM_TWL_LED
366aa765647SPeter Ujfalusi	tristate "TWL4030/6030 PWM support for LED drivers"
367aa765647SPeter Ujfalusi	depends on TWL4030_CORE
368aa765647SPeter Ujfalusi	help
369aa765647SPeter Ujfalusi	  Generic PWM framework driver for TWL4030/6030 LED terminals.
370aa765647SPeter Ujfalusi
371aa765647SPeter Ujfalusi	  To compile this driver as a module, choose M here: the module
372aa765647SPeter Ujfalusi	  will be called pwm-twl-led.
373aa765647SPeter Ujfalusi
374a245ccebSSascha Hauerconfig PWM_VT8500
375b133d2a1SThierry Reding	tristate "vt8500 PWM support"
376a245ccebSSascha Hauer	depends on ARCH_VT8500
377a245ccebSSascha Hauer	help
378a245ccebSSascha Hauer	  Generic PWM framework driver for vt8500.
379a245ccebSSascha Hauer
380a245ccebSSascha Hauer	  To compile this driver as a module, choose M here: the module
381a245ccebSSascha Hauer	  will be called pwm-vt8500.
382a245ccebSSascha Hauer
3830c2498f1SSascha Hauerendif
384