4 * Copyright (C) 2012 Texas Instruments, Inc. - http://www.ti.com/
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/module.h>
22 #include <linux/platform_device.h>
23 #include <linux/pwm.h>
25 #include <linux/err.h>
26 #include <linux/clk.h>
27 #include <linux/pm_runtime.h>
29 /* EHRPWM registers and bits definitions */
31 /* Time base module registers */
35 #define TBCTL_RUN_MASK (BIT(15) | BIT(14))
36 #define TBCTL_STOP_NEXT 0
37 #define TBCTL_STOP_ON_CYCLE BIT(14)
38 #define TBCTL_FREE_RUN (BIT(15) | BIT(14))
39 #define TBCTL_PRDLD_MASK BIT(3)
40 #define TBCTL_PRDLD_SHDW 0
41 #define TBCTL_PRDLD_IMDT BIT(3)
42 #define TBCTL_CLKDIV_MASK (BIT(12) | BIT(11) | BIT(10) | BIT(9) | \
44 #define TBCTL_CTRMODE_MASK (BIT(1) | BIT(0))
45 #define TBCTL_CTRMODE_UP 0
46 #define TBCTL_CTRMODE_DOWN BIT(0)
47 #define TBCTL_CTRMODE_UPDOWN BIT(1)
48 #define TBCTL_CTRMODE_FREEZE (BIT(1) | BIT(0))
50 #define TBCTL_HSPCLKDIV_SHIFT 7
51 #define TBCTL_CLKDIV_SHIFT 10
54 #define HSPCLKDIV_MAX 7
55 #define PERIOD_MAX 0xFFFF
57 /* compare module registers */
61 /* Action qualifier module registers */
67 #define AQCTL_CBU_MASK (BIT(9) | BIT(8))
68 #define AQCTL_CBU_FRCLOW BIT(8)
69 #define AQCTL_CBU_FRCHIGH BIT(9)
70 #define AQCTL_CBU_FRCTOGGLE (BIT(9) | BIT(8))
71 #define AQCTL_CAU_MASK (BIT(5) | BIT(4))
72 #define AQCTL_CAU_FRCLOW BIT(4)
73 #define AQCTL_CAU_FRCHIGH BIT(5)
74 #define AQCTL_CAU_FRCTOGGLE (BIT(5) | BIT(4))
75 #define AQCTL_PRD_MASK (BIT(3) | BIT(2))
76 #define AQCTL_PRD_FRCLOW BIT(2)
77 #define AQCTL_PRD_FRCHIGH BIT(3)
78 #define AQCTL_PRD_FRCTOGGLE (BIT(3) | BIT(2))
79 #define AQCTL_ZRO_MASK (BIT(1) | BIT(0))
80 #define AQCTL_ZRO_FRCLOW BIT(0)
81 #define AQCTL_ZRO_FRCHIGH BIT(1)
82 #define AQCTL_ZRO_FRCTOGGLE (BIT(1) | BIT(0))
84 #define AQCTL_CHANA_POLNORMAL (AQCTL_CAU_FRCLOW | AQCTL_PRD_FRCHIGH | \
86 #define AQCTL_CHANA_POLINVERSED (AQCTL_CAU_FRCHIGH | AQCTL_PRD_FRCLOW | \
88 #define AQCTL_CHANB_POLNORMAL (AQCTL_CBU_FRCLOW | AQCTL_PRD_FRCHIGH | \
90 #define AQCTL_CHANB_POLINVERSED (AQCTL_CBU_FRCHIGH | AQCTL_PRD_FRCLOW | \
93 #define AQSFRC_RLDCSF_MASK (BIT(7) | BIT(6))
94 #define AQSFRC_RLDCSF_ZRO 0
95 #define AQSFRC_RLDCSF_PRD BIT(6)
96 #define AQSFRC_RLDCSF_ZROPRD BIT(7)
97 #define AQSFRC_RLDCSF_IMDT (BIT(7) | BIT(6))
99 #define AQCSFRC_CSFB_MASK (BIT(3) | BIT(2))
100 #define AQCSFRC_CSFB_FRCDIS 0
101 #define AQCSFRC_CSFB_FRCLOW BIT(2)
102 #define AQCSFRC_CSFB_FRCHIGH BIT(3)
103 #define AQCSFRC_CSFB_DISSWFRC (BIT(3) | BIT(2))
104 #define AQCSFRC_CSFA_MASK (BIT(1) | BIT(0))
105 #define AQCSFRC_CSFA_FRCDIS 0
106 #define AQCSFRC_CSFA_FRCLOW BIT(0)
107 #define AQCSFRC_CSFA_FRCHIGH BIT(1)
108 #define AQCSFRC_CSFA_DISSWFRC (BIT(1) | BIT(0))
110 #define NUM_PWM_CHANNEL 2 /* EHRPWM channels */
112 struct ehrpwm_pwm_chip {
113 struct pwm_chip chip;
114 unsigned int clk_rate;
115 void __iomem *mmio_base;
116 unsigned long period_cycles[NUM_PWM_CHANNEL];
117 enum pwm_polarity polarity[NUM_PWM_CHANNEL];
120 static inline struct ehrpwm_pwm_chip *to_ehrpwm_pwm_chip(struct pwm_chip *chip)
122 return container_of(chip, struct ehrpwm_pwm_chip, chip);
125 static void ehrpwm_write(void *base, int offset, unsigned int val)
127 writew(val & 0xFFFF, base + offset);
130 static void ehrpwm_modify(void *base, int offset,
131 unsigned short mask, unsigned short val)
133 unsigned short regval;
135 regval = readw(base + offset);
137 regval |= val & mask;
138 writew(regval, base + offset);
142 * set_prescale_div - Set up the prescaler divider function
143 * @rqst_prescaler: prescaler value min
144 * @prescale_div: prescaler value set
145 * @tb_clk_div: Time Base Control prescaler bits
147 static int set_prescale_div(unsigned long rqst_prescaler,
148 unsigned short *prescale_div, unsigned short *tb_clk_div)
150 unsigned int clkdiv, hspclkdiv;
152 for (clkdiv = 0; clkdiv <= CLKDIV_MAX; clkdiv++) {
153 for (hspclkdiv = 0; hspclkdiv <= HSPCLKDIV_MAX; hspclkdiv++) {
156 * calculations for prescaler value :
157 * prescale_div = HSPCLKDIVIDER * CLKDIVIDER.
158 * HSPCLKDIVIDER = 2 ** hspclkdiv
159 * CLKDIVIDER = (1), if clkdiv == 0 *OR*
160 * (2 * clkdiv), if clkdiv != 0
162 * Configure prescale_div value such that period
163 * register value is less than 65535.
166 *prescale_div = (1 << clkdiv) *
167 (hspclkdiv ? (hspclkdiv * 2) : 1);
168 if (*prescale_div > rqst_prescaler) {
169 *tb_clk_div = (clkdiv << TBCTL_CLKDIV_SHIFT) |
170 (hspclkdiv << TBCTL_HSPCLKDIV_SHIFT);
178 static void configure_polarity(struct ehrpwm_pwm_chip *pc, int chan)
181 unsigned short aqctl_val, aqctl_mask;
184 * Configure PWM output to HIGH/LOW level on counter
185 * reaches compare register value and LOW/HIGH level
186 * on counter value reaches period register value and
187 * zero value on counter
191 aqctl_mask = AQCTL_CBU_MASK;
193 if (pc->polarity[chan] == PWM_POLARITY_INVERSED)
194 aqctl_val = AQCTL_CHANB_POLINVERSED;
196 aqctl_val = AQCTL_CHANB_POLNORMAL;
199 aqctl_mask = AQCTL_CAU_MASK;
201 if (pc->polarity[chan] == PWM_POLARITY_INVERSED)
202 aqctl_val = AQCTL_CHANA_POLINVERSED;
204 aqctl_val = AQCTL_CHANA_POLNORMAL;
207 aqctl_mask |= AQCTL_PRD_MASK | AQCTL_ZRO_MASK;
208 ehrpwm_modify(pc->mmio_base, aqctl_reg, aqctl_mask, aqctl_val);
212 * period_ns = 10^9 * (ps_divval * period_cycles) / PWM_CLK_RATE
213 * duty_ns = 10^9 * (ps_divval * duty_cycles) / PWM_CLK_RATE
215 static int ehrpwm_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
216 int duty_ns, int period_ns)
218 struct ehrpwm_pwm_chip *pc = to_ehrpwm_pwm_chip(chip);
219 unsigned long long c;
220 unsigned long period_cycles, duty_cycles;
221 unsigned short ps_divval, tb_divval;
224 if (period_ns > NSEC_PER_SEC)
229 do_div(c, NSEC_PER_SEC);
230 period_cycles = (unsigned long)c;
232 if (period_cycles < 1) {
238 do_div(c, NSEC_PER_SEC);
239 duty_cycles = (unsigned long)c;
243 * Period values should be same for multiple PWM channels as IP uses
244 * same period register for multiple channels.
246 for (i = 0; i < NUM_PWM_CHANNEL; i++) {
247 if (pc->period_cycles[i] &&
248 (pc->period_cycles[i] != period_cycles)) {
250 * Allow channel to reconfigure period if no other
251 * channels being configured.
256 dev_err(chip->dev, "Period value conflicts with channel %d\n",
262 pc->period_cycles[pwm->hwpwm] = period_cycles;
264 /* Configure clock prescaler to support Low frequency PWM wave */
265 if (set_prescale_div(period_cycles/PERIOD_MAX, &ps_divval,
267 dev_err(chip->dev, "Unsupported values\n");
271 pm_runtime_get_sync(chip->dev);
273 /* Update clock prescaler values */
274 ehrpwm_modify(pc->mmio_base, TBCTL, TBCTL_CLKDIV_MASK, tb_divval);
276 /* Update period & duty cycle with presacler division */
277 period_cycles = period_cycles / ps_divval;
278 duty_cycles = duty_cycles / ps_divval;
280 /* Configure shadow loading on Period register */
281 ehrpwm_modify(pc->mmio_base, TBCTL, TBCTL_PRDLD_MASK, TBCTL_PRDLD_SHDW);
283 ehrpwm_write(pc->mmio_base, TBPRD, period_cycles);
285 /* Configure ehrpwm counter for up-count mode */
286 ehrpwm_modify(pc->mmio_base, TBCTL, TBCTL_CTRMODE_MASK,
290 /* Channel 1 configured with compare B register */
293 /* Channel 0 configured with compare A register */
296 ehrpwm_write(pc->mmio_base, cmp_reg, duty_cycles);
298 pm_runtime_put_sync(chip->dev);
302 static int ehrpwm_pwm_set_polarity(struct pwm_chip *chip,
303 struct pwm_device *pwm, enum pwm_polarity polarity)
305 struct ehrpwm_pwm_chip *pc = to_ehrpwm_pwm_chip(chip);
307 /* Configuration of polarity in hardware delayed, do at enable */
308 pc->polarity[pwm->hwpwm] = polarity;
312 static int ehrpwm_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
314 struct ehrpwm_pwm_chip *pc = to_ehrpwm_pwm_chip(chip);
315 unsigned short aqcsfrc_val, aqcsfrc_mask;
317 /* Leave clock enabled on enabling PWM */
318 pm_runtime_get_sync(chip->dev);
320 /* Disabling Action Qualifier on PWM output */
322 aqcsfrc_val = AQCSFRC_CSFB_FRCDIS;
323 aqcsfrc_mask = AQCSFRC_CSFB_MASK;
325 aqcsfrc_val = AQCSFRC_CSFA_FRCDIS;
326 aqcsfrc_mask = AQCSFRC_CSFA_MASK;
329 /* Changes to shadow mode */
330 ehrpwm_modify(pc->mmio_base, AQSFRC, AQSFRC_RLDCSF_MASK,
333 ehrpwm_modify(pc->mmio_base, AQCSFRC, aqcsfrc_mask, aqcsfrc_val);
335 /* Channels polarity can be configured from action qualifier module */
336 configure_polarity(pc, pwm->hwpwm);
338 /* Enable time counter for free_run */
339 ehrpwm_modify(pc->mmio_base, TBCTL, TBCTL_RUN_MASK, TBCTL_FREE_RUN);
343 static void ehrpwm_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
345 struct ehrpwm_pwm_chip *pc = to_ehrpwm_pwm_chip(chip);
346 unsigned short aqcsfrc_val, aqcsfrc_mask;
348 /* Action Qualifier puts PWM output low forcefully */
350 aqcsfrc_val = AQCSFRC_CSFB_FRCLOW;
351 aqcsfrc_mask = AQCSFRC_CSFB_MASK;
353 aqcsfrc_val = AQCSFRC_CSFA_FRCLOW;
354 aqcsfrc_mask = AQCSFRC_CSFA_MASK;
358 * Changes to immediate action on Action Qualifier. This puts
359 * Action Qualifier control on PWM output from next TBCLK
361 ehrpwm_modify(pc->mmio_base, AQSFRC, AQSFRC_RLDCSF_MASK,
364 ehrpwm_modify(pc->mmio_base, AQCSFRC, aqcsfrc_mask, aqcsfrc_val);
366 /* Stop Time base counter */
367 ehrpwm_modify(pc->mmio_base, TBCTL, TBCTL_RUN_MASK, TBCTL_STOP_NEXT);
369 /* Disable clock on PWM disable */
370 pm_runtime_put_sync(chip->dev);
373 static void ehrpwm_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
375 struct ehrpwm_pwm_chip *pc = to_ehrpwm_pwm_chip(chip);
377 if (test_bit(PWMF_ENABLED, &pwm->flags)) {
378 dev_warn(chip->dev, "Removing PWM device without disabling\n");
379 pm_runtime_put_sync(chip->dev);
382 /* set period value to zero on free */
383 pc->period_cycles[pwm->hwpwm] = 0;
386 static const struct pwm_ops ehrpwm_pwm_ops = {
387 .free = ehrpwm_pwm_free,
388 .config = ehrpwm_pwm_config,
389 .set_polarity = ehrpwm_pwm_set_polarity,
390 .enable = ehrpwm_pwm_enable,
391 .disable = ehrpwm_pwm_disable,
392 .owner = THIS_MODULE,
395 static int __devinit ehrpwm_pwm_probe(struct platform_device *pdev)
400 struct ehrpwm_pwm_chip *pc;
402 pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
404 dev_err(&pdev->dev, "failed to allocate memory\n");
408 clk = devm_clk_get(&pdev->dev, "fck");
410 dev_err(&pdev->dev, "failed to get clock\n");
414 pc->clk_rate = clk_get_rate(clk);
416 dev_err(&pdev->dev, "failed to get clock rate\n");
420 pc->chip.dev = &pdev->dev;
421 pc->chip.ops = &ehrpwm_pwm_ops;
423 pc->chip.npwm = NUM_PWM_CHANNEL;
425 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
427 dev_err(&pdev->dev, "no memory resource defined\n");
431 pc->mmio_base = devm_request_and_ioremap(&pdev->dev, r);
433 return -EADDRNOTAVAIL;
435 ret = pwmchip_add(&pc->chip);
437 dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
441 pm_runtime_enable(&pdev->dev);
442 platform_set_drvdata(pdev, pc);
446 static int __devexit ehrpwm_pwm_remove(struct platform_device *pdev)
448 struct ehrpwm_pwm_chip *pc = platform_get_drvdata(pdev);
450 pm_runtime_put_sync(&pdev->dev);
451 pm_runtime_disable(&pdev->dev);
452 return pwmchip_remove(&pc->chip);
455 static struct platform_driver ehrpwm_pwm_driver = {
459 .probe = ehrpwm_pwm_probe,
460 .remove = __devexit_p(ehrpwm_pwm_remove),
463 module_platform_driver(ehrpwm_pwm_driver);
465 MODULE_DESCRIPTION("EHRPWM PWM driver");
466 MODULE_AUTHOR("Texas Instruments");
467 MODULE_LICENSE("GPL");