Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 1 | /* |
| 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 Guo | 01bf32e | 2012-06-26 16:58:09 +0800 | [diff] [blame] | 22 | #include <linux/stmp_device.h> |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 23 | |
| 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 | |
| 38 | struct mxs_pwm_chip { |
| 39 | struct pwm_chip chip; |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 40 | struct clk *clk; |
| 41 | void __iomem *base; |
| 42 | }; |
| 43 | |
| 44 | #define to_mxs_pwm_chip(_chip) container_of(_chip, struct mxs_pwm_chip, chip) |
| 45 | |
| 46 | static int mxs_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, |
| 47 | int duty_ns, int period_ns) |
| 48 | { |
| 49 | struct mxs_pwm_chip *mxs = to_mxs_pwm_chip(chip); |
| 50 | int ret, div = 0; |
| 51 | unsigned int period_cycles, duty_cycles; |
| 52 | unsigned long rate; |
| 53 | unsigned long long c; |
| 54 | |
| 55 | rate = clk_get_rate(mxs->clk); |
| 56 | while (1) { |
| 57 | c = rate / (1 << div); |
| 58 | c = c * period_ns; |
| 59 | do_div(c, 1000000000); |
| 60 | if (c < PERIOD_PERIOD_MAX) |
| 61 | break; |
| 62 | div++; |
| 63 | if (div > PERIOD_CDIV_MAX) |
| 64 | return -EINVAL; |
| 65 | } |
| 66 | |
| 67 | period_cycles = c; |
| 68 | c *= duty_ns; |
| 69 | do_div(c, period_ns); |
| 70 | duty_cycles = c; |
| 71 | |
| 72 | /* |
| 73 | * If the PWM channel is disabled, make sure to turn on the clock |
| 74 | * before writing the register. Otherwise, keep it enabled. |
| 75 | */ |
| 76 | if (!test_bit(PWMF_ENABLED, &pwm->flags)) { |
| 77 | ret = clk_prepare_enable(mxs->clk); |
| 78 | if (ret) |
| 79 | return ret; |
| 80 | } |
| 81 | |
| 82 | writel(duty_cycles << 16, |
| 83 | mxs->base + PWM_ACTIVE0 + pwm->hwpwm * 0x20); |
| 84 | writel(PERIOD_PERIOD(period_cycles) | PERIOD_ACTIVE_HIGH | |
| 85 | PERIOD_INACTIVE_LOW | PERIOD_CDIV(div), |
| 86 | mxs->base + PWM_PERIOD0 + pwm->hwpwm * 0x20); |
| 87 | |
| 88 | /* |
| 89 | * If the PWM is not enabled, turn the clock off again to save power. |
| 90 | */ |
| 91 | if (!test_bit(PWMF_ENABLED, &pwm->flags)) |
| 92 | clk_disable_unprepare(mxs->clk); |
| 93 | |
| 94 | return 0; |
| 95 | } |
| 96 | |
| 97 | static int mxs_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) |
| 98 | { |
| 99 | struct mxs_pwm_chip *mxs = to_mxs_pwm_chip(chip); |
| 100 | int ret; |
| 101 | |
| 102 | ret = clk_prepare_enable(mxs->clk); |
| 103 | if (ret) |
| 104 | return ret; |
| 105 | |
| 106 | writel(1 << pwm->hwpwm, mxs->base + PWM_CTRL + SET); |
| 107 | |
| 108 | return 0; |
| 109 | } |
| 110 | |
| 111 | static void mxs_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) |
| 112 | { |
| 113 | struct mxs_pwm_chip *mxs = to_mxs_pwm_chip(chip); |
| 114 | |
| 115 | writel(1 << pwm->hwpwm, mxs->base + PWM_CTRL + CLR); |
| 116 | |
| 117 | clk_disable_unprepare(mxs->clk); |
| 118 | } |
| 119 | |
| 120 | static const struct pwm_ops mxs_pwm_ops = { |
| 121 | .config = mxs_pwm_config, |
| 122 | .enable = mxs_pwm_enable, |
| 123 | .disable = mxs_pwm_disable, |
| 124 | .owner = THIS_MODULE, |
| 125 | }; |
| 126 | |
| 127 | static int mxs_pwm_probe(struct platform_device *pdev) |
| 128 | { |
| 129 | struct device_node *np = pdev->dev.of_node; |
| 130 | struct mxs_pwm_chip *mxs; |
Shawn Guo | 22d260b | 2012-06-26 16:58:10 +0800 | [diff] [blame] | 131 | struct resource *res; |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 132 | int ret; |
| 133 | |
| 134 | mxs = devm_kzalloc(&pdev->dev, sizeof(*mxs), GFP_KERNEL); |
| 135 | if (!mxs) |
| 136 | return -ENOMEM; |
| 137 | |
Shawn Guo | 22d260b | 2012-06-26 16:58:10 +0800 | [diff] [blame] | 138 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Thierry Reding | 6d4294d | 2013-01-21 11:09:16 +0100 | [diff] [blame] | 139 | mxs->base = devm_ioremap_resource(&pdev->dev, res); |
| 140 | if (IS_ERR(mxs->base)) |
| 141 | return PTR_ERR(mxs->base); |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 142 | |
Shawn Guo | 22d260b | 2012-06-26 16:58:10 +0800 | [diff] [blame] | 143 | mxs->clk = devm_clk_get(&pdev->dev, NULL); |
| 144 | if (IS_ERR(mxs->clk)) |
| 145 | return PTR_ERR(mxs->clk); |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 146 | |
| 147 | mxs->chip.dev = &pdev->dev; |
| 148 | mxs->chip.ops = &mxs_pwm_ops; |
| 149 | mxs->chip.base = -1; |
Shawn Guo | bd9c1b6 | 2014-04-08 19:29:57 +0800 | [diff] [blame] | 150 | mxs->chip.can_sleep = true; |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 151 | ret = of_property_read_u32(np, "fsl,pwm-number", &mxs->chip.npwm); |
| 152 | if (ret < 0) { |
| 153 | dev_err(&pdev->dev, "failed to get pwm number: %d\n", ret); |
Shawn Guo | 22d260b | 2012-06-26 16:58:10 +0800 | [diff] [blame] | 154 | return ret; |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | ret = pwmchip_add(&mxs->chip); |
| 158 | if (ret < 0) { |
| 159 | dev_err(&pdev->dev, "failed to add pwm chip %d\n", ret); |
Shawn Guo | 22d260b | 2012-06-26 16:58:10 +0800 | [diff] [blame] | 160 | return ret; |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 161 | } |
| 162 | |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 163 | platform_set_drvdata(pdev, mxs); |
| 164 | |
Fabio Estevam | cfb9e4c | 2013-07-09 23:25:37 -0300 | [diff] [blame] | 165 | ret = stmp_reset_block(mxs->base); |
| 166 | if (ret) |
| 167 | goto pwm_remove; |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 168 | |
| 169 | return 0; |
Fabio Estevam | cfb9e4c | 2013-07-09 23:25:37 -0300 | [diff] [blame] | 170 | |
| 171 | pwm_remove: |
| 172 | pwmchip_remove(&mxs->chip); |
| 173 | return ret; |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 174 | } |
| 175 | |
Bill Pemberton | 77f3791 | 2012-11-19 13:26:09 -0500 | [diff] [blame] | 176 | static int mxs_pwm_remove(struct platform_device *pdev) |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 177 | { |
| 178 | struct mxs_pwm_chip *mxs = platform_get_drvdata(pdev); |
| 179 | |
Axel Lin | 457fd76 | 2012-07-01 12:58:00 +0800 | [diff] [blame] | 180 | return pwmchip_remove(&mxs->chip); |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 181 | } |
| 182 | |
Thierry Reding | f1a8870 | 2013-04-18 10:04:14 +0200 | [diff] [blame] | 183 | static const struct of_device_id mxs_pwm_dt_ids[] = { |
Shawn Guo | 071407e | 2012-06-26 16:58:08 +0800 | [diff] [blame] | 184 | { .compatible = "fsl,imx23-pwm", }, |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 185 | { /* sentinel */ } |
| 186 | }; |
| 187 | MODULE_DEVICE_TABLE(of, mxs_pwm_dt_ids); |
| 188 | |
| 189 | static struct platform_driver mxs_pwm_driver = { |
| 190 | .driver = { |
| 191 | .name = "mxs-pwm", |
Sachin Kamat | de02cb8 | 2013-09-30 08:56:39 +0530 | [diff] [blame] | 192 | .of_match_table = mxs_pwm_dt_ids, |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 193 | }, |
| 194 | .probe = mxs_pwm_probe, |
Bill Pemberton | fd10911 | 2012-11-19 13:21:28 -0500 | [diff] [blame] | 195 | .remove = mxs_pwm_remove, |
Shawn Guo | 4dce82c | 2012-04-04 10:50:52 +0800 | [diff] [blame] | 196 | }; |
| 197 | module_platform_driver(mxs_pwm_driver); |
| 198 | |
| 199 | MODULE_ALIAS("platform:mxs-pwm"); |
| 200 | MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>"); |
| 201 | MODULE_DESCRIPTION("Freescale MXS PWM Driver"); |
| 202 | MODULE_LICENSE("GPL v2"); |