1 // SPDX-License-Identifier: GPL-2.0-only
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>
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
)
42 if (!supply
->supplied_from
&& !supplier
->supplied_to
)
45 /* Support both supplied_to and supplied_from modes */
46 if (supply
->supplied_from
) {
47 if (!supplier
->desc
->name
)
49 for (i
= 0; i
< supply
->num_supplies
; i
++)
50 if (!strcmp(supplier
->desc
->name
, supply
->supplied_from
[i
]))
53 if (!supply
->desc
->name
)
55 for (i
= 0; i
< supplier
->num_supplicants
; i
++)
56 if (!strcmp(supplier
->supplied_to
[i
], supply
->desc
->name
))
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
);
76 static void power_supply_changed_work(struct work_struct
*work
)
79 struct power_supply
*psy
= container_of(work
, struct power_supply
,
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
)) {
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'
109 if (likely(!psy
->changed
))
111 spin_unlock_irqrestore(&psy
->changed_lock
, flags
);
114 void power_supply_changed(struct power_supply
*psy
)
118 dev_dbg(&psy
->dev
, "%s\n", __func__
);
120 spin_lock_irqsave(&psy
->changed_lock
, flags
);
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
)) {
151 power_supply_changed(psy
);
154 mutex_unlock(&psy
->dev
.parent
->mutex
);
158 static int __power_supply_populate_supplied_from(struct device
*dev
,
161 struct power_supply
*psy
= data
;
162 struct power_supply
*epsy
= dev_get_drvdata(dev
);
163 struct device_node
*np
;
167 np
= of_parse_phandle(psy
->of_node
, "power-supplies", i
++);
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
;
185 static int power_supply_populate_supplied_from(struct power_supply
*psy
)
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
);
197 static int __power_supply_find_supply_from_node(struct device
*dev
,
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
)
210 static int power_supply_find_supply_from_node(struct device_node
*supply_node
)
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)
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
;
235 /* If there is already a list honor it */
236 if (psy
->supplied_from
&& psy
->num_supplies
> 0)
239 /* No device node found, nothing to do */
246 np
= of_parse_phandle(psy
->of_node
, "power-supplies", cnt
++);
250 ret
= power_supply_find_supply_from_node(np
);
254 dev_dbg(&psy
->dev
, "Failed to find supply!\n");
259 /* Missing valid "power-supplies" entries */
263 /* All supplies found, allocate char ** array for filling */
264 psy
->supplied_from
= devm_kzalloc(&psy
->dev
, sizeof(psy
->supplied_from
),
266 if (!psy
->supplied_from
)
269 *psy
->supplied_from
= devm_kcalloc(&psy
->dev
,
270 cnt
- 1, sizeof(char *),
272 if (!*psy
->supplied_from
)
275 return power_supply_populate_supplied_from(psy
);
278 static int power_supply_check_supplies(struct power_supply
*psy
)
282 if (!psy
->dev
.parent
)
285 nval
= device_property_read_string_array(psy
->dev
.parent
,
286 "supplied-from", NULL
, 0);
290 psy
->supplied_from
= devm_kmalloc_array(&psy
->dev
, nval
,
291 sizeof(char *), GFP_KERNEL
);
292 if (!psy
->supplied_from
)
295 ret
= device_property_read_string_array(psy
->dev
.parent
,
296 "supplied-from", (const char **)psy
->supplied_from
, nval
);
300 psy
->num_supplies
= nval
;
306 struct psy_am_i_supplied_data
{
307 struct power_supply
*psy
;
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
)) {
319 if (!epsy
->desc
->get_property(epsy
, POWER_SUPPLY_PROP_ONLINE
,
327 int power_supply_am_i_supplied(struct power_supply
*psy
)
329 struct psy_am_i_supplied_data data
= { psy
, 0 };
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
);
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
;
351 if (psy
->desc
->type
!= POWER_SUPPLY_TYPE_BATTERY
)
352 if (!psy
->desc
->get_property(psy
, POWER_SUPPLY_PROP_ONLINE
,
359 int power_supply_is_system_supplied(void)
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.
376 EXPORT_SYMBOL_GPL(power_supply_is_system_supplied
);
378 static int __power_supply_get_supplier_max_current(struct device
*dev
,
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
,
394 int power_supply_set_input_current_limit_from_supplier(struct power_supply
*psy
)
396 union power_supply_propval val
= {0,};
399 if (!psy
->desc
->set_property
)
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
407 curr
= class_for_each_device(power_supply_class
, NULL
, psy
,
408 __power_supply_get_supplier_max_current
);
410 return (curr
== 0) ? -ENODEV
: 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
);
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()
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
);
458 psy
= dev_get_drvdata(dev
);
459 atomic_inc(&psy
->use_cnt
);
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
473 void power_supply_put(struct power_supply
*psy
)
477 atomic_dec(&psy
->use_cnt
);
478 put_device(&psy
->dev
);
480 EXPORT_SYMBOL_GPL(power_supply_put
);
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()
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
;
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
);
517 psy
= dev_get_drvdata(dev
);
518 atomic_inc(&psy
->use_cnt
);
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
;
547 return ERR_PTR(-ENODEV
);
549 ptr
= devres_alloc(devm_power_supply_put
, sizeof(*ptr
), GFP_KERNEL
);
551 return ERR_PTR(-ENOMEM
);
553 psy
= power_supply_get_by_phandle(dev
->of_node
, property
);
554 if (IS_ERR_OR_NULL(psy
)) {
558 devres_add(dev
, ptr
);
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 device_node
*battery_np
;
572 info
->energy_full_design_uwh
= -EINVAL
;
573 info
->charge_full_design_uah
= -EINVAL
;
574 info
->voltage_min_design_uv
= -EINVAL
;
575 info
->voltage_max_design_uv
= -EINVAL
;
576 info
->precharge_current_ua
= -EINVAL
;
577 info
->charge_term_current_ua
= -EINVAL
;
578 info
->constant_charge_current_max_ua
= -EINVAL
;
579 info
->constant_charge_voltage_max_uv
= -EINVAL
;
580 info
->factory_internal_resistance_uohm
= -EINVAL
;
582 for (index
= 0; index
< POWER_SUPPLY_OCV_TEMP_MAX
; index
++) {
583 info
->ocv_table
[index
] = NULL
;
584 info
->ocv_temp
[index
] = -EINVAL
;
585 info
->ocv_table_size
[index
] = -EINVAL
;
589 dev_warn(&psy
->dev
, "%s currently only supports devicetree\n",
594 battery_np
= of_parse_phandle(psy
->of_node
, "monitored-battery", 0);
598 err
= of_property_read_string(battery_np
, "compatible", &value
);
602 if (strcmp("simple-battery", value
)) {
607 /* The property and field names below must correspond to elements
608 * in enum power_supply_property. For reasoning, see
609 * Documentation/power/power_supply_class.rst.
612 of_property_read_u32(battery_np
, "energy-full-design-microwatt-hours",
613 &info
->energy_full_design_uwh
);
614 of_property_read_u32(battery_np
, "charge-full-design-microamp-hours",
615 &info
->charge_full_design_uah
);
616 of_property_read_u32(battery_np
, "voltage-min-design-microvolt",
617 &info
->voltage_min_design_uv
);
618 of_property_read_u32(battery_np
, "voltage-max-design-microvolt",
619 &info
->voltage_max_design_uv
);
620 of_property_read_u32(battery_np
, "precharge-current-microamp",
621 &info
->precharge_current_ua
);
622 of_property_read_u32(battery_np
, "charge-term-current-microamp",
623 &info
->charge_term_current_ua
);
624 of_property_read_u32(battery_np
, "constant-charge-current-max-microamp",
625 &info
->constant_charge_current_max_ua
);
626 of_property_read_u32(battery_np
, "constant-charge-voltage-max-microvolt",
627 &info
->constant_charge_voltage_max_uv
);
628 of_property_read_u32(battery_np
, "factory-internal-resistance-micro-ohms",
629 &info
->factory_internal_resistance_uohm
);
631 len
= of_property_count_u32_elems(battery_np
, "ocv-capacity-celsius");
632 if (len
< 0 && len
!= -EINVAL
) {
635 } else if (len
> POWER_SUPPLY_OCV_TEMP_MAX
) {
636 dev_err(&psy
->dev
, "Too many temperature values\n");
639 } else if (len
> 0) {
640 of_property_read_u32_array(battery_np
, "ocv-capacity-celsius",
641 info
->ocv_temp
, len
);
644 for (index
= 0; index
< len
; index
++) {
645 struct power_supply_battery_ocv_table
*table
;
648 int i
, tab_len
, size
;
650 propname
= kasprintf(GFP_KERNEL
, "ocv-capacity-table-%d", index
);
651 list
= of_get_property(battery_np
, propname
, &size
);
652 if (!list
|| !size
) {
653 dev_err(&psy
->dev
, "failed to get %s\n", propname
);
655 power_supply_put_battery_info(psy
, info
);
661 tab_len
= size
/ (2 * sizeof(__be32
));
662 info
->ocv_table_size
[index
] = tab_len
;
664 table
= info
->ocv_table
[index
] =
665 devm_kcalloc(&psy
->dev
, tab_len
, sizeof(*table
), GFP_KERNEL
);
666 if (!info
->ocv_table
[index
]) {
667 power_supply_put_battery_info(psy
, info
);
672 for (i
= 0; i
< tab_len
; i
++) {
673 table
[i
].ocv
= be32_to_cpu(*list
);
675 table
[i
].capacity
= be32_to_cpu(*list
);
681 of_node_put(battery_np
);
684 EXPORT_SYMBOL_GPL(power_supply_get_battery_info
);
686 void power_supply_put_battery_info(struct power_supply
*psy
,
687 struct power_supply_battery_info
*info
)
691 for (i
= 0; i
< POWER_SUPPLY_OCV_TEMP_MAX
; i
++) {
692 if (info
->ocv_table
[i
])
693 devm_kfree(&psy
->dev
, info
->ocv_table
[i
]);
696 EXPORT_SYMBOL_GPL(power_supply_put_battery_info
);
699 * power_supply_ocv2cap_simple() - find the battery capacity
700 * @table: Pointer to battery OCV lookup table
701 * @table_len: OCV table length
702 * @ocv: Current OCV value
704 * This helper function is used to look up battery capacity according to
705 * current OCV value from one OCV table, and the OCV table must be ordered
708 * Return: the battery capacity.
710 int power_supply_ocv2cap_simple(struct power_supply_battery_ocv_table
*table
,
711 int table_len
, int ocv
)
715 for (i
= 0; i
< table_len
; i
++)
716 if (ocv
> table
[i
].ocv
)
719 if (i
> 0 && i
< table_len
) {
720 tmp
= (table
[i
- 1].capacity
- table
[i
].capacity
) *
721 (ocv
- table
[i
].ocv
);
722 tmp
/= table
[i
- 1].ocv
- table
[i
].ocv
;
723 cap
= tmp
+ table
[i
].capacity
;
725 cap
= table
[0].capacity
;
727 cap
= table
[table_len
- 1].capacity
;
732 EXPORT_SYMBOL_GPL(power_supply_ocv2cap_simple
);
734 struct power_supply_battery_ocv_table
*
735 power_supply_find_ocv2cap_table(struct power_supply_battery_info
*info
,
736 int temp
, int *table_len
)
738 int best_temp_diff
= INT_MAX
, temp_diff
;
739 u8 i
, best_index
= 0;
741 if (!info
->ocv_table
[0])
744 for (i
= 0; i
< POWER_SUPPLY_OCV_TEMP_MAX
; i
++) {
745 temp_diff
= abs(info
->ocv_temp
[i
] - temp
);
747 if (temp_diff
< best_temp_diff
) {
748 best_temp_diff
= temp_diff
;
753 *table_len
= info
->ocv_table_size
[best_index
];
754 return info
->ocv_table
[best_index
];
756 EXPORT_SYMBOL_GPL(power_supply_find_ocv2cap_table
);
758 int power_supply_batinfo_ocv2cap(struct power_supply_battery_info
*info
,
761 struct power_supply_battery_ocv_table
*table
;
764 table
= power_supply_find_ocv2cap_table(info
, temp
, &table_len
);
768 return power_supply_ocv2cap_simple(table
, table_len
, ocv
);
770 EXPORT_SYMBOL_GPL(power_supply_batinfo_ocv2cap
);
772 int power_supply_get_property(struct power_supply
*psy
,
773 enum power_supply_property psp
,
774 union power_supply_propval
*val
)
776 if (atomic_read(&psy
->use_cnt
) <= 0) {
777 if (!psy
->initialized
)
782 return psy
->desc
->get_property(psy
, psp
, val
);
784 EXPORT_SYMBOL_GPL(power_supply_get_property
);
786 int power_supply_set_property(struct power_supply
*psy
,
787 enum power_supply_property psp
,
788 const union power_supply_propval
*val
)
790 if (atomic_read(&psy
->use_cnt
) <= 0 || !psy
->desc
->set_property
)
793 return psy
->desc
->set_property(psy
, psp
, val
);
795 EXPORT_SYMBOL_GPL(power_supply_set_property
);
797 int power_supply_property_is_writeable(struct power_supply
*psy
,
798 enum power_supply_property psp
)
800 if (atomic_read(&psy
->use_cnt
) <= 0 ||
801 !psy
->desc
->property_is_writeable
)
804 return psy
->desc
->property_is_writeable(psy
, psp
);
806 EXPORT_SYMBOL_GPL(power_supply_property_is_writeable
);
808 void power_supply_external_power_changed(struct power_supply
*psy
)
810 if (atomic_read(&psy
->use_cnt
) <= 0 ||
811 !psy
->desc
->external_power_changed
)
814 psy
->desc
->external_power_changed(psy
);
816 EXPORT_SYMBOL_GPL(power_supply_external_power_changed
);
818 int power_supply_powers(struct power_supply
*psy
, struct device
*dev
)
820 return sysfs_create_link(&psy
->dev
.kobj
, &dev
->kobj
, "powers");
822 EXPORT_SYMBOL_GPL(power_supply_powers
);
824 static void power_supply_dev_release(struct device
*dev
)
826 struct power_supply
*psy
= to_power_supply(dev
);
827 dev_dbg(dev
, "%s\n", __func__
);
831 int power_supply_reg_notifier(struct notifier_block
*nb
)
833 return atomic_notifier_chain_register(&power_supply_notifier
, nb
);
835 EXPORT_SYMBOL_GPL(power_supply_reg_notifier
);
837 void power_supply_unreg_notifier(struct notifier_block
*nb
)
839 atomic_notifier_chain_unregister(&power_supply_notifier
, nb
);
841 EXPORT_SYMBOL_GPL(power_supply_unreg_notifier
);
843 #ifdef CONFIG_THERMAL
844 static int power_supply_read_temp(struct thermal_zone_device
*tzd
,
847 struct power_supply
*psy
;
848 union power_supply_propval val
;
851 WARN_ON(tzd
== NULL
);
853 ret
= power_supply_get_property(psy
, POWER_SUPPLY_PROP_TEMP
, &val
);
857 /* Convert tenths of degree Celsius to milli degree Celsius. */
858 *temp
= val
.intval
* 100;
863 static struct thermal_zone_device_ops psy_tzd_ops
= {
864 .get_temp
= power_supply_read_temp
,
867 static int psy_register_thermal(struct power_supply
*psy
)
871 if (psy
->desc
->no_thermal
)
874 /* Register battery zone device psy reports temperature */
875 for (i
= 0; i
< psy
->desc
->num_properties
; i
++) {
876 if (psy
->desc
->properties
[i
] == POWER_SUPPLY_PROP_TEMP
) {
877 psy
->tzd
= thermal_zone_device_register(psy
->desc
->name
,
878 0, 0, psy
, &psy_tzd_ops
, NULL
, 0, 0);
879 return PTR_ERR_OR_ZERO(psy
->tzd
);
885 static void psy_unregister_thermal(struct power_supply
*psy
)
887 if (IS_ERR_OR_NULL(psy
->tzd
))
889 thermal_zone_device_unregister(psy
->tzd
);
892 /* thermal cooling device callbacks */
893 static int ps_get_max_charge_cntl_limit(struct thermal_cooling_device
*tcd
,
894 unsigned long *state
)
896 struct power_supply
*psy
;
897 union power_supply_propval val
;
901 ret
= power_supply_get_property(psy
,
902 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX
, &val
);
911 static int ps_get_cur_charge_cntl_limit(struct thermal_cooling_device
*tcd
,
912 unsigned long *state
)
914 struct power_supply
*psy
;
915 union power_supply_propval val
;
919 ret
= power_supply_get_property(psy
,
920 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT
, &val
);
929 static int ps_set_cur_charge_cntl_limit(struct thermal_cooling_device
*tcd
,
932 struct power_supply
*psy
;
933 union power_supply_propval val
;
938 ret
= psy
->desc
->set_property(psy
,
939 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT
, &val
);
944 static const struct thermal_cooling_device_ops psy_tcd_ops
= {
945 .get_max_state
= ps_get_max_charge_cntl_limit
,
946 .get_cur_state
= ps_get_cur_charge_cntl_limit
,
947 .set_cur_state
= ps_set_cur_charge_cntl_limit
,
950 static int psy_register_cooler(struct power_supply
*psy
)
954 /* Register for cooling device if psy can control charging */
955 for (i
= 0; i
< psy
->desc
->num_properties
; i
++) {
956 if (psy
->desc
->properties
[i
] ==
957 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT
) {
958 psy
->tcd
= thermal_cooling_device_register(
959 (char *)psy
->desc
->name
,
961 return PTR_ERR_OR_ZERO(psy
->tcd
);
967 static void psy_unregister_cooler(struct power_supply
*psy
)
969 if (IS_ERR_OR_NULL(psy
->tcd
))
971 thermal_cooling_device_unregister(psy
->tcd
);
974 static int psy_register_thermal(struct power_supply
*psy
)
979 static void psy_unregister_thermal(struct power_supply
*psy
)
983 static int psy_register_cooler(struct power_supply
*psy
)
988 static void psy_unregister_cooler(struct power_supply
*psy
)
993 static struct power_supply
*__must_check
994 __power_supply_register(struct device
*parent
,
995 const struct power_supply_desc
*desc
,
996 const struct power_supply_config
*cfg
,
1000 struct power_supply
*psy
;
1004 pr_warn("%s: Expected proper parent device for '%s'\n",
1005 __func__
, desc
->name
);
1007 if (!desc
|| !desc
->name
|| !desc
->properties
|| !desc
->num_properties
)
1008 return ERR_PTR(-EINVAL
);
1010 for (i
= 0; i
< desc
->num_properties
; ++i
) {
1011 if ((desc
->properties
[i
] == POWER_SUPPLY_PROP_USB_TYPE
) &&
1012 (!desc
->usb_types
|| !desc
->num_usb_types
))
1013 return ERR_PTR(-EINVAL
);
1016 psy
= kzalloc(sizeof(*psy
), GFP_KERNEL
);
1018 return ERR_PTR(-ENOMEM
);
1022 device_initialize(dev
);
1024 dev
->class = power_supply_class
;
1025 dev
->type
= &power_supply_dev_type
;
1026 dev
->parent
= parent
;
1027 dev
->release
= power_supply_dev_release
;
1028 dev_set_drvdata(dev
, psy
);
1031 dev
->groups
= cfg
->attr_grp
;
1032 psy
->drv_data
= cfg
->drv_data
;
1034 cfg
->fwnode
? to_of_node(cfg
->fwnode
) : cfg
->of_node
;
1035 psy
->supplied_to
= cfg
->supplied_to
;
1036 psy
->num_supplicants
= cfg
->num_supplicants
;
1039 rc
= dev_set_name(dev
, "%s", desc
->name
);
1041 goto dev_set_name_failed
;
1043 INIT_WORK(&psy
->changed_work
, power_supply_changed_work
);
1044 INIT_DELAYED_WORK(&psy
->deferred_register_work
,
1045 power_supply_deferred_register_work
);
1047 rc
= power_supply_check_supplies(psy
);
1049 dev_info(dev
, "Not all required supplies found, defer probe\n");
1050 goto check_supplies_failed
;
1053 spin_lock_init(&psy
->changed_lock
);
1054 rc
= device_add(dev
);
1056 goto device_add_failed
;
1058 rc
= device_init_wakeup(dev
, ws
);
1060 goto wakeup_init_failed
;
1062 rc
= psy_register_thermal(psy
);
1064 goto register_thermal_failed
;
1066 rc
= psy_register_cooler(psy
);
1068 goto register_cooler_failed
;
1070 rc
= power_supply_create_triggers(psy
);
1072 goto create_triggers_failed
;
1074 rc
= power_supply_add_hwmon_sysfs(psy
);
1076 goto add_hwmon_sysfs_failed
;
1079 * Update use_cnt after any uevents (most notably from device_add()).
1080 * We are here still during driver's probe but
1081 * the power_supply_uevent() calls back driver's get_property
1083 * 1. Driver did not assigned the returned struct power_supply,
1084 * 2. Driver could not finish initialization (anything in its probe
1085 * after calling power_supply_register()).
1087 atomic_inc(&psy
->use_cnt
);
1088 psy
->initialized
= true;
1090 queue_delayed_work(system_power_efficient_wq
,
1091 &psy
->deferred_register_work
,
1092 POWER_SUPPLY_DEFERRED_REGISTER_TIME
);
1096 add_hwmon_sysfs_failed
:
1097 power_supply_remove_triggers(psy
);
1098 create_triggers_failed
:
1099 psy_unregister_cooler(psy
);
1100 register_cooler_failed
:
1101 psy_unregister_thermal(psy
);
1102 register_thermal_failed
:
1106 check_supplies_failed
:
1107 dev_set_name_failed
:
1113 * power_supply_register() - Register new power supply
1114 * @parent: Device to be a parent of power supply's device, usually
1115 * the device which probe function calls this
1116 * @desc: Description of power supply, must be valid through whole
1117 * lifetime of this power supply
1118 * @cfg: Run-time specific configuration accessed during registering,
1121 * Return: A pointer to newly allocated power_supply on success
1122 * or ERR_PTR otherwise.
1123 * Use power_supply_unregister() on returned power_supply pointer to release
1126 struct power_supply
*__must_check
power_supply_register(struct device
*parent
,
1127 const struct power_supply_desc
*desc
,
1128 const struct power_supply_config
*cfg
)
1130 return __power_supply_register(parent
, desc
, cfg
, true);
1132 EXPORT_SYMBOL_GPL(power_supply_register
);
1135 * power_supply_register_no_ws() - Register new non-waking-source power supply
1136 * @parent: Device to be a parent of power supply's device, usually
1137 * the device which probe function calls this
1138 * @desc: Description of power supply, must be valid through whole
1139 * lifetime of this power supply
1140 * @cfg: Run-time specific configuration accessed during registering,
1143 * Return: A pointer to newly allocated power_supply on success
1144 * or ERR_PTR otherwise.
1145 * Use power_supply_unregister() on returned power_supply pointer to release
1148 struct power_supply
*__must_check
1149 power_supply_register_no_ws(struct device
*parent
,
1150 const struct power_supply_desc
*desc
,
1151 const struct power_supply_config
*cfg
)
1153 return __power_supply_register(parent
, desc
, cfg
, false);
1155 EXPORT_SYMBOL_GPL(power_supply_register_no_ws
);
1157 static void devm_power_supply_release(struct device
*dev
, void *res
)
1159 struct power_supply
**psy
= res
;
1161 power_supply_unregister(*psy
);
1165 * devm_power_supply_register() - Register managed power supply
1166 * @parent: Device to be a parent of power supply's device, usually
1167 * the device which probe function calls this
1168 * @desc: Description of power supply, must be valid through whole
1169 * lifetime of this power supply
1170 * @cfg: Run-time specific configuration accessed during registering,
1173 * Return: A pointer to newly allocated power_supply on success
1174 * or ERR_PTR otherwise.
1175 * The returned power_supply pointer will be automatically unregistered
1178 struct power_supply
*__must_check
1179 devm_power_supply_register(struct device
*parent
,
1180 const struct power_supply_desc
*desc
,
1181 const struct power_supply_config
*cfg
)
1183 struct power_supply
**ptr
, *psy
;
1185 ptr
= devres_alloc(devm_power_supply_release
, sizeof(*ptr
), GFP_KERNEL
);
1188 return ERR_PTR(-ENOMEM
);
1189 psy
= __power_supply_register(parent
, desc
, cfg
, true);
1194 devres_add(parent
, ptr
);
1198 EXPORT_SYMBOL_GPL(devm_power_supply_register
);
1201 * devm_power_supply_register_no_ws() - Register managed non-waking-source power supply
1202 * @parent: Device to be a parent of power supply's device, usually
1203 * the device which probe function calls this
1204 * @desc: Description of power supply, must be valid through whole
1205 * lifetime of this power supply
1206 * @cfg: Run-time specific configuration accessed during registering,
1209 * Return: A pointer to newly allocated power_supply on success
1210 * or ERR_PTR otherwise.
1211 * The returned power_supply pointer will be automatically unregistered
1214 struct power_supply
*__must_check
1215 devm_power_supply_register_no_ws(struct device
*parent
,
1216 const struct power_supply_desc
*desc
,
1217 const struct power_supply_config
*cfg
)
1219 struct power_supply
**ptr
, *psy
;
1221 ptr
= devres_alloc(devm_power_supply_release
, sizeof(*ptr
), GFP_KERNEL
);
1224 return ERR_PTR(-ENOMEM
);
1225 psy
= __power_supply_register(parent
, desc
, cfg
, false);
1230 devres_add(parent
, ptr
);
1234 EXPORT_SYMBOL_GPL(devm_power_supply_register_no_ws
);
1237 * power_supply_unregister() - Remove this power supply from system
1238 * @psy: Pointer to power supply to unregister
1240 * Remove this power supply from the system. The resources of power supply
1241 * will be freed here or on last power_supply_put() call.
1243 void power_supply_unregister(struct power_supply
*psy
)
1245 WARN_ON(atomic_dec_return(&psy
->use_cnt
));
1246 psy
->removing
= true;
1247 cancel_work_sync(&psy
->changed_work
);
1248 cancel_delayed_work_sync(&psy
->deferred_register_work
);
1249 sysfs_remove_link(&psy
->dev
.kobj
, "powers");
1250 power_supply_remove_hwmon_sysfs(psy
);
1251 power_supply_remove_triggers(psy
);
1252 psy_unregister_cooler(psy
);
1253 psy_unregister_thermal(psy
);
1254 device_init_wakeup(&psy
->dev
, false);
1255 device_unregister(&psy
->dev
);
1257 EXPORT_SYMBOL_GPL(power_supply_unregister
);
1259 void *power_supply_get_drvdata(struct power_supply
*psy
)
1261 return psy
->drv_data
;
1263 EXPORT_SYMBOL_GPL(power_supply_get_drvdata
);
1265 static int __init
power_supply_class_init(void)
1267 power_supply_class
= class_create(THIS_MODULE
, "power_supply");
1269 if (IS_ERR(power_supply_class
))
1270 return PTR_ERR(power_supply_class
);
1272 power_supply_class
->dev_uevent
= power_supply_uevent
;
1273 power_supply_init_attrs(&power_supply_dev_type
);
1278 static void __exit
power_supply_class_exit(void)
1280 class_destroy(power_supply_class
);
1283 subsys_initcall(power_supply_class_init
);
1284 module_exit(power_supply_class_exit
);
1286 MODULE_DESCRIPTION("Universal power supply monitor class");
1287 MODULE_AUTHOR("Ian Molton <spyro@f2s.com>, "
1289 "Anton Vorontsov <cbou@mail.ru>");
1290 MODULE_LICENSE("GPL");