blob: 0b2800fc1ca7dadb709ce46238886a5c2bf4427d [file] [log] [blame]
Sascha Hauer0c2498f2011-01-28 09:40:40 +01001menuconfig PWM
2 bool "PWM Support"
Thierry Redingeac7a922012-07-02 21:29:45 +02003 depends on !MACH_JZ4740 && !PUV3_PWM
Sascha Hauer0c2498f2011-01-28 09:40:40 +01004 help
5 This enables PWM support through the generic PWM framework.
6 You only need to enable this, if you also want to enable
7 one or more of the PWM drivers below.
8
9 If unsure, say N.
10
11if PWM
12
Thierry Redinga4315e32012-01-02 20:53:50 +010013config PWM_BFIN
14 tristate "Blackfin PWM support"
15 depends on BFIN_GPTIMERS
16 help
17 Generic PWM framework driver for Blackfin.
18
19 To compile this driver as a module, choose M here: the module
20 will be called pwm-bfin.
21
Sascha Hauer29693242012-03-15 10:04:35 +010022config PWM_IMX
23 tristate "i.MX pwm support"
24 depends on ARCH_MXC
25 help
26 Generic PWM framework driver for i.MX.
27
28 To compile this driver as a module, choose M here: the module
29 will be called pwm-imx.
30
Shawn Guo4dce82c2012-04-04 10:50:52 +080031config PWM_MXS
32 tristate "Freescale MXS PWM support"
33 depends on ARCH_MXS && OF
Shawn Guo01bf32e2012-06-26 16:58:09 +080034 select STMP_DEVICE
Shawn Guo4dce82c2012-04-04 10:50:52 +080035 help
36 Generic PWM framework driver for Freescale MXS.
37
38 To compile this driver as a module, choose M here: the module
39 will be called pwm-mxs.
40
Thierry Reding17b2b472012-01-02 21:22:38 +010041config PWM_PXA
42 tristate "PXA PWM support"
43 depends on ARCH_PXA
44 help
45 Generic PWM framework driver for PXA.
46
47 To compile this driver as a module, choose M here: the module
48 will be called pwm-pxa.
49
Sascha Hauer215c29d2012-03-15 10:04:36 +010050config PWM_SAMSUNG
51 tristate "Samsung pwm support"
52 depends on PLAT_SAMSUNG
53 help
54 Generic PWM framework driver for Samsung.
55
56 To compile this driver as a module, choose M here: the module
57 will be called pwm-samsung.
58
Thierry Reding0134b932011-12-21 07:47:07 +010059config PWM_TEGRA
60 tristate "NVIDIA Tegra PWM support"
61 depends on ARCH_TEGRA
62 help
63 Generic PWM framework driver for the PWFM controller found on NVIDIA
64 Tegra SoCs.
65
66 To compile this driver as a module, choose M here: the module
67 will be called pwm-tegra.
68
Sascha Hauera245cce2012-03-15 10:04:37 +010069config PWM_VT8500
70 tristate "vt8500 pwm support"
71 depends on ARCH_VT8500
72 help
73 Generic PWM framework driver for vt8500.
74
75 To compile this driver as a module, choose M here: the module
76 will be called pwm-vt8500.
77
Sascha Hauer0c2498f2011-01-28 09:40:40 +010078endif