treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / power / supply / power_supply_core.c
blob1a9a9fae73d3264cc3b70306c21a1090e81ca1db
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Universal power supply monitor class
5 * Copyright © 2007 Anton Vorontsov <cbou@mail.ru>
6 * Copyright © 2004 Szabolcs Gyurko
7 * Copyright © 2003 Ian Molton <spyro@f2s.com>
9 * Modified: 2004, Oct Szabolcs Gyurko
12 #include <linux/module.h>
13 #include <linux/types.h>
14 #include <linux/init.h>
15 #include <linux/slab.h>
16 #include <linux/delay.h>
17 #include <linux/device.h>
18 #include <linux/notifier.h>
19 #include <linux/err.h>
20 #include <linux/of.h>
21 #include <linux/power_supply.h>
22 #include <linux/property.h>
23 #include <linux/thermal.h>
24 #include "power_supply.h"
26 /* exported for the APM Power driver, APM emulation */
27 struct class *power_supply_class;
28 EXPORT_SYMBOL_GPL(power_supply_class);
30 ATOMIC_NOTIFIER_HEAD(power_supply_notifier);
31 EXPORT_SYMBOL_GPL(power_supply_notifier);
33 static struct device_type power_supply_dev_type;
35 #define POWER_SUPPLY_DEFERRED_REGISTER_TIME msecs_to_jiffies(10)
37 static bool __power_supply_is_supplied_by(struct power_supply *supplier,
38 struct power_supply *supply)
40 int i;
42 if (!supply->supplied_from && !supplier->supplied_to)
43 return false;
45 /* Support both supplied_to and supplied_from modes */
46 if (supply->supplied_from) {
47 if (!supplier->desc->name)
48 return false;
49 for (i = 0; i < supply->num_supplies; i++)
50 if (!strcmp(supplier->desc->name, supply->supplied_from[i]))
51 return true;
52 } else {
53 if (!supply->desc->name)
54 return false;
55 for (i = 0; i < supplier->num_supplicants; i++)
56 if (!strcmp(supplier->supplied_to[i], supply->desc->name))
57 return true;
60 return false;
63 static int __power_supply_changed_work(struct device *dev, void *data)
65 struct power_supply *psy = data;
66 struct power_supply *pst = dev_get_drvdata(dev);
68 if (__power_supply_is_supplied_by(psy, pst)) {
69 if (pst->desc->external_power_changed)
70 pst->desc->external_power_changed(pst);
73 return 0;
76 static void power_supply_changed_work(struct work_struct *work)
78 unsigned long flags;
79 struct power_supply *psy = container_of(work, struct power_supply,
80 changed_work);
82 dev_dbg(&psy->dev, "%s\n", __func__);
84 spin_lock_irqsave(&psy->changed_lock, flags);
86 * Check 'changed' here to avoid issues due to race between
87 * power_supply_changed() and this routine. In worst case
88 * power_supply_changed() can be called again just before we take above
89 * lock. During the first call of this routine we will mark 'changed' as
90 * false and it will stay false for the next call as well.
92 if (likely(psy->changed)) {
93 psy->changed = false;
94 spin_unlock_irqrestore(&psy->changed_lock, flags);
95 class_for_each_device(power_supply_class, NULL, psy,
96 __power_supply_changed_work);
97 power_supply_update_leds(psy);
98 atomic_notifier_call_chain(&power_supply_notifier,
99 PSY_EVENT_PROP_CHANGED, psy);
100 kobject_uevent(&psy->dev.kobj, KOBJ_CHANGE);
101 spin_lock_irqsave(&psy->changed_lock, flags);
105 * Hold the wakeup_source until all events are processed.
106 * power_supply_changed() might have called again and have set 'changed'
107 * to true.
109 if (likely(!psy->changed))
110 pm_relax(&psy->dev);
111 spin_unlock_irqrestore(&psy->changed_lock, flags);
114 void power_supply_changed(struct power_supply *psy)
116 unsigned long flags;
118 dev_dbg(&psy->dev, "%s\n", __func__);
120 spin_lock_irqsave(&psy->changed_lock, flags);
121 psy->changed = true;
122 pm_stay_awake(&psy->dev);
123 spin_unlock_irqrestore(&psy->changed_lock, flags);
124 schedule_work(&psy->changed_work);
126 EXPORT_SYMBOL_GPL(power_supply_changed);
129 * Notify that power supply was registered after parent finished the probing.
131 * Often power supply is registered from driver's probe function. However
132 * calling power_supply_changed() directly from power_supply_register()
133 * would lead to execution of get_property() function provided by the driver
134 * too early - before the probe ends.
136 * Avoid that by waiting on parent's mutex.
138 static void power_supply_deferred_register_work(struct work_struct *work)
140 struct power_supply *psy = container_of(work, struct power_supply,
141 deferred_register_work.work);
143 if (psy->dev.parent) {
144 while (!mutex_trylock(&psy->dev.parent->mutex)) {
145 if (psy->removing)
146 return;
147 msleep(10);
151 power_supply_changed(psy);
153 if (psy->dev.parent)
154 mutex_unlock(&psy->dev.parent->mutex);
157 #ifdef CONFIG_OF
158 static int __power_supply_populate_supplied_from(struct device *dev,
159 void *data)
161 struct power_supply *psy = data;
162 struct power_supply *epsy = dev_get_drvdata(dev);
163 struct device_node *np;
164 int i = 0;
166 do {
167 np = of_parse_phandle(psy->of_node, "power-supplies", i++);
168 if (!np)
169 break;
171 if (np == epsy->of_node) {
172 dev_info(&psy->dev, "%s: Found supply : %s\n",
173 psy->desc->name, epsy->desc->name);
174 psy->supplied_from[i-1] = (char *)epsy->desc->name;
175 psy->num_supplies++;
176 of_node_put(np);
177 break;
179 of_node_put(np);
180 } while (np);
182 return 0;
185 static int power_supply_populate_supplied_from(struct power_supply *psy)
187 int error;
189 error = class_for_each_device(power_supply_class, NULL, psy,
190 __power_supply_populate_supplied_from);
192 dev_dbg(&psy->dev, "%s %d\n", __func__, error);
194 return error;
197 static int __power_supply_find_supply_from_node(struct device *dev,
198 void *data)
200 struct device_node *np = data;
201 struct power_supply *epsy = dev_get_drvdata(dev);
203 /* returning non-zero breaks out of class_for_each_device loop */
204 if (epsy->of_node == np)
205 return 1;
207 return 0;
210 static int power_supply_find_supply_from_node(struct device_node *supply_node)
212 int error;
215 * class_for_each_device() either returns its own errors or values
216 * returned by __power_supply_find_supply_from_node().
218 * __power_supply_find_supply_from_node() will return 0 (no match)
219 * or 1 (match).
221 * We return 0 if class_for_each_device() returned 1, -EPROBE_DEFER if
222 * it returned 0, or error as returned by it.
224 error = class_for_each_device(power_supply_class, NULL, supply_node,
225 __power_supply_find_supply_from_node);
227 return error ? (error == 1 ? 0 : error) : -EPROBE_DEFER;
230 static int power_supply_check_supplies(struct power_supply *psy)
232 struct device_node *np;
233 int cnt = 0;
235 /* If there is already a list honor it */
236 if (psy->supplied_from && psy->num_supplies > 0)
237 return 0;
239 /* No device node found, nothing to do */
240 if (!psy->of_node)
241 return 0;
243 do {
244 int ret;
246 np = of_parse_phandle(psy->of_node, "power-supplies", cnt++);
247 if (!np)
248 break;
250 ret = power_supply_find_supply_from_node(np);
251 of_node_put(np);
253 if (ret) {
254 dev_dbg(&psy->dev, "Failed to find supply!\n");
255 return ret;
257 } while (np);
259 /* Missing valid "power-supplies" entries */
260 if (cnt == 1)
261 return 0;
263 /* All supplies found, allocate char ** array for filling */
264 psy->supplied_from = devm_kzalloc(&psy->dev, sizeof(psy->supplied_from),
265 GFP_KERNEL);
266 if (!psy->supplied_from)
267 return -ENOMEM;
269 *psy->supplied_from = devm_kcalloc(&psy->dev,
270 cnt - 1, sizeof(char *),
271 GFP_KERNEL);
272 if (!*psy->supplied_from)
273 return -ENOMEM;
275 return power_supply_populate_supplied_from(psy);
277 #else
278 static int power_supply_check_supplies(struct power_supply *psy)
280 int nval, ret;
282 if (!psy->dev.parent)
283 return 0;
285 nval = device_property_read_string_array(psy->dev.parent,
286 "supplied-from", NULL, 0);
287 if (nval <= 0)
288 return 0;
290 psy->supplied_from = devm_kmalloc_array(&psy->dev, nval,
291 sizeof(char *), GFP_KERNEL);
292 if (!psy->supplied_from)
293 return -ENOMEM;
295 ret = device_property_read_string_array(psy->dev.parent,
296 "supplied-from", (const char **)psy->supplied_from, nval);
297 if (ret < 0)
298 return ret;
300 psy->num_supplies = nval;
302 return 0;
304 #endif
306 struct psy_am_i_supplied_data {
307 struct power_supply *psy;
308 unsigned int count;
311 static int __power_supply_am_i_supplied(struct device *dev, void *_data)
313 union power_supply_propval ret = {0,};
314 struct power_supply *epsy = dev_get_drvdata(dev);
315 struct psy_am_i_supplied_data *data = _data;
317 if (__power_supply_is_supplied_by(epsy, data->psy)) {
318 data->count++;
319 if (!epsy->desc->get_property(epsy, POWER_SUPPLY_PROP_ONLINE,
320 &ret))
321 return ret.intval;
324 return 0;
327 int power_supply_am_i_supplied(struct power_supply *psy)
329 struct psy_am_i_supplied_data data = { psy, 0 };
330 int error;
332 error = class_for_each_device(power_supply_class, NULL, &data,
333 __power_supply_am_i_supplied);
335 dev_dbg(&psy->dev, "%s count %u err %d\n", __func__, data.count, error);
337 if (data.count == 0)
338 return -ENODEV;
340 return error;
342 EXPORT_SYMBOL_GPL(power_supply_am_i_supplied);
344 static int __power_supply_is_system_supplied(struct device *dev, void *data)
346 union power_supply_propval ret = {0,};
347 struct power_supply *psy = dev_get_drvdata(dev);
348 unsigned int *count = data;
350 (*count)++;
351 if (psy->desc->type != POWER_SUPPLY_TYPE_BATTERY)
352 if (!psy->desc->get_property(psy, POWER_SUPPLY_PROP_ONLINE,
353 &ret))
354 return ret.intval;
356 return 0;
359 int power_supply_is_system_supplied(void)
361 int error;
362 unsigned int count = 0;
364 error = class_for_each_device(power_supply_class, NULL, &count,
365 __power_supply_is_system_supplied);
368 * If no power class device was found at all, most probably we are
369 * running on a desktop system, so assume we are on mains power.
371 if (count == 0)
372 return 1;
374 return error;
376 EXPORT_SYMBOL_GPL(power_supply_is_system_supplied);
378 static int __power_supply_get_supplier_max_current(struct device *dev,
379 void *data)
381 union power_supply_propval ret = {0,};
382 struct power_supply *epsy = dev_get_drvdata(dev);
383 struct power_supply *psy = data;
385 if (__power_supply_is_supplied_by(epsy, psy))
386 if (!epsy->desc->get_property(epsy,
387 POWER_SUPPLY_PROP_CURRENT_MAX,
388 &ret))
389 return ret.intval;
391 return 0;
394 int power_supply_set_input_current_limit_from_supplier(struct power_supply *psy)
396 union power_supply_propval val = {0,};
397 int curr;
399 if (!psy->desc->set_property)
400 return -EINVAL;
403 * This function is not intended for use with a supply with multiple
404 * suppliers, we simply pick the first supply to report a non 0
405 * max-current.
407 curr = class_for_each_device(power_supply_class, NULL, psy,
408 __power_supply_get_supplier_max_current);
409 if (curr <= 0)
410 return (curr == 0) ? -ENODEV : curr;
412 val.intval = curr;
414 return psy->desc->set_property(psy,
415 POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT, &val);
417 EXPORT_SYMBOL_GPL(power_supply_set_input_current_limit_from_supplier);
419 int power_supply_set_battery_charged(struct power_supply *psy)
421 if (atomic_read(&psy->use_cnt) >= 0 &&
422 psy->desc->type == POWER_SUPPLY_TYPE_BATTERY &&
423 psy->desc->set_charged) {
424 psy->desc->set_charged(psy);
425 return 0;
428 return -EINVAL;
430 EXPORT_SYMBOL_GPL(power_supply_set_battery_charged);
432 static int power_supply_match_device_by_name(struct device *dev, const void *data)
434 const char *name = data;
435 struct power_supply *psy = dev_get_drvdata(dev);
437 return strcmp(psy->desc->name, name) == 0;
441 * power_supply_get_by_name() - Search for a power supply and returns its ref
442 * @name: Power supply name to fetch
444 * If power supply was found, it increases reference count for the
445 * internal power supply's device. The user should power_supply_put()
446 * after usage.
448 * Return: On success returns a reference to a power supply with
449 * matching name equals to @name, a NULL otherwise.
451 struct power_supply *power_supply_get_by_name(const char *name)
453 struct power_supply *psy = NULL;
454 struct device *dev = class_find_device(power_supply_class, NULL, name,
455 power_supply_match_device_by_name);
457 if (dev) {
458 psy = dev_get_drvdata(dev);
459 atomic_inc(&psy->use_cnt);
462 return psy;
464 EXPORT_SYMBOL_GPL(power_supply_get_by_name);
467 * power_supply_put() - Drop reference obtained with power_supply_get_by_name
468 * @psy: Reference to put
470 * The reference to power supply should be put before unregistering
471 * the power supply.
473 void power_supply_put(struct power_supply *psy)
475 might_sleep();
477 atomic_dec(&psy->use_cnt);
478 put_device(&psy->dev);
480 EXPORT_SYMBOL_GPL(power_supply_put);
482 #ifdef CONFIG_OF
483 static int power_supply_match_device_node(struct device *dev, const void *data)
485 return dev->parent && dev->parent->of_node == data;
489 * power_supply_get_by_phandle() - Search for a power supply and returns its ref
490 * @np: Pointer to device node holding phandle property
491 * @property: Name of property holding a power supply name
493 * If power supply was found, it increases reference count for the
494 * internal power supply's device. The user should power_supply_put()
495 * after usage.
497 * Return: On success returns a reference to a power supply with
498 * matching name equals to value under @property, NULL or ERR_PTR otherwise.
500 struct power_supply *power_supply_get_by_phandle(struct device_node *np,
501 const char *property)
503 struct device_node *power_supply_np;
504 struct power_supply *psy = NULL;
505 struct device *dev;
507 power_supply_np = of_parse_phandle(np, property, 0);
508 if (!power_supply_np)
509 return ERR_PTR(-ENODEV);
511 dev = class_find_device(power_supply_class, NULL, power_supply_np,
512 power_supply_match_device_node);
514 of_node_put(power_supply_np);
516 if (dev) {
517 psy = dev_get_drvdata(dev);
518 atomic_inc(&psy->use_cnt);
521 return psy;
523 EXPORT_SYMBOL_GPL(power_supply_get_by_phandle);
525 static void devm_power_supply_put(struct device *dev, void *res)
527 struct power_supply **psy = res;
529 power_supply_put(*psy);
533 * devm_power_supply_get_by_phandle() - Resource managed version of
534 * power_supply_get_by_phandle()
535 * @dev: Pointer to device holding phandle property
536 * @property: Name of property holding a power supply phandle
538 * Return: On success returns a reference to a power supply with
539 * matching name equals to value under @property, NULL or ERR_PTR otherwise.
541 struct power_supply *devm_power_supply_get_by_phandle(struct device *dev,
542 const char *property)
544 struct power_supply **ptr, *psy;
546 if (!dev->of_node)
547 return ERR_PTR(-ENODEV);
549 ptr = devres_alloc(devm_power_supply_put, sizeof(*ptr), GFP_KERNEL);
550 if (!ptr)
551 return ERR_PTR(-ENOMEM);
553 psy = power_supply_get_by_phandle(dev->of_node, property);
554 if (IS_ERR_OR_NULL(psy)) {
555 devres_free(ptr);
556 } else {
557 *ptr = psy;
558 devres_add(dev, ptr);
560 return psy;
562 EXPORT_SYMBOL_GPL(devm_power_supply_get_by_phandle);
563 #endif /* CONFIG_OF */
565 int power_supply_get_battery_info(struct power_supply *psy,
566 struct power_supply_battery_info *info)
568 struct power_supply_resistance_temp_table *resist_table;
569 struct device_node *battery_np;
570 const char *value;
571 int err, len, index;
572 const __be32 *list;
574 info->energy_full_design_uwh = -EINVAL;
575 info->charge_full_design_uah = -EINVAL;
576 info->voltage_min_design_uv = -EINVAL;
577 info->voltage_max_design_uv = -EINVAL;
578 info->precharge_current_ua = -EINVAL;
579 info->charge_term_current_ua = -EINVAL;
580 info->constant_charge_current_max_ua = -EINVAL;
581 info->constant_charge_voltage_max_uv = -EINVAL;
582 info->factory_internal_resistance_uohm = -EINVAL;
583 info->resist_table = NULL;
585 for (index = 0; index < POWER_SUPPLY_OCV_TEMP_MAX; index++) {
586 info->ocv_table[index] = NULL;
587 info->ocv_temp[index] = -EINVAL;
588 info->ocv_table_size[index] = -EINVAL;
591 if (!psy->of_node) {
592 dev_warn(&psy->dev, "%s currently only supports devicetree\n",
593 __func__);
594 return -ENXIO;
597 battery_np = of_parse_phandle(psy->of_node, "monitored-battery", 0);
598 if (!battery_np)
599 return -ENODEV;
601 err = of_property_read_string(battery_np, "compatible", &value);
602 if (err)
603 goto out_put_node;
605 if (strcmp("simple-battery", value)) {
606 err = -ENODEV;
607 goto out_put_node;
610 /* The property and field names below must correspond to elements
611 * in enum power_supply_property. For reasoning, see
612 * Documentation/power/power_supply_class.rst.
615 of_property_read_u32(battery_np, "energy-full-design-microwatt-hours",
616 &info->energy_full_design_uwh);
617 of_property_read_u32(battery_np, "charge-full-design-microamp-hours",
618 &info->charge_full_design_uah);
619 of_property_read_u32(battery_np, "voltage-min-design-microvolt",
620 &info->voltage_min_design_uv);
621 of_property_read_u32(battery_np, "voltage-max-design-microvolt",
622 &info->voltage_max_design_uv);
623 of_property_read_u32(battery_np, "precharge-current-microamp",
624 &info->precharge_current_ua);
625 of_property_read_u32(battery_np, "charge-term-current-microamp",
626 &info->charge_term_current_ua);
627 of_property_read_u32(battery_np, "constant-charge-current-max-microamp",
628 &info->constant_charge_current_max_ua);
629 of_property_read_u32(battery_np, "constant-charge-voltage-max-microvolt",
630 &info->constant_charge_voltage_max_uv);
631 of_property_read_u32(battery_np, "factory-internal-resistance-micro-ohms",
632 &info->factory_internal_resistance_uohm);
634 len = of_property_count_u32_elems(battery_np, "ocv-capacity-celsius");
635 if (len < 0 && len != -EINVAL) {
636 err = len;
637 goto out_put_node;
638 } else if (len > POWER_SUPPLY_OCV_TEMP_MAX) {
639 dev_err(&psy->dev, "Too many temperature values\n");
640 err = -EINVAL;
641 goto out_put_node;
642 } else if (len > 0) {
643 of_property_read_u32_array(battery_np, "ocv-capacity-celsius",
644 info->ocv_temp, len);
647 for (index = 0; index < len; index++) {
648 struct power_supply_battery_ocv_table *table;
649 char *propname;
650 int i, tab_len, size;
652 propname = kasprintf(GFP_KERNEL, "ocv-capacity-table-%d", index);
653 list = of_get_property(battery_np, propname, &size);
654 if (!list || !size) {
655 dev_err(&psy->dev, "failed to get %s\n", propname);
656 kfree(propname);
657 power_supply_put_battery_info(psy, info);
658 err = -EINVAL;
659 goto out_put_node;
662 kfree(propname);
663 tab_len = size / (2 * sizeof(__be32));
664 info->ocv_table_size[index] = tab_len;
666 table = info->ocv_table[index] =
667 devm_kcalloc(&psy->dev, tab_len, sizeof(*table), GFP_KERNEL);
668 if (!info->ocv_table[index]) {
669 power_supply_put_battery_info(psy, info);
670 err = -ENOMEM;
671 goto out_put_node;
674 for (i = 0; i < tab_len; i++) {
675 table[i].ocv = be32_to_cpu(*list);
676 list++;
677 table[i].capacity = be32_to_cpu(*list);
678 list++;
682 list = of_get_property(battery_np, "resistance-temp-table", &len);
683 if (!list || !len)
684 goto out_put_node;
686 info->resist_table_size = len / (2 * sizeof(__be32));
687 resist_table = info->resist_table = devm_kcalloc(&psy->dev,
688 info->resist_table_size,
689 sizeof(*resist_table),
690 GFP_KERNEL);
691 if (!info->resist_table) {
692 power_supply_put_battery_info(psy, info);
693 err = -ENOMEM;
694 goto out_put_node;
697 for (index = 0; index < info->resist_table_size; index++) {
698 resist_table[index].temp = be32_to_cpu(*list++);
699 resist_table[index].resistance = be32_to_cpu(*list++);
702 out_put_node:
703 of_node_put(battery_np);
704 return err;
706 EXPORT_SYMBOL_GPL(power_supply_get_battery_info);
708 void power_supply_put_battery_info(struct power_supply *psy,
709 struct power_supply_battery_info *info)
711 int i;
713 for (i = 0; i < POWER_SUPPLY_OCV_TEMP_MAX; i++) {
714 if (info->ocv_table[i])
715 devm_kfree(&psy->dev, info->ocv_table[i]);
718 if (info->resist_table)
719 devm_kfree(&psy->dev, info->resist_table);
721 EXPORT_SYMBOL_GPL(power_supply_put_battery_info);
724 * power_supply_temp2resist_simple() - find the battery internal resistance
725 * percent
726 * @table: Pointer to battery resistance temperature table
727 * @table_len: The table length
728 * @ocv: Current temperature
730 * This helper function is used to look up battery internal resistance percent
731 * according to current temperature value from the resistance temperature table,
732 * and the table must be ordered descending. Then the actual battery internal
733 * resistance = the ideal battery internal resistance * percent / 100.
735 * Return: the battery internal resistance percent
737 int power_supply_temp2resist_simple(struct power_supply_resistance_temp_table *table,
738 int table_len, int temp)
740 int i, resist;
742 for (i = 0; i < table_len; i++)
743 if (temp > table[i].temp)
744 break;
746 if (i > 0 && i < table_len) {
747 int tmp;
749 tmp = (table[i - 1].resistance - table[i].resistance) *
750 (temp - table[i].temp);
751 tmp /= table[i - 1].temp - table[i].temp;
752 resist = tmp + table[i].resistance;
753 } else if (i == 0) {
754 resist = table[0].resistance;
755 } else {
756 resist = table[table_len - 1].resistance;
759 return resist;
761 EXPORT_SYMBOL_GPL(power_supply_temp2resist_simple);
764 * power_supply_ocv2cap_simple() - find the battery capacity
765 * @table: Pointer to battery OCV lookup table
766 * @table_len: OCV table length
767 * @ocv: Current OCV value
769 * This helper function is used to look up battery capacity according to
770 * current OCV value from one OCV table, and the OCV table must be ordered
771 * descending.
773 * Return: the battery capacity.
775 int power_supply_ocv2cap_simple(struct power_supply_battery_ocv_table *table,
776 int table_len, int ocv)
778 int i, cap, tmp;
780 for (i = 0; i < table_len; i++)
781 if (ocv > table[i].ocv)
782 break;
784 if (i > 0 && i < table_len) {
785 tmp = (table[i - 1].capacity - table[i].capacity) *
786 (ocv - table[i].ocv);
787 tmp /= table[i - 1].ocv - table[i].ocv;
788 cap = tmp + table[i].capacity;
789 } else if (i == 0) {
790 cap = table[0].capacity;
791 } else {
792 cap = table[table_len - 1].capacity;
795 return cap;
797 EXPORT_SYMBOL_GPL(power_supply_ocv2cap_simple);
799 struct power_supply_battery_ocv_table *
800 power_supply_find_ocv2cap_table(struct power_supply_battery_info *info,
801 int temp, int *table_len)
803 int best_temp_diff = INT_MAX, temp_diff;
804 u8 i, best_index = 0;
806 if (!info->ocv_table[0])
807 return NULL;
809 for (i = 0; i < POWER_SUPPLY_OCV_TEMP_MAX; i++) {
810 temp_diff = abs(info->ocv_temp[i] - temp);
812 if (temp_diff < best_temp_diff) {
813 best_temp_diff = temp_diff;
814 best_index = i;
818 *table_len = info->ocv_table_size[best_index];
819 return info->ocv_table[best_index];
821 EXPORT_SYMBOL_GPL(power_supply_find_ocv2cap_table);
823 int power_supply_batinfo_ocv2cap(struct power_supply_battery_info *info,
824 int ocv, int temp)
826 struct power_supply_battery_ocv_table *table;
827 int table_len;
829 table = power_supply_find_ocv2cap_table(info, temp, &table_len);
830 if (!table)
831 return -EINVAL;
833 return power_supply_ocv2cap_simple(table, table_len, ocv);
835 EXPORT_SYMBOL_GPL(power_supply_batinfo_ocv2cap);
837 int power_supply_get_property(struct power_supply *psy,
838 enum power_supply_property psp,
839 union power_supply_propval *val)
841 if (atomic_read(&psy->use_cnt) <= 0) {
842 if (!psy->initialized)
843 return -EAGAIN;
844 return -ENODEV;
847 return psy->desc->get_property(psy, psp, val);
849 EXPORT_SYMBOL_GPL(power_supply_get_property);
851 int power_supply_set_property(struct power_supply *psy,
852 enum power_supply_property psp,
853 const union power_supply_propval *val)
855 if (atomic_read(&psy->use_cnt) <= 0 || !psy->desc->set_property)
856 return -ENODEV;
858 return psy->desc->set_property(psy, psp, val);
860 EXPORT_SYMBOL_GPL(power_supply_set_property);
862 int power_supply_property_is_writeable(struct power_supply *psy,
863 enum power_supply_property psp)
865 if (atomic_read(&psy->use_cnt) <= 0 ||
866 !psy->desc->property_is_writeable)
867 return -ENODEV;
869 return psy->desc->property_is_writeable(psy, psp);
871 EXPORT_SYMBOL_GPL(power_supply_property_is_writeable);
873 void power_supply_external_power_changed(struct power_supply *psy)
875 if (atomic_read(&psy->use_cnt) <= 0 ||
876 !psy->desc->external_power_changed)
877 return;
879 psy->desc->external_power_changed(psy);
881 EXPORT_SYMBOL_GPL(power_supply_external_power_changed);
883 int power_supply_powers(struct power_supply *psy, struct device *dev)
885 return sysfs_create_link(&psy->dev.kobj, &dev->kobj, "powers");
887 EXPORT_SYMBOL_GPL(power_supply_powers);
889 static void power_supply_dev_release(struct device *dev)
891 struct power_supply *psy = to_power_supply(dev);
892 dev_dbg(dev, "%s\n", __func__);
893 kfree(psy);
896 int power_supply_reg_notifier(struct notifier_block *nb)
898 return atomic_notifier_chain_register(&power_supply_notifier, nb);
900 EXPORT_SYMBOL_GPL(power_supply_reg_notifier);
902 void power_supply_unreg_notifier(struct notifier_block *nb)
904 atomic_notifier_chain_unregister(&power_supply_notifier, nb);
906 EXPORT_SYMBOL_GPL(power_supply_unreg_notifier);
908 #ifdef CONFIG_THERMAL
909 static int power_supply_read_temp(struct thermal_zone_device *tzd,
910 int *temp)
912 struct power_supply *psy;
913 union power_supply_propval val;
914 int ret;
916 WARN_ON(tzd == NULL);
917 psy = tzd->devdata;
918 ret = power_supply_get_property(psy, POWER_SUPPLY_PROP_TEMP, &val);
919 if (ret)
920 return ret;
922 /* Convert tenths of degree Celsius to milli degree Celsius. */
923 *temp = val.intval * 100;
925 return ret;
928 static struct thermal_zone_device_ops psy_tzd_ops = {
929 .get_temp = power_supply_read_temp,
932 static int psy_register_thermal(struct power_supply *psy)
934 int i;
936 if (psy->desc->no_thermal)
937 return 0;
939 /* Register battery zone device psy reports temperature */
940 for (i = 0; i < psy->desc->num_properties; i++) {
941 if (psy->desc->properties[i] == POWER_SUPPLY_PROP_TEMP) {
942 psy->tzd = thermal_zone_device_register(psy->desc->name,
943 0, 0, psy, &psy_tzd_ops, NULL, 0, 0);
944 return PTR_ERR_OR_ZERO(psy->tzd);
947 return 0;
950 static void psy_unregister_thermal(struct power_supply *psy)
952 if (IS_ERR_OR_NULL(psy->tzd))
953 return;
954 thermal_zone_device_unregister(psy->tzd);
957 /* thermal cooling device callbacks */
958 static int ps_get_max_charge_cntl_limit(struct thermal_cooling_device *tcd,
959 unsigned long *state)
961 struct power_supply *psy;
962 union power_supply_propval val;
963 int ret;
965 psy = tcd->devdata;
966 ret = power_supply_get_property(psy,
967 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX, &val);
968 if (ret)
969 return ret;
971 *state = val.intval;
973 return ret;
976 static int ps_get_cur_charge_cntl_limit(struct thermal_cooling_device *tcd,
977 unsigned long *state)
979 struct power_supply *psy;
980 union power_supply_propval val;
981 int ret;
983 psy = tcd->devdata;
984 ret = power_supply_get_property(psy,
985 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT, &val);
986 if (ret)
987 return ret;
989 *state = val.intval;
991 return ret;
994 static int ps_set_cur_charge_cntl_limit(struct thermal_cooling_device *tcd,
995 unsigned long state)
997 struct power_supply *psy;
998 union power_supply_propval val;
999 int ret;
1001 psy = tcd->devdata;
1002 val.intval = state;
1003 ret = psy->desc->set_property(psy,
1004 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT, &val);
1006 return ret;
1009 static const struct thermal_cooling_device_ops psy_tcd_ops = {
1010 .get_max_state = ps_get_max_charge_cntl_limit,
1011 .get_cur_state = ps_get_cur_charge_cntl_limit,
1012 .set_cur_state = ps_set_cur_charge_cntl_limit,
1015 static int psy_register_cooler(struct power_supply *psy)
1017 int i;
1019 /* Register for cooling device if psy can control charging */
1020 for (i = 0; i < psy->desc->num_properties; i++) {
1021 if (psy->desc->properties[i] ==
1022 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT) {
1023 psy->tcd = thermal_cooling_device_register(
1024 (char *)psy->desc->name,
1025 psy, &psy_tcd_ops);
1026 return PTR_ERR_OR_ZERO(psy->tcd);
1029 return 0;
1032 static void psy_unregister_cooler(struct power_supply *psy)
1034 if (IS_ERR_OR_NULL(psy->tcd))
1035 return;
1036 thermal_cooling_device_unregister(psy->tcd);
1038 #else
1039 static int psy_register_thermal(struct power_supply *psy)
1041 return 0;
1044 static void psy_unregister_thermal(struct power_supply *psy)
1048 static int psy_register_cooler(struct power_supply *psy)
1050 return 0;
1053 static void psy_unregister_cooler(struct power_supply *psy)
1056 #endif
1058 static struct power_supply *__must_check
1059 __power_supply_register(struct device *parent,
1060 const struct power_supply_desc *desc,
1061 const struct power_supply_config *cfg,
1062 bool ws)
1064 struct device *dev;
1065 struct power_supply *psy;
1066 int i, rc;
1068 if (!parent)
1069 pr_warn("%s: Expected proper parent device for '%s'\n",
1070 __func__, desc->name);
1072 if (!desc || !desc->name || !desc->properties || !desc->num_properties)
1073 return ERR_PTR(-EINVAL);
1075 for (i = 0; i < desc->num_properties; ++i) {
1076 if ((desc->properties[i] == POWER_SUPPLY_PROP_USB_TYPE) &&
1077 (!desc->usb_types || !desc->num_usb_types))
1078 return ERR_PTR(-EINVAL);
1081 psy = kzalloc(sizeof(*psy), GFP_KERNEL);
1082 if (!psy)
1083 return ERR_PTR(-ENOMEM);
1085 dev = &psy->dev;
1087 device_initialize(dev);
1089 dev->class = power_supply_class;
1090 dev->type = &power_supply_dev_type;
1091 dev->parent = parent;
1092 dev->release = power_supply_dev_release;
1093 dev_set_drvdata(dev, psy);
1094 psy->desc = desc;
1095 if (cfg) {
1096 dev->groups = cfg->attr_grp;
1097 psy->drv_data = cfg->drv_data;
1098 psy->of_node =
1099 cfg->fwnode ? to_of_node(cfg->fwnode) : cfg->of_node;
1100 psy->supplied_to = cfg->supplied_to;
1101 psy->num_supplicants = cfg->num_supplicants;
1104 rc = dev_set_name(dev, "%s", desc->name);
1105 if (rc)
1106 goto dev_set_name_failed;
1108 INIT_WORK(&psy->changed_work, power_supply_changed_work);
1109 INIT_DELAYED_WORK(&psy->deferred_register_work,
1110 power_supply_deferred_register_work);
1112 rc = power_supply_check_supplies(psy);
1113 if (rc) {
1114 dev_info(dev, "Not all required supplies found, defer probe\n");
1115 goto check_supplies_failed;
1118 spin_lock_init(&psy->changed_lock);
1119 rc = device_add(dev);
1120 if (rc)
1121 goto device_add_failed;
1123 rc = device_init_wakeup(dev, ws);
1124 if (rc)
1125 goto wakeup_init_failed;
1127 rc = psy_register_thermal(psy);
1128 if (rc)
1129 goto register_thermal_failed;
1131 rc = psy_register_cooler(psy);
1132 if (rc)
1133 goto register_cooler_failed;
1135 rc = power_supply_create_triggers(psy);
1136 if (rc)
1137 goto create_triggers_failed;
1139 rc = power_supply_add_hwmon_sysfs(psy);
1140 if (rc)
1141 goto add_hwmon_sysfs_failed;
1144 * Update use_cnt after any uevents (most notably from device_add()).
1145 * We are here still during driver's probe but
1146 * the power_supply_uevent() calls back driver's get_property
1147 * method so:
1148 * 1. Driver did not assigned the returned struct power_supply,
1149 * 2. Driver could not finish initialization (anything in its probe
1150 * after calling power_supply_register()).
1152 atomic_inc(&psy->use_cnt);
1153 psy->initialized = true;
1155 queue_delayed_work(system_power_efficient_wq,
1156 &psy->deferred_register_work,
1157 POWER_SUPPLY_DEFERRED_REGISTER_TIME);
1159 return psy;
1161 add_hwmon_sysfs_failed:
1162 power_supply_remove_triggers(psy);
1163 create_triggers_failed:
1164 psy_unregister_cooler(psy);
1165 register_cooler_failed:
1166 psy_unregister_thermal(psy);
1167 register_thermal_failed:
1168 device_del(dev);
1169 wakeup_init_failed:
1170 device_add_failed:
1171 check_supplies_failed:
1172 dev_set_name_failed:
1173 put_device(dev);
1174 return ERR_PTR(rc);
1178 * power_supply_register() - Register new power supply
1179 * @parent: Device to be a parent of power supply's device, usually
1180 * the device which probe function calls this
1181 * @desc: Description of power supply, must be valid through whole
1182 * lifetime of this power supply
1183 * @cfg: Run-time specific configuration accessed during registering,
1184 * may be NULL
1186 * Return: A pointer to newly allocated power_supply on success
1187 * or ERR_PTR otherwise.
1188 * Use power_supply_unregister() on returned power_supply pointer to release
1189 * resources.
1191 struct power_supply *__must_check power_supply_register(struct device *parent,
1192 const struct power_supply_desc *desc,
1193 const struct power_supply_config *cfg)
1195 return __power_supply_register(parent, desc, cfg, true);
1197 EXPORT_SYMBOL_GPL(power_supply_register);
1200 * power_supply_register_no_ws() - Register new non-waking-source power supply
1201 * @parent: Device to be a parent of power supply's device, usually
1202 * the device which probe function calls this
1203 * @desc: Description of power supply, must be valid through whole
1204 * lifetime of this power supply
1205 * @cfg: Run-time specific configuration accessed during registering,
1206 * may be NULL
1208 * Return: A pointer to newly allocated power_supply on success
1209 * or ERR_PTR otherwise.
1210 * Use power_supply_unregister() on returned power_supply pointer to release
1211 * resources.
1213 struct power_supply *__must_check
1214 power_supply_register_no_ws(struct device *parent,
1215 const struct power_supply_desc *desc,
1216 const struct power_supply_config *cfg)
1218 return __power_supply_register(parent, desc, cfg, false);
1220 EXPORT_SYMBOL_GPL(power_supply_register_no_ws);
1222 static void devm_power_supply_release(struct device *dev, void *res)
1224 struct power_supply **psy = res;
1226 power_supply_unregister(*psy);
1230 * devm_power_supply_register() - Register managed power supply
1231 * @parent: Device to be a parent of power supply's device, usually
1232 * the device which probe function calls this
1233 * @desc: Description of power supply, must be valid through whole
1234 * lifetime of this power supply
1235 * @cfg: Run-time specific configuration accessed during registering,
1236 * may be NULL
1238 * Return: A pointer to newly allocated power_supply on success
1239 * or ERR_PTR otherwise.
1240 * The returned power_supply pointer will be automatically unregistered
1241 * on driver detach.
1243 struct power_supply *__must_check
1244 devm_power_supply_register(struct device *parent,
1245 const struct power_supply_desc *desc,
1246 const struct power_supply_config *cfg)
1248 struct power_supply **ptr, *psy;
1250 ptr = devres_alloc(devm_power_supply_release, sizeof(*ptr), GFP_KERNEL);
1252 if (!ptr)
1253 return ERR_PTR(-ENOMEM);
1254 psy = __power_supply_register(parent, desc, cfg, true);
1255 if (IS_ERR(psy)) {
1256 devres_free(ptr);
1257 } else {
1258 *ptr = psy;
1259 devres_add(parent, ptr);
1261 return psy;
1263 EXPORT_SYMBOL_GPL(devm_power_supply_register);
1266 * devm_power_supply_register_no_ws() - Register managed non-waking-source power supply
1267 * @parent: Device to be a parent of power supply's device, usually
1268 * the device which probe function calls this
1269 * @desc: Description of power supply, must be valid through whole
1270 * lifetime of this power supply
1271 * @cfg: Run-time specific configuration accessed during registering,
1272 * may be NULL
1274 * Return: A pointer to newly allocated power_supply on success
1275 * or ERR_PTR otherwise.
1276 * The returned power_supply pointer will be automatically unregistered
1277 * on driver detach.
1279 struct power_supply *__must_check
1280 devm_power_supply_register_no_ws(struct device *parent,
1281 const struct power_supply_desc *desc,
1282 const struct power_supply_config *cfg)
1284 struct power_supply **ptr, *psy;
1286 ptr = devres_alloc(devm_power_supply_release, sizeof(*ptr), GFP_KERNEL);
1288 if (!ptr)
1289 return ERR_PTR(-ENOMEM);
1290 psy = __power_supply_register(parent, desc, cfg, false);
1291 if (IS_ERR(psy)) {
1292 devres_free(ptr);
1293 } else {
1294 *ptr = psy;
1295 devres_add(parent, ptr);
1297 return psy;
1299 EXPORT_SYMBOL_GPL(devm_power_supply_register_no_ws);
1302 * power_supply_unregister() - Remove this power supply from system
1303 * @psy: Pointer to power supply to unregister
1305 * Remove this power supply from the system. The resources of power supply
1306 * will be freed here or on last power_supply_put() call.
1308 void power_supply_unregister(struct power_supply *psy)
1310 WARN_ON(atomic_dec_return(&psy->use_cnt));
1311 psy->removing = true;
1312 cancel_work_sync(&psy->changed_work);
1313 cancel_delayed_work_sync(&psy->deferred_register_work);
1314 sysfs_remove_link(&psy->dev.kobj, "powers");
1315 power_supply_remove_hwmon_sysfs(psy);
1316 power_supply_remove_triggers(psy);
1317 psy_unregister_cooler(psy);
1318 psy_unregister_thermal(psy);
1319 device_init_wakeup(&psy->dev, false);
1320 device_unregister(&psy->dev);
1322 EXPORT_SYMBOL_GPL(power_supply_unregister);
1324 void *power_supply_get_drvdata(struct power_supply *psy)
1326 return psy->drv_data;
1328 EXPORT_SYMBOL_GPL(power_supply_get_drvdata);
1330 static int __init power_supply_class_init(void)
1332 power_supply_class = class_create(THIS_MODULE, "power_supply");
1334 if (IS_ERR(power_supply_class))
1335 return PTR_ERR(power_supply_class);
1337 power_supply_class->dev_uevent = power_supply_uevent;
1338 power_supply_init_attrs(&power_supply_dev_type);
1340 return 0;
1343 static void __exit power_supply_class_exit(void)
1345 class_destroy(power_supply_class);
1348 subsys_initcall(power_supply_class_init);
1349 module_exit(power_supply_class_exit);
1351 MODULE_DESCRIPTION("Universal power supply monitor class");
1352 MODULE_AUTHOR("Ian Molton <spyro@f2s.com>, "
1353 "Szabolcs Gyurko, "
1354 "Anton Vorontsov <cbou@mail.ru>");
1355 MODULE_LICENSE("GPL");