UPSTREAM: pwm: Add missing newline
[firefly-linux-kernel-4.4.55.git] / drivers / pwm / core.c
1 /*
2  * Generic pwmlib implementation
3  *
4  * Copyright (C) 2011 Sascha Hauer <s.hauer@pengutronix.de>
5  * Copyright (C) 2011-2012 Avionic Design GmbH
6  *
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>
24 #include <linux/radix-tree.h>
25 #include <linux/list.h>
26 #include <linux/mutex.h>
27 #include <linux/err.h>
28 #include <linux/slab.h>
29 #include <linux/device.h>
30 #include <linux/debugfs.h>
31 #include <linux/seq_file.h>
32
33 #include <dt-bindings/pwm/pwm.h>
34
35 #define MAX_PWMS 1024
36
37 static DEFINE_MUTEX(pwm_lookup_lock);
38 static LIST_HEAD(pwm_lookup_list);
39 static DEFINE_MUTEX(pwm_lock);
40 static LIST_HEAD(pwm_chips);
41 static DECLARE_BITMAP(allocated_pwms, MAX_PWMS);
42 static RADIX_TREE(pwm_tree, GFP_KERNEL);
43
44 static struct pwm_device *pwm_to_device(unsigned int pwm)
45 {
46         return radix_tree_lookup(&pwm_tree, pwm);
47 }
48
49 static 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
72 static 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];
78
79                 radix_tree_delete(&pwm_tree, pwm->pwm);
80         }
81
82         bitmap_clear(allocated_pwms, chip->base, chip->npwm);
83
84         kfree(chip->pwms);
85         chip->pwms = NULL;
86 }
87
88 static 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
111 static 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         /*
133          * FIXME: This should be removed once all PWM users properly make use
134          * of struct pwm_args to initialize the PWM device. As long as this is
135          * here, the PWM state and hardware state can get out of sync.
136          */
137         pwm_apply_args(pwm);
138
139         return 0;
140 }
141
142 struct pwm_device *
143 of_pwm_xlate_with_flags(struct pwm_chip *pc, const struct of_phandle_args *args)
144 {
145         struct pwm_device *pwm;
146
147         if (pc->of_pwm_n_cells < 3)
148                 return ERR_PTR(-EINVAL);
149
150         if (args->args[0] >= pc->npwm)
151                 return ERR_PTR(-EINVAL);
152
153         pwm = pwm_request_from_chip(pc, args->args[0], NULL);
154         if (IS_ERR(pwm))
155                 return pwm;
156
157         pwm->args.period = args->args[1];
158
159         if (args->args[2] & PWM_POLARITY_INVERTED)
160                 pwm->args.polarity = PWM_POLARITY_INVERSED;
161         else
162                 pwm->args.polarity = PWM_POLARITY_NORMAL;
163
164         return pwm;
165 }
166 EXPORT_SYMBOL_GPL(of_pwm_xlate_with_flags);
167
168 static struct pwm_device *
169 of_pwm_simple_xlate(struct pwm_chip *pc, const struct of_phandle_args *args)
170 {
171         struct pwm_device *pwm;
172
173         if (pc->of_pwm_n_cells < 2)
174                 return ERR_PTR(-EINVAL);
175
176         if (args->args[0] >= pc->npwm)
177                 return ERR_PTR(-EINVAL);
178
179         pwm = pwm_request_from_chip(pc, args->args[0], NULL);
180         if (IS_ERR(pwm))
181                 return pwm;
182
183         pwm->args.period = args->args[1];
184
185         return pwm;
186 }
187
188 static void of_pwmchip_add(struct pwm_chip *chip)
189 {
190         if (!chip->dev || !chip->dev->of_node)
191                 return;
192
193         if (!chip->of_xlate) {
194                 chip->of_xlate = of_pwm_simple_xlate;
195                 chip->of_pwm_n_cells = 2;
196         }
197
198         of_node_get(chip->dev->of_node);
199 }
200
201 static void of_pwmchip_remove(struct pwm_chip *chip)
202 {
203         if (chip->dev)
204                 of_node_put(chip->dev->of_node);
205 }
206
207 /**
208  * pwm_set_chip_data() - set private chip data for a PWM
209  * @pwm: PWM device
210  * @data: pointer to chip-specific data
211  *
212  * Returns: 0 on success or a negative error code on failure.
213  */
214 int pwm_set_chip_data(struct pwm_device *pwm, void *data)
215 {
216         if (!pwm)
217                 return -EINVAL;
218
219         pwm->chip_data = data;
220
221         return 0;
222 }
223 EXPORT_SYMBOL_GPL(pwm_set_chip_data);
224
225 /**
226  * pwm_get_chip_data() - get private chip data for a PWM
227  * @pwm: PWM device
228  *
229  * Returns: A pointer to the chip-private data for the PWM device.
230  */
231 void *pwm_get_chip_data(struct pwm_device *pwm)
232 {
233         return pwm ? pwm->chip_data : NULL;
234 }
235 EXPORT_SYMBOL_GPL(pwm_get_chip_data);
236
237 /**
238  * pwmchip_add_with_polarity() - register a new PWM chip
239  * @chip: the PWM chip to add
240  * @polarity: initial polarity of PWM channels
241  *
242  * Register a new PWM chip. If chip->base < 0 then a dynamically assigned base
243  * will be used. The initial polarity for all channels is specified by the
244  * @polarity parameter.
245  *
246  * Returns: 0 on success or a negative error code on failure.
247  */
248 int pwmchip_add_with_polarity(struct pwm_chip *chip,
249                               enum pwm_polarity polarity)
250 {
251         struct pwm_device *pwm;
252         unsigned int i;
253         int ret;
254
255         if (!chip || !chip->dev || !chip->ops || !chip->ops->config ||
256             !chip->ops->enable || !chip->ops->disable || !chip->npwm)
257                 return -EINVAL;
258
259         mutex_lock(&pwm_lock);
260
261         ret = alloc_pwms(chip->base, chip->npwm);
262         if (ret < 0)
263                 goto out;
264
265         chip->pwms = kzalloc(chip->npwm * sizeof(*pwm), GFP_KERNEL);
266         if (!chip->pwms) {
267                 ret = -ENOMEM;
268                 goto out;
269         }
270
271         chip->base = ret;
272
273         for (i = 0; i < chip->npwm; i++) {
274                 pwm = &chip->pwms[i];
275
276                 pwm->chip = chip;
277                 pwm->pwm = chip->base + i;
278                 pwm->hwpwm = i;
279                 pwm->polarity = polarity;
280                 mutex_init(&pwm->lock);
281
282                 radix_tree_insert(&pwm_tree, pwm->pwm, pwm);
283         }
284
285         bitmap_set(allocated_pwms, chip->base, chip->npwm);
286
287         INIT_LIST_HEAD(&chip->list);
288         list_add(&chip->list, &pwm_chips);
289
290         ret = 0;
291
292         if (IS_ENABLED(CONFIG_OF))
293                 of_pwmchip_add(chip);
294
295         pwmchip_sysfs_export(chip);
296
297 out:
298         mutex_unlock(&pwm_lock);
299         return ret;
300 }
301 EXPORT_SYMBOL_GPL(pwmchip_add_with_polarity);
302
303 /**
304  * pwmchip_add() - register a new PWM chip
305  * @chip: the PWM chip to add
306  *
307  * Register a new PWM chip. If chip->base < 0 then a dynamically assigned base
308  * will be used. The initial polarity for all channels is normal.
309  *
310  * Returns: 0 on success or a negative error code on failure.
311  */
312 int pwmchip_add(struct pwm_chip *chip)
313 {
314         return pwmchip_add_with_polarity(chip, PWM_POLARITY_NORMAL);
315 }
316 EXPORT_SYMBOL_GPL(pwmchip_add);
317
318 /**
319  * pwmchip_remove() - remove a PWM chip
320  * @chip: the PWM chip to remove
321  *
322  * Removes a PWM chip. This function may return busy if the PWM chip provides
323  * a PWM device that is still requested.
324  *
325  * Returns: 0 on success or a negative error code on failure.
326  */
327 int pwmchip_remove(struct pwm_chip *chip)
328 {
329         unsigned int i;
330         int ret = 0;
331
332         pwmchip_sysfs_unexport_children(chip);
333
334         mutex_lock(&pwm_lock);
335
336         for (i = 0; i < chip->npwm; i++) {
337                 struct pwm_device *pwm = &chip->pwms[i];
338
339                 if (test_bit(PWMF_REQUESTED, &pwm->flags)) {
340                         ret = -EBUSY;
341                         goto out;
342                 }
343         }
344
345         list_del_init(&chip->list);
346
347         if (IS_ENABLED(CONFIG_OF))
348                 of_pwmchip_remove(chip);
349
350         free_pwms(chip);
351
352         pwmchip_sysfs_unexport(chip);
353
354 out:
355         mutex_unlock(&pwm_lock);
356         return ret;
357 }
358 EXPORT_SYMBOL_GPL(pwmchip_remove);
359
360 /**
361  * pwm_request() - request a PWM device
362  * @pwm: global PWM device index
363  * @label: PWM device label
364  *
365  * This function is deprecated, use pwm_get() instead.
366  *
367  * Returns: A pointer to a PWM device or an ERR_PTR()-encoded error code on
368  * failure.
369  */
370 struct pwm_device *pwm_request(int pwm, const char *label)
371 {
372         struct pwm_device *dev;
373         int err;
374
375         if (pwm < 0 || pwm >= MAX_PWMS)
376                 return ERR_PTR(-EINVAL);
377
378         mutex_lock(&pwm_lock);
379
380         dev = pwm_to_device(pwm);
381         if (!dev) {
382                 dev = ERR_PTR(-EPROBE_DEFER);
383                 goto out;
384         }
385
386         err = pwm_device_request(dev, label);
387         if (err < 0)
388                 dev = ERR_PTR(err);
389
390 out:
391         mutex_unlock(&pwm_lock);
392
393         return dev;
394 }
395 EXPORT_SYMBOL_GPL(pwm_request);
396
397 /**
398  * pwm_request_from_chip() - request a PWM device relative to a PWM chip
399  * @chip: PWM chip
400  * @index: per-chip index of the PWM to request
401  * @label: a literal description string of this PWM
402  *
403  * Returns: A pointer to the PWM device at the given index of the given PWM
404  * chip. A negative error code is returned if the index is not valid for the
405  * specified PWM chip or if the PWM device cannot be requested.
406  */
407 struct pwm_device *pwm_request_from_chip(struct pwm_chip *chip,
408                                          unsigned int index,
409                                          const char *label)
410 {
411         struct pwm_device *pwm;
412         int err;
413
414         if (!chip || index >= chip->npwm)
415                 return ERR_PTR(-EINVAL);
416
417         mutex_lock(&pwm_lock);
418         pwm = &chip->pwms[index];
419
420         err = pwm_device_request(pwm, label);
421         if (err < 0)
422                 pwm = ERR_PTR(err);
423
424         mutex_unlock(&pwm_lock);
425         return pwm;
426 }
427 EXPORT_SYMBOL_GPL(pwm_request_from_chip);
428
429 /**
430  * pwm_free() - free a PWM device
431  * @pwm: PWM device
432  *
433  * This function is deprecated, use pwm_put() instead.
434  */
435 void pwm_free(struct pwm_device *pwm)
436 {
437         pwm_put(pwm);
438 }
439 EXPORT_SYMBOL_GPL(pwm_free);
440
441 /**
442  * pwm_config() - change a PWM device configuration
443  * @pwm: PWM device
444  * @duty_ns: "on" time (in nanoseconds)
445  * @period_ns: duration (in nanoseconds) of one cycle
446  *
447  * Returns: 0 on success or a negative error code on failure.
448  */
449 int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns)
450 {
451         int err;
452
453         if (!pwm || duty_ns < 0 || period_ns <= 0 || duty_ns > period_ns)
454                 return -EINVAL;
455
456         err = pwm->chip->ops->config(pwm->chip, pwm, duty_ns, period_ns);
457         if (err)
458                 return err;
459
460         pwm->duty_cycle = duty_ns;
461         pwm->period = period_ns;
462
463         return 0;
464 }
465 EXPORT_SYMBOL_GPL(pwm_config);
466
467 /**
468  * pwm_set_polarity() - configure the polarity of a PWM signal
469  * @pwm: PWM device
470  * @polarity: new polarity of the PWM signal
471  *
472  * Note that the polarity cannot be configured while the PWM device is
473  * enabled.
474  *
475  * Returns: 0 on success or a negative error code on failure.
476  */
477 int pwm_set_polarity(struct pwm_device *pwm, enum pwm_polarity polarity)
478 {
479         int err;
480
481         if (!pwm || !pwm->chip->ops)
482                 return -EINVAL;
483
484         if (!pwm->chip->ops->set_polarity)
485                 return -ENOSYS;
486
487         mutex_lock(&pwm->lock);
488
489         if (pwm_is_enabled(pwm)) {
490                 err = -EBUSY;
491                 goto unlock;
492         }
493
494         err = pwm->chip->ops->set_polarity(pwm->chip, pwm, polarity);
495         if (err)
496                 goto unlock;
497
498         pwm->polarity = polarity;
499
500 unlock:
501         mutex_unlock(&pwm->lock);
502         return err;
503 }
504 EXPORT_SYMBOL_GPL(pwm_set_polarity);
505
506 /**
507  * pwm_enable() - start a PWM output toggling
508  * @pwm: PWM device
509  *
510  * Returns: 0 on success or a negative error code on failure.
511  */
512 int pwm_enable(struct pwm_device *pwm)
513 {
514         int err = 0;
515
516         if (!pwm)
517                 return -EINVAL;
518
519         mutex_lock(&pwm->lock);
520
521         if (!test_and_set_bit(PWMF_ENABLED, &pwm->flags)) {
522                 err = pwm->chip->ops->enable(pwm->chip, pwm);
523                 if (err)
524                         clear_bit(PWMF_ENABLED, &pwm->flags);
525         }
526
527         mutex_unlock(&pwm->lock);
528
529         return err;
530 }
531 EXPORT_SYMBOL_GPL(pwm_enable);
532
533 /**
534  * pwm_disable() - stop a PWM output toggling
535  * @pwm: PWM device
536  */
537 void pwm_disable(struct pwm_device *pwm)
538 {
539         if (pwm && test_and_clear_bit(PWMF_ENABLED, &pwm->flags))
540                 pwm->chip->ops->disable(pwm->chip, pwm);
541 }
542 EXPORT_SYMBOL_GPL(pwm_disable);
543
544 static struct pwm_chip *of_node_to_pwmchip(struct device_node *np)
545 {
546         struct pwm_chip *chip;
547
548         mutex_lock(&pwm_lock);
549
550         list_for_each_entry(chip, &pwm_chips, list)
551                 if (chip->dev && chip->dev->of_node == np) {
552                         mutex_unlock(&pwm_lock);
553                         return chip;
554                 }
555
556         mutex_unlock(&pwm_lock);
557
558         return ERR_PTR(-EPROBE_DEFER);
559 }
560
561 /**
562  * of_pwm_get() - request a PWM via the PWM framework
563  * @np: device node to get the PWM from
564  * @con_id: consumer name
565  *
566  * Returns the PWM device parsed from the phandle and index specified in the
567  * "pwms" property of a device tree node or a negative error-code on failure.
568  * Values parsed from the device tree are stored in the returned PWM device
569  * object.
570  *
571  * If con_id is NULL, the first PWM device listed in the "pwms" property will
572  * be requested. Otherwise the "pwm-names" property is used to do a reverse
573  * lookup of the PWM index. This also means that the "pwm-names" property
574  * becomes mandatory for devices that look up the PWM device via the con_id
575  * parameter.
576  *
577  * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
578  * error code on failure.
579  */
580 struct pwm_device *of_pwm_get(struct device_node *np, const char *con_id)
581 {
582         struct pwm_device *pwm = NULL;
583         struct of_phandle_args args;
584         struct pwm_chip *pc;
585         int index = 0;
586         int err;
587
588         if (con_id) {
589                 index = of_property_match_string(np, "pwm-names", con_id);
590                 if (index < 0)
591                         return ERR_PTR(index);
592         }
593
594         err = of_parse_phandle_with_args(np, "pwms", "#pwm-cells", index,
595                                          &args);
596         if (err) {
597                 pr_debug("%s(): can't parse \"pwms\" property\n", __func__);
598                 return ERR_PTR(err);
599         }
600
601         pc = of_node_to_pwmchip(args.np);
602         if (IS_ERR(pc)) {
603                 pr_debug("%s(): PWM chip not found\n", __func__);
604                 pwm = ERR_CAST(pc);
605                 goto put;
606         }
607
608         if (args.args_count != pc->of_pwm_n_cells) {
609                 pr_debug("%s: wrong #pwm-cells for %s\n", np->full_name,
610                          args.np->full_name);
611                 pwm = ERR_PTR(-EINVAL);
612                 goto put;
613         }
614
615         pwm = pc->of_xlate(pc, &args);
616         if (IS_ERR(pwm))
617                 goto put;
618
619         /*
620          * If a consumer name was not given, try to look it up from the
621          * "pwm-names" property if it exists. Otherwise use the name of
622          * the user device node.
623          */
624         if (!con_id) {
625                 err = of_property_read_string_index(np, "pwm-names", index,
626                                                     &con_id);
627                 if (err < 0)
628                         con_id = np->name;
629         }
630
631         pwm->label = con_id;
632
633 put:
634         of_node_put(args.np);
635
636         return pwm;
637 }
638 EXPORT_SYMBOL_GPL(of_pwm_get);
639
640 /**
641  * pwm_add_table() - register PWM device consumers
642  * @table: array of consumers to register
643  * @num: number of consumers in table
644  */
645 void pwm_add_table(struct pwm_lookup *table, size_t num)
646 {
647         mutex_lock(&pwm_lookup_lock);
648
649         while (num--) {
650                 list_add_tail(&table->list, &pwm_lookup_list);
651                 table++;
652         }
653
654         mutex_unlock(&pwm_lookup_lock);
655 }
656
657 /**
658  * pwm_remove_table() - unregister PWM device consumers
659  * @table: array of consumers to unregister
660  * @num: number of consumers in table
661  */
662 void pwm_remove_table(struct pwm_lookup *table, size_t num)
663 {
664         mutex_lock(&pwm_lookup_lock);
665
666         while (num--) {
667                 list_del(&table->list);
668                 table++;
669         }
670
671         mutex_unlock(&pwm_lookup_lock);
672 }
673
674 /**
675  * pwm_get() - look up and request a PWM device
676  * @dev: device for PWM consumer
677  * @con_id: consumer name
678  *
679  * Lookup is first attempted using DT. If the device was not instantiated from
680  * a device tree, a PWM chip and a relative index is looked up via a table
681  * supplied by board setup code (see pwm_add_table()).
682  *
683  * Once a PWM chip has been found the specified PWM device will be requested
684  * and is ready to be used.
685  *
686  * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
687  * error code on failure.
688  */
689 struct pwm_device *pwm_get(struct device *dev, const char *con_id)
690 {
691         struct pwm_device *pwm = ERR_PTR(-EPROBE_DEFER);
692         const char *dev_id = dev ? dev_name(dev) : NULL;
693         struct pwm_chip *chip = NULL;
694         unsigned int best = 0;
695         struct pwm_lookup *p, *chosen = NULL;
696         unsigned int match;
697
698         /* look up via DT first */
699         if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
700                 return of_pwm_get(dev->of_node, con_id);
701
702         /*
703          * We look up the provider in the static table typically provided by
704          * board setup code. We first try to lookup the consumer device by
705          * name. If the consumer device was passed in as NULL or if no match
706          * was found, we try to find the consumer by directly looking it up
707          * by name.
708          *
709          * If a match is found, the provider PWM chip is looked up by name
710          * and a PWM device is requested using the PWM device per-chip index.
711          *
712          * The lookup algorithm was shamelessly taken from the clock
713          * framework:
714          *
715          * We do slightly fuzzy matching here:
716          *  An entry with a NULL ID is assumed to be a wildcard.
717          *  If an entry has a device ID, it must match
718          *  If an entry has a connection ID, it must match
719          * Then we take the most specific entry - with the following order
720          * of precedence: dev+con > dev only > con only.
721          */
722         mutex_lock(&pwm_lookup_lock);
723
724         list_for_each_entry(p, &pwm_lookup_list, list) {
725                 match = 0;
726
727                 if (p->dev_id) {
728                         if (!dev_id || strcmp(p->dev_id, dev_id))
729                                 continue;
730
731                         match += 2;
732                 }
733
734                 if (p->con_id) {
735                         if (!con_id || strcmp(p->con_id, con_id))
736                                 continue;
737
738                         match += 1;
739                 }
740
741                 if (match > best) {
742                         chosen = p;
743
744                         if (match != 3)
745                                 best = match;
746                         else
747                                 break;
748                 }
749         }
750
751         if (!chosen) {
752                 pwm = ERR_PTR(-ENODEV);
753                 goto out;
754         }
755
756         chip = pwmchip_find_by_name(chosen->provider);
757         if (!chip)
758                 goto out;
759
760         pwm->args.period = chosen->period;
761         pwm->args.polarity = chosen->polarity;
762
763         pwm = pwm_request_from_chip(chip, chosen->index, con_id ?: dev_id);
764         if (IS_ERR(pwm))
765                 goto out;
766
767 out:
768         mutex_unlock(&pwm_lookup_lock);
769         return pwm;
770 }
771 EXPORT_SYMBOL_GPL(pwm_get);
772
773 /**
774  * pwm_put() - release a PWM device
775  * @pwm: PWM device
776  */
777 void pwm_put(struct pwm_device *pwm)
778 {
779         if (!pwm)
780                 return;
781
782         mutex_lock(&pwm_lock);
783
784         if (!test_and_clear_bit(PWMF_REQUESTED, &pwm->flags)) {
785                 pr_warn("PWM device already freed\n");
786                 goto out;
787         }
788
789         if (pwm->chip->ops->free)
790                 pwm->chip->ops->free(pwm->chip, pwm);
791
792         pwm->label = NULL;
793
794         module_put(pwm->chip->ops->owner);
795 out:
796         mutex_unlock(&pwm_lock);
797 }
798 EXPORT_SYMBOL_GPL(pwm_put);
799
800 static void devm_pwm_release(struct device *dev, void *res)
801 {
802         pwm_put(*(struct pwm_device **)res);
803 }
804
805 /**
806  * devm_pwm_get() - resource managed pwm_get()
807  * @dev: device for PWM consumer
808  * @con_id: consumer name
809  *
810  * This function performs like pwm_get() but the acquired PWM device will
811  * automatically be released on driver detach.
812  *
813  * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
814  * error code on failure.
815  */
816 struct pwm_device *devm_pwm_get(struct device *dev, const char *con_id)
817 {
818         struct pwm_device **ptr, *pwm;
819
820         ptr = devres_alloc(devm_pwm_release, sizeof(*ptr), GFP_KERNEL);
821         if (!ptr)
822                 return ERR_PTR(-ENOMEM);
823
824         pwm = pwm_get(dev, con_id);
825         if (!IS_ERR(pwm)) {
826                 *ptr = pwm;
827                 devres_add(dev, ptr);
828         } else {
829                 devres_free(ptr);
830         }
831
832         return pwm;
833 }
834 EXPORT_SYMBOL_GPL(devm_pwm_get);
835
836 /**
837  * devm_of_pwm_get() - resource managed of_pwm_get()
838  * @dev: device for PWM consumer
839  * @np: device node to get the PWM from
840  * @con_id: consumer name
841  *
842  * This function performs like of_pwm_get() but the acquired PWM device will
843  * automatically be released on driver detach.
844  *
845  * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
846  * error code on failure.
847  */
848 struct pwm_device *devm_of_pwm_get(struct device *dev, struct device_node *np,
849                                    const char *con_id)
850 {
851         struct pwm_device **ptr, *pwm;
852
853         ptr = devres_alloc(devm_pwm_release, sizeof(*ptr), GFP_KERNEL);
854         if (!ptr)
855                 return ERR_PTR(-ENOMEM);
856
857         pwm = of_pwm_get(np, con_id);
858         if (!IS_ERR(pwm)) {
859                 *ptr = pwm;
860                 devres_add(dev, ptr);
861         } else {
862                 devres_free(ptr);
863         }
864
865         return pwm;
866 }
867 EXPORT_SYMBOL_GPL(devm_of_pwm_get);
868
869 static int devm_pwm_match(struct device *dev, void *res, void *data)
870 {
871         struct pwm_device **p = res;
872
873         if (WARN_ON(!p || !*p))
874                 return 0;
875
876         return *p == data;
877 }
878
879 /**
880  * devm_pwm_put() - resource managed pwm_put()
881  * @dev: device for PWM consumer
882  * @pwm: PWM device
883  *
884  * Release a PWM previously allocated using devm_pwm_get(). Calling this
885  * function is usually not needed because devm-allocated resources are
886  * automatically released on driver detach.
887  */
888 void devm_pwm_put(struct device *dev, struct pwm_device *pwm)
889 {
890         WARN_ON(devres_release(dev, devm_pwm_release, devm_pwm_match, pwm));
891 }
892 EXPORT_SYMBOL_GPL(devm_pwm_put);
893
894 /**
895   * pwm_can_sleep() - report whether PWM access will sleep
896   * @pwm: PWM device
897   *
898   * Returns: True if accessing the PWM can sleep, false otherwise.
899   */
900 bool pwm_can_sleep(struct pwm_device *pwm)
901 {
902         return true;
903 }
904 EXPORT_SYMBOL_GPL(pwm_can_sleep);
905
906 #ifdef CONFIG_DEBUG_FS
907 static void pwm_dbg_show(struct pwm_chip *chip, struct seq_file *s)
908 {
909         unsigned int i;
910
911         for (i = 0; i < chip->npwm; i++) {
912                 struct pwm_device *pwm = &chip->pwms[i];
913
914                 seq_printf(s, " pwm-%-3d (%-20.20s):", i, pwm->label);
915
916                 if (test_bit(PWMF_REQUESTED, &pwm->flags))
917                         seq_puts(s, " requested");
918
919                 if (pwm_is_enabled(pwm))
920                         seq_puts(s, " enabled");
921
922                 seq_puts(s, "\n");
923         }
924 }
925
926 static void *pwm_seq_start(struct seq_file *s, loff_t *pos)
927 {
928         mutex_lock(&pwm_lock);
929         s->private = "";
930
931         return seq_list_start(&pwm_chips, *pos);
932 }
933
934 static void *pwm_seq_next(struct seq_file *s, void *v, loff_t *pos)
935 {
936         s->private = "\n";
937
938         return seq_list_next(v, &pwm_chips, pos);
939 }
940
941 static void pwm_seq_stop(struct seq_file *s, void *v)
942 {
943         mutex_unlock(&pwm_lock);
944 }
945
946 static int pwm_seq_show(struct seq_file *s, void *v)
947 {
948         struct pwm_chip *chip = list_entry(v, struct pwm_chip, list);
949
950         seq_printf(s, "%s%s/%s, %d PWM device%s\n", (char *)s->private,
951                    chip->dev->bus ? chip->dev->bus->name : "no-bus",
952                    dev_name(chip->dev), chip->npwm,
953                    (chip->npwm != 1) ? "s" : "");
954
955         if (chip->ops->dbg_show)
956                 chip->ops->dbg_show(chip, s);
957         else
958                 pwm_dbg_show(chip, s);
959
960         return 0;
961 }
962
963 static const struct seq_operations pwm_seq_ops = {
964         .start = pwm_seq_start,
965         .next = pwm_seq_next,
966         .stop = pwm_seq_stop,
967         .show = pwm_seq_show,
968 };
969
970 static int pwm_seq_open(struct inode *inode, struct file *file)
971 {
972         return seq_open(file, &pwm_seq_ops);
973 }
974
975 static const struct file_operations pwm_debugfs_ops = {
976         .owner = THIS_MODULE,
977         .open = pwm_seq_open,
978         .read = seq_read,
979         .llseek = seq_lseek,
980         .release = seq_release,
981 };
982
983 static int __init pwm_debugfs_init(void)
984 {
985         debugfs_create_file("pwm", S_IFREG | S_IRUGO, NULL, NULL,
986                             &pwm_debugfs_ops);
987
988         return 0;
989 }
990 subsys_initcall(pwm_debugfs_init);
991 #endif /* CONFIG_DEBUG_FS */