Linux Audio

Check our new training course

Loading...
v6.13.7
  1/*
  2 * ST Microelectronics SPEAr Pulse Width Modulator driver
  3 *
  4 * Copyright (C) 2012 ST Microelectronics
  5 * Shiraz Hashim <shiraz.linux.kernel@gmail.com>
  6 *
  7 * This file is licensed under the terms of the GNU General Public
  8 * License version 2. This program is licensed "as is" without any
  9 * warranty of any kind, whether express or implied.
 10 */
 11
 12#include <linux/clk.h>
 13#include <linux/err.h>
 14#include <linux/io.h>
 15#include <linux/ioport.h>
 16#include <linux/kernel.h>
 17#include <linux/math64.h>
 18#include <linux/module.h>
 19#include <linux/of.h>
 20#include <linux/platform_device.h>
 21#include <linux/pwm.h>
 22#include <linux/slab.h>
 23#include <linux/types.h>
 24
 25#define NUM_PWM		4
 26
 27/* PWM registers and bits definitions */
 28#define PWMCR			0x00	/* Control Register */
 29#define PWMCR_PWM_ENABLE	0x1
 30#define PWMCR_PRESCALE_SHIFT	2
 31#define PWMCR_MIN_PRESCALE	0x00
 32#define PWMCR_MAX_PRESCALE	0x3FFF
 33
 34#define PWMDCR			0x04	/* Duty Cycle Register */
 35#define PWMDCR_MIN_DUTY		0x0001
 36#define PWMDCR_MAX_DUTY		0xFFFF
 37
 38#define PWMPCR			0x08	/* Period Register */
 39#define PWMPCR_MIN_PERIOD	0x0001
 40#define PWMPCR_MAX_PERIOD	0xFFFF
 41
 42/* Following only available on 13xx SoCs */
 43#define PWMMCR			0x3C	/* Master Control Register */
 44#define PWMMCR_PWM_ENABLE	0x1
 45
 46/**
 47 * struct spear_pwm_chip - struct representing pwm chip
 48 *
 49 * @mmio_base: base address of pwm chip
 50 * @clk: pointer to clk structure of pwm chip
 
 51 */
 52struct spear_pwm_chip {
 53	void __iomem *mmio_base;
 54	struct clk *clk;
 
 55};
 56
 57static inline struct spear_pwm_chip *to_spear_pwm_chip(struct pwm_chip *chip)
 58{
 59	return pwmchip_get_drvdata(chip);
 60}
 61
 62static inline u32 spear_pwm_readl(struct spear_pwm_chip *chip, unsigned int num,
 63				  unsigned long offset)
 64{
 65	return readl_relaxed(chip->mmio_base + (num << 4) + offset);
 66}
 67
 68static inline void spear_pwm_writel(struct spear_pwm_chip *chip,
 69				    unsigned int num, unsigned long offset,
 70				    unsigned long val)
 71{
 72	writel_relaxed(val, chip->mmio_base + (num << 4) + offset);
 73}
 74
 75static int spear_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
 76			    u64 duty_ns, u64 period_ns)
 77{
 78	struct spear_pwm_chip *pc = to_spear_pwm_chip(chip);
 79	u64 val, div, clk_rate;
 80	unsigned long prescale = PWMCR_MIN_PRESCALE, pv, dc;
 81	int ret;
 82
 83	/*
 84	 * Find pv, dc and prescale to suit duty_ns and period_ns. This is done
 85	 * according to formulas described below:
 86	 *
 87	 * period_ns = 10^9 * (PRESCALE + 1) * PV / PWM_CLK_RATE
 88	 * duty_ns = 10^9 * (PRESCALE + 1) * DC / PWM_CLK_RATE
 89	 *
 90	 * PV = (PWM_CLK_RATE * period_ns) / (10^9 * (PRESCALE + 1))
 91	 * DC = (PWM_CLK_RATE * duty_ns) / (10^9 * (PRESCALE + 1))
 92	 */
 93	clk_rate = clk_get_rate(pc->clk);
 94	while (1) {
 95		div = 1000000000;
 96		div *= 1 + prescale;
 97		val = clk_rate * period_ns;
 98		pv = div64_u64(val, div);
 99		val = clk_rate * duty_ns;
100		dc = div64_u64(val, div);
101
102		/* if duty_ns and period_ns are not achievable then return */
103		if (pv < PWMPCR_MIN_PERIOD || dc < PWMDCR_MIN_DUTY)
104			return -EINVAL;
105
106		/*
107		 * if pv and dc have crossed their upper limit, then increase
108		 * prescale and recalculate pv and dc.
109		 */
110		if (pv > PWMPCR_MAX_PERIOD || dc > PWMDCR_MAX_DUTY) {
111			if (++prescale > PWMCR_MAX_PRESCALE)
112				return -EINVAL;
113			continue;
114		}
115		break;
116	}
117
118	/*
119	 * NOTE: the clock to PWM has to be enabled first before writing to the
120	 * registers.
121	 */
122	ret = clk_enable(pc->clk);
123	if (ret)
124		return ret;
125
126	spear_pwm_writel(pc, pwm->hwpwm, PWMCR,
127			prescale << PWMCR_PRESCALE_SHIFT);
128	spear_pwm_writel(pc, pwm->hwpwm, PWMDCR, dc);
129	spear_pwm_writel(pc, pwm->hwpwm, PWMPCR, pv);
130	clk_disable(pc->clk);
131
132	return 0;
133}
134
135static int spear_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
136{
137	struct spear_pwm_chip *pc = to_spear_pwm_chip(chip);
138	int rc = 0;
139	u32 val;
140
141	rc = clk_enable(pc->clk);
142	if (rc)
143		return rc;
144
145	val = spear_pwm_readl(pc, pwm->hwpwm, PWMCR);
146	val |= PWMCR_PWM_ENABLE;
147	spear_pwm_writel(pc, pwm->hwpwm, PWMCR, val);
148
149	return 0;
150}
151
152static void spear_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
153{
154	struct spear_pwm_chip *pc = to_spear_pwm_chip(chip);
155	u32 val;
156
157	val = spear_pwm_readl(pc, pwm->hwpwm, PWMCR);
158	val &= ~PWMCR_PWM_ENABLE;
159	spear_pwm_writel(pc, pwm->hwpwm, PWMCR, val);
160
161	clk_disable(pc->clk);
162}
163
164static int spear_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
165			   const struct pwm_state *state)
166{
167	int err;
168
169	if (state->polarity != PWM_POLARITY_NORMAL)
170		return -EINVAL;
171
172	if (!state->enabled) {
173		if (pwm->state.enabled)
174			spear_pwm_disable(chip, pwm);
175		return 0;
176	}
177
178	err = spear_pwm_config(chip, pwm, state->duty_cycle, state->period);
179	if (err)
180		return err;
181
182	if (!pwm->state.enabled)
183		return spear_pwm_enable(chip, pwm);
184
185	return 0;
186}
187
188static const struct pwm_ops spear_pwm_ops = {
189	.apply = spear_pwm_apply,
 
 
 
190};
191
192static int spear_pwm_probe(struct platform_device *pdev)
193{
194	struct device_node *np = pdev->dev.of_node;
195	struct pwm_chip *chip;
196	struct spear_pwm_chip *pc;
 
197	int ret;
198	u32 val;
199
200	chip = devm_pwmchip_alloc(&pdev->dev, NUM_PWM, sizeof(*pc));
201	if (IS_ERR(chip))
202		return PTR_ERR(chip);
203	pc = to_spear_pwm_chip(chip);
204
205	pc->mmio_base = devm_platform_ioremap_resource(pdev, 0);
 
206	if (IS_ERR(pc->mmio_base))
207		return PTR_ERR(pc->mmio_base);
208
209	pc->clk = devm_clk_get_prepared(&pdev->dev, NULL);
210	if (IS_ERR(pc->clk))
211		return dev_err_probe(&pdev->dev, PTR_ERR(pc->clk),
212				     "Failed to get clock\n");
 
213
214	chip->ops = &spear_pwm_ops;
 
 
 
 
 
 
 
215
216	if (of_device_is_compatible(np, "st,spear1340-pwm")) {
217		ret = clk_enable(pc->clk);
218		if (ret)
219			return dev_err_probe(&pdev->dev, ret,
220					     "Failed to enable clk\n");
221
222		/*
223		 * Following enables PWM chip, channels would still be
224		 * enabled individually through their control register
225		 */
226		val = readl_relaxed(pc->mmio_base + PWMMCR);
227		val |= PWMMCR_PWM_ENABLE;
228		writel_relaxed(val, pc->mmio_base + PWMMCR);
229
230		clk_disable(pc->clk);
231	}
232
233	ret = devm_pwmchip_add(&pdev->dev, chip);
234	if (ret < 0)
235		return dev_err_probe(&pdev->dev, ret, "pwmchip_add() failed\n");
 
 
236
237	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
238}
239
240static const struct of_device_id spear_pwm_of_match[] = {
241	{ .compatible = "st,spear320-pwm" },
242	{ .compatible = "st,spear1340-pwm" },
243	{ }
244};
245
246MODULE_DEVICE_TABLE(of, spear_pwm_of_match);
247
248static struct platform_driver spear_pwm_driver = {
249	.driver = {
250		.name = "spear-pwm",
251		.of_match_table = spear_pwm_of_match,
252	},
253	.probe = spear_pwm_probe,
 
254};
255
256module_platform_driver(spear_pwm_driver);
257
258MODULE_DESCRIPTION("ST Microelectronics SPEAr Pulse Width Modulator driver");
259MODULE_LICENSE("GPL");
260MODULE_AUTHOR("Shiraz Hashim <shiraz.linux.kernel@gmail.com>");
261MODULE_AUTHOR("Viresh Kumar <viresh.kumar@linaro.com>");
262MODULE_ALIAS("platform:spear-pwm");
v5.9
  1/*
  2 * ST Microelectronics SPEAr Pulse Width Modulator driver
  3 *
  4 * Copyright (C) 2012 ST Microelectronics
  5 * Shiraz Hashim <shiraz.linux.kernel@gmail.com>
  6 *
  7 * This file is licensed under the terms of the GNU General Public
  8 * License version 2. This program is licensed "as is" without any
  9 * warranty of any kind, whether express or implied.
 10 */
 11
 12#include <linux/clk.h>
 13#include <linux/err.h>
 14#include <linux/io.h>
 15#include <linux/ioport.h>
 16#include <linux/kernel.h>
 17#include <linux/math64.h>
 18#include <linux/module.h>
 19#include <linux/of.h>
 20#include <linux/platform_device.h>
 21#include <linux/pwm.h>
 22#include <linux/slab.h>
 23#include <linux/types.h>
 24
 25#define NUM_PWM		4
 26
 27/* PWM registers and bits definitions */
 28#define PWMCR			0x00	/* Control Register */
 29#define PWMCR_PWM_ENABLE	0x1
 30#define PWMCR_PRESCALE_SHIFT	2
 31#define PWMCR_MIN_PRESCALE	0x00
 32#define PWMCR_MAX_PRESCALE	0x3FFF
 33
 34#define PWMDCR			0x04	/* Duty Cycle Register */
 35#define PWMDCR_MIN_DUTY		0x0001
 36#define PWMDCR_MAX_DUTY		0xFFFF
 37
 38#define PWMPCR			0x08	/* Period Register */
 39#define PWMPCR_MIN_PERIOD	0x0001
 40#define PWMPCR_MAX_PERIOD	0xFFFF
 41
 42/* Following only available on 13xx SoCs */
 43#define PWMMCR			0x3C	/* Master Control Register */
 44#define PWMMCR_PWM_ENABLE	0x1
 45
 46/**
 47 * struct spear_pwm_chip - struct representing pwm chip
 48 *
 49 * @mmio_base: base address of pwm chip
 50 * @clk: pointer to clk structure of pwm chip
 51 * @chip: linux pwm chip representation
 52 */
 53struct spear_pwm_chip {
 54	void __iomem *mmio_base;
 55	struct clk *clk;
 56	struct pwm_chip chip;
 57};
 58
 59static inline struct spear_pwm_chip *to_spear_pwm_chip(struct pwm_chip *chip)
 60{
 61	return container_of(chip, struct spear_pwm_chip, chip);
 62}
 63
 64static inline u32 spear_pwm_readl(struct spear_pwm_chip *chip, unsigned int num,
 65				  unsigned long offset)
 66{
 67	return readl_relaxed(chip->mmio_base + (num << 4) + offset);
 68}
 69
 70static inline void spear_pwm_writel(struct spear_pwm_chip *chip,
 71				    unsigned int num, unsigned long offset,
 72				    unsigned long val)
 73{
 74	writel_relaxed(val, chip->mmio_base + (num << 4) + offset);
 75}
 76
 77static int spear_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
 78			    int duty_ns, int period_ns)
 79{
 80	struct spear_pwm_chip *pc = to_spear_pwm_chip(chip);
 81	u64 val, div, clk_rate;
 82	unsigned long prescale = PWMCR_MIN_PRESCALE, pv, dc;
 83	int ret;
 84
 85	/*
 86	 * Find pv, dc and prescale to suit duty_ns and period_ns. This is done
 87	 * according to formulas described below:
 88	 *
 89	 * period_ns = 10^9 * (PRESCALE + 1) * PV / PWM_CLK_RATE
 90	 * duty_ns = 10^9 * (PRESCALE + 1) * DC / PWM_CLK_RATE
 91	 *
 92	 * PV = (PWM_CLK_RATE * period_ns) / (10^9 * (PRESCALE + 1))
 93	 * DC = (PWM_CLK_RATE * duty_ns) / (10^9 * (PRESCALE + 1))
 94	 */
 95	clk_rate = clk_get_rate(pc->clk);
 96	while (1) {
 97		div = 1000000000;
 98		div *= 1 + prescale;
 99		val = clk_rate * period_ns;
100		pv = div64_u64(val, div);
101		val = clk_rate * duty_ns;
102		dc = div64_u64(val, div);
103
104		/* if duty_ns and period_ns are not achievable then return */
105		if (pv < PWMPCR_MIN_PERIOD || dc < PWMDCR_MIN_DUTY)
106			return -EINVAL;
107
108		/*
109		 * if pv and dc have crossed their upper limit, then increase
110		 * prescale and recalculate pv and dc.
111		 */
112		if (pv > PWMPCR_MAX_PERIOD || dc > PWMDCR_MAX_DUTY) {
113			if (++prescale > PWMCR_MAX_PRESCALE)
114				return -EINVAL;
115			continue;
116		}
117		break;
118	}
119
120	/*
121	 * NOTE: the clock to PWM has to be enabled first before writing to the
122	 * registers.
123	 */
124	ret = clk_enable(pc->clk);
125	if (ret)
126		return ret;
127
128	spear_pwm_writel(pc, pwm->hwpwm, PWMCR,
129			prescale << PWMCR_PRESCALE_SHIFT);
130	spear_pwm_writel(pc, pwm->hwpwm, PWMDCR, dc);
131	spear_pwm_writel(pc, pwm->hwpwm, PWMPCR, pv);
132	clk_disable(pc->clk);
133
134	return 0;
135}
136
137static int spear_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
138{
139	struct spear_pwm_chip *pc = to_spear_pwm_chip(chip);
140	int rc = 0;
141	u32 val;
142
143	rc = clk_enable(pc->clk);
144	if (rc)
145		return rc;
146
147	val = spear_pwm_readl(pc, pwm->hwpwm, PWMCR);
148	val |= PWMCR_PWM_ENABLE;
149	spear_pwm_writel(pc, pwm->hwpwm, PWMCR, val);
150
151	return 0;
152}
153
154static void spear_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
155{
156	struct spear_pwm_chip *pc = to_spear_pwm_chip(chip);
157	u32 val;
158
159	val = spear_pwm_readl(pc, pwm->hwpwm, PWMCR);
160	val &= ~PWMCR_PWM_ENABLE;
161	spear_pwm_writel(pc, pwm->hwpwm, PWMCR, val);
162
163	clk_disable(pc->clk);
164}
165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166static const struct pwm_ops spear_pwm_ops = {
167	.config = spear_pwm_config,
168	.enable = spear_pwm_enable,
169	.disable = spear_pwm_disable,
170	.owner = THIS_MODULE,
171};
172
173static int spear_pwm_probe(struct platform_device *pdev)
174{
175	struct device_node *np = pdev->dev.of_node;
 
176	struct spear_pwm_chip *pc;
177	struct resource *r;
178	int ret;
179	u32 val;
180
181	pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
182	if (!pc)
183		return -ENOMEM;
 
184
185	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
186	pc->mmio_base = devm_ioremap_resource(&pdev->dev, r);
187	if (IS_ERR(pc->mmio_base))
188		return PTR_ERR(pc->mmio_base);
189
190	pc->clk = devm_clk_get(&pdev->dev, NULL);
191	if (IS_ERR(pc->clk))
192		return PTR_ERR(pc->clk);
193
194	platform_set_drvdata(pdev, pc);
195
196	pc->chip.dev = &pdev->dev;
197	pc->chip.ops = &spear_pwm_ops;
198	pc->chip.base = -1;
199	pc->chip.npwm = NUM_PWM;
200
201	ret = clk_prepare(pc->clk);
202	if (ret)
203		return ret;
204
205	if (of_device_is_compatible(np, "st,spear1340-pwm")) {
206		ret = clk_enable(pc->clk);
207		if (ret) {
208			clk_unprepare(pc->clk);
209			return ret;
210		}
211		/*
212		 * Following enables PWM chip, channels would still be
213		 * enabled individually through their control register
214		 */
215		val = readl_relaxed(pc->mmio_base + PWMMCR);
216		val |= PWMMCR_PWM_ENABLE;
217		writel_relaxed(val, pc->mmio_base + PWMMCR);
218
219		clk_disable(pc->clk);
220	}
221
222	ret = pwmchip_add(&pc->chip);
223	if (ret < 0) {
224		clk_unprepare(pc->clk);
225		dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
226	}
227
228	return ret;
229}
230
231static int spear_pwm_remove(struct platform_device *pdev)
232{
233	struct spear_pwm_chip *pc = platform_get_drvdata(pdev);
234	int i;
235
236	for (i = 0; i < NUM_PWM; i++)
237		pwm_disable(&pc->chip.pwms[i]);
238
239	/* clk was prepared in probe, hence unprepare it here */
240	clk_unprepare(pc->clk);
241	return pwmchip_remove(&pc->chip);
242}
243
244static const struct of_device_id spear_pwm_of_match[] = {
245	{ .compatible = "st,spear320-pwm" },
246	{ .compatible = "st,spear1340-pwm" },
247	{ }
248};
249
250MODULE_DEVICE_TABLE(of, spear_pwm_of_match);
251
252static struct platform_driver spear_pwm_driver = {
253	.driver = {
254		.name = "spear-pwm",
255		.of_match_table = spear_pwm_of_match,
256	},
257	.probe = spear_pwm_probe,
258	.remove = spear_pwm_remove,
259};
260
261module_platform_driver(spear_pwm_driver);
262
 
263MODULE_LICENSE("GPL");
264MODULE_AUTHOR("Shiraz Hashim <shiraz.linux.kernel@gmail.com>");
265MODULE_AUTHOR("Viresh Kumar <viresh.kumar@linaro.com>");
266MODULE_ALIAS("platform:spear-pwm");