10c2498f1SSascha Hauermenuconfig PWM 2b817bf5cSThierry Reding bool "Pulse-Width Modulation (PWM) Support" 30c2498f1SSascha Hauer help 4b817bf5cSThierry Reding Generic Pulse-Width Modulation (PWM) support. 50c2498f1SSascha Hauer 6b817bf5cSThierry Reding In Pulse-Width Modulation, a variation of the width of pulses 7b817bf5cSThierry Reding in a rectangular pulse signal is used as a means to alter the 8b817bf5cSThierry Reding average power of the signal. Applications include efficient 9b817bf5cSThierry Reding power delivery and voltage regulation. In computer systems, 10b817bf5cSThierry Reding PWMs are commonly used to control fans or the brightness of 11b817bf5cSThierry Reding display backlights. 12b817bf5cSThierry Reding 13b817bf5cSThierry Reding This framework provides a generic interface to PWM devices 14b817bf5cSThierry Reding within the Linux kernel. On the driver side it provides an API 15b817bf5cSThierry Reding to register and unregister a PWM chip, an abstraction of a PWM 16b817bf5cSThierry Reding controller, that supports one or more PWM devices. Client 17b817bf5cSThierry Reding drivers can request PWM devices and use the generic framework 18b817bf5cSThierry Reding to configure as well as enable and disable them. 19b817bf5cSThierry Reding 20b817bf5cSThierry Reding This generic framework replaces the legacy PWM framework which 21b817bf5cSThierry Reding allows only a single driver implementing the required API. Not 22b817bf5cSThierry Reding all legacy implementations have been ported to the framework 23b817bf5cSThierry Reding yet. The framework provides an API that is backward compatible 24b817bf5cSThierry Reding with the legacy framework so that existing client drivers 25b817bf5cSThierry Reding continue to work as expected. 26b817bf5cSThierry Reding 27b817bf5cSThierry Reding If unsure, say no. 280c2498f1SSascha Hauer 290c2498f1SSascha Hauerif PWM 300c2498f1SSascha Hauer 3176abbddeSH Hartley Sweetenconfig PWM_SYSFS 3276abbddeSH Hartley Sweeten bool 3376abbddeSH Hartley Sweeten default y if SYSFS 3476abbddeSH Hartley Sweeten 356173f8f4SThierry Redingconfig PWM_AB8500 366173f8f4SThierry Reding tristate "AB8500 PWM support" 376173f8f4SThierry Reding depends on AB8500_CORE && ARCH_U8500 386173f8f4SThierry Reding help 396173f8f4SThierry Reding Generic PWM framework driver for Analog Baseband AB8500. 406173f8f4SThierry Reding 416173f8f4SThierry Reding To compile this driver as a module, choose M here: the module 426173f8f4SThierry Reding will be called pwm-ab8500. 436173f8f4SThierry Reding 4432b16d46SBo Shenconfig PWM_ATMEL 4532b16d46SBo Shen tristate "Atmel PWM support" 46bb4bbbaaSAlexandre Belloni depends on ARCH_AT91 || AVR32 4732b16d46SBo Shen help 4832b16d46SBo Shen Generic PWM framework driver for Atmel SoC. 4932b16d46SBo Shen 5032b16d46SBo Shen To compile this driver as a module, choose M here: the module 5132b16d46SBo Shen will be called pwm-atmel. 5232b16d46SBo Shen 532b4984beSBoris Brezillonconfig PWM_ATMEL_HLCDC_PWM 542b4984beSBoris Brezillon tristate "Atmel HLCDC PWM support" 552b4984beSBoris Brezillon depends on MFD_ATMEL_HLCDC 562b4984beSBoris Brezillon help 572b4984beSBoris Brezillon Generic PWM framework driver for the PWM output of the HLCDC 582b4984beSBoris Brezillon (Atmel High-end LCD Controller). This PWM output is mainly used 592b4984beSBoris Brezillon to control the LCD backlight. 602b4984beSBoris Brezillon 612b4984beSBoris Brezillon To compile this driver as a module, choose M here: the module 622b4984beSBoris Brezillon will be called pwm-atmel-hlcdc. 632b4984beSBoris Brezillon 649421badeSBoris BREZILLONconfig PWM_ATMEL_TCB 65b133d2a1SThierry Reding tristate "Atmel TC Block PWM support" 669421badeSBoris BREZILLON depends on ATMEL_TCLIB && OF 679421badeSBoris BREZILLON help 689421badeSBoris BREZILLON Generic PWM framework driver for Atmel Timer Counter Block. 699421badeSBoris BREZILLON 709421badeSBoris BREZILLON A Timer Counter Block provides 6 PWM devices grouped by 2. 719421badeSBoris BREZILLON Devices in a given group must have the same period. 729421badeSBoris BREZILLON 739421badeSBoris BREZILLON To compile this driver as a module, choose M here: the module 749421badeSBoris BREZILLON will be called pwm-atmel-tcb. 759421badeSBoris BREZILLON 766a4e4bffSTim Krygerconfig PWM_BCM_KONA 776a4e4bffSTim Kryger tristate "Kona PWM support" 786a4e4bffSTim Kryger depends on ARCH_BCM_MOBILE 796a4e4bffSTim Kryger help 806a4e4bffSTim Kryger Generic PWM framework driver for Broadcom Kona PWM block. 816a4e4bffSTim Kryger 826a4e4bffSTim Kryger To compile this driver as a module, choose M here: the module 836a4e4bffSTim Kryger will be called pwm-bcm-kona. 846a4e4bffSTim Kryger 85e5a06dc5SBart Tangheconfig PWM_BCM2835 86e5a06dc5SBart Tanghe tristate "BCM2835 PWM support" 87e5a06dc5SBart Tanghe depends on ARCH_BCM2835 88e5a06dc5SBart Tanghe help 89e5a06dc5SBart Tanghe PWM framework driver for BCM2835 controller (Raspberry Pi) 90e5a06dc5SBart Tanghe 91e5a06dc5SBart Tanghe To compile this driver as a module, choose M here: the module 92e5a06dc5SBart Tanghe will be called pwm-bcm2835. 93e5a06dc5SBart Tanghe 94a4315e3cSThierry Redingconfig PWM_BFIN 95a4315e3cSThierry Reding tristate "Blackfin PWM support" 96a4315e3cSThierry Reding depends on BFIN_GPTIMERS 97a4315e3cSThierry Reding help 98a4315e3cSThierry Reding Generic PWM framework driver for Blackfin. 99a4315e3cSThierry Reding 100a4315e3cSThierry Reding To compile this driver as a module, choose M here: the module 101a4315e3cSThierry Reding will be called pwm-bfin. 102a4315e3cSThierry Reding 1037eb3f6ffSAlexander Shiyanconfig PWM_CLPS711X 1047eb3f6ffSAlexander Shiyan tristate "CLPS711X PWM support" 1057eb3f6ffSAlexander Shiyan depends on ARCH_CLPS711X || COMPILE_TEST 106dec02f98SChen Gang depends on HAS_IOMEM 1077eb3f6ffSAlexander Shiyan help 1087eb3f6ffSAlexander Shiyan Generic PWM framework driver for Cirrus Logic CLPS711X. 1097eb3f6ffSAlexander Shiyan 1107eb3f6ffSAlexander Shiyan To compile this driver as a module, choose M here: the module 1117eb3f6ffSAlexander Shiyan will be called pwm-clps711x. 1127eb3f6ffSAlexander Shiyan 113a2308698SH Hartley Sweetenconfig PWM_EP93XX 114a2308698SH Hartley Sweeten tristate "Cirrus Logic EP93xx PWM support" 115a2308698SH Hartley Sweeten depends on ARCH_EP93XX 116a2308698SH Hartley Sweeten help 117a2308698SH Hartley Sweeten Generic PWM framework driver for Cirrus Logic EP93xx. 118a2308698SH Hartley Sweeten 119a2308698SH Hartley Sweeten To compile this driver as a module, choose M here: the module 120a2308698SH Hartley Sweeten will be called pwm-ep93xx. 121a2308698SH Hartley Sweeten 122b505183bSXiubo Liconfig PWM_FSL_FTM 123b505183bSXiubo Li tristate "Freescale FlexTimer Module (FTM) PWM support" 124b505183bSXiubo Li depends on OF 12500018a8aSFabio Estevam select REGMAP_MMIO 126b505183bSXiubo Li help 127b505183bSXiubo Li Generic FTM PWM framework driver for Freescale VF610 and 128b505183bSXiubo Li Layerscape LS-1 SoCs. 129b505183bSXiubo Li 130b505183bSXiubo Li To compile this driver as a module, choose M here: the module 131b505183bSXiubo Li will be called pwm-fsl-ftm. 132b505183bSXiubo Li 13329693248SSascha Hauerconfig PWM_IMX 134b133d2a1SThierry Reding tristate "i.MX PWM support" 13529693248SSascha Hauer depends on ARCH_MXC 13629693248SSascha Hauer help 13729693248SSascha Hauer Generic PWM framework driver for i.MX. 13829693248SSascha Hauer 13929693248SSascha Hauer To compile this driver as a module, choose M here: the module 14029693248SSascha Hauer will be called pwm-imx. 14129693248SSascha Hauer 142f6b8a570SThierry Redingconfig PWM_JZ4740 143f6b8a570SThierry Reding tristate "Ingenic JZ4740 PWM support" 144f6b8a570SThierry Reding depends on MACH_JZ4740 145f6b8a570SThierry Reding help 146f6b8a570SThierry Reding Generic PWM framework driver for Ingenic JZ4740 based 147f6b8a570SThierry Reding machines. 148f6b8a570SThierry Reding 149f6b8a570SThierry Reding To compile this driver as a module, choose M here: the module 150f6b8a570SThierry Reding will be called pwm-jz4740. 151f6b8a570SThierry Reding 152af66b3c0SMilo Kimconfig PWM_LP3943 153af66b3c0SMilo Kim tristate "TI/National Semiconductor LP3943 PWM support" 154af66b3c0SMilo Kim depends on MFD_LP3943 155af66b3c0SMilo Kim help 156af66b3c0SMilo Kim Generic PWM framework driver for LP3943 which supports two PWM 157af66b3c0SMilo Kim channels. 158af66b3c0SMilo Kim 159af66b3c0SMilo Kim To compile this driver as a module, choose M here: the module 160af66b3c0SMilo Kim will be called pwm-lp3943. 161af66b3c0SMilo Kim 1622132fa8dSAlexandre Pereira da Silvaconfig PWM_LPC32XX 1632132fa8dSAlexandre Pereira da Silva tristate "LPC32XX PWM support" 1642132fa8dSAlexandre Pereira da Silva depends on ARCH_LPC32XX 1652132fa8dSAlexandre Pereira da Silva help 1662132fa8dSAlexandre Pereira da Silva Generic PWM framework driver for LPC32XX. The LPC32XX SOC has two 1672132fa8dSAlexandre Pereira da Silva PWM controllers. 1682132fa8dSAlexandre Pereira da Silva 1692132fa8dSAlexandre Pereira da Silva To compile this driver as a module, choose M here: the module 1702132fa8dSAlexandre Pereira da Silva will be called pwm-lpc32xx. 1712132fa8dSAlexandre Pereira da Silva 172d16a5aa9SMika Westerbergconfig PWM_LPSS 173d16a5aa9SMika Westerberg tristate "Intel LPSS PWM support" 174ad16202dSAndy Shevchenko depends on X86 175d16a5aa9SMika Westerberg help 176d16a5aa9SMika Westerberg Generic PWM framework driver for Intel Low Power Subsystem PWM 177d16a5aa9SMika Westerberg controller. 178d16a5aa9SMika Westerberg 179d16a5aa9SMika Westerberg To compile this driver as a module, choose M here: the module 180d16a5aa9SMika Westerberg will be called pwm-lpss. 181d16a5aa9SMika Westerberg 182c558e39eSAndy Shevchenkoconfig PWM_LPSS_PCI 183c558e39eSAndy Shevchenko tristate "Intel LPSS PWM PCI driver" 184c558e39eSAndy Shevchenko depends on PWM_LPSS && PCI 185c558e39eSAndy Shevchenko help 186c558e39eSAndy Shevchenko The PCI driver for Intel Low Power Subsystem PWM controller. 187c558e39eSAndy Shevchenko 188c558e39eSAndy Shevchenko To compile this driver as a module, choose M here: the module 189c558e39eSAndy Shevchenko will be called pwm-lpss-pci. 190c558e39eSAndy Shevchenko 191c558e39eSAndy Shevchenkoconfig PWM_LPSS_PLATFORM 192c558e39eSAndy Shevchenko tristate "Intel LPSS PWM platform driver" 193c558e39eSAndy Shevchenko depends on PWM_LPSS && ACPI 194c558e39eSAndy Shevchenko help 195c558e39eSAndy Shevchenko The platform driver for Intel Low Power Subsystem PWM controller. 196c558e39eSAndy Shevchenko 197c558e39eSAndy Shevchenko To compile this driver as a module, choose M here: the module 198c558e39eSAndy Shevchenko will be called pwm-lpss-platform. 199c558e39eSAndy Shevchenko 2004dce82c1SShawn Guoconfig PWM_MXS 2014dce82c1SShawn Guo tristate "Freescale MXS PWM support" 2024dce82c1SShawn Guo depends on ARCH_MXS && OF 20301bf32e9SShawn Guo select STMP_DEVICE 2044dce82c1SShawn Guo help 2054dce82c1SShawn Guo Generic PWM framework driver for Freescale MXS. 2064dce82c1SShawn Guo 2074dce82c1SShawn Guo To compile this driver as a module, choose M here: the module 2084dce82c1SShawn Guo will be called pwm-mxs. 2094dce82c1SShawn Guo 21088b613e6SSteffen Trumtrarconfig PWM_PCA9685 21188b613e6SSteffen Trumtrar tristate "NXP PCA9685 PWM driver" 2122c80a492SAxel Lin depends on OF && I2C 2132c80a492SAxel Lin select REGMAP_I2C 21488b613e6SSteffen Trumtrar help 21588b613e6SSteffen Trumtrar Generic PWM framework driver for NXP PCA9685 LED controller. 21688b613e6SSteffen Trumtrar 21788b613e6SSteffen Trumtrar To compile this driver as a module, choose M here: the module 21888b613e6SSteffen Trumtrar will be called pwm-pca9685. 21988b613e6SSteffen Trumtrar 22079c11b6fSThierry Redingconfig PWM_PUV3 22179c11b6fSThierry Reding tristate "PKUnity NetBook-0916 PWM support" 22279c11b6fSThierry Reding depends on ARCH_PUV3 22379c11b6fSThierry Reding help 22479c11b6fSThierry Reding Generic PWM framework driver for PKUnity NetBook-0916. 22579c11b6fSThierry Reding 22679c11b6fSThierry Reding To compile this driver as a module, choose M here: the module 22779c11b6fSThierry Reding will be called pwm-puv3. 22879c11b6fSThierry Reding 22917b2b478SThierry Redingconfig PWM_PXA 23017b2b478SThierry Reding tristate "PXA PWM support" 23117b2b478SThierry Reding depends on ARCH_PXA 23217b2b478SThierry Reding help 23317b2b478SThierry Reding Generic PWM framework driver for PXA. 23417b2b478SThierry Reding 23517b2b478SThierry Reding To compile this driver as a module, choose M here: the module 23617b2b478SThierry Reding will be called pwm-pxa. 23717b2b478SThierry Reding 23899b82abbSLaurent Pinchartconfig PWM_RENESAS_TPU 23999b82abbSLaurent Pinchart tristate "Renesas TPU PWM support" 24094d88d63SLaurent Pinchart depends on ARCH_SHMOBILE || COMPILE_TEST 2412974b098SRichard Weinberger depends on HAS_IOMEM 24299b82abbSLaurent Pinchart help 24399b82abbSLaurent Pinchart This driver exposes the Timer Pulse Unit (TPU) PWM controller found 24499b82abbSLaurent Pinchart in Renesas chips through the PWM API. 24599b82abbSLaurent Pinchart 24699b82abbSLaurent Pinchart To compile this driver as a module, choose M here: the module 24799b82abbSLaurent Pinchart will be called pwm-renesas-tpu. 24899b82abbSLaurent Pinchart 249101353c8SBeniamino Galvaniconfig PWM_ROCKCHIP 250101353c8SBeniamino Galvani tristate "Rockchip PWM support" 251101353c8SBeniamino Galvani depends on ARCH_ROCKCHIP 252101353c8SBeniamino Galvani help 253101353c8SBeniamino Galvani Generic PWM framework driver for the PWM controller found on 254101353c8SBeniamino Galvani Rockchip SoCs. 255101353c8SBeniamino Galvani 256215c29d3SSascha Hauerconfig PWM_SAMSUNG 257b133d2a1SThierry Reding tristate "Samsung PWM support" 258*06e4cb6bSAbhilash Kesavan depends on PLAT_SAMSUNG || ARCH_EXYNOS 259215c29d3SSascha Hauer help 260215c29d3SSascha Hauer Generic PWM framework driver for Samsung. 261215c29d3SSascha Hauer 262215c29d3SSascha Hauer To compile this driver as a module, choose M here: the module 263215c29d3SSascha Hauer will be called pwm-samsung. 264215c29d3SSascha Hauer 265ce20364bSShiraz Hashimconfig PWM_SPEAR 266ce20364bSShiraz Hashim tristate "STMicroelectronics SPEAr PWM support" 267ce20364bSShiraz Hashim depends on PLAT_SPEAR 268ce20364bSShiraz Hashim depends on OF 269ce20364bSShiraz Hashim help 270ce20364bSShiraz Hashim Generic PWM framework driver for the PWM controller on ST 271ce20364bSShiraz Hashim SPEAr SoCs. 272ce20364bSShiraz Hashim 273ce20364bSShiraz Hashim To compile this driver as a module, choose M here: the module 274ce20364bSShiraz Hashim will be called pwm-spear. 275ce20364bSShiraz Hashim 276378fe115SLee Jonesconfig PWM_STI 277378fe115SLee Jones tristate "STiH4xx PWM support" 278378fe115SLee Jones depends on ARCH_STI 279378fe115SLee Jones depends on OF 280378fe115SLee Jones help 281378fe115SLee Jones Generic PWM framework driver for STiH4xx SoCs. 282378fe115SLee Jones 283378fe115SLee Jones To compile this driver as a module, choose M here: the module 284378fe115SLee Jones will be called pwm-sti. 285378fe115SLee Jones 2860134b932SThierry Redingconfig PWM_TEGRA 2870134b932SThierry Reding tristate "NVIDIA Tegra PWM support" 2880134b932SThierry Reding depends on ARCH_TEGRA 2890134b932SThierry Reding help 2900134b932SThierry Reding Generic PWM framework driver for the PWFM controller found on NVIDIA 2910134b932SThierry Reding Tegra SoCs. 2920134b932SThierry Reding 2930134b932SThierry Reding To compile this driver as a module, choose M here: the module 2940134b932SThierry Reding will be called pwm-tegra. 2950134b932SThierry Reding 2968e0cb05bSPhilip, Avinashconfig PWM_TIECAP 2978e0cb05bSPhilip, Avinash tristate "ECAP PWM support" 2981bf0f20bSPhilip Avinash depends on SOC_AM33XX || ARCH_DAVINCI_DA8XX 2998e0cb05bSPhilip, Avinash help 3008e0cb05bSPhilip, Avinash PWM driver support for the ECAP APWM controller found on AM33XX 3018e0cb05bSPhilip, Avinash TI SOC 3028e0cb05bSPhilip, Avinash 3038e0cb05bSPhilip, Avinash To compile this driver as a module, choose M here: the module 3048e0cb05bSPhilip, Avinash will be called pwm-tiecap. 3058e0cb05bSPhilip, Avinash 30619891b20SPhilip, Avinashconfig PWM_TIEHRPWM 30719891b20SPhilip, Avinash tristate "EHRPWM PWM support" 3081bf0f20bSPhilip Avinash depends on SOC_AM33XX || ARCH_DAVINCI_DA8XX 30919891b20SPhilip, Avinash help 31019891b20SPhilip, Avinash PWM driver support for the EHRPWM controller found on AM33XX 31119891b20SPhilip, Avinash TI SOC 31219891b20SPhilip, Avinash 31319891b20SPhilip, Avinash To compile this driver as a module, choose M here: the module 31419891b20SPhilip, Avinash will be called pwm-tiehrpwm. 31519891b20SPhilip, Avinash 316af0ba001SPhilip, Avinashconfig PWM_TIPWMSS 317af0ba001SPhilip, Avinash bool 3181bf0f20bSPhilip Avinash default y if SOC_AM33XX && (PWM_TIECAP || PWM_TIEHRPWM) 319af0ba001SPhilip, Avinash help 320af0ba001SPhilip, Avinash PWM Subsystem driver support for AM33xx SOC. 321af0ba001SPhilip, Avinash 322af0ba001SPhilip, Avinash PWM submodules require PWM config space access from submodule 323af0ba001SPhilip, Avinash drivers and require common parent driver support. 324af0ba001SPhilip, Avinash 3253744c263SPeter Ujfalusiconfig PWM_TWL 3263744c263SPeter Ujfalusi tristate "TWL4030/6030 PWM support" 3273744c263SPeter Ujfalusi depends on TWL4030_CORE 3283744c263SPeter Ujfalusi help 3293744c263SPeter Ujfalusi Generic PWM framework driver for TWL4030/6030. 3303744c263SPeter Ujfalusi 3313744c263SPeter Ujfalusi To compile this driver as a module, choose M here: the module 3323744c263SPeter Ujfalusi will be called pwm-twl. 3333744c263SPeter Ujfalusi 334aa765647SPeter Ujfalusiconfig PWM_TWL_LED 335aa765647SPeter Ujfalusi tristate "TWL4030/6030 PWM support for LED drivers" 336aa765647SPeter Ujfalusi depends on TWL4030_CORE 337aa765647SPeter Ujfalusi help 338aa765647SPeter Ujfalusi Generic PWM framework driver for TWL4030/6030 LED terminals. 339aa765647SPeter Ujfalusi 340aa765647SPeter Ujfalusi To compile this driver as a module, choose M here: the module 341aa765647SPeter Ujfalusi will be called pwm-twl-led. 342aa765647SPeter Ujfalusi 343a245ccebSSascha Hauerconfig PWM_VT8500 344b133d2a1SThierry Reding tristate "vt8500 PWM support" 345a245ccebSSascha Hauer depends on ARCH_VT8500 346a245ccebSSascha Hauer help 347a245ccebSSascha Hauer Generic PWM framework driver for vt8500. 348a245ccebSSascha Hauer 349a245ccebSSascha Hauer To compile this driver as a module, choose M here: the module 350a245ccebSSascha Hauer will be called pwm-vt8500. 351a245ccebSSascha Hauer 3520c2498f1SSascha Hauerendif 353