Sascha Hauer | 0c2498f | 2011-01-28 09:40:40 +0100 | [diff] [blame] | 1 | menuconfig 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 | |
| 10 | if PWM |
| 11 | |
Thierry Reding | a4315e3 | 2012-01-02 20:53:50 +0100 | [diff] [blame] | 12 | config 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 Hauer | 2969324 | 2012-03-15 10:04:35 +0100 | [diff] [blame] | 21 | config 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 Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame^] | 30 | config PWM_MXS |
| 31 | tristate "Freescale MXS PWM support" |
| 32 | depends on ARCH_MXS && OF |
| 33 | help |
| 34 | Generic PWM framework driver for Freescale MXS. |
| 35 | |
| 36 | To compile this driver as a module, choose M here: the module |
| 37 | will be called pwm-mxs. |
| 38 | |
Thierry Reding | 17b2b47 | 2012-01-02 21:22:38 +0100 | [diff] [blame] | 39 | config PWM_PXA |
| 40 | tristate "PXA PWM support" |
| 41 | depends on ARCH_PXA |
| 42 | help |
| 43 | Generic PWM framework driver for PXA. |
| 44 | |
| 45 | To compile this driver as a module, choose M here: the module |
| 46 | will be called pwm-pxa. |
| 47 | |
Sascha Hauer | 215c29d | 2012-03-15 10:04:36 +0100 | [diff] [blame] | 48 | config PWM_SAMSUNG |
| 49 | tristate "Samsung pwm support" |
| 50 | depends on PLAT_SAMSUNG |
| 51 | help |
| 52 | Generic PWM framework driver for Samsung. |
| 53 | |
| 54 | To compile this driver as a module, choose M here: the module |
| 55 | will be called pwm-samsung. |
| 56 | |
Thierry Reding | 0134b93 | 2011-12-21 07:47:07 +0100 | [diff] [blame] | 57 | config PWM_TEGRA |
| 58 | tristate "NVIDIA Tegra PWM support" |
| 59 | depends on ARCH_TEGRA |
| 60 | help |
| 61 | Generic PWM framework driver for the PWFM controller found on NVIDIA |
| 62 | Tegra SoCs. |
| 63 | |
| 64 | To compile this driver as a module, choose M here: the module |
| 65 | will be called pwm-tegra. |
| 66 | |
Sascha Hauer | a245cce | 2012-03-15 10:04:37 +0100 | [diff] [blame] | 67 | config PWM_VT8500 |
| 68 | tristate "vt8500 pwm support" |
| 69 | depends on ARCH_VT8500 |
| 70 | help |
| 71 | Generic PWM framework driver for vt8500. |
| 72 | |
| 73 | To compile this driver as a module, choose M here: the module |
| 74 | will be called pwm-vt8500. |
| 75 | |
Sascha Hauer | 0c2498f | 2011-01-28 09:40:40 +0100 | [diff] [blame] | 76 | endif |