blob: e0f206b0775b2a09cf24caed61ae08d5098af940 [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{
Philipp Zabel74194cc2009-01-18 14:46:21 +010027 unsigned int flags = IRQF_SAMPLE_RANDOM | IRQF_SHARED;
Anton Vorontsovb2998042007-05-04 00:32:17 +040028
29 flags |= res->flags & IRQF_TRIGGER_MASK;
30
31 return flags;
32}
33
34static struct device *dev;
35static struct pda_power_pdata *pdata;
36static struct resource *ac_irq, *usb_irq;
37static struct timer_list charger_timer;
38static struct timer_list supply_timer;
Anton Vorontsovc3caeba2008-01-13 02:44:20 +030039static struct timer_list polling_timer;
40static int polling;
Anton Vorontsovb2998042007-05-04 00:32:17 +040041
Axel Lin1c745292011-08-23 20:34:33 +080042#ifdef CONFIG_USB_OTG_UTILS
Heikki Krogerus86753812012-02-13 13:24:02 +020043static struct usb_phy *transceiver;
Dima Zavin9ad63982011-07-10 16:01:15 -070044static struct notifier_block otg_nb;
Axel Lin1c745292011-08-23 20:34:33 +080045#endif
46
Philipp Zabel5bf2b992009-01-18 17:40:27 +010047static struct regulator *ac_draw;
48
Anton Vorontsovbfde2662008-01-13 02:39:17 +030049enum {
50 PDA_PSY_OFFLINE = 0,
51 PDA_PSY_ONLINE = 1,
52 PDA_PSY_TO_CHANGE,
53};
54static int new_ac_status = -1;
55static int new_usb_status = -1;
56static int ac_status = -1;
57static int usb_status = -1;
58
Anton Vorontsovb2998042007-05-04 00:32:17 +040059static int pda_power_get_property(struct power_supply *psy,
60 enum power_supply_property psp,
61 union power_supply_propval *val)
62{
63 switch (psp) {
64 case POWER_SUPPLY_PROP_ONLINE:
65 if (psy->type == POWER_SUPPLY_TYPE_MAINS)
66 val->intval = pdata->is_ac_online ?
67 pdata->is_ac_online() : 0;
68 else
69 val->intval = pdata->is_usb_online ?
70 pdata->is_usb_online() : 0;
71 break;
72 default:
73 return -EINVAL;
74 }
75 return 0;
76}
77
78static enum power_supply_property pda_power_props[] = {
79 POWER_SUPPLY_PROP_ONLINE,
80};
81
82static char *pda_power_supplied_to[] = {
83 "main-battery",
84 "backup-battery",
85};
86
Anton Vorontsovbfde2662008-01-13 02:39:17 +030087static struct power_supply pda_psy_ac = {
88 .name = "ac",
89 .type = POWER_SUPPLY_TYPE_MAINS,
90 .supplied_to = pda_power_supplied_to,
91 .num_supplicants = ARRAY_SIZE(pda_power_supplied_to),
92 .properties = pda_power_props,
93 .num_properties = ARRAY_SIZE(pda_power_props),
94 .get_property = pda_power_get_property,
Anton Vorontsovb2998042007-05-04 00:32:17 +040095};
96
Anton Vorontsovbfde2662008-01-13 02:39:17 +030097static struct power_supply pda_psy_usb = {
98 .name = "usb",
99 .type = POWER_SUPPLY_TYPE_USB,
100 .supplied_to = pda_power_supplied_to,
101 .num_supplicants = ARRAY_SIZE(pda_power_supplied_to),
102 .properties = pda_power_props,
103 .num_properties = ARRAY_SIZE(pda_power_props),
104 .get_property = pda_power_get_property,
105};
106
107static void update_status(void)
108{
109 if (pdata->is_ac_online)
110 new_ac_status = !!pdata->is_ac_online();
111
112 if (pdata->is_usb_online)
113 new_usb_status = !!pdata->is_usb_online();
114}
115
Anton Vorontsovb2998042007-05-04 00:32:17 +0400116static void update_charger(void)
117{
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100118 static int regulator_enabled;
119 int max_uA = pdata->ac_max_uA;
Anton Vorontsovb2998042007-05-04 00:32:17 +0400120
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100121 if (pdata->set_charge) {
122 if (new_ac_status > 0) {
123 dev_dbg(dev, "charger on (AC)\n");
124 pdata->set_charge(PDA_POWER_CHARGE_AC);
125 } else if (new_usb_status > 0) {
126 dev_dbg(dev, "charger on (USB)\n");
127 pdata->set_charge(PDA_POWER_CHARGE_USB);
128 } else {
129 dev_dbg(dev, "charger off\n");
130 pdata->set_charge(0);
131 }
132 } else if (ac_draw) {
133 if (new_ac_status > 0) {
134 regulator_set_current_limit(ac_draw, max_uA, max_uA);
135 if (!regulator_enabled) {
136 dev_dbg(dev, "charger on (AC)\n");
137 regulator_enable(ac_draw);
138 regulator_enabled = 1;
139 }
140 } else {
141 if (regulator_enabled) {
142 dev_dbg(dev, "charger off\n");
143 regulator_disable(ac_draw);
144 regulator_enabled = 0;
145 }
146 }
Anton Vorontsovb2998042007-05-04 00:32:17 +0400147 }
Anton Vorontsovb2998042007-05-04 00:32:17 +0400148}
149
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300150static void supply_timer_func(unsigned long unused)
Anton Vorontsovb2998042007-05-04 00:32:17 +0400151{
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300152 if (ac_status == PDA_PSY_TO_CHANGE) {
153 ac_status = new_ac_status;
154 power_supply_changed(&pda_psy_ac);
155 }
Jeff Garzik5ebf6e62007-07-14 19:12:04 -0400156
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300157 if (usb_status == PDA_PSY_TO_CHANGE) {
158 usb_status = new_usb_status;
159 power_supply_changed(&pda_psy_usb);
160 }
Anton Vorontsovb2998042007-05-04 00:32:17 +0400161}
162
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300163static void psy_changed(void)
Anton Vorontsovb2998042007-05-04 00:32:17 +0400164{
165 update_charger();
166
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300167 /*
168 * Okay, charger set. Now wait a bit before notifying supplicants,
169 * charge power should stabilize.
170 */
Anton Vorontsovb2998042007-05-04 00:32:17 +0400171 mod_timer(&supply_timer,
172 jiffies + msecs_to_jiffies(pdata->wait_for_charger));
Anton Vorontsovb2998042007-05-04 00:32:17 +0400173}
174
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300175static void charger_timer_func(unsigned long unused)
176{
177 update_status();
178 psy_changed();
179}
180
Jeff Garzik5ebf6e62007-07-14 19:12:04 -0400181static irqreturn_t power_changed_isr(int irq, void *power_supply)
Anton Vorontsovb2998042007-05-04 00:32:17 +0400182{
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300183 if (power_supply == &pda_psy_ac)
184 ac_status = PDA_PSY_TO_CHANGE;
185 else if (power_supply == &pda_psy_usb)
186 usb_status = PDA_PSY_TO_CHANGE;
187 else
188 return IRQ_NONE;
189
190 /*
191 * Wait a bit before reading ac/usb line status and setting charger,
192 * because ac/usb status readings may lag from irq.
193 */
Anton Vorontsovb2998042007-05-04 00:32:17 +0400194 mod_timer(&charger_timer,
195 jiffies + msecs_to_jiffies(pdata->wait_for_status));
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300196
Anton Vorontsovb2998042007-05-04 00:32:17 +0400197 return IRQ_HANDLED;
198}
199
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300200static void polling_timer_func(unsigned long unused)
201{
202 int changed = 0;
203
204 dev_dbg(dev, "polling...\n");
205
206 update_status();
207
208 if (!ac_irq && new_ac_status != ac_status) {
209 ac_status = PDA_PSY_TO_CHANGE;
210 changed = 1;
211 }
212
213 if (!usb_irq && new_usb_status != usb_status) {
214 usb_status = PDA_PSY_TO_CHANGE;
215 changed = 1;
216 }
217
218 if (changed)
219 psy_changed();
220
221 mod_timer(&polling_timer,
222 jiffies + msecs_to_jiffies(pdata->polling_interval));
223}
224
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100225#ifdef CONFIG_USB_OTG_UTILS
226static int otg_is_usb_online(void)
227{
Dima Zavin9ad63982011-07-10 16:01:15 -0700228 return (transceiver->last_event == USB_EVENT_VBUS ||
229 transceiver->last_event == USB_EVENT_ENUMERATED);
230}
231
232static int otg_is_ac_online(void)
233{
234 return (transceiver->last_event == USB_EVENT_CHARGER);
235}
236
237static int otg_handle_notification(struct notifier_block *nb,
238 unsigned long event, void *unused)
239{
240 switch (event) {
241 case USB_EVENT_CHARGER:
242 ac_status = PDA_PSY_TO_CHANGE;
243 break;
244 case USB_EVENT_VBUS:
245 case USB_EVENT_ENUMERATED:
246 usb_status = PDA_PSY_TO_CHANGE;
247 break;
248 case USB_EVENT_NONE:
249 ac_status = PDA_PSY_TO_CHANGE;
250 usb_status = PDA_PSY_TO_CHANGE;
251 break;
252 default:
253 return NOTIFY_OK;
254 }
255
256 /*
257 * Wait a bit before reading ac/usb line status and setting charger,
258 * because ac/usb status readings may lag from irq.
259 */
260 mod_timer(&charger_timer,
261 jiffies + msecs_to_jiffies(pdata->wait_for_status));
262
263 return NOTIFY_OK;
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100264}
265#endif
266
Anton Vorontsovb2998042007-05-04 00:32:17 +0400267static int pda_power_probe(struct platform_device *pdev)
268{
269 int ret = 0;
270
271 dev = &pdev->dev;
272
273 if (pdev->id != -1) {
274 dev_err(dev, "it's meaningless to register several "
275 "pda_powers; use id = -1\n");
276 ret = -EINVAL;
277 goto wrongid;
278 }
279
280 pdata = pdev->dev.platform_data;
281
Philipp Zabelf6b6b182008-04-12 13:47:45 +0200282 if (pdata->init) {
283 ret = pdata->init(dev);
284 if (ret < 0)
285 goto init_failed;
286 }
287
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300288 update_status();
Anton Vorontsovb2998042007-05-04 00:32:17 +0400289 update_charger();
290
291 if (!pdata->wait_for_status)
292 pdata->wait_for_status = 500;
293
294 if (!pdata->wait_for_charger)
295 pdata->wait_for_charger = 500;
296
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300297 if (!pdata->polling_interval)
298 pdata->polling_interval = 2000;
299
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100300 if (!pdata->ac_max_uA)
301 pdata->ac_max_uA = 500000;
302
Anton Vorontsovb2998042007-05-04 00:32:17 +0400303 setup_timer(&charger_timer, charger_timer_func, 0);
304 setup_timer(&supply_timer, supply_timer_func, 0);
305
306 ac_irq = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ac");
307 usb_irq = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "usb");
Anton Vorontsovb2998042007-05-04 00:32:17 +0400308
309 if (pdata->supplied_to) {
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300310 pda_psy_ac.supplied_to = pdata->supplied_to;
311 pda_psy_ac.num_supplicants = pdata->num_supplicants;
312 pda_psy_usb.supplied_to = pdata->supplied_to;
313 pda_psy_usb.num_supplicants = pdata->num_supplicants;
Anton Vorontsovb2998042007-05-04 00:32:17 +0400314 }
315
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100316 ac_draw = regulator_get(dev, "ac_draw");
317 if (IS_ERR(ac_draw)) {
318 dev_dbg(dev, "couldn't get ac_draw regulator\n");
319 ac_draw = NULL;
320 ret = PTR_ERR(ac_draw);
321 }
322
Axel Lin1c745292011-08-23 20:34:33 +0800323#ifdef CONFIG_USB_OTG_UTILS
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530324 transceiver = usb_get_phy();
Dima Zavin9ad63982011-07-10 16:01:15 -0700325 if (transceiver && !pdata->is_usb_online) {
326 pdata->is_usb_online = otg_is_usb_online;
327 }
328 if (transceiver && !pdata->is_ac_online) {
329 pdata->is_ac_online = otg_is_ac_online;
330 }
Axel Lin1c745292011-08-23 20:34:33 +0800331#endif
Dima Zavin9ad63982011-07-10 16:01:15 -0700332
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300333 if (pdata->is_ac_online) {
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300334 ret = power_supply_register(&pdev->dev, &pda_psy_ac);
Anton Vorontsovb2998042007-05-04 00:32:17 +0400335 if (ret) {
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300336 dev_err(dev, "failed to register %s power supply\n",
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300337 pda_psy_ac.name);
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,
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300344 &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) {
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300355 ret = power_supply_register(&pdev->dev, &pda_psy_usb);
Anton Vorontsovb2998042007-05-04 00:32:17 +0400356 if (ret) {
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300357 dev_err(dev, "failed to register %s power supply\n",
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300358 pda_psy_usb.name);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300359 goto usb_supply_failed;
360 }
361
362 if (usb_irq) {
363 ret = request_irq(usb_irq->start, power_changed_isr,
364 get_irq_flags(usb_irq),
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300365 usb_irq->name, &pda_psy_usb);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300366 if (ret) {
367 dev_err(dev, "request usb irq failed\n");
368 goto usb_irq_failed;
369 }
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300370 } else {
371 polling = 1;
Anton Vorontsovb2998042007-05-04 00:32:17 +0400372 }
373 }
374
Axel Lin1c745292011-08-23 20:34:33 +0800375#ifdef CONFIG_USB_OTG_UTILS
Dima Zavin9ad63982011-07-10 16:01:15 -0700376 if (transceiver && pdata->use_otg_notifier) {
377 otg_nb.notifier_call = otg_handle_notification;
Heikki Krogerusfcc8ebc2012-02-13 13:24:16 +0200378 ret = usb_register_notifier(transceiver, &otg_nb);
Dima Zavin9ad63982011-07-10 16:01:15 -0700379 if (ret) {
380 dev_err(dev, "failure to register otg notifier\n");
381 goto otg_reg_notifier_failed;
382 }
383 polling = 0;
384 }
Axel Lin1c745292011-08-23 20:34:33 +0800385#endif
Dima Zavin9ad63982011-07-10 16:01:15 -0700386
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300387 if (polling) {
388 dev_dbg(dev, "will poll for status\n");
389 setup_timer(&polling_timer, polling_timer_func, 0);
390 mod_timer(&polling_timer,
391 jiffies + msecs_to_jiffies(pdata->polling_interval));
392 }
393
394 if (ac_irq || usb_irq)
395 device_init_wakeup(&pdev->dev, 1);
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300396
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300397 return 0;
Anton Vorontsovb2998042007-05-04 00:32:17 +0400398
Axel Lin1c745292011-08-23 20:34:33 +0800399#ifdef CONFIG_USB_OTG_UTILS
Dima Zavin9ad63982011-07-10 16:01:15 -0700400otg_reg_notifier_failed:
401 if (pdata->is_usb_online && usb_irq)
402 free_irq(usb_irq->start, &pda_psy_usb);
Axel Lin1c745292011-08-23 20:34:33 +0800403#endif
Anton Vorontsovb2998042007-05-04 00:32:17 +0400404usb_irq_failed:
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300405 if (pdata->is_usb_online)
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300406 power_supply_unregister(&pda_psy_usb);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300407usb_supply_failed:
408 if (pdata->is_ac_online && ac_irq)
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300409 free_irq(ac_irq->start, &pda_psy_ac);
Axel Lin1c745292011-08-23 20:34:33 +0800410#ifdef CONFIG_USB_OTG_UTILS
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100411 if (transceiver)
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530412 usb_put_phy(transceiver);
Axel Lin1c745292011-08-23 20:34:33 +0800413#endif
Anton Vorontsovb2998042007-05-04 00:32:17 +0400414ac_irq_failed:
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300415 if (pdata->is_ac_online)
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300416 power_supply_unregister(&pda_psy_ac);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300417ac_supply_failed:
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100418 if (ac_draw) {
419 regulator_put(ac_draw);
420 ac_draw = NULL;
421 }
Philipp Zabelf6b6b182008-04-12 13:47:45 +0200422 if (pdata->exit)
423 pdata->exit(dev);
424init_failed:
Anton Vorontsovb2998042007-05-04 00:32:17 +0400425wrongid:
Anton Vorontsovb2998042007-05-04 00:32:17 +0400426 return ret;
427}
428
429static int pda_power_remove(struct platform_device *pdev)
430{
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300431 if (pdata->is_usb_online && usb_irq)
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300432 free_irq(usb_irq->start, &pda_psy_usb);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300433 if (pdata->is_ac_online && ac_irq)
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300434 free_irq(ac_irq->start, &pda_psy_ac);
435
Anton Vorontsovc3caeba2008-01-13 02:44:20 +0300436 if (polling)
437 del_timer_sync(&polling_timer);
Anton Vorontsovb2998042007-05-04 00:32:17 +0400438 del_timer_sync(&charger_timer);
439 del_timer_sync(&supply_timer);
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300440
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300441 if (pdata->is_usb_online)
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300442 power_supply_unregister(&pda_psy_usb);
Dmitry Baryshkov9ef45102008-01-07 04:12:39 +0300443 if (pdata->is_ac_online)
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300444 power_supply_unregister(&pda_psy_ac);
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100445#ifdef CONFIG_USB_OTG_UTILS
446 if (transceiver)
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530447 usb_put_phy(transceiver);
Philipp Zabel5bf2b992009-01-18 17:40:27 +0100448#endif
449 if (ac_draw) {
450 regulator_put(ac_draw);
451 ac_draw = NULL;
452 }
Philipp Zabelf6b6b182008-04-12 13:47:45 +0200453 if (pdata->exit)
454 pdata->exit(dev);
Anton Vorontsovbfde2662008-01-13 02:39:17 +0300455
Anton Vorontsovb2998042007-05-04 00:32:17 +0400456 return 0;
457}
458
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300459#ifdef CONFIG_PM
Robert Jarzmike82374f2008-08-11 22:22:27 +0200460static int ac_wakeup_enabled;
461static int usb_wakeup_enabled;
462
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300463static int pda_power_suspend(struct platform_device *pdev, pm_message_t state)
464{
Daniel Macka3bcbbe2010-04-12 23:33:22 +0200465 if (pdata->suspend) {
466 int ret = pdata->suspend(state);
467
468 if (ret)
469 return ret;
470 }
471
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300472 if (device_may_wakeup(&pdev->dev)) {
473 if (ac_irq)
Robert Jarzmike82374f2008-08-11 22:22:27 +0200474 ac_wakeup_enabled = !enable_irq_wake(ac_irq->start);
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300475 if (usb_irq)
Robert Jarzmike82374f2008-08-11 22:22:27 +0200476 usb_wakeup_enabled = !enable_irq_wake(usb_irq->start);
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300477 }
478
479 return 0;
480}
481
482static int pda_power_resume(struct platform_device *pdev)
483{
484 if (device_may_wakeup(&pdev->dev)) {
Robert Jarzmike82374f2008-08-11 22:22:27 +0200485 if (usb_irq && usb_wakeup_enabled)
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300486 disable_irq_wake(usb_irq->start);
Robert Jarzmike82374f2008-08-11 22:22:27 +0200487 if (ac_irq && ac_wakeup_enabled)
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300488 disable_irq_wake(ac_irq->start);
489 }
490
Daniel Macka3bcbbe2010-04-12 23:33:22 +0200491 if (pdata->resume)
492 return pdata->resume();
493
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300494 return 0;
495}
496#else
497#define pda_power_suspend NULL
498#define pda_power_resume NULL
499#endif /* CONFIG_PM */
500
Anton Vorontsovb2998042007-05-04 00:32:17 +0400501static struct platform_driver pda_power_pdrv = {
502 .driver = {
503 .name = "pda-power",
504 },
505 .probe = pda_power_probe,
506 .remove = pda_power_remove,
Dmitry Baryshkov8f8e9b32008-01-13 02:35:43 +0300507 .suspend = pda_power_suspend,
508 .resume = pda_power_resume,
Anton Vorontsovb2998042007-05-04 00:32:17 +0400509};
510
Axel Lin300bac72011-11-26 12:01:10 +0800511module_platform_driver(pda_power_pdrv);
Anton Vorontsovb2998042007-05-04 00:32:17 +0400512
Anton Vorontsovb2998042007-05-04 00:32:17 +0400513MODULE_LICENSE("GPL");
514MODULE_AUTHOR("Anton Vorontsov <cbou@mail.ru>");
Axel Lin300bac72011-11-26 12:01:10 +0800515MODULE_ALIAS("platform:pda-power");