blob: 456987c88baab9f4b8a0d2b7224b10d659b8bddc [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
Krzysztof Kozlowski7f1a57f2015-05-19 16:13:02 +090033#define POWER_SUPPLY_DEFERRED_REGISTER_TIME msecs_to_jiffies(10)
34
Rhyland Klein5e0848c2013-04-01 17:45:54 -040035static bool __power_supply_is_supplied_by(struct power_supply *supplier,
36 struct power_supply *supply)
37{
38 int i;
39
40 if (!supply->supplied_from && !supplier->supplied_to)
41 return false;
42
43 /* Support both supplied_to and supplied_from modes */
44 if (supply->supplied_from) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010045 if (!supplier->desc->name)
Rhyland Klein5e0848c2013-04-01 17:45:54 -040046 return false;
47 for (i = 0; i < supply->num_supplies; i++)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010048 if (!strcmp(supplier->desc->name, supply->supplied_from[i]))
Rhyland Klein5e0848c2013-04-01 17:45:54 -040049 return true;
50 } else {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010051 if (!supply->desc->name)
Rhyland Klein5e0848c2013-04-01 17:45:54 -040052 return false;
53 for (i = 0; i < supplier->num_supplicants; i++)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010054 if (!strcmp(supplier->supplied_to[i], supply->desc->name))
Rhyland Klein5e0848c2013-04-01 17:45:54 -040055 return true;
56 }
57
58 return false;
59}
60
Dave Young443cad92008-01-22 13:58:22 +080061static int __power_supply_changed_work(struct device *dev, void *data)
62{
Viresh Kumare80cf422014-09-04 17:31:26 +053063 struct power_supply *psy = data;
Dave Young443cad92008-01-22 13:58:22 +080064 struct power_supply *pst = dev_get_drvdata(dev);
Dave Young443cad92008-01-22 13:58:22 +080065
Rhyland Klein5e0848c2013-04-01 17:45:54 -040066 if (__power_supply_is_supplied_by(psy, pst)) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010067 if (pst->desc->external_power_changed)
68 pst->desc->external_power_changed(pst);
Rhyland Klein5e0848c2013-04-01 17:45:54 -040069 }
70
Dave Young443cad92008-01-22 13:58:22 +080071 return 0;
72}
73
Anton Vorontsov4a11b592007-05-04 00:27:45 +040074static void power_supply_changed_work(struct work_struct *work)
75{
Zoran Markovic948dcf92013-08-02 13:38:02 -070076 unsigned long flags;
Anton Vorontsov4a11b592007-05-04 00:27:45 +040077 struct power_supply *psy = container_of(work, struct power_supply,
78 changed_work);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040079
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010080 dev_dbg(&psy->dev, "%s\n", __func__);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040081
Zoran Markovic948dcf92013-08-02 13:38:02 -070082 spin_lock_irqsave(&psy->changed_lock, flags);
Viresh Kumar061f3802014-09-04 17:31:32 +053083 /*
84 * Check 'changed' here to avoid issues due to race between
85 * power_supply_changed() and this routine. In worst case
86 * power_supply_changed() can be called again just before we take above
87 * lock. During the first call of this routine we will mark 'changed' as
88 * false and it will stay false for the next call as well.
89 */
90 if (likely(psy->changed)) {
Zoran Markovic948dcf92013-08-02 13:38:02 -070091 psy->changed = false;
92 spin_unlock_irqrestore(&psy->changed_lock, flags);
93 class_for_each_device(power_supply_class, NULL, psy,
94 __power_supply_changed_work);
95 power_supply_update_leds(psy);
Pali Rohárd36240d2013-11-19 11:18:03 +010096 atomic_notifier_call_chain(&power_supply_notifier,
97 PSY_EVENT_PROP_CHANGED, psy);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010098 kobject_uevent(&psy->dev.kobj, KOBJ_CHANGE);
Zoran Markovic948dcf92013-08-02 13:38:02 -070099 spin_lock_irqsave(&psy->changed_lock, flags);
100 }
Viresh Kumar061f3802014-09-04 17:31:32 +0530101
Zoran Markovic948dcf92013-08-02 13:38:02 -0700102 /*
Viresh Kumar061f3802014-09-04 17:31:32 +0530103 * Hold the wakeup_source until all events are processed.
104 * power_supply_changed() might have called again and have set 'changed'
105 * to true.
Zoran Markovic948dcf92013-08-02 13:38:02 -0700106 */
Viresh Kumar061f3802014-09-04 17:31:32 +0530107 if (likely(!psy->changed))
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100108 pm_relax(&psy->dev);
Zoran Markovic948dcf92013-08-02 13:38:02 -0700109 spin_unlock_irqrestore(&psy->changed_lock, flags);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400110}
111
112void power_supply_changed(struct power_supply *psy)
113{
Zoran Markovic948dcf92013-08-02 13:38:02 -0700114 unsigned long flags;
115
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100116 dev_dbg(&psy->dev, "%s\n", __func__);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400117
Zoran Markovic948dcf92013-08-02 13:38:02 -0700118 spin_lock_irqsave(&psy->changed_lock, flags);
119 psy->changed = true;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100120 pm_stay_awake(&psy->dev);
Zoran Markovic948dcf92013-08-02 13:38:02 -0700121 spin_unlock_irqrestore(&psy->changed_lock, flags);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400122 schedule_work(&psy->changed_work);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400123}
Daniel Mackff3417e2009-07-30 17:42:31 +0400124EXPORT_SYMBOL_GPL(power_supply_changed);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400125
Krzysztof Kozlowski7f1a57f2015-05-19 16:13:02 +0900126/*
127 * Notify that power supply was registered after parent finished the probing.
128 *
129 * Often power supply is registered from driver's probe function. However
130 * calling power_supply_changed() directly from power_supply_register()
131 * would lead to execution of get_property() function provided by the driver
132 * too early - before the probe ends.
133 *
134 * Avoid that by waiting on parent's mutex.
135 */
136static void power_supply_deferred_register_work(struct work_struct *work)
137{
138 struct power_supply *psy = container_of(work, struct power_supply,
139 deferred_register_work.work);
140
141 if (psy->dev.parent)
142 mutex_lock(&psy->dev.parent->mutex);
143
144 power_supply_changed(psy);
145
146 if (psy->dev.parent)
147 mutex_unlock(&psy->dev.parent->mutex);
148}
149
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400150#ifdef CONFIG_OF
151#include <linux/of.h>
152
153static int __power_supply_populate_supplied_from(struct device *dev,
154 void *data)
155{
Viresh Kumare80cf422014-09-04 17:31:26 +0530156 struct power_supply *psy = data;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400157 struct power_supply *epsy = dev_get_drvdata(dev);
158 struct device_node *np;
159 int i = 0;
160
161 do {
162 np = of_parse_phandle(psy->of_node, "power-supplies", i++);
163 if (!np)
Viresh Kumara0f93b42014-09-04 17:31:27 +0530164 break;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400165
166 if (np == epsy->of_node) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100167 dev_info(&psy->dev, "%s: Found supply : %s\n",
168 psy->desc->name, epsy->desc->name);
169 psy->supplied_from[i-1] = (char *)epsy->desc->name;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400170 psy->num_supplies++;
Rhyland Klein2054d6e2013-06-10 17:26:39 -0400171 of_node_put(np);
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400172 break;
173 }
Rhyland Klein2054d6e2013-06-10 17:26:39 -0400174 of_node_put(np);
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400175 } while (np);
176
177 return 0;
178}
179
180static int power_supply_populate_supplied_from(struct power_supply *psy)
181{
182 int error;
183
184 error = class_for_each_device(power_supply_class, NULL, psy,
185 __power_supply_populate_supplied_from);
186
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100187 dev_dbg(&psy->dev, "%s %d\n", __func__, error);
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400188
189 return error;
190}
191
192static int __power_supply_find_supply_from_node(struct device *dev,
193 void *data)
194{
Viresh Kumare80cf422014-09-04 17:31:26 +0530195 struct device_node *np = data;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400196 struct power_supply *epsy = dev_get_drvdata(dev);
197
Viresh Kumar585b0082014-09-04 17:31:30 +0530198 /* returning non-zero breaks out of class_for_each_device loop */
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400199 if (epsy->of_node == np)
Viresh Kumar585b0082014-09-04 17:31:30 +0530200 return 1;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400201
202 return 0;
203}
204
205static int power_supply_find_supply_from_node(struct device_node *supply_node)
206{
207 int error;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400208
209 /*
Viresh Kumar585b0082014-09-04 17:31:30 +0530210 * class_for_each_device() either returns its own errors or values
211 * returned by __power_supply_find_supply_from_node().
212 *
213 * __power_supply_find_supply_from_node() will return 0 (no match)
214 * or 1 (match).
215 *
216 * We return 0 if class_for_each_device() returned 1, -EPROBE_DEFER if
217 * it returned 0, or error as returned by it.
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400218 */
219 error = class_for_each_device(power_supply_class, NULL, supply_node,
220 __power_supply_find_supply_from_node);
221
Viresh Kumar585b0082014-09-04 17:31:30 +0530222 return error ? (error == 1 ? 0 : error) : -EPROBE_DEFER;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400223}
224
225static int power_supply_check_supplies(struct power_supply *psy)
226{
227 struct device_node *np;
228 int cnt = 0;
229
230 /* If there is already a list honor it */
231 if (psy->supplied_from && psy->num_supplies > 0)
232 return 0;
233
234 /* No device node found, nothing to do */
235 if (!psy->of_node)
236 return 0;
237
238 do {
239 int ret;
240
241 np = of_parse_phandle(psy->of_node, "power-supplies", cnt++);
242 if (!np)
Viresh Kumara0f93b42014-09-04 17:31:27 +0530243 break;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400244
245 ret = power_supply_find_supply_from_node(np);
Viresh Kumar8468b022014-09-04 17:31:28 +0530246 of_node_put(np);
247
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400248 if (ret) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100249 dev_dbg(&psy->dev, "Failed to find supply!\n");
Viresh Kumarf5b89af2014-09-04 17:31:29 +0530250 return ret;
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400251 }
252 } while (np);
253
Viresh Kumarf9c85482014-09-04 17:31:23 +0530254 /* Missing valid "power-supplies" entries */
255 if (cnt == 1)
256 return 0;
257
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400258 /* All supplies found, allocate char ** array for filling */
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100259 psy->supplied_from = devm_kzalloc(&psy->dev, sizeof(psy->supplied_from),
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400260 GFP_KERNEL);
261 if (!psy->supplied_from) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100262 dev_err(&psy->dev, "Couldn't allocate memory for supply list\n");
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400263 return -ENOMEM;
264 }
265
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100266 *psy->supplied_from = devm_kzalloc(&psy->dev,
267 sizeof(char *) * (cnt - 1),
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400268 GFP_KERNEL);
269 if (!*psy->supplied_from) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100270 dev_err(&psy->dev, "Couldn't allocate memory for supply list\n");
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400271 return -ENOMEM;
272 }
273
274 return power_supply_populate_supplied_from(psy);
275}
276#else
277static inline int power_supply_check_supplies(struct power_supply *psy)
278{
279 return 0;
280}
281#endif
282
Dave Young443cad92008-01-22 13:58:22 +0800283static int __power_supply_am_i_supplied(struct device *dev, void *data)
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400284{
285 union power_supply_propval ret = {0,};
Viresh Kumare80cf422014-09-04 17:31:26 +0530286 struct power_supply *psy = data;
Dave Young443cad92008-01-22 13:58:22 +0800287 struct power_supply *epsy = dev_get_drvdata(dev);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400288
Rhyland Klein5e0848c2013-04-01 17:45:54 -0400289 if (__power_supply_is_supplied_by(epsy, psy))
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100290 if (!epsy->desc->get_property(epsy, POWER_SUPPLY_PROP_ONLINE,
291 &ret))
Viresh Kumar1c42a382014-09-04 17:31:31 +0530292 return ret.intval;
Rhyland Klein5e0848c2013-04-01 17:45:54 -0400293
Dave Young443cad92008-01-22 13:58:22 +0800294 return 0;
295}
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400296
Dave Young443cad92008-01-22 13:58:22 +0800297int power_supply_am_i_supplied(struct power_supply *psy)
298{
299 int error;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400300
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400301 error = class_for_each_device(power_supply_class, NULL, psy,
Dave Young443cad92008-01-22 13:58:22 +0800302 __power_supply_am_i_supplied);
303
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100304 dev_dbg(&psy->dev, "%s %d\n", __func__, error);
Dave Young443cad92008-01-22 13:58:22 +0800305
306 return error;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400307}
Daniel Mackff3417e2009-07-30 17:42:31 +0400308EXPORT_SYMBOL_GPL(power_supply_am_i_supplied);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400309
Matthew Garrett942ed162008-08-26 21:09:59 +0100310static int __power_supply_is_system_supplied(struct device *dev, void *data)
311{
312 union power_supply_propval ret = {0,};
313 struct power_supply *psy = dev_get_drvdata(dev);
Jean Delvare2530daa2011-12-10 22:53:36 +0100314 unsigned int *count = data;
Matthew Garrett942ed162008-08-26 21:09:59 +0100315
Jean Delvare2530daa2011-12-10 22:53:36 +0100316 (*count)++;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100317 if (psy->desc->type != POWER_SUPPLY_TYPE_BATTERY)
318 if (!psy->desc->get_property(psy, POWER_SUPPLY_PROP_ONLINE,
319 &ret))
Matthew Garrett942ed162008-08-26 21:09:59 +0100320 return ret.intval;
Viresh Kumar1c42a382014-09-04 17:31:31 +0530321
Matthew Garrett942ed162008-08-26 21:09:59 +0100322 return 0;
323}
324
325int power_supply_is_system_supplied(void)
326{
327 int error;
Jean Delvare2530daa2011-12-10 22:53:36 +0100328 unsigned int count = 0;
Matthew Garrett942ed162008-08-26 21:09:59 +0100329
Jean Delvare2530daa2011-12-10 22:53:36 +0100330 error = class_for_each_device(power_supply_class, NULL, &count,
Matthew Garrett942ed162008-08-26 21:09:59 +0100331 __power_supply_is_system_supplied);
332
Jean Delvare2530daa2011-12-10 22:53:36 +0100333 /*
334 * If no power class device was found at all, most probably we are
335 * running on a desktop system, so assume we are on mains power.
336 */
337 if (count == 0)
338 return 1;
339
Matthew Garrett942ed162008-08-26 21:09:59 +0100340 return error;
341}
Daniel Mackff3417e2009-07-30 17:42:31 +0400342EXPORT_SYMBOL_GPL(power_supply_is_system_supplied);
Matthew Garrett942ed162008-08-26 21:09:59 +0100343
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200344int power_supply_set_battery_charged(struct power_supply *psy)
345{
Krzysztof Kozlowskibc154052015-03-12 08:44:03 +0100346 if (atomic_read(&psy->use_cnt) >= 0 &&
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100347 psy->desc->type == POWER_SUPPLY_TYPE_BATTERY &&
348 psy->desc->set_charged) {
349 psy->desc->set_charged(psy);
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200350 return 0;
351 }
352
353 return -EINVAL;
354}
355EXPORT_SYMBOL_GPL(power_supply_set_battery_charged);
356
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100357static int power_supply_match_device_by_name(struct device *dev, const void *data)
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200358{
359 const char *name = data;
360 struct power_supply *psy = dev_get_drvdata(dev);
361
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100362 return strcmp(psy->desc->name, name) == 0;
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200363}
364
Krzysztof Kozlowski1a352462015-03-12 08:44:12 +0100365/**
366 * power_supply_get_by_name() - Search for a power supply and returns its ref
367 * @name: Power supply name to fetch
368 *
369 * If power supply was found, it increases reference count for the
370 * internal power supply's device. The user should power_supply_put()
371 * after usage.
372 *
373 * Return: On success returns a reference to a power supply with
374 * matching name equals to @name, a NULL otherwise.
375 */
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100376struct power_supply *power_supply_get_by_name(const char *name)
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200377{
Krzysztof Kozlowski03e81ac2015-03-12 08:44:13 +0100378 struct power_supply *psy = NULL;
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200379 struct device *dev = class_find_device(power_supply_class, NULL, name,
380 power_supply_match_device_by_name);
381
Krzysztof Kozlowski03e81ac2015-03-12 08:44:13 +0100382 if (dev) {
383 psy = dev_get_drvdata(dev);
384 atomic_inc(&psy->use_cnt);
385 }
386
387 return psy;
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200388}
389EXPORT_SYMBOL_GPL(power_supply_get_by_name);
390
Krzysztof Kozlowski1a352462015-03-12 08:44:12 +0100391/**
392 * power_supply_put() - Drop reference obtained with power_supply_get_by_name
393 * @psy: Reference to put
394 *
395 * The reference to power supply should be put before unregistering
396 * the power supply.
397 */
398void power_supply_put(struct power_supply *psy)
399{
400 might_sleep();
401
Krzysztof Kozlowski03e81ac2015-03-12 08:44:13 +0100402 atomic_dec(&psy->use_cnt);
Krzysztof Kozlowski1a352462015-03-12 08:44:12 +0100403 put_device(&psy->dev);
404}
405EXPORT_SYMBOL_GPL(power_supply_put);
406
Sebastian Reichelabce9772013-11-24 17:49:29 +0100407#ifdef CONFIG_OF
408static int power_supply_match_device_node(struct device *dev, const void *data)
409{
410 return dev->parent && dev->parent->of_node == data;
411}
412
Krzysztof Kozlowski1a352462015-03-12 08:44:12 +0100413/**
414 * power_supply_get_by_phandle() - Search for a power supply and returns its ref
415 * @np: Pointer to device node holding phandle property
416 * @phandle_name: Name of property holding a power supply name
417 *
418 * If power supply was found, it increases reference count for the
419 * internal power supply's device. The user should power_supply_put()
420 * after usage.
421 *
422 * Return: On success returns a reference to a power supply with
423 * matching name equals to value under @property, NULL or ERR_PTR otherwise.
424 */
Sebastian Reichelabce9772013-11-24 17:49:29 +0100425struct power_supply *power_supply_get_by_phandle(struct device_node *np,
426 const char *property)
427{
428 struct device_node *power_supply_np;
Krzysztof Kozlowski03e81ac2015-03-12 08:44:13 +0100429 struct power_supply *psy = NULL;
Sebastian Reichelabce9772013-11-24 17:49:29 +0100430 struct device *dev;
431
432 power_supply_np = of_parse_phandle(np, property, 0);
433 if (!power_supply_np)
434 return ERR_PTR(-ENODEV);
435
436 dev = class_find_device(power_supply_class, NULL, power_supply_np,
437 power_supply_match_device_node);
438
439 of_node_put(power_supply_np);
440
Krzysztof Kozlowski03e81ac2015-03-12 08:44:13 +0100441 if (dev) {
442 psy = dev_get_drvdata(dev);
443 atomic_inc(&psy->use_cnt);
444 }
445
446 return psy;
Sebastian Reichelabce9772013-11-24 17:49:29 +0100447}
448EXPORT_SYMBOL_GPL(power_supply_get_by_phandle);
Hans de Goedefe27e1d2015-06-09 23:37:56 +0200449
450static void devm_power_supply_put(struct device *dev, void *res)
451{
452 struct power_supply **psy = res;
453
454 power_supply_put(*psy);
455}
456
457/**
458 * devm_power_supply_get_by_phandle() - Resource managed version of
459 * power_supply_get_by_phandle()
460 * @dev: Pointer to device holding phandle property
461 * @phandle_name: Name of property holding a power supply phandle
462 *
463 * Return: On success returns a reference to a power supply with
464 * matching name equals to value under @property, NULL or ERR_PTR otherwise.
465 */
466struct power_supply *devm_power_supply_get_by_phandle(struct device *dev,
467 const char *property)
468{
469 struct power_supply **ptr, *psy;
470
471 if (!dev->of_node)
472 return ERR_PTR(-ENODEV);
473
474 ptr = devres_alloc(devm_power_supply_put, sizeof(*ptr), GFP_KERNEL);
475 if (!ptr)
476 return ERR_PTR(-ENOMEM);
477
478 psy = power_supply_get_by_phandle(dev->of_node, property);
479 if (IS_ERR_OR_NULL(psy)) {
480 devres_free(ptr);
481 } else {
482 *ptr = psy;
483 devres_add(dev, ptr);
484 }
485 return psy;
486}
487EXPORT_SYMBOL_GPL(devm_power_supply_get_by_phandle);
Sebastian Reichelabce9772013-11-24 17:49:29 +0100488#endif /* CONFIG_OF */
489
Krzysztof Kozlowskibc154052015-03-12 08:44:03 +0100490int power_supply_get_property(struct power_supply *psy,
491 enum power_supply_property psp,
492 union power_supply_propval *val)
493{
494 if (atomic_read(&psy->use_cnt) <= 0)
495 return -ENODEV;
496
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100497 return psy->desc->get_property(psy, psp, val);
Krzysztof Kozlowskibc154052015-03-12 08:44:03 +0100498}
499EXPORT_SYMBOL_GPL(power_supply_get_property);
500
501int power_supply_set_property(struct power_supply *psy,
502 enum power_supply_property psp,
503 const union power_supply_propval *val)
504{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100505 if (atomic_read(&psy->use_cnt) <= 0 || !psy->desc->set_property)
Krzysztof Kozlowskibc154052015-03-12 08:44:03 +0100506 return -ENODEV;
507
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100508 return psy->desc->set_property(psy, psp, val);
Krzysztof Kozlowskibc154052015-03-12 08:44:03 +0100509}
510EXPORT_SYMBOL_GPL(power_supply_set_property);
511
512int power_supply_property_is_writeable(struct power_supply *psy,
513 enum power_supply_property psp)
514{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100515 if (atomic_read(&psy->use_cnt) <= 0 ||
516 !psy->desc->property_is_writeable)
Krzysztof Kozlowskibc154052015-03-12 08:44:03 +0100517 return -ENODEV;
518
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100519 return psy->desc->property_is_writeable(psy, psp);
Krzysztof Kozlowskibc154052015-03-12 08:44:03 +0100520}
521EXPORT_SYMBOL_GPL(power_supply_property_is_writeable);
522
523void power_supply_external_power_changed(struct power_supply *psy)
524{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100525 if (atomic_read(&psy->use_cnt) <= 0 ||
526 !psy->desc->external_power_changed)
Krzysztof Kozlowskibc154052015-03-12 08:44:03 +0100527 return;
528
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100529 psy->desc->external_power_changed(psy);
Krzysztof Kozlowskibc154052015-03-12 08:44:03 +0100530}
531EXPORT_SYMBOL_GPL(power_supply_external_power_changed);
532
Jeremy Fitzhardinge83516652011-12-07 09:15:45 -0800533int power_supply_powers(struct power_supply *psy, struct device *dev)
534{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100535 return sysfs_create_link(&psy->dev.kobj, &dev->kobj, "powers");
Jeremy Fitzhardinge83516652011-12-07 09:15:45 -0800536}
537EXPORT_SYMBOL_GPL(power_supply_powers);
538
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200539static void power_supply_dev_release(struct device *dev)
540{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100541 struct power_supply *psy = container_of(dev, struct power_supply, dev);
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200542 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100543 kfree(psy);
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200544}
545
Pali Rohárd36240d2013-11-19 11:18:03 +0100546int power_supply_reg_notifier(struct notifier_block *nb)
547{
548 return atomic_notifier_chain_register(&power_supply_notifier, nb);
549}
550EXPORT_SYMBOL_GPL(power_supply_reg_notifier);
551
552void power_supply_unreg_notifier(struct notifier_block *nb)
553{
554 atomic_notifier_chain_unregister(&power_supply_notifier, nb);
555}
556EXPORT_SYMBOL_GPL(power_supply_unreg_notifier);
557
Jenny TC3be330b2012-05-09 20:36:47 +0530558#ifdef CONFIG_THERMAL
559static int power_supply_read_temp(struct thermal_zone_device *tzd,
Sascha Hauer17e83512015-07-24 08:12:54 +0200560 int *temp)
Jenny TC3be330b2012-05-09 20:36:47 +0530561{
562 struct power_supply *psy;
563 union power_supply_propval val;
564 int ret;
565
566 WARN_ON(tzd == NULL);
567 psy = tzd->devdata;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100568 ret = psy->desc->get_property(psy, POWER_SUPPLY_PROP_TEMP, &val);
Jenny TC3be330b2012-05-09 20:36:47 +0530569
570 /* Convert tenths of degree Celsius to milli degree Celsius. */
571 if (!ret)
572 *temp = val.intval * 100;
573
574 return ret;
575}
576
577static struct thermal_zone_device_ops psy_tzd_ops = {
578 .get_temp = power_supply_read_temp,
579};
580
581static int psy_register_thermal(struct power_supply *psy)
582{
583 int i;
584
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100585 if (psy->desc->no_thermal)
Krzysztof Kozlowskia69d82b2014-10-07 17:47:36 +0200586 return 0;
587
Jenny TC3be330b2012-05-09 20:36:47 +0530588 /* Register battery zone device psy reports temperature */
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100589 for (i = 0; i < psy->desc->num_properties; i++) {
590 if (psy->desc->properties[i] == POWER_SUPPLY_PROP_TEMP) {
591 psy->tzd = thermal_zone_device_register(psy->desc->name,
592 0, 0, psy, &psy_tzd_ops, NULL, 0, 0);
Viresh Kumar9d2410c2014-09-04 17:31:33 +0530593 return PTR_ERR_OR_ZERO(psy->tzd);
Jenny TC3be330b2012-05-09 20:36:47 +0530594 }
595 }
596 return 0;
597}
598
599static void psy_unregister_thermal(struct power_supply *psy)
600{
601 if (IS_ERR_OR_NULL(psy->tzd))
602 return;
603 thermal_zone_device_unregister(psy->tzd);
604}
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530605
606/* thermal cooling device callbacks */
607static int ps_get_max_charge_cntl_limit(struct thermal_cooling_device *tcd,
608 unsigned long *state)
609{
610 struct power_supply *psy;
611 union power_supply_propval val;
612 int ret;
613
614 psy = tcd->devdata;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100615 ret = psy->desc->get_property(psy,
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530616 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX, &val);
617 if (!ret)
618 *state = val.intval;
619
620 return ret;
621}
622
623static int ps_get_cur_chrage_cntl_limit(struct thermal_cooling_device *tcd,
624 unsigned long *state)
625{
626 struct power_supply *psy;
627 union power_supply_propval val;
628 int ret;
629
630 psy = tcd->devdata;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100631 ret = psy->desc->get_property(psy,
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530632 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT, &val);
633 if (!ret)
634 *state = val.intval;
635
636 return ret;
637}
638
639static int ps_set_cur_charge_cntl_limit(struct thermal_cooling_device *tcd,
640 unsigned long state)
641{
642 struct power_supply *psy;
643 union power_supply_propval val;
644 int ret;
645
646 psy = tcd->devdata;
647 val.intval = state;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100648 ret = psy->desc->set_property(psy,
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530649 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT, &val);
650
651 return ret;
652}
653
654static struct thermal_cooling_device_ops psy_tcd_ops = {
655 .get_max_state = ps_get_max_charge_cntl_limit,
656 .get_cur_state = ps_get_cur_chrage_cntl_limit,
657 .set_cur_state = ps_set_cur_charge_cntl_limit,
658};
659
660static int psy_register_cooler(struct power_supply *psy)
661{
662 int i;
663
664 /* Register for cooling device if psy can control charging */
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100665 for (i = 0; i < psy->desc->num_properties; i++) {
666 if (psy->desc->properties[i] ==
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530667 POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT) {
668 psy->tcd = thermal_cooling_device_register(
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100669 (char *)psy->desc->name,
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530670 psy, &psy_tcd_ops);
Viresh Kumar9d2410c2014-09-04 17:31:33 +0530671 return PTR_ERR_OR_ZERO(psy->tcd);
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530672 }
673 }
674 return 0;
675}
676
677static void psy_unregister_cooler(struct power_supply *psy)
678{
679 if (IS_ERR_OR_NULL(psy->tcd))
680 return;
681 thermal_cooling_device_unregister(psy->tcd);
682}
Jenny TC3be330b2012-05-09 20:36:47 +0530683#else
684static int psy_register_thermal(struct power_supply *psy)
685{
686 return 0;
687}
688
689static void psy_unregister_thermal(struct power_supply *psy)
690{
691}
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530692
693static int psy_register_cooler(struct power_supply *psy)
694{
695 return 0;
696}
697
698static void psy_unregister_cooler(struct power_supply *psy)
699{
700}
Jenny TC3be330b2012-05-09 20:36:47 +0530701#endif
702
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100703static struct power_supply *__must_check
704__power_supply_register(struct device *parent,
705 const struct power_supply_desc *desc,
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100706 const struct power_supply_config *cfg,
707 bool ws)
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400708{
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200709 struct device *dev;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100710 struct power_supply *psy;
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200711 int rc;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400712
Krzysztof Kozlowski7f1a57f2015-05-19 16:13:02 +0900713 if (!parent)
714 pr_warn("%s: Expected proper parent device for '%s'\n",
715 __func__, desc->name);
716
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100717 psy = kzalloc(sizeof(*psy), GFP_KERNEL);
718 if (!psy)
719 return ERR_PTR(-ENOMEM);
720
721 dev = &psy->dev;
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200722
723 device_initialize(dev);
724
725 dev->class = power_supply_class;
726 dev->type = &power_supply_dev_type;
727 dev->parent = parent;
728 dev->release = power_supply_dev_release;
729 dev_set_drvdata(dev, psy);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100730 psy->desc = desc;
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100731 if (cfg) {
732 psy->drv_data = cfg->drv_data;
733 psy->of_node = cfg->of_node;
734 psy->supplied_to = cfg->supplied_to;
735 psy->num_supplicants = cfg->num_supplicants;
736 }
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200737
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100738 rc = dev_set_name(dev, "%s", desc->name);
Shuah Khan80c64632013-11-22 10:54:28 -0700739 if (rc)
740 goto dev_set_name_failed;
741
Lars-Peter Clausen97774672011-02-21 15:34:19 +0100742 INIT_WORK(&psy->changed_work, power_supply_changed_work);
Krzysztof Kozlowski7f1a57f2015-05-19 16:13:02 +0900743 INIT_DELAYED_WORK(&psy->deferred_register_work,
744 power_supply_deferred_register_work);
Lars-Peter Clausen97774672011-02-21 15:34:19 +0100745
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400746 rc = power_supply_check_supplies(psy);
747 if (rc) {
748 dev_info(dev, "Not all required supplies found, defer probe\n");
749 goto check_supplies_failed;
750 }
751
Zoran Markovic948dcf92013-08-02 13:38:02 -0700752 spin_lock_init(&psy->changed_lock);
Zhang Rui9113e262014-05-28 15:23:37 +0800753 rc = device_init_wakeup(dev, ws);
Zoran Markovic948dcf92013-08-02 13:38:02 -0700754 if (rc)
755 goto wakeup_init_failed;
756
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200757 rc = device_add(dev);
758 if (rc)
759 goto device_add_failed;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400760
Jenny TC3be330b2012-05-09 20:36:47 +0530761 rc = psy_register_thermal(psy);
762 if (rc)
763 goto register_thermal_failed;
764
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530765 rc = psy_register_cooler(psy);
766 if (rc)
767 goto register_cooler_failed;
768
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400769 rc = power_supply_create_triggers(psy);
770 if (rc)
771 goto create_triggers_failed;
772
Krzysztof Kozlowski8e59c7f2015-05-19 16:13:01 +0900773 /*
774 * Update use_cnt after any uevents (most notably from device_add()).
775 * We are here still during driver's probe but
776 * the power_supply_uevent() calls back driver's get_property
777 * method so:
778 * 1. Driver did not assigned the returned struct power_supply,
779 * 2. Driver could not finish initialization (anything in its probe
780 * after calling power_supply_register()).
781 */
782 atomic_inc(&psy->use_cnt);
Krzysztof Kozlowski7f1a57f2015-05-19 16:13:02 +0900783
784 queue_delayed_work(system_power_efficient_wq,
785 &psy->deferred_register_work,
786 POWER_SUPPLY_DEFERRED_REGISTER_TIME);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400787
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100788 return psy;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400789
790create_triggers_failed:
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530791 psy_unregister_cooler(psy);
792register_cooler_failed:
Jenny TC3be330b2012-05-09 20:36:47 +0530793 psy_unregister_thermal(psy);
794register_thermal_failed:
Vasiliy Kulikov3a2dbd62010-11-19 21:41:58 +0300795 device_del(dev);
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200796device_add_failed:
Shuah Khan80c64632013-11-22 10:54:28 -0700797wakeup_init_failed:
Rhyland Kleinf6e0b082013-04-01 17:45:55 -0400798check_supplies_failed:
Shuah Khan80c64632013-11-22 10:54:28 -0700799dev_set_name_failed:
Vasiliy Kulikov3a2dbd62010-11-19 21:41:58 +0300800 put_device(dev);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100801 return ERR_PTR(rc);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400802}
Zhang Rui9113e262014-05-28 15:23:37 +0800803
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100804/**
805 * power_supply_register() - Register new power supply
Krzysztof Kozlowski7f1a57f2015-05-19 16:13:02 +0900806 * @parent: Device to be a parent of power supply's device, usually
807 * the device which probe function calls this
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100808 * @desc: Description of power supply, must be valid through whole
809 * lifetime of this power supply
810 * @cfg: Run-time specific configuration accessed during registering,
811 * may be NULL
812 *
813 * Return: A pointer to newly allocated power_supply on success
814 * or ERR_PTR otherwise.
815 * Use power_supply_unregister() on returned power_supply pointer to release
816 * resources.
817 */
818struct power_supply *__must_check power_supply_register(struct device *parent,
819 const struct power_supply_desc *desc,
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100820 const struct power_supply_config *cfg)
Zhang Rui9113e262014-05-28 15:23:37 +0800821{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100822 return __power_supply_register(parent, desc, cfg, true);
Zhang Rui9113e262014-05-28 15:23:37 +0800823}
Daniel Mackff3417e2009-07-30 17:42:31 +0400824EXPORT_SYMBOL_GPL(power_supply_register);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400825
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100826/**
Bjorn Andersson43df6102015-06-18 12:35:26 -0700827 * power_supply_register_no_ws() - Register new non-waking-source power supply
Krzysztof Kozlowski7f1a57f2015-05-19 16:13:02 +0900828 * @parent: Device to be a parent of power supply's device, usually
829 * the device which probe function calls this
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100830 * @desc: Description of power supply, must be valid through whole
831 * lifetime of this power supply
832 * @cfg: Run-time specific configuration accessed during registering,
833 * may be NULL
834 *
835 * Return: A pointer to newly allocated power_supply on success
836 * or ERR_PTR otherwise.
837 * Use power_supply_unregister() on returned power_supply pointer to release
838 * resources.
839 */
840struct power_supply *__must_check
841power_supply_register_no_ws(struct device *parent,
842 const struct power_supply_desc *desc,
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100843 const struct power_supply_config *cfg)
Zhang Rui9113e262014-05-28 15:23:37 +0800844{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100845 return __power_supply_register(parent, desc, cfg, false);
Zhang Rui9113e262014-05-28 15:23:37 +0800846}
847EXPORT_SYMBOL_GPL(power_supply_register_no_ws);
848
NeilBrown5d8a4212015-02-24 15:33:50 +1100849static void devm_power_supply_release(struct device *dev, void *res)
850{
851 struct power_supply **psy = res;
852
853 power_supply_unregister(*psy);
854}
855
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100856/**
Bjorn Andersson43df6102015-06-18 12:35:26 -0700857 * devm_power_supply_register() - Register managed power supply
Krzysztof Kozlowski7f1a57f2015-05-19 16:13:02 +0900858 * @parent: Device to be a parent of power supply's device, usually
859 * the device which probe function calls this
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100860 * @desc: Description of power supply, must be valid through whole
861 * lifetime of this power supply
862 * @cfg: Run-time specific configuration accessed during registering,
863 * may be NULL
864 *
865 * Return: A pointer to newly allocated power_supply on success
866 * or ERR_PTR otherwise.
867 * The returned power_supply pointer will be automatically unregistered
868 * on driver detach.
869 */
870struct power_supply *__must_check
871devm_power_supply_register(struct device *parent,
872 const struct power_supply_desc *desc,
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100873 const struct power_supply_config *cfg)
NeilBrown5d8a4212015-02-24 15:33:50 +1100874{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100875 struct power_supply **ptr, *psy;
876
877 ptr = devres_alloc(devm_power_supply_release, sizeof(*ptr), GFP_KERNEL);
NeilBrown5d8a4212015-02-24 15:33:50 +1100878
879 if (!ptr)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100880 return ERR_PTR(-ENOMEM);
881 psy = __power_supply_register(parent, desc, cfg, true);
882 if (IS_ERR(psy)) {
NeilBrown5d8a4212015-02-24 15:33:50 +1100883 devres_free(ptr);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100884 } else {
NeilBrown5d8a4212015-02-24 15:33:50 +1100885 *ptr = psy;
886 devres_add(parent, ptr);
887 }
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100888 return psy;
NeilBrown5d8a4212015-02-24 15:33:50 +1100889}
890EXPORT_SYMBOL_GPL(devm_power_supply_register);
891
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100892/**
Bjorn Andersson43df6102015-06-18 12:35:26 -0700893 * devm_power_supply_register_no_ws() - Register managed non-waking-source power supply
Krzysztof Kozlowski7f1a57f2015-05-19 16:13:02 +0900894 * @parent: Device to be a parent of power supply's device, usually
895 * the device which probe function calls this
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100896 * @desc: Description of power supply, must be valid through whole
897 * lifetime of this power supply
898 * @cfg: Run-time specific configuration accessed during registering,
899 * may be NULL
900 *
901 * Return: A pointer to newly allocated power_supply on success
902 * or ERR_PTR otherwise.
903 * The returned power_supply pointer will be automatically unregistered
904 * on driver detach.
905 */
906struct power_supply *__must_check
907devm_power_supply_register_no_ws(struct device *parent,
908 const struct power_supply_desc *desc,
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100909 const struct power_supply_config *cfg)
NeilBrown5d8a4212015-02-24 15:33:50 +1100910{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100911 struct power_supply **ptr, *psy;
912
913 ptr = devres_alloc(devm_power_supply_release, sizeof(*ptr), GFP_KERNEL);
NeilBrown5d8a4212015-02-24 15:33:50 +1100914
915 if (!ptr)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100916 return ERR_PTR(-ENOMEM);
917 psy = __power_supply_register(parent, desc, cfg, false);
918 if (IS_ERR(psy)) {
NeilBrown5d8a4212015-02-24 15:33:50 +1100919 devres_free(ptr);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100920 } else {
NeilBrown5d8a4212015-02-24 15:33:50 +1100921 *ptr = psy;
922 devres_add(parent, ptr);
923 }
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100924 return psy;
NeilBrown5d8a4212015-02-24 15:33:50 +1100925}
926EXPORT_SYMBOL_GPL(devm_power_supply_register_no_ws);
927
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100928/**
929 * power_supply_unregister() - Remove this power supply from system
930 * @psy: Pointer to power supply to unregister
931 *
932 * Remove this power supply from the system. The resources of power supply
933 * will be freed here or on last power_supply_put() call.
934 */
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400935void power_supply_unregister(struct power_supply *psy)
936{
Krzysztof Kozlowskibc154052015-03-12 08:44:03 +0100937 WARN_ON(atomic_dec_return(&psy->use_cnt));
Tejun Heobc51e7f2010-12-11 17:51:45 +0100938 cancel_work_sync(&psy->changed_work);
Krzysztof Kozlowski7f1a57f2015-05-19 16:13:02 +0900939 cancel_delayed_work_sync(&psy->deferred_register_work);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100940 sysfs_remove_link(&psy->dev.kobj, "powers");
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400941 power_supply_remove_triggers(psy);
Ramakrishna Pallala952aeeb32012-10-09 22:25:59 +0530942 psy_unregister_cooler(psy);
Jenny TC3be330b2012-05-09 20:36:47 +0530943 psy_unregister_thermal(psy);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100944 device_init_wakeup(&psy->dev, false);
945 device_unregister(&psy->dev);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400946}
Daniel Mackff3417e2009-07-30 17:42:31 +0400947EXPORT_SYMBOL_GPL(power_supply_unregister);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400948
Krzysztof Kozlowskie44ea362015-03-12 08:44:01 +0100949void *power_supply_get_drvdata(struct power_supply *psy)
950{
951 return psy->drv_data;
952}
953EXPORT_SYMBOL_GPL(power_supply_get_drvdata);
954
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400955static int __init power_supply_class_init(void)
956{
957 power_supply_class = class_create(THIS_MODULE, "power_supply");
958
959 if (IS_ERR(power_supply_class))
960 return PTR_ERR(power_supply_class);
961
962 power_supply_class->dev_uevent = power_supply_uevent;
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200963 power_supply_init_attrs(&power_supply_dev_type);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400964
965 return 0;
966}
967
968static void __exit power_supply_class_exit(void)
969{
970 class_destroy(power_supply_class);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400971}
972
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400973subsys_initcall(power_supply_class_init);
974module_exit(power_supply_class_exit);
975
976MODULE_DESCRIPTION("Universal power supply monitor class");
977MODULE_AUTHOR("Ian Molton <spyro@f2s.com>, "
978 "Szabolcs Gyurko, "
979 "Anton Vorontsov <cbou@mail.ru>");
980MODULE_LICENSE("GPL");