linux/drivers/pwm/pwm-tiecap.c
<<
>>
Prefs
   1/*
   2 * ECAP PWM driver
   3 *
   4 * Copyright (C) 2012 Texas Instruments, Inc. - http://www.ti.com/
   5 *
   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.
  10 *
  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.
  15 *
  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.
  19 */
  20
  21#include <linux/module.h>
  22#include <linux/platform_device.h>
  23#include <linux/io.h>
  24#include <linux/err.h>
  25#include <linux/clk.h>
  26#include <linux/pm_runtime.h>
  27#include <linux/pwm.h>
  28#include <linux/of_device.h>
  29#include <linux/pinctrl/consumer.h>
  30
  31#include "pwm-tipwmss.h"
  32
  33/* ECAP registers and bits definitions */
  34#define CAP1                    0x08
  35#define CAP2                    0x0C
  36#define CAP3                    0x10
  37#define CAP4                    0x14
  38#define ECCTL2                  0x2A
  39#define ECCTL2_APWM_POL_LOW     BIT(10)
  40#define ECCTL2_APWM_MODE        BIT(9)
  41#define ECCTL2_SYNC_SEL_DISA    (BIT(7) | BIT(6))
  42#define ECCTL2_TSCTR_FREERUN    BIT(4)
  43
  44struct ecap_context {
  45        u32     cap3;
  46        u32     cap4;
  47        u16     ecctl2;
  48};
  49
  50struct ecap_pwm_chip {
  51        struct pwm_chip chip;
  52        unsigned int    clk_rate;
  53        void __iomem    *mmio_base;
  54        struct ecap_context ctx;
  55};
  56
  57static inline struct ecap_pwm_chip *to_ecap_pwm_chip(struct pwm_chip *chip)
  58{
  59        return container_of(chip, struct ecap_pwm_chip, chip);
  60}
  61
  62/*
  63 * period_ns = 10^9 * period_cycles / PWM_CLK_RATE
  64 * duty_ns   = 10^9 * duty_cycles / PWM_CLK_RATE
  65 */
  66static int ecap_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
  67                int duty_ns, int period_ns)
  68{
  69        struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
  70        unsigned long long c;
  71        unsigned long period_cycles, duty_cycles;
  72        unsigned int reg_val;
  73
  74        if (period_ns > NSEC_PER_SEC)
  75                return -ERANGE;
  76
  77        c = pc->clk_rate;
  78        c = c * period_ns;
  79        do_div(c, NSEC_PER_SEC);
  80        period_cycles = (unsigned long)c;
  81
  82        if (period_cycles < 1) {
  83                period_cycles = 1;
  84                duty_cycles = 1;
  85        } else {
  86                c = pc->clk_rate;
  87                c = c * duty_ns;
  88                do_div(c, NSEC_PER_SEC);
  89                duty_cycles = (unsigned long)c;
  90        }
  91
  92        pm_runtime_get_sync(pc->chip.dev);
  93
  94        reg_val = readw(pc->mmio_base + ECCTL2);
  95
  96        /* Configure APWM mode & disable sync option */
  97        reg_val |= ECCTL2_APWM_MODE | ECCTL2_SYNC_SEL_DISA;
  98
  99        writew(reg_val, pc->mmio_base + ECCTL2);
 100
 101        if (!test_bit(PWMF_ENABLED, &pwm->flags)) {
 102                /* Update active registers if not running */
 103                writel(duty_cycles, pc->mmio_base + CAP2);
 104                writel(period_cycles, pc->mmio_base + CAP1);
 105        } else {
 106                /*
 107                 * Update shadow registers to configure period and
 108                 * compare values. This helps current PWM period to
 109                 * complete on reconfiguring
 110                 */
 111                writel(duty_cycles, pc->mmio_base + CAP4);
 112                writel(period_cycles, pc->mmio_base + CAP3);
 113        }
 114
 115        if (!test_bit(PWMF_ENABLED, &pwm->flags)) {
 116                reg_val = readw(pc->mmio_base + ECCTL2);
 117                /* Disable APWM mode to put APWM output Low */
 118                reg_val &= ~ECCTL2_APWM_MODE;
 119                writew(reg_val, pc->mmio_base + ECCTL2);
 120        }
 121
 122        pm_runtime_put_sync(pc->chip.dev);
 123        return 0;
 124}
 125
 126static int ecap_pwm_set_polarity(struct pwm_chip *chip, struct pwm_device *pwm,
 127                enum pwm_polarity polarity)
 128{
 129        struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
 130        unsigned short reg_val;
 131
 132        pm_runtime_get_sync(pc->chip.dev);
 133        reg_val = readw(pc->mmio_base + ECCTL2);
 134        if (polarity == PWM_POLARITY_INVERSED)
 135                /* Duty cycle defines LOW period of PWM */
 136                reg_val |= ECCTL2_APWM_POL_LOW;
 137        else
 138                /* Duty cycle defines HIGH period of PWM */
 139                reg_val &= ~ECCTL2_APWM_POL_LOW;
 140
 141        writew(reg_val, pc->mmio_base + ECCTL2);
 142        pm_runtime_put_sync(pc->chip.dev);
 143        return 0;
 144}
 145
 146static int ecap_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
 147{
 148        struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
 149        unsigned int reg_val;
 150
 151        /* Leave clock enabled on enabling PWM */
 152        pm_runtime_get_sync(pc->chip.dev);
 153
 154        /*
 155         * Enable 'Free run Time stamp counter mode' to start counter
 156         * and  'APWM mode' to enable APWM output
 157         */
 158        reg_val = readw(pc->mmio_base + ECCTL2);
 159        reg_val |= ECCTL2_TSCTR_FREERUN | ECCTL2_APWM_MODE;
 160        writew(reg_val, pc->mmio_base + ECCTL2);
 161        return 0;
 162}
 163
 164static void ecap_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
 165{
 166        struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
 167        unsigned int reg_val;
 168
 169        /*
 170         * Disable 'Free run Time stamp counter mode' to stop counter
 171         * and 'APWM mode' to put APWM output to low
 172         */
 173        reg_val = readw(pc->mmio_base + ECCTL2);
 174        reg_val &= ~(ECCTL2_TSCTR_FREERUN | ECCTL2_APWM_MODE);
 175        writew(reg_val, pc->mmio_base + ECCTL2);
 176
 177        /* Disable clock on PWM disable */
 178        pm_runtime_put_sync(pc->chip.dev);
 179}
 180
 181static void ecap_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
 182{
 183        if (test_bit(PWMF_ENABLED, &pwm->flags)) {
 184                dev_warn(chip->dev, "Removing PWM device without disabling\n");
 185                pm_runtime_put_sync(chip->dev);
 186        }
 187}
 188
 189static const struct pwm_ops ecap_pwm_ops = {
 190        .free           = ecap_pwm_free,
 191        .config         = ecap_pwm_config,
 192        .set_polarity   = ecap_pwm_set_polarity,
 193        .enable         = ecap_pwm_enable,
 194        .disable        = ecap_pwm_disable,
 195        .owner          = THIS_MODULE,
 196};
 197
 198static const struct of_device_id ecap_of_match[] = {
 199        { .compatible   = "ti,am33xx-ecap" },
 200        {},
 201};
 202MODULE_DEVICE_TABLE(of, ecap_of_match);
 203
 204static int ecap_pwm_probe(struct platform_device *pdev)
 205{
 206        int ret;
 207        struct resource *r;
 208        struct clk *clk;
 209        struct ecap_pwm_chip *pc;
 210        u16 status;
 211        struct pinctrl *pinctrl;
 212
 213        pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
 214        if (IS_ERR(pinctrl))
 215                dev_warn(&pdev->dev, "unable to select pin group\n");
 216
 217        pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
 218        if (!pc) {
 219                dev_err(&pdev->dev, "failed to allocate memory\n");
 220                return -ENOMEM;
 221        }
 222
 223        clk = devm_clk_get(&pdev->dev, "fck");
 224        if (IS_ERR(clk)) {
 225                dev_err(&pdev->dev, "failed to get clock\n");
 226                return PTR_ERR(clk);
 227        }
 228
 229        pc->clk_rate = clk_get_rate(clk);
 230        if (!pc->clk_rate) {
 231                dev_err(&pdev->dev, "failed to get clock rate\n");
 232                return -EINVAL;
 233        }
 234
 235        pc->chip.dev = &pdev->dev;
 236        pc->chip.ops = &ecap_pwm_ops;
 237        pc->chip.of_xlate = of_pwm_xlate_with_flags;
 238        pc->chip.of_pwm_n_cells = 3;
 239        pc->chip.base = -1;
 240        pc->chip.npwm = 1;
 241
 242        r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 243        pc->mmio_base = devm_ioremap_resource(&pdev->dev, r);
 244        if (IS_ERR(pc->mmio_base))
 245                return PTR_ERR(pc->mmio_base);
 246
 247        ret = pwmchip_add(&pc->chip);
 248        if (ret < 0) {
 249                dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
 250                return ret;
 251        }
 252
 253        pm_runtime_enable(&pdev->dev);
 254        pm_runtime_get_sync(&pdev->dev);
 255
 256        status = pwmss_submodule_state_change(pdev->dev.parent,
 257                        PWMSS_ECAPCLK_EN);
 258        if (!(status & PWMSS_ECAPCLK_EN_ACK)) {
 259                dev_err(&pdev->dev, "PWMSS config space clock enable failed\n");
 260                ret = -EINVAL;
 261                goto pwmss_clk_failure;
 262        }
 263
 264        pm_runtime_put_sync(&pdev->dev);
 265
 266        platform_set_drvdata(pdev, pc);
 267        return 0;
 268
 269pwmss_clk_failure:
 270        pm_runtime_put_sync(&pdev->dev);
 271        pm_runtime_disable(&pdev->dev);
 272        pwmchip_remove(&pc->chip);
 273        return ret;
 274}
 275
 276static int ecap_pwm_remove(struct platform_device *pdev)
 277{
 278        struct ecap_pwm_chip *pc = platform_get_drvdata(pdev);
 279
 280        pm_runtime_get_sync(&pdev->dev);
 281        /*
 282         * Due to hardware misbehaviour, acknowledge of the stop_req
 283         * is missing. Hence checking of the status bit skipped.
 284         */
 285        pwmss_submodule_state_change(pdev->dev.parent, PWMSS_ECAPCLK_STOP_REQ);
 286        pm_runtime_put_sync(&pdev->dev);
 287
 288        pm_runtime_put_sync(&pdev->dev);
 289        pm_runtime_disable(&pdev->dev);
 290        return pwmchip_remove(&pc->chip);
 291}
 292
 293static void ecap_pwm_save_context(struct ecap_pwm_chip *pc)
 294{
 295        pm_runtime_get_sync(pc->chip.dev);
 296        pc->ctx.ecctl2 = readw(pc->mmio_base + ECCTL2);
 297        pc->ctx.cap4 = readl(pc->mmio_base + CAP4);
 298        pc->ctx.cap3 = readl(pc->mmio_base + CAP3);
 299        pm_runtime_put_sync(pc->chip.dev);
 300}
 301
 302static void ecap_pwm_restore_context(struct ecap_pwm_chip *pc)
 303{
 304        writel(pc->ctx.cap3, pc->mmio_base + CAP3);
 305        writel(pc->ctx.cap4, pc->mmio_base + CAP4);
 306        writew(pc->ctx.ecctl2, pc->mmio_base + ECCTL2);
 307}
 308
 309#ifdef CONFIG_PM_SLEEP
 310static int ecap_pwm_suspend(struct device *dev)
 311{
 312        struct ecap_pwm_chip *pc = dev_get_drvdata(dev);
 313        struct pwm_device *pwm = pc->chip.pwms;
 314
 315        ecap_pwm_save_context(pc);
 316
 317        /* Disable explicitly if PWM is running */
 318        if (test_bit(PWMF_ENABLED, &pwm->flags))
 319                pm_runtime_put_sync(dev);
 320
 321        return 0;
 322}
 323
 324static int ecap_pwm_resume(struct device *dev)
 325{
 326        struct ecap_pwm_chip *pc = dev_get_drvdata(dev);
 327        struct pwm_device *pwm = pc->chip.pwms;
 328
 329        /* Enable explicitly if PWM was running */
 330        if (test_bit(PWMF_ENABLED, &pwm->flags))
 331                pm_runtime_get_sync(dev);
 332
 333        ecap_pwm_restore_context(pc);
 334        return 0;
 335}
 336#endif
 337
 338static SIMPLE_DEV_PM_OPS(ecap_pwm_pm_ops, ecap_pwm_suspend, ecap_pwm_resume);
 339
 340static struct platform_driver ecap_pwm_driver = {
 341        .driver = {
 342                .name   = "ecap",
 343                .owner  = THIS_MODULE,
 344                .of_match_table = ecap_of_match,
 345                .pm     = &ecap_pwm_pm_ops,
 346        },
 347        .probe = ecap_pwm_probe,
 348        .remove = ecap_pwm_remove,
 349};
 350
 351module_platform_driver(ecap_pwm_driver);
 352
 353MODULE_DESCRIPTION("ECAP PWM driver");
 354MODULE_AUTHOR("Texas Instruments");
 355MODULE_LICENSE("GPL");
 356