pwm-pxa.c 4.6 KB
Newer Older
1
/*
2
 * drivers/pwm/pwm-pxa.c
3 4 5 6 7 8 9 10 11 12 13 14 15 16
 *
 * simple driver for PWM (Pulse Width Modulator) controller
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * 2008-02-13	initial version
 * 		eric miao <eric.miao@marvell.com>
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/platform_device.h>
17
#include <linux/slab.h>
18 19 20 21 22 23 24
#include <linux/err.h>
#include <linux/clk.h>
#include <linux/io.h>
#include <linux/pwm.h>

#include <asm/div64.h>

25
#define HAS_SECONDARY_PWM	0x10
26
#define PWM_ID_BASE(d)		((d) & 0xf)
27 28 29 30

static const struct platform_device_id pwm_id_table[] = {
	/*   PWM    has_secondary_pwm? */
	{ "pxa25x-pwm", 0 },
31
	{ "pxa27x-pwm", 0 | HAS_SECONDARY_PWM },
32 33
	{ "pxa168-pwm", 1 },
	{ "pxa910-pwm", 1 },
34 35 36 37
	{ },
};
MODULE_DEVICE_TABLE(platform, pwm_id_table);

38 39 40 41 42 43 44 45
/* PWM registers and bits definitions */
#define PWMCR		(0x00)
#define PWMDCR		(0x04)
#define PWMPCR		(0x08)

#define PWMCR_SD	(1 << 6)
#define PWMDCR_FD	(1 << 10)

46 47 48
struct pxa_pwm_chip {
	struct pwm_chip	chip;
	struct device	*dev;
49 50

	struct clk	*clk;
51
	int		clk_enabled;
52 53 54
	void __iomem	*mmio_base;
};

55 56 57 58 59
static inline struct pxa_pwm_chip *to_pxa_pwm_chip(struct pwm_chip *chip)
{
	return container_of(chip, struct pxa_pwm_chip, chip);
}

60 61 62 63
/*
 * period_ns = 10^9 * (PRESCALE + 1) * (PV + 1) / PWM_CLK_RATE
 * duty_ns   = 10^9 * (PRESCALE + 1) * DC / PWM_CLK_RATE
 */
64 65
static int pxa_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
			  int duty_ns, int period_ns)
66
{
67
	struct pxa_pwm_chip *pc = to_pxa_pwm_chip(chip);
68 69
	unsigned long long c;
	unsigned long period_cycles, prescale, pv, dc;
70 71
	unsigned long offset;
	int rc;
72

73 74 75
	offset = pwm->hwpwm ? 0x10 : 0;

	c = clk_get_rate(pc->clk);
76 77 78 79
	c = c * period_ns;
	do_div(c, 1000000000);
	period_cycles = c;

80
	if (period_cycles < 1)
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
		period_cycles = 1;
	prescale = (period_cycles - 1) / 1024;
	pv = period_cycles / (prescale + 1) - 1;

	if (prescale > 63)
		return -EINVAL;

	if (duty_ns == period_ns)
		dc = PWMDCR_FD;
	else
		dc = (pv + 1) * duty_ns / period_ns;

	/* NOTE: the clock to PWM has to be enabled first
	 * before writing to the registers
	 */
96 97 98 99 100 101 102
	rc = clk_prepare_enable(pc->clk);
	if (rc < 0)
		return rc;

	writel(prescale, pc->mmio_base + offset + PWMCR);
	writel(dc, pc->mmio_base + offset + PWMDCR);
	writel(pv, pc->mmio_base + offset + PWMPCR);
103

104
	clk_disable_unprepare(pc->clk);
105 106 107
	return 0;
}

108
static int pxa_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
109
{
110
	struct pxa_pwm_chip *pc = to_pxa_pwm_chip(chip);
111 112
	int rc = 0;

113 114
	if (!pc->clk_enabled) {
		rc = clk_prepare_enable(pc->clk);
115
		if (!rc)
116
			pc->clk_enabled++;
117 118
	}
	return rc;
119 120
}

121
static void pxa_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
122
{
123
	struct pxa_pwm_chip *pc = to_pxa_pwm_chip(chip);
124

125 126 127
	if (pc->clk_enabled) {
		clk_disable_unprepare(pc->clk);
		pc->clk_enabled--;
128 129 130
	}
}

131 132 133 134 135 136
static struct pwm_ops pxa_pwm_ops = {
	.config = pxa_pwm_config,
	.enable = pxa_pwm_enable,
	.disable = pxa_pwm_disable,
	.owner = THIS_MODULE,
};
137

138
static int __devinit pwm_probe(struct platform_device *pdev)
139
{
140
	const struct platform_device_id *id = platform_get_device_id(pdev);
141
	struct pxa_pwm_chip *pwm;
142 143 144
	struct resource *r;
	int ret = 0;

145
	pwm = devm_kzalloc(&pdev->dev, sizeof(*pwm), GFP_KERNEL);
146 147
	if (pwm == NULL) {
		dev_err(&pdev->dev, "failed to allocate memory\n");
148
		return -ENOMEM;
149 150
	}

151 152 153 154
	pwm->clk = devm_clk_get(&pdev->dev, NULL);
	if (IS_ERR(pwm->clk))
		return PTR_ERR(pwm->clk);

155
	pwm->clk_enabled = 0;
156

157 158 159 160
	pwm->chip.dev = &pdev->dev;
	pwm->chip.ops = &pxa_pwm_ops;
	pwm->chip.base = -1;
	pwm->chip.npwm = (id->driver_data & HAS_SECONDARY_PWM) ? 2 : 1;
161 162 163 164

	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (r == NULL) {
		dev_err(&pdev->dev, "no memory resource defined\n");
165
		return -ENODEV;
166 167
	}

168 169 170
	pwm->mmio_base = devm_request_and_ioremap(&pdev->dev, r);
	if (pwm->mmio_base == NULL)
		return -EADDRNOTAVAIL;
171

172 173 174 175
	ret = pwmchip_add(&pwm->chip);
	if (ret < 0) {
		dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
		return ret;
176 177
	}

178
	platform_set_drvdata(pdev, pwm);
179
	return 0;
180 181 182 183
}

static int __devexit pwm_remove(struct platform_device *pdev)
{
184
	struct pxa_pwm_chip *chip;
185

186 187
	chip = platform_get_drvdata(pdev);
	if (chip == NULL)
188 189
		return -ENODEV;

190
	return pwmchip_remove(&chip->chip);
191 192
}

193
static struct platform_driver pwm_driver = {
194 195
	.driver		= {
		.name	= "pxa25x-pwm",
196
		.owner	= THIS_MODULE,
197
	},
198
	.probe		= pwm_probe,
B
Bill Pemberton 已提交
199
	.remove		= pwm_remove,
200
	.id_table	= pwm_id_table,
201 202 203 204
};

static int __init pwm_init(void)
{
205
	return platform_driver_register(&pwm_driver);
206 207 208 209 210
}
arch_initcall(pwm_init);

static void __exit pwm_exit(void)
{
211
	platform_driver_unregister(&pwm_driver);
212 213
}
module_exit(pwm_exit);
214 215

MODULE_LICENSE("GPL v2");