charger-manager: Fix a bug when it unregisters notifier block of extcon
[deliverable/linux.git] / drivers / power / charger-manager.c
CommitLineData
3bb3dbbd
DK
1/*
2 * Copyright (C) 2011 Samsung Electronics Co., Ltd.
3 * MyungJoo Ham <myungjoo.ham@samsung.com>
4 *
5 * This driver enables to monitor battery health and control charger
6 * during suspend-to-mem.
7 * Charger manager depends on other devices. register this later than
8 * the depending devices.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13**/
14
e5409cbd
JP
15#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16
3bb3dbbd
DK
17#include <linux/io.h>
18#include <linux/module.h>
19#include <linux/irq.h>
20#include <linux/interrupt.h>
21#include <linux/rtc.h>
22#include <linux/slab.h>
23#include <linux/workqueue.h>
24#include <linux/platform_device.h>
25#include <linux/power/charger-manager.h>
26#include <linux/regulator/consumer.h>
3950c786 27#include <linux/sysfs.h>
3bb3dbbd 28
dfeccb12
CC
29static const char * const default_event_names[] = {
30 [CM_EVENT_UNKNOWN] = "Unknown",
31 [CM_EVENT_BATT_FULL] = "Battery Full",
32 [CM_EVENT_BATT_IN] = "Battery Inserted",
33 [CM_EVENT_BATT_OUT] = "Battery Pulled Out",
34 [CM_EVENT_EXT_PWR_IN_OUT] = "External Power Attach/Detach",
35 [CM_EVENT_CHG_START_STOP] = "Charging Start/Stop",
36 [CM_EVENT_OTHERS] = "Other battery events"
37};
38
3bb3dbbd
DK
39/*
40 * Regard CM_JIFFIES_SMALL jiffies is small enough to ignore for
41 * delayed works so that we can run delayed works with CM_JIFFIES_SMALL
42 * without any delays.
43 */
44#define CM_JIFFIES_SMALL (2)
45
46/* If y is valid (> 0) and smaller than x, do x = y */
47#define CM_MIN_VALID(x, y) x = (((y > 0) && ((x) > (y))) ? (y) : (x))
48
49/*
50 * Regard CM_RTC_SMALL (sec) is small enough to ignore error in invoking
51 * rtc alarm. It should be 2 or larger
52 */
53#define CM_RTC_SMALL (2)
54
55#define UEVENT_BUF_SIZE 32
56
57static LIST_HEAD(cm_list);
58static DEFINE_MUTEX(cm_list_mtx);
59
60/* About in-suspend (suspend-again) monitoring */
61static struct rtc_device *rtc_dev;
62/*
63 * Backup RTC alarm
64 * Save the wakeup alarm before entering suspend-to-RAM
65 */
66static struct rtc_wkalrm rtc_wkalarm_save;
67/* Backup RTC alarm time in terms of seconds since 01-01-1970 00:00:00 */
68static unsigned long rtc_wkalarm_save_time;
69static bool cm_suspended;
70static bool cm_rtc_set;
71static unsigned long cm_suspend_duration_ms;
72
d829dc75
CC
73/* About normal (not suspended) monitoring */
74static unsigned long polling_jiffy = ULONG_MAX; /* ULONG_MAX: no polling */
75static unsigned long next_polling; /* Next appointed polling time */
76static struct workqueue_struct *cm_wq; /* init at driver add */
77static struct delayed_work cm_monitor_work; /* init at driver add */
78
3bb3dbbd
DK
79/* Global charger-manager description */
80static struct charger_global_desc *g_desc; /* init with setup_charger_manager */
81
82/**
83 * is_batt_present - See if the battery presents in place.
84 * @cm: the Charger Manager representing the battery.
85 */
86static bool is_batt_present(struct charger_manager *cm)
87{
88 union power_supply_propval val;
89 bool present = false;
90 int i, ret;
91
92 switch (cm->desc->battery_present) {
d829dc75
CC
93 case CM_BATTERY_PRESENT:
94 present = true;
95 break;
96 case CM_NO_BATTERY:
97 break;
3bb3dbbd
DK
98 case CM_FUEL_GAUGE:
99 ret = cm->fuel_gauge->get_property(cm->fuel_gauge,
100 POWER_SUPPLY_PROP_PRESENT, &val);
101 if (ret == 0 && val.intval)
102 present = true;
103 break;
104 case CM_CHARGER_STAT:
105 for (i = 0; cm->charger_stat[i]; i++) {
106 ret = cm->charger_stat[i]->get_property(
107 cm->charger_stat[i],
108 POWER_SUPPLY_PROP_PRESENT, &val);
109 if (ret == 0 && val.intval) {
110 present = true;
111 break;
112 }
113 }
114 break;
115 }
116
117 return present;
118}
119
120/**
121 * is_ext_pwr_online - See if an external power source is attached to charge
122 * @cm: the Charger Manager representing the battery.
123 *
124 * Returns true if at least one of the chargers of the battery has an external
125 * power source attached to charge the battery regardless of whether it is
126 * actually charging or not.
127 */
128static bool is_ext_pwr_online(struct charger_manager *cm)
129{
130 union power_supply_propval val;
131 bool online = false;
132 int i, ret;
133
134 /* If at least one of them has one, it's yes. */
135 for (i = 0; cm->charger_stat[i]; i++) {
136 ret = cm->charger_stat[i]->get_property(
137 cm->charger_stat[i],
138 POWER_SUPPLY_PROP_ONLINE, &val);
139 if (ret == 0 && val.intval) {
140 online = true;
141 break;
142 }
143 }
144
145 return online;
146}
147
ad3d13ee
DK
148/**
149 * get_batt_uV - Get the voltage level of the battery
150 * @cm: the Charger Manager representing the battery.
151 * @uV: the voltage level returned.
152 *
153 * Returns 0 if there is no error.
154 * Returns a negative value on error.
155 */
156static int get_batt_uV(struct charger_manager *cm, int *uV)
157{
158 union power_supply_propval val;
159 int ret;
160
bb2a95c2 161 if (!cm->fuel_gauge)
ad3d13ee
DK
162 return -ENODEV;
163
bb2a95c2
AL
164 ret = cm->fuel_gauge->get_property(cm->fuel_gauge,
165 POWER_SUPPLY_PROP_VOLTAGE_NOW, &val);
ad3d13ee
DK
166 if (ret)
167 return ret;
168
169 *uV = val.intval;
170 return 0;
171}
172
3bb3dbbd
DK
173/**
174 * is_charging - Returns true if the battery is being charged.
175 * @cm: the Charger Manager representing the battery.
176 */
177static bool is_charging(struct charger_manager *cm)
178{
179 int i, ret;
180 bool charging = false;
181 union power_supply_propval val;
182
183 /* If there is no battery, it cannot be charged */
184 if (!is_batt_present(cm))
185 return false;
186
187 /* If at least one of the charger is charging, return yes */
188 for (i = 0; cm->charger_stat[i]; i++) {
189 /* 1. The charger sholuld not be DISABLED */
190 if (cm->emergency_stop)
191 continue;
192 if (!cm->charger_enabled)
193 continue;
194
195 /* 2. The charger should be online (ext-power) */
196 ret = cm->charger_stat[i]->get_property(
197 cm->charger_stat[i],
198 POWER_SUPPLY_PROP_ONLINE, &val);
199 if (ret) {
e5409cbd
JP
200 dev_warn(cm->dev, "Cannot read ONLINE value from %s\n",
201 cm->desc->psy_charger_stat[i]);
3bb3dbbd
DK
202 continue;
203 }
204 if (val.intval == 0)
205 continue;
206
207 /*
208 * 3. The charger should not be FULL, DISCHARGING,
209 * or NOT_CHARGING.
210 */
211 ret = cm->charger_stat[i]->get_property(
212 cm->charger_stat[i],
213 POWER_SUPPLY_PROP_STATUS, &val);
214 if (ret) {
e5409cbd
JP
215 dev_warn(cm->dev, "Cannot read STATUS value from %s\n",
216 cm->desc->psy_charger_stat[i]);
3bb3dbbd
DK
217 continue;
218 }
219 if (val.intval == POWER_SUPPLY_STATUS_FULL ||
220 val.intval == POWER_SUPPLY_STATUS_DISCHARGING ||
221 val.intval == POWER_SUPPLY_STATUS_NOT_CHARGING)
222 continue;
223
224 /* Then, this is charging. */
225 charging = true;
226 break;
227 }
228
229 return charging;
230}
231
2ed9e9b6
CC
232/**
233 * is_full_charged - Returns true if the battery is fully charged.
234 * @cm: the Charger Manager representing the battery.
235 */
236static bool is_full_charged(struct charger_manager *cm)
237{
238 struct charger_desc *desc = cm->desc;
239 union power_supply_propval val;
240 int ret = 0;
241 int uV;
242
243 /* If there is no battery, it cannot be charged */
0fa11dbc
CC
244 if (!is_batt_present(cm))
245 return false;
2ed9e9b6
CC
246
247 if (cm->fuel_gauge && desc->fullbatt_full_capacity > 0) {
0fa11dbc
CC
248 val.intval = 0;
249
2ed9e9b6
CC
250 /* Not full if capacity of fuel gauge isn't full */
251 ret = cm->fuel_gauge->get_property(cm->fuel_gauge,
252 POWER_SUPPLY_PROP_CHARGE_FULL, &val);
0fa11dbc
CC
253 if (!ret && val.intval > desc->fullbatt_full_capacity)
254 return true;
2ed9e9b6
CC
255 }
256
257 /* Full, if it's over the fullbatt voltage */
258 if (desc->fullbatt_uV > 0) {
259 ret = get_batt_uV(cm, &uV);
0fa11dbc
CC
260 if (!ret && uV >= desc->fullbatt_uV)
261 return true;
2ed9e9b6
CC
262 }
263
264 /* Full, if the capacity is more than fullbatt_soc */
265 if (cm->fuel_gauge && desc->fullbatt_soc > 0) {
0fa11dbc
CC
266 val.intval = 0;
267
2ed9e9b6
CC
268 ret = cm->fuel_gauge->get_property(cm->fuel_gauge,
269 POWER_SUPPLY_PROP_CAPACITY, &val);
0fa11dbc
CC
270 if (!ret && val.intval >= desc->fullbatt_soc)
271 return true;
2ed9e9b6
CC
272 }
273
0fa11dbc 274 return false;
2ed9e9b6
CC
275}
276
3bb3dbbd
DK
277/**
278 * is_polling_required - Return true if need to continue polling for this CM.
279 * @cm: the Charger Manager representing the battery.
280 */
281static bool is_polling_required(struct charger_manager *cm)
282{
283 switch (cm->desc->polling_mode) {
284 case CM_POLL_DISABLE:
285 return false;
286 case CM_POLL_ALWAYS:
287 return true;
288 case CM_POLL_EXTERNAL_POWER_ONLY:
289 return is_ext_pwr_online(cm);
290 case CM_POLL_CHARGING_ONLY:
291 return is_charging(cm);
292 default:
293 dev_warn(cm->dev, "Incorrect polling_mode (%d)\n",
e5409cbd 294 cm->desc->polling_mode);
3bb3dbbd
DK
295 }
296
297 return false;
298}
299
300/**
301 * try_charger_enable - Enable/Disable chargers altogether
302 * @cm: the Charger Manager representing the battery.
303 * @enable: true: enable / false: disable
304 *
305 * Note that Charger Manager keeps the charger enabled regardless whether
306 * the charger is charging or not (because battery is full or no external
307 * power source exists) except when CM needs to disable chargers forcibly
308 * bacause of emergency causes; when the battery is overheated or too cold.
309 */
310static int try_charger_enable(struct charger_manager *cm, bool enable)
311{
312 int err = 0, i;
313 struct charger_desc *desc = cm->desc;
314
315 /* Ignore if it's redundent command */
bb2a95c2 316 if (enable == cm->charger_enabled)
3bb3dbbd
DK
317 return 0;
318
319 if (enable) {
320 if (cm->emergency_stop)
321 return -EAGAIN;
8fcfe088
CC
322
323 /*
324 * Save start time of charging to limit
325 * maximum possible charging time.
326 */
327 cm->charging_start_time = ktime_to_ms(ktime_get());
328 cm->charging_end_time = 0;
329
dbb61fc7 330 for (i = 0 ; i < desc->num_charger_regulators ; i++) {
3950c786
CC
331 if (desc->charger_regulators[i].externally_control)
332 continue;
333
dbb61fc7
CC
334 err = regulator_enable(desc->charger_regulators[i].consumer);
335 if (err < 0) {
e5409cbd
JP
336 dev_warn(cm->dev, "Cannot enable %s regulator\n",
337 desc->charger_regulators[i].regulator_name);
dbb61fc7
CC
338 }
339 }
3bb3dbbd 340 } else {
8fcfe088
CC
341 /*
342 * Save end time of charging to maintain fully charged state
343 * of battery after full-batt.
344 */
345 cm->charging_start_time = 0;
346 cm->charging_end_time = ktime_to_ms(ktime_get());
347
dbb61fc7 348 for (i = 0 ; i < desc->num_charger_regulators ; i++) {
3950c786
CC
349 if (desc->charger_regulators[i].externally_control)
350 continue;
351
dbb61fc7
CC
352 err = regulator_disable(desc->charger_regulators[i].consumer);
353 if (err < 0) {
e5409cbd
JP
354 dev_warn(cm->dev, "Cannot disable %s regulator\n",
355 desc->charger_regulators[i].regulator_name);
dbb61fc7
CC
356 }
357 }
358
3bb3dbbd
DK
359 /*
360 * Abnormal battery state - Stop charging forcibly,
361 * even if charger was enabled at the other places
362 */
3bb3dbbd
DK
363 for (i = 0; i < desc->num_charger_regulators; i++) {
364 if (regulator_is_enabled(
365 desc->charger_regulators[i].consumer)) {
366 regulator_force_disable(
367 desc->charger_regulators[i].consumer);
e5409cbd
JP
368 dev_warn(cm->dev, "Disable regulator(%s) forcibly\n",
369 desc->charger_regulators[i].regulator_name);
3bb3dbbd
DK
370 }
371 }
372 }
373
374 if (!err)
375 cm->charger_enabled = enable;
376
377 return err;
378}
379
d829dc75
CC
380/**
381 * try_charger_restart - Restart charging.
382 * @cm: the Charger Manager representing the battery.
383 *
384 * Restart charging by turning off and on the charger.
385 */
386static int try_charger_restart(struct charger_manager *cm)
387{
388 int err;
389
390 if (cm->emergency_stop)
391 return -EAGAIN;
392
393 err = try_charger_enable(cm, false);
394 if (err)
395 return err;
396
397 return try_charger_enable(cm, true);
398}
399
3bb3dbbd
DK
400/**
401 * uevent_notify - Let users know something has changed.
402 * @cm: the Charger Manager representing the battery.
403 * @event: the event string.
404 *
405 * If @event is null, it implies that uevent_notify is called
406 * by resume function. When called in the resume function, cm_suspended
407 * should be already reset to false in order to let uevent_notify
408 * notify the recent event during the suspend to users. While
409 * suspended, uevent_notify does not notify users, but tracks
410 * events so that uevent_notify can notify users later after resumed.
411 */
412static void uevent_notify(struct charger_manager *cm, const char *event)
413{
414 static char env_str[UEVENT_BUF_SIZE + 1] = "";
415 static char env_str_save[UEVENT_BUF_SIZE + 1] = "";
416
417 if (cm_suspended) {
418 /* Nothing in suspended-event buffer */
419 if (env_str_save[0] == 0) {
420 if (!strncmp(env_str, event, UEVENT_BUF_SIZE))
421 return; /* status not changed */
422 strncpy(env_str_save, event, UEVENT_BUF_SIZE);
423 return;
424 }
425
426 if (!strncmp(env_str_save, event, UEVENT_BUF_SIZE))
427 return; /* Duplicated. */
bb2a95c2 428 strncpy(env_str_save, event, UEVENT_BUF_SIZE);
3bb3dbbd
DK
429 return;
430 }
431
432 if (event == NULL) {
433 /* No messages pending */
434 if (!env_str_save[0])
435 return;
436
437 strncpy(env_str, env_str_save, UEVENT_BUF_SIZE);
438 kobject_uevent(&cm->dev->kobj, KOBJ_CHANGE);
439 env_str_save[0] = 0;
440
441 return;
442 }
443
444 /* status not changed */
445 if (!strncmp(env_str, event, UEVENT_BUF_SIZE))
446 return;
447
448 /* save the status and notify the update */
449 strncpy(env_str, event, UEVENT_BUF_SIZE);
450 kobject_uevent(&cm->dev->kobj, KOBJ_CHANGE);
451
e5409cbd 452 dev_info(cm->dev, "%s\n", event);
3bb3dbbd
DK
453}
454
d829dc75
CC
455/**
456 * fullbatt_vchk - Check voltage drop some times after "FULL" event.
457 * @work: the work_struct appointing the function
458 *
459 * If a user has designated "fullbatt_vchkdrop_ms/uV" values with
460 * charger_desc, Charger Manager checks voltage drop after the battery
461 * "FULL" event. It checks whether the voltage has dropped more than
462 * fullbatt_vchkdrop_uV by calling this function after fullbatt_vchkrop_ms.
463 */
464static void fullbatt_vchk(struct work_struct *work)
465{
466 struct delayed_work *dwork = to_delayed_work(work);
467 struct charger_manager *cm = container_of(dwork,
468 struct charger_manager, fullbatt_vchk_work);
469 struct charger_desc *desc = cm->desc;
470 int batt_uV, err, diff;
471
472 /* remove the appointment for fullbatt_vchk */
473 cm->fullbatt_vchk_jiffies_at = 0;
474
475 if (!desc->fullbatt_vchkdrop_uV || !desc->fullbatt_vchkdrop_ms)
476 return;
477
478 err = get_batt_uV(cm, &batt_uV);
479 if (err) {
e5409cbd 480 dev_err(cm->dev, "%s: get_batt_uV error(%d)\n", __func__, err);
d829dc75
CC
481 return;
482 }
483
f36b9ddb
CC
484 diff = desc->fullbatt_uV - batt_uV;
485 if (diff < 0)
486 return;
d829dc75 487
e5409cbd 488 dev_info(cm->dev, "VBATT dropped %duV after full-batt\n", diff);
d829dc75
CC
489
490 if (diff > desc->fullbatt_vchkdrop_uV) {
491 try_charger_restart(cm);
8fcfe088
CC
492 uevent_notify(cm, "Recharging");
493 }
494}
495
496/**
497 * check_charging_duration - Monitor charging/discharging duration
498 * @cm: the Charger Manager representing the battery.
499 *
500 * If whole charging duration exceed 'charging_max_duration_ms',
501 * cm stop charging to prevent overcharge/overheat. If discharging
502 * duration exceed 'discharging _max_duration_ms', charger cable is
503 * attached, after full-batt, cm start charging to maintain fully
504 * charged state for battery.
505 */
506static int check_charging_duration(struct charger_manager *cm)
507{
508 struct charger_desc *desc = cm->desc;
509 u64 curr = ktime_to_ms(ktime_get());
510 u64 duration;
511 int ret = false;
512
513 if (!desc->charging_max_duration_ms &&
514 !desc->discharging_max_duration_ms)
515 return ret;
516
517 if (cm->charger_enabled) {
518 duration = curr - cm->charging_start_time;
519
520 if (duration > desc->charging_max_duration_ms) {
e5409cbd 521 dev_info(cm->dev, "Charging duration exceed %lldms\n",
8fcfe088
CC
522 desc->charging_max_duration_ms);
523 uevent_notify(cm, "Discharging");
524 try_charger_enable(cm, false);
525 ret = true;
526 }
527 } else if (is_ext_pwr_online(cm) && !cm->charger_enabled) {
528 duration = curr - cm->charging_end_time;
529
530 if (duration > desc->charging_max_duration_ms &&
531 is_ext_pwr_online(cm)) {
e5409cbd 532 dev_info(cm->dev, "Discharging duration exceed %lldms\n",
8fcfe088 533 desc->discharging_max_duration_ms);
e5409cbd 534 uevent_notify(cm, "Recharging");
8fcfe088
CC
535 try_charger_enable(cm, true);
536 ret = true;
537 }
d829dc75 538 }
8fcfe088
CC
539
540 return ret;
d829dc75
CC
541}
542
3bb3dbbd
DK
543/**
544 * _cm_monitor - Monitor the temperature and return true for exceptions.
545 * @cm: the Charger Manager representing the battery.
546 *
547 * Returns true if there is an event to notify for the battery.
548 * (True if the status of "emergency_stop" changes)
549 */
550static bool _cm_monitor(struct charger_manager *cm)
551{
552 struct charger_desc *desc = cm->desc;
553 int temp = desc->temperature_out_of_range(&cm->last_temp_mC);
554
555 dev_dbg(cm->dev, "monitoring (%2.2d.%3.3dC)\n",
556 cm->last_temp_mC / 1000, cm->last_temp_mC % 1000);
557
2ed9e9b6
CC
558 /* It has been stopped already */
559 if (temp && cm->emergency_stop)
3bb3dbbd
DK
560 return false;
561
2ed9e9b6
CC
562 /*
563 * Check temperature whether overheat or cold.
564 * If temperature is out of range normal state, stop charging.
565 */
3bb3dbbd
DK
566 if (temp) {
567 cm->emergency_stop = temp;
568 if (!try_charger_enable(cm, false)) {
569 if (temp > 0)
570 uevent_notify(cm, "OVERHEAT");
571 else
572 uevent_notify(cm, "COLD");
573 }
2ed9e9b6 574
8fcfe088
CC
575 /*
576 * Check whole charging duration and discharing duration
577 * after full-batt.
578 */
579 } else if (!cm->emergency_stop && check_charging_duration(cm)) {
580 dev_dbg(cm->dev,
e5409cbd 581 "Charging/Discharging duration is out of range\n");
2ed9e9b6
CC
582 /*
583 * Check dropped voltage of battery. If battery voltage is more
584 * dropped than fullbatt_vchkdrop_uV after fully charged state,
585 * charger-manager have to recharge battery.
586 */
587 } else if (!cm->emergency_stop && is_ext_pwr_online(cm) &&
588 !cm->charger_enabled) {
589 fullbatt_vchk(&cm->fullbatt_vchk_work.work);
590
591 /*
592 * Check whether fully charged state to protect overcharge
593 * if charger-manager is charging for battery.
594 */
595 } else if (!cm->emergency_stop && is_full_charged(cm) &&
596 cm->charger_enabled) {
e5409cbd 597 dev_info(cm->dev, "EVENT_HANDLE: Battery Fully Charged\n");
2ed9e9b6
CC
598 uevent_notify(cm, default_event_names[CM_EVENT_BATT_FULL]);
599
600 try_charger_enable(cm, false);
601
602 fullbatt_vchk(&cm->fullbatt_vchk_work.work);
3bb3dbbd
DK
603 } else {
604 cm->emergency_stop = 0;
2ed9e9b6
CC
605 if (is_ext_pwr_online(cm)) {
606 if (!try_charger_enable(cm, true))
607 uevent_notify(cm, "CHARGING");
608 }
3bb3dbbd
DK
609 }
610
611 return true;
612}
613
614/**
615 * cm_monitor - Monitor every battery.
616 *
617 * Returns true if there is an event to notify from any of the batteries.
618 * (True if the status of "emergency_stop" changes)
619 */
620static bool cm_monitor(void)
621{
622 bool stop = false;
623 struct charger_manager *cm;
624
625 mutex_lock(&cm_list_mtx);
626
bb2a95c2
AL
627 list_for_each_entry(cm, &cm_list, entry) {
628 if (_cm_monitor(cm))
629 stop = true;
630 }
3bb3dbbd
DK
631
632 mutex_unlock(&cm_list_mtx);
633
634 return stop;
635}
636
d829dc75
CC
637/**
638 * _setup_polling - Setup the next instance of polling.
639 * @work: work_struct of the function _setup_polling.
640 */
641static void _setup_polling(struct work_struct *work)
642{
643 unsigned long min = ULONG_MAX;
644 struct charger_manager *cm;
645 bool keep_polling = false;
646 unsigned long _next_polling;
647
648 mutex_lock(&cm_list_mtx);
649
650 list_for_each_entry(cm, &cm_list, entry) {
651 if (is_polling_required(cm) && cm->desc->polling_interval_ms) {
652 keep_polling = true;
653
654 if (min > cm->desc->polling_interval_ms)
655 min = cm->desc->polling_interval_ms;
656 }
657 }
658
659 polling_jiffy = msecs_to_jiffies(min);
660 if (polling_jiffy <= CM_JIFFIES_SMALL)
661 polling_jiffy = CM_JIFFIES_SMALL + 1;
662
663 if (!keep_polling)
664 polling_jiffy = ULONG_MAX;
665 if (polling_jiffy == ULONG_MAX)
666 goto out;
667
668 WARN(cm_wq == NULL, "charger-manager: workqueue not initialized"
669 ". try it later. %s\n", __func__);
670
2fbb520d
TH
671 /*
672 * Use mod_delayed_work() iff the next polling interval should
673 * occur before the currently scheduled one. If @cm_monitor_work
674 * isn't active, the end result is the same, so no need to worry
675 * about stale @next_polling.
676 */
d829dc75
CC
677 _next_polling = jiffies + polling_jiffy;
678
2fbb520d 679 if (time_before(_next_polling, next_polling)) {
41f63c53 680 mod_delayed_work(cm_wq, &cm_monitor_work, polling_jiffy);
2fbb520d
TH
681 next_polling = _next_polling;
682 } else {
683 if (queue_delayed_work(cm_wq, &cm_monitor_work, polling_jiffy))
684 next_polling = _next_polling;
d829dc75 685 }
d829dc75
CC
686out:
687 mutex_unlock(&cm_list_mtx);
688}
689static DECLARE_WORK(setup_polling, _setup_polling);
690
691/**
692 * cm_monitor_poller - The Monitor / Poller.
693 * @work: work_struct of the function cm_monitor_poller
694 *
695 * During non-suspended state, cm_monitor_poller is used to poll and monitor
696 * the batteries.
697 */
698static void cm_monitor_poller(struct work_struct *work)
699{
700 cm_monitor();
701 schedule_work(&setup_polling);
702}
703
dfeccb12
CC
704/**
705 * fullbatt_handler - Event handler for CM_EVENT_BATT_FULL
706 * @cm: the Charger Manager representing the battery.
707 */
708static void fullbatt_handler(struct charger_manager *cm)
709{
710 struct charger_desc *desc = cm->desc;
711
712 if (!desc->fullbatt_vchkdrop_uV || !desc->fullbatt_vchkdrop_ms)
713 goto out;
714
715 if (cm_suspended)
716 device_set_wakeup_capable(cm->dev, true);
717
41f63c53
TH
718 mod_delayed_work(cm_wq, &cm->fullbatt_vchk_work,
719 msecs_to_jiffies(desc->fullbatt_vchkdrop_ms));
dfeccb12
CC
720 cm->fullbatt_vchk_jiffies_at = jiffies + msecs_to_jiffies(
721 desc->fullbatt_vchkdrop_ms);
722
723 if (cm->fullbatt_vchk_jiffies_at == 0)
724 cm->fullbatt_vchk_jiffies_at = 1;
725
726out:
e5409cbd 727 dev_info(cm->dev, "EVENT_HANDLE: Battery Fully Charged\n");
dfeccb12
CC
728 uevent_notify(cm, default_event_names[CM_EVENT_BATT_FULL]);
729}
730
731/**
732 * battout_handler - Event handler for CM_EVENT_BATT_OUT
733 * @cm: the Charger Manager representing the battery.
734 */
735static void battout_handler(struct charger_manager *cm)
736{
737 if (cm_suspended)
738 device_set_wakeup_capable(cm->dev, true);
739
740 if (!is_batt_present(cm)) {
741 dev_emerg(cm->dev, "Battery Pulled Out!\n");
742 uevent_notify(cm, default_event_names[CM_EVENT_BATT_OUT]);
743 } else {
744 uevent_notify(cm, "Battery Reinserted?");
745 }
746}
747
748/**
749 * misc_event_handler - Handler for other evnets
750 * @cm: the Charger Manager representing the battery.
751 * @type: the Charger Manager representing the battery.
752 */
753static void misc_event_handler(struct charger_manager *cm,
754 enum cm_event_types type)
755{
756 if (cm_suspended)
757 device_set_wakeup_capable(cm->dev, true);
758
2fbb520d 759 if (is_polling_required(cm) && cm->desc->polling_interval_ms)
dfeccb12
CC
760 schedule_work(&setup_polling);
761 uevent_notify(cm, default_event_names[type]);
762}
763
ad3d13ee
DK
764static int charger_get_property(struct power_supply *psy,
765 enum power_supply_property psp,
766 union power_supply_propval *val)
767{
768 struct charger_manager *cm = container_of(psy,
769 struct charger_manager, charger_psy);
770 struct charger_desc *desc = cm->desc;
df58c04c
AV
771 int ret = 0;
772 int uV;
ad3d13ee
DK
773
774 switch (psp) {
775 case POWER_SUPPLY_PROP_STATUS:
776 if (is_charging(cm))
777 val->intval = POWER_SUPPLY_STATUS_CHARGING;
778 else if (is_ext_pwr_online(cm))
779 val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
780 else
781 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
782 break;
783 case POWER_SUPPLY_PROP_HEALTH:
784 if (cm->emergency_stop > 0)
785 val->intval = POWER_SUPPLY_HEALTH_OVERHEAT;
786 else if (cm->emergency_stop < 0)
787 val->intval = POWER_SUPPLY_HEALTH_COLD;
788 else
789 val->intval = POWER_SUPPLY_HEALTH_GOOD;
790 break;
791 case POWER_SUPPLY_PROP_PRESENT:
792 if (is_batt_present(cm))
793 val->intval = 1;
794 else
795 val->intval = 0;
796 break;
797 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
df58c04c 798 ret = get_batt_uV(cm, &val->intval);
ad3d13ee
DK
799 break;
800 case POWER_SUPPLY_PROP_CURRENT_NOW:
801 ret = cm->fuel_gauge->get_property(cm->fuel_gauge,
802 POWER_SUPPLY_PROP_CURRENT_NOW, val);
803 break;
804 case POWER_SUPPLY_PROP_TEMP:
805 /* in thenth of centigrade */
806 if (cm->last_temp_mC == INT_MIN)
807 desc->temperature_out_of_range(&cm->last_temp_mC);
808 val->intval = cm->last_temp_mC / 100;
809 if (!desc->measure_battery_temp)
810 ret = -ENODEV;
811 break;
812 case POWER_SUPPLY_PROP_TEMP_AMBIENT:
813 /* in thenth of centigrade */
814 if (cm->last_temp_mC == INT_MIN)
815 desc->temperature_out_of_range(&cm->last_temp_mC);
816 val->intval = cm->last_temp_mC / 100;
817 if (desc->measure_battery_temp)
818 ret = -ENODEV;
819 break;
820 case POWER_SUPPLY_PROP_CAPACITY:
821 if (!cm->fuel_gauge) {
822 ret = -ENODEV;
823 break;
824 }
825
826 if (!is_batt_present(cm)) {
827 /* There is no battery. Assume 100% */
828 val->intval = 100;
829 break;
830 }
831
832 ret = cm->fuel_gauge->get_property(cm->fuel_gauge,
833 POWER_SUPPLY_PROP_CAPACITY, val);
834 if (ret)
835 break;
836
837 if (val->intval > 100) {
838 val->intval = 100;
839 break;
840 }
841 if (val->intval < 0)
842 val->intval = 0;
843
844 /* Do not adjust SOC when charging: voltage is overrated */
845 if (is_charging(cm))
846 break;
847
848 /*
849 * If the capacity value is inconsistent, calibrate it base on
850 * the battery voltage values and the thresholds given as desc
851 */
852 ret = get_batt_uV(cm, &uV);
853 if (ret) {
854 /* Voltage information not available. No calibration */
855 ret = 0;
856 break;
857 }
858
859 if (desc->fullbatt_uV > 0 && uV >= desc->fullbatt_uV &&
860 !is_charging(cm)) {
861 val->intval = 100;
862 break;
863 }
864
865 break;
866 case POWER_SUPPLY_PROP_ONLINE:
867 if (is_ext_pwr_online(cm))
868 val->intval = 1;
869 else
870 val->intval = 0;
871 break;
872 case POWER_SUPPLY_PROP_CHARGE_FULL:
2ed9e9b6 873 if (is_full_charged(cm))
ad3d13ee 874 val->intval = 1;
2ed9e9b6
CC
875 else
876 val->intval = 0;
ad3d13ee
DK
877 ret = 0;
878 break;
879 case POWER_SUPPLY_PROP_CHARGE_NOW:
880 if (is_charging(cm)) {
881 ret = cm->fuel_gauge->get_property(cm->fuel_gauge,
882 POWER_SUPPLY_PROP_CHARGE_NOW,
883 val);
884 if (ret) {
885 val->intval = 1;
886 ret = 0;
887 } else {
888 /* If CHARGE_NOW is supplied, use it */
889 val->intval = (val->intval > 0) ?
890 val->intval : 1;
891 }
892 } else {
893 val->intval = 0;
894 }
895 break;
896 default:
897 return -EINVAL;
898 }
899 return ret;
900}
901
902#define NUM_CHARGER_PSY_OPTIONAL (4)
903static enum power_supply_property default_charger_props[] = {
904 /* Guaranteed to provide */
905 POWER_SUPPLY_PROP_STATUS,
906 POWER_SUPPLY_PROP_HEALTH,
907 POWER_SUPPLY_PROP_PRESENT,
908 POWER_SUPPLY_PROP_VOLTAGE_NOW,
909 POWER_SUPPLY_PROP_CAPACITY,
910 POWER_SUPPLY_PROP_ONLINE,
911 POWER_SUPPLY_PROP_CHARGE_FULL,
912 /*
913 * Optional properties are:
914 * POWER_SUPPLY_PROP_CHARGE_NOW,
915 * POWER_SUPPLY_PROP_CURRENT_NOW,
916 * POWER_SUPPLY_PROP_TEMP, and
917 * POWER_SUPPLY_PROP_TEMP_AMBIENT,
918 */
919};
920
921static struct power_supply psy_default = {
922 .name = "battery",
923 .type = POWER_SUPPLY_TYPE_BATTERY,
924 .properties = default_charger_props,
925 .num_properties = ARRAY_SIZE(default_charger_props),
926 .get_property = charger_get_property,
927};
928
3bb3dbbd
DK
929/**
930 * cm_setup_timer - For in-suspend monitoring setup wakeup alarm
931 * for suspend_again.
932 *
933 * Returns true if the alarm is set for Charger Manager to use.
934 * Returns false if
935 * cm_setup_timer fails to set an alarm,
936 * cm_setup_timer does not need to set an alarm for Charger Manager,
937 * or an alarm previously configured is to be used.
938 */
939static bool cm_setup_timer(void)
940{
941 struct charger_manager *cm;
942 unsigned int wakeup_ms = UINT_MAX;
943 bool ret = false;
944
945 mutex_lock(&cm_list_mtx);
946
947 list_for_each_entry(cm, &cm_list, entry) {
d829dc75
CC
948 unsigned int fbchk_ms = 0;
949
950 /* fullbatt_vchk is required. setup timer for that */
951 if (cm->fullbatt_vchk_jiffies_at) {
952 fbchk_ms = jiffies_to_msecs(cm->fullbatt_vchk_jiffies_at
953 - jiffies);
954 if (time_is_before_eq_jiffies(
955 cm->fullbatt_vchk_jiffies_at) ||
956 msecs_to_jiffies(fbchk_ms) < CM_JIFFIES_SMALL) {
957 fullbatt_vchk(&cm->fullbatt_vchk_work.work);
958 fbchk_ms = 0;
959 }
960 }
961 CM_MIN_VALID(wakeup_ms, fbchk_ms);
962
3bb3dbbd
DK
963 /* Skip if polling is not required for this CM */
964 if (!is_polling_required(cm) && !cm->emergency_stop)
965 continue;
966 if (cm->desc->polling_interval_ms == 0)
967 continue;
968 CM_MIN_VALID(wakeup_ms, cm->desc->polling_interval_ms);
969 }
970
971 mutex_unlock(&cm_list_mtx);
972
973 if (wakeup_ms < UINT_MAX && wakeup_ms > 0) {
e5409cbd 974 pr_info("Charger Manager wakeup timer: %u ms\n", wakeup_ms);
3bb3dbbd
DK
975 if (rtc_dev) {
976 struct rtc_wkalrm tmp;
977 unsigned long time, now;
978 unsigned long add = DIV_ROUND_UP(wakeup_ms, 1000);
979
980 /*
981 * Set alarm with the polling interval (wakeup_ms)
982 * except when rtc_wkalarm_save comes first.
983 * However, the alarm time should be NOW +
984 * CM_RTC_SMALL or later.
985 */
986 tmp.enabled = 1;
987 rtc_read_time(rtc_dev, &tmp.time);
988 rtc_tm_to_time(&tmp.time, &now);
989 if (add < CM_RTC_SMALL)
990 add = CM_RTC_SMALL;
991 time = now + add;
992
993 ret = true;
994
995 if (rtc_wkalarm_save.enabled &&
996 rtc_wkalarm_save_time &&
997 rtc_wkalarm_save_time < time) {
998 if (rtc_wkalarm_save_time < now + CM_RTC_SMALL)
999 time = now + CM_RTC_SMALL;
1000 else
1001 time = rtc_wkalarm_save_time;
1002
1003 /* The timer is not appointed by CM */
1004 ret = false;
1005 }
1006
e5409cbd 1007 pr_info("Waking up after %lu secs\n", time - now);
3bb3dbbd
DK
1008
1009 rtc_time_to_tm(time, &tmp.time);
1010 rtc_set_alarm(rtc_dev, &tmp);
1011 cm_suspend_duration_ms += wakeup_ms;
1012 return ret;
1013 }
1014 }
1015
1016 if (rtc_dev)
1017 rtc_set_alarm(rtc_dev, &rtc_wkalarm_save);
1018 return false;
1019}
1020
d829dc75
CC
1021static void _cm_fbchk_in_suspend(struct charger_manager *cm)
1022{
1023 unsigned long jiffy_now = jiffies;
1024
1025 if (!cm->fullbatt_vchk_jiffies_at)
1026 return;
1027
1028 if (g_desc && g_desc->assume_timer_stops_in_suspend)
1029 jiffy_now += msecs_to_jiffies(cm_suspend_duration_ms);
1030
1031 /* Execute now if it's going to be executed not too long after */
1032 jiffy_now += CM_JIFFIES_SMALL;
1033
1034 if (time_after_eq(jiffy_now, cm->fullbatt_vchk_jiffies_at))
1035 fullbatt_vchk(&cm->fullbatt_vchk_work.work);
1036}
1037
3bb3dbbd
DK
1038/**
1039 * cm_suspend_again - Determine whether suspend again or not
1040 *
1041 * Returns true if the system should be suspended again
1042 * Returns false if the system should be woken up
1043 */
1044bool cm_suspend_again(void)
1045{
1046 struct charger_manager *cm;
1047 bool ret = false;
1048
1049 if (!g_desc || !g_desc->rtc_only_wakeup || !g_desc->rtc_only_wakeup() ||
1050 !cm_rtc_set)
1051 return false;
1052
1053 if (cm_monitor())
1054 goto out;
1055
1056 ret = true;
1057 mutex_lock(&cm_list_mtx);
1058 list_for_each_entry(cm, &cm_list, entry) {
d829dc75
CC
1059 _cm_fbchk_in_suspend(cm);
1060
3bb3dbbd 1061 if (cm->status_save_ext_pwr_inserted != is_ext_pwr_online(cm) ||
bb2a95c2 1062 cm->status_save_batt != is_batt_present(cm)) {
3bb3dbbd 1063 ret = false;
bb2a95c2
AL
1064 break;
1065 }
3bb3dbbd
DK
1066 }
1067 mutex_unlock(&cm_list_mtx);
1068
1069 cm_rtc_set = cm_setup_timer();
1070out:
1071 /* It's about the time when the non-CM appointed timer goes off */
1072 if (rtc_wkalarm_save.enabled) {
1073 unsigned long now;
1074 struct rtc_time tmp;
1075
1076 rtc_read_time(rtc_dev, &tmp);
1077 rtc_tm_to_time(&tmp, &now);
1078
1079 if (rtc_wkalarm_save_time &&
1080 now + CM_RTC_SMALL >= rtc_wkalarm_save_time)
1081 return false;
1082 }
1083 return ret;
1084}
1085EXPORT_SYMBOL_GPL(cm_suspend_again);
1086
1087/**
1088 * setup_charger_manager - initialize charger_global_desc data
1089 * @gd: pointer to instance of charger_global_desc
1090 */
1091int setup_charger_manager(struct charger_global_desc *gd)
1092{
1093 if (!gd)
1094 return -EINVAL;
1095
1096 if (rtc_dev)
1097 rtc_class_close(rtc_dev);
1098 rtc_dev = NULL;
1099 g_desc = NULL;
1100
1101 if (!gd->rtc_only_wakeup) {
e5409cbd 1102 pr_err("The callback rtc_only_wakeup is not given\n");
3bb3dbbd
DK
1103 return -EINVAL;
1104 }
1105
1106 if (gd->rtc_name) {
1107 rtc_dev = rtc_class_open(gd->rtc_name);
1108 if (IS_ERR_OR_NULL(rtc_dev)) {
1109 rtc_dev = NULL;
1110 /* Retry at probe. RTC may be not registered yet */
1111 }
1112 } else {
e5409cbd 1113 pr_warn("No wakeup timer is given for charger manager. "
3bb3dbbd
DK
1114 "In-suspend monitoring won't work.\n");
1115 }
1116
1117 g_desc = gd;
1118 return 0;
1119}
1120EXPORT_SYMBOL_GPL(setup_charger_manager);
1121
bee737bc
CC
1122/**
1123 * charger_extcon_work - enable/diable charger according to the state
1124 * of charger cable
1125 *
1126 * @work: work_struct of the function charger_extcon_work.
1127 */
1128static void charger_extcon_work(struct work_struct *work)
1129{
1130 struct charger_cable *cable =
1131 container_of(work, struct charger_cable, wq);
45cd4fb2
CC
1132 int ret;
1133
1134 if (cable->attached && cable->min_uA != 0 && cable->max_uA != 0) {
1135 ret = regulator_set_current_limit(cable->charger->consumer,
1136 cable->min_uA, cable->max_uA);
1137 if (ret < 0) {
1138 pr_err("Cannot set current limit of %s (%s)\n",
e5409cbd 1139 cable->charger->regulator_name, cable->name);
45cd4fb2
CC
1140 return;
1141 }
1142
1143 pr_info("Set current limit of %s : %duA ~ %duA\n",
e5409cbd
JP
1144 cable->charger->regulator_name,
1145 cable->min_uA, cable->max_uA);
45cd4fb2 1146 }
bee737bc
CC
1147
1148 try_charger_enable(cable->cm, cable->attached);
1149}
1150
1151/**
1152 * charger_extcon_notifier - receive the state of charger cable
1153 * when registered cable is attached or detached.
1154 *
1155 * @self: the notifier block of the charger_extcon_notifier.
1156 * @event: the cable state.
1157 * @ptr: the data pointer of notifier block.
1158 */
1159static int charger_extcon_notifier(struct notifier_block *self,
1160 unsigned long event, void *ptr)
1161{
1162 struct charger_cable *cable =
1163 container_of(self, struct charger_cable, nb);
1164
2ed9e9b6
CC
1165 /*
1166 * The newly state of charger cable.
1167 * If cable is attached, cable->attached is true.
1168 */
bee737bc 1169 cable->attached = event;
2ed9e9b6
CC
1170
1171 /*
1172 * Setup monitoring to check battery state
1173 * when charger cable is attached.
1174 */
1175 if (cable->attached && is_polling_required(cable->cm)) {
2fbb520d 1176 cancel_work_sync(&setup_polling);
2ed9e9b6
CC
1177 schedule_work(&setup_polling);
1178 }
1179
1180 /*
1181 * Setup work for controlling charger(regulator)
1182 * according to charger cable.
1183 */
bee737bc
CC
1184 schedule_work(&cable->wq);
1185
1186 return NOTIFY_DONE;
1187}
1188
1189/**
1190 * charger_extcon_init - register external connector to use it
1191 * as the charger cable
1192 *
1193 * @cm: the Charger Manager representing the battery.
1194 * @cable: the Charger cable representing the external connector.
1195 */
1196static int charger_extcon_init(struct charger_manager *cm,
1197 struct charger_cable *cable)
1198{
1199 int ret = 0;
1200
1201 /*
1202 * Charger manager use Extcon framework to identify
1203 * the charger cable among various external connector
1204 * cable (e.g., TA, USB, MHL, Dock).
1205 */
1206 INIT_WORK(&cable->wq, charger_extcon_work);
1207 cable->nb.notifier_call = charger_extcon_notifier;
1208 ret = extcon_register_interest(&cable->extcon_dev,
1209 cable->extcon_name, cable->name, &cable->nb);
1210 if (ret < 0) {
e5409cbd
JP
1211 pr_info("Cannot register extcon_dev for %s(cable: %s)\n",
1212 cable->extcon_name, cable->name);
bee737bc
CC
1213 ret = -EINVAL;
1214 }
1215
1216 return ret;
1217}
1218
41468a11
CC
1219/**
1220 * charger_manager_register_extcon - Register extcon device to recevie state
1221 * of charger cable.
1222 * @cm: the Charger Manager representing the battery.
1223 *
1224 * This function support EXTCON(External Connector) subsystem to detect the
1225 * state of charger cables for enabling or disabling charger(regulator) and
1226 * select the charger cable for charging among a number of external cable
1227 * according to policy of H/W board.
1228 */
1229static int charger_manager_register_extcon(struct charger_manager *cm)
1230{
1231 struct charger_desc *desc = cm->desc;
1232 struct charger_regulator *charger;
1233 int ret = 0;
1234 int i;
1235 int j;
1236
1237 for (i = 0; i < desc->num_charger_regulators; i++) {
1238 charger = &desc->charger_regulators[i];
1239
1240 charger->consumer = regulator_get(cm->dev,
1241 charger->regulator_name);
1242 if (charger->consumer == NULL) {
e5409cbd
JP
1243 dev_err(cm->dev, "Cannot find charger(%s)\n",
1244 charger->regulator_name);
41468a11
CC
1245 ret = -EINVAL;
1246 goto err;
1247 }
1248 charger->cm = cm;
1249
1250 for (j = 0; j < charger->num_cables; j++) {
1251 struct charger_cable *cable = &charger->cables[j];
1252
1253 ret = charger_extcon_init(cm, cable);
1254 if (ret < 0) {
e5409cbd
JP
1255 dev_err(cm->dev, "Cannot initialize charger(%s)\n",
1256 charger->regulator_name);
41468a11
CC
1257 goto err;
1258 }
1259 cable->charger = charger;
1260 cable->cm = cm;
1261 }
1262 }
1263
1264err:
1265 return ret;
1266}
1267
3950c786
CC
1268/* help function of sysfs node to control charger(regulator) */
1269static ssize_t charger_name_show(struct device *dev,
1270 struct device_attribute *attr, char *buf)
1271{
1272 struct charger_regulator *charger
1273 = container_of(attr, struct charger_regulator, attr_name);
1274
1275 return sprintf(buf, "%s\n", charger->regulator_name);
1276}
1277
1278static ssize_t charger_state_show(struct device *dev,
1279 struct device_attribute *attr, char *buf)
1280{
1281 struct charger_regulator *charger
1282 = container_of(attr, struct charger_regulator, attr_state);
1283 int state = 0;
1284
1285 if (!charger->externally_control)
1286 state = regulator_is_enabled(charger->consumer);
1287
1288 return sprintf(buf, "%s\n", state ? "enabled" : "disabled");
1289}
1290
1291static ssize_t charger_externally_control_show(struct device *dev,
1292 struct device_attribute *attr, char *buf)
1293{
1294 struct charger_regulator *charger = container_of(attr,
1295 struct charger_regulator, attr_externally_control);
1296
1297 return sprintf(buf, "%d\n", charger->externally_control);
1298}
1299
1300static ssize_t charger_externally_control_store(struct device *dev,
1301 struct device_attribute *attr, const char *buf,
1302 size_t count)
1303{
1304 struct charger_regulator *charger
1305 = container_of(attr, struct charger_regulator,
1306 attr_externally_control);
1307 struct charger_manager *cm = charger->cm;
1308 struct charger_desc *desc = cm->desc;
1309 int i;
1310 int ret;
1311 int externally_control;
1312 int chargers_externally_control = 1;
1313
1314 ret = sscanf(buf, "%d", &externally_control);
1315 if (ret == 0) {
1316 ret = -EINVAL;
1317 return ret;
1318 }
1319
1320 if (!externally_control) {
1321 charger->externally_control = 0;
1322 return count;
1323 }
1324
1325 for (i = 0; i < desc->num_charger_regulators; i++) {
1326 if (&desc->charger_regulators[i] != charger &&
41468a11 1327 !desc->charger_regulators[i].externally_control) {
3950c786
CC
1328 /*
1329 * At least, one charger is controlled by
1330 * charger-manager
1331 */
1332 chargers_externally_control = 0;
1333 break;
1334 }
1335 }
1336
1337 if (!chargers_externally_control) {
1338 if (cm->charger_enabled) {
1339 try_charger_enable(charger->cm, false);
1340 charger->externally_control = externally_control;
1341 try_charger_enable(charger->cm, true);
1342 } else {
1343 charger->externally_control = externally_control;
1344 }
1345 } else {
1346 dev_warn(cm->dev,
e5409cbd
JP
1347 "'%s' regulator should be controlled in charger-manager because charger-manager must need at least one charger for charging\n",
1348 charger->regulator_name);
3950c786
CC
1349 }
1350
1351 return count;
1352}
1353
41468a11
CC
1354/**
1355 * charger_manager_register_sysfs - Register sysfs entry for each charger
1356 * @cm: the Charger Manager representing the battery.
1357 *
1358 * This function add sysfs entry for charger(regulator) to control charger from
1359 * user-space. If some development board use one more chargers for charging
1360 * but only need one charger on specific case which is dependent on user
1361 * scenario or hardware restrictions, the user enter 1 or 0(zero) to '/sys/
1362 * class/power_supply/battery/charger.[index]/externally_control'. For example,
1363 * if user enter 1 to 'sys/class/power_supply/battery/charger.[index]/
1364 * externally_control, this charger isn't controlled from charger-manager and
1365 * always stay off state of regulator.
1366 */
1367static int charger_manager_register_sysfs(struct charger_manager *cm)
1368{
1369 struct charger_desc *desc = cm->desc;
1370 struct charger_regulator *charger;
1371 int chargers_externally_control = 1;
1372 char buf[11];
1373 char *str;
1374 int ret = 0;
1375 int i;
1376
1377 /* Create sysfs entry to control charger(regulator) */
1378 for (i = 0; i < desc->num_charger_regulators; i++) {
1379 charger = &desc->charger_regulators[i];
1380
1381 snprintf(buf, 10, "charger.%d", i);
1382 str = kzalloc(sizeof(char) * (strlen(buf) + 1), GFP_KERNEL);
1383 if (!str) {
41468a11
CC
1384 ret = -ENOMEM;
1385 goto err;
1386 }
1387 strcpy(str, buf);
1388
1389 charger->attrs[0] = &charger->attr_name.attr;
1390 charger->attrs[1] = &charger->attr_state.attr;
1391 charger->attrs[2] = &charger->attr_externally_control.attr;
1392 charger->attrs[3] = NULL;
1393 charger->attr_g.name = str;
1394 charger->attr_g.attrs = charger->attrs;
1395
1396 sysfs_attr_init(&charger->attr_name.attr);
1397 charger->attr_name.attr.name = "name";
1398 charger->attr_name.attr.mode = 0444;
1399 charger->attr_name.show = charger_name_show;
1400
1401 sysfs_attr_init(&charger->attr_state.attr);
1402 charger->attr_state.attr.name = "state";
1403 charger->attr_state.attr.mode = 0444;
1404 charger->attr_state.show = charger_state_show;
1405
1406 sysfs_attr_init(&charger->attr_externally_control.attr);
1407 charger->attr_externally_control.attr.name
1408 = "externally_control";
1409 charger->attr_externally_control.attr.mode = 0644;
1410 charger->attr_externally_control.show
1411 = charger_externally_control_show;
1412 charger->attr_externally_control.store
1413 = charger_externally_control_store;
1414
1415 if (!desc->charger_regulators[i].externally_control ||
1416 !chargers_externally_control)
1417 chargers_externally_control = 0;
1418
e5409cbd
JP
1419 dev_info(cm->dev, "'%s' regulator's externally_control is %d\n",
1420 charger->regulator_name, charger->externally_control);
41468a11
CC
1421
1422 ret = sysfs_create_group(&cm->charger_psy.dev->kobj,
1423 &charger->attr_g);
1424 if (ret < 0) {
e5409cbd
JP
1425 dev_err(cm->dev, "Cannot create sysfs entry of %s regulator\n",
1426 charger->regulator_name);
41468a11
CC
1427 ret = -EINVAL;
1428 goto err;
1429 }
1430 }
1431
1432 if (chargers_externally_control) {
e5409cbd 1433 dev_err(cm->dev, "Cannot register regulator because charger-manager must need at least one charger for charging battery\n");
41468a11
CC
1434 ret = -EINVAL;
1435 goto err;
1436 }
1437
1438err:
1439 return ret;
1440}
1441
3bb3dbbd
DK
1442static int charger_manager_probe(struct platform_device *pdev)
1443{
1444 struct charger_desc *desc = dev_get_platdata(&pdev->dev);
1445 struct charger_manager *cm;
1446 int ret = 0, i = 0;
bee737bc 1447 int j = 0;
ad3d13ee 1448 union power_supply_propval val;
3bb3dbbd
DK
1449
1450 if (g_desc && !rtc_dev && g_desc->rtc_name) {
1451 rtc_dev = rtc_class_open(g_desc->rtc_name);
1452 if (IS_ERR_OR_NULL(rtc_dev)) {
1453 rtc_dev = NULL;
e5409cbd 1454 dev_err(&pdev->dev, "Cannot get RTC %s\n",
3bb3dbbd
DK
1455 g_desc->rtc_name);
1456 ret = -ENODEV;
1457 goto err_alloc;
1458 }
1459 }
1460
1461 if (!desc) {
e5409cbd 1462 dev_err(&pdev->dev, "No platform data (desc) found\n");
3bb3dbbd
DK
1463 ret = -ENODEV;
1464 goto err_alloc;
1465 }
1466
1467 cm = kzalloc(sizeof(struct charger_manager), GFP_KERNEL);
1468 if (!cm) {
3bb3dbbd
DK
1469 ret = -ENOMEM;
1470 goto err_alloc;
1471 }
1472
1473 /* Basic Values. Unspecified are Null or 0 */
1474 cm->dev = &pdev->dev;
f2c6a5fb 1475 cm->desc = kmemdup(desc, sizeof(struct charger_desc), GFP_KERNEL);
3bb3dbbd 1476 if (!cm->desc) {
3bb3dbbd
DK
1477 ret = -ENOMEM;
1478 goto err_alloc_desc;
1479 }
3bb3dbbd
DK
1480 cm->last_temp_mC = INT_MIN; /* denotes "unmeasured, yet" */
1481
d829dc75
CC
1482 /*
1483 * The following two do not need to be errors.
1484 * Users may intentionally ignore those two features.
1485 */
1486 if (desc->fullbatt_uV == 0) {
e5409cbd 1487 dev_info(&pdev->dev, "Ignoring full-battery voltage threshold as it is not supplied\n");
d829dc75
CC
1488 }
1489 if (!desc->fullbatt_vchkdrop_ms || !desc->fullbatt_vchkdrop_uV) {
e5409cbd 1490 dev_info(&pdev->dev, "Disabling full-battery voltage drop checking mechanism as it is not supplied\n");
d829dc75
CC
1491 desc->fullbatt_vchkdrop_ms = 0;
1492 desc->fullbatt_vchkdrop_uV = 0;
1493 }
2ed9e9b6 1494 if (desc->fullbatt_soc == 0) {
e5409cbd 1495 dev_info(&pdev->dev, "Ignoring full-battery soc(state of charge) threshold as it is not supplied\n");
2ed9e9b6
CC
1496 }
1497 if (desc->fullbatt_full_capacity == 0) {
e5409cbd 1498 dev_info(&pdev->dev, "Ignoring full-battery full capacity threshold as it is not supplied\n");
2ed9e9b6 1499 }
d829dc75 1500
3bb3dbbd
DK
1501 if (!desc->charger_regulators || desc->num_charger_regulators < 1) {
1502 ret = -EINVAL;
e5409cbd 1503 dev_err(&pdev->dev, "charger_regulators undefined\n");
3bb3dbbd
DK
1504 goto err_no_charger;
1505 }
1506
1507 if (!desc->psy_charger_stat || !desc->psy_charger_stat[0]) {
e5409cbd 1508 dev_err(&pdev->dev, "No power supply defined\n");
3bb3dbbd
DK
1509 ret = -EINVAL;
1510 goto err_no_charger_stat;
1511 }
1512
1513 /* Counting index only */
1514 while (desc->psy_charger_stat[i])
1515 i++;
1516
1517 cm->charger_stat = kzalloc(sizeof(struct power_supply *) * (i + 1),
1518 GFP_KERNEL);
1519 if (!cm->charger_stat) {
1520 ret = -ENOMEM;
1521 goto err_no_charger_stat;
1522 }
1523
1524 for (i = 0; desc->psy_charger_stat[i]; i++) {
1525 cm->charger_stat[i] = power_supply_get_by_name(
1526 desc->psy_charger_stat[i]);
1527 if (!cm->charger_stat[i]) {
e5409cbd
JP
1528 dev_err(&pdev->dev, "Cannot find power supply \"%s\"\n",
1529 desc->psy_charger_stat[i]);
3bb3dbbd
DK
1530 ret = -ENODEV;
1531 goto err_chg_stat;
1532 }
1533 }
1534
1535 cm->fuel_gauge = power_supply_get_by_name(desc->psy_fuel_gauge);
1536 if (!cm->fuel_gauge) {
1537 dev_err(&pdev->dev, "Cannot find power supply \"%s\"\n",
e5409cbd 1538 desc->psy_fuel_gauge);
3bb3dbbd
DK
1539 ret = -ENODEV;
1540 goto err_chg_stat;
1541 }
1542
1543 if (desc->polling_interval_ms == 0 ||
1544 msecs_to_jiffies(desc->polling_interval_ms) <= CM_JIFFIES_SMALL) {
1545 dev_err(&pdev->dev, "polling_interval_ms is too small\n");
1546 ret = -EINVAL;
1547 goto err_chg_stat;
1548 }
1549
1550 if (!desc->temperature_out_of_range) {
1551 dev_err(&pdev->dev, "there is no temperature_out_of_range\n");
1552 ret = -EINVAL;
1553 goto err_chg_stat;
1554 }
1555
8fcfe088
CC
1556 if (!desc->charging_max_duration_ms ||
1557 !desc->discharging_max_duration_ms) {
e5409cbd 1558 dev_info(&pdev->dev, "Cannot limit charging duration checking mechanism to prevent overcharge/overheat and control discharging duration\n");
8fcfe088
CC
1559 desc->charging_max_duration_ms = 0;
1560 desc->discharging_max_duration_ms = 0;
1561 }
1562
3bb3dbbd
DK
1563 platform_set_drvdata(pdev, cm);
1564
bb2a95c2
AL
1565 memcpy(&cm->charger_psy, &psy_default, sizeof(psy_default));
1566
41468a11 1567 if (!desc->psy_name)
bb2a95c2 1568 strncpy(cm->psy_name_buf, psy_default.name, PSY_NAME_MAX);
41468a11 1569 else
ad3d13ee 1570 strncpy(cm->psy_name_buf, desc->psy_name, PSY_NAME_MAX);
ad3d13ee
DK
1571 cm->charger_psy.name = cm->psy_name_buf;
1572
1573 /* Allocate for psy properties because they may vary */
1574 cm->charger_psy.properties = kzalloc(sizeof(enum power_supply_property)
1575 * (ARRAY_SIZE(default_charger_props) +
1576 NUM_CHARGER_PSY_OPTIONAL),
1577 GFP_KERNEL);
1578 if (!cm->charger_psy.properties) {
ad3d13ee
DK
1579 ret = -ENOMEM;
1580 goto err_chg_stat;
1581 }
1582 memcpy(cm->charger_psy.properties, default_charger_props,
1583 sizeof(enum power_supply_property) *
1584 ARRAY_SIZE(default_charger_props));
1585 cm->charger_psy.num_properties = psy_default.num_properties;
1586
1587 /* Find which optional psy-properties are available */
1588 if (!cm->fuel_gauge->get_property(cm->fuel_gauge,
1589 POWER_SUPPLY_PROP_CHARGE_NOW, &val)) {
1590 cm->charger_psy.properties[cm->charger_psy.num_properties] =
1591 POWER_SUPPLY_PROP_CHARGE_NOW;
1592 cm->charger_psy.num_properties++;
1593 }
1594 if (!cm->fuel_gauge->get_property(cm->fuel_gauge,
1595 POWER_SUPPLY_PROP_CURRENT_NOW,
1596 &val)) {
1597 cm->charger_psy.properties[cm->charger_psy.num_properties] =
1598 POWER_SUPPLY_PROP_CURRENT_NOW;
1599 cm->charger_psy.num_properties++;
1600 }
bb2a95c2 1601
ad3d13ee
DK
1602 if (desc->measure_battery_temp) {
1603 cm->charger_psy.properties[cm->charger_psy.num_properties] =
1604 POWER_SUPPLY_PROP_TEMP;
1605 cm->charger_psy.num_properties++;
bb2a95c2
AL
1606 } else {
1607 cm->charger_psy.properties[cm->charger_psy.num_properties] =
1608 POWER_SUPPLY_PROP_TEMP_AMBIENT;
1609 cm->charger_psy.num_properties++;
ad3d13ee
DK
1610 }
1611
d829dc75
CC
1612 INIT_DELAYED_WORK(&cm->fullbatt_vchk_work, fullbatt_vchk);
1613
ad3d13ee
DK
1614 ret = power_supply_register(NULL, &cm->charger_psy);
1615 if (ret) {
e5409cbd
JP
1616 dev_err(&pdev->dev, "Cannot register charger-manager with name \"%s\"\n",
1617 cm->charger_psy.name);
ad3d13ee
DK
1618 goto err_register;
1619 }
1620
41468a11
CC
1621 /* Register extcon device for charger cable */
1622 ret = charger_manager_register_extcon(cm);
1623 if (ret < 0) {
1624 dev_err(&pdev->dev, "Cannot initialize extcon device\n");
1625 goto err_reg_extcon;
3bb3dbbd
DK
1626 }
1627
41468a11
CC
1628 /* Register sysfs entry for charger(regulator) */
1629 ret = charger_manager_register_sysfs(cm);
1630 if (ret < 0) {
1631 dev_err(&pdev->dev,
1632 "Cannot initialize sysfs entry of regulator\n");
1633 goto err_reg_sysfs;
3bb3dbbd
DK
1634 }
1635
1636 /* Add to the list */
1637 mutex_lock(&cm_list_mtx);
1638 list_add(&cm->entry, &cm_list);
1639 mutex_unlock(&cm_list_mtx);
1640
dfeccb12
CC
1641 /*
1642 * Charger-manager is capable of waking up the systme from sleep
1643 * when event is happend through cm_notify_event()
1644 */
1645 device_init_wakeup(&pdev->dev, true);
1646 device_set_wakeup_capable(&pdev->dev, false);
1647
d829dc75
CC
1648 schedule_work(&setup_polling);
1649
3bb3dbbd
DK
1650 return 0;
1651
41468a11 1652err_reg_sysfs:
3950c786
CC
1653 for (i = 0; i < desc->num_charger_regulators; i++) {
1654 struct charger_regulator *charger;
1655
1656 charger = &desc->charger_regulators[i];
1657 sysfs_remove_group(&cm->charger_psy.dev->kobj,
1658 &charger->attr_g);
41468a11 1659
3950c786
CC
1660 kfree(charger->attr_g.name);
1661 }
41468a11
CC
1662err_reg_extcon:
1663 for (i = 0; i < desc->num_charger_regulators; i++) {
1664 struct charger_regulator *charger;
1665
1666 charger = &desc->charger_regulators[i];
1667 for (j = 0; j < charger->num_cables; j++) {
bee737bc 1668 struct charger_cable *cable = &charger->cables[j];
3cc9d269
JL
1669 /* Remove notifier block if only edev exists */
1670 if (cable->extcon_dev.edev)
1671 extcon_unregister_interest(&cable->extcon_dev);
bee737bc 1672 }
41468a11 1673
bee737bc 1674 regulator_put(desc->charger_regulators[i].consumer);
41468a11 1675 }
bee737bc 1676
ad3d13ee
DK
1677 power_supply_unregister(&cm->charger_psy);
1678err_register:
1679 kfree(cm->charger_psy.properties);
3bb3dbbd
DK
1680err_chg_stat:
1681 kfree(cm->charger_stat);
1682err_no_charger_stat:
1683err_no_charger:
1684 kfree(cm->desc);
1685err_alloc_desc:
1686 kfree(cm);
1687err_alloc:
1688 return ret;
1689}
1690
415ec69f 1691static int charger_manager_remove(struct platform_device *pdev)
3bb3dbbd
DK
1692{
1693 struct charger_manager *cm = platform_get_drvdata(pdev);
1694 struct charger_desc *desc = cm->desc;
bee737bc
CC
1695 int i = 0;
1696 int j = 0;
3bb3dbbd
DK
1697
1698 /* Remove from the list */
1699 mutex_lock(&cm_list_mtx);
1700 list_del(&cm->entry);
1701 mutex_unlock(&cm_list_mtx);
1702
2fbb520d
TH
1703 cancel_work_sync(&setup_polling);
1704 cancel_delayed_work_sync(&cm_monitor_work);
d829dc75 1705
bee737bc
CC
1706 for (i = 0 ; i < desc->num_charger_regulators ; i++) {
1707 struct charger_regulator *charger
1708 = &desc->charger_regulators[i];
1709 for (j = 0 ; j < charger->num_cables ; j++) {
1710 struct charger_cable *cable = &charger->cables[j];
1711 extcon_unregister_interest(&cable->extcon_dev);
1712 }
1713 }
1714
1715 for (i = 0 ; i < desc->num_charger_regulators ; i++)
1716 regulator_put(desc->charger_regulators[i].consumer);
1717
ad3d13ee 1718 power_supply_unregister(&cm->charger_psy);
d829dc75
CC
1719
1720 try_charger_enable(cm, false);
1721
ad3d13ee 1722 kfree(cm->charger_psy.properties);
3bb3dbbd
DK
1723 kfree(cm->charger_stat);
1724 kfree(cm->desc);
1725 kfree(cm);
1726
1727 return 0;
1728}
1729
1bbe24d4 1730static const struct platform_device_id charger_manager_id[] = {
3bb3dbbd
DK
1731 { "charger-manager", 0 },
1732 { },
1733};
1bbe24d4 1734MODULE_DEVICE_TABLE(platform, charger_manager_id);
3bb3dbbd 1735
dfeccb12
CC
1736static int cm_suspend_noirq(struct device *dev)
1737{
1738 int ret = 0;
1739
1740 if (device_may_wakeup(dev)) {
1741 device_set_wakeup_capable(dev, false);
1742 ret = -EAGAIN;
1743 }
1744
1745 return ret;
1746}
1747
3bb3dbbd
DK
1748static int cm_suspend_prepare(struct device *dev)
1749{
bb2a95c2 1750 struct charger_manager *cm = dev_get_drvdata(dev);
3bb3dbbd
DK
1751
1752 if (!cm_suspended) {
1753 if (rtc_dev) {
1754 struct rtc_time tmp;
1755 unsigned long now;
1756
1757 rtc_read_alarm(rtc_dev, &rtc_wkalarm_save);
1758 rtc_read_time(rtc_dev, &tmp);
1759
1760 if (rtc_wkalarm_save.enabled) {
1761 rtc_tm_to_time(&rtc_wkalarm_save.time,
1762 &rtc_wkalarm_save_time);
1763 rtc_tm_to_time(&tmp, &now);
1764 if (now > rtc_wkalarm_save_time)
1765 rtc_wkalarm_save_time = 0;
1766 } else {
1767 rtc_wkalarm_save_time = 0;
1768 }
1769 }
1770 cm_suspended = true;
1771 }
1772
2fbb520d 1773 cancel_delayed_work(&cm->fullbatt_vchk_work);
3bb3dbbd
DK
1774 cm->status_save_ext_pwr_inserted = is_ext_pwr_online(cm);
1775 cm->status_save_batt = is_batt_present(cm);
1776
1777 if (!cm_rtc_set) {
1778 cm_suspend_duration_ms = 0;
1779 cm_rtc_set = cm_setup_timer();
1780 }
1781
1782 return 0;
1783}
1784
1785static void cm_suspend_complete(struct device *dev)
1786{
bb2a95c2 1787 struct charger_manager *cm = dev_get_drvdata(dev);
3bb3dbbd
DK
1788
1789 if (cm_suspended) {
1790 if (rtc_dev) {
1791 struct rtc_wkalrm tmp;
1792
1793 rtc_read_alarm(rtc_dev, &tmp);
1794 rtc_wkalarm_save.pending = tmp.pending;
1795 rtc_set_alarm(rtc_dev, &rtc_wkalarm_save);
1796 }
1797 cm_suspended = false;
1798 cm_rtc_set = false;
1799 }
1800
d829dc75
CC
1801 /* Re-enqueue delayed work (fullbatt_vchk_work) */
1802 if (cm->fullbatt_vchk_jiffies_at) {
1803 unsigned long delay = 0;
1804 unsigned long now = jiffies + CM_JIFFIES_SMALL;
1805
1806 if (time_after_eq(now, cm->fullbatt_vchk_jiffies_at)) {
1807 delay = (unsigned long)((long)now
1808 - (long)(cm->fullbatt_vchk_jiffies_at));
1809 delay = jiffies_to_msecs(delay);
1810 } else {
1811 delay = 0;
1812 }
1813
1814 /*
1815 * Account for cm_suspend_duration_ms if
1816 * assume_timer_stops_in_suspend is active
1817 */
1818 if (g_desc && g_desc->assume_timer_stops_in_suspend) {
1819 if (delay > cm_suspend_duration_ms)
1820 delay -= cm_suspend_duration_ms;
1821 else
1822 delay = 0;
1823 }
1824
1825 queue_delayed_work(cm_wq, &cm->fullbatt_vchk_work,
1826 msecs_to_jiffies(delay));
1827 }
dfeccb12 1828 device_set_wakeup_capable(cm->dev, false);
3bb3dbbd
DK
1829 uevent_notify(cm, NULL);
1830}
1831
1832static const struct dev_pm_ops charger_manager_pm = {
1833 .prepare = cm_suspend_prepare,
dfeccb12 1834 .suspend_noirq = cm_suspend_noirq,
3bb3dbbd
DK
1835 .complete = cm_suspend_complete,
1836};
1837
1838static struct platform_driver charger_manager_driver = {
1839 .driver = {
1840 .name = "charger-manager",
1841 .owner = THIS_MODULE,
1842 .pm = &charger_manager_pm,
1843 },
1844 .probe = charger_manager_probe,
28ea73f4 1845 .remove = charger_manager_remove,
3bb3dbbd
DK
1846 .id_table = charger_manager_id,
1847};
1848
1849static int __init charger_manager_init(void)
1850{
d829dc75
CC
1851 cm_wq = create_freezable_workqueue("charger_manager");
1852 INIT_DELAYED_WORK(&cm_monitor_work, cm_monitor_poller);
1853
3bb3dbbd
DK
1854 return platform_driver_register(&charger_manager_driver);
1855}
1856late_initcall(charger_manager_init);
1857
1858static void __exit charger_manager_cleanup(void)
1859{
d829dc75
CC
1860 destroy_workqueue(cm_wq);
1861 cm_wq = NULL;
1862
3bb3dbbd
DK
1863 platform_driver_unregister(&charger_manager_driver);
1864}
1865module_exit(charger_manager_cleanup);
1866
dfeccb12
CC
1867/**
1868 * find_power_supply - find the associated power_supply of charger
1869 * @cm: the Charger Manager representing the battery
1870 * @psy: pointer to instance of charger's power_supply
1871 */
1872static bool find_power_supply(struct charger_manager *cm,
1873 struct power_supply *psy)
1874{
1875 int i;
1876 bool found = false;
1877
1878 for (i = 0; cm->charger_stat[i]; i++) {
1879 if (psy == cm->charger_stat[i]) {
1880 found = true;
1881 break;
1882 }
1883 }
1884
1885 return found;
1886}
1887
1888/**
1889 * cm_notify_event - charger driver notify Charger Manager of charger event
1890 * @psy: pointer to instance of charger's power_supply
1891 * @type: type of charger event
1892 * @msg: optional message passed to uevent_notify fuction
1893 */
1894void cm_notify_event(struct power_supply *psy, enum cm_event_types type,
1895 char *msg)
1896{
1897 struct charger_manager *cm;
1898 bool found_power_supply = false;
1899
1900 if (psy == NULL)
1901 return;
1902
1903 mutex_lock(&cm_list_mtx);
1904 list_for_each_entry(cm, &cm_list, entry) {
1905 found_power_supply = find_power_supply(cm, psy);
1906 if (found_power_supply)
1907 break;
1908 }
1909 mutex_unlock(&cm_list_mtx);
1910
1911 if (!found_power_supply)
1912 return;
1913
1914 switch (type) {
1915 case CM_EVENT_BATT_FULL:
1916 fullbatt_handler(cm);
1917 break;
1918 case CM_EVENT_BATT_OUT:
1919 battout_handler(cm);
1920 break;
1921 case CM_EVENT_BATT_IN:
1922 case CM_EVENT_EXT_PWR_IN_OUT ... CM_EVENT_CHG_START_STOP:
1923 misc_event_handler(cm, type);
1924 break;
1925 case CM_EVENT_UNKNOWN:
1926 case CM_EVENT_OTHERS:
1927 uevent_notify(cm, msg ? msg : default_event_names[type]);
1928 break;
1929 default:
e5409cbd 1930 dev_err(cm->dev, "%s: type not specified\n", __func__);
dfeccb12
CC
1931 break;
1932 }
1933}
1934EXPORT_SYMBOL_GPL(cm_notify_event);
1935
3bb3dbbd
DK
1936MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
1937MODULE_DESCRIPTION("Charger Manager");
1938MODULE_LICENSE("GPL");
This page took 0.158168 seconds and 5 git commands to generate.