blob: 922a86787c5c4c69901bf2f48933e29653e29bf1 [file] [log] [blame]
Anton Vorontsovb2998042007-05-04 00:32:17 +04001/*
2 * Common power driver for PDAs and phones with one or two external
3 * power supplies (AC/USB) connected to main and backup batteries,
4 * and optional builtin charger.
5 *
6 * Copyright © 2007 Anton Vorontsov <cbou@mail.ru>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
14#include <linux/platform_device.h>
Philipp Zabel5bf2b992009-01-18 17:40:27 +010015#include <linux/err.h>
Anton Vorontsovb2998042007-05-04 00:32:17 +040016#include <linux/interrupt.h>
Dima Zavin9ad63982011-07-10 16:01:15 -070017#include <linux/notifier.h>
Anton Vorontsovb2998042007-05-04 00:32:17 +040018#include <linux/power_supply.h>
19#include <linux/pda_power.h>
Philipp Zabel5bf2b992009-01-18 17:40:27 +010020#include <linux/regulator/consumer.h>
Anton Vorontsovb2998042007-05-04 00:32:17 +040021#include <linux/timer.h>
22#include <linux/jiffies.h>
Philipp Zabel5bf2b992009-01-18 17:40:27 +010023#include <linux/usb/otg.h>
Anton Vorontsovb2998042007-05-04 00:32:17 +040024
25static inline unsigned int get_irq_flags(struct resource *res)
26{
Theodore Ts'od554a3f2012-07-17 13:40:18 -040027 return IRQF_SHARED | (res->flags & IRQF_TRIGGER_MASK);
Anton Vorontsovb2998042007-05-04 00:32:17 +040028}
29
30static struct device *dev;
31static struct pda_power_pdata *pdata;
32static struct resource *ac_irq, *usb_irq;
Michael Trimarchi5b65f7d2017-04-25 15:18:05 +020033static struct delayed_work charger_work;
34static struct delayed_work polling_work;
35static struct delayed_work supply_work;
Anton Vorontsovc3caeba2008-01-13 02:44:20 +030036static int polling;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010037static struct power_supply *pda_psy_ac, *pda_psy_usb;
Anton Vorontsovb2998042007-05-04 00:32:17 +040038
Felipe Balbi820d0882013-03-07 11:23:50 +020039#if IS_ENABLED(CONFIG_USB_PHY)
Heikki Krogerus86753812012-02-13 13:24:02 +020040static struct usb_phy *transceiver;
Dima Zavin9ad63982011-07-10 16:01:15 -070041static struct notifier_block otg_nb;
Axel Lin1c745292011-08-23 20:34:33 +080042#endif
43
Philipp Zabel5bf2b992009-01-18 17:40:27 +010044static struct regulator *ac_draw;
45
Anton Vorontsovbfde2662008-01-13 02:39:17 +030046enum {
47 PDA_PSY_OFFLINE = 0,
48 PDA_PSY_ONLINE = 1,
49 PDA_PSY_TO_CHANGE,
50};
51static int new_ac_status = -1;
52static int new_usb_status = -1;
53static int ac_status = -1;
54static int usb_status = -1;
55
Anton Vorontsovb2998042007-05-04 00:32:17 +040056static int pda_power_get_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:
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010062 if (psy->desc->type == POWER_SUPPLY_TYPE_MAINS)
Anton Vorontsovb2998042007-05-04 00:32:17 +040063 val->intval = pdata->is_ac_online ?
64 pdata->is_ac_online() : 0;
65 else
66 val->intval = pdata->is_usb_online ?
67 pdata->is_usb_online() : 0;
68 break;
69 default:
70 return -EINVAL;
71 }
72 return 0;
73}
74
75static enum power_supply_property pda_power_props[] = {
76 POWER_SUPPLY_PROP_ONLINE,
77};
78
79static char *pda_power_supplied_to[] = {
80 "main-battery",
81 "backup-battery",
82};
83
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010084static const struct power_supply_desc pda_psy_ac_desc = {
Anton Vorontsovbfde2662008-01-13 02:39:17 +030085 .name = "ac",
86 .type = POWER_SUPPLY_TYPE_MAINS,
Anton Vorontsovbfde2662008-01-13 02:39:17 +030087 .properties = pda_power_props,
88 .num_properties = ARRAY_SIZE(pda_power_props),
89 .get_property = pda_power_get_property,
Anton Vorontsovb2998042007-05-04 00:32:17 +040090};
91
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010092static const struct power_supply_desc pda_psy_usb_desc = {
Anton Vorontsovbfde2662008-01-13 02:39:17 +030093 .name = "usb",
94 .type = POWER_SUPPLY_TYPE_USB,
Anton Vorontsovbfde2662008-01-13 02:39:17 +030095 .properties = pda_power_props,
96 .num_properties = ARRAY_SIZE(pda_power_props),
97 .get_property = pda_power_get_property,
98};
99
100static void update_status(void)
101{
102 if (pdata->is_ac_online)
103 new_ac_status = !!pdata->is_ac_online();
104
105 if (pdata->is_usb_online)
106 new_usb_status = !!pdata->is_usb_online();
107}
108
Anton Vorontsovb2998042007-05-04 00:32:17 +0400109static void update_charger(void)
110{
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100111 static int regulator_enabled;
112 int max_uA = pdata->ac_max_uA;
Anton Vorontsovb2998042007-05-04 00:32:17 +0400113
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100114 if (pdata->set_charge) {
115 if (new_ac_status > 0) {
116 dev_dbg(dev, "charger on (AC)\n");
117 pdata->set_charge(PDA_POWER_CHARGE_AC);
118 } else if (new_usb_status > 0) {
119 dev_dbg(dev, "charger on (USB)\n");
120 pdata->set_charge(PDA_POWER_CHARGE_USB);
121 } else {
122 dev_dbg(dev, "charger off\n");
123 pdata->set_charge(0);
124 }
125 } else if (ac_draw) {
126 if (new_ac_status > 0) {
127 regulator_set_current_limit(ac_draw, max_uA, max_uA);
128 if (!regulator_enabled) {
129 dev_dbg(dev, "charger on (AC)\n");
Mark Brown92311c32012-06-12 09:46:26 +0800130 WARN_ON(regulator_enable(ac_draw));
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100131 regulator_enabled = 1;
132 }
133 } else {
134 if (regulator_enabled) {
135 dev_dbg(dev, "charger off\n");
Mark Brown92311c32012-06-12 09:46:26 +0800136 WARN_ON(regulator_disable(ac_draw));
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100137 regulator_enabled = 0;
138 }
139 }
Anton Vorontsovb2998042007-05-04 00:32:17 +0400140 }
Anton Vorontsovb2998042007-05-04 00:32:17 +0400141}
142
Michael Trimarchi5b65f7d2017-04-25 15:18:05 +0200143static void supply_work_func(struct work_struct *work)
Anton Vorontsovb2998042007-05-04 00:32:17 +0400144{
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300145 if (ac_status == PDA_PSY_TO_CHANGE) {
146 ac_status = new_ac_status;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100147 power_supply_changed(pda_psy_ac);
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300148 }
Jeff Garzik5ebf6e62007-07-14 19:12:04 -0400149
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300150 if (usb_status == PDA_PSY_TO_CHANGE) {
151 usb_status = new_usb_status;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100152 power_supply_changed(pda_psy_usb);
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300153 }
Anton Vorontsovb2998042007-05-04 00:32:17 +0400154}
155
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300156static void psy_changed(void)
Anton Vorontsovb2998042007-05-04 00:32:17 +0400157{
158 update_charger();
159
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300160 /*
161 * Okay, charger set. Now wait a bit before notifying supplicants,
162 * charge power should stabilize.
163 */
Michael Trimarchi5b65f7d2017-04-25 15:18:05 +0200164 cancel_delayed_work(&supply_work);
165 schedule_delayed_work(&supply_work,
166 msecs_to_jiffies(pdata->wait_for_charger));
Anton Vorontsovb2998042007-05-04 00:32:17 +0400167}
168
Michael Trimarchi5b65f7d2017-04-25 15:18:05 +0200169static void charger_work_func(struct work_struct *work)
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300170{
171 update_status();
172 psy_changed();
173}
174
Jeff Garzik5ebf6e62007-07-14 19:12:04 -0400175static irqreturn_t power_changed_isr(int irq, void *power_supply)
Anton Vorontsovb2998042007-05-04 00:32:17 +0400176{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100177 if (power_supply == pda_psy_ac)
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300178 ac_status = PDA_PSY_TO_CHANGE;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100179 else if (power_supply == pda_psy_usb)
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300180 usb_status = PDA_PSY_TO_CHANGE;
181 else
182 return IRQ_NONE;
183
184 /*
185 * Wait a bit before reading ac/usb line status and setting charger,
186 * because ac/usb status readings may lag from irq.
187 */
Michael Trimarchi5b65f7d2017-04-25 15:18:05 +0200188 cancel_delayed_work(&charger_work);
189 schedule_delayed_work(&charger_work,
190 msecs_to_jiffies(pdata->wait_for_status));
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300191
Anton Vorontsovb2998042007-05-04 00:32:17 +0400192 return IRQ_HANDLED;
193}
194
Michael Trimarchi5b65f7d2017-04-25 15:18:05 +0200195static void polling_work_func(struct work_struct *work)
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300196{
197 int changed = 0;
198
199 dev_dbg(dev, "polling...\n");
200
201 update_status();
202
203 if (!ac_irq && new_ac_status != ac_status) {
204 ac_status = PDA_PSY_TO_CHANGE;
205 changed = 1;
206 }
207
208 if (!usb_irq && new_usb_status != usb_status) {
209 usb_status = PDA_PSY_TO_CHANGE;
210 changed = 1;
211 }
212
213 if (changed)
214 psy_changed();
215
Michael Trimarchi5b65f7d2017-04-25 15:18:05 +0200216 cancel_delayed_work(&polling_work);
217 schedule_delayed_work(&polling_work,
218 msecs_to_jiffies(pdata->polling_interval));
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300219}
220
Felipe Balbi820d0882013-03-07 11:23:50 +0200221#if IS_ENABLED(CONFIG_USB_PHY)
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100222static int otg_is_usb_online(void)
223{
Dima Zavin9ad63982011-07-10 16:01:15 -0700224 return (transceiver->last_event == USB_EVENT_VBUS ||
225 transceiver->last_event == USB_EVENT_ENUMERATED);
226}
227
228static int otg_is_ac_online(void)
229{
230 return (transceiver->last_event == USB_EVENT_CHARGER);
231}
232
233static int otg_handle_notification(struct notifier_block *nb,
234 unsigned long event, void *unused)
235{
236 switch (event) {
237 case USB_EVENT_CHARGER:
238 ac_status = PDA_PSY_TO_CHANGE;
239 break;
240 case USB_EVENT_VBUS:
241 case USB_EVENT_ENUMERATED:
242 usb_status = PDA_PSY_TO_CHANGE;
243 break;
244 case USB_EVENT_NONE:
245 ac_status = PDA_PSY_TO_CHANGE;
246 usb_status = PDA_PSY_TO_CHANGE;
247 break;
248 default:
249 return NOTIFY_OK;
250 }
251
252 /*
253 * Wait a bit before reading ac/usb line status and setting charger,
254 * because ac/usb status readings may lag from irq.
255 */
Michael Trimarchi5b65f7d2017-04-25 15:18:05 +0200256 cancel_delayed_work(&charger_work);
257 schedule_delayed_work(&charger_work,
258 msecs_to_jiffies(pdata->wait_for_status));
Dima Zavin9ad63982011-07-10 16:01:15 -0700259
260 return NOTIFY_OK;
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100261}
262#endif
263
Anton Vorontsovb2998042007-05-04 00:32:17 +0400264static int pda_power_probe(struct platform_device *pdev)
265{
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100266 struct power_supply_config psy_cfg = {};
Anton Vorontsovb2998042007-05-04 00:32:17 +0400267 int ret = 0;
268
269 dev = &pdev->dev;
270
271 if (pdev->id != -1) {
272 dev_err(dev, "it's meaningless to register several "
273 "pda_powers; use id = -1\n");
274 ret = -EINVAL;
275 goto wrongid;
276 }
277
278 pdata = pdev->dev.platform_data;
279
Philipp Zabelf6b6b182008-04-12 13:47:45 +0200280 if (pdata->init) {
281 ret = pdata->init(dev);
282 if (ret < 0)
283 goto init_failed;
284 }
285
Paul Parsonsec60ea52012-09-20 14:26:05 -0700286 ac_draw = regulator_get(dev, "ac_draw");
287 if (IS_ERR(ac_draw)) {
288 dev_dbg(dev, "couldn't get ac_draw regulator\n");
289 ac_draw = NULL;
Paul Parsonsec60ea52012-09-20 14:26:05 -0700290 }
291
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300292 update_status();
Anton Vorontsovb2998042007-05-04 00:32:17 +0400293 update_charger();
294
295 if (!pdata->wait_for_status)
296 pdata->wait_for_status = 500;
297
298 if (!pdata->wait_for_charger)
299 pdata->wait_for_charger = 500;
300
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300301 if (!pdata->polling_interval)
302 pdata->polling_interval = 2000;
303
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100304 if (!pdata->ac_max_uA)
305 pdata->ac_max_uA = 500000;
306
Michael Trimarchi5b65f7d2017-04-25 15:18:05 +0200307 INIT_DELAYED_WORK(&charger_work, charger_work_func);
308 INIT_DELAYED_WORK(&supply_work, supply_work_func);
Anton Vorontsovb2998042007-05-04 00:32:17 +0400309
310 ac_irq = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ac");
311 usb_irq = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "usb");
Anton Vorontsovb2998042007-05-04 00:32:17 +0400312
313 if (pdata->supplied_to) {
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100314 psy_cfg.supplied_to = pdata->supplied_to;
315 psy_cfg.num_supplicants = pdata->num_supplicants;
316 } else {
317 psy_cfg.supplied_to = pda_power_supplied_to;
318 psy_cfg.num_supplicants = ARRAY_SIZE(pda_power_supplied_to);
Anton Vorontsovb2998042007-05-04 00:32:17 +0400319 }
320
Felipe Balbi820d0882013-03-07 11:23:50 +0200321#if IS_ENABLED(CONFIG_USB_PHY)
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530322 transceiver = usb_get_phy(USB_PHY_TYPE_USB2);
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +0530323 if (!IS_ERR_OR_NULL(transceiver)) {
324 if (!pdata->is_usb_online)
325 pdata->is_usb_online = otg_is_usb_online;
326 if (!pdata->is_ac_online)
327 pdata->is_ac_online = otg_is_ac_online;
Dima Zavin9ad63982011-07-10 16:01:15 -0700328 }
Axel Lin1c745292011-08-23 20:34:33 +0800329#endif
Dima Zavin9ad63982011-07-10 16:01:15 -0700330
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300331 if (pdata->is_ac_online) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100332 pda_psy_ac = power_supply_register(&pdev->dev,
333 &pda_psy_ac_desc, &psy_cfg);
334 if (IS_ERR(pda_psy_ac)) {
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300335 dev_err(dev, "failed to register %s power supply\n",
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100336 pda_psy_ac_desc.name);
337 ret = PTR_ERR(pda_psy_ac);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300338 goto ac_supply_failed;
339 }
340
341 if (ac_irq) {
342 ret = request_irq(ac_irq->start, power_changed_isr,
343 get_irq_flags(ac_irq), ac_irq->name,
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100344 pda_psy_ac);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300345 if (ret) {
346 dev_err(dev, "request ac irq failed\n");
347 goto ac_irq_failed;
348 }
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300349 } else {
350 polling = 1;
Anton Vorontsovb2998042007-05-04 00:32:17 +0400351 }
352 }
353
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300354 if (pdata->is_usb_online) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100355 pda_psy_usb = power_supply_register(&pdev->dev,
356 &pda_psy_usb_desc,
357 &psy_cfg);
358 if (IS_ERR(pda_psy_usb)) {
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300359 dev_err(dev, "failed to register %s power supply\n",
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100360 pda_psy_usb_desc.name);
361 ret = PTR_ERR(pda_psy_usb);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300362 goto usb_supply_failed;
363 }
364
365 if (usb_irq) {
366 ret = request_irq(usb_irq->start, power_changed_isr,
367 get_irq_flags(usb_irq),
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100368 usb_irq->name, pda_psy_usb);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300369 if (ret) {
370 dev_err(dev, "request usb irq failed\n");
371 goto usb_irq_failed;
372 }
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300373 } else {
374 polling = 1;
Anton Vorontsovb2998042007-05-04 00:32:17 +0400375 }
376 }
377
Felipe Balbi820d0882013-03-07 11:23:50 +0200378#if IS_ENABLED(CONFIG_USB_PHY)
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +0530379 if (!IS_ERR_OR_NULL(transceiver) && pdata->use_otg_notifier) {
Dima Zavin9ad63982011-07-10 16:01:15 -0700380 otg_nb.notifier_call = otg_handle_notification;
Heikki Krogerusfcc8ebc2012-02-13 13:24:16 +0200381 ret = usb_register_notifier(transceiver, &otg_nb);
Dima Zavin9ad63982011-07-10 16:01:15 -0700382 if (ret) {
383 dev_err(dev, "failure to register otg notifier\n");
384 goto otg_reg_notifier_failed;
385 }
386 polling = 0;
387 }
Axel Lin1c745292011-08-23 20:34:33 +0800388#endif
Dima Zavin9ad63982011-07-10 16:01:15 -0700389
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300390 if (polling) {
391 dev_dbg(dev, "will poll for status\n");
Michael Trimarchi5b65f7d2017-04-25 15:18:05 +0200392 INIT_DELAYED_WORK(&polling_work, polling_work_func);
393 cancel_delayed_work(&polling_work);
394 schedule_delayed_work(&polling_work,
395 msecs_to_jiffies(pdata->polling_interval));
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300396 }
397
398 if (ac_irq || usb_irq)
399 device_init_wakeup(&pdev->dev, 1);
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300400
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300401 return 0;
Anton Vorontsovb2998042007-05-04 00:32:17 +0400402
Felipe Balbi820d0882013-03-07 11:23:50 +0200403#if IS_ENABLED(CONFIG_USB_PHY)
Dima Zavin9ad63982011-07-10 16:01:15 -0700404otg_reg_notifier_failed:
405 if (pdata->is_usb_online && usb_irq)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100406 free_irq(usb_irq->start, pda_psy_usb);
Axel Lin1c745292011-08-23 20:34:33 +0800407#endif
Anton Vorontsovb2998042007-05-04 00:32:17 +0400408usb_irq_failed:
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300409 if (pdata->is_usb_online)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100410 power_supply_unregister(pda_psy_usb);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300411usb_supply_failed:
412 if (pdata->is_ac_online && ac_irq)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100413 free_irq(ac_irq->start, pda_psy_ac);
Felipe Balbi820d0882013-03-07 11:23:50 +0200414#if IS_ENABLED(CONFIG_USB_PHY)
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +0530415 if (!IS_ERR_OR_NULL(transceiver))
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530416 usb_put_phy(transceiver);
Axel Lin1c745292011-08-23 20:34:33 +0800417#endif
Anton Vorontsovb2998042007-05-04 00:32:17 +0400418ac_irq_failed:
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300419 if (pdata->is_ac_online)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100420 power_supply_unregister(pda_psy_ac);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300421ac_supply_failed:
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100422 if (ac_draw) {
423 regulator_put(ac_draw);
424 ac_draw = NULL;
425 }
Philipp Zabelf6b6b182008-04-12 13:47:45 +0200426 if (pdata->exit)
427 pdata->exit(dev);
428init_failed:
Anton Vorontsovb2998042007-05-04 00:32:17 +0400429wrongid:
Anton Vorontsovb2998042007-05-04 00:32:17 +0400430 return ret;
431}
432
433static int pda_power_remove(struct platform_device *pdev)
434{
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300435 if (pdata->is_usb_online && usb_irq)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100436 free_irq(usb_irq->start, pda_psy_usb);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300437 if (pdata->is_ac_online && ac_irq)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100438 free_irq(ac_irq->start, pda_psy_ac);
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300439
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300440 if (polling)
Michael Trimarchi5b65f7d2017-04-25 15:18:05 +0200441 cancel_delayed_work_sync(&polling_work);
442 cancel_delayed_work_sync(&charger_work);
443 cancel_delayed_work_sync(&supply_work);
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300444
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300445 if (pdata->is_usb_online)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100446 power_supply_unregister(pda_psy_usb);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300447 if (pdata->is_ac_online)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100448 power_supply_unregister(pda_psy_ac);
Felipe Balbi820d0882013-03-07 11:23:50 +0200449#if IS_ENABLED(CONFIG_USB_PHY)
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +0530450 if (!IS_ERR_OR_NULL(transceiver))
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530451 usb_put_phy(transceiver);
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100452#endif
453 if (ac_draw) {
454 regulator_put(ac_draw);
455 ac_draw = NULL;
456 }
Philipp Zabelf6b6b182008-04-12 13:47:45 +0200457 if (pdata->exit)
458 pdata->exit(dev);
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300459
Anton Vorontsovb2998042007-05-04 00:32:17 +0400460 return 0;
461}
462
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300463#ifdef CONFIG_PM
Robert Jarzmike82374f2008-08-11 22:22:27 +0200464static int ac_wakeup_enabled;
465static int usb_wakeup_enabled;
466
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300467static int pda_power_suspend(struct platform_device *pdev, pm_message_t state)
468{
Daniel Macka3bcbbe2010-04-12 23:33:22 +0200469 if (pdata->suspend) {
470 int ret = pdata->suspend(state);
471
472 if (ret)
473 return ret;
474 }
475
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300476 if (device_may_wakeup(&pdev->dev)) {
477 if (ac_irq)
Robert Jarzmike82374f2008-08-11 22:22:27 +0200478 ac_wakeup_enabled = !enable_irq_wake(ac_irq->start);
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300479 if (usb_irq)
Robert Jarzmike82374f2008-08-11 22:22:27 +0200480 usb_wakeup_enabled = !enable_irq_wake(usb_irq->start);
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300481 }
482
483 return 0;
484}
485
486static int pda_power_resume(struct platform_device *pdev)
487{
488 if (device_may_wakeup(&pdev->dev)) {
Robert Jarzmike82374f2008-08-11 22:22:27 +0200489 if (usb_irq && usb_wakeup_enabled)
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300490 disable_irq_wake(usb_irq->start);
Robert Jarzmike82374f2008-08-11 22:22:27 +0200491 if (ac_irq && ac_wakeup_enabled)
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300492 disable_irq_wake(ac_irq->start);
493 }
494
Daniel Macka3bcbbe2010-04-12 23:33:22 +0200495 if (pdata->resume)
496 return pdata->resume();
497
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300498 return 0;
499}
500#else
501#define pda_power_suspend NULL
502#define pda_power_resume NULL
503#endif /* CONFIG_PM */
504
Anton Vorontsovb2998042007-05-04 00:32:17 +0400505static struct platform_driver pda_power_pdrv = {
506 .driver = {
507 .name = "pda-power",
508 },
509 .probe = pda_power_probe,
510 .remove = pda_power_remove,
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300511 .suspend = pda_power_suspend,
512 .resume = pda_power_resume,
Anton Vorontsovb2998042007-05-04 00:32:17 +0400513};
514
Axel Lin300bac72011-11-26 12:01:10 +0800515module_platform_driver(pda_power_pdrv);
Anton Vorontsovb2998042007-05-04 00:32:17 +0400516
Anton Vorontsovb2998042007-05-04 00:32:17 +0400517MODULE_LICENSE("GPL");
518MODULE_AUTHOR("Anton Vorontsov <cbou@mail.ru>");
Axel Lin300bac72011-11-26 12:01:10 +0800519MODULE_ALIAS("platform:pda-power");