blob: 9a596324ebef8a1bede6324083aefc7315520c44 [file] [log] [blame]
Shawn Guo4dce82c2012-04-04 10:50:52 +08001/*
2 * Copyright 2012 Freescale Semiconductor, Inc.
3 *
4 * The code contained herein is licensed under the GNU General Public
5 * License. You may obtain a copy of the GNU General Public License
6 * Version 2 or later at the following locations:
7 *
8 * http://www.opensource.org/licenses/gpl-license.html
9 * http://www.gnu.org/copyleft/gpl.html
10 */
11
12#include <linux/clk.h>
13#include <linux/err.h>
14#include <linux/io.h>
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/of.h>
18#include <linux/of_address.h>
19#include <linux/platform_device.h>
20#include <linux/pwm.h>
21#include <linux/slab.h>
Shawn Guo01bf32e2012-06-26 16:58:09 +080022#include <linux/stmp_device.h>
Shawn Guo4dce82c2012-04-04 10:50:52 +080023
24#define SET 0x4
25#define CLR 0x8
26#define TOG 0xc
27
28#define PWM_CTRL 0x0
29#define PWM_ACTIVE0 0x10
30#define PWM_PERIOD0 0x20
31#define PERIOD_PERIOD(p) ((p) & 0xffff)
32#define PERIOD_PERIOD_MAX 0x10000
33#define PERIOD_ACTIVE_HIGH (3 << 16)
34#define PERIOD_INACTIVE_LOW (2 << 18)
35#define PERIOD_CDIV(div) (((div) & 0x7) << 20)
36#define PERIOD_CDIV_MAX 8
37
Gaetan Hug24ccea12015-03-11 13:08:12 +010038static const unsigned int cdiv[PERIOD_CDIV_MAX] = {
39 1, 2, 4, 8, 16, 64, 256, 1024
40};
41
Shawn Guo4dce82c2012-04-04 10:50:52 +080042struct mxs_pwm_chip {
43 struct pwm_chip chip;
Shawn Guo4dce82c2012-04-04 10:50:52 +080044 struct clk *clk;
45 void __iomem *base;
46};
47
48#define to_mxs_pwm_chip(_chip) container_of(_chip, struct mxs_pwm_chip, chip)
49
50static int mxs_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
51 int duty_ns, int period_ns)
52{
53 struct mxs_pwm_chip *mxs = to_mxs_pwm_chip(chip);
54 int ret, div = 0;
55 unsigned int period_cycles, duty_cycles;
56 unsigned long rate;
57 unsigned long long c;
58
59 rate = clk_get_rate(mxs->clk);
60 while (1) {
Gaetan Hug24ccea12015-03-11 13:08:12 +010061 c = rate / cdiv[div];
Shawn Guo4dce82c2012-04-04 10:50:52 +080062 c = c * period_ns;
63 do_div(c, 1000000000);
64 if (c < PERIOD_PERIOD_MAX)
65 break;
66 div++;
Gaetan Hug24ccea12015-03-11 13:08:12 +010067 if (div >= PERIOD_CDIV_MAX)
Shawn Guo4dce82c2012-04-04 10:50:52 +080068 return -EINVAL;
69 }
70
71 period_cycles = c;
72 c *= duty_ns;
73 do_div(c, period_ns);
74 duty_cycles = c;
75
76 /*
77 * If the PWM channel is disabled, make sure to turn on the clock
78 * before writing the register. Otherwise, keep it enabled.
79 */
Boris Brezillon5c312522015-07-01 10:21:47 +020080 if (!pwm_is_enabled(pwm)) {
Shawn Guo4dce82c2012-04-04 10:50:52 +080081 ret = clk_prepare_enable(mxs->clk);
82 if (ret)
83 return ret;
84 }
85
86 writel(duty_cycles << 16,
87 mxs->base + PWM_ACTIVE0 + pwm->hwpwm * 0x20);
88 writel(PERIOD_PERIOD(period_cycles) | PERIOD_ACTIVE_HIGH |
89 PERIOD_INACTIVE_LOW | PERIOD_CDIV(div),
90 mxs->base + PWM_PERIOD0 + pwm->hwpwm * 0x20);
91
92 /*
93 * If the PWM is not enabled, turn the clock off again to save power.
94 */
Boris Brezillon5c312522015-07-01 10:21:47 +020095 if (!pwm_is_enabled(pwm))
Shawn Guo4dce82c2012-04-04 10:50:52 +080096 clk_disable_unprepare(mxs->clk);
97
98 return 0;
99}
100
101static int mxs_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
102{
103 struct mxs_pwm_chip *mxs = to_mxs_pwm_chip(chip);
104 int ret;
105
106 ret = clk_prepare_enable(mxs->clk);
107 if (ret)
108 return ret;
109
110 writel(1 << pwm->hwpwm, mxs->base + PWM_CTRL + SET);
111
112 return 0;
113}
114
115static void mxs_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
116{
117 struct mxs_pwm_chip *mxs = to_mxs_pwm_chip(chip);
118
119 writel(1 << pwm->hwpwm, mxs->base + PWM_CTRL + CLR);
120
121 clk_disable_unprepare(mxs->clk);
122}
123
124static const struct pwm_ops mxs_pwm_ops = {
125 .config = mxs_pwm_config,
126 .enable = mxs_pwm_enable,
127 .disable = mxs_pwm_disable,
128 .owner = THIS_MODULE,
129};
130
131static int mxs_pwm_probe(struct platform_device *pdev)
132{
133 struct device_node *np = pdev->dev.of_node;
134 struct mxs_pwm_chip *mxs;
Shawn Guo22d260b2012-06-26 16:58:10 +0800135 struct resource *res;
Shawn Guo4dce82c2012-04-04 10:50:52 +0800136 int ret;
137
138 mxs = devm_kzalloc(&pdev->dev, sizeof(*mxs), GFP_KERNEL);
139 if (!mxs)
140 return -ENOMEM;
141
Shawn Guo22d260b2012-06-26 16:58:10 +0800142 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding6d4294d2013-01-21 11:09:16 +0100143 mxs->base = devm_ioremap_resource(&pdev->dev, res);
144 if (IS_ERR(mxs->base))
145 return PTR_ERR(mxs->base);
Shawn Guo4dce82c2012-04-04 10:50:52 +0800146
Shawn Guo22d260b2012-06-26 16:58:10 +0800147 mxs->clk = devm_clk_get(&pdev->dev, NULL);
148 if (IS_ERR(mxs->clk))
149 return PTR_ERR(mxs->clk);
Shawn Guo4dce82c2012-04-04 10:50:52 +0800150
151 mxs->chip.dev = &pdev->dev;
152 mxs->chip.ops = &mxs_pwm_ops;
153 mxs->chip.base = -1;
Shawn Guobd9c1b62014-04-08 19:29:57 +0800154 mxs->chip.can_sleep = true;
Shawn Guo4dce82c2012-04-04 10:50:52 +0800155 ret = of_property_read_u32(np, "fsl,pwm-number", &mxs->chip.npwm);
156 if (ret < 0) {
157 dev_err(&pdev->dev, "failed to get pwm number: %d\n", ret);
Shawn Guo22d260b2012-06-26 16:58:10 +0800158 return ret;
Shawn Guo4dce82c2012-04-04 10:50:52 +0800159 }
160
161 ret = pwmchip_add(&mxs->chip);
162 if (ret < 0) {
163 dev_err(&pdev->dev, "failed to add pwm chip %d\n", ret);
Shawn Guo22d260b2012-06-26 16:58:10 +0800164 return ret;
Shawn Guo4dce82c2012-04-04 10:50:52 +0800165 }
166
Shawn Guo4dce82c2012-04-04 10:50:52 +0800167 platform_set_drvdata(pdev, mxs);
168
Fabio Estevamcfb9e4c2013-07-09 23:25:37 -0300169 ret = stmp_reset_block(mxs->base);
170 if (ret)
171 goto pwm_remove;
Shawn Guo4dce82c2012-04-04 10:50:52 +0800172
173 return 0;
Fabio Estevamcfb9e4c2013-07-09 23:25:37 -0300174
175pwm_remove:
176 pwmchip_remove(&mxs->chip);
177 return ret;
Shawn Guo4dce82c2012-04-04 10:50:52 +0800178}
179
Bill Pemberton77f37912012-11-19 13:26:09 -0500180static int mxs_pwm_remove(struct platform_device *pdev)
Shawn Guo4dce82c2012-04-04 10:50:52 +0800181{
182 struct mxs_pwm_chip *mxs = platform_get_drvdata(pdev);
183
Axel Lin457fd762012-07-01 12:58:00 +0800184 return pwmchip_remove(&mxs->chip);
Shawn Guo4dce82c2012-04-04 10:50:52 +0800185}
186
Thierry Redingf1a88702013-04-18 10:04:14 +0200187static const struct of_device_id mxs_pwm_dt_ids[] = {
Shawn Guo071407e2012-06-26 16:58:08 +0800188 { .compatible = "fsl,imx23-pwm", },
Shawn Guo4dce82c2012-04-04 10:50:52 +0800189 { /* sentinel */ }
190};
191MODULE_DEVICE_TABLE(of, mxs_pwm_dt_ids);
192
193static struct platform_driver mxs_pwm_driver = {
194 .driver = {
195 .name = "mxs-pwm",
Sachin Kamatde02cb82013-09-30 08:56:39 +0530196 .of_match_table = mxs_pwm_dt_ids,
Shawn Guo4dce82c2012-04-04 10:50:52 +0800197 },
198 .probe = mxs_pwm_probe,
Bill Pembertonfd109112012-11-19 13:21:28 -0500199 .remove = mxs_pwm_remove,
Shawn Guo4dce82c2012-04-04 10:50:52 +0800200};
201module_platform_driver(mxs_pwm_driver);
202
203MODULE_ALIAS("platform:mxs-pwm");
204MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
205MODULE_DESCRIPTION("Freescale MXS PWM Driver");
206MODULE_LICENSE("GPL v2");