pwm: Move PXA PWM driver to PWM framework
[linux-block.git] / drivers / pwm / Kconfig
CommitLineData
0c2498f1
SH
1menuconfig 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
a4315e3c
TR
12config 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
17b2b478
TR
21config PWM_PXA
22 tristate "PXA PWM support"
23 depends on ARCH_PXA
24 help
25 Generic PWM framework driver for PXA.
26
27 To compile this driver as a module, choose M here: the module
28 will be called pwm-pxa.
29
0134b932
TR
30config PWM_TEGRA
31 tristate "NVIDIA Tegra PWM support"
32 depends on ARCH_TEGRA
33 help
34 Generic PWM framework driver for the PWFM controller found on NVIDIA
35 Tegra SoCs.
36
37 To compile this driver as a module, choose M here: the module
38 will be called pwm-tegra.
39
0c2498f1 40endif