blob: 4b6c0622cf346e923546c5744f11f3632cc227a9 [file] [log] [blame]
Sascha Hauer0c2498f2011-01-28 09:40:40 +01001/*
2 * Generic pwmlib implementation
3 *
4 * Copyright (C) 2011 Sascha Hauer <s.hauer@pengutronix.de>
Thierry Redingf051c462011-12-14 11:12:23 +01005 * Copyright (C) 2011-2012 Avionic Design GmbH
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; see the file COPYING. If not, write to
19 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include <linux/module.h>
23#include <linux/pwm.h>
Thierry Redingf051c462011-12-14 11:12:23 +010024#include <linux/radix-tree.h>
Sascha Hauer0c2498f2011-01-28 09:40:40 +010025#include <linux/list.h>
26#include <linux/mutex.h>
27#include <linux/err.h>
28#include <linux/slab.h>
29#include <linux/device.h>
Thierry Reding62099ab2012-03-26 09:31:48 +020030#include <linux/debugfs.h>
31#include <linux/seq_file.h>
Sascha Hauer0c2498f2011-01-28 09:40:40 +010032
Laurent Pinchart208be762013-07-18 00:54:22 +020033#include <dt-bindings/pwm/pwm.h>
Sascha Hauer0c2498f2011-01-28 09:40:40 +010034
Laurent Pinchart208be762013-07-18 00:54:22 +020035#define MAX_PWMS 1024
Philip, Avinash83af2402012-11-21 13:10:44 +053036
Thierry Reding8138d2d2012-03-26 08:42:48 +020037static DEFINE_MUTEX(pwm_lookup_lock);
38static LIST_HEAD(pwm_lookup_list);
Sascha Hauer0c2498f2011-01-28 09:40:40 +010039static DEFINE_MUTEX(pwm_lock);
Thierry Redingf051c462011-12-14 11:12:23 +010040static LIST_HEAD(pwm_chips);
41static DECLARE_BITMAP(allocated_pwms, MAX_PWMS);
42static RADIX_TREE(pwm_tree, GFP_KERNEL);
Sascha Hauer0c2498f2011-01-28 09:40:40 +010043
Thierry Redingf051c462011-12-14 11:12:23 +010044static struct pwm_device *pwm_to_device(unsigned int pwm)
Sascha Hauer0c2498f2011-01-28 09:40:40 +010045{
Thierry Redingf051c462011-12-14 11:12:23 +010046 return radix_tree_lookup(&pwm_tree, pwm);
47}
Sascha Hauer0c2498f2011-01-28 09:40:40 +010048
Thierry Redingf051c462011-12-14 11:12:23 +010049static int alloc_pwms(int pwm, unsigned int count)
50{
51 unsigned int from = 0;
52 unsigned int start;
53
54 if (pwm >= MAX_PWMS)
55 return -EINVAL;
56
57 if (pwm >= 0)
58 from = pwm;
59
60 start = bitmap_find_next_zero_area(allocated_pwms, MAX_PWMS, from,
61 count, 0);
62
63 if (pwm >= 0 && start != pwm)
64 return -EEXIST;
65
66 if (start + count > MAX_PWMS)
67 return -ENOSPC;
68
69 return start;
70}
71
72static void free_pwms(struct pwm_chip *chip)
73{
74 unsigned int i;
75
76 for (i = 0; i < chip->npwm; i++) {
77 struct pwm_device *pwm = &chip->pwms[i];
Thierry Reding83a98862016-05-02 12:05:55 +020078
Thierry Redingf051c462011-12-14 11:12:23 +010079 radix_tree_delete(&pwm_tree, pwm->pwm);
Sascha Hauer0c2498f2011-01-28 09:40:40 +010080 }
81
Thierry Redingf051c462011-12-14 11:12:23 +010082 bitmap_clear(allocated_pwms, chip->base, chip->npwm);
83
84 kfree(chip->pwms);
85 chip->pwms = NULL;
86}
87
Thierry Reding8138d2d2012-03-26 08:42:48 +020088static struct pwm_chip *pwmchip_find_by_name(const char *name)
89{
90 struct pwm_chip *chip;
91
92 if (!name)
93 return NULL;
94
95 mutex_lock(&pwm_lock);
96
97 list_for_each_entry(chip, &pwm_chips, list) {
98 const char *chip_name = dev_name(chip->dev);
99
100 if (chip_name && strcmp(chip_name, name) == 0) {
101 mutex_unlock(&pwm_lock);
102 return chip;
103 }
104 }
105
106 mutex_unlock(&pwm_lock);
107
108 return NULL;
109}
110
Thierry Redingf051c462011-12-14 11:12:23 +0100111static int pwm_device_request(struct pwm_device *pwm, const char *label)
112{
113 int err;
114
115 if (test_bit(PWMF_REQUESTED, &pwm->flags))
116 return -EBUSY;
117
118 if (!try_module_get(pwm->chip->ops->owner))
119 return -ENODEV;
120
121 if (pwm->chip->ops->request) {
122 err = pwm->chip->ops->request(pwm->chip, pwm);
123 if (err) {
124 module_put(pwm->chip->ops->owner);
125 return err;
126 }
127 }
128
129 set_bit(PWMF_REQUESTED, &pwm->flags);
130 pwm->label = label;
131
132 return 0;
133}
134
Philip, Avinash83af2402012-11-21 13:10:44 +0530135struct pwm_device *
136of_pwm_xlate_with_flags(struct pwm_chip *pc, const struct of_phandle_args *args)
137{
138 struct pwm_device *pwm;
139
Lothar Wassmann42883cb2017-01-29 22:54:13 +0100140 /* check, whether the driver supports a third cell for flags */
Philip, Avinash83af2402012-11-21 13:10:44 +0530141 if (pc->of_pwm_n_cells < 3)
142 return ERR_PTR(-EINVAL);
143
Lothar Wassmann42883cb2017-01-29 22:54:13 +0100144 /* flags in the third cell are optional */
145 if (args->args_count < 2)
146 return ERR_PTR(-EINVAL);
147
Philip, Avinash83af2402012-11-21 13:10:44 +0530148 if (args->args[0] >= pc->npwm)
149 return ERR_PTR(-EINVAL);
150
151 pwm = pwm_request_from_chip(pc, args->args[0], NULL);
152 if (IS_ERR(pwm))
153 return pwm;
154
Boris Brezillone39c0df2016-04-14 21:17:21 +0200155 pwm->args.period = args->args[1];
Lothar Wassmann42883cb2017-01-29 22:54:13 +0100156 pwm->args.polarity = PWM_POLARITY_NORMAL;
Philip, Avinash83af2402012-11-21 13:10:44 +0530157
Lothar Wassmann42883cb2017-01-29 22:54:13 +0100158 if (args->args_count > 2 && args->args[2] & PWM_POLARITY_INVERTED)
Boris Brezillone39c0df2016-04-14 21:17:21 +0200159 pwm->args.polarity = PWM_POLARITY_INVERSED;
Philip, Avinash83af2402012-11-21 13:10:44 +0530160
161 return pwm;
162}
Thierry Reding417328c2012-11-28 15:12:07 +0100163EXPORT_SYMBOL_GPL(of_pwm_xlate_with_flags);
Philip, Avinash83af2402012-11-21 13:10:44 +0530164
Sachin Kamate50d3522012-08-10 16:41:13 +0530165static struct pwm_device *
166of_pwm_simple_xlate(struct pwm_chip *pc, const struct of_phandle_args *args)
Thierry Reding7299ab72011-12-14 11:10:32 +0100167{
168 struct pwm_device *pwm;
169
Lothar Wassmann42883cb2017-01-29 22:54:13 +0100170 /* sanity check driver support */
Thierry Reding7299ab72011-12-14 11:10:32 +0100171 if (pc->of_pwm_n_cells < 2)
172 return ERR_PTR(-EINVAL);
173
Lothar Wassmann42883cb2017-01-29 22:54:13 +0100174 /* all cells are required */
175 if (args->args_count != pc->of_pwm_n_cells)
176 return ERR_PTR(-EINVAL);
177
Thierry Reding7299ab72011-12-14 11:10:32 +0100178 if (args->args[0] >= pc->npwm)
179 return ERR_PTR(-EINVAL);
180
181 pwm = pwm_request_from_chip(pc, args->args[0], NULL);
182 if (IS_ERR(pwm))
183 return pwm;
184
Boris Brezillone39c0df2016-04-14 21:17:21 +0200185 pwm->args.period = args->args[1];
Thierry Reding7299ab72011-12-14 11:10:32 +0100186
187 return pwm;
188}
189
Sachin Kamatdfeb86e2012-08-02 12:32:42 +0530190static void of_pwmchip_add(struct pwm_chip *chip)
Thierry Reding7299ab72011-12-14 11:10:32 +0100191{
192 if (!chip->dev || !chip->dev->of_node)
193 return;
194
195 if (!chip->of_xlate) {
196 chip->of_xlate = of_pwm_simple_xlate;
197 chip->of_pwm_n_cells = 2;
198 }
199
200 of_node_get(chip->dev->of_node);
201}
202
Sachin Kamatdfeb86e2012-08-02 12:32:42 +0530203static void of_pwmchip_remove(struct pwm_chip *chip)
Thierry Reding7299ab72011-12-14 11:10:32 +0100204{
Markus Elfring8d6cc072015-02-03 11:54:28 +0100205 if (chip->dev)
Thierry Reding7299ab72011-12-14 11:10:32 +0100206 of_node_put(chip->dev->of_node);
207}
208
Thierry Redingf051c462011-12-14 11:12:23 +0100209/**
210 * pwm_set_chip_data() - set private chip data for a PWM
211 * @pwm: PWM device
212 * @data: pointer to chip-specific data
Thierry Reding04883802015-07-27 11:58:32 +0200213 *
214 * Returns: 0 on success or a negative error code on failure.
Thierry Redingf051c462011-12-14 11:12:23 +0100215 */
216int pwm_set_chip_data(struct pwm_device *pwm, void *data)
217{
218 if (!pwm)
219 return -EINVAL;
220
221 pwm->chip_data = data;
222
223 return 0;
224}
Thierry Reding928c4472013-01-30 09:22:24 +0100225EXPORT_SYMBOL_GPL(pwm_set_chip_data);
Thierry Redingf051c462011-12-14 11:12:23 +0100226
227/**
228 * pwm_get_chip_data() - get private chip data for a PWM
229 * @pwm: PWM device
Thierry Reding04883802015-07-27 11:58:32 +0200230 *
231 * Returns: A pointer to the chip-private data for the PWM device.
Thierry Redingf051c462011-12-14 11:12:23 +0100232 */
233void *pwm_get_chip_data(struct pwm_device *pwm)
234{
235 return pwm ? pwm->chip_data : NULL;
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100236}
Thierry Reding928c4472013-01-30 09:22:24 +0100237EXPORT_SYMBOL_GPL(pwm_get_chip_data);
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100238
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200239static bool pwm_ops_check(const struct pwm_ops *ops)
240{
241 /* driver supports legacy, non-atomic operation */
242 if (ops->config && ops->enable && ops->disable)
243 return true;
244
245 /* driver supports atomic operation */
246 if (ops->apply)
247 return true;
248
249 return false;
250}
251
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100252/**
Tim Krygerb6a00fa2015-05-26 13:08:16 -0700253 * pwmchip_add_with_polarity() - register a new PWM chip
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100254 * @chip: the PWM chip to add
Tim Krygerb6a00fa2015-05-26 13:08:16 -0700255 * @polarity: initial polarity of PWM channels
Thierry Redingf051c462011-12-14 11:12:23 +0100256 *
257 * Register a new PWM chip. If chip->base < 0 then a dynamically assigned base
Tim Krygerb6a00fa2015-05-26 13:08:16 -0700258 * will be used. The initial polarity for all channels is specified by the
259 * @polarity parameter.
Thierry Reding04883802015-07-27 11:58:32 +0200260 *
261 * Returns: 0 on success or a negative error code on failure.
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100262 */
Tim Krygerb6a00fa2015-05-26 13:08:16 -0700263int pwmchip_add_with_polarity(struct pwm_chip *chip,
264 enum pwm_polarity polarity)
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100265{
266 struct pwm_device *pwm;
Thierry Redingf051c462011-12-14 11:12:23 +0100267 unsigned int i;
268 int ret;
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100269
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200270 if (!chip || !chip->dev || !chip->ops || !chip->npwm)
271 return -EINVAL;
272
273 if (!pwm_ops_check(chip->ops))
Thierry Redingf051c462011-12-14 11:12:23 +0100274 return -EINVAL;
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100275
276 mutex_lock(&pwm_lock);
277
Thierry Redingf051c462011-12-14 11:12:23 +0100278 ret = alloc_pwms(chip->base, chip->npwm);
279 if (ret < 0)
280 goto out;
281
Thierry Reding2907f8a2016-05-02 12:07:34 +0200282 chip->pwms = kcalloc(chip->npwm, sizeof(*pwm), GFP_KERNEL);
Thierry Redingf051c462011-12-14 11:12:23 +0100283 if (!chip->pwms) {
284 ret = -ENOMEM;
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100285 goto out;
286 }
287
Thierry Redingf051c462011-12-14 11:12:23 +0100288 chip->base = ret;
289
290 for (i = 0; i < chip->npwm; i++) {
291 pwm = &chip->pwms[i];
292
293 pwm->chip = chip;
294 pwm->pwm = chip->base + i;
295 pwm->hwpwm = i;
Boris Brezillon43a276b2016-04-14 21:17:38 +0200296 pwm->state.polarity = polarity;
Fenglin Wu9e880ec2017-12-04 09:56:51 +0800297 pwm->state.output_type = PWM_OUTPUT_FIXED;
Thierry Redingf051c462011-12-14 11:12:23 +0100298
Boris Brezillon15fa8a432016-04-14 21:17:40 +0200299 if (chip->ops->get_state)
300 chip->ops->get_state(chip, pwm, &pwm->state);
Thierry Redingf051c462011-12-14 11:12:23 +0100301
302 radix_tree_insert(&pwm_tree, pwm->pwm, pwm);
303 }
304
305 bitmap_set(allocated_pwms, chip->base, chip->npwm);
306
307 INIT_LIST_HEAD(&chip->list);
308 list_add(&chip->list, &pwm_chips);
309
310 ret = 0;
311
Thierry Reding7299ab72011-12-14 11:10:32 +0100312 if (IS_ENABLED(CONFIG_OF))
313 of_pwmchip_add(chip);
314
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100315out:
316 mutex_unlock(&pwm_lock);
Phong Hoang384642f2019-03-19 19:40:08 +0900317
318 if (!ret)
319 pwmchip_sysfs_export(chip);
320
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100321 return ret;
322}
Tim Krygerb6a00fa2015-05-26 13:08:16 -0700323EXPORT_SYMBOL_GPL(pwmchip_add_with_polarity);
324
325/**
326 * pwmchip_add() - register a new PWM chip
327 * @chip: the PWM chip to add
328 *
329 * Register a new PWM chip. If chip->base < 0 then a dynamically assigned base
330 * will be used. The initial polarity for all channels is normal.
Thierry Reding04883802015-07-27 11:58:32 +0200331 *
332 * Returns: 0 on success or a negative error code on failure.
Tim Krygerb6a00fa2015-05-26 13:08:16 -0700333 */
334int pwmchip_add(struct pwm_chip *chip)
335{
336 return pwmchip_add_with_polarity(chip, PWM_POLARITY_NORMAL);
337}
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100338EXPORT_SYMBOL_GPL(pwmchip_add);
339
340/**
341 * pwmchip_remove() - remove a PWM chip
342 * @chip: the PWM chip to remove
343 *
344 * Removes a PWM chip. This function may return busy if the PWM chip provides
345 * a PWM device that is still requested.
Thierry Reding04883802015-07-27 11:58:32 +0200346 *
347 * Returns: 0 on success or a negative error code on failure.
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100348 */
349int pwmchip_remove(struct pwm_chip *chip)
350{
Thierry Redingf051c462011-12-14 11:12:23 +0100351 unsigned int i;
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100352 int ret = 0;
353
Phong Hoang384642f2019-03-19 19:40:08 +0900354 pwmchip_sysfs_unexport(chip);
David Hsu07334242016-08-09 14:57:46 -0700355
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100356 mutex_lock(&pwm_lock);
357
Thierry Redingf051c462011-12-14 11:12:23 +0100358 for (i = 0; i < chip->npwm; i++) {
359 struct pwm_device *pwm = &chip->pwms[i];
360
361 if (test_bit(PWMF_REQUESTED, &pwm->flags)) {
362 ret = -EBUSY;
363 goto out;
364 }
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100365 }
366
Thierry Redingf051c462011-12-14 11:12:23 +0100367 list_del_init(&chip->list);
Thierry Reding7299ab72011-12-14 11:10:32 +0100368
369 if (IS_ENABLED(CONFIG_OF))
370 of_pwmchip_remove(chip);
371
Thierry Redingf051c462011-12-14 11:12:23 +0100372 free_pwms(chip);
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100373
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100374out:
375 mutex_unlock(&pwm_lock);
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100376 return ret;
377}
378EXPORT_SYMBOL_GPL(pwmchip_remove);
379
380/**
381 * pwm_request() - request a PWM device
Thierry Reding04883802015-07-27 11:58:32 +0200382 * @pwm: global PWM device index
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100383 * @label: PWM device label
Thierry Reding8138d2d2012-03-26 08:42:48 +0200384 *
385 * This function is deprecated, use pwm_get() instead.
Thierry Reding04883802015-07-27 11:58:32 +0200386 *
387 * Returns: A pointer to a PWM device or an ERR_PTR()-encoded error code on
388 * failure.
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100389 */
Thierry Redingf051c462011-12-14 11:12:23 +0100390struct pwm_device *pwm_request(int pwm, const char *label)
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100391{
Thierry Redingf051c462011-12-14 11:12:23 +0100392 struct pwm_device *dev;
393 int err;
394
395 if (pwm < 0 || pwm >= MAX_PWMS)
396 return ERR_PTR(-EINVAL);
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100397
398 mutex_lock(&pwm_lock);
399
Thierry Redingf051c462011-12-14 11:12:23 +0100400 dev = pwm_to_device(pwm);
401 if (!dev) {
402 dev = ERR_PTR(-EPROBE_DEFER);
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100403 goto out;
404 }
405
Thierry Redingf051c462011-12-14 11:12:23 +0100406 err = pwm_device_request(dev, label);
407 if (err < 0)
408 dev = ERR_PTR(err);
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100409
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100410out:
411 mutex_unlock(&pwm_lock);
412
Thierry Redingf051c462011-12-14 11:12:23 +0100413 return dev;
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100414}
415EXPORT_SYMBOL_GPL(pwm_request);
416
417/**
Thierry Redingf051c462011-12-14 11:12:23 +0100418 * pwm_request_from_chip() - request a PWM device relative to a PWM chip
419 * @chip: PWM chip
420 * @index: per-chip index of the PWM to request
421 * @label: a literal description string of this PWM
422 *
Thierry Reding04883802015-07-27 11:58:32 +0200423 * Returns: A pointer to the PWM device at the given index of the given PWM
424 * chip. A negative error code is returned if the index is not valid for the
425 * specified PWM chip or if the PWM device cannot be requested.
Thierry Redingf051c462011-12-14 11:12:23 +0100426 */
427struct pwm_device *pwm_request_from_chip(struct pwm_chip *chip,
428 unsigned int index,
429 const char *label)
430{
431 struct pwm_device *pwm;
432 int err;
433
434 if (!chip || index >= chip->npwm)
435 return ERR_PTR(-EINVAL);
436
437 mutex_lock(&pwm_lock);
438 pwm = &chip->pwms[index];
439
440 err = pwm_device_request(pwm, label);
441 if (err < 0)
442 pwm = ERR_PTR(err);
443
444 mutex_unlock(&pwm_lock);
445 return pwm;
446}
447EXPORT_SYMBOL_GPL(pwm_request_from_chip);
448
449/**
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100450 * pwm_free() - free a PWM device
451 * @pwm: PWM device
Thierry Reding8138d2d2012-03-26 08:42:48 +0200452 *
453 * This function is deprecated, use pwm_put() instead.
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100454 */
455void pwm_free(struct pwm_device *pwm)
456{
Thierry Reding8138d2d2012-03-26 08:42:48 +0200457 pwm_put(pwm);
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100458}
459EXPORT_SYMBOL_GPL(pwm_free);
460
461/**
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200462 * pwm_apply_state() - atomically apply a new state to a PWM device
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100463 * @pwm: PWM device
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200464 * @state: new state to apply. This can be adjusted by the PWM driver
465 * if the requested config is not achievable, for example,
466 * ->duty_cycle and ->period might be approximated.
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100467 */
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200468int pwm_apply_state(struct pwm_device *pwm, struct pwm_state *state)
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100469{
H Hartley Sweeten76abbdde2013-06-11 10:38:59 -0700470 int err;
471
Brian Norrisef2bf492016-05-27 09:45:49 -0700472 if (!pwm || !state || !state->period ||
473 state->duty_cycle > state->period)
Jonathan Richardsond1cd2142015-10-16 17:40:58 -0700474 return -EINVAL;
475
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200476 if (!memcmp(state, &pwm->state, sizeof(*state)))
477 return 0;
Jonathan Richardsond1cd2142015-10-16 17:40:58 -0700478
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200479 if (pwm->chip->ops->apply) {
480 err = pwm->chip->ops->apply(pwm->chip, pwm, state);
Jonathan Richardsond1cd2142015-10-16 17:40:58 -0700481 if (err)
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200482 return err;
483
484 pwm->state = *state;
485 } else {
486 /*
487 * FIXME: restore the initial state in case of error.
488 */
489 if (state->polarity != pwm->state.polarity) {
490 if (!pwm->chip->ops->set_polarity)
491 return -ENOTSUPP;
492
493 /*
494 * Changing the polarity of a running PWM is
495 * only allowed when the PWM driver implements
496 * ->apply().
497 */
498 if (pwm->state.enabled) {
499 pwm->chip->ops->disable(pwm->chip, pwm);
500 pwm->state.enabled = false;
501 }
502
503 err = pwm->chip->ops->set_polarity(pwm->chip, pwm,
504 state->polarity);
505 if (err)
506 return err;
507
508 pwm->state.polarity = state->polarity;
509 }
510
Fenglin Wu9e880ec2017-12-04 09:56:51 +0800511 if (state->output_type != pwm->state.output_type) {
512 if (!pwm->chip->ops->set_output_type)
513 return -ENOTSUPP;
514
515 err = pwm->chip->ops->set_output_type(pwm->chip, pwm,
516 state->output_type);
517 if (err)
518 return err;
519
520 pwm->state.output_type = state->output_type;
521 }
522
523 if (state->output_pattern != pwm->state.output_pattern &&
524 state->output_pattern != NULL) {
525 if (!pwm->chip->ops->set_output_pattern)
526 return -ENOTSUPP;
527
528 err = pwm->chip->ops->set_output_pattern(pwm->chip,
529 pwm, state->output_pattern);
530 if (err)
531 return err;
532
533 pwm->state.output_pattern = state->output_pattern;
534 }
535
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200536 if (state->period != pwm->state.period ||
537 state->duty_cycle != pwm->state.duty_cycle) {
Fenglin Wua691c362018-09-10 10:05:52 +0800538 if (pwm->chip->ops->config_extend) {
539 err = pwm->chip->ops->config_extend(pwm->chip,
540 pwm, state->duty_cycle,
541 state->period);
542 } else {
543 if (state->period > UINT_MAX)
544 pr_warn("period %llu duty_cycle %llu will be truncated\n",
545 state->period,
546 state->duty_cycle);
547 err = pwm->chip->ops->config(pwm->chip, pwm,
548 state->duty_cycle,
549 state->period);
550 }
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200551 if (err)
552 return err;
553
554 pwm->state.duty_cycle = state->duty_cycle;
555 pwm->state.period = state->period;
556 }
557
558 if (state->enabled != pwm->state.enabled) {
559 if (state->enabled) {
560 err = pwm->chip->ops->enable(pwm->chip, pwm);
561 if (err)
562 return err;
563 } else {
564 pwm->chip->ops->disable(pwm->chip, pwm);
565 }
566
567 pwm->state.enabled = state->enabled;
568 }
Jonathan Richardsond1cd2142015-10-16 17:40:58 -0700569 }
570
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200571 return 0;
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100572}
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200573EXPORT_SYMBOL_GPL(pwm_apply_state);
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100574
575/**
Lee Jones3a3d1a42016-06-08 10:21:23 +0100576 * pwm_capture() - capture and report a PWM signal
577 * @pwm: PWM device
578 * @result: structure to fill with capture result
579 * @timeout: time to wait, in milliseconds, before giving up on capture
580 *
581 * Returns: 0 on success or a negative error code on failure.
582 */
583int pwm_capture(struct pwm_device *pwm, struct pwm_capture *result,
584 unsigned long timeout)
585{
586 int err;
587
588 if (!pwm || !pwm->chip->ops)
589 return -EINVAL;
590
591 if (!pwm->chip->ops->capture)
592 return -ENOSYS;
593
594 mutex_lock(&pwm_lock);
595 err = pwm->chip->ops->capture(pwm->chip, pwm, result, timeout);
596 mutex_unlock(&pwm_lock);
597
598 return err;
599}
600EXPORT_SYMBOL_GPL(pwm_capture);
601
602/**
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200603 * pwm_adjust_config() - adjust the current PWM config to the PWM arguments
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100604 * @pwm: PWM device
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200605 *
606 * This function will adjust the PWM config to the PWM arguments provided
607 * by the DT or PWM lookup table. This is particularly useful to adapt
608 * the bootloader config to the Linux one.
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100609 */
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200610int pwm_adjust_config(struct pwm_device *pwm)
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100611{
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200612 struct pwm_state state;
613 struct pwm_args pargs;
Boris Brezillon09a7e4a2016-04-14 21:17:39 +0200614
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200615 pwm_get_args(pwm, &pargs);
616 pwm_get_state(pwm, &state);
617
618 /*
619 * If the current period is zero it means that either the PWM driver
620 * does not support initial state retrieval or the PWM has not yet
621 * been configured.
622 *
623 * In either case, we setup the new period and polarity, and assign a
624 * duty cycle of 0.
625 */
626 if (!state.period) {
627 state.duty_cycle = 0;
628 state.period = pargs.period;
629 state.polarity = pargs.polarity;
630
631 return pwm_apply_state(pwm, &state);
Boris Brezillon09a7e4a2016-04-14 21:17:39 +0200632 }
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200633
634 /*
635 * Adjust the PWM duty cycle/period based on the period value provided
636 * in PWM args.
637 */
638 if (pargs.period != state.period) {
639 u64 dutycycle = (u64)state.duty_cycle * pargs.period;
640
641 do_div(dutycycle, state.period);
642 state.duty_cycle = dutycycle;
643 state.period = pargs.period;
644 }
645
646 /*
647 * If the polarity changed, we should also change the duty cycle.
648 */
649 if (pargs.polarity != state.polarity) {
650 state.polarity = pargs.polarity;
651 state.duty_cycle = state.period - state.duty_cycle;
652 }
653
654 return pwm_apply_state(pwm, &state);
Sascha Hauer0c2498f2011-01-28 09:40:40 +0100655}
Boris Brezillon5ec803e2016-04-14 21:17:41 +0200656EXPORT_SYMBOL_GPL(pwm_adjust_config);
Thierry Reding62099ab2012-03-26 09:31:48 +0200657
Thierry Reding7299ab72011-12-14 11:10:32 +0100658static struct pwm_chip *of_node_to_pwmchip(struct device_node *np)
659{
660 struct pwm_chip *chip;
661
662 mutex_lock(&pwm_lock);
663
664 list_for_each_entry(chip, &pwm_chips, list)
665 if (chip->dev && chip->dev->of_node == np) {
666 mutex_unlock(&pwm_lock);
667 return chip;
668 }
669
670 mutex_unlock(&pwm_lock);
671
672 return ERR_PTR(-EPROBE_DEFER);
673}
674
675/**
Peter Ujfalusi8eb96122012-12-21 01:43:58 -0800676 * of_pwm_get() - request a PWM via the PWM framework
Thierry Reding7299ab72011-12-14 11:10:32 +0100677 * @np: device node to get the PWM from
678 * @con_id: consumer name
679 *
680 * Returns the PWM device parsed from the phandle and index specified in the
681 * "pwms" property of a device tree node or a negative error-code on failure.
682 * Values parsed from the device tree are stored in the returned PWM device
683 * object.
684 *
685 * If con_id is NULL, the first PWM device listed in the "pwms" property will
686 * be requested. Otherwise the "pwm-names" property is used to do a reverse
687 * lookup of the PWM index. This also means that the "pwm-names" property
688 * becomes mandatory for devices that look up the PWM device via the con_id
689 * parameter.
Thierry Reding04883802015-07-27 11:58:32 +0200690 *
691 * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
692 * error code on failure.
Thierry Reding7299ab72011-12-14 11:10:32 +0100693 */
Peter Ujfalusi8eb96122012-12-21 01:43:58 -0800694struct pwm_device *of_pwm_get(struct device_node *np, const char *con_id)
Thierry Reding7299ab72011-12-14 11:10:32 +0100695{
696 struct pwm_device *pwm = NULL;
697 struct of_phandle_args args;
698 struct pwm_chip *pc;
699 int index = 0;
700 int err;
701
702 if (con_id) {
703 index = of_property_match_string(np, "pwm-names", con_id);
704 if (index < 0)
705 return ERR_PTR(index);
706 }
707
708 err = of_parse_phandle_with_args(np, "pwms", "#pwm-cells", index,
709 &args);
710 if (err) {
Lothar Wassmannf2dafc02017-01-29 22:54:05 +0100711 pr_err("%s(): can't parse \"pwms\" property\n", __func__);
Thierry Reding7299ab72011-12-14 11:10:32 +0100712 return ERR_PTR(err);
713 }
714
715 pc = of_node_to_pwmchip(args.np);
716 if (IS_ERR(pc)) {
Jerome Brunet93c292e2017-05-23 18:05:03 +0200717 if (PTR_ERR(pc) != -EPROBE_DEFER)
718 pr_err("%s(): PWM chip not found\n", __func__);
719
Thierry Reding7299ab72011-12-14 11:10:32 +0100720 pwm = ERR_CAST(pc);
721 goto put;
722 }
723
Thierry Reding7299ab72011-12-14 11:10:32 +0100724 pwm = pc->of_xlate(pc, &args);
725 if (IS_ERR(pwm))
726 goto put;
727
728 /*
729 * If a consumer name was not given, try to look it up from the
730 * "pwm-names" property if it exists. Otherwise use the name of
731 * the user device node.
732 */
733 if (!con_id) {
734 err = of_property_read_string_index(np, "pwm-names", index,
735 &con_id);
736 if (err < 0)
737 con_id = np->name;
738 }
739
740 pwm->label = con_id;
741
742put:
743 of_node_put(args.np);
744
745 return pwm;
746}
Peter Ujfalusi8eb96122012-12-21 01:43:58 -0800747EXPORT_SYMBOL_GPL(of_pwm_get);
Thierry Reding7299ab72011-12-14 11:10:32 +0100748
Thierry Reding8138d2d2012-03-26 08:42:48 +0200749/**
750 * pwm_add_table() - register PWM device consumers
751 * @table: array of consumers to register
752 * @num: number of consumers in table
753 */
Shobhit Kumarc264f112015-03-12 22:01:31 +0530754void pwm_add_table(struct pwm_lookup *table, size_t num)
Thierry Reding8138d2d2012-03-26 08:42:48 +0200755{
756 mutex_lock(&pwm_lookup_lock);
757
758 while (num--) {
759 list_add_tail(&table->list, &pwm_lookup_list);
760 table++;
761 }
762
763 mutex_unlock(&pwm_lookup_lock);
764}
765
766/**
Shobhit Kumarefb0de52015-05-05 15:04:18 +0530767 * pwm_remove_table() - unregister PWM device consumers
768 * @table: array of consumers to unregister
769 * @num: number of consumers in table
770 */
771void pwm_remove_table(struct pwm_lookup *table, size_t num)
772{
773 mutex_lock(&pwm_lookup_lock);
774
775 while (num--) {
776 list_del(&table->list);
777 table++;
778 }
779
780 mutex_unlock(&pwm_lookup_lock);
781}
782
783/**
Thierry Reding8138d2d2012-03-26 08:42:48 +0200784 * pwm_get() - look up and request a PWM device
785 * @dev: device for PWM consumer
786 * @con_id: consumer name
787 *
Thierry Reding7299ab72011-12-14 11:10:32 +0100788 * Lookup is first attempted using DT. If the device was not instantiated from
789 * a device tree, a PWM chip and a relative index is looked up via a table
790 * supplied by board setup code (see pwm_add_table()).
Thierry Reding8138d2d2012-03-26 08:42:48 +0200791 *
792 * Once a PWM chip has been found the specified PWM device will be requested
793 * and is ready to be used.
Thierry Reding04883802015-07-27 11:58:32 +0200794 *
795 * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
796 * error code on failure.
Thierry Reding8138d2d2012-03-26 08:42:48 +0200797 */
798struct pwm_device *pwm_get(struct device *dev, const char *con_id)
799{
Sachin Kamate50d3522012-08-10 16:41:13 +0530800 const char *dev_id = dev ? dev_name(dev) : NULL;
Hans de Goede69efb342017-01-22 17:14:07 +0100801 struct pwm_device *pwm;
802 struct pwm_chip *chip;
Thierry Reding8138d2d2012-03-26 08:42:48 +0200803 unsigned int best = 0;
Geert Uytterhoeven70145f82014-08-28 11:03:14 +0200804 struct pwm_lookup *p, *chosen = NULL;
Thierry Reding8138d2d2012-03-26 08:42:48 +0200805 unsigned int match;
Hans de Goedeb526a312017-01-22 17:14:08 +0100806 int err;
Thierry Reding8138d2d2012-03-26 08:42:48 +0200807
Thierry Reding7299ab72011-12-14 11:10:32 +0100808 /* look up via DT first */
809 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
Peter Ujfalusi8eb96122012-12-21 01:43:58 -0800810 return of_pwm_get(dev->of_node, con_id);
Thierry Reding7299ab72011-12-14 11:10:32 +0100811
Thierry Reding8138d2d2012-03-26 08:42:48 +0200812 /*
813 * We look up the provider in the static table typically provided by
814 * board setup code. We first try to lookup the consumer device by
815 * name. If the consumer device was passed in as NULL or if no match
816 * was found, we try to find the consumer by directly looking it up
817 * by name.
818 *
819 * If a match is found, the provider PWM chip is looked up by name
820 * and a PWM device is requested using the PWM device per-chip index.
821 *
822 * The lookup algorithm was shamelessly taken from the clock
823 * framework:
824 *
825 * We do slightly fuzzy matching here:
826 * An entry with a NULL ID is assumed to be a wildcard.
827 * If an entry has a device ID, it must match
828 * If an entry has a connection ID, it must match
829 * Then we take the most specific entry - with the following order
830 * of precedence: dev+con > dev only > con only.
831 */
832 mutex_lock(&pwm_lookup_lock);
833
834 list_for_each_entry(p, &pwm_lookup_list, list) {
835 match = 0;
836
837 if (p->dev_id) {
838 if (!dev_id || strcmp(p->dev_id, dev_id))
839 continue;
840
841 match += 2;
842 }
843
844 if (p->con_id) {
845 if (!con_id || strcmp(p->con_id, con_id))
846 continue;
847
848 match += 1;
849 }
850
851 if (match > best) {
Geert Uytterhoeven70145f82014-08-28 11:03:14 +0200852 chosen = p;
Thierry Reding8138d2d2012-03-26 08:42:48 +0200853
854 if (match != 3)
855 best = match;
856 else
857 break;
858 }
859 }
860
Hans de Goede69efb342017-01-22 17:14:07 +0100861 mutex_unlock(&pwm_lookup_lock);
862
863 if (!chosen)
864 return ERR_PTR(-ENODEV);
Alexandre Belloni3796ce12014-05-19 22:42:32 +0200865
Geert Uytterhoeven70145f82014-08-28 11:03:14 +0200866 chip = pwmchip_find_by_name(chosen->provider);
Hans de Goedeb526a312017-01-22 17:14:08 +0100867
868 /*
869 * If the lookup entry specifies a module, load the module and retry
870 * the PWM chip lookup. This can be used to work around driver load
871 * ordering issues if driver's can't be made to properly support the
872 * deferred probe mechanism.
873 */
874 if (!chip && chosen->module) {
875 err = request_module(chosen->module);
876 if (err == 0)
877 chip = pwmchip_find_by_name(chosen->provider);
878 }
879
Geert Uytterhoeven70145f82014-08-28 11:03:14 +0200880 if (!chip)
Hans de Goede69efb342017-01-22 17:14:07 +0100881 return ERR_PTR(-EPROBE_DEFER);
Geert Uytterhoeven70145f82014-08-28 11:03:14 +0200882
883 pwm = pwm_request_from_chip(chip, chosen->index, con_id ?: dev_id);
Alexandre Belloni3796ce12014-05-19 22:42:32 +0200884 if (IS_ERR(pwm))
Hans de Goede69efb342017-01-22 17:14:07 +0100885 return pwm;
Thierry Reding8138d2d2012-03-26 08:42:48 +0200886
Boris Brezillonfbd45a12016-05-17 14:27:25 +0200887 pwm->args.period = chosen->period;
888 pwm->args.polarity = chosen->polarity;
889
Thierry Reding8138d2d2012-03-26 08:42:48 +0200890 return pwm;
891}
892EXPORT_SYMBOL_GPL(pwm_get);
893
894/**
895 * pwm_put() - release a PWM device
896 * @pwm: PWM device
897 */
898void pwm_put(struct pwm_device *pwm)
899{
900 if (!pwm)
901 return;
902
903 mutex_lock(&pwm_lock);
904
905 if (!test_and_clear_bit(PWMF_REQUESTED, &pwm->flags)) {
Sachin Kamate50d3522012-08-10 16:41:13 +0530906 pr_warn("PWM device already freed\n");
Thierry Reding8138d2d2012-03-26 08:42:48 +0200907 goto out;
908 }
909
910 if (pwm->chip->ops->free)
911 pwm->chip->ops->free(pwm->chip, pwm);
912
Uwe Kleine-Königa0303632019-03-25 10:49:33 +0100913 pwm_set_chip_data(pwm, NULL);
Thierry Reding8138d2d2012-03-26 08:42:48 +0200914 pwm->label = NULL;
915
916 module_put(pwm->chip->ops->owner);
917out:
918 mutex_unlock(&pwm_lock);
919}
920EXPORT_SYMBOL_GPL(pwm_put);
921
Alexandre Courbot63543162012-08-01 19:20:58 +0900922static void devm_pwm_release(struct device *dev, void *res)
923{
924 pwm_put(*(struct pwm_device **)res);
925}
926
927/**
928 * devm_pwm_get() - resource managed pwm_get()
929 * @dev: device for PWM consumer
930 * @con_id: consumer name
931 *
932 * This function performs like pwm_get() but the acquired PWM device will
933 * automatically be released on driver detach.
Thierry Reding04883802015-07-27 11:58:32 +0200934 *
935 * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
936 * error code on failure.
Alexandre Courbot63543162012-08-01 19:20:58 +0900937 */
938struct pwm_device *devm_pwm_get(struct device *dev, const char *con_id)
939{
940 struct pwm_device **ptr, *pwm;
941
Wolfram Sang77f0b9d2013-06-03 22:27:17 +0200942 ptr = devres_alloc(devm_pwm_release, sizeof(*ptr), GFP_KERNEL);
Alexandre Courbot63543162012-08-01 19:20:58 +0900943 if (!ptr)
944 return ERR_PTR(-ENOMEM);
945
946 pwm = pwm_get(dev, con_id);
947 if (!IS_ERR(pwm)) {
948 *ptr = pwm;
949 devres_add(dev, ptr);
950 } else {
951 devres_free(ptr);
952 }
953
954 return pwm;
955}
956EXPORT_SYMBOL_GPL(devm_pwm_get);
957
Peter Ujfalusi261a5ed2012-12-21 01:43:59 -0800958/**
959 * devm_of_pwm_get() - resource managed of_pwm_get()
960 * @dev: device for PWM consumer
961 * @np: device node to get the PWM from
962 * @con_id: consumer name
963 *
964 * This function performs like of_pwm_get() but the acquired PWM device will
965 * automatically be released on driver detach.
Thierry Reding04883802015-07-27 11:58:32 +0200966 *
967 * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
968 * error code on failure.
Peter Ujfalusi261a5ed2012-12-21 01:43:59 -0800969 */
970struct pwm_device *devm_of_pwm_get(struct device *dev, struct device_node *np,
971 const char *con_id)
972{
973 struct pwm_device **ptr, *pwm;
974
Wolfram Sang77f0b9d2013-06-03 22:27:17 +0200975 ptr = devres_alloc(devm_pwm_release, sizeof(*ptr), GFP_KERNEL);
Peter Ujfalusi261a5ed2012-12-21 01:43:59 -0800976 if (!ptr)
977 return ERR_PTR(-ENOMEM);
978
979 pwm = of_pwm_get(np, con_id);
980 if (!IS_ERR(pwm)) {
981 *ptr = pwm;
982 devres_add(dev, ptr);
983 } else {
984 devres_free(ptr);
985 }
986
987 return pwm;
988}
989EXPORT_SYMBOL_GPL(devm_of_pwm_get);
990
Alexandre Courbot63543162012-08-01 19:20:58 +0900991static int devm_pwm_match(struct device *dev, void *res, void *data)
992{
993 struct pwm_device **p = res;
994
995 if (WARN_ON(!p || !*p))
996 return 0;
997
998 return *p == data;
999}
1000
1001/**
1002 * devm_pwm_put() - resource managed pwm_put()
1003 * @dev: device for PWM consumer
1004 * @pwm: PWM device
1005 *
1006 * Release a PWM previously allocated using devm_pwm_get(). Calling this
1007 * function is usually not needed because devm-allocated resources are
1008 * automatically released on driver detach.
1009 */
1010void devm_pwm_put(struct device *dev, struct pwm_device *pwm)
1011{
1012 WARN_ON(devres_release(dev, devm_pwm_release, devm_pwm_match, pwm));
1013}
1014EXPORT_SYMBOL_GPL(devm_pwm_put);
1015
Thierry Reding62099ab2012-03-26 09:31:48 +02001016#ifdef CONFIG_DEBUG_FS
1017static void pwm_dbg_show(struct pwm_chip *chip, struct seq_file *s)
1018{
1019 unsigned int i;
1020
1021 for (i = 0; i < chip->npwm; i++) {
1022 struct pwm_device *pwm = &chip->pwms[i];
Boris Brezillon39100ce2016-04-14 21:17:43 +02001023 struct pwm_state state;
1024
1025 pwm_get_state(pwm, &state);
Thierry Reding62099ab2012-03-26 09:31:48 +02001026
1027 seq_printf(s, " pwm-%-3d (%-20.20s):", i, pwm->label);
1028
1029 if (test_bit(PWMF_REQUESTED, &pwm->flags))
Jingoo Hanadcba1e2013-12-19 13:31:24 +09001030 seq_puts(s, " requested");
Thierry Reding62099ab2012-03-26 09:31:48 +02001031
Boris Brezillon39100ce2016-04-14 21:17:43 +02001032 if (state.enabled)
Jingoo Hanadcba1e2013-12-19 13:31:24 +09001033 seq_puts(s, " enabled");
Thierry Reding62099ab2012-03-26 09:31:48 +02001034
Fenglin Wua691c362018-09-10 10:05:52 +08001035 seq_printf(s, " period: %llu ns", state.period);
1036 seq_printf(s, " duty: %llu ns", state.duty_cycle);
Heiko Stübner23e35232016-04-14 21:17:44 +02001037 seq_printf(s, " polarity: %s",
1038 state.polarity ? "inverse" : "normal");
1039
Jingoo Hanadcba1e2013-12-19 13:31:24 +09001040 seq_puts(s, "\n");
Thierry Reding62099ab2012-03-26 09:31:48 +02001041 }
1042}
1043
1044static void *pwm_seq_start(struct seq_file *s, loff_t *pos)
1045{
1046 mutex_lock(&pwm_lock);
1047 s->private = "";
1048
1049 return seq_list_start(&pwm_chips, *pos);
1050}
1051
1052static void *pwm_seq_next(struct seq_file *s, void *v, loff_t *pos)
1053{
1054 s->private = "\n";
1055
1056 return seq_list_next(v, &pwm_chips, pos);
1057}
1058
1059static void pwm_seq_stop(struct seq_file *s, void *v)
1060{
1061 mutex_unlock(&pwm_lock);
1062}
1063
1064static int pwm_seq_show(struct seq_file *s, void *v)
1065{
1066 struct pwm_chip *chip = list_entry(v, struct pwm_chip, list);
1067
1068 seq_printf(s, "%s%s/%s, %d PWM device%s\n", (char *)s->private,
1069 chip->dev->bus ? chip->dev->bus->name : "no-bus",
1070 dev_name(chip->dev), chip->npwm,
1071 (chip->npwm != 1) ? "s" : "");
1072
1073 if (chip->ops->dbg_show)
1074 chip->ops->dbg_show(chip, s);
1075 else
1076 pwm_dbg_show(chip, s);
1077
1078 return 0;
1079}
1080
1081static const struct seq_operations pwm_seq_ops = {
1082 .start = pwm_seq_start,
1083 .next = pwm_seq_next,
1084 .stop = pwm_seq_stop,
1085 .show = pwm_seq_show,
1086};
1087
1088static int pwm_seq_open(struct inode *inode, struct file *file)
1089{
1090 return seq_open(file, &pwm_seq_ops);
1091}
1092
1093static const struct file_operations pwm_debugfs_ops = {
1094 .owner = THIS_MODULE,
1095 .open = pwm_seq_open,
1096 .read = seq_read,
1097 .llseek = seq_lseek,
1098 .release = seq_release,
1099};
1100
1101static int __init pwm_debugfs_init(void)
1102{
1103 debugfs_create_file("pwm", S_IFREG | S_IRUGO, NULL, NULL,
1104 &pwm_debugfs_ops);
1105
1106 return 0;
1107}
Thierry Reding62099ab2012-03-26 09:31:48 +02001108subsys_initcall(pwm_debugfs_init);
1109#endif /* CONFIG_DEBUG_FS */