1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only 20c2498f1SSascha Hauermenuconfig PWM 3b817bf5cSThierry Reding bool "Pulse-Width Modulation (PWM) Support" 40c2498f1SSascha Hauer help 5b817bf5cSThierry Reding Generic Pulse-Width Modulation (PWM) support. 60c2498f1SSascha Hauer 7b817bf5cSThierry Reding In Pulse-Width Modulation, a variation of the width of pulses 8b817bf5cSThierry Reding in a rectangular pulse signal is used as a means to alter the 9b817bf5cSThierry Reding average power of the signal. Applications include efficient 10b817bf5cSThierry Reding power delivery and voltage regulation. In computer systems, 11b817bf5cSThierry Reding PWMs are commonly used to control fans or the brightness of 12b817bf5cSThierry Reding display backlights. 13b817bf5cSThierry Reding 14b817bf5cSThierry Reding This framework provides a generic interface to PWM devices 15b817bf5cSThierry Reding within the Linux kernel. On the driver side it provides an API 16b817bf5cSThierry Reding to register and unregister a PWM chip, an abstraction of a PWM 17b817bf5cSThierry Reding controller, that supports one or more PWM devices. Client 18b817bf5cSThierry Reding drivers can request PWM devices and use the generic framework 19b817bf5cSThierry Reding to configure as well as enable and disable them. 20b817bf5cSThierry Reding 21b817bf5cSThierry Reding This generic framework replaces the legacy PWM framework which 22b817bf5cSThierry Reding allows only a single driver implementing the required API. Not 23b817bf5cSThierry Reding all legacy implementations have been ported to the framework 24b817bf5cSThierry Reding yet. The framework provides an API that is backward compatible 25b817bf5cSThierry Reding with the legacy framework so that existing client drivers 26b817bf5cSThierry Reding continue to work as expected. 27b817bf5cSThierry Reding 28b817bf5cSThierry Reding If unsure, say no. 290c2498f1SSascha Hauer 300c2498f1SSascha Hauerif PWM 310c2498f1SSascha Hauer 3276abbddeSH Hartley Sweetenconfig PWM_SYSFS 3376abbddeSH Hartley Sweeten bool 3476abbddeSH Hartley Sweeten default y if SYSFS 3576abbddeSH Hartley Sweeten 363ad1f3a3SUwe Kleine-Königconfig PWM_DEBUG 373ad1f3a3SUwe Kleine-König bool "PWM lowlevel drivers additional checks and debug messages" 383ad1f3a3SUwe Kleine-König depends on DEBUG_KERNEL 393ad1f3a3SUwe Kleine-König help 403ad1f3a3SUwe Kleine-König This option enables some additional checks to help lowlevel driver 413ad1f3a3SUwe Kleine-König authors to get their callbacks implemented correctly. 423ad1f3a3SUwe Kleine-König It is expected to introduce some runtime overhead and diagnostic 433ad1f3a3SUwe Kleine-König output to the kernel log, so only enable while working on a driver. 443ad1f3a3SUwe Kleine-König 456173f8f4SThierry Redingconfig PWM_AB8500 466173f8f4SThierry Reding tristate "AB8500 PWM support" 476173f8f4SThierry Reding depends on AB8500_CORE && ARCH_U8500 486173f8f4SThierry Reding help 496173f8f4SThierry Reding Generic PWM framework driver for Analog Baseband AB8500. 506173f8f4SThierry Reding 516173f8f4SThierry Reding To compile this driver as a module, choose M here: the module 526173f8f4SThierry Reding will be called pwm-ab8500. 536173f8f4SThierry Reding 5432b16d46SBo Shenconfig PWM_ATMEL 5532b16d46SBo Shen tristate "Atmel PWM support" 56e96c0ff4SKrzysztof Kozlowski depends on OF 57e96c0ff4SKrzysztof Kozlowski depends on ARCH_AT91 || COMPILE_TEST 5832b16d46SBo Shen help 5932b16d46SBo Shen Generic PWM framework driver for Atmel SoC. 6032b16d46SBo Shen 6132b16d46SBo Shen To compile this driver as a module, choose M here: the module 6232b16d46SBo Shen will be called pwm-atmel. 6332b16d46SBo Shen 642b4984beSBoris Brezillonconfig PWM_ATMEL_HLCDC_PWM 652b4984beSBoris Brezillon tristate "Atmel HLCDC PWM support" 662b4984beSBoris Brezillon depends on MFD_ATMEL_HLCDC 67d2048c49SThierry Reding depends on HAVE_CLK 682b4984beSBoris Brezillon help 692b4984beSBoris Brezillon Generic PWM framework driver for the PWM output of the HLCDC 702b4984beSBoris Brezillon (Atmel High-end LCD Controller). This PWM output is mainly used 712b4984beSBoris Brezillon to control the LCD backlight. 722b4984beSBoris Brezillon 732b4984beSBoris Brezillon To compile this driver as a module, choose M here: the module 742b4984beSBoris Brezillon will be called pwm-atmel-hlcdc. 752b4984beSBoris Brezillon 769421badeSBoris BREZILLONconfig PWM_ATMEL_TCB 77b133d2a1SThierry Reding tristate "Atmel TC Block PWM support" 78061f8572SAlexandre Belloni depends on OF 79061f8572SAlexandre Belloni select REGMAP_MMIO 809421badeSBoris BREZILLON help 819421badeSBoris BREZILLON Generic PWM framework driver for Atmel Timer Counter Block. 829421badeSBoris BREZILLON 839421badeSBoris BREZILLON A Timer Counter Block provides 6 PWM devices grouped by 2. 849421badeSBoris BREZILLON Devices in a given group must have the same period. 859421badeSBoris BREZILLON 869421badeSBoris BREZILLON To compile this driver as a module, choose M here: the module 879421badeSBoris BREZILLON will be called pwm-atmel-tcb. 889421badeSBoris BREZILLON 89daa5abc4SYendapally Reddy Dhananjaya Reddyconfig PWM_BCM_IPROC 90daa5abc4SYendapally Reddy Dhananjaya Reddy tristate "iProc PWM support" 915bf22ff3SScott Branden depends on ARCH_BCM_IPROC || COMPILE_TEST 925bf22ff3SScott Branden depends on COMMON_CLK 935bf22ff3SScott Branden default ARCH_BCM_IPROC 94daa5abc4SYendapally Reddy Dhananjaya Reddy help 95daa5abc4SYendapally Reddy Dhananjaya Reddy Generic PWM framework driver for Broadcom iProc PWM block. This 96daa5abc4SYendapally Reddy Dhananjaya Reddy block is used in Broadcom iProc SoC's. 97daa5abc4SYendapally Reddy Dhananjaya Reddy 98daa5abc4SYendapally Reddy Dhananjaya Reddy To compile this driver as a module, choose M here: the module 99daa5abc4SYendapally Reddy Dhananjaya Reddy will be called pwm-bcm-iproc. 100daa5abc4SYendapally Reddy Dhananjaya Reddy 1016a4e4bffSTim Krygerconfig PWM_BCM_KONA 1026a4e4bffSTim Kryger tristate "Kona PWM support" 10388a053d2SClément Péron depends on ARCH_BCM_MOBILE || ARCH_BCM_CYGNUS || COMPILE_TEST 10488a053d2SClément Péron depends on HAVE_CLK && HAS_IOMEM 10588a053d2SClément Péron default ARCH_BCM_MOBILE || ARCH_BCM_CYGNUS 1066a4e4bffSTim Kryger help 1076a4e4bffSTim Kryger Generic PWM framework driver for Broadcom Kona PWM block. 1086a4e4bffSTim Kryger 1096a4e4bffSTim Kryger To compile this driver as a module, choose M here: the module 1106a4e4bffSTim Kryger will be called pwm-bcm-kona. 1116a4e4bffSTim Kryger 112e5a06dc5SBart Tangheconfig PWM_BCM2835 113e5a06dc5SBart Tanghe tristate "BCM2835 PWM support" 114e96c0ff4SKrzysztof Kozlowski depends on ARCH_BCM2835 || ARCH_BRCMSTB || COMPILE_TEST 115e5a06dc5SBart Tanghe help 116e5a06dc5SBart Tanghe PWM framework driver for BCM2835 controller (Raspberry Pi) 117e5a06dc5SBart Tanghe 118e5a06dc5SBart Tanghe To compile this driver as a module, choose M here: the module 119e5a06dc5SBart Tanghe will be called pwm-bcm2835. 120e5a06dc5SBart Tanghe 12159d5c8b1SAntoine Ténartconfig PWM_BERLIN 12259d5c8b1SAntoine Ténart tristate "Marvell Berlin PWM support" 123e96c0ff4SKrzysztof Kozlowski depends on ARCH_BERLIN || COMPILE_TEST 12459d5c8b1SAntoine Ténart help 12559d5c8b1SAntoine Ténart PWM framework driver for Marvell Berlin SoCs. 12659d5c8b1SAntoine Ténart 12759d5c8b1SAntoine Ténart To compile this driver as a module, choose M here: the module 12859d5c8b1SAntoine Ténart will be called pwm-berlin. 12959d5c8b1SAntoine Ténart 1303a9f5957SFlorian Fainelliconfig PWM_BRCMSTB 1313a9f5957SFlorian Fainelli tristate "Broadcom STB PWM support" 132e96c0ff4SKrzysztof Kozlowski depends on ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST 1333a9f5957SFlorian Fainelli help 1343a9f5957SFlorian Fainelli Generic PWM framework driver for the Broadcom Set-top-Box 1353a9f5957SFlorian Fainelli SoCs (BCM7xxx). 1363a9f5957SFlorian Fainelli 1373a9f5957SFlorian Fainelli To compile this driver as a module, choose M Here: the module 1383a9f5957SFlorian Fainelli will be called pwm-brcmstb.c. 1393a9f5957SFlorian Fainelli 1407eb3f6ffSAlexander Shiyanconfig PWM_CLPS711X 1417eb3f6ffSAlexander Shiyan tristate "CLPS711X PWM support" 1427eb3f6ffSAlexander Shiyan depends on ARCH_CLPS711X || COMPILE_TEST 143dec02f98SChen Gang depends on HAS_IOMEM 1447eb3f6ffSAlexander Shiyan help 1457eb3f6ffSAlexander Shiyan Generic PWM framework driver for Cirrus Logic CLPS711X. 1467eb3f6ffSAlexander Shiyan 1477eb3f6ffSAlexander Shiyan To compile this driver as a module, choose M here: the module 1487eb3f6ffSAlexander Shiyan will be called pwm-clps711x. 1497eb3f6ffSAlexander Shiyan 150a3f37a10SShobhit Kumarconfig PWM_CRC 151a3f37a10SShobhit Kumar bool "Intel Crystalcove (CRC) PWM support" 152a3f37a10SShobhit Kumar depends on X86 && INTEL_SOC_PMIC 153a3f37a10SShobhit Kumar help 154a3f37a10SShobhit Kumar Generic PWM framework driver for Crystalcove (CRC) PMIC based PWM 155a3f37a10SShobhit Kumar control. 156a3f37a10SShobhit Kumar 1571f0d3bb0SBrian Norrisconfig PWM_CROS_EC 1581f0d3bb0SBrian Norris tristate "ChromeOS EC PWM driver" 15947f11e0bSEnric Balletbo i Serra depends on CROS_EC 1601f0d3bb0SBrian Norris help 1611f0d3bb0SBrian Norris PWM driver for exposing a PWM attached to the ChromeOS Embedded 1621f0d3bb0SBrian Norris Controller. 1631f0d3bb0SBrian Norris 164*1ed2b3fcSJarkko Nikulaconfig PWM_DWC 165*1ed2b3fcSJarkko Nikula tristate "DesignWare PWM Controller" 166*1ed2b3fcSJarkko Nikula depends on PCI 167*1ed2b3fcSJarkko Nikula help 168*1ed2b3fcSJarkko Nikula PWM driver for Synopsys DWC PWM Controller attached to a PCI bus. 169*1ed2b3fcSJarkko Nikula 170*1ed2b3fcSJarkko Nikula To compile this driver as a module, choose M here: the module 171*1ed2b3fcSJarkko Nikula will be called pwm-dwc. 172*1ed2b3fcSJarkko Nikula 173a2308698SH Hartley Sweetenconfig PWM_EP93XX 174a2308698SH Hartley Sweeten tristate "Cirrus Logic EP93xx PWM support" 175e96c0ff4SKrzysztof Kozlowski depends on ARCH_EP93XX || COMPILE_TEST 176a2308698SH Hartley Sweeten help 177a2308698SH Hartley Sweeten Generic PWM framework driver for Cirrus Logic EP93xx. 178a2308698SH Hartley Sweeten 179a2308698SH Hartley Sweeten To compile this driver as a module, choose M here: the module 180a2308698SH Hartley Sweeten will be called pwm-ep93xx. 181a2308698SH Hartley Sweeten 182b505183bSXiubo Liconfig PWM_FSL_FTM 183b505183bSXiubo Li tristate "Freescale FlexTimer Module (FTM) PWM support" 18436d5be4bSVegard Nossum depends on HAS_IOMEM 185b505183bSXiubo Li depends on OF 18600018a8aSFabio Estevam select REGMAP_MMIO 187b505183bSXiubo Li help 188b505183bSXiubo Li Generic FTM PWM framework driver for Freescale VF610 and 189b505183bSXiubo Li Layerscape LS-1 SoCs. 190b505183bSXiubo Li 191b505183bSXiubo Li To compile this driver as a module, choose M here: the module 192b505183bSXiubo Li will be called pwm-fsl-ftm. 193b505183bSXiubo Li 194d09f0081Syuanjianconfig PWM_HIBVT 195d09f0081Syuanjian tristate "HiSilicon BVT PWM support" 196d09f0081Syuanjian depends on ARCH_HISI || COMPILE_TEST 197d09f0081Syuanjian help 198d09f0081Syuanjian Generic PWM framework driver for HiSilicon BVT SoCs. 199d09f0081Syuanjian 200d09f0081Syuanjian To compile this driver as a module, choose M here: the module 201d09f0081Syuanjian will be called pwm-hibvt. 202d09f0081Syuanjian 203277bb6a2SNaidu Tellapaticonfig PWM_IMG 204277bb6a2SNaidu Tellapati tristate "Imagination Technologies PWM driver" 205277bb6a2SNaidu Tellapati depends on HAS_IOMEM 206277bb6a2SNaidu Tellapati depends on MFD_SYSCON 207277bb6a2SNaidu Tellapati depends on COMMON_CLK 208277bb6a2SNaidu Tellapati depends on MIPS || COMPILE_TEST 209277bb6a2SNaidu Tellapati help 210277bb6a2SNaidu Tellapati Generic PWM framework driver for Imagination Technologies 211277bb6a2SNaidu Tellapati PWM block which supports 4 channels. 212277bb6a2SNaidu Tellapati 213277bb6a2SNaidu Tellapati To compile this driver as a module, choose M here: the module 214277bb6a2SNaidu Tellapati will be called pwm-img 215277bb6a2SNaidu Tellapati 216d80f8206SUwe Kleine-Königconfig PWM_IMX1 217d80f8206SUwe Kleine-König tristate "i.MX1 PWM support" 218e96c0ff4SKrzysztof Kozlowski depends on ARCH_MXC || COMPILE_TEST 21929693248SSascha Hauer help 220d80f8206SUwe Kleine-König Generic PWM framework driver for i.MX1 and i.MX21 22129693248SSascha Hauer 22229693248SSascha Hauer To compile this driver as a module, choose M here: the module 223d80f8206SUwe Kleine-König will be called pwm-imx1. 224d80f8206SUwe Kleine-König 225d80f8206SUwe Kleine-Königconfig PWM_IMX27 226d80f8206SUwe Kleine-König tristate "i.MX27 PWM support" 227e96c0ff4SKrzysztof Kozlowski depends on ARCH_MXC || COMPILE_TEST 228d80f8206SUwe Kleine-König help 229d80f8206SUwe Kleine-König Generic PWM framework driver for i.MX27 and later i.MX SoCs. 230d80f8206SUwe Kleine-König 231d80f8206SUwe Kleine-König To compile this driver as a module, choose M here: the module 232d80f8206SUwe Kleine-König will be called pwm-imx27. 23329693248SSascha Hauer 234738a1cfeSAnson Huangconfig PWM_IMX_TPM 235738a1cfeSAnson Huang tristate "i.MX TPM PWM support" 236738a1cfeSAnson Huang depends on ARCH_MXC || COMPILE_TEST 237738a1cfeSAnson Huang depends on HAVE_CLK && HAS_IOMEM 238738a1cfeSAnson Huang help 239738a1cfeSAnson Huang Generic PWM framework driver for i.MX7ULP TPM module, TPM's full 240738a1cfeSAnson Huang name is Low Power Timer/Pulse Width Modulation Module. 241738a1cfeSAnson Huang 242738a1cfeSAnson Huang To compile this driver as a module, choose M here: the module 243738a1cfeSAnson Huang will be called pwm-imx-tpm. 244738a1cfeSAnson Huang 2456f0841a8SJeff LaBundyconfig PWM_IQS620A 2466f0841a8SJeff LaBundy tristate "Azoteq IQS620A PWM support" 2476f0841a8SJeff LaBundy depends on MFD_IQS62X || COMPILE_TEST 2486f0841a8SJeff LaBundy help 2496f0841a8SJeff LaBundy Generic PWM framework driver for the Azoteq IQS620A multi-function 2506f0841a8SJeff LaBundy sensor. 2516f0841a8SJeff LaBundy 2526f0841a8SJeff LaBundy To compile this driver as a module, choose M here: the module will 2536f0841a8SJeff LaBundy be called pwm-iqs620a. 2546f0841a8SJeff LaBundy 255f6b8a570SThierry Redingconfig PWM_JZ4740 256b4190062SPaul Cercueil tristate "Ingenic JZ47xx PWM support" 257b48d49e0SPaul Cercueil depends on MIPS 258ce1f9cecSPaul Cercueil depends on COMMON_CLK 259c2693514SPaul Cercueil select MFD_SYSCON 260f6b8a570SThierry Reding help 261b4190062SPaul Cercueil Generic PWM framework driver for Ingenic JZ47xx based 262f6b8a570SThierry Reding machines. 263f6b8a570SThierry Reding 264f6b8a570SThierry Reding To compile this driver as a module, choose M here: the module 265f6b8a570SThierry Reding will be called pwm-jz4740. 266f6b8a570SThierry Reding 267bd899cebSVijayakannan Ayyathuraiconfig PWM_KEEMBAY 268bd899cebSVijayakannan Ayyathurai tristate "Intel Keem Bay PWM driver" 269bd899cebSVijayakannan Ayyathurai depends on ARCH_KEEMBAY || (ARM64 && COMPILE_TEST) 270bd899cebSVijayakannan Ayyathurai help 271bd899cebSVijayakannan Ayyathurai The platform driver for Intel Keem Bay PWM controller. 272bd899cebSVijayakannan Ayyathurai 273bd899cebSVijayakannan Ayyathurai To compile this driver as a module, choose M here: the module 274bd899cebSVijayakannan Ayyathurai will be called pwm-keembay. 275bd899cebSVijayakannan Ayyathurai 276af66b3c0SMilo Kimconfig PWM_LP3943 277af66b3c0SMilo Kim tristate "TI/National Semiconductor LP3943 PWM support" 278af66b3c0SMilo Kim depends on MFD_LP3943 279af66b3c0SMilo Kim help 280af66b3c0SMilo Kim Generic PWM framework driver for LP3943 which supports two PWM 281af66b3c0SMilo Kim channels. 282af66b3c0SMilo Kim 283af66b3c0SMilo Kim To compile this driver as a module, choose M here: the module 284af66b3c0SMilo Kim will be called pwm-lp3943. 285af66b3c0SMilo Kim 286841e6f90SAriel D'Alessandroconfig PWM_LPC18XX_SCT 287841e6f90SAriel D'Alessandro tristate "LPC18xx/43xx PWM/SCT support" 288e96c0ff4SKrzysztof Kozlowski depends on ARCH_LPC18XX || COMPILE_TEST 289841e6f90SAriel D'Alessandro help 290841e6f90SAriel D'Alessandro Generic PWM framework driver for NXP LPC18xx PWM/SCT which 291841e6f90SAriel D'Alessandro supports 16 channels. 292841e6f90SAriel D'Alessandro A maximum of 15 channels can be requested simultaneously and 293841e6f90SAriel D'Alessandro must have the same period. 294841e6f90SAriel D'Alessandro 295841e6f90SAriel D'Alessandro To compile this driver as a module, choose M here: the module 296841e6f90SAriel D'Alessandro will be called pwm-lpc18xx-sct. 297841e6f90SAriel D'Alessandro 2982132fa8dSAlexandre Pereira da Silvaconfig PWM_LPC32XX 2992132fa8dSAlexandre Pereira da Silva tristate "LPC32XX PWM support" 300e96c0ff4SKrzysztof Kozlowski depends on ARCH_LPC32XX || COMPILE_TEST 3012132fa8dSAlexandre Pereira da Silva help 3022132fa8dSAlexandre Pereira da Silva Generic PWM framework driver for LPC32XX. The LPC32XX SOC has two 3032132fa8dSAlexandre Pereira da Silva PWM controllers. 3042132fa8dSAlexandre Pereira da Silva 3052132fa8dSAlexandre Pereira da Silva To compile this driver as a module, choose M here: the module 3062132fa8dSAlexandre Pereira da Silva will be called pwm-lpc32xx. 3072132fa8dSAlexandre Pereira da Silva 308d16a5aa9SMika Westerbergconfig PWM_LPSS 3096f90a00cSAndy Shevchenko tristate 310d16a5aa9SMika Westerberg 311c558e39eSAndy Shevchenkoconfig PWM_LPSS_PCI 312c558e39eSAndy Shevchenko tristate "Intel LPSS PWM PCI driver" 3136f90a00cSAndy Shevchenko depends on X86 && PCI 3146f90a00cSAndy Shevchenko select PWM_LPSS 315c558e39eSAndy Shevchenko help 316c558e39eSAndy Shevchenko The PCI driver for Intel Low Power Subsystem PWM controller. 317c558e39eSAndy Shevchenko 318c558e39eSAndy Shevchenko To compile this driver as a module, choose M here: the module 319c558e39eSAndy Shevchenko will be called pwm-lpss-pci. 320c558e39eSAndy Shevchenko 321c558e39eSAndy Shevchenkoconfig PWM_LPSS_PLATFORM 322c558e39eSAndy Shevchenko tristate "Intel LPSS PWM platform driver" 3236f90a00cSAndy Shevchenko depends on X86 && ACPI 3246f90a00cSAndy Shevchenko select PWM_LPSS 325c558e39eSAndy Shevchenko help 326c558e39eSAndy Shevchenko The platform driver for Intel Low Power Subsystem PWM controller. 327c558e39eSAndy Shevchenko 328c558e39eSAndy Shevchenko To compile this driver as a module, choose M here: the module 329c558e39eSAndy Shevchenko will be called pwm-lpss-platform. 330c558e39eSAndy Shevchenko 331211ed630SNeil Armstrongconfig PWM_MESON 332211ed630SNeil Armstrong tristate "Amlogic Meson PWM driver" 333e96c0ff4SKrzysztof Kozlowski depends on ARCH_MESON || COMPILE_TEST 334e96c0ff4SKrzysztof Kozlowski depends on COMMON_CLK 335211ed630SNeil Armstrong help 336211ed630SNeil Armstrong The platform driver for Amlogic Meson PWM controller. 337211ed630SNeil Armstrong 338211ed630SNeil Armstrong To compile this driver as a module, choose M here: the module 339211ed630SNeil Armstrong will be called pwm-meson. 340211ed630SNeil Armstrong 3417e3b7dc7SYH Huangconfig PWM_MTK_DISP 3427e3b7dc7SYH Huang tristate "MediaTek display PWM driver" 3437e3b7dc7SYH Huang depends on ARCH_MEDIATEK || COMPILE_TEST 3447e3b7dc7SYH Huang depends on HAS_IOMEM 3457e3b7dc7SYH Huang help 3467e3b7dc7SYH Huang Generic PWM framework driver for MediaTek disp-pwm device. 3477e3b7dc7SYH Huang The PWM is used to control the backlight brightness for display. 3487e3b7dc7SYH Huang 3497e3b7dc7SYH Huang To compile this driver as a module, choose M here: the module 3507e3b7dc7SYH Huang will be called pwm-mtk-disp. 3517e3b7dc7SYH Huang 352caf065f8SJohn Crispinconfig PWM_MEDIATEK 353caf065f8SJohn Crispin tristate "MediaTek PWM support" 3548cdc43afSJohn Crispin depends on ARCH_MEDIATEK || RALINK || COMPILE_TEST 355caf065f8SJohn Crispin help 356caf065f8SJohn Crispin Generic PWM framework driver for Mediatek ARM SoC. 357caf065f8SJohn Crispin 358caf065f8SJohn Crispin To compile this driver as a module, choose M here: the module 359aa12d7a7SZhi Mao will be called pwm-mediatek. 360caf065f8SJohn Crispin 3614dce82c1SShawn Guoconfig PWM_MXS 3624dce82c1SShawn Guo tristate "Freescale MXS PWM support" 363e96c0ff4SKrzysztof Kozlowski depends on OF 364e96c0ff4SKrzysztof Kozlowski depends on ARCH_MXS || COMPILE_TEST 36501bf32e9SShawn Guo select STMP_DEVICE 3664dce82c1SShawn Guo help 3674dce82c1SShawn Guo Generic PWM framework driver for Freescale MXS. 3684dce82c1SShawn Guo 3694dce82c1SShawn Guo To compile this driver as a module, choose M here: the module 3704dce82c1SShawn Guo will be called pwm-mxs. 3714dce82c1SShawn Guo 3726604c655SNeil Armstrongconfig PWM_OMAP_DMTIMER 3736604c655SNeil Armstrong tristate "OMAP Dual-Mode Timer PWM support" 3749f2919e9SUwe Kleine-König depends on OF 3759f2919e9SUwe Kleine-König depends on OMAP_DM_TIMER || COMPILE_TEST 3766604c655SNeil Armstrong help 3776604c655SNeil Armstrong Generic PWM framework driver for OMAP Dual-Mode Timer PWM output 3786604c655SNeil Armstrong 3796604c655SNeil Armstrong To compile this driver as a module, choose M here: the module 3806604c655SNeil Armstrong will be called pwm-omap-dmtimer 3816604c655SNeil Armstrong 38288b613e6SSteffen Trumtrarconfig PWM_PCA9685 38388b613e6SSteffen Trumtrar tristate "NXP PCA9685 PWM driver" 384912b8439SAndy Shevchenko depends on I2C 3852c80a492SAxel Lin select REGMAP_I2C 38688b613e6SSteffen Trumtrar help 38788b613e6SSteffen Trumtrar Generic PWM framework driver for NXP PCA9685 LED controller. 38888b613e6SSteffen Trumtrar 38988b613e6SSteffen Trumtrar To compile this driver as a module, choose M here: the module 39088b613e6SSteffen Trumtrar will be called pwm-pca9685. 39188b613e6SSteffen Trumtrar 39217b2b478SThierry Redingconfig PWM_PXA 39317b2b478SThierry Reding tristate "PXA PWM support" 394e96c0ff4SKrzysztof Kozlowski depends on ARCH_PXA || COMPILE_TEST 39517b2b478SThierry Reding help 39617b2b478SThierry Reding Generic PWM framework driver for PXA. 39717b2b478SThierry Reding 39817b2b478SThierry Reding To compile this driver as a module, choose M here: the module 39917b2b478SThierry Reding will be called pwm-pxa. 40017b2b478SThierry Reding 401ed6c1476SYoshihiro Shimodaconfig PWM_RCAR 402ed6c1476SYoshihiro Shimoda tristate "Renesas R-Car PWM support" 40348169988SRyo Kodama depends on ARCH_RENESAS || COMPILE_TEST 404ed6c1476SYoshihiro Shimoda depends on HAS_IOMEM 405ed6c1476SYoshihiro Shimoda help 406ed6c1476SYoshihiro Shimoda This driver exposes the PWM Timer controller found in Renesas 407ed6c1476SYoshihiro Shimoda R-Car chips through the PWM API. 408ed6c1476SYoshihiro Shimoda 409ed6c1476SYoshihiro Shimoda To compile this driver as a module, choose M here: the module 410ed6c1476SYoshihiro Shimoda will be called pwm-rcar. 411ed6c1476SYoshihiro Shimoda 41299b82abbSLaurent Pinchartconfig PWM_RENESAS_TPU 41399b82abbSLaurent Pinchart tristate "Renesas TPU PWM support" 41403d99531SSimon Horman depends on ARCH_RENESAS || COMPILE_TEST 4152974b098SRichard Weinberger depends on HAS_IOMEM 41699b82abbSLaurent Pinchart help 41799b82abbSLaurent Pinchart This driver exposes the Timer Pulse Unit (TPU) PWM controller found 41899b82abbSLaurent Pinchart in Renesas chips through the PWM API. 41999b82abbSLaurent Pinchart 42099b82abbSLaurent Pinchart To compile this driver as a module, choose M here: the module 42199b82abbSLaurent Pinchart will be called pwm-renesas-tpu. 42299b82abbSLaurent Pinchart 423101353c8SBeniamino Galvaniconfig PWM_ROCKCHIP 424101353c8SBeniamino Galvani tristate "Rockchip PWM support" 425e96c0ff4SKrzysztof Kozlowski depends on ARCH_ROCKCHIP || COMPILE_TEST 426101353c8SBeniamino Galvani help 427101353c8SBeniamino Galvani Generic PWM framework driver for the PWM controller found on 428101353c8SBeniamino Galvani Rockchip SoCs. 429101353c8SBeniamino Galvani 430215c29d3SSascha Hauerconfig PWM_SAMSUNG 431b133d2a1SThierry Reding tristate "Samsung PWM support" 432db8230d2SArnd Bergmann depends on PLAT_SAMSUNG || ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST 433215c29d3SSascha Hauer help 434215c29d3SSascha Hauer Generic PWM framework driver for Samsung. 435215c29d3SSascha Hauer 436215c29d3SSascha Hauer To compile this driver as a module, choose M here: the module 437215c29d3SSascha Hauer will be called pwm-samsung. 438215c29d3SSascha Hauer 4399e37a53eSYash Shahconfig PWM_SIFIVE 4409e37a53eSYash Shah tristate "SiFive PWM support" 4419e37a53eSYash Shah depends on OF 4429e37a53eSYash Shah depends on COMMON_CLK 4439e37a53eSYash Shah depends on RISCV || COMPILE_TEST 4449e37a53eSYash Shah help 4459e37a53eSYash Shah Generic PWM framework driver for SiFive SoCs. 4469e37a53eSYash Shah 4479e37a53eSYash Shah To compile this driver as a module, choose M here: the module 4489e37a53eSYash Shah will be called pwm-sifive. 4499e37a53eSYash Shah 4509db33d22SMichael Walleconfig PWM_SL28CPLD 4519db33d22SMichael Walle tristate "Kontron sl28cpld PWM support" 4529db33d22SMichael Walle depends on MFD_SL28CPLD || COMPILE_TEST 4539db33d22SMichael Walle help 4549db33d22SMichael Walle Generic PWM framework driver for board management controller 4559db33d22SMichael Walle found on the Kontron sl28 CPLD. 4569db33d22SMichael Walle 4579db33d22SMichael Walle To compile this driver as a module, choose M here: the module 4589db33d22SMichael Walle will be called pwm-sl28cpld. 4599db33d22SMichael Walle 460ce20364bSShiraz Hashimconfig PWM_SPEAR 461ce20364bSShiraz Hashim tristate "STMicroelectronics SPEAr PWM support" 462e96c0ff4SKrzysztof Kozlowski depends on PLAT_SPEAR || COMPILE_TEST 463ce20364bSShiraz Hashim depends on OF 464ce20364bSShiraz Hashim help 465ce20364bSShiraz Hashim Generic PWM framework driver for the PWM controller on ST 466ce20364bSShiraz Hashim SPEAr SoCs. 467ce20364bSShiraz Hashim 468ce20364bSShiraz Hashim To compile this driver as a module, choose M here: the module 469ce20364bSShiraz Hashim will be called pwm-spear. 470ce20364bSShiraz Hashim 4718aae4b02SBaolin Wangconfig PWM_SPRD 4728aae4b02SBaolin Wang tristate "Spreadtrum PWM support" 4738aae4b02SBaolin Wang depends on ARCH_SPRD || COMPILE_TEST 4748aae4b02SBaolin Wang depends on HAS_IOMEM 4758aae4b02SBaolin Wang help 4768aae4b02SBaolin Wang Generic PWM framework driver for the PWM controller on 4778aae4b02SBaolin Wang Spreadtrum SoCs. 4788aae4b02SBaolin Wang 4798aae4b02SBaolin Wang To compile this driver as a module, choose M here: the module 4808aae4b02SBaolin Wang will be called pwm-sprd. 4818aae4b02SBaolin Wang 482378fe115SLee Jonesconfig PWM_STI 483378fe115SLee Jones tristate "STiH4xx PWM support" 484e96c0ff4SKrzysztof Kozlowski depends on ARCH_STI || COMPILE_TEST 485378fe115SLee Jones depends on OF 486378fe115SLee Jones help 487378fe115SLee Jones Generic PWM framework driver for STiH4xx SoCs. 488378fe115SLee Jones 489378fe115SLee Jones To compile this driver as a module, choose M here: the module 490378fe115SLee Jones will be called pwm-sti. 491378fe115SLee Jones 4927edf7369SBenjamin Gaignardconfig PWM_STM32 4937edf7369SBenjamin Gaignard tristate "STMicroelectronics STM32 PWM" 494e96c0ff4SKrzysztof Kozlowski depends on MFD_STM32_TIMERS || COMPILE_TEST 4957edf7369SBenjamin Gaignard help 4967edf7369SBenjamin Gaignard Generic PWM framework driver for STM32 SoCs. 4977edf7369SBenjamin Gaignard 4987edf7369SBenjamin Gaignard To compile this driver as a module, choose M here: the module 4997edf7369SBenjamin Gaignard will be called pwm-stm32. 5007edf7369SBenjamin Gaignard 501e70a540bSFabrice Gasnierconfig PWM_STM32_LP 502e70a540bSFabrice Gasnier tristate "STMicroelectronics STM32 PWM LP" 503e70a540bSFabrice Gasnier depends on MFD_STM32_LPTIMER || COMPILE_TEST 504e70a540bSFabrice Gasnier help 505e70a540bSFabrice Gasnier Generic PWM framework driver for STMicroelectronics STM32 SoCs 506e70a540bSFabrice Gasnier with Low-Power Timer (LPTIM). 507e70a540bSFabrice Gasnier 508e70a540bSFabrice Gasnier To compile this driver as a module, choose M here: the module 509e70a540bSFabrice Gasnier will be called pwm-stm32-lp. 510e70a540bSFabrice Gasnier 511ef1f09ecSLinus Walleijconfig PWM_STMPE 512ef1f09ecSLinus Walleij bool "STMPE expander PWM export" 513ef1f09ecSLinus Walleij depends on MFD_STMPE 514ef1f09ecSLinus Walleij help 515ef1f09ecSLinus Walleij This enables support for the PWMs found in the STMPE I/O 516ef1f09ecSLinus Walleij expanders. 517ef1f09ecSLinus Walleij 51809853ce7SAlexandre Belloniconfig PWM_SUN4I 51909853ce7SAlexandre Belloni tristate "Allwinner PWM support" 52009853ce7SAlexandre Belloni depends on ARCH_SUNXI || COMPILE_TEST 52109853ce7SAlexandre Belloni depends on HAS_IOMEM && COMMON_CLK 52209853ce7SAlexandre Belloni help 52309853ce7SAlexandre Belloni Generic PWM framework driver for Allwinner SoCs. 52409853ce7SAlexandre Belloni 52509853ce7SAlexandre Belloni To compile this driver as a module, choose M here: the module 52609853ce7SAlexandre Belloni will be called pwm-sun4i. 52709853ce7SAlexandre Belloni 5280134b932SThierry Redingconfig PWM_TEGRA 5290134b932SThierry Reding tristate "NVIDIA Tegra PWM support" 530e96c0ff4SKrzysztof Kozlowski depends on ARCH_TEGRA || COMPILE_TEST 5310134b932SThierry Reding help 5320134b932SThierry Reding Generic PWM framework driver for the PWFM controller found on NVIDIA 5330134b932SThierry Reding Tegra SoCs. 5340134b932SThierry Reding 5350134b932SThierry Reding To compile this driver as a module, choose M here: the module 5360134b932SThierry Reding will be called pwm-tegra. 5370134b932SThierry Reding 5388e0cb05bSPhilip, Avinashconfig PWM_TIECAP 5398e0cb05bSPhilip, Avinash tristate "ECAP PWM support" 540e96c0ff4SKrzysztof Kozlowski depends on ARCH_OMAP2PLUS || ARCH_DAVINCI_DA8XX || ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST 5418e0cb05bSPhilip, Avinash help 5426f37709fSVignesh R PWM driver support for the ECAP APWM controller found on TI SOCs 5438e0cb05bSPhilip, Avinash 5448e0cb05bSPhilip, Avinash To compile this driver as a module, choose M here: the module 5458e0cb05bSPhilip, Avinash will be called pwm-tiecap. 5468e0cb05bSPhilip, Avinash 54719891b20SPhilip, Avinashconfig PWM_TIEHRPWM 54819891b20SPhilip, Avinash tristate "EHRPWM PWM support" 549e96c0ff4SKrzysztof Kozlowski depends on ARCH_OMAP2PLUS || ARCH_DAVINCI_DA8XX || ARCH_K3 || COMPILE_TEST 55019891b20SPhilip, Avinash help 551efc80fb3SVignesh Raghavendra PWM driver support for the EHRPWM controller found on TI SOCs 55219891b20SPhilip, Avinash 55319891b20SPhilip, Avinash To compile this driver as a module, choose M here: the module 55419891b20SPhilip, Avinash will be called pwm-tiehrpwm. 55519891b20SPhilip, Avinash 5563744c263SPeter Ujfalusiconfig PWM_TWL 5573744c263SPeter Ujfalusi tristate "TWL4030/6030 PWM support" 5583744c263SPeter Ujfalusi depends on TWL4030_CORE 5593744c263SPeter Ujfalusi help 5603744c263SPeter Ujfalusi Generic PWM framework driver for TWL4030/6030. 5613744c263SPeter Ujfalusi 5623744c263SPeter Ujfalusi To compile this driver as a module, choose M here: the module 5633744c263SPeter Ujfalusi will be called pwm-twl. 5643744c263SPeter Ujfalusi 565aa765647SPeter Ujfalusiconfig PWM_TWL_LED 566aa765647SPeter Ujfalusi tristate "TWL4030/6030 PWM support for LED drivers" 567aa765647SPeter Ujfalusi depends on TWL4030_CORE 568aa765647SPeter Ujfalusi help 569aa765647SPeter Ujfalusi Generic PWM framework driver for TWL4030/6030 LED terminals. 570aa765647SPeter Ujfalusi 571aa765647SPeter Ujfalusi To compile this driver as a module, choose M here: the module 572aa765647SPeter Ujfalusi will be called pwm-twl-led. 573aa765647SPeter Ujfalusi 574a245ccebSSascha Hauerconfig PWM_VT8500 575b133d2a1SThierry Reding tristate "vt8500 PWM support" 576e96c0ff4SKrzysztof Kozlowski depends on ARCH_VT8500 || COMPILE_TEST 577a245ccebSSascha Hauer help 578a245ccebSSascha Hauer Generic PWM framework driver for vt8500. 579a245ccebSSascha Hauer 580a245ccebSSascha Hauer To compile this driver as a module, choose M here: the module 581a245ccebSSascha Hauer will be called pwm-vt8500. 582a245ccebSSascha Hauer 5834836193cSShawn Guoconfig PWM_ZX 5844836193cSShawn Guo tristate "ZTE ZX PWM support" 585e96c0ff4SKrzysztof Kozlowski depends on ARCH_ZX || COMPILE_TEST 5864836193cSShawn Guo help 5874836193cSShawn Guo Generic PWM framework driver for ZTE ZX family SoCs. 5884836193cSShawn Guo 5894836193cSShawn Guo To compile this driver as a module, choose M here: the module 5904836193cSShawn Guo will be called pwm-zx. 5914836193cSShawn Guo 5920c2498f1SSascha Hauerendif 593