blob: a9a971581108c2d18d489abfa449726e5624587a [file] [log] [blame]
Sascha Hauer0c2498f2011-01-28 09:40:40 +01001menuconfig 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
8 If unsure, say N.
9
10if PWM
11
Thierry Redinga4315e32012-01-02 20:53:50 +010012config PWM_BFIN
13 tristate "Blackfin PWM support"
14 depends on BFIN_GPTIMERS
15 help
16 Generic PWM framework driver for Blackfin.
17
18 To compile this driver as a module, choose M here: the module
19 will be called pwm-bfin.
20
Sascha Hauer29693242012-03-15 10:04:35 +010021config PWM_IMX
22 tristate "i.MX pwm support"
23 depends on ARCH_MXC
24 help
25 Generic PWM framework driver for i.MX.
26
27 To compile this driver as a module, choose M here: the module
28 will be called pwm-imx.
29
Thierry Reding17b2b472012-01-02 21:22:38 +010030config PWM_PXA
31 tristate "PXA PWM support"
32 depends on ARCH_PXA
33 help
34 Generic PWM framework driver for PXA.
35
36 To compile this driver as a module, choose M here: the module
37 will be called pwm-pxa.
38
Thierry Reding0134b932011-12-21 07:47:07 +010039config PWM_TEGRA
40 tristate "NVIDIA Tegra PWM support"
41 depends on ARCH_TEGRA
42 help
43 Generic PWM framework driver for the PWFM controller found on NVIDIA
44 Tegra SoCs.
45
46 To compile this driver as a module, choose M here: the module
47 will be called pwm-tegra.
48
Sascha Hauer0c2498f2011-01-28 09:40:40 +010049endif