gro: Allow tunnel stacking in the case of FOU/GUE
[linux/fpc-iii.git] / drivers / power / power_supply_core.c
blobb2bf48c7dc360de875bf4b8594784de88b582635
1 /*
2 * Universal power supply monitor class
4 * Copyright © 2007 Anton Vorontsov <cbou@mail.ru>
5 * Copyright © 2004 Szabolcs Gyurko
6 * Copyright © 2003 Ian Molton <spyro@f2s.com>
8 * Modified: 2004, Oct Szabolcs Gyurko
10 * You may use this code as per GPL version 2
13 #include <linux/module.h>
14 #include <linux/types.h>
15 #include <linux/init.h>
16 #include <linux/slab.h>
17 #include <linux/device.h>
18 #include <linux/notifier.h>
19 #include <linux/err.h>
20 #include <linux/power_supply.h>
21 #include <linux/thermal.h>
22 #include "power_supply.h"
24 /* exported for the APM Power driver, APM emulation */
25 struct class *power_supply_class;
26 EXPORT_SYMBOL_GPL(power_supply_class);
28 ATOMIC_NOTIFIER_HEAD(power_supply_notifier);
29 EXPORT_SYMBOL_GPL(power_supply_notifier);
31 static struct device_type power_supply_dev_type;
33 #define POWER_SUPPLY_DEFERRED_REGISTER_TIME msecs_to_jiffies(10)
35 static bool __power_supply_is_supplied_by(struct power_supply *supplier,
36 struct power_supply *supply)
38 int i;
40 if (!supply->supplied_from && !supplier->supplied_to)
41 return false;
43 /* Support both supplied_to and supplied_from modes */
44 if (supply->supplied_from) {
45 if (!supplier->desc->name)
46 return false;
47 for (i = 0; i < supply->num_supplies; i++)
48 if (!strcmp(supplier->desc->name, supply->supplied_from[i]))
49 return true;
50 } else {
51 if (!supply->desc->name)
52 return false;
53 for (i = 0; i < supplier->num_supplicants; i++)
54 if (!strcmp(supplier->supplied_to[i], supply->desc->name))
55 return true;
58 return false;
61 static int __power_supply_changed_work(struct device *dev, void *data)
63 struct power_supply *psy = data;
64 struct power_supply *pst = dev_get_drvdata(dev);
66 if (__power_supply_is_supplied_by(psy, pst)) {
67 if (pst->desc->external_power_changed)
68 pst->desc->external_power_changed(pst);
71 return 0;
74 static void power_supply_changed_work(struct work_struct *work)
76 unsigned long flags;
77 struct power_supply *psy = container_of(work, struct power_supply,
78 changed_work);
80 dev_dbg(&psy->dev, "%s\n", __func__);
82 spin_lock_irqsave(&psy->changed_lock, flags);
84 * Check 'changed' here to avoid issues due to race between
85 * power_supply_changed() and this routine. In worst case
86 * power_supply_changed() can be called again just before we take above
87 * lock. During the first call of this routine we will mark 'changed' as
88 * false and it will stay false for the next call as well.
90 if (likely(psy->changed)) {
91 psy->changed = false;
92 spin_unlock_irqrestore(&psy->changed_lock, flags);
93 class_for_each_device(power_supply_class, NULL, psy,
94 __power_supply_changed_work);
95 power_supply_update_leds(psy);
96 atomic_notifier_call_chain(&power_supply_notifier,
97 PSY_EVENT_PROP_CHANGED, psy);
98 kobject_uevent(&psy->dev.kobj, KOBJ_CHANGE);
99 spin_lock_irqsave(&psy->changed_lock, flags);
103 * Hold the wakeup_source until all events are processed.
104 * power_supply_changed() might have called again and have set 'changed'
105 * to true.
107 if (likely(!psy->changed))
108 pm_relax(&psy->dev);
109 spin_unlock_irqrestore(&psy->changed_lock, flags);
112 void power_supply_changed(struct power_supply *psy)
114 unsigned long flags;
116 dev_dbg(&psy->dev, "%s\n", __func__);
118 spin_lock_irqsave(&psy->changed_lock, flags);
119 psy->changed = true;
120 pm_stay_awake(&psy->dev);
121 spin_unlock_irqrestore(&psy->changed_lock, flags);
122 schedule_work(&psy->changed_work);
124 EXPORT_SYMBOL_GPL(power_supply_changed);
127 * Notify that power supply was registered after parent finished the probing.
129 * Often power supply is registered from driver's probe function. However
130 * calling power_supply_changed() directly from power_supply_register()
131 * would lead to execution of get_property() function provided by the driver
132 * too early - before the probe ends.
134 * Avoid that by waiting on parent's mutex.
136 static void power_supply_deferred_register_work(struct work_struct *work)
138 struct power_supply *psy = container_of(work, struct power_supply,
139 deferred_register_work.work);
141 if (psy->dev.parent)
142 mutex_lock(&psy->dev.parent->mutex);
144 power_supply_changed(psy);
146 if (psy->dev.parent)
147 mutex_unlock(&psy->dev.parent->mutex);
150 #ifdef CONFIG_OF
151 #include <linux/of.h>
153 static int __power_supply_populate_supplied_from(struct device *dev,
154 void *data)
156 struct power_supply *psy = data;
157 struct power_supply *epsy = dev_get_drvdata(dev);
158 struct device_node *np;
159 int i = 0;
161 do {
162 np = of_parse_phandle(psy->of_node, "power-supplies", i++);
163 if (!np)
164 break;
166 if (np == epsy->of_node) {
167 dev_info(&psy->dev, "%s: Found supply : %s\n",
168 psy->desc->name, epsy->desc->name);
169 psy->supplied_from[i-1] = (char *)epsy->desc->name;
170 psy->num_supplies++;
171 of_node_put(np);
172 break;
174 of_node_put(np);
175 } while (np);
177 return 0;
180 static int power_supply_populate_supplied_from(struct power_supply *psy)
182 int error;
184 error = class_for_each_device(power_supply_class, NULL, psy,
185 __power_supply_populate_supplied_from);
187 dev_dbg(&psy->dev, "%s %d\n", __func__, error);
189 return error;
192 static int __power_supply_find_supply_from_node(struct device *dev,
193 void *data)
195 struct device_node *np = data;
196 struct power_supply *epsy = dev_get_drvdata(dev);
198 /* returning non-zero breaks out of class_for_each_device loop */
199 if (epsy->of_node == np)
200 return 1;
202 return 0;
205 static int power_supply_find_supply_from_node(struct device_node *supply_node)
207 int error;
210 * class_for_each_device() either returns its own errors or values
211 * returned by __power_supply_find_supply_from_node().
213 * __power_supply_find_supply_from_node() will return 0 (no match)
214 * or 1 (match).
216 * We return 0 if class_for_each_device() returned 1, -EPROBE_DEFER if
217 * it returned 0, or error as returned by it.
219 error = class_for_each_device(power_supply_class, NULL, supply_node,
220 __power_supply_find_supply_from_node);
222 return error ? (error == 1 ? 0 : error) : -EPROBE_DEFER;
225 static int power_supply_check_supplies(struct power_supply *psy)
227 struct device_node *np;
228 int cnt = 0;
230 /* If there is already a list honor it */
231 if (psy->supplied_from && psy->num_supplies > 0)
232 return 0;
234 /* No device node found, nothing to do */
235 if (!psy->of_node)
236 return 0;
238 do {
239 int ret;
241 np = of_parse_phandle(psy->of_node, "power-supplies", cnt++);
242 if (!np)
243 break;
245 ret = power_supply_find_supply_from_node(np);
246 of_node_put(np);
248 if (ret) {
249 dev_dbg(&psy->dev, "Failed to find supply!\n");
250 return ret;
252 } while (np);
254 /* Missing valid "power-supplies" entries */
255 if (cnt == 1)
256 return 0;
258 /* All supplies found, allocate char ** array for filling */
259 psy->supplied_from = devm_kzalloc(&psy->dev, sizeof(psy->supplied_from),
260 GFP_KERNEL);
261 if (!psy->supplied_from) {
262 dev_err(&psy->dev, "Couldn't allocate memory for supply list\n");
263 return -ENOMEM;
266 *psy->supplied_from = devm_kzalloc(&psy->dev,
267 sizeof(char *) * (cnt - 1),
268 GFP_KERNEL);
269 if (!*psy->supplied_from) {
270 dev_err(&psy->dev, "Couldn't allocate memory for supply list\n");
271 return -ENOMEM;
274 return power_supply_populate_supplied_from(psy);
276 #else
277 static inline int power_supply_check_supplies(struct power_supply *psy)
279 return 0;
281 #endif
283 static int __power_supply_am_i_supplied(struct device *dev, void *data)
285 union power_supply_propval ret = {0,};
286 struct power_supply *psy = data;
287 struct power_supply *epsy = dev_get_drvdata(dev);
289 if (__power_supply_is_supplied_by(epsy, psy))
290 if (!epsy->desc->get_property(epsy, POWER_SUPPLY_PROP_ONLINE,
291 &ret))
292 return ret.intval;
294 return 0;
297 int power_supply_am_i_supplied(struct power_supply *psy)
299 int error;
301 error = class_for_each_device(power_supply_class, NULL, psy,
302 __power_supply_am_i_supplied);
304 dev_dbg(&psy->dev, "%s %d\n", __func__, error);
306 return error;
308 EXPORT_SYMBOL_GPL(power_supply_am_i_supplied);
310 static int __power_supply_is_system_supplied(struct device *dev, void *data)
312 union power_supply_propval ret = {0,};
313 struct power_supply *psy = dev_get_drvdata(dev);
314 unsigned int *count = data;
316 (*count)++;
317 if (psy->desc->type != POWER_SUPPLY_TYPE_BATTERY)
318 if (!psy->desc->get_property(psy, POWER_SUPPLY_PROP_ONLINE,
319 &ret))
320 return ret.intval;
322 return 0;
325 int power_supply_is_system_supplied(void)
327 int error;
328 unsigned int count = 0;
330 error = class_for_each_device(power_supply_class, NULL, &count,
331 __power_supply_is_system_supplied);
334 * If no power class device was found at all, most probably we are
335 * running on a desktop system, so assume we are on mains power.
337 if (count == 0)
338 return 1;
340 return error;
342 EXPORT_SYMBOL_GPL(power_supply_is_system_supplied);
344 int power_supply_set_battery_charged(struct power_supply *psy)
346 if (atomic_read(&psy->use_cnt) >= 0 &&
347 psy->desc->type == POWER_SUPPLY_TYPE_BATTERY &&
348 psy->desc->set_charged) {
349 psy->desc->set_charged(psy);
350 return 0;
353 return -EINVAL;
355 EXPORT_SYMBOL_GPL(power_supply_set_battery_charged);
357 static int power_supply_match_device_by_name(struct device *dev, const void *data)
359 const char *name = data;
360 struct power_supply *psy = dev_get_drvdata(dev);
362 return strcmp(psy->desc->name, name) == 0;
366 * power_supply_get_by_name() - Search for a power supply and returns its ref
367 * @name: Power supply name to fetch
369 * If power supply was found, it increases reference count for the
370 * internal power supply's device. The user should power_supply_put()
371 * after usage.
373 * Return: On success returns a reference to a power supply with
374 * matching name equals to @name, a NULL otherwise.
376 struct power_supply *power_supply_get_by_name(const char *name)
378 struct power_supply *psy = NULL;
379 struct device *dev = class_find_device(power_supply_class, NULL, name,
380 power_supply_match_device_by_name);
382 if (dev) {
383 psy = dev_get_drvdata(dev);
384 atomic_inc(&psy->use_cnt);
387 return psy;
389 EXPORT_SYMBOL_GPL(power_supply_get_by_name);
392 * power_supply_put() - Drop reference obtained with power_supply_get_by_name
393 * @psy: Reference to put
395 * The reference to power supply should be put before unregistering
396 * the power supply.
398 void power_supply_put(struct power_supply *psy)
400 might_sleep();
402 atomic_dec(&psy->use_cnt);
403 put_device(&psy->dev);
405 EXPORT_SYMBOL_GPL(power_supply_put);
407 #ifdef CONFIG_OF
408 static int power_supply_match_device_node(struct device *dev, const void *data)
410 return dev->parent && dev->parent->of_node == data;
414 * power_supply_get_by_phandle() - Search for a power supply and returns its ref
415 * @np: Pointer to device node holding phandle property
416 * @phandle_name: Name of property holding a power supply name
418 * If power supply was found, it increases reference count for the
419 * internal power supply's device. The user should power_supply_put()
420 * after usage.
422 * Return: On success returns a reference to a power supply with
423 * matching name equals to value under @property, NULL or ERR_PTR otherwise.
425 struct power_supply *power_supply_get_by_phandle(struct device_node *np,
426 const char *property)
428 struct device_node *power_supply_np;
429 struct power_supply *psy = NULL;
430 struct device *dev;
432 power_supply_np = of_parse_phandle(np, property, 0);
433 if (!power_supply_np)
434 return ERR_PTR(-ENODEV);
436 dev = class_find_device(power_supply_class, NULL, power_supply_np,
437 power_supply_match_device_node);
439 of_node_put(power_supply_np);
441 if (dev) {
442 psy = dev_get_drvdata(dev);
443 atomic_inc(&psy->use_cnt);
446 return psy;
448 EXPORT_SYMBOL_GPL(power_supply_get_by_phandle);
449 #endif /* CONFIG_OF */
451 int power_supply_get_property(struct power_supply *psy,
452 enum power_supply_property psp,
453 union power_supply_propval *val)
455 if (atomic_read(&psy->use_cnt) <= 0)
456 return -ENODEV;
458 return psy->desc->get_property(psy, psp, val);
460 EXPORT_SYMBOL_GPL(power_supply_get_property);
462 int power_supply_set_property(struct power_supply *psy,
463 enum power_supply_property psp,
464 const union power_supply_propval *val)
466 if (atomic_read(&psy->use_cnt) <= 0 || !psy->desc->set_property)
467 return -ENODEV;
469 return psy->desc->set_property(psy, psp, val);
471 EXPORT_SYMBOL_GPL(power_supply_set_property);
473 int power_supply_property_is_writeable(struct power_supply *psy,
474 enum power_supply_property psp)
476 if (atomic_read(&psy->use_cnt) <= 0 ||
477 !psy->desc->property_is_writeable)
478 return -ENODEV;
480 return psy->desc->property_is_writeable(psy, psp);
482 EXPORT_SYMBOL_GPL(power_supply_property_is_writeable);
484 void power_supply_external_power_changed(struct power_supply *psy)
486 if (atomic_read(&psy->use_cnt) <= 0 ||
487 !psy->desc->external_power_changed)
488 return;
490 psy->desc->external_power_changed(psy);
492 EXPORT_SYMBOL_GPL(power_supply_external_power_changed);
494 int power_supply_powers(struct power_supply *psy, struct device *dev)
496 return sysfs_create_link(&psy->dev.kobj, &dev->kobj, "powers");
498 EXPORT_SYMBOL_GPL(power_supply_powers);
500 static void power_supply_dev_release(struct device *dev)
502 struct power_supply *psy = container_of(dev, struct power_supply, dev);
503 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
504 kfree(psy);
507 int power_supply_reg_notifier(struct notifier_block *nb)
509 return atomic_notifier_chain_register(&power_supply_notifier, nb);
511 EXPORT_SYMBOL_GPL(power_supply_reg_notifier);
513 void power_supply_unreg_notifier(struct notifier_block *nb)
515 atomic_notifier_chain_unregister(&power_supply_notifier, nb);
517 EXPORT_SYMBOL_GPL(power_supply_unreg_notifier);
519 #ifdef CONFIG_THERMAL
520 static int power_supply_read_temp(struct thermal_zone_device *tzd,
521 unsigned long *temp)
523 struct power_supply *psy;
524 union power_supply_propval val;
525 int ret;
527 WARN_ON(tzd == NULL);
528 psy = tzd->devdata;
529 ret = power_supply_get_property(psy, POWER_SUPPLY_PROP_TEMP, &val);
530 if (ret)
531 return ret;
533 /* Convert tenths of degree Celsius to milli degree Celsius. */
534 *temp = val.intval * 100;
536 return ret;
539 static struct thermal_zone_device_ops psy_tzd_ops = {
540 .get_temp = power_supply_read_temp,
543 static int psy_register_thermal(struct power_supply *psy)
545 int i;
547 if (psy->desc->no_thermal)
548 return 0;
550 /* Register battery zone device psy reports temperature */
551 for (i = 0; i < psy->desc->num_properties; i++) {
552 if (psy->desc->properties[i] == POWER_SUPPLY_PROP_TEMP) {
553 psy->tzd = thermal_zone_device_register(psy->desc->name,
554 0, 0, psy, &psy_tzd_ops, NULL, 0, 0);
555 return PTR_ERR_OR_ZERO(psy->tzd);
558 return 0;
561 static void psy_unregister_thermal(struct power_supply *psy)
563 if (IS_ERR_OR_NULL(psy->tzd))
564 return;
565 thermal_zone_device_unregister(psy->tzd);
568 /* thermal cooling device callbacks */
569 static int ps_get_max_charge_cntl_limit(struct thermal_cooling_device *tcd,
570 unsigned long *state)
572 struct power_supply *psy;
573 union power_supply_propval val;
574 int ret;
576 psy = tcd->devdata;
577 ret = power_supply_get_property(psy,
578 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX, &val);
579 if (ret)
580 return ret;
582 *state = val.intval;
584 return ret;
587 static int ps_get_cur_chrage_cntl_limit(struct thermal_cooling_device *tcd,
588 unsigned long *state)
590 struct power_supply *psy;
591 union power_supply_propval val;
592 int ret;
594 psy = tcd->devdata;
595 ret = power_supply_get_property(psy,
596 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT, &val);
597 if (ret)
598 return ret;
600 *state = val.intval;
602 return ret;
605 static int ps_set_cur_charge_cntl_limit(struct thermal_cooling_device *tcd,
606 unsigned long state)
608 struct power_supply *psy;
609 union power_supply_propval val;
610 int ret;
612 psy = tcd->devdata;
613 val.intval = state;
614 ret = psy->desc->set_property(psy,
615 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT, &val);
617 return ret;
620 static struct thermal_cooling_device_ops psy_tcd_ops = {
621 .get_max_state = ps_get_max_charge_cntl_limit,
622 .get_cur_state = ps_get_cur_chrage_cntl_limit,
623 .set_cur_state = ps_set_cur_charge_cntl_limit,
626 static int psy_register_cooler(struct power_supply *psy)
628 int i;
630 /* Register for cooling device if psy can control charging */
631 for (i = 0; i < psy->desc->num_properties; i++) {
632 if (psy->desc->properties[i] ==
633 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT) {
634 psy->tcd = thermal_cooling_device_register(
635 (char *)psy->desc->name,
636 psy, &psy_tcd_ops);
637 return PTR_ERR_OR_ZERO(psy->tcd);
640 return 0;
643 static void psy_unregister_cooler(struct power_supply *psy)
645 if (IS_ERR_OR_NULL(psy->tcd))
646 return;
647 thermal_cooling_device_unregister(psy->tcd);
649 #else
650 static int psy_register_thermal(struct power_supply *psy)
652 return 0;
655 static void psy_unregister_thermal(struct power_supply *psy)
659 static int psy_register_cooler(struct power_supply *psy)
661 return 0;
664 static void psy_unregister_cooler(struct power_supply *psy)
667 #endif
669 static struct power_supply *__must_check
670 __power_supply_register(struct device *parent,
671 const struct power_supply_desc *desc,
672 const struct power_supply_config *cfg,
673 bool ws)
675 struct device *dev;
676 struct power_supply *psy;
677 int rc;
679 if (!parent)
680 pr_warn("%s: Expected proper parent device for '%s'\n",
681 __func__, desc->name);
683 psy = kzalloc(sizeof(*psy), GFP_KERNEL);
684 if (!psy)
685 return ERR_PTR(-ENOMEM);
687 dev = &psy->dev;
689 device_initialize(dev);
691 dev->class = power_supply_class;
692 dev->type = &power_supply_dev_type;
693 dev->parent = parent;
694 dev->release = power_supply_dev_release;
695 dev_set_drvdata(dev, psy);
696 psy->desc = desc;
697 if (cfg) {
698 psy->drv_data = cfg->drv_data;
699 psy->of_node = cfg->of_node;
700 psy->supplied_to = cfg->supplied_to;
701 psy->num_supplicants = cfg->num_supplicants;
704 rc = dev_set_name(dev, "%s", desc->name);
705 if (rc)
706 goto dev_set_name_failed;
708 INIT_WORK(&psy->changed_work, power_supply_changed_work);
709 INIT_DELAYED_WORK(&psy->deferred_register_work,
710 power_supply_deferred_register_work);
712 rc = power_supply_check_supplies(psy);
713 if (rc) {
714 dev_info(dev, "Not all required supplies found, defer probe\n");
715 goto check_supplies_failed;
718 spin_lock_init(&psy->changed_lock);
719 rc = device_init_wakeup(dev, ws);
720 if (rc)
721 goto wakeup_init_failed;
723 rc = device_add(dev);
724 if (rc)
725 goto device_add_failed;
727 rc = psy_register_thermal(psy);
728 if (rc)
729 goto register_thermal_failed;
731 rc = psy_register_cooler(psy);
732 if (rc)
733 goto register_cooler_failed;
735 rc = power_supply_create_triggers(psy);
736 if (rc)
737 goto create_triggers_failed;
740 * Update use_cnt after any uevents (most notably from device_add()).
741 * We are here still during driver's probe but
742 * the power_supply_uevent() calls back driver's get_property
743 * method so:
744 * 1. Driver did not assigned the returned struct power_supply,
745 * 2. Driver could not finish initialization (anything in its probe
746 * after calling power_supply_register()).
748 atomic_inc(&psy->use_cnt);
750 queue_delayed_work(system_power_efficient_wq,
751 &psy->deferred_register_work,
752 POWER_SUPPLY_DEFERRED_REGISTER_TIME);
754 return psy;
756 create_triggers_failed:
757 psy_unregister_cooler(psy);
758 register_cooler_failed:
759 psy_unregister_thermal(psy);
760 register_thermal_failed:
761 device_del(dev);
762 device_add_failed:
763 wakeup_init_failed:
764 check_supplies_failed:
765 dev_set_name_failed:
766 put_device(dev);
767 return ERR_PTR(rc);
771 * power_supply_register() - Register new power supply
772 * @parent: Device to be a parent of power supply's device, usually
773 * the device which probe function calls this
774 * @desc: Description of power supply, must be valid through whole
775 * lifetime of this power supply
776 * @cfg: Run-time specific configuration accessed during registering,
777 * may be NULL
779 * Return: A pointer to newly allocated power_supply on success
780 * or ERR_PTR otherwise.
781 * Use power_supply_unregister() on returned power_supply pointer to release
782 * resources.
784 struct power_supply *__must_check power_supply_register(struct device *parent,
785 const struct power_supply_desc *desc,
786 const struct power_supply_config *cfg)
788 return __power_supply_register(parent, desc, cfg, true);
790 EXPORT_SYMBOL_GPL(power_supply_register);
793 * power_supply_register() - Register new non-waking-source power supply
794 * @parent: Device to be a parent of power supply's device, usually
795 * the device which probe function calls this
796 * @desc: Description of power supply, must be valid through whole
797 * lifetime of this power supply
798 * @cfg: Run-time specific configuration accessed during registering,
799 * may be NULL
801 * Return: A pointer to newly allocated power_supply on success
802 * or ERR_PTR otherwise.
803 * Use power_supply_unregister() on returned power_supply pointer to release
804 * resources.
806 struct power_supply *__must_check
807 power_supply_register_no_ws(struct device *parent,
808 const struct power_supply_desc *desc,
809 const struct power_supply_config *cfg)
811 return __power_supply_register(parent, desc, cfg, false);
813 EXPORT_SYMBOL_GPL(power_supply_register_no_ws);
815 static void devm_power_supply_release(struct device *dev, void *res)
817 struct power_supply **psy = res;
819 power_supply_unregister(*psy);
823 * power_supply_register() - Register managed power supply
824 * @parent: Device to be a parent of power supply's device, usually
825 * the device which probe function calls this
826 * @desc: Description of power supply, must be valid through whole
827 * lifetime of this power supply
828 * @cfg: Run-time specific configuration accessed during registering,
829 * may be NULL
831 * Return: A pointer to newly allocated power_supply on success
832 * or ERR_PTR otherwise.
833 * The returned power_supply pointer will be automatically unregistered
834 * on driver detach.
836 struct power_supply *__must_check
837 devm_power_supply_register(struct device *parent,
838 const struct power_supply_desc *desc,
839 const struct power_supply_config *cfg)
841 struct power_supply **ptr, *psy;
843 ptr = devres_alloc(devm_power_supply_release, sizeof(*ptr), GFP_KERNEL);
845 if (!ptr)
846 return ERR_PTR(-ENOMEM);
847 psy = __power_supply_register(parent, desc, cfg, true);
848 if (IS_ERR(psy)) {
849 devres_free(ptr);
850 } else {
851 *ptr = psy;
852 devres_add(parent, ptr);
854 return psy;
856 EXPORT_SYMBOL_GPL(devm_power_supply_register);
859 * power_supply_register() - Register managed non-waking-source power supply
860 * @parent: Device to be a parent of power supply's device, usually
861 * the device which probe function calls this
862 * @desc: Description of power supply, must be valid through whole
863 * lifetime of this power supply
864 * @cfg: Run-time specific configuration accessed during registering,
865 * may be NULL
867 * Return: A pointer to newly allocated power_supply on success
868 * or ERR_PTR otherwise.
869 * The returned power_supply pointer will be automatically unregistered
870 * on driver detach.
872 struct power_supply *__must_check
873 devm_power_supply_register_no_ws(struct device *parent,
874 const struct power_supply_desc *desc,
875 const struct power_supply_config *cfg)
877 struct power_supply **ptr, *psy;
879 ptr = devres_alloc(devm_power_supply_release, sizeof(*ptr), GFP_KERNEL);
881 if (!ptr)
882 return ERR_PTR(-ENOMEM);
883 psy = __power_supply_register(parent, desc, cfg, false);
884 if (IS_ERR(psy)) {
885 devres_free(ptr);
886 } else {
887 *ptr = psy;
888 devres_add(parent, ptr);
890 return psy;
892 EXPORT_SYMBOL_GPL(devm_power_supply_register_no_ws);
895 * power_supply_unregister() - Remove this power supply from system
896 * @psy: Pointer to power supply to unregister
898 * Remove this power supply from the system. The resources of power supply
899 * will be freed here or on last power_supply_put() call.
901 void power_supply_unregister(struct power_supply *psy)
903 WARN_ON(atomic_dec_return(&psy->use_cnt));
904 cancel_work_sync(&psy->changed_work);
905 cancel_delayed_work_sync(&psy->deferred_register_work);
906 sysfs_remove_link(&psy->dev.kobj, "powers");
907 power_supply_remove_triggers(psy);
908 psy_unregister_cooler(psy);
909 psy_unregister_thermal(psy);
910 device_init_wakeup(&psy->dev, false);
911 device_unregister(&psy->dev);
913 EXPORT_SYMBOL_GPL(power_supply_unregister);
915 void *power_supply_get_drvdata(struct power_supply *psy)
917 return psy->drv_data;
919 EXPORT_SYMBOL_GPL(power_supply_get_drvdata);
921 static int __init power_supply_class_init(void)
923 power_supply_class = class_create(THIS_MODULE, "power_supply");
925 if (IS_ERR(power_supply_class))
926 return PTR_ERR(power_supply_class);
928 power_supply_class->dev_uevent = power_supply_uevent;
929 power_supply_init_attrs(&power_supply_dev_type);
931 return 0;
934 static void __exit power_supply_class_exit(void)
936 class_destroy(power_supply_class);
939 subsys_initcall(power_supply_class_init);
940 module_exit(power_supply_class_exit);
942 MODULE_DESCRIPTION("Universal power supply monitor class");
943 MODULE_AUTHOR("Ian Molton <spyro@f2s.com>, "
944 "Szabolcs Gyurko, "
945 "Anton Vorontsov <cbou@mail.ru>");
946 MODULE_LICENSE("GPL");