blob: 6ad612726785f48cdd8dbcc2785de8e211aae873 [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>
18#include <linux/err.h>
19#include <linux/power_supply.h>
20#include "power_supply.h"
21
Daniel Mackff3417e2009-07-30 17:42:31 +040022/* exported for the APM Power driver, APM emulation */
Anton Vorontsov4a11b592007-05-04 00:27:45 +040023struct class *power_supply_class;
Daniel Mackff3417e2009-07-30 17:42:31 +040024EXPORT_SYMBOL_GPL(power_supply_class);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040025
Anton Vorontsov5f487cd2010-05-18 21:49:51 +020026static struct device_type power_supply_dev_type;
27
Dave Young443cad92008-01-22 13:58:22 +080028static int __power_supply_changed_work(struct device *dev, void *data)
29{
30 struct power_supply *psy = (struct power_supply *)data;
31 struct power_supply *pst = dev_get_drvdata(dev);
32 int i;
33
34 for (i = 0; i < psy->num_supplicants; i++)
35 if (!strcmp(psy->supplied_to[i], pst->name)) {
36 if (pst->external_power_changed)
37 pst->external_power_changed(pst);
38 }
39 return 0;
40}
41
Anton Vorontsov4a11b592007-05-04 00:27:45 +040042static void power_supply_changed_work(struct work_struct *work)
43{
44 struct power_supply *psy = container_of(work, struct power_supply,
45 changed_work);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040046
Harvey Harrison0cddc0a2008-04-29 00:58:29 -070047 dev_dbg(psy->dev, "%s\n", __func__);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040048
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -040049 class_for_each_device(power_supply_class, NULL, psy,
Dave Young443cad92008-01-22 13:58:22 +080050 __power_supply_changed_work);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040051
52 power_supply_update_leds(psy);
53
54 kobject_uevent(&psy->dev->kobj, KOBJ_CHANGE);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040055}
56
57void power_supply_changed(struct power_supply *psy)
58{
Harvey Harrison0cddc0a2008-04-29 00:58:29 -070059 dev_dbg(psy->dev, "%s\n", __func__);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040060
61 schedule_work(&psy->changed_work);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040062}
Daniel Mackff3417e2009-07-30 17:42:31 +040063EXPORT_SYMBOL_GPL(power_supply_changed);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040064
Dave Young443cad92008-01-22 13:58:22 +080065static int __power_supply_am_i_supplied(struct device *dev, void *data)
Anton Vorontsov4a11b592007-05-04 00:27:45 +040066{
67 union power_supply_propval ret = {0,};
Dave Young443cad92008-01-22 13:58:22 +080068 struct power_supply *psy = (struct power_supply *)data;
69 struct power_supply *epsy = dev_get_drvdata(dev);
70 int i;
Anton Vorontsov4a11b592007-05-04 00:27:45 +040071
Dave Young443cad92008-01-22 13:58:22 +080072 for (i = 0; i < epsy->num_supplicants; i++) {
73 if (!strcmp(epsy->supplied_to[i], psy->name)) {
74 if (epsy->get_property(epsy,
75 POWER_SUPPLY_PROP_ONLINE, &ret))
76 continue;
77 if (ret.intval)
78 return ret.intval;
Anton Vorontsov4a11b592007-05-04 00:27:45 +040079 }
80 }
Dave Young443cad92008-01-22 13:58:22 +080081 return 0;
82}
Anton Vorontsov4a11b592007-05-04 00:27:45 +040083
Dave Young443cad92008-01-22 13:58:22 +080084int power_supply_am_i_supplied(struct power_supply *psy)
85{
86 int error;
Anton Vorontsov4a11b592007-05-04 00:27:45 +040087
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -040088 error = class_for_each_device(power_supply_class, NULL, psy,
Dave Young443cad92008-01-22 13:58:22 +080089 __power_supply_am_i_supplied);
90
Harvey Harrison0cddc0a2008-04-29 00:58:29 -070091 dev_dbg(psy->dev, "%s %d\n", __func__, error);
Dave Young443cad92008-01-22 13:58:22 +080092
93 return error;
Anton Vorontsov4a11b592007-05-04 00:27:45 +040094}
Daniel Mackff3417e2009-07-30 17:42:31 +040095EXPORT_SYMBOL_GPL(power_supply_am_i_supplied);
Anton Vorontsov4a11b592007-05-04 00:27:45 +040096
Matthew Garrett942ed162008-08-26 21:09:59 +010097static int __power_supply_is_system_supplied(struct device *dev, void *data)
98{
99 union power_supply_propval ret = {0,};
100 struct power_supply *psy = dev_get_drvdata(dev);
Jean Delvare2530daa2011-12-10 22:53:36 +0100101 unsigned int *count = data;
Matthew Garrett942ed162008-08-26 21:09:59 +0100102
Jean Delvare2530daa2011-12-10 22:53:36 +0100103 (*count)++;
Matthew Garrett942ed162008-08-26 21:09:59 +0100104 if (psy->type != POWER_SUPPLY_TYPE_BATTERY) {
105 if (psy->get_property(psy, POWER_SUPPLY_PROP_ONLINE, &ret))
106 return 0;
107 if (ret.intval)
108 return ret.intval;
109 }
110 return 0;
111}
112
113int power_supply_is_system_supplied(void)
114{
115 int error;
Jean Delvare2530daa2011-12-10 22:53:36 +0100116 unsigned int count = 0;
Matthew Garrett942ed162008-08-26 21:09:59 +0100117
Jean Delvare2530daa2011-12-10 22:53:36 +0100118 error = class_for_each_device(power_supply_class, NULL, &count,
Matthew Garrett942ed162008-08-26 21:09:59 +0100119 __power_supply_is_system_supplied);
120
Jean Delvare2530daa2011-12-10 22:53:36 +0100121 /*
122 * If no power class device was found at all, most probably we are
123 * running on a desktop system, so assume we are on mains power.
124 */
125 if (count == 0)
126 return 1;
127
Matthew Garrett942ed162008-08-26 21:09:59 +0100128 return error;
129}
Daniel Mackff3417e2009-07-30 17:42:31 +0400130EXPORT_SYMBOL_GPL(power_supply_is_system_supplied);
Matthew Garrett942ed162008-08-26 21:09:59 +0100131
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200132int power_supply_set_battery_charged(struct power_supply *psy)
133{
134 if (psy->type == POWER_SUPPLY_TYPE_BATTERY && psy->set_charged) {
135 psy->set_charged(psy);
136 return 0;
137 }
138
139 return -EINVAL;
140}
141EXPORT_SYMBOL_GPL(power_supply_set_battery_charged);
142
143static int power_supply_match_device_by_name(struct device *dev, void *data)
144{
145 const char *name = data;
146 struct power_supply *psy = dev_get_drvdata(dev);
147
148 return strcmp(psy->name, name) == 0;
149}
150
151struct power_supply *power_supply_get_by_name(char *name)
152{
153 struct device *dev = class_find_device(power_supply_class, NULL, name,
154 power_supply_match_device_by_name);
155
156 return dev ? dev_get_drvdata(dev) : NULL;
157}
158EXPORT_SYMBOL_GPL(power_supply_get_by_name);
159
Jeremy Fitzhardinge83516652011-12-07 09:15:45 -0800160int power_supply_powers(struct power_supply *psy, struct device *dev)
161{
Anton Vorontsov93278d12012-01-05 19:17:25 +0400162 return sysfs_create_link(&psy->dev->kobj, &dev->kobj, "powers");
Jeremy Fitzhardinge83516652011-12-07 09:15:45 -0800163}
164EXPORT_SYMBOL_GPL(power_supply_powers);
165
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200166static void power_supply_dev_release(struct device *dev)
167{
168 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
169 kfree(dev);
170}
171
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400172int power_supply_register(struct device *parent, struct power_supply *psy)
173{
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200174 struct device *dev;
175 int rc;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400176
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200177 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
178 if (!dev)
179 return -ENOMEM;
180
181 device_initialize(dev);
182
183 dev->class = power_supply_class;
184 dev->type = &power_supply_dev_type;
185 dev->parent = parent;
186 dev->release = power_supply_dev_release;
187 dev_set_drvdata(dev, psy);
188 psy->dev = dev;
189
Lars-Peter Clausen97774672011-02-21 15:34:19 +0100190 INIT_WORK(&psy->changed_work, power_supply_changed_work);
191
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200192 rc = kobject_set_name(&dev->kobj, "%s", psy->name);
193 if (rc)
194 goto kobject_set_name_failed;
195
196 rc = device_add(dev);
197 if (rc)
198 goto device_add_failed;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400199
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400200 rc = power_supply_create_triggers(psy);
201 if (rc)
202 goto create_triggers_failed;
203
204 power_supply_changed(psy);
205
206 goto success;
207
208create_triggers_failed:
Vasiliy Kulikov3a2dbd62010-11-19 21:41:58 +0300209 device_del(dev);
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200210kobject_set_name_failed:
211device_add_failed:
Vasiliy Kulikov3a2dbd62010-11-19 21:41:58 +0300212 put_device(dev);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400213success:
214 return rc;
215}
Daniel Mackff3417e2009-07-30 17:42:31 +0400216EXPORT_SYMBOL_GPL(power_supply_register);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400217
218void power_supply_unregister(struct power_supply *psy)
219{
Tejun Heobc51e7f2010-12-11 17:51:45 +0100220 cancel_work_sync(&psy->changed_work);
Jeremy Fitzhardinge83516652011-12-07 09:15:45 -0800221 sysfs_remove_link(&psy->dev->kobj, "powers");
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400222 power_supply_remove_triggers(psy);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400223 device_unregister(psy->dev);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400224}
Daniel Mackff3417e2009-07-30 17:42:31 +0400225EXPORT_SYMBOL_GPL(power_supply_unregister);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400226
227static int __init power_supply_class_init(void)
228{
229 power_supply_class = class_create(THIS_MODULE, "power_supply");
230
231 if (IS_ERR(power_supply_class))
232 return PTR_ERR(power_supply_class);
233
234 power_supply_class->dev_uevent = power_supply_uevent;
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200235 power_supply_init_attrs(&power_supply_dev_type);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400236
237 return 0;
238}
239
240static void __exit power_supply_class_exit(void)
241{
242 class_destroy(power_supply_class);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400243}
244
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400245subsys_initcall(power_supply_class_init);
246module_exit(power_supply_class_exit);
247
248MODULE_DESCRIPTION("Universal power supply monitor class");
249MODULE_AUTHOR("Ian Molton <spyro@f2s.com>, "
250 "Szabolcs Gyurko, "
251 "Anton Vorontsov <cbou@mail.ru>");
252MODULE_LICENSE("GPL");