Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 1 | /* |
| 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 Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 15 | #include <linux/err.h> |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 16 | #include <linux/interrupt.h> |
Dima Zavin | 9ad6398 | 2011-07-10 16:01:15 -0700 | [diff] [blame] | 17 | #include <linux/notifier.h> |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 18 | #include <linux/power_supply.h> |
| 19 | #include <linux/pda_power.h> |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 20 | #include <linux/regulator/consumer.h> |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 21 | #include <linux/timer.h> |
| 22 | #include <linux/jiffies.h> |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 23 | #include <linux/usb/otg.h> |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 24 | |
| 25 | static inline unsigned int get_irq_flags(struct resource *res) |
| 26 | { |
Theodore Ts'o | d554a3f | 2012-07-17 13:40:18 -0400 | [diff] [blame] | 27 | return IRQF_SHARED | (res->flags & IRQF_TRIGGER_MASK); |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | static struct device *dev; |
| 31 | static struct pda_power_pdata *pdata; |
| 32 | static struct resource *ac_irq, *usb_irq; |
| 33 | static struct timer_list charger_timer; |
| 34 | static struct timer_list supply_timer; |
Anton Vorontsov | c3caeba | 2008-01-13 02:44:20 +0300 | [diff] [blame] | 35 | static struct timer_list polling_timer; |
| 36 | static int polling; |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 37 | static struct power_supply *pda_psy_ac, *pda_psy_usb; |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 38 | |
Felipe Balbi | 820d088 | 2013-03-07 11:23:50 +0200 | [diff] [blame] | 39 | #if IS_ENABLED(CONFIG_USB_PHY) |
Heikki Krogerus | 8675381 | 2012-02-13 13:24:02 +0200 | [diff] [blame] | 40 | static struct usb_phy *transceiver; |
Dima Zavin | 9ad6398 | 2011-07-10 16:01:15 -0700 | [diff] [blame] | 41 | static struct notifier_block otg_nb; |
Axel Lin | 1c74529 | 2011-08-23 20:34:33 +0800 | [diff] [blame] | 42 | #endif |
| 43 | |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 44 | static struct regulator *ac_draw; |
| 45 | |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 46 | enum { |
| 47 | PDA_PSY_OFFLINE = 0, |
| 48 | PDA_PSY_ONLINE = 1, |
| 49 | PDA_PSY_TO_CHANGE, |
| 50 | }; |
| 51 | static int new_ac_status = -1; |
| 52 | static int new_usb_status = -1; |
| 53 | static int ac_status = -1; |
| 54 | static int usb_status = -1; |
| 55 | |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 56 | static 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 Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 62 | if (psy->desc->type == POWER_SUPPLY_TYPE_MAINS) |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 63 | 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 | |
| 75 | static enum power_supply_property pda_power_props[] = { |
| 76 | POWER_SUPPLY_PROP_ONLINE, |
| 77 | }; |
| 78 | |
| 79 | static char *pda_power_supplied_to[] = { |
| 80 | "main-battery", |
| 81 | "backup-battery", |
| 82 | }; |
| 83 | |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 84 | static const struct power_supply_desc pda_psy_ac_desc = { |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 85 | .name = "ac", |
| 86 | .type = POWER_SUPPLY_TYPE_MAINS, |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 87 | .properties = pda_power_props, |
| 88 | .num_properties = ARRAY_SIZE(pda_power_props), |
| 89 | .get_property = pda_power_get_property, |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 90 | }; |
| 91 | |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 92 | static const struct power_supply_desc pda_psy_usb_desc = { |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 93 | .name = "usb", |
| 94 | .type = POWER_SUPPLY_TYPE_USB, |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 95 | .properties = pda_power_props, |
| 96 | .num_properties = ARRAY_SIZE(pda_power_props), |
| 97 | .get_property = pda_power_get_property, |
| 98 | }; |
| 99 | |
| 100 | static 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 Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 109 | static void update_charger(void) |
| 110 | { |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 111 | static int regulator_enabled; |
| 112 | int max_uA = pdata->ac_max_uA; |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 113 | |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 114 | 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 Brown | 92311c3 | 2012-06-12 09:46:26 +0800 | [diff] [blame] | 130 | WARN_ON(regulator_enable(ac_draw)); |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 131 | regulator_enabled = 1; |
| 132 | } |
| 133 | } else { |
| 134 | if (regulator_enabled) { |
| 135 | dev_dbg(dev, "charger off\n"); |
Mark Brown | 92311c3 | 2012-06-12 09:46:26 +0800 | [diff] [blame] | 136 | WARN_ON(regulator_disable(ac_draw)); |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 137 | regulator_enabled = 0; |
| 138 | } |
| 139 | } |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 140 | } |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 141 | } |
| 142 | |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 143 | static void supply_timer_func(unsigned long unused) |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 144 | { |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 145 | if (ac_status == PDA_PSY_TO_CHANGE) { |
| 146 | ac_status = new_ac_status; |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 147 | power_supply_changed(pda_psy_ac); |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 148 | } |
Jeff Garzik | 5ebf6e6 | 2007-07-14 19:12:04 -0400 | [diff] [blame] | 149 | |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 150 | if (usb_status == PDA_PSY_TO_CHANGE) { |
| 151 | usb_status = new_usb_status; |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 152 | power_supply_changed(pda_psy_usb); |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 153 | } |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 154 | } |
| 155 | |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 156 | static void psy_changed(void) |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 157 | { |
| 158 | update_charger(); |
| 159 | |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 160 | /* |
| 161 | * Okay, charger set. Now wait a bit before notifying supplicants, |
| 162 | * charge power should stabilize. |
| 163 | */ |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 164 | mod_timer(&supply_timer, |
| 165 | jiffies + msecs_to_jiffies(pdata->wait_for_charger)); |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 166 | } |
| 167 | |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 168 | static void charger_timer_func(unsigned long unused) |
| 169 | { |
| 170 | update_status(); |
| 171 | psy_changed(); |
| 172 | } |
| 173 | |
Jeff Garzik | 5ebf6e6 | 2007-07-14 19:12:04 -0400 | [diff] [blame] | 174 | static irqreturn_t power_changed_isr(int irq, void *power_supply) |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 175 | { |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 176 | if (power_supply == pda_psy_ac) |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 177 | ac_status = PDA_PSY_TO_CHANGE; |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 178 | else if (power_supply == pda_psy_usb) |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 179 | usb_status = PDA_PSY_TO_CHANGE; |
| 180 | else |
| 181 | return IRQ_NONE; |
| 182 | |
| 183 | /* |
| 184 | * Wait a bit before reading ac/usb line status and setting charger, |
| 185 | * because ac/usb status readings may lag from irq. |
| 186 | */ |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 187 | mod_timer(&charger_timer, |
| 188 | jiffies + msecs_to_jiffies(pdata->wait_for_status)); |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 189 | |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 190 | return IRQ_HANDLED; |
| 191 | } |
| 192 | |
Anton Vorontsov | c3caeba | 2008-01-13 02:44:20 +0300 | [diff] [blame] | 193 | static void polling_timer_func(unsigned long unused) |
| 194 | { |
| 195 | int changed = 0; |
| 196 | |
| 197 | dev_dbg(dev, "polling...\n"); |
| 198 | |
| 199 | update_status(); |
| 200 | |
| 201 | if (!ac_irq && new_ac_status != ac_status) { |
| 202 | ac_status = PDA_PSY_TO_CHANGE; |
| 203 | changed = 1; |
| 204 | } |
| 205 | |
| 206 | if (!usb_irq && new_usb_status != usb_status) { |
| 207 | usb_status = PDA_PSY_TO_CHANGE; |
| 208 | changed = 1; |
| 209 | } |
| 210 | |
| 211 | if (changed) |
| 212 | psy_changed(); |
| 213 | |
| 214 | mod_timer(&polling_timer, |
| 215 | jiffies + msecs_to_jiffies(pdata->polling_interval)); |
| 216 | } |
| 217 | |
Felipe Balbi | 820d088 | 2013-03-07 11:23:50 +0200 | [diff] [blame] | 218 | #if IS_ENABLED(CONFIG_USB_PHY) |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 219 | static int otg_is_usb_online(void) |
| 220 | { |
Dima Zavin | 9ad6398 | 2011-07-10 16:01:15 -0700 | [diff] [blame] | 221 | return (transceiver->last_event == USB_EVENT_VBUS || |
| 222 | transceiver->last_event == USB_EVENT_ENUMERATED); |
| 223 | } |
| 224 | |
| 225 | static int otg_is_ac_online(void) |
| 226 | { |
| 227 | return (transceiver->last_event == USB_EVENT_CHARGER); |
| 228 | } |
| 229 | |
| 230 | static int otg_handle_notification(struct notifier_block *nb, |
| 231 | unsigned long event, void *unused) |
| 232 | { |
| 233 | switch (event) { |
| 234 | case USB_EVENT_CHARGER: |
| 235 | ac_status = PDA_PSY_TO_CHANGE; |
| 236 | break; |
| 237 | case USB_EVENT_VBUS: |
| 238 | case USB_EVENT_ENUMERATED: |
| 239 | usb_status = PDA_PSY_TO_CHANGE; |
| 240 | break; |
| 241 | case USB_EVENT_NONE: |
| 242 | ac_status = PDA_PSY_TO_CHANGE; |
| 243 | usb_status = PDA_PSY_TO_CHANGE; |
| 244 | break; |
| 245 | default: |
| 246 | return NOTIFY_OK; |
| 247 | } |
| 248 | |
| 249 | /* |
| 250 | * Wait a bit before reading ac/usb line status and setting charger, |
| 251 | * because ac/usb status readings may lag from irq. |
| 252 | */ |
| 253 | mod_timer(&charger_timer, |
| 254 | jiffies + msecs_to_jiffies(pdata->wait_for_status)); |
| 255 | |
| 256 | return NOTIFY_OK; |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 257 | } |
| 258 | #endif |
| 259 | |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 260 | static int pda_power_probe(struct platform_device *pdev) |
| 261 | { |
Krzysztof Kozlowski | 2dc9215 | 2015-03-12 08:44:02 +0100 | [diff] [blame] | 262 | struct power_supply_config psy_cfg = {}; |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 263 | int ret = 0; |
| 264 | |
| 265 | dev = &pdev->dev; |
| 266 | |
| 267 | if (pdev->id != -1) { |
| 268 | dev_err(dev, "it's meaningless to register several " |
| 269 | "pda_powers; use id = -1\n"); |
| 270 | ret = -EINVAL; |
| 271 | goto wrongid; |
| 272 | } |
| 273 | |
| 274 | pdata = pdev->dev.platform_data; |
| 275 | |
Philipp Zabel | f6b6b18 | 2008-04-12 13:47:45 +0200 | [diff] [blame] | 276 | if (pdata->init) { |
| 277 | ret = pdata->init(dev); |
| 278 | if (ret < 0) |
| 279 | goto init_failed; |
| 280 | } |
| 281 | |
Paul Parsons | ec60ea5 | 2012-09-20 14:26:05 -0700 | [diff] [blame] | 282 | ac_draw = regulator_get(dev, "ac_draw"); |
| 283 | if (IS_ERR(ac_draw)) { |
| 284 | dev_dbg(dev, "couldn't get ac_draw regulator\n"); |
| 285 | ac_draw = NULL; |
Paul Parsons | ec60ea5 | 2012-09-20 14:26:05 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 288 | update_status(); |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 289 | 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 Vorontsov | c3caeba | 2008-01-13 02:44:20 +0300 | [diff] [blame] | 297 | if (!pdata->polling_interval) |
| 298 | pdata->polling_interval = 2000; |
| 299 | |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 300 | if (!pdata->ac_max_uA) |
| 301 | pdata->ac_max_uA = 500000; |
| 302 | |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 303 | 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 Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 308 | |
| 309 | if (pdata->supplied_to) { |
Krzysztof Kozlowski | 2dc9215 | 2015-03-12 08:44:02 +0100 | [diff] [blame] | 310 | psy_cfg.supplied_to = pdata->supplied_to; |
| 311 | psy_cfg.num_supplicants = pdata->num_supplicants; |
| 312 | } else { |
| 313 | psy_cfg.supplied_to = pda_power_supplied_to; |
| 314 | psy_cfg.num_supplicants = ARRAY_SIZE(pda_power_supplied_to); |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 315 | } |
| 316 | |
Felipe Balbi | 820d088 | 2013-03-07 11:23:50 +0200 | [diff] [blame] | 317 | #if IS_ENABLED(CONFIG_USB_PHY) |
Kishon Vijay Abraham I | 662dca5 | 2012-06-22 17:02:46 +0530 | [diff] [blame] | 318 | transceiver = usb_get_phy(USB_PHY_TYPE_USB2); |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 319 | if (!IS_ERR_OR_NULL(transceiver)) { |
| 320 | if (!pdata->is_usb_online) |
| 321 | pdata->is_usb_online = otg_is_usb_online; |
| 322 | if (!pdata->is_ac_online) |
| 323 | pdata->is_ac_online = otg_is_ac_online; |
Dima Zavin | 9ad6398 | 2011-07-10 16:01:15 -0700 | [diff] [blame] | 324 | } |
Axel Lin | 1c74529 | 2011-08-23 20:34:33 +0800 | [diff] [blame] | 325 | #endif |
Dima Zavin | 9ad6398 | 2011-07-10 16:01:15 -0700 | [diff] [blame] | 326 | |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 327 | if (pdata->is_ac_online) { |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 328 | pda_psy_ac = power_supply_register(&pdev->dev, |
| 329 | &pda_psy_ac_desc, &psy_cfg); |
| 330 | if (IS_ERR(pda_psy_ac)) { |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 331 | dev_err(dev, "failed to register %s power supply\n", |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 332 | pda_psy_ac_desc.name); |
| 333 | ret = PTR_ERR(pda_psy_ac); |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 334 | goto ac_supply_failed; |
| 335 | } |
| 336 | |
| 337 | if (ac_irq) { |
| 338 | ret = request_irq(ac_irq->start, power_changed_isr, |
| 339 | get_irq_flags(ac_irq), ac_irq->name, |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 340 | pda_psy_ac); |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 341 | if (ret) { |
| 342 | dev_err(dev, "request ac irq failed\n"); |
| 343 | goto ac_irq_failed; |
| 344 | } |
Anton Vorontsov | c3caeba | 2008-01-13 02:44:20 +0300 | [diff] [blame] | 345 | } else { |
| 346 | polling = 1; |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 347 | } |
| 348 | } |
| 349 | |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 350 | if (pdata->is_usb_online) { |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 351 | pda_psy_usb = power_supply_register(&pdev->dev, |
| 352 | &pda_psy_usb_desc, |
| 353 | &psy_cfg); |
| 354 | if (IS_ERR(pda_psy_usb)) { |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 355 | dev_err(dev, "failed to register %s power supply\n", |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 356 | pda_psy_usb_desc.name); |
| 357 | ret = PTR_ERR(pda_psy_usb); |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 358 | goto usb_supply_failed; |
| 359 | } |
| 360 | |
| 361 | if (usb_irq) { |
| 362 | ret = request_irq(usb_irq->start, power_changed_isr, |
| 363 | get_irq_flags(usb_irq), |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 364 | usb_irq->name, pda_psy_usb); |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 365 | if (ret) { |
| 366 | dev_err(dev, "request usb irq failed\n"); |
| 367 | goto usb_irq_failed; |
| 368 | } |
Anton Vorontsov | c3caeba | 2008-01-13 02:44:20 +0300 | [diff] [blame] | 369 | } else { |
| 370 | polling = 1; |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 371 | } |
| 372 | } |
| 373 | |
Felipe Balbi | 820d088 | 2013-03-07 11:23:50 +0200 | [diff] [blame] | 374 | #if IS_ENABLED(CONFIG_USB_PHY) |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 375 | if (!IS_ERR_OR_NULL(transceiver) && pdata->use_otg_notifier) { |
Dima Zavin | 9ad6398 | 2011-07-10 16:01:15 -0700 | [diff] [blame] | 376 | otg_nb.notifier_call = otg_handle_notification; |
Heikki Krogerus | fcc8ebc | 2012-02-13 13:24:16 +0200 | [diff] [blame] | 377 | ret = usb_register_notifier(transceiver, &otg_nb); |
Dima Zavin | 9ad6398 | 2011-07-10 16:01:15 -0700 | [diff] [blame] | 378 | if (ret) { |
| 379 | dev_err(dev, "failure to register otg notifier\n"); |
| 380 | goto otg_reg_notifier_failed; |
| 381 | } |
| 382 | polling = 0; |
| 383 | } |
Axel Lin | 1c74529 | 2011-08-23 20:34:33 +0800 | [diff] [blame] | 384 | #endif |
Dima Zavin | 9ad6398 | 2011-07-10 16:01:15 -0700 | [diff] [blame] | 385 | |
Anton Vorontsov | c3caeba | 2008-01-13 02:44:20 +0300 | [diff] [blame] | 386 | if (polling) { |
| 387 | dev_dbg(dev, "will poll for status\n"); |
| 388 | setup_timer(&polling_timer, polling_timer_func, 0); |
| 389 | mod_timer(&polling_timer, |
| 390 | jiffies + msecs_to_jiffies(pdata->polling_interval)); |
| 391 | } |
| 392 | |
| 393 | if (ac_irq || usb_irq) |
| 394 | device_init_wakeup(&pdev->dev, 1); |
Dmitry Baryshkov | 8f8e9b3 | 2008-01-13 02:35:43 +0300 | [diff] [blame] | 395 | |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 396 | return 0; |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 397 | |
Felipe Balbi | 820d088 | 2013-03-07 11:23:50 +0200 | [diff] [blame] | 398 | #if IS_ENABLED(CONFIG_USB_PHY) |
Dima Zavin | 9ad6398 | 2011-07-10 16:01:15 -0700 | [diff] [blame] | 399 | otg_reg_notifier_failed: |
| 400 | if (pdata->is_usb_online && usb_irq) |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 401 | free_irq(usb_irq->start, pda_psy_usb); |
Axel Lin | 1c74529 | 2011-08-23 20:34:33 +0800 | [diff] [blame] | 402 | #endif |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 403 | usb_irq_failed: |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 404 | if (pdata->is_usb_online) |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 405 | power_supply_unregister(pda_psy_usb); |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 406 | usb_supply_failed: |
| 407 | if (pdata->is_ac_online && ac_irq) |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 408 | free_irq(ac_irq->start, pda_psy_ac); |
Felipe Balbi | 820d088 | 2013-03-07 11:23:50 +0200 | [diff] [blame] | 409 | #if IS_ENABLED(CONFIG_USB_PHY) |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 410 | if (!IS_ERR_OR_NULL(transceiver)) |
Kishon Vijay Abraham I | 721002e | 2012-06-22 17:02:45 +0530 | [diff] [blame] | 411 | usb_put_phy(transceiver); |
Axel Lin | 1c74529 | 2011-08-23 20:34:33 +0800 | [diff] [blame] | 412 | #endif |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 413 | ac_irq_failed: |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 414 | if (pdata->is_ac_online) |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 415 | power_supply_unregister(pda_psy_ac); |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 416 | ac_supply_failed: |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 417 | if (ac_draw) { |
| 418 | regulator_put(ac_draw); |
| 419 | ac_draw = NULL; |
| 420 | } |
Philipp Zabel | f6b6b18 | 2008-04-12 13:47:45 +0200 | [diff] [blame] | 421 | if (pdata->exit) |
| 422 | pdata->exit(dev); |
| 423 | init_failed: |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 424 | wrongid: |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 425 | return ret; |
| 426 | } |
| 427 | |
| 428 | static int pda_power_remove(struct platform_device *pdev) |
| 429 | { |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 430 | if (pdata->is_usb_online && usb_irq) |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 431 | free_irq(usb_irq->start, pda_psy_usb); |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 432 | if (pdata->is_ac_online && ac_irq) |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 433 | free_irq(ac_irq->start, pda_psy_ac); |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 434 | |
Anton Vorontsov | c3caeba | 2008-01-13 02:44:20 +0300 | [diff] [blame] | 435 | if (polling) |
| 436 | del_timer_sync(&polling_timer); |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 437 | del_timer_sync(&charger_timer); |
| 438 | del_timer_sync(&supply_timer); |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 439 | |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 440 | if (pdata->is_usb_online) |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 441 | power_supply_unregister(pda_psy_usb); |
Dmitry Baryshkov | 9ef4510 | 2008-01-07 04:12:39 +0300 | [diff] [blame] | 442 | if (pdata->is_ac_online) |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 443 | power_supply_unregister(pda_psy_ac); |
Felipe Balbi | 820d088 | 2013-03-07 11:23:50 +0200 | [diff] [blame] | 444 | #if IS_ENABLED(CONFIG_USB_PHY) |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 445 | if (!IS_ERR_OR_NULL(transceiver)) |
Kishon Vijay Abraham I | 721002e | 2012-06-22 17:02:45 +0530 | [diff] [blame] | 446 | usb_put_phy(transceiver); |
Philipp Zabel | 5bf2b99 | 2009-01-18 17:40:27 +0100 | [diff] [blame] | 447 | #endif |
| 448 | if (ac_draw) { |
| 449 | regulator_put(ac_draw); |
| 450 | ac_draw = NULL; |
| 451 | } |
Philipp Zabel | f6b6b18 | 2008-04-12 13:47:45 +0200 | [diff] [blame] | 452 | if (pdata->exit) |
| 453 | pdata->exit(dev); |
Anton Vorontsov | bfde266 | 2008-01-13 02:39:17 +0300 | [diff] [blame] | 454 | |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 455 | return 0; |
| 456 | } |
| 457 | |
Dmitry Baryshkov | 8f8e9b3 | 2008-01-13 02:35:43 +0300 | [diff] [blame] | 458 | #ifdef CONFIG_PM |
Robert Jarzmik | e82374f | 2008-08-11 22:22:27 +0200 | [diff] [blame] | 459 | static int ac_wakeup_enabled; |
| 460 | static int usb_wakeup_enabled; |
| 461 | |
Dmitry Baryshkov | 8f8e9b3 | 2008-01-13 02:35:43 +0300 | [diff] [blame] | 462 | static int pda_power_suspend(struct platform_device *pdev, pm_message_t state) |
| 463 | { |
Daniel Mack | a3bcbbe | 2010-04-12 23:33:22 +0200 | [diff] [blame] | 464 | if (pdata->suspend) { |
| 465 | int ret = pdata->suspend(state); |
| 466 | |
| 467 | if (ret) |
| 468 | return ret; |
| 469 | } |
| 470 | |
Dmitry Baryshkov | 8f8e9b3 | 2008-01-13 02:35:43 +0300 | [diff] [blame] | 471 | if (device_may_wakeup(&pdev->dev)) { |
| 472 | if (ac_irq) |
Robert Jarzmik | e82374f | 2008-08-11 22:22:27 +0200 | [diff] [blame] | 473 | ac_wakeup_enabled = !enable_irq_wake(ac_irq->start); |
Dmitry Baryshkov | 8f8e9b3 | 2008-01-13 02:35:43 +0300 | [diff] [blame] | 474 | if (usb_irq) |
Robert Jarzmik | e82374f | 2008-08-11 22:22:27 +0200 | [diff] [blame] | 475 | usb_wakeup_enabled = !enable_irq_wake(usb_irq->start); |
Dmitry Baryshkov | 8f8e9b3 | 2008-01-13 02:35:43 +0300 | [diff] [blame] | 476 | } |
| 477 | |
| 478 | return 0; |
| 479 | } |
| 480 | |
| 481 | static int pda_power_resume(struct platform_device *pdev) |
| 482 | { |
| 483 | if (device_may_wakeup(&pdev->dev)) { |
Robert Jarzmik | e82374f | 2008-08-11 22:22:27 +0200 | [diff] [blame] | 484 | if (usb_irq && usb_wakeup_enabled) |
Dmitry Baryshkov | 8f8e9b3 | 2008-01-13 02:35:43 +0300 | [diff] [blame] | 485 | disable_irq_wake(usb_irq->start); |
Robert Jarzmik | e82374f | 2008-08-11 22:22:27 +0200 | [diff] [blame] | 486 | if (ac_irq && ac_wakeup_enabled) |
Dmitry Baryshkov | 8f8e9b3 | 2008-01-13 02:35:43 +0300 | [diff] [blame] | 487 | disable_irq_wake(ac_irq->start); |
| 488 | } |
| 489 | |
Daniel Mack | a3bcbbe | 2010-04-12 23:33:22 +0200 | [diff] [blame] | 490 | if (pdata->resume) |
| 491 | return pdata->resume(); |
| 492 | |
Dmitry Baryshkov | 8f8e9b3 | 2008-01-13 02:35:43 +0300 | [diff] [blame] | 493 | return 0; |
| 494 | } |
| 495 | #else |
| 496 | #define pda_power_suspend NULL |
| 497 | #define pda_power_resume NULL |
| 498 | #endif /* CONFIG_PM */ |
| 499 | |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 500 | static struct platform_driver pda_power_pdrv = { |
| 501 | .driver = { |
| 502 | .name = "pda-power", |
| 503 | }, |
| 504 | .probe = pda_power_probe, |
| 505 | .remove = pda_power_remove, |
Dmitry Baryshkov | 8f8e9b3 | 2008-01-13 02:35:43 +0300 | [diff] [blame] | 506 | .suspend = pda_power_suspend, |
| 507 | .resume = pda_power_resume, |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 508 | }; |
| 509 | |
Axel Lin | 300bac7 | 2011-11-26 12:01:10 +0800 | [diff] [blame] | 510 | module_platform_driver(pda_power_pdrv); |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 511 | |
Anton Vorontsov | b299804 | 2007-05-04 00:32:17 +0400 | [diff] [blame] | 512 | MODULE_LICENSE("GPL"); |
| 513 | MODULE_AUTHOR("Anton Vorontsov <cbou@mail.ru>"); |
Axel Lin | 300bac7 | 2011-11-26 12:01:10 +0800 | [diff] [blame] | 514 | MODULE_ALIAS("platform:pda-power"); |