aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm/pwm-fsl-ftm.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pwm/pwm-fsl-ftm.c')
-rw-r--r--drivers/pwm/pwm-fsl-ftm.c32
1 files changed, 30 insertions, 2 deletions
diff --git a/drivers/pwm/pwm-fsl-ftm.c b/drivers/pwm/pwm-fsl-ftm.c
index bcc55edad9ec..4d1d116250f6 100644
--- a/drivers/pwm/pwm-fsl-ftm.c
+++ b/drivers/pwm/pwm-fsl-ftm.c
@@ -16,6 +16,7 @@
16#include <linux/module.h> 16#include <linux/module.h>
17#include <linux/mutex.h> 17#include <linux/mutex.h>
18#include <linux/of_address.h> 18#include <linux/of_address.h>
19#include <linux/of_device.h>
19#include <linux/platform_device.h> 20#include <linux/platform_device.h>
20#include <linux/pm.h> 21#include <linux/pm.h>
21#include <linux/pwm.h> 22#include <linux/pwm.h>
@@ -75,6 +76,10 @@ enum fsl_pwm_clk {
75 FSL_PWM_CLK_MAX 76 FSL_PWM_CLK_MAX
76}; 77};
77 78
79struct fsl_ftm_soc {
80 bool has_enable_bits;
81};
82
78struct fsl_pwm_chip { 83struct fsl_pwm_chip {
79 struct pwm_chip chip; 84 struct pwm_chip chip;
80 85
@@ -89,6 +94,8 @@ struct fsl_pwm_chip {
89 94
90 struct clk *ipg_clk; 95 struct clk *ipg_clk;
91 struct clk *clk[FSL_PWM_CLK_MAX]; 96 struct clk *clk[FSL_PWM_CLK_MAX];
97
98 const struct fsl_ftm_soc *soc;
92}; 99};
93 100
94static inline struct fsl_pwm_chip *to_fsl_chip(struct pwm_chip *chip) 101static inline struct fsl_pwm_chip *to_fsl_chip(struct pwm_chip *chip)
@@ -98,15 +105,31 @@ static inline struct fsl_pwm_chip *to_fsl_chip(struct pwm_chip *chip)
98 105
99static int fsl_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm) 106static int fsl_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm)
100{ 107{
108 int ret;
101 struct fsl_pwm_chip *fpc = to_fsl_chip(chip); 109 struct fsl_pwm_chip *fpc = to_fsl_chip(chip);
102 110
103 return clk_prepare_enable(fpc->ipg_clk); 111 ret = clk_prepare_enable(fpc->ipg_clk);
112 if (!ret && fpc->soc->has_enable_bits) {
113 mutex_lock(&fpc->lock);
114 regmap_update_bits(fpc->regmap, FTM_SC, BIT(pwm->hwpwm + 16),
115 BIT(pwm->hwpwm + 16));
116 mutex_unlock(&fpc->lock);
117 }
118
119 return ret;
104} 120}
105 121
106static void fsl_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) 122static void fsl_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
107{ 123{
108 struct fsl_pwm_chip *fpc = to_fsl_chip(chip); 124 struct fsl_pwm_chip *fpc = to_fsl_chip(chip);
109 125
126 if (fpc->soc->has_enable_bits) {
127 mutex_lock(&fpc->lock);
128 regmap_update_bits(fpc->regmap, FTM_SC, BIT(pwm->hwpwm + 16),
129 0);
130 mutex_unlock(&fpc->lock);
131 }
132
110 clk_disable_unprepare(fpc->ipg_clk); 133 clk_disable_unprepare(fpc->ipg_clk);
111} 134}
112 135
@@ -409,6 +432,7 @@ static int fsl_pwm_probe(struct platform_device *pdev)
409 432
410 mutex_init(&fpc->lock); 433 mutex_init(&fpc->lock);
411 434
435 fpc->soc = of_device_get_match_data(&pdev->dev);
412 fpc->chip.dev = &pdev->dev; 436 fpc->chip.dev = &pdev->dev;
413 437
414 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 438 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
@@ -534,8 +558,12 @@ static const struct dev_pm_ops fsl_pwm_pm_ops = {
534 SET_SYSTEM_SLEEP_PM_OPS(fsl_pwm_suspend, fsl_pwm_resume) 558 SET_SYSTEM_SLEEP_PM_OPS(fsl_pwm_suspend, fsl_pwm_resume)
535}; 559};
536 560
561static const struct fsl_ftm_soc vf610_ftm_pwm = {
562 .has_enable_bits = false,
563};
564
537static const struct of_device_id fsl_pwm_dt_ids[] = { 565static const struct of_device_id fsl_pwm_dt_ids[] = {
538 { .compatible = "fsl,vf610-ftm-pwm", }, 566 { .compatible = "fsl,vf610-ftm-pwm", .data = &vf610_ftm_pwm },
539 { /* sentinel */ } 567 { /* sentinel */ }
540}; 568};
541MODULE_DEVICE_TABLE(of, fsl_pwm_dt_ids); 569MODULE_DEVICE_TABLE(of, fsl_pwm_dt_ids);