Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  2 * PWM driver for Rockchip SoCs
  3 *
  4 * Copyright (C) 2014 Beniamino Galvani <b.galvani@gmail.com>
  5 * Copyright (C) 2014 ROCKCHIP, Inc.
  6 *
  7 * This program is free software; you can redistribute it and/or
  8 * modify it under the terms of the GNU General Public License
  9 * version 2 as published by the Free Software Foundation.
 10 */
 11
 12#include <linux/clk.h>
 13#include <linux/io.h>
 14#include <linux/module.h>
 15#include <linux/of.h>
 16#include <linux/of_device.h>
 17#include <linux/platform_device.h>
 18#include <linux/pwm.h>
 19#include <linux/time.h>
 20
 21#define PWM_CTRL_TIMER_EN	(1 << 0)
 22#define PWM_CTRL_OUTPUT_EN	(1 << 3)
 23
 24#define PWM_ENABLE		(1 << 0)
 25#define PWM_CONTINUOUS		(1 << 1)
 26#define PWM_DUTY_POSITIVE	(1 << 3)
 27#define PWM_DUTY_NEGATIVE	(0 << 3)
 28#define PWM_INACTIVE_NEGATIVE	(0 << 4)
 29#define PWM_INACTIVE_POSITIVE	(1 << 4)
 
 30#define PWM_OUTPUT_LEFT		(0 << 5)
 
 31#define PWM_LP_DISABLE		(0 << 8)
 32
 33struct rockchip_pwm_chip {
 34	struct pwm_chip chip;
 35	struct clk *clk;
 
 36	const struct rockchip_pwm_data *data;
 37	void __iomem *base;
 38};
 39
 40struct rockchip_pwm_regs {
 41	unsigned long duty;
 42	unsigned long period;
 43	unsigned long cntr;
 44	unsigned long ctrl;
 45};
 46
 47struct rockchip_pwm_data {
 48	struct rockchip_pwm_regs regs;
 49	unsigned int prescaler;
 50	const struct pwm_ops *ops;
 51
 52	void (*set_enable)(struct pwm_chip *chip,
 53			   struct pwm_device *pwm, bool enable);
 54};
 55
 56static inline struct rockchip_pwm_chip *to_rockchip_pwm_chip(struct pwm_chip *c)
 57{
 58	return container_of(c, struct rockchip_pwm_chip, chip);
 59}
 60
 61static void rockchip_pwm_set_enable_v1(struct pwm_chip *chip,
 62				       struct pwm_device *pwm, bool enable)
 
 63{
 64	struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
 65	u32 enable_conf = PWM_CTRL_OUTPUT_EN | PWM_CTRL_TIMER_EN;
 
 
 66	u32 val;
 
 67
 68	val = readl_relaxed(pc->base + pc->data->regs.ctrl);
 69
 70	if (enable)
 71		val |= enable_conf;
 72	else
 73		val &= ~enable_conf;
 74
 75	writel_relaxed(val, pc->base + pc->data->regs.ctrl);
 76}
 
 77
 78static void rockchip_pwm_set_enable_v2(struct pwm_chip *chip,
 79				       struct pwm_device *pwm, bool enable)
 80{
 81	struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
 82	u32 enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
 83			  PWM_CONTINUOUS;
 84	u32 val;
 85
 86	if (pwm_get_polarity(pwm) == PWM_POLARITY_INVERSED)
 87		enable_conf |= PWM_DUTY_NEGATIVE | PWM_INACTIVE_POSITIVE;
 88	else
 89		enable_conf |= PWM_DUTY_POSITIVE | PWM_INACTIVE_NEGATIVE;
 
 
 
 90
 91	val = readl_relaxed(pc->base + pc->data->regs.ctrl);
 
 92
 93	if (enable)
 94		val |= enable_conf;
 95	else
 96		val &= ~enable_conf;
 97
 98	writel_relaxed(val, pc->base + pc->data->regs.ctrl);
 
 
 
 99}
100
101static int rockchip_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
102			       int duty_ns, int period_ns)
103{
104	struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
105	unsigned long period, duty;
106	u64 clk_rate, div;
107	int ret;
108
109	clk_rate = clk_get_rate(pc->clk);
110
111	/*
112	 * Since period and duty cycle registers have a width of 32
113	 * bits, every possible input period can be obtained using the
114	 * default prescaler value for all practical clock rate values.
115	 */
116	div = clk_rate * period_ns;
117	do_div(div, pc->data->prescaler * NSEC_PER_SEC);
118	period = div;
119
120	div = clk_rate * duty_ns;
121	do_div(div, pc->data->prescaler * NSEC_PER_SEC);
122	duty = div;
123
124	ret = clk_enable(pc->clk);
125	if (ret)
126		return ret;
 
 
 
 
 
 
 
 
 
127
128	writel(period, pc->base + pc->data->regs.period);
129	writel(duty, pc->base + pc->data->regs.duty);
130	writel(0, pc->base + pc->data->regs.cntr);
131
132	clk_disable(pc->clk);
133
134	return 0;
135}
 
 
 
 
 
136
137static int rockchip_pwm_set_polarity(struct pwm_chip *chip,
138				     struct pwm_device *pwm,
139				     enum pwm_polarity polarity)
140{
141	/*
142	 * No action needed here because pwm->polarity will be set by the core
143	 * and the core will only change polarity when the PWM is not enabled.
144	 * We'll handle things in set_enable().
145	 */
 
 
146
147	return 0;
148}
149
150static int rockchip_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
 
 
151{
152	struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
 
153	int ret;
 
154
155	ret = clk_enable(pc->clk);
156	if (ret)
157		return ret;
 
 
 
 
158
159	pc->data->set_enable(chip, pwm, true);
 
 
 
 
 
 
 
 
160
161	return 0;
162}
163
164static void rockchip_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
 
165{
166	struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
 
 
 
167
168	pc->data->set_enable(chip, pwm, false);
 
 
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170	clk_disable(pc->clk);
171}
172
173static const struct pwm_ops rockchip_pwm_ops_v1 = {
174	.config = rockchip_pwm_config,
175	.enable = rockchip_pwm_enable,
176	.disable = rockchip_pwm_disable,
177	.owner = THIS_MODULE,
178};
179
180static const struct pwm_ops rockchip_pwm_ops_v2 = {
181	.config = rockchip_pwm_config,
182	.set_polarity = rockchip_pwm_set_polarity,
183	.enable = rockchip_pwm_enable,
184	.disable = rockchip_pwm_disable,
185	.owner = THIS_MODULE,
186};
187
188static const struct rockchip_pwm_data pwm_data_v1 = {
189	.regs = {
190		.duty = 0x04,
191		.period = 0x08,
192		.cntr = 0x00,
193		.ctrl = 0x0c,
194	},
195	.prescaler = 2,
196	.ops = &rockchip_pwm_ops_v1,
197	.set_enable = rockchip_pwm_set_enable_v1,
 
198};
199
200static const struct rockchip_pwm_data pwm_data_v2 = {
201	.regs = {
202		.duty = 0x08,
203		.period = 0x04,
204		.cntr = 0x00,
205		.ctrl = 0x0c,
206	},
207	.prescaler = 1,
208	.ops = &rockchip_pwm_ops_v2,
209	.set_enable = rockchip_pwm_set_enable_v2,
 
 
210};
211
212static const struct rockchip_pwm_data pwm_data_vop = {
213	.regs = {
214		.duty = 0x08,
215		.period = 0x04,
216		.cntr = 0x0c,
217		.ctrl = 0x00,
218	},
219	.prescaler = 1,
220	.ops = &rockchip_pwm_ops_v2,
221	.set_enable = rockchip_pwm_set_enable_v2,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222};
223
224static const struct of_device_id rockchip_pwm_dt_ids[] = {
225	{ .compatible = "rockchip,rk2928-pwm", .data = &pwm_data_v1},
226	{ .compatible = "rockchip,rk3288-pwm", .data = &pwm_data_v2},
227	{ .compatible = "rockchip,vop-pwm", .data = &pwm_data_vop},
 
228	{ /* sentinel */ }
229};
230MODULE_DEVICE_TABLE(of, rockchip_pwm_dt_ids);
231
232static int rockchip_pwm_probe(struct platform_device *pdev)
233{
234	const struct of_device_id *id;
235	struct rockchip_pwm_chip *pc;
236	struct resource *r;
237	int ret;
 
238
239	id = of_match_device(rockchip_pwm_dt_ids, &pdev->dev);
240	if (!id)
241		return -EINVAL;
242
243	pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
244	if (!pc)
245		return -ENOMEM;
246
247	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
248	pc->base = devm_ioremap_resource(&pdev->dev, r);
249	if (IS_ERR(pc->base))
250		return PTR_ERR(pc->base);
251
252	pc->clk = devm_clk_get(&pdev->dev, NULL);
253	if (IS_ERR(pc->clk))
254		return PTR_ERR(pc->clk);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
256	ret = clk_prepare(pc->clk);
257	if (ret)
258		return ret;
 
 
 
 
 
 
259
260	platform_set_drvdata(pdev, pc);
261
262	pc->data = id->data;
263	pc->chip.dev = &pdev->dev;
264	pc->chip.ops = pc->data->ops;
265	pc->chip.base = -1;
266	pc->chip.npwm = 1;
267
268	if (pc->data->ops->set_polarity) {
269		pc->chip.of_xlate = of_pwm_xlate_with_flags;
270		pc->chip.of_pwm_n_cells = 3;
271	}
272
273	ret = pwmchip_add(&pc->chip);
274	if (ret < 0) {
275		clk_unprepare(pc->clk);
276		dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
277	}
278
 
 
 
 
 
 
 
 
 
 
 
 
 
279	return ret;
280}
281
282static int rockchip_pwm_remove(struct platform_device *pdev)
283{
284	struct rockchip_pwm_chip *pc = platform_get_drvdata(pdev);
285
 
 
 
286	clk_unprepare(pc->clk);
287
288	return pwmchip_remove(&pc->chip);
289}
290
291static struct platform_driver rockchip_pwm_driver = {
292	.driver = {
293		.name = "rockchip-pwm",
294		.of_match_table = rockchip_pwm_dt_ids,
295	},
296	.probe = rockchip_pwm_probe,
297	.remove = rockchip_pwm_remove,
298};
299module_platform_driver(rockchip_pwm_driver);
300
301MODULE_AUTHOR("Beniamino Galvani <b.galvani@gmail.com>");
302MODULE_DESCRIPTION("Rockchip SoC PWM driver");
303MODULE_LICENSE("GPL v2");
v6.2
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * PWM driver for Rockchip SoCs
  4 *
  5 * Copyright (C) 2014 Beniamino Galvani <b.galvani@gmail.com>
  6 * Copyright (C) 2014 ROCKCHIP, Inc.
 
 
 
 
  7 */
  8
  9#include <linux/clk.h>
 10#include <linux/io.h>
 11#include <linux/module.h>
 12#include <linux/of.h>
 13#include <linux/of_device.h>
 14#include <linux/platform_device.h>
 15#include <linux/pwm.h>
 16#include <linux/time.h>
 17
 18#define PWM_CTRL_TIMER_EN	(1 << 0)
 19#define PWM_CTRL_OUTPUT_EN	(1 << 3)
 20
 21#define PWM_ENABLE		(1 << 0)
 22#define PWM_CONTINUOUS		(1 << 1)
 23#define PWM_DUTY_POSITIVE	(1 << 3)
 24#define PWM_DUTY_NEGATIVE	(0 << 3)
 25#define PWM_INACTIVE_NEGATIVE	(0 << 4)
 26#define PWM_INACTIVE_POSITIVE	(1 << 4)
 27#define PWM_POLARITY_MASK	(PWM_DUTY_POSITIVE | PWM_INACTIVE_POSITIVE)
 28#define PWM_OUTPUT_LEFT		(0 << 5)
 29#define PWM_LOCK_EN		(1 << 6)
 30#define PWM_LP_DISABLE		(0 << 8)
 31
 32struct rockchip_pwm_chip {
 33	struct pwm_chip chip;
 34	struct clk *clk;
 35	struct clk *pclk;
 36	const struct rockchip_pwm_data *data;
 37	void __iomem *base;
 38};
 39
 40struct rockchip_pwm_regs {
 41	unsigned long duty;
 42	unsigned long period;
 43	unsigned long cntr;
 44	unsigned long ctrl;
 45};
 46
 47struct rockchip_pwm_data {
 48	struct rockchip_pwm_regs regs;
 49	unsigned int prescaler;
 50	bool supports_polarity;
 51	bool supports_lock;
 52	u32 enable_conf;
 
 53};
 54
 55static inline struct rockchip_pwm_chip *to_rockchip_pwm_chip(struct pwm_chip *c)
 56{
 57	return container_of(c, struct rockchip_pwm_chip, chip);
 58}
 59
 60static int rockchip_pwm_get_state(struct pwm_chip *chip,
 61				  struct pwm_device *pwm,
 62				  struct pwm_state *state)
 63{
 64	struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
 65	u32 enable_conf = pc->data->enable_conf;
 66	unsigned long clk_rate;
 67	u64 tmp;
 68	u32 val;
 69	int ret;
 70
 71	ret = clk_enable(pc->pclk);
 72	if (ret)
 73		return ret;
 
 
 
 74
 75	ret = clk_enable(pc->clk);
 76	if (ret)
 77		return ret;
 78
 79	clk_rate = clk_get_rate(pc->clk);
 
 
 
 
 
 
 80
 81	tmp = readl_relaxed(pc->base + pc->data->regs.period);
 82	tmp *= pc->data->prescaler * NSEC_PER_SEC;
 83	state->period = DIV_ROUND_CLOSEST_ULL(tmp, clk_rate);
 84
 85	tmp = readl_relaxed(pc->base + pc->data->regs.duty);
 86	tmp *= pc->data->prescaler * NSEC_PER_SEC;
 87	state->duty_cycle =  DIV_ROUND_CLOSEST_ULL(tmp, clk_rate);
 88
 89	val = readl_relaxed(pc->base + pc->data->regs.ctrl);
 90	state->enabled = (val & enable_conf) == enable_conf;
 91
 92	if (pc->data->supports_polarity && !(val & PWM_DUTY_POSITIVE))
 93		state->polarity = PWM_POLARITY_INVERSED;
 94	else
 95		state->polarity = PWM_POLARITY_NORMAL;
 96
 97	clk_disable(pc->clk);
 98	clk_disable(pc->pclk);
 99
100	return 0;
101}
102
103static void rockchip_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
104			       const struct pwm_state *state)
105{
106	struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
107	unsigned long period, duty;
108	u64 clk_rate, div;
109	u32 ctrl;
110
111	clk_rate = clk_get_rate(pc->clk);
112
113	/*
114	 * Since period and duty cycle registers have a width of 32
115	 * bits, every possible input period can be obtained using the
116	 * default prescaler value for all practical clock rate values.
117	 */
118	div = clk_rate * state->period;
119	period = DIV_ROUND_CLOSEST_ULL(div,
120				       pc->data->prescaler * NSEC_PER_SEC);
 
 
 
 
121
122	div = clk_rate * state->duty_cycle;
123	duty = DIV_ROUND_CLOSEST_ULL(div, pc->data->prescaler * NSEC_PER_SEC);
124
125	/*
126	 * Lock the period and duty of previous configuration, then
127	 * change the duty and period, that would not be effective.
128	 */
129	ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
130	if (pc->data->supports_lock) {
131		ctrl |= PWM_LOCK_EN;
132		writel_relaxed(ctrl, pc->base + pc->data->regs.ctrl);
133	}
134
135	writel(period, pc->base + pc->data->regs.period);
136	writel(duty, pc->base + pc->data->regs.duty);
 
 
 
137
138	if (pc->data->supports_polarity) {
139		ctrl &= ~PWM_POLARITY_MASK;
140		if (state->polarity == PWM_POLARITY_INVERSED)
141			ctrl |= PWM_DUTY_NEGATIVE | PWM_INACTIVE_POSITIVE;
142		else
143			ctrl |= PWM_DUTY_POSITIVE | PWM_INACTIVE_NEGATIVE;
144	}
145
 
 
 
 
146	/*
147	 * Unlock and set polarity at the same time,
148	 * the configuration of duty, period and polarity
149	 * would be effective together at next period.
150	 */
151	if (pc->data->supports_lock)
152		ctrl &= ~PWM_LOCK_EN;
153
154	writel(ctrl, pc->base + pc->data->regs.ctrl);
155}
156
157static int rockchip_pwm_enable(struct pwm_chip *chip,
158			       struct pwm_device *pwm,
159			       bool enable)
160{
161	struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
162	u32 enable_conf = pc->data->enable_conf;
163	int ret;
164	u32 val;
165
166	if (enable) {
167		ret = clk_enable(pc->clk);
168		if (ret)
169			return ret;
170	}
171
172	val = readl_relaxed(pc->base + pc->data->regs.ctrl);
173
174	if (enable)
175		val |= enable_conf;
176	else
177		val &= ~enable_conf;
178
179	writel_relaxed(val, pc->base + pc->data->regs.ctrl);
180
181	if (!enable)
182		clk_disable(pc->clk);
183
184	return 0;
185}
186
187static int rockchip_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
188			      const struct pwm_state *state)
189{
190	struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
191	struct pwm_state curstate;
192	bool enabled;
193	int ret = 0;
194
195	ret = clk_enable(pc->pclk);
196	if (ret)
197		return ret;
198
199	ret = clk_enable(pc->clk);
200	if (ret)
201		return ret;
202
203	pwm_get_state(pwm, &curstate);
204	enabled = curstate.enabled;
205
206	if (state->polarity != curstate.polarity && enabled &&
207	    !pc->data->supports_lock) {
208		ret = rockchip_pwm_enable(chip, pwm, false);
209		if (ret)
210			goto out;
211		enabled = false;
212	}
213
214	rockchip_pwm_config(chip, pwm, state);
215	if (state->enabled != enabled) {
216		ret = rockchip_pwm_enable(chip, pwm, state->enabled);
217		if (ret)
218			goto out;
219	}
220
221out:
222	clk_disable(pc->clk);
223	clk_disable(pc->pclk);
224
225	return ret;
226}
 
 
 
 
227
228static const struct pwm_ops rockchip_pwm_ops = {
229	.get_state = rockchip_pwm_get_state,
230	.apply = rockchip_pwm_apply,
 
 
231	.owner = THIS_MODULE,
232};
233
234static const struct rockchip_pwm_data pwm_data_v1 = {
235	.regs = {
236		.duty = 0x04,
237		.period = 0x08,
238		.cntr = 0x00,
239		.ctrl = 0x0c,
240	},
241	.prescaler = 2,
242	.supports_polarity = false,
243	.supports_lock = false,
244	.enable_conf = PWM_CTRL_OUTPUT_EN | PWM_CTRL_TIMER_EN,
245};
246
247static const struct rockchip_pwm_data pwm_data_v2 = {
248	.regs = {
249		.duty = 0x08,
250		.period = 0x04,
251		.cntr = 0x00,
252		.ctrl = 0x0c,
253	},
254	.prescaler = 1,
255	.supports_polarity = true,
256	.supports_lock = false,
257	.enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
258		       PWM_CONTINUOUS,
259};
260
261static const struct rockchip_pwm_data pwm_data_vop = {
262	.regs = {
263		.duty = 0x08,
264		.period = 0x04,
265		.cntr = 0x0c,
266		.ctrl = 0x00,
267	},
268	.prescaler = 1,
269	.supports_polarity = true,
270	.supports_lock = false,
271	.enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
272		       PWM_CONTINUOUS,
273};
274
275static const struct rockchip_pwm_data pwm_data_v3 = {
276	.regs = {
277		.duty = 0x08,
278		.period = 0x04,
279		.cntr = 0x00,
280		.ctrl = 0x0c,
281	},
282	.prescaler = 1,
283	.supports_polarity = true,
284	.supports_lock = true,
285	.enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
286		       PWM_CONTINUOUS,
287};
288
289static const struct of_device_id rockchip_pwm_dt_ids[] = {
290	{ .compatible = "rockchip,rk2928-pwm", .data = &pwm_data_v1},
291	{ .compatible = "rockchip,rk3288-pwm", .data = &pwm_data_v2},
292	{ .compatible = "rockchip,vop-pwm", .data = &pwm_data_vop},
293	{ .compatible = "rockchip,rk3328-pwm", .data = &pwm_data_v3},
294	{ /* sentinel */ }
295};
296MODULE_DEVICE_TABLE(of, rockchip_pwm_dt_ids);
297
298static int rockchip_pwm_probe(struct platform_device *pdev)
299{
300	const struct of_device_id *id;
301	struct rockchip_pwm_chip *pc;
302	u32 enable_conf, ctrl;
303	bool enabled;
304	int ret, count;
305
306	id = of_match_device(rockchip_pwm_dt_ids, &pdev->dev);
307	if (!id)
308		return -EINVAL;
309
310	pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
311	if (!pc)
312		return -ENOMEM;
313
314	pc->base = devm_platform_ioremap_resource(pdev, 0);
 
315	if (IS_ERR(pc->base))
316		return PTR_ERR(pc->base);
317
318	pc->clk = devm_clk_get(&pdev->dev, "pwm");
319	if (IS_ERR(pc->clk)) {
320		pc->clk = devm_clk_get(&pdev->dev, NULL);
321		if (IS_ERR(pc->clk))
322			return dev_err_probe(&pdev->dev, PTR_ERR(pc->clk),
323					     "Can't get PWM clk\n");
324	}
325
326	count = of_count_phandle_with_args(pdev->dev.of_node,
327					   "clocks", "#clock-cells");
328	if (count == 2)
329		pc->pclk = devm_clk_get(&pdev->dev, "pclk");
330	else
331		pc->pclk = pc->clk;
332
333	if (IS_ERR(pc->pclk))
334		return dev_err_probe(&pdev->dev, PTR_ERR(pc->pclk), "Can't get APB clk\n");
335
336	ret = clk_prepare_enable(pc->clk);
337	if (ret)
338		return dev_err_probe(&pdev->dev, ret, "Can't prepare enable PWM clk\n");
339
340	ret = clk_prepare_enable(pc->pclk);
341	if (ret) {
342		dev_err_probe(&pdev->dev, ret, "Can't prepare enable APB clk\n");
343		goto err_clk;
344	}
345
346	platform_set_drvdata(pdev, pc);
347
348	pc->data = id->data;
349	pc->chip.dev = &pdev->dev;
350	pc->chip.ops = &rockchip_pwm_ops;
 
351	pc->chip.npwm = 1;
352
353	enable_conf = pc->data->enable_conf;
354	ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
355	enabled = (ctrl & enable_conf) == enable_conf;
 
356
357	ret = pwmchip_add(&pc->chip);
358	if (ret < 0) {
359		dev_err_probe(&pdev->dev, ret, "pwmchip_add() failed\n");
360		goto err_pclk;
361	}
362
363	/* Keep the PWM clk enabled if the PWM appears to be up and running. */
364	if (!enabled)
365		clk_disable(pc->clk);
366
367	clk_disable(pc->pclk);
368
369	return 0;
370
371err_pclk:
372	clk_disable_unprepare(pc->pclk);
373err_clk:
374	clk_disable_unprepare(pc->clk);
375
376	return ret;
377}
378
379static int rockchip_pwm_remove(struct platform_device *pdev)
380{
381	struct rockchip_pwm_chip *pc = platform_get_drvdata(pdev);
382
383	pwmchip_remove(&pc->chip);
384
385	clk_unprepare(pc->pclk);
386	clk_unprepare(pc->clk);
387
388	return 0;
389}
390
391static struct platform_driver rockchip_pwm_driver = {
392	.driver = {
393		.name = "rockchip-pwm",
394		.of_match_table = rockchip_pwm_dt_ids,
395	},
396	.probe = rockchip_pwm_probe,
397	.remove = rockchip_pwm_remove,
398};
399module_platform_driver(rockchip_pwm_driver);
400
401MODULE_AUTHOR("Beniamino Galvani <b.galvani@gmail.com>");
402MODULE_DESCRIPTION("Rockchip SoC PWM driver");
403MODULE_LICENSE("GPL v2");