blob: f6c92d1d781115857e8d878b193d50af0724bfd8 [file] [log] [blame]
Anton Vorontsova1e50fd2010-05-17 23:46:45 +04001/*
2 * Power supply driver for testing.
3 *
4 * Copyright 2010 Anton Vorontsov <cbouatmailru@gmail.com>
5 *
John Stultzf17ef9b2011-04-25 20:25:24 -07006 * Dynamic module parameter code from the Virtual Battery Driver
7 * Copyright (C) 2008 Pylone, Inc.
8 * By: Masashi YOKOTA <yokota@pylone.jp>
9 * Originally found here:
10 * http://downloads.pylone.jp/src/virtual_battery/virtual_battery-0.0.1.tar.bz2
11 *
Anton Vorontsova1e50fd2010-05-17 23:46:45 +040012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 */
16
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/power_supply.h>
20#include <linux/errno.h>
21#include <linux/delay.h>
22#include <linux/vermagic.h>
23
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +010024enum test_power_id {
25 TEST_AC,
26 TEST_BATTERY,
27 TEST_USB,
28 TEST_POWER_NUM,
29};
30
John Stultzf17ef9b2011-04-25 20:25:24 -070031static int ac_online = 1;
Dmitry Eremin-Solenikov73847372012-05-29 13:37:43 +040032static int usb_online = 1;
John Stultzf17ef9b2011-04-25 20:25:24 -070033static int battery_status = POWER_SUPPLY_STATUS_DISCHARGING;
34static int battery_health = POWER_SUPPLY_HEALTH_GOOD;
35static int battery_present = 1; /* true */
36static int battery_technology = POWER_SUPPLY_TECHNOLOGY_LION;
37static int battery_capacity = 50;
Dmitry Eremin-Solenikov85a392d2012-05-29 13:37:44 +040038static int battery_voltage = 3300;
Anton Vorontsova1e50fd2010-05-17 23:46:45 +040039
Andrey Gelman9239ebc2013-01-27 22:16:33 +020040static bool module_initialized;
41
Anton Vorontsova1e50fd2010-05-17 23:46:45 +040042static int test_power_get_ac_property(struct power_supply *psy,
43 enum power_supply_property psp,
44 union power_supply_propval *val)
45{
46 switch (psp) {
47 case POWER_SUPPLY_PROP_ONLINE:
John Stultzf17ef9b2011-04-25 20:25:24 -070048 val->intval = ac_online;
Anton Vorontsova1e50fd2010-05-17 23:46:45 +040049 break;
50 default:
51 return -EINVAL;
52 }
53 return 0;
54}
55
Dmitry Eremin-Solenikov73847372012-05-29 13:37:43 +040056static int test_power_get_usb_property(struct power_supply *psy,
57 enum power_supply_property psp,
58 union power_supply_propval *val)
59{
60 switch (psp) {
61 case POWER_SUPPLY_PROP_ONLINE:
62 val->intval = usb_online;
63 break;
64 default:
65 return -EINVAL;
66 }
67 return 0;
68}
69
Anton Vorontsova1e50fd2010-05-17 23:46:45 +040070static int test_power_get_battery_property(struct power_supply *psy,
71 enum power_supply_property psp,
72 union power_supply_propval *val)
73{
74 switch (psp) {
75 case POWER_SUPPLY_PROP_MODEL_NAME:
76 val->strval = "Test battery";
77 break;
78 case POWER_SUPPLY_PROP_MANUFACTURER:
79 val->strval = "Linux";
80 break;
81 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
82 val->strval = UTS_RELEASE;
83 break;
84 case POWER_SUPPLY_PROP_STATUS:
John Stultzf17ef9b2011-04-25 20:25:24 -070085 val->intval = battery_status;
Anton Vorontsova1e50fd2010-05-17 23:46:45 +040086 break;
87 case POWER_SUPPLY_PROP_CHARGE_TYPE:
88 val->intval = POWER_SUPPLY_CHARGE_TYPE_FAST;
89 break;
90 case POWER_SUPPLY_PROP_HEALTH:
John Stultzf17ef9b2011-04-25 20:25:24 -070091 val->intval = battery_health;
92 break;
93 case POWER_SUPPLY_PROP_PRESENT:
94 val->intval = battery_present;
Anton Vorontsova1e50fd2010-05-17 23:46:45 +040095 break;
96 case POWER_SUPPLY_PROP_TECHNOLOGY:
John Stultzf17ef9b2011-04-25 20:25:24 -070097 val->intval = battery_technology;
Anton Vorontsova1e50fd2010-05-17 23:46:45 +040098 break;
99 case POWER_SUPPLY_PROP_CAPACITY_LEVEL:
100 val->intval = POWER_SUPPLY_CAPACITY_LEVEL_NORMAL;
101 break;
102 case POWER_SUPPLY_PROP_CAPACITY:
John Stultzf17ef9b2011-04-25 20:25:24 -0700103 case POWER_SUPPLY_PROP_CHARGE_NOW:
104 val->intval = battery_capacity;
105 break;
106 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
107 case POWER_SUPPLY_PROP_CHARGE_FULL:
108 val->intval = 100;
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400109 break;
110 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG:
111 case POWER_SUPPLY_PROP_TIME_TO_FULL_NOW:
112 val->intval = 3600;
113 break;
Dmitry Eremin-Solenikov85a392d2012-05-29 13:37:44 +0400114 case POWER_SUPPLY_PROP_TEMP:
115 val->intval = 26;
116 break;
117 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
118 val->intval = battery_voltage;
119 break;
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400120 default:
121 pr_info("%s: some properties deliberately report errors.\n",
122 __func__);
123 return -EINVAL;
124 }
125 return 0;
126}
127
128static enum power_supply_property test_power_ac_props[] = {
129 POWER_SUPPLY_PROP_ONLINE,
130};
131
132static enum power_supply_property test_power_battery_props[] = {
133 POWER_SUPPLY_PROP_STATUS,
134 POWER_SUPPLY_PROP_CHARGE_TYPE,
135 POWER_SUPPLY_PROP_HEALTH,
John Stultzf17ef9b2011-04-25 20:25:24 -0700136 POWER_SUPPLY_PROP_PRESENT,
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400137 POWER_SUPPLY_PROP_TECHNOLOGY,
John Stultzf17ef9b2011-04-25 20:25:24 -0700138 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400139 POWER_SUPPLY_PROP_CHARGE_FULL,
John Stultzf17ef9b2011-04-25 20:25:24 -0700140 POWER_SUPPLY_PROP_CHARGE_NOW,
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400141 POWER_SUPPLY_PROP_CAPACITY,
142 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
143 POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG,
144 POWER_SUPPLY_PROP_TIME_TO_FULL_NOW,
145 POWER_SUPPLY_PROP_MODEL_NAME,
146 POWER_SUPPLY_PROP_MANUFACTURER,
147 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Dmitry Eremin-Solenikov85a392d2012-05-29 13:37:44 +0400148 POWER_SUPPLY_PROP_TEMP,
149 POWER_SUPPLY_PROP_VOLTAGE_NOW,
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400150};
151
152static char *test_power_ac_supplied_to[] = {
153 "test_battery",
154};
155
156static struct power_supply test_power_supplies[] = {
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100157 [TEST_AC] = {
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400158 .name = "test_ac",
159 .type = POWER_SUPPLY_TYPE_MAINS,
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400160 .properties = test_power_ac_props,
161 .num_properties = ARRAY_SIZE(test_power_ac_props),
162 .get_property = test_power_get_ac_property,
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100163 },
164 [TEST_BATTERY] = {
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400165 .name = "test_battery",
166 .type = POWER_SUPPLY_TYPE_BATTERY,
167 .properties = test_power_battery_props,
168 .num_properties = ARRAY_SIZE(test_power_battery_props),
169 .get_property = test_power_get_battery_property,
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100170 },
171 [TEST_USB] = {
Dmitry Eremin-Solenikov73847372012-05-29 13:37:43 +0400172 .name = "test_usb",
173 .type = POWER_SUPPLY_TYPE_USB,
Dmitry Eremin-Solenikov73847372012-05-29 13:37:43 +0400174 .properties = test_power_ac_props,
175 .num_properties = ARRAY_SIZE(test_power_ac_props),
176 .get_property = test_power_get_usb_property,
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400177 },
178};
179
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100180static const struct power_supply_config test_power_configs[] = {
181 {
182 /* test_ac */
183 .supplied_to = test_power_ac_supplied_to,
184 .num_supplicants = ARRAY_SIZE(test_power_ac_supplied_to),
185 }, {
186 /* test_battery */
187 }, {
188 /* test_usb */
189 .supplied_to = test_power_ac_supplied_to,
190 .num_supplicants = ARRAY_SIZE(test_power_ac_supplied_to),
191 },
192};
John Stultzf17ef9b2011-04-25 20:25:24 -0700193
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400194static int __init test_power_init(void)
195{
196 int i;
197 int ret;
198
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100199 BUILD_BUG_ON(TEST_POWER_NUM != ARRAY_SIZE(test_power_supplies));
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100200 BUILD_BUG_ON(TEST_POWER_NUM != ARRAY_SIZE(test_power_configs));
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100201
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400202 for (i = 0; i < ARRAY_SIZE(test_power_supplies); i++) {
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100203 ret = power_supply_register(NULL, &test_power_supplies[i],
204 &test_power_configs[i]);
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400205 if (ret) {
206 pr_err("%s: failed to register %s\n", __func__,
207 test_power_supplies[i].name);
208 goto failed;
209 }
210 }
211
Andrey Gelman9239ebc2013-01-27 22:16:33 +0200212 module_initialized = true;
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400213 return 0;
214failed:
215 while (--i >= 0)
216 power_supply_unregister(&test_power_supplies[i]);
217 return ret;
218}
219module_init(test_power_init);
220
221static void __exit test_power_exit(void)
222{
223 int i;
224
225 /* Let's see how we handle changes... */
John Stultzf17ef9b2011-04-25 20:25:24 -0700226 ac_online = 0;
Dmitry Eremin-Solenikov73847372012-05-29 13:37:43 +0400227 usb_online = 0;
John Stultzf17ef9b2011-04-25 20:25:24 -0700228 battery_status = POWER_SUPPLY_STATUS_DISCHARGING;
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400229 for (i = 0; i < ARRAY_SIZE(test_power_supplies); i++)
230 power_supply_changed(&test_power_supplies[i]);
231 pr_info("%s: 'changed' event sent, sleeping for 10 seconds...\n",
232 __func__);
233 ssleep(10);
234
235 for (i = 0; i < ARRAY_SIZE(test_power_supplies); i++)
236 power_supply_unregister(&test_power_supplies[i]);
Andrey Gelman9239ebc2013-01-27 22:16:33 +0200237
238 module_initialized = false;
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400239}
240module_exit(test_power_exit);
241
John Stultzf17ef9b2011-04-25 20:25:24 -0700242
243
244#define MAX_KEYLENGTH 256
245struct battery_property_map {
246 int value;
247 char const *key;
248};
249
250static struct battery_property_map map_ac_online[] = {
Andrey Gelman9239ebc2013-01-27 22:16:33 +0200251 { 0, "off" },
252 { 1, "on" },
John Stultzf17ef9b2011-04-25 20:25:24 -0700253 { -1, NULL },
254};
255
256static struct battery_property_map map_status[] = {
257 { POWER_SUPPLY_STATUS_CHARGING, "charging" },
258 { POWER_SUPPLY_STATUS_DISCHARGING, "discharging" },
259 { POWER_SUPPLY_STATUS_NOT_CHARGING, "not-charging" },
260 { POWER_SUPPLY_STATUS_FULL, "full" },
261 { -1, NULL },
262};
263
264static struct battery_property_map map_health[] = {
265 { POWER_SUPPLY_HEALTH_GOOD, "good" },
266 { POWER_SUPPLY_HEALTH_OVERHEAT, "overheat" },
267 { POWER_SUPPLY_HEALTH_DEAD, "dead" },
268 { POWER_SUPPLY_HEALTH_OVERVOLTAGE, "overvoltage" },
269 { POWER_SUPPLY_HEALTH_UNSPEC_FAILURE, "failure" },
270 { -1, NULL },
271};
272
273static struct battery_property_map map_present[] = {
274 { 0, "false" },
275 { 1, "true" },
276 { -1, NULL },
277};
278
279static struct battery_property_map map_technology[] = {
280 { POWER_SUPPLY_TECHNOLOGY_NiMH, "NiMH" },
281 { POWER_SUPPLY_TECHNOLOGY_LION, "LION" },
282 { POWER_SUPPLY_TECHNOLOGY_LIPO, "LIPO" },
283 { POWER_SUPPLY_TECHNOLOGY_LiFe, "LiFe" },
284 { POWER_SUPPLY_TECHNOLOGY_NiCd, "NiCd" },
285 { POWER_SUPPLY_TECHNOLOGY_LiMn, "LiMn" },
286 { -1, NULL },
287};
288
289
290static int map_get_value(struct battery_property_map *map, const char *key,
291 int def_val)
292{
293 char buf[MAX_KEYLENGTH];
294 int cr;
295
296 strncpy(buf, key, MAX_KEYLENGTH);
297 buf[MAX_KEYLENGTH-1] = '\0';
298
299 cr = strnlen(buf, MAX_KEYLENGTH) - 1;
300 if (buf[cr] == '\n')
301 buf[cr] = '\0';
302
303 while (map->key) {
304 if (strncasecmp(map->key, buf, MAX_KEYLENGTH) == 0)
305 return map->value;
306 map++;
307 }
308
309 return def_val;
310}
311
312
313static const char *map_get_key(struct battery_property_map *map, int value,
314 const char *def_key)
315{
316 while (map->key) {
317 if (map->value == value)
318 return map->key;
319 map++;
320 }
321
322 return def_key;
323}
324
Andrey Gelman9239ebc2013-01-27 22:16:33 +0200325static inline void signal_power_supply_changed(struct power_supply *psy)
326{
327 if (module_initialized)
328 power_supply_changed(psy);
329}
330
John Stultzf17ef9b2011-04-25 20:25:24 -0700331static int param_set_ac_online(const char *key, const struct kernel_param *kp)
332{
333 ac_online = map_get_value(map_ac_online, key, ac_online);
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100334 signal_power_supply_changed(&test_power_supplies[TEST_AC]);
John Stultzf17ef9b2011-04-25 20:25:24 -0700335 return 0;
336}
337
338static int param_get_ac_online(char *buffer, const struct kernel_param *kp)
339{
340 strcpy(buffer, map_get_key(map_ac_online, ac_online, "unknown"));
341 return strlen(buffer);
342}
343
Dmitry Eremin-Solenikov73847372012-05-29 13:37:43 +0400344static int param_set_usb_online(const char *key, const struct kernel_param *kp)
345{
346 usb_online = map_get_value(map_ac_online, key, usb_online);
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100347 signal_power_supply_changed(&test_power_supplies[TEST_USB]);
Dmitry Eremin-Solenikov73847372012-05-29 13:37:43 +0400348 return 0;
349}
350
351static int param_get_usb_online(char *buffer, const struct kernel_param *kp)
352{
353 strcpy(buffer, map_get_key(map_ac_online, usb_online, "unknown"));
354 return strlen(buffer);
355}
356
John Stultzf17ef9b2011-04-25 20:25:24 -0700357static int param_set_battery_status(const char *key,
358 const struct kernel_param *kp)
359{
360 battery_status = map_get_value(map_status, key, battery_status);
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100361 signal_power_supply_changed(&test_power_supplies[TEST_BATTERY]);
John Stultzf17ef9b2011-04-25 20:25:24 -0700362 return 0;
363}
364
365static int param_get_battery_status(char *buffer, const struct kernel_param *kp)
366{
367 strcpy(buffer, map_get_key(map_status, battery_status, "unknown"));
368 return strlen(buffer);
369}
370
371static int param_set_battery_health(const char *key,
372 const struct kernel_param *kp)
373{
374 battery_health = map_get_value(map_health, key, battery_health);
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100375 signal_power_supply_changed(&test_power_supplies[TEST_BATTERY]);
John Stultzf17ef9b2011-04-25 20:25:24 -0700376 return 0;
377}
378
379static int param_get_battery_health(char *buffer, const struct kernel_param *kp)
380{
381 strcpy(buffer, map_get_key(map_health, battery_health, "unknown"));
382 return strlen(buffer);
383}
384
385static int param_set_battery_present(const char *key,
386 const struct kernel_param *kp)
387{
388 battery_present = map_get_value(map_present, key, battery_present);
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100389 signal_power_supply_changed(&test_power_supplies[TEST_AC]);
John Stultzf17ef9b2011-04-25 20:25:24 -0700390 return 0;
391}
392
393static int param_get_battery_present(char *buffer,
394 const struct kernel_param *kp)
395{
396 strcpy(buffer, map_get_key(map_present, battery_present, "unknown"));
397 return strlen(buffer);
398}
399
400static int param_set_battery_technology(const char *key,
401 const struct kernel_param *kp)
402{
403 battery_technology = map_get_value(map_technology, key,
404 battery_technology);
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100405 signal_power_supply_changed(&test_power_supplies[TEST_BATTERY]);
John Stultzf17ef9b2011-04-25 20:25:24 -0700406 return 0;
407}
408
409static int param_get_battery_technology(char *buffer,
410 const struct kernel_param *kp)
411{
412 strcpy(buffer,
413 map_get_key(map_technology, battery_technology, "unknown"));
414 return strlen(buffer);
415}
416
417static int param_set_battery_capacity(const char *key,
418 const struct kernel_param *kp)
419{
420 int tmp;
421
422 if (1 != sscanf(key, "%d", &tmp))
423 return -EINVAL;
424
425 battery_capacity = tmp;
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100426 signal_power_supply_changed(&test_power_supplies[TEST_BATTERY]);
John Stultzf17ef9b2011-04-25 20:25:24 -0700427 return 0;
428}
429
430#define param_get_battery_capacity param_get_int
431
Dmitry Eremin-Solenikov85a392d2012-05-29 13:37:44 +0400432static int param_set_battery_voltage(const char *key,
433 const struct kernel_param *kp)
434{
435 int tmp;
436
437 if (1 != sscanf(key, "%d", &tmp))
438 return -EINVAL;
439
440 battery_voltage = tmp;
Krzysztof Kozlowskia30067b2015-01-23 11:38:00 +0100441 signal_power_supply_changed(&test_power_supplies[TEST_BATTERY]);
Dmitry Eremin-Solenikov85a392d2012-05-29 13:37:44 +0400442 return 0;
443}
444
445#define param_get_battery_voltage param_get_int
446
John Stultzf17ef9b2011-04-25 20:25:24 -0700447static struct kernel_param_ops param_ops_ac_online = {
448 .set = param_set_ac_online,
449 .get = param_get_ac_online,
450};
451
Dmitry Eremin-Solenikov73847372012-05-29 13:37:43 +0400452static struct kernel_param_ops param_ops_usb_online = {
453 .set = param_set_usb_online,
454 .get = param_get_usb_online,
455};
456
John Stultzf17ef9b2011-04-25 20:25:24 -0700457static struct kernel_param_ops param_ops_battery_status = {
458 .set = param_set_battery_status,
459 .get = param_get_battery_status,
460};
461
462static struct kernel_param_ops param_ops_battery_present = {
463 .set = param_set_battery_present,
464 .get = param_get_battery_present,
465};
466
467static struct kernel_param_ops param_ops_battery_technology = {
468 .set = param_set_battery_technology,
469 .get = param_get_battery_technology,
470};
471
472static struct kernel_param_ops param_ops_battery_health = {
473 .set = param_set_battery_health,
474 .get = param_get_battery_health,
475};
476
477static struct kernel_param_ops param_ops_battery_capacity = {
478 .set = param_set_battery_capacity,
479 .get = param_get_battery_capacity,
480};
481
Dmitry Eremin-Solenikov85a392d2012-05-29 13:37:44 +0400482static struct kernel_param_ops param_ops_battery_voltage = {
483 .set = param_set_battery_voltage,
484 .get = param_get_battery_voltage,
485};
John Stultzf17ef9b2011-04-25 20:25:24 -0700486
487#define param_check_ac_online(name, p) __param_check(name, p, void);
Dmitry Eremin-Solenikov73847372012-05-29 13:37:43 +0400488#define param_check_usb_online(name, p) __param_check(name, p, void);
John Stultzf17ef9b2011-04-25 20:25:24 -0700489#define param_check_battery_status(name, p) __param_check(name, p, void);
490#define param_check_battery_present(name, p) __param_check(name, p, void);
491#define param_check_battery_technology(name, p) __param_check(name, p, void);
492#define param_check_battery_health(name, p) __param_check(name, p, void);
493#define param_check_battery_capacity(name, p) __param_check(name, p, void);
Dmitry Eremin-Solenikov85a392d2012-05-29 13:37:44 +0400494#define param_check_battery_voltage(name, p) __param_check(name, p, void);
John Stultzf17ef9b2011-04-25 20:25:24 -0700495
496
497module_param(ac_online, ac_online, 0644);
498MODULE_PARM_DESC(ac_online, "AC charging state <on|off>");
499
Dmitry Eremin-Solenikov73847372012-05-29 13:37:43 +0400500module_param(usb_online, usb_online, 0644);
501MODULE_PARM_DESC(usb_online, "USB charging state <on|off>");
502
John Stultzf17ef9b2011-04-25 20:25:24 -0700503module_param(battery_status, battery_status, 0644);
504MODULE_PARM_DESC(battery_status,
505 "battery status <charging|discharging|not-charging|full>");
506
507module_param(battery_present, battery_present, 0644);
508MODULE_PARM_DESC(battery_present,
509 "battery presence state <good|overheat|dead|overvoltage|failure>");
510
511module_param(battery_technology, battery_technology, 0644);
512MODULE_PARM_DESC(battery_technology,
513 "battery technology <NiMH|LION|LIPO|LiFe|NiCd|LiMn>");
514
515module_param(battery_health, battery_health, 0644);
516MODULE_PARM_DESC(battery_health,
517 "battery health state <good|overheat|dead|overvoltage|failure>");
518
519module_param(battery_capacity, battery_capacity, 0644);
520MODULE_PARM_DESC(battery_capacity, "battery capacity (percentage)");
521
Dmitry Eremin-Solenikov85a392d2012-05-29 13:37:44 +0400522module_param(battery_voltage, battery_voltage, 0644);
523MODULE_PARM_DESC(battery_voltage, "battery voltage (millivolts)");
John Stultzf17ef9b2011-04-25 20:25:24 -0700524
Anton Vorontsova1e50fd2010-05-17 23:46:45 +0400525MODULE_DESCRIPTION("Power supply driver for testing");
526MODULE_AUTHOR("Anton Vorontsov <cbouatmailru@gmail.com>");
527MODULE_LICENSE("GPL");