1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Generic pwmlib implementation
6 * Copyright (C) 2011-2012 Avionic Design GmbH
9 #include <linux/acpi.h>
10 #include <linux/module.h>
12 #include <linux/pwm.h>
13 #include <linux/list.h>
14 #include <linux/mutex.h>
15 #include <linux/err.h>
16 #include <linux/slab.h>
17 #include <linux/device.h>
18 #include <linux/debugfs.h>
19 #include <linux/seq_file.h>
21 #include <dt-bindings/pwm/pwm.h>
23 #define CREATE_TRACE_POINTS
24 #include <trace/events/pwm.h>
28 static DEFINE_MUTEX(pwm_lookup_lock);
29 static LIST_HEAD(pwm_lookup_list);
31 /* protects access to pwm_chips and allocated_pwms */
32 static DEFINE_MUTEX(pwm_lock);
34 static LIST_HEAD(pwm_chips);
35 static DECLARE_BITMAP(allocated_pwms, MAX_PWMS);
37 /* Called with pwm_lock held */
38 static int alloc_pwms(unsigned int count)
42 start = bitmap_find_next_zero_area(allocated_pwms, MAX_PWMS, 0,
45 if (start + count > MAX_PWMS)
48 bitmap_set(allocated_pwms, start, count);
53 /* Called with pwm_lock held */
54 static void free_pwms(struct pwm_chip *chip)
56 bitmap_clear(allocated_pwms, chip->base, chip->npwm);
62 static struct pwm_chip *pwmchip_find_by_name(const char *name)
64 struct pwm_chip *chip;
69 mutex_lock(&pwm_lock);
71 list_for_each_entry(chip, &pwm_chips, list) {
72 const char *chip_name = dev_name(chip->dev);
74 if (chip_name && strcmp(chip_name, name) == 0) {
75 mutex_unlock(&pwm_lock);
80 mutex_unlock(&pwm_lock);
85 static int pwm_device_request(struct pwm_device *pwm, const char *label)
89 if (test_bit(PWMF_REQUESTED, &pwm->flags))
92 if (!try_module_get(pwm->chip->ops->owner))
95 if (pwm->chip->ops->request) {
96 err = pwm->chip->ops->request(pwm->chip, pwm);
98 module_put(pwm->chip->ops->owner);
103 if (pwm->chip->ops->get_state) {
105 * Zero-initialize state because most drivers are unaware of
106 * .usage_power. The other members of state are supposed to be
107 * set by lowlevel drivers. We still initialize the whole
108 * structure for simplicity even though this might paper over
109 * faulty implementations of .get_state().
111 struct pwm_state state = { 0, };
113 err = pwm->chip->ops->get_state(pwm->chip, pwm, &state);
114 trace_pwm_get(pwm, &state, err);
119 if (IS_ENABLED(CONFIG_PWM_DEBUG))
120 pwm->last = pwm->state;
123 set_bit(PWMF_REQUESTED, &pwm->flags);
130 of_pwm_xlate_with_flags(struct pwm_chip *chip, const struct of_phandle_args *args)
132 struct pwm_device *pwm;
134 if (chip->of_pwm_n_cells < 2)
135 return ERR_PTR(-EINVAL);
137 /* flags in the third cell are optional */
138 if (args->args_count < 2)
139 return ERR_PTR(-EINVAL);
141 if (args->args[0] >= chip->npwm)
142 return ERR_PTR(-EINVAL);
144 pwm = pwm_request_from_chip(chip, args->args[0], NULL);
148 pwm->args.period = args->args[1];
149 pwm->args.polarity = PWM_POLARITY_NORMAL;
151 if (chip->of_pwm_n_cells >= 3) {
152 if (args->args_count > 2 && args->args[2] & PWM_POLARITY_INVERTED)
153 pwm->args.polarity = PWM_POLARITY_INVERSED;
158 EXPORT_SYMBOL_GPL(of_pwm_xlate_with_flags);
161 of_pwm_single_xlate(struct pwm_chip *chip, const struct of_phandle_args *args)
163 struct pwm_device *pwm;
165 if (chip->of_pwm_n_cells < 1)
166 return ERR_PTR(-EINVAL);
168 /* validate that one cell is specified, optionally with flags */
169 if (args->args_count != 1 && args->args_count != 2)
170 return ERR_PTR(-EINVAL);
172 pwm = pwm_request_from_chip(chip, 0, NULL);
176 pwm->args.period = args->args[0];
177 pwm->args.polarity = PWM_POLARITY_NORMAL;
179 if (args->args_count == 2 && args->args[2] & PWM_POLARITY_INVERTED)
180 pwm->args.polarity = PWM_POLARITY_INVERSED;
184 EXPORT_SYMBOL_GPL(of_pwm_single_xlate);
186 static void of_pwmchip_add(struct pwm_chip *chip)
188 if (!chip->dev || !chip->dev->of_node)
191 if (!chip->of_xlate) {
194 if (of_property_read_u32(chip->dev->of_node, "#pwm-cells",
198 chip->of_xlate = of_pwm_xlate_with_flags;
199 chip->of_pwm_n_cells = pwm_cells;
202 of_node_get(chip->dev->of_node);
205 static void of_pwmchip_remove(struct pwm_chip *chip)
208 of_node_put(chip->dev->of_node);
212 * pwm_set_chip_data() - set private chip data for a PWM
214 * @data: pointer to chip-specific data
216 * Returns: 0 on success or a negative error code on failure.
218 int pwm_set_chip_data(struct pwm_device *pwm, void *data)
223 pwm->chip_data = data;
227 EXPORT_SYMBOL_GPL(pwm_set_chip_data);
230 * pwm_get_chip_data() - get private chip data for a PWM
233 * Returns: A pointer to the chip-private data for the PWM device.
235 void *pwm_get_chip_data(struct pwm_device *pwm)
237 return pwm ? pwm->chip_data : NULL;
239 EXPORT_SYMBOL_GPL(pwm_get_chip_data);
241 static bool pwm_ops_check(const struct pwm_chip *chip)
243 const struct pwm_ops *ops = chip->ops;
248 if (IS_ENABLED(CONFIG_PWM_DEBUG) && !ops->get_state)
250 "Please implement the .get_state() callback\n");
256 * pwmchip_add() - register a new PWM chip
257 * @chip: the PWM chip to add
259 * Register a new PWM chip.
261 * Returns: 0 on success or a negative error code on failure.
263 int pwmchip_add(struct pwm_chip *chip)
265 struct pwm_device *pwm;
269 if (!chip || !chip->dev || !chip->ops || !chip->npwm)
272 if (!pwm_ops_check(chip))
275 chip->pwms = kcalloc(chip->npwm, sizeof(*pwm), GFP_KERNEL);
279 mutex_lock(&pwm_lock);
281 ret = alloc_pwms(chip->npwm);
283 mutex_unlock(&pwm_lock);
290 for (i = 0; i < chip->npwm; i++) {
291 pwm = &chip->pwms[i];
294 pwm->pwm = chip->base + i;
298 list_add(&chip->list, &pwm_chips);
300 mutex_unlock(&pwm_lock);
302 if (IS_ENABLED(CONFIG_OF))
303 of_pwmchip_add(chip);
305 pwmchip_sysfs_export(chip);
309 EXPORT_SYMBOL_GPL(pwmchip_add);
312 * pwmchip_remove() - remove a PWM chip
313 * @chip: the PWM chip to remove
315 * Removes a PWM chip.
317 void pwmchip_remove(struct pwm_chip *chip)
319 pwmchip_sysfs_unexport(chip);
321 if (IS_ENABLED(CONFIG_OF))
322 of_pwmchip_remove(chip);
324 mutex_lock(&pwm_lock);
326 list_del_init(&chip->list);
330 mutex_unlock(&pwm_lock);
332 EXPORT_SYMBOL_GPL(pwmchip_remove);
334 static void devm_pwmchip_remove(void *data)
336 struct pwm_chip *chip = data;
338 pwmchip_remove(chip);
341 int devm_pwmchip_add(struct device *dev, struct pwm_chip *chip)
345 ret = pwmchip_add(chip);
349 return devm_add_action_or_reset(dev, devm_pwmchip_remove, chip);
351 EXPORT_SYMBOL_GPL(devm_pwmchip_add);
354 * pwm_request_from_chip() - request a PWM device relative to a PWM chip
356 * @index: per-chip index of the PWM to request
357 * @label: a literal description string of this PWM
359 * Returns: A pointer to the PWM device at the given index of the given PWM
360 * chip. A negative error code is returned if the index is not valid for the
361 * specified PWM chip or if the PWM device cannot be requested.
363 struct pwm_device *pwm_request_from_chip(struct pwm_chip *chip,
367 struct pwm_device *pwm;
370 if (!chip || index >= chip->npwm)
371 return ERR_PTR(-EINVAL);
373 mutex_lock(&pwm_lock);
374 pwm = &chip->pwms[index];
376 err = pwm_device_request(pwm, label);
380 mutex_unlock(&pwm_lock);
383 EXPORT_SYMBOL_GPL(pwm_request_from_chip);
385 static void pwm_apply_state_debug(struct pwm_device *pwm,
386 const struct pwm_state *state)
388 struct pwm_state *last = &pwm->last;
389 struct pwm_chip *chip = pwm->chip;
390 struct pwm_state s1 = { 0 }, s2 = { 0 };
393 if (!IS_ENABLED(CONFIG_PWM_DEBUG))
396 /* No reasonable diagnosis possible without .get_state() */
397 if (!chip->ops->get_state)
401 * *state was just applied. Read out the hardware state and do some
405 err = chip->ops->get_state(chip, pwm, &s1);
406 trace_pwm_get(pwm, &s1, err);
408 /* If that failed there isn't much to debug */
412 * The lowlevel driver either ignored .polarity (which is a bug) or as
413 * best effort inverted .polarity and fixed .duty_cycle respectively.
414 * Undo this inversion and fixup for further tests.
416 if (s1.enabled && s1.polarity != state->polarity) {
417 s2.polarity = state->polarity;
418 s2.duty_cycle = s1.period - s1.duty_cycle;
419 s2.period = s1.period;
420 s2.enabled = s1.enabled;
425 if (s2.polarity != state->polarity &&
426 state->duty_cycle < state->period)
427 dev_warn(chip->dev, ".apply ignored .polarity\n");
429 if (state->enabled &&
430 last->polarity == state->polarity &&
431 last->period > s2.period &&
432 last->period <= state->period)
434 ".apply didn't pick the best available period (requested: %llu, applied: %llu, possible: %llu)\n",
435 state->period, s2.period, last->period);
437 if (state->enabled && state->period < s2.period)
439 ".apply is supposed to round down period (requested: %llu, applied: %llu)\n",
440 state->period, s2.period);
442 if (state->enabled &&
443 last->polarity == state->polarity &&
444 last->period == s2.period &&
445 last->duty_cycle > s2.duty_cycle &&
446 last->duty_cycle <= state->duty_cycle)
448 ".apply didn't pick the best available duty cycle (requested: %llu/%llu, applied: %llu/%llu, possible: %llu/%llu)\n",
449 state->duty_cycle, state->period,
450 s2.duty_cycle, s2.period,
451 last->duty_cycle, last->period);
453 if (state->enabled && state->duty_cycle < s2.duty_cycle)
455 ".apply is supposed to round down duty_cycle (requested: %llu/%llu, applied: %llu/%llu)\n",
456 state->duty_cycle, state->period,
457 s2.duty_cycle, s2.period);
459 if (!state->enabled && s2.enabled && s2.duty_cycle > 0)
461 "requested disabled, but yielded enabled with duty > 0\n");
463 /* reapply the state that the driver reported being configured. */
464 err = chip->ops->apply(chip, pwm, &s1);
465 trace_pwm_apply(pwm, &s1, err);
468 dev_err(chip->dev, "failed to reapply current setting\n");
472 *last = (struct pwm_state){ 0 };
473 err = chip->ops->get_state(chip, pwm, last);
474 trace_pwm_get(pwm, last, err);
478 /* reapplication of the current state should give an exact match */
479 if (s1.enabled != last->enabled ||
480 s1.polarity != last->polarity ||
481 (s1.enabled && s1.period != last->period) ||
482 (s1.enabled && s1.duty_cycle != last->duty_cycle)) {
484 ".apply is not idempotent (ena=%d pol=%d %llu/%llu) -> (ena=%d pol=%d %llu/%llu)\n",
485 s1.enabled, s1.polarity, s1.duty_cycle, s1.period,
486 last->enabled, last->polarity, last->duty_cycle,
492 * pwm_apply_state() - atomically apply a new state to a PWM device
494 * @state: new state to apply
496 int pwm_apply_state(struct pwm_device *pwm, const struct pwm_state *state)
498 struct pwm_chip *chip;
502 * Some lowlevel driver's implementations of .apply() make use of
503 * mutexes, also with some drivers only returning when the new
504 * configuration is active calling pwm_apply_state() from atomic context
505 * is a bad idea. So make it explicit that calling this function might
510 if (!pwm || !state || !state->period ||
511 state->duty_cycle > state->period)
516 if (state->period == pwm->state.period &&
517 state->duty_cycle == pwm->state.duty_cycle &&
518 state->polarity == pwm->state.polarity &&
519 state->enabled == pwm->state.enabled &&
520 state->usage_power == pwm->state.usage_power)
523 err = chip->ops->apply(chip, pwm, state);
524 trace_pwm_apply(pwm, state, err);
531 * only do this after pwm->state was applied as some
532 * implementations of .get_state depend on this
534 pwm_apply_state_debug(pwm, state);
538 EXPORT_SYMBOL_GPL(pwm_apply_state);
541 * pwm_capture() - capture and report a PWM signal
543 * @result: structure to fill with capture result
544 * @timeout: time to wait, in milliseconds, before giving up on capture
546 * Returns: 0 on success or a negative error code on failure.
548 int pwm_capture(struct pwm_device *pwm, struct pwm_capture *result,
549 unsigned long timeout)
553 if (!pwm || !pwm->chip->ops)
556 if (!pwm->chip->ops->capture)
559 mutex_lock(&pwm_lock);
560 err = pwm->chip->ops->capture(pwm->chip, pwm, result, timeout);
561 mutex_unlock(&pwm_lock);
565 EXPORT_SYMBOL_GPL(pwm_capture);
568 * pwm_adjust_config() - adjust the current PWM config to the PWM arguments
571 * This function will adjust the PWM config to the PWM arguments provided
572 * by the DT or PWM lookup table. This is particularly useful to adapt
573 * the bootloader config to the Linux one.
575 int pwm_adjust_config(struct pwm_device *pwm)
577 struct pwm_state state;
578 struct pwm_args pargs;
580 pwm_get_args(pwm, &pargs);
581 pwm_get_state(pwm, &state);
584 * If the current period is zero it means that either the PWM driver
585 * does not support initial state retrieval or the PWM has not yet
588 * In either case, we setup the new period and polarity, and assign a
592 state.duty_cycle = 0;
593 state.period = pargs.period;
594 state.polarity = pargs.polarity;
596 return pwm_apply_state(pwm, &state);
600 * Adjust the PWM duty cycle/period based on the period value provided
603 if (pargs.period != state.period) {
604 u64 dutycycle = (u64)state.duty_cycle * pargs.period;
606 do_div(dutycycle, state.period);
607 state.duty_cycle = dutycycle;
608 state.period = pargs.period;
612 * If the polarity changed, we should also change the duty cycle.
614 if (pargs.polarity != state.polarity) {
615 state.polarity = pargs.polarity;
616 state.duty_cycle = state.period - state.duty_cycle;
619 return pwm_apply_state(pwm, &state);
621 EXPORT_SYMBOL_GPL(pwm_adjust_config);
623 static struct pwm_chip *fwnode_to_pwmchip(struct fwnode_handle *fwnode)
625 struct pwm_chip *chip;
627 mutex_lock(&pwm_lock);
629 list_for_each_entry(chip, &pwm_chips, list)
630 if (chip->dev && device_match_fwnode(chip->dev, fwnode)) {
631 mutex_unlock(&pwm_lock);
635 mutex_unlock(&pwm_lock);
637 return ERR_PTR(-EPROBE_DEFER);
640 static struct device_link *pwm_device_link_add(struct device *dev,
641 struct pwm_device *pwm)
643 struct device_link *dl;
647 * No device for the PWM consumer has been provided. It may
648 * impact the PM sequence ordering: the PWM supplier may get
649 * suspended before the consumer.
651 dev_warn(pwm->chip->dev,
652 "No consumer device specified to create a link to\n");
656 dl = device_link_add(dev, pwm->chip->dev, DL_FLAG_AUTOREMOVE_CONSUMER);
658 dev_err(dev, "failed to create device link to %s\n",
659 dev_name(pwm->chip->dev));
660 return ERR_PTR(-EINVAL);
667 * of_pwm_get() - request a PWM via the PWM framework
668 * @dev: device for PWM consumer
669 * @np: device node to get the PWM from
670 * @con_id: consumer name
672 * Returns the PWM device parsed from the phandle and index specified in the
673 * "pwms" property of a device tree node or a negative error-code on failure.
674 * Values parsed from the device tree are stored in the returned PWM device
677 * If con_id is NULL, the first PWM device listed in the "pwms" property will
678 * be requested. Otherwise the "pwm-names" property is used to do a reverse
679 * lookup of the PWM index. This also means that the "pwm-names" property
680 * becomes mandatory for devices that look up the PWM device via the con_id
683 * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
684 * error code on failure.
686 static struct pwm_device *of_pwm_get(struct device *dev, struct device_node *np,
689 struct pwm_device *pwm = NULL;
690 struct of_phandle_args args;
691 struct device_link *dl;
692 struct pwm_chip *chip;
697 index = of_property_match_string(np, "pwm-names", con_id);
699 return ERR_PTR(index);
702 err = of_parse_phandle_with_args(np, "pwms", "#pwm-cells", index,
705 pr_err("%s(): can't parse \"pwms\" property\n", __func__);
709 chip = fwnode_to_pwmchip(of_fwnode_handle(args.np));
711 if (PTR_ERR(chip) != -EPROBE_DEFER)
712 pr_err("%s(): PWM chip not found\n", __func__);
714 pwm = ERR_CAST(chip);
718 pwm = chip->of_xlate(chip, &args);
722 dl = pwm_device_link_add(dev, pwm);
724 /* of_xlate ended up calling pwm_request_from_chip() */
731 * If a consumer name was not given, try to look it up from the
732 * "pwm-names" property if it exists. Otherwise use the name of
733 * the user device node.
736 err = of_property_read_string_index(np, "pwm-names", index,
745 of_node_put(args.np);
751 * acpi_pwm_get() - request a PWM via parsing "pwms" property in ACPI
752 * @fwnode: firmware node to get the "pwms" property from
754 * Returns the PWM device parsed from the fwnode and index specified in the
755 * "pwms" property or a negative error-code on failure.
756 * Values parsed from the device tree are stored in the returned PWM device
759 * This is analogous to of_pwm_get() except con_id is not yet supported.
760 * ACPI entries must look like
761 * Package () {"pwms", Package ()
762 * { <PWM device reference>, <PWM index>, <PWM period> [, <PWM flags>]}}
764 * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
765 * error code on failure.
767 static struct pwm_device *acpi_pwm_get(const struct fwnode_handle *fwnode)
769 struct pwm_device *pwm;
770 struct fwnode_reference_args args;
771 struct pwm_chip *chip;
774 memset(&args, 0, sizeof(args));
776 ret = __acpi_node_get_property_reference(fwnode, "pwms", 0, 3, &args);
781 return ERR_PTR(-EPROTO);
783 chip = fwnode_to_pwmchip(args.fwnode);
785 return ERR_CAST(chip);
787 pwm = pwm_request_from_chip(chip, args.args[0], NULL);
791 pwm->args.period = args.args[1];
792 pwm->args.polarity = PWM_POLARITY_NORMAL;
794 if (args.nargs > 2 && args.args[2] & PWM_POLARITY_INVERTED)
795 pwm->args.polarity = PWM_POLARITY_INVERSED;
801 * pwm_add_table() - register PWM device consumers
802 * @table: array of consumers to register
803 * @num: number of consumers in table
805 void pwm_add_table(struct pwm_lookup *table, size_t num)
807 mutex_lock(&pwm_lookup_lock);
810 list_add_tail(&table->list, &pwm_lookup_list);
814 mutex_unlock(&pwm_lookup_lock);
818 * pwm_remove_table() - unregister PWM device consumers
819 * @table: array of consumers to unregister
820 * @num: number of consumers in table
822 void pwm_remove_table(struct pwm_lookup *table, size_t num)
824 mutex_lock(&pwm_lookup_lock);
827 list_del(&table->list);
831 mutex_unlock(&pwm_lookup_lock);
835 * pwm_get() - look up and request a PWM device
836 * @dev: device for PWM consumer
837 * @con_id: consumer name
839 * Lookup is first attempted using DT. If the device was not instantiated from
840 * a device tree, a PWM chip and a relative index is looked up via a table
841 * supplied by board setup code (see pwm_add_table()).
843 * Once a PWM chip has been found the specified PWM device will be requested
844 * and is ready to be used.
846 * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
847 * error code on failure.
849 struct pwm_device *pwm_get(struct device *dev, const char *con_id)
851 const struct fwnode_handle *fwnode = dev ? dev_fwnode(dev) : NULL;
852 const char *dev_id = dev ? dev_name(dev) : NULL;
853 struct pwm_device *pwm;
854 struct pwm_chip *chip;
855 struct device_link *dl;
856 unsigned int best = 0;
857 struct pwm_lookup *p, *chosen = NULL;
861 /* look up via DT first */
862 if (is_of_node(fwnode))
863 return of_pwm_get(dev, to_of_node(fwnode), con_id);
865 /* then lookup via ACPI */
866 if (is_acpi_node(fwnode)) {
867 pwm = acpi_pwm_get(fwnode);
868 if (!IS_ERR(pwm) || PTR_ERR(pwm) != -ENOENT)
873 * We look up the provider in the static table typically provided by
874 * board setup code. We first try to lookup the consumer device by
875 * name. If the consumer device was passed in as NULL or if no match
876 * was found, we try to find the consumer by directly looking it up
879 * If a match is found, the provider PWM chip is looked up by name
880 * and a PWM device is requested using the PWM device per-chip index.
882 * The lookup algorithm was shamelessly taken from the clock
885 * We do slightly fuzzy matching here:
886 * An entry with a NULL ID is assumed to be a wildcard.
887 * If an entry has a device ID, it must match
888 * If an entry has a connection ID, it must match
889 * Then we take the most specific entry - with the following order
890 * of precedence: dev+con > dev only > con only.
892 mutex_lock(&pwm_lookup_lock);
894 list_for_each_entry(p, &pwm_lookup_list, list) {
898 if (!dev_id || strcmp(p->dev_id, dev_id))
905 if (!con_id || strcmp(p->con_id, con_id))
921 mutex_unlock(&pwm_lookup_lock);
924 return ERR_PTR(-ENODEV);
926 chip = pwmchip_find_by_name(chosen->provider);
929 * If the lookup entry specifies a module, load the module and retry
930 * the PWM chip lookup. This can be used to work around driver load
931 * ordering issues if driver's can't be made to properly support the
932 * deferred probe mechanism.
934 if (!chip && chosen->module) {
935 err = request_module(chosen->module);
937 chip = pwmchip_find_by_name(chosen->provider);
941 return ERR_PTR(-EPROBE_DEFER);
943 pwm = pwm_request_from_chip(chip, chosen->index, con_id ?: dev_id);
947 dl = pwm_device_link_add(dev, pwm);
953 pwm->args.period = chosen->period;
954 pwm->args.polarity = chosen->polarity;
958 EXPORT_SYMBOL_GPL(pwm_get);
961 * pwm_put() - release a PWM device
964 void pwm_put(struct pwm_device *pwm)
969 mutex_lock(&pwm_lock);
971 if (!test_and_clear_bit(PWMF_REQUESTED, &pwm->flags)) {
972 pr_warn("PWM device already freed\n");
976 if (pwm->chip->ops->free)
977 pwm->chip->ops->free(pwm->chip, pwm);
979 pwm_set_chip_data(pwm, NULL);
982 module_put(pwm->chip->ops->owner);
984 mutex_unlock(&pwm_lock);
986 EXPORT_SYMBOL_GPL(pwm_put);
988 static void devm_pwm_release(void *pwm)
994 * devm_pwm_get() - resource managed pwm_get()
995 * @dev: device for PWM consumer
996 * @con_id: consumer name
998 * This function performs like pwm_get() but the acquired PWM device will
999 * automatically be released on driver detach.
1001 * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
1002 * error code on failure.
1004 struct pwm_device *devm_pwm_get(struct device *dev, const char *con_id)
1006 struct pwm_device *pwm;
1009 pwm = pwm_get(dev, con_id);
1013 ret = devm_add_action_or_reset(dev, devm_pwm_release, pwm);
1015 return ERR_PTR(ret);
1019 EXPORT_SYMBOL_GPL(devm_pwm_get);
1022 * devm_fwnode_pwm_get() - request a resource managed PWM from firmware node
1023 * @dev: device for PWM consumer
1024 * @fwnode: firmware node to get the PWM from
1025 * @con_id: consumer name
1027 * Returns the PWM device parsed from the firmware node. See of_pwm_get() and
1028 * acpi_pwm_get() for a detailed description.
1030 * Returns: A pointer to the requested PWM device or an ERR_PTR()-encoded
1031 * error code on failure.
1033 struct pwm_device *devm_fwnode_pwm_get(struct device *dev,
1034 struct fwnode_handle *fwnode,
1037 struct pwm_device *pwm = ERR_PTR(-ENODEV);
1040 if (is_of_node(fwnode))
1041 pwm = of_pwm_get(dev, to_of_node(fwnode), con_id);
1042 else if (is_acpi_node(fwnode))
1043 pwm = acpi_pwm_get(fwnode);
1047 ret = devm_add_action_or_reset(dev, devm_pwm_release, pwm);
1049 return ERR_PTR(ret);
1053 EXPORT_SYMBOL_GPL(devm_fwnode_pwm_get);
1055 #ifdef CONFIG_DEBUG_FS
1056 static void pwm_dbg_show(struct pwm_chip *chip, struct seq_file *s)
1060 for (i = 0; i < chip->npwm; i++) {
1061 struct pwm_device *pwm = &chip->pwms[i];
1062 struct pwm_state state;
1064 pwm_get_state(pwm, &state);
1066 seq_printf(s, " pwm-%-3d (%-20.20s):", i, pwm->label);
1068 if (test_bit(PWMF_REQUESTED, &pwm->flags))
1069 seq_puts(s, " requested");
1072 seq_puts(s, " enabled");
1074 seq_printf(s, " period: %llu ns", state.period);
1075 seq_printf(s, " duty: %llu ns", state.duty_cycle);
1076 seq_printf(s, " polarity: %s",
1077 state.polarity ? "inverse" : "normal");
1079 if (state.usage_power)
1080 seq_puts(s, " usage_power");
1086 static void *pwm_seq_start(struct seq_file *s, loff_t *pos)
1088 mutex_lock(&pwm_lock);
1091 return seq_list_start(&pwm_chips, *pos);
1094 static void *pwm_seq_next(struct seq_file *s, void *v, loff_t *pos)
1098 return seq_list_next(v, &pwm_chips, pos);
1101 static void pwm_seq_stop(struct seq_file *s, void *v)
1103 mutex_unlock(&pwm_lock);
1106 static int pwm_seq_show(struct seq_file *s, void *v)
1108 struct pwm_chip *chip = list_entry(v, struct pwm_chip, list);
1110 seq_printf(s, "%s%s/%s, %d PWM device%s\n", (char *)s->private,
1111 chip->dev->bus ? chip->dev->bus->name : "no-bus",
1112 dev_name(chip->dev), chip->npwm,
1113 (chip->npwm != 1) ? "s" : "");
1115 pwm_dbg_show(chip, s);
1120 static const struct seq_operations pwm_debugfs_sops = {
1121 .start = pwm_seq_start,
1122 .next = pwm_seq_next,
1123 .stop = pwm_seq_stop,
1124 .show = pwm_seq_show,
1127 DEFINE_SEQ_ATTRIBUTE(pwm_debugfs);
1129 static int __init pwm_debugfs_init(void)
1131 debugfs_create_file("pwm", 0444, NULL, NULL, &pwm_debugfs_fops);
1135 subsys_initcall(pwm_debugfs_init);
1136 #endif /* CONFIG_DEBUG_FS */