diff options
author | Anson Huang <anson.huang@nxp.com> | 2019-05-09 15:29:29 +0200 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2019-05-09 17:01:48 +0200 |
commit | 738a1cfec2edb4a6c53ac34fcb29447227dd135e (patch) | |
tree | daffcb27cd031e7cf6b2229af542ca1576826782 /drivers/pwm/Kconfig | |
parent | dt-bindings: pwm: Add i.MX TPM PWM binding (diff) | |
download | linux-738a1cfec2edb4a6c53ac34fcb29447227dd135e.tar.xz linux-738a1cfec2edb4a6c53ac34fcb29447227dd135e.zip |
pwm: Add i.MX TPM PWM driver support
i.MX7ULP has TPM(Low Power Timer/Pulse Width Modulation Module) inside,
it can support multiple PWM channels, all the channels share same
counter and period setting, but each channel can configure its duty and
polarity independently.
There are several TPM modules in i.MX7ULP, the number of channels in TPM
modules are different, it can be read from each TPM module's PARAM
register.
Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm/Kconfig')
-rw-r--r-- | drivers/pwm/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/pwm/Kconfig b/drivers/pwm/Kconfig index c054bd1dba36..1311b54089be 100644 --- a/drivers/pwm/Kconfig +++ b/drivers/pwm/Kconfig @@ -210,6 +210,17 @@ config PWM_IMX27 To compile this driver as a module, choose M here: the module will be called pwm-imx27. +config PWM_IMX_TPM + tristate "i.MX TPM PWM support" + depends on ARCH_MXC || COMPILE_TEST + depends on HAVE_CLK && HAS_IOMEM + help + Generic PWM framework driver for i.MX7ULP TPM module, TPM's full + name is Low Power Timer/Pulse Width Modulation Module. + + To compile this driver as a module, choose M here: the module + will be called pwm-imx-tpm. + config PWM_JZ4740 tristate "Ingenic JZ47xx PWM support" depends on MACH_INGENIC |