blob: 5227415f18554addbe36892a2b13595608df8ced [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
Shawn Guo4dce82c2012-04-04 10:50:52 +080030config PWM_MXS
31 tristate "Freescale MXS PWM support"
32 depends on ARCH_MXS && OF
Shawn Guo01bf32e2012-06-26 16:58:09 +080033 select STMP_DEVICE
Shawn Guo4dce82c2012-04-04 10:50:52 +080034 help
35 Generic PWM framework driver for Freescale MXS.
36
37 To compile this driver as a module, choose M here: the module
38 will be called pwm-mxs.
39
Thierry Reding17b2b472012-01-02 21:22:38 +010040config PWM_PXA
41 tristate "PXA PWM support"
42 depends on ARCH_PXA
43 help
44 Generic PWM framework driver for PXA.
45
46 To compile this driver as a module, choose M here: the module
47 will be called pwm-pxa.
48
Sascha Hauer215c29d2012-03-15 10:04:36 +010049config PWM_SAMSUNG
50 tristate "Samsung pwm support"
51 depends on PLAT_SAMSUNG
52 help
53 Generic PWM framework driver for Samsung.
54
55 To compile this driver as a module, choose M here: the module
56 will be called pwm-samsung.
57
Thierry Reding0134b932011-12-21 07:47:07 +010058config PWM_TEGRA
59 tristate "NVIDIA Tegra PWM support"
60 depends on ARCH_TEGRA
61 help
62 Generic PWM framework driver for the PWFM controller found on NVIDIA
63 Tegra SoCs.
64
65 To compile this driver as a module, choose M here: the module
66 will be called pwm-tegra.
67
Sascha Hauera245cce2012-03-15 10:04:37 +010068config PWM_VT8500
69 tristate "vt8500 pwm support"
70 depends on ARCH_VT8500
71 help
72 Generic PWM framework driver for vt8500.
73
74 To compile this driver as a module, choose M here: the module
75 will be called pwm-vt8500.
76
Sascha Hauer0c2498f2011-01-28 09:40:40 +010077endif