1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2012 Alexandre Pereira da Silva <aletes.xgr@gmail.com>
9 #include <linux/kernel.h>
10 #include <linux/module.h>
12 #include <linux/of_address.h>
13 #include <linux/platform_device.h>
14 #include <linux/pwm.h>
15 #include <linux/slab.h>
17 struct lpc32xx_pwm_chip {
23 #define PWM_ENABLE BIT(31)
24 #define PWM_PIN_LEVEL BIT(30)
26 #define to_lpc32xx_pwm_chip(_chip) \
27 container_of(_chip, struct lpc32xx_pwm_chip, chip)
29 static int lpc32xx_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
30 int duty_ns, int period_ns)
32 struct lpc32xx_pwm_chip *lpc32xx = to_lpc32xx_pwm_chip(chip);
34 int period_cycles, duty_cycles;
36 c = clk_get_rate(lpc32xx->clk);
38 /* The highest acceptable divisor is 256, which is represented by 0 */
39 period_cycles = div64_u64(c * period_ns,
40 (unsigned long long)NSEC_PER_SEC * 256);
41 if (!period_cycles || period_cycles > 256)
43 if (period_cycles == 256)
46 /* Compute 256 x #duty/period value and care for corner cases */
47 duty_cycles = div64_u64((unsigned long long)(period_ns - duty_ns) * 256,
51 if (duty_cycles > 255)
54 val = readl(lpc32xx->base);
56 val |= (period_cycles << 8) | duty_cycles;
57 writel(val, lpc32xx->base);
62 static int lpc32xx_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
64 struct lpc32xx_pwm_chip *lpc32xx = to_lpc32xx_pwm_chip(chip);
68 ret = clk_prepare_enable(lpc32xx->clk);
72 val = readl(lpc32xx->base);
74 writel(val, lpc32xx->base);
79 static void lpc32xx_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
81 struct lpc32xx_pwm_chip *lpc32xx = to_lpc32xx_pwm_chip(chip);
84 val = readl(lpc32xx->base);
86 writel(val, lpc32xx->base);
88 clk_disable_unprepare(lpc32xx->clk);
91 static int lpc32xx_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
92 const struct pwm_state *state)
96 if (state->polarity != PWM_POLARITY_NORMAL)
99 if (!state->enabled) {
100 if (pwm->state.enabled)
101 lpc32xx_pwm_disable(chip, pwm);
106 err = lpc32xx_pwm_config(pwm->chip, pwm, state->duty_cycle, state->period);
110 if (!pwm->state.enabled)
111 err = lpc32xx_pwm_enable(chip, pwm);
116 static const struct pwm_ops lpc32xx_pwm_ops = {
117 .apply = lpc32xx_pwm_apply,
118 .owner = THIS_MODULE,
121 static int lpc32xx_pwm_probe(struct platform_device *pdev)
123 struct lpc32xx_pwm_chip *lpc32xx;
127 lpc32xx = devm_kzalloc(&pdev->dev, sizeof(*lpc32xx), GFP_KERNEL);
131 lpc32xx->base = devm_platform_ioremap_resource(pdev, 0);
132 if (IS_ERR(lpc32xx->base))
133 return PTR_ERR(lpc32xx->base);
135 lpc32xx->clk = devm_clk_get(&pdev->dev, NULL);
136 if (IS_ERR(lpc32xx->clk))
137 return PTR_ERR(lpc32xx->clk);
139 lpc32xx->chip.dev = &pdev->dev;
140 lpc32xx->chip.ops = &lpc32xx_pwm_ops;
141 lpc32xx->chip.npwm = 1;
143 /* If PWM is disabled, configure the output to the default value */
144 val = readl(lpc32xx->base);
145 val &= ~PWM_PIN_LEVEL;
146 writel(val, lpc32xx->base);
148 ret = devm_pwmchip_add(&pdev->dev, &lpc32xx->chip);
150 dev_err(&pdev->dev, "failed to add PWM chip, error %d\n", ret);
157 static const struct of_device_id lpc32xx_pwm_dt_ids[] = {
158 { .compatible = "nxp,lpc3220-pwm", },
161 MODULE_DEVICE_TABLE(of, lpc32xx_pwm_dt_ids);
163 static struct platform_driver lpc32xx_pwm_driver = {
165 .name = "lpc32xx-pwm",
166 .of_match_table = lpc32xx_pwm_dt_ids,
168 .probe = lpc32xx_pwm_probe,
170 module_platform_driver(lpc32xx_pwm_driver);
172 MODULE_ALIAS("platform:lpc32xx-pwm");
173 MODULE_AUTHOR("Alexandre Pereira da Silva <aletes.xgr@gmail.com>");
174 MODULE_DESCRIPTION("LPC32XX PWM Driver");
175 MODULE_LICENSE("GPL v2");