blob: 6cb7fe5c022d48ca237e31eb89e78f8f70665776 [file] [log] [blame]
Anton Vorontsov4a11b592007-05-04 00:27:45 +04001/*
2 * Universal power supply monitor class
3 *
4 * Copyright © 2007 Anton Vorontsov <cbou@mail.ru>
5 * Copyright © 2004 Szabolcs Gyurko
6 * Copyright © 2003 Ian Molton <spyro@f2s.com>
7 *
8 * Modified: 2004, Oct Szabolcs Gyurko
9 *
10 * You may use this code as per GPL version 2
11 */
12
13#include <linux/module.h>
14#include <linux/types.h>
15#include <linux/init.h>
Anton Vorontsov5f487cd2010-05-18 21:49:51 +020016#include <linux/slab.h>
Anton Vorontsov4a11b592007-05-04 00:27:45 +040017#include <linux/device.h>
Pali Rohárd36240d2013-11-19 11:18:03 +010018#include <linux/notifier.h>
Anton Vorontsov4a11b592007-05-04 00:27:45 +040019#include <linux/err.h>
20#include <linux/power_supply.h>
Jenny TC3be330b2012-05-09 20:36:47 +053021#include <linux/thermal.h>
Anton Vorontsov4a11b592007-05-04 00:27:45 +040022#include "power_supply.h"
23
Daniel Mackff3417e2009-07-30 17:42:31 +040024/* exported for the APM Power driver, APM emulation */
Anton Vorontsov4a11b592007-05-04 00:27:45 +040025struct class *power_supply_class;
Daniel Mackff3417e2009-07-30 17:42:31 +040026EXPORT_SYMBOL_GPL(power_supply_class);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040027
Pali Rohárd36240d2013-11-19 11:18:03 +010028ATOMIC_NOTIFIER_HEAD(power_supply_notifier);
29EXPORT_SYMBOL_GPL(power_supply_notifier);
30
Anton Vorontsov5f487cd2010-05-18 21:49:51 +020031static struct device_type power_supply_dev_type;
32
Rhyland Klein5e0848c2013-04-01 17:45:54 -040033static bool __power_supply_is_supplied_by(struct power_supply *supplier,
34 struct power_supply *supply)
35{
36 int i;
37
38 if (!supply->supplied_from && !supplier->supplied_to)
39 return false;
40
41 /* Support both supplied_to and supplied_from modes */
42 if (supply->supplied_from) {
43 if (!supplier->name)
44 return false;
45 for (i = 0; i < supply->num_supplies; i++)
46 if (!strcmp(supplier->name, supply->supplied_from[i]))
47 return true;
48 } else {
49 if (!supply->name)
50 return false;
51 for (i = 0; i < supplier->num_supplicants; i++)
52 if (!strcmp(supplier->supplied_to[i], supply->name))
53 return true;
54 }
55
56 return false;
57}
58
Dave Young443cad92008-01-22 13:58:22 +080059static int __power_supply_changed_work(struct device *dev, void *data)
60{
Viresh Kumare80cf422014-09-04 17:31:26 +053061 struct power_supply *psy = data;
Dave Young443cad92008-01-22 13:58:22 +080062 struct power_supply *pst = dev_get_drvdata(dev);
Dave Young443cad92008-01-22 13:58:22 +080063
Rhyland Klein5e0848c2013-04-01 17:45:54 -040064 if (__power_supply_is_supplied_by(psy, pst)) {
65 if (pst->external_power_changed)
66 pst->external_power_changed(pst);
67 }
68
Dave Young443cad92008-01-22 13:58:22 +080069 return 0;
70}
71
Anton Vorontsov4a11b592007-05-04 00:27:45 +040072static void power_supply_changed_work(struct work_struct *work)
73{
Zoran Markovic948dcf92013-08-02 13:38:02 -070074 unsigned long flags;
Anton Vorontsov4a11b592007-05-04 00:27:45 +040075 struct power_supply *psy = container_of(work, struct power_supply,
76 changed_work);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040077
Harvey Harrison0cddc0a2008-04-29 00:58:29 -070078 dev_dbg(psy->dev, "%s\n", __func__);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040079
Zoran Markovic948dcf92013-08-02 13:38:02 -070080 spin_lock_irqsave(&psy->changed_lock, flags);
Viresh Kumar061f3802014-09-04 17:31:32 +053081 /*
82 * Check 'changed' here to avoid issues due to race between
83 * power_supply_changed() and this routine. In worst case
84 * power_supply_changed() can be called again just before we take above
85 * lock. During the first call of this routine we will mark 'changed' as
86 * false and it will stay false for the next call as well.
87 */
88 if (likely(psy->changed)) {
Zoran Markovic948dcf92013-08-02 13:38:02 -070089 psy->changed = false;
90 spin_unlock_irqrestore(&psy->changed_lock, flags);
91 class_for_each_device(power_supply_class, NULL, psy,
92 __power_supply_changed_work);
93 power_supply_update_leds(psy);
Pali Rohárd36240d2013-11-19 11:18:03 +010094 atomic_notifier_call_chain(&power_supply_notifier,
95 PSY_EVENT_PROP_CHANGED, psy);
Zoran Markovic948dcf92013-08-02 13:38:02 -070096 kobject_uevent(&psy->dev->kobj, KOBJ_CHANGE);
97 spin_lock_irqsave(&psy->changed_lock, flags);
98 }
Viresh Kumar061f3802014-09-04 17:31:32 +053099
Zoran Markovic948dcf92013-08-02 13:38:02 -0700100 /*
Viresh Kumar061f3802014-09-04 17:31:32 +0530101 * Hold the wakeup_source until all events are processed.
102 * power_supply_changed() might have called again and have set 'changed'
103 * to true.
Zoran Markovic948dcf92013-08-02 13:38:02 -0700104 */
Viresh Kumar061f3802014-09-04 17:31:32 +0530105 if (likely(!psy->changed))
Zoran Markovic948dcf92013-08-02 13:38:02 -0700106 pm_relax(psy->dev);
107 spin_unlock_irqrestore(&psy->changed_lock, flags);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400108}
109
110void power_supply_changed(struct power_supply *psy)
111{
Zoran Markovic948dcf92013-08-02 13:38:02 -0700112 unsigned long flags;
113
Harvey Harrison0cddc0a2008-04-29 00:58:29 -0700114 dev_dbg(psy->dev, "%s\n", __func__);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400115
Zoran Markovic948dcf92013-08-02 13:38:02 -0700116 spin_lock_irqsave(&psy->changed_lock, flags);
117 psy->changed = true;
118 pm_stay_awake(psy->dev);
119 spin_unlock_irqrestore(&psy->changed_lock, flags);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400120 schedule_work(&psy->changed_work);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400121}
Daniel Mackff3417e2009-07-30 17:42:31 +0400122EXPORT_SYMBOL_GPL(power_supply_changed);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400123
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400124#ifdef CONFIG_OF
125#include <linux/of.h>
126
127static int __power_supply_populate_supplied_from(struct device *dev,
128 void *data)
129{
Viresh Kumare80cf422014-09-04 17:31:26 +0530130 struct power_supply *psy = data;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400131 struct power_supply *epsy = dev_get_drvdata(dev);
132 struct device_node *np;
133 int i = 0;
134
135 do {
136 np = of_parse_phandle(psy->of_node, "power-supplies", i++);
137 if (!np)
Viresh Kumara0f93b42014-09-04 17:31:27 +0530138 break;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400139
140 if (np == epsy->of_node) {
141 dev_info(psy->dev, "%s: Found supply : %s\n",
142 psy->name, epsy->name);
143 psy->supplied_from[i-1] = (char *)epsy->name;
144 psy->num_supplies++;
Rhyland Klein2054d6e2013-06-10 17:26:39 -0400145 of_node_put(np);
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400146 break;
147 }
Rhyland Klein2054d6e2013-06-10 17:26:39 -0400148 of_node_put(np);
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400149 } while (np);
150
151 return 0;
152}
153
154static int power_supply_populate_supplied_from(struct power_supply *psy)
155{
156 int error;
157
158 error = class_for_each_device(power_supply_class, NULL, psy,
159 __power_supply_populate_supplied_from);
160
161 dev_dbg(psy->dev, "%s %d\n", __func__, error);
162
163 return error;
164}
165
166static int __power_supply_find_supply_from_node(struct device *dev,
167 void *data)
168{
Viresh Kumare80cf422014-09-04 17:31:26 +0530169 struct device_node *np = data;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400170 struct power_supply *epsy = dev_get_drvdata(dev);
171
Viresh Kumar585b0082014-09-04 17:31:30 +0530172 /* returning non-zero breaks out of class_for_each_device loop */
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400173 if (epsy->of_node == np)
Viresh Kumar585b0082014-09-04 17:31:30 +0530174 return 1;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400175
176 return 0;
177}
178
179static int power_supply_find_supply_from_node(struct device_node *supply_node)
180{
181 int error;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400182
183 /*
Viresh Kumar585b0082014-09-04 17:31:30 +0530184 * class_for_each_device() either returns its own errors or values
185 * returned by __power_supply_find_supply_from_node().
186 *
187 * __power_supply_find_supply_from_node() will return 0 (no match)
188 * or 1 (match).
189 *
190 * We return 0 if class_for_each_device() returned 1, -EPROBE_DEFER if
191 * it returned 0, or error as returned by it.
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400192 */
193 error = class_for_each_device(power_supply_class, NULL, supply_node,
194 __power_supply_find_supply_from_node);
195
Viresh Kumar585b0082014-09-04 17:31:30 +0530196 return error ? (error == 1 ? 0 : error) : -EPROBE_DEFER;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400197}
198
199static int power_supply_check_supplies(struct power_supply *psy)
200{
201 struct device_node *np;
202 int cnt = 0;
203
204 /* If there is already a list honor it */
205 if (psy->supplied_from && psy->num_supplies > 0)
206 return 0;
207
208 /* No device node found, nothing to do */
209 if (!psy->of_node)
210 return 0;
211
212 do {
213 int ret;
214
215 np = of_parse_phandle(psy->of_node, "power-supplies", cnt++);
216 if (!np)
Viresh Kumara0f93b42014-09-04 17:31:27 +0530217 break;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400218
219 ret = power_supply_find_supply_from_node(np);
Viresh Kumar8468b022014-09-04 17:31:28 +0530220 of_node_put(np);
221
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400222 if (ret) {
Viresh Kumarf5b89af2014-09-04 17:31:29 +0530223 dev_dbg(psy->dev, "Failed to find supply!\n");
224 return ret;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400225 }
226 } while (np);
227
Viresh Kumarf9c85482014-09-04 17:31:23 +0530228 /* Missing valid "power-supplies" entries */
229 if (cnt == 1)
230 return 0;
231
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400232 /* All supplies found, allocate char ** array for filling */
233 psy->supplied_from = devm_kzalloc(psy->dev, sizeof(psy->supplied_from),
234 GFP_KERNEL);
235 if (!psy->supplied_from) {
236 dev_err(psy->dev, "Couldn't allocate memory for supply list\n");
237 return -ENOMEM;
238 }
239
Viresh Kumar8f5a37c2014-09-04 17:31:22 +0530240 *psy->supplied_from = devm_kzalloc(psy->dev, sizeof(char *) * (cnt - 1),
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400241 GFP_KERNEL);
242 if (!*psy->supplied_from) {
243 dev_err(psy->dev, "Couldn't allocate memory for supply list\n");
244 return -ENOMEM;
245 }
246
247 return power_supply_populate_supplied_from(psy);
248}
249#else
250static inline int power_supply_check_supplies(struct power_supply *psy)
251{
252 return 0;
253}
254#endif
255
Dave Young443cad92008-01-22 13:58:22 +0800256static int __power_supply_am_i_supplied(struct device *dev, void *data)
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400257{
258 union power_supply_propval ret = {0,};
Viresh Kumare80cf422014-09-04 17:31:26 +0530259 struct power_supply *psy = data;
Dave Young443cad92008-01-22 13:58:22 +0800260 struct power_supply *epsy = dev_get_drvdata(dev);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400261
Rhyland Klein5e0848c2013-04-01 17:45:54 -0400262 if (__power_supply_is_supplied_by(epsy, psy))
Viresh Kumar1c42a382014-09-04 17:31:31 +0530263 if (!epsy->get_property(epsy, POWER_SUPPLY_PROP_ONLINE, &ret))
264 return ret.intval;
Rhyland Klein5e0848c2013-04-01 17:45:54 -0400265
Dave Young443cad92008-01-22 13:58:22 +0800266 return 0;
267}
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400268
Dave Young443cad92008-01-22 13:58:22 +0800269int power_supply_am_i_supplied(struct power_supply *psy)
270{
271 int error;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400272
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400273 error = class_for_each_device(power_supply_class, NULL, psy,
Dave Young443cad92008-01-22 13:58:22 +0800274 __power_supply_am_i_supplied);
275
Harvey Harrison0cddc0a2008-04-29 00:58:29 -0700276 dev_dbg(psy->dev, "%s %d\n", __func__, error);
Dave Young443cad92008-01-22 13:58:22 +0800277
278 return error;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400279}
Daniel Mackff3417e2009-07-30 17:42:31 +0400280EXPORT_SYMBOL_GPL(power_supply_am_i_supplied);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400281
Matthew Garrett942ed162008-08-26 21:09:59 +0100282static int __power_supply_is_system_supplied(struct device *dev, void *data)
283{
284 union power_supply_propval ret = {0,};
285 struct power_supply *psy = dev_get_drvdata(dev);
Jean Delvare2530daa2011-12-10 22:53:36 +0100286 unsigned int *count = data;
Matthew Garrett942ed162008-08-26 21:09:59 +0100287
Jean Delvare2530daa2011-12-10 22:53:36 +0100288 (*count)++;
Viresh Kumar1c42a382014-09-04 17:31:31 +0530289 if (psy->type != POWER_SUPPLY_TYPE_BATTERY)
290 if (!psy->get_property(psy, POWER_SUPPLY_PROP_ONLINE, &ret))
Matthew Garrett942ed162008-08-26 21:09:59 +0100291 return ret.intval;
Viresh Kumar1c42a382014-09-04 17:31:31 +0530292
Matthew Garrett942ed162008-08-26 21:09:59 +0100293 return 0;
294}
295
296int power_supply_is_system_supplied(void)
297{
298 int error;
Jean Delvare2530daa2011-12-10 22:53:36 +0100299 unsigned int count = 0;
Matthew Garrett942ed162008-08-26 21:09:59 +0100300
Jean Delvare2530daa2011-12-10 22:53:36 +0100301 error = class_for_each_device(power_supply_class, NULL, &count,
Matthew Garrett942ed162008-08-26 21:09:59 +0100302 __power_supply_is_system_supplied);
303
Jean Delvare2530daa2011-12-10 22:53:36 +0100304 /*
305 * If no power class device was found at all, most probably we are
306 * running on a desktop system, so assume we are on mains power.
307 */
308 if (count == 0)
309 return 1;
310
Matthew Garrett942ed162008-08-26 21:09:59 +0100311 return error;
312}
Daniel Mackff3417e2009-07-30 17:42:31 +0400313EXPORT_SYMBOL_GPL(power_supply_is_system_supplied);
Matthew Garrett942ed162008-08-26 21:09:59 +0100314
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200315int power_supply_set_battery_charged(struct power_supply *psy)
316{
317 if (psy->type == POWER_SUPPLY_TYPE_BATTERY && psy->set_charged) {
318 psy->set_charged(psy);
319 return 0;
320 }
321
322 return -EINVAL;
323}
324EXPORT_SYMBOL_GPL(power_supply_set_battery_charged);
325
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100326static int power_supply_match_device_by_name(struct device *dev, const void *data)
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200327{
328 const char *name = data;
329 struct power_supply *psy = dev_get_drvdata(dev);
330
331 return strcmp(psy->name, name) == 0;
332}
333
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100334struct power_supply *power_supply_get_by_name(const char *name)
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200335{
336 struct device *dev = class_find_device(power_supply_class, NULL, name,
337 power_supply_match_device_by_name);
338
339 return dev ? dev_get_drvdata(dev) : NULL;
340}
341EXPORT_SYMBOL_GPL(power_supply_get_by_name);
342
Sebastian Reichelabce9772013-11-24 17:49:29 +0100343#ifdef CONFIG_OF
344static int power_supply_match_device_node(struct device *dev, const void *data)
345{
346 return dev->parent && dev->parent->of_node == data;
347}
348
349struct power_supply *power_supply_get_by_phandle(struct device_node *np,
350 const char *property)
351{
352 struct device_node *power_supply_np;
353 struct device *dev;
354
355 power_supply_np = of_parse_phandle(np, property, 0);
356 if (!power_supply_np)
357 return ERR_PTR(-ENODEV);
358
359 dev = class_find_device(power_supply_class, NULL, power_supply_np,
360 power_supply_match_device_node);
361
362 of_node_put(power_supply_np);
363
364 return dev ? dev_get_drvdata(dev) : NULL;
365}
366EXPORT_SYMBOL_GPL(power_supply_get_by_phandle);
367#endif /* CONFIG_OF */
368
Jeremy Fitzhardinge83516652011-12-07 09:15:45 -0800369int power_supply_powers(struct power_supply *psy, struct device *dev)
370{
Anton Vorontsov93278d12012-01-05 19:17:25 +0400371 return sysfs_create_link(&psy->dev->kobj, &dev->kobj, "powers");
Jeremy Fitzhardinge83516652011-12-07 09:15:45 -0800372}
373EXPORT_SYMBOL_GPL(power_supply_powers);
374
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200375static void power_supply_dev_release(struct device *dev)
376{
377 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
378 kfree(dev);
379}
380
Pali Rohárd36240d2013-11-19 11:18:03 +0100381int power_supply_reg_notifier(struct notifier_block *nb)
382{
383 return atomic_notifier_chain_register(&power_supply_notifier, nb);
384}
385EXPORT_SYMBOL_GPL(power_supply_reg_notifier);
386
387void power_supply_unreg_notifier(struct notifier_block *nb)
388{
389 atomic_notifier_chain_unregister(&power_supply_notifier, nb);
390}
391EXPORT_SYMBOL_GPL(power_supply_unreg_notifier);
392
Jenny TC3be330b2012-05-09 20:36:47 +0530393#ifdef CONFIG_THERMAL
394static int power_supply_read_temp(struct thermal_zone_device *tzd,
395 unsigned long *temp)
396{
397 struct power_supply *psy;
398 union power_supply_propval val;
399 int ret;
400
401 WARN_ON(tzd == NULL);
402 psy = tzd->devdata;
403 ret = psy->get_property(psy, POWER_SUPPLY_PROP_TEMP, &val);
404
405 /* Convert tenths of degree Celsius to milli degree Celsius. */
406 if (!ret)
407 *temp = val.intval * 100;
408
409 return ret;
410}
411
412static struct thermal_zone_device_ops psy_tzd_ops = {
413 .get_temp = power_supply_read_temp,
414};
415
416static int psy_register_thermal(struct power_supply *psy)
417{
418 int i;
419
420 /* Register battery zone device psy reports temperature */
421 for (i = 0; i < psy->num_properties; i++) {
422 if (psy->properties[i] == POWER_SUPPLY_PROP_TEMP) {
Anton Vorontsove6db06a2012-07-31 04:59:42 -0700423 psy->tzd = thermal_zone_device_register(psy->name, 0, 0,
Durgadoss R50125a92012-09-18 11:04:56 +0530424 psy, &psy_tzd_ops, NULL, 0, 0);
Viresh Kumar9d2410c2014-09-04 17:31:33 +0530425 return PTR_ERR_OR_ZERO(psy->tzd);
Jenny TC3be330b2012-05-09 20:36:47 +0530426 }
427 }
428 return 0;
429}
430
431static void psy_unregister_thermal(struct power_supply *psy)
432{
433 if (IS_ERR_OR_NULL(psy->tzd))
434 return;
435 thermal_zone_device_unregister(psy->tzd);
436}
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530437
438/* thermal cooling device callbacks */
439static int ps_get_max_charge_cntl_limit(struct thermal_cooling_device *tcd,
440 unsigned long *state)
441{
442 struct power_supply *psy;
443 union power_supply_propval val;
444 int ret;
445
446 psy = tcd->devdata;
447 ret = psy->get_property(psy,
448 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX, &val);
449 if (!ret)
450 *state = val.intval;
451
452 return ret;
453}
454
455static int ps_get_cur_chrage_cntl_limit(struct thermal_cooling_device *tcd,
456 unsigned long *state)
457{
458 struct power_supply *psy;
459 union power_supply_propval val;
460 int ret;
461
462 psy = tcd->devdata;
463 ret = psy->get_property(psy,
464 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT, &val);
465 if (!ret)
466 *state = val.intval;
467
468 return ret;
469}
470
471static int ps_set_cur_charge_cntl_limit(struct thermal_cooling_device *tcd,
472 unsigned long state)
473{
474 struct power_supply *psy;
475 union power_supply_propval val;
476 int ret;
477
478 psy = tcd->devdata;
479 val.intval = state;
480 ret = psy->set_property(psy,
481 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT, &val);
482
483 return ret;
484}
485
486static struct thermal_cooling_device_ops psy_tcd_ops = {
487 .get_max_state = ps_get_max_charge_cntl_limit,
488 .get_cur_state = ps_get_cur_chrage_cntl_limit,
489 .set_cur_state = ps_set_cur_charge_cntl_limit,
490};
491
492static int psy_register_cooler(struct power_supply *psy)
493{
494 int i;
495
496 /* Register for cooling device if psy can control charging */
497 for (i = 0; i < psy->num_properties; i++) {
498 if (psy->properties[i] ==
499 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT) {
500 psy->tcd = thermal_cooling_device_register(
501 (char *)psy->name,
502 psy, &psy_tcd_ops);
Viresh Kumar9d2410c2014-09-04 17:31:33 +0530503 return PTR_ERR_OR_ZERO(psy->tcd);
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530504 }
505 }
506 return 0;
507}
508
509static void psy_unregister_cooler(struct power_supply *psy)
510{
511 if (IS_ERR_OR_NULL(psy->tcd))
512 return;
513 thermal_cooling_device_unregister(psy->tcd);
514}
Jenny TC3be330b2012-05-09 20:36:47 +0530515#else
516static int psy_register_thermal(struct power_supply *psy)
517{
518 return 0;
519}
520
521static void psy_unregister_thermal(struct power_supply *psy)
522{
523}
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530524
525static int psy_register_cooler(struct power_supply *psy)
526{
527 return 0;
528}
529
530static void psy_unregister_cooler(struct power_supply *psy)
531{
532}
Jenny TC3be330b2012-05-09 20:36:47 +0530533#endif
534
Wei Yongjunc128d392014-07-20 13:31:09 +0800535static int __power_supply_register(struct device *parent,
536 struct power_supply *psy, bool ws)
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400537{
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200538 struct device *dev;
539 int rc;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400540
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200541 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
542 if (!dev)
543 return -ENOMEM;
544
545 device_initialize(dev);
546
547 dev->class = power_supply_class;
548 dev->type = &power_supply_dev_type;
549 dev->parent = parent;
550 dev->release = power_supply_dev_release;
551 dev_set_drvdata(dev, psy);
552 psy->dev = dev;
553
Shuah Khan80c64632013-11-22 10:54:28 -0700554 rc = dev_set_name(dev, "%s", psy->name);
555 if (rc)
556 goto dev_set_name_failed;
557
Lars-Peter Clausen97774672011-02-21 15:34:19 +0100558 INIT_WORK(&psy->changed_work, power_supply_changed_work);
559
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400560 rc = power_supply_check_supplies(psy);
561 if (rc) {
562 dev_info(dev, "Not all required supplies found, defer probe\n");
563 goto check_supplies_failed;
564 }
565
Zoran Markovic948dcf92013-08-02 13:38:02 -0700566 spin_lock_init(&psy->changed_lock);
Zhang Rui9113e262014-05-28 15:23:37 +0800567 rc = device_init_wakeup(dev, ws);
Zoran Markovic948dcf92013-08-02 13:38:02 -0700568 if (rc)
569 goto wakeup_init_failed;
570
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200571 rc = device_add(dev);
572 if (rc)
573 goto device_add_failed;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400574
Jenny TC3be330b2012-05-09 20:36:47 +0530575 rc = psy_register_thermal(psy);
576 if (rc)
577 goto register_thermal_failed;
578
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530579 rc = psy_register_cooler(psy);
580 if (rc)
581 goto register_cooler_failed;
582
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400583 rc = power_supply_create_triggers(psy);
584 if (rc)
585 goto create_triggers_failed;
586
587 power_supply_changed(psy);
588
Viresh Kumar464069c2014-09-04 17:31:35 +0530589 return 0;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400590
591create_triggers_failed:
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530592 psy_unregister_cooler(psy);
593register_cooler_failed:
Jenny TC3be330b2012-05-09 20:36:47 +0530594 psy_unregister_thermal(psy);
595register_thermal_failed:
Vasiliy Kulikov3a2dbd62010-11-19 21:41:58 +0300596 device_del(dev);
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200597device_add_failed:
Shuah Khan80c64632013-11-22 10:54:28 -0700598wakeup_init_failed:
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400599check_supplies_failed:
Shuah Khan80c64632013-11-22 10:54:28 -0700600dev_set_name_failed:
Vasiliy Kulikov3a2dbd62010-11-19 21:41:58 +0300601 put_device(dev);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400602 return rc;
603}
Zhang Rui9113e262014-05-28 15:23:37 +0800604
605int power_supply_register(struct device *parent, struct power_supply *psy)
606{
607 return __power_supply_register(parent, psy, true);
608}
Daniel Mackff3417e2009-07-30 17:42:31 +0400609EXPORT_SYMBOL_GPL(power_supply_register);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400610
Zhang Rui9113e262014-05-28 15:23:37 +0800611int power_supply_register_no_ws(struct device *parent, struct power_supply *psy)
612{
613 return __power_supply_register(parent, psy, false);
614}
615EXPORT_SYMBOL_GPL(power_supply_register_no_ws);
616
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400617void power_supply_unregister(struct power_supply *psy)
618{
Tejun Heobc51e7f2010-12-11 17:51:45 +0100619 cancel_work_sync(&psy->changed_work);
Jeremy Fitzhardinge83516652011-12-07 09:15:45 -0800620 sysfs_remove_link(&psy->dev->kobj, "powers");
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400621 power_supply_remove_triggers(psy);
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530622 psy_unregister_cooler(psy);
Jenny TC3be330b2012-05-09 20:36:47 +0530623 psy_unregister_thermal(psy);
Zoran Markovic948dcf92013-08-02 13:38:02 -0700624 device_init_wakeup(psy->dev, false);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400625 device_unregister(psy->dev);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400626}
Daniel Mackff3417e2009-07-30 17:42:31 +0400627EXPORT_SYMBOL_GPL(power_supply_unregister);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400628
629static int __init power_supply_class_init(void)
630{
631 power_supply_class = class_create(THIS_MODULE, "power_supply");
632
633 if (IS_ERR(power_supply_class))
634 return PTR_ERR(power_supply_class);
635
636 power_supply_class->dev_uevent = power_supply_uevent;
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200637 power_supply_init_attrs(&power_supply_dev_type);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400638
639 return 0;
640}
641
642static void __exit power_supply_class_exit(void)
643{
644 class_destroy(power_supply_class);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400645}
646
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400647subsys_initcall(power_supply_class_init);
648module_exit(power_supply_class_exit);
649
650MODULE_DESCRIPTION("Universal power supply monitor class");
651MODULE_AUTHOR("Ian Molton <spyro@f2s.com>, "
652 "Szabolcs Gyurko, "
653 "Anton Vorontsov <cbou@mail.ru>");
654MODULE_LICENSE("GPL");