blob: 8fc3808d7a3e8b08b2bc3a8eb53b899f9a41b953 [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
Alexandre Pereira da Silva2132fa82012-07-10 11:38:10 -030031config PWM_LPC32XX
32 tristate "LPC32XX PWM support"
33 depends on ARCH_LPC32XX
34 help
35 Generic PWM framework driver for LPC32XX. The LPC32XX SOC has two
36 PWM controllers.
37
38 To compile this driver as a module, choose M here: the module
39 will be called pwm-lpc32xx.
40
Shawn Guo4dce82c2012-04-04 10:50:52 +080041config PWM_MXS
42 tristate "Freescale MXS PWM support"
43 depends on ARCH_MXS && OF
Shawn Guo01bf32e2012-06-26 16:58:09 +080044 select STMP_DEVICE
Shawn Guo4dce82c2012-04-04 10:50:52 +080045 help
46 Generic PWM framework driver for Freescale MXS.
47
48 To compile this driver as a module, choose M here: the module
49 will be called pwm-mxs.
50
Thierry Reding17b2b472012-01-02 21:22:38 +010051config PWM_PXA
52 tristate "PXA PWM support"
53 depends on ARCH_PXA
54 help
55 Generic PWM framework driver for PXA.
56
57 To compile this driver as a module, choose M here: the module
58 will be called pwm-pxa.
59
Sascha Hauer215c29d2012-03-15 10:04:36 +010060config PWM_SAMSUNG
61 tristate "Samsung pwm support"
62 depends on PLAT_SAMSUNG
63 help
64 Generic PWM framework driver for Samsung.
65
66 To compile this driver as a module, choose M here: the module
67 will be called pwm-samsung.
68
Thierry Reding0134b932011-12-21 07:47:07 +010069config PWM_TEGRA
70 tristate "NVIDIA Tegra PWM support"
71 depends on ARCH_TEGRA
72 help
73 Generic PWM framework driver for the PWFM controller found on NVIDIA
74 Tegra SoCs.
75
76 To compile this driver as a module, choose M here: the module
77 will be called pwm-tegra.
78
Philip, Avinash8e0cb052012-07-25 16:58:18 +053079config PWM_TIECAP
80 tristate "ECAP PWM support"
81 depends on SOC_AM33XX
82 help
83 PWM driver support for the ECAP APWM controller found on AM33XX
84 TI SOC
85
86 To compile this driver as a module, choose M here: the module
87 will be called pwm-tiecap.
88
Philip, Avinash19891b22012-07-25 16:58:19 +053089config PWM_TIEHRPWM
90 tristate "EHRPWM PWM support"
91 depends on SOC_AM33XX
92 help
93 PWM driver support for the EHRPWM controller found on AM33XX
94 TI SOC
95
96 To compile this driver as a module, choose M here: the module
97 will be called pwm-tiehrpwm.
98
Sascha Hauera245cce2012-03-15 10:04:37 +010099config PWM_VT8500
100 tristate "vt8500 pwm support"
101 depends on ARCH_VT8500
102 help
103 Generic PWM framework driver for vt8500.
104
105 To compile this driver as a module, choose M here: the module
106 will be called pwm-vt8500.
107
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100108endif