Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 1 | /* |
| 2 | * gpio-vbus.c - simple GPIO VBUS sensing driver for B peripheral devices |
| 3 | * |
| 4 | * Copyright (c) 2008 Philipp Zabel <philipp.zabel@gmail.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/platform_device.h> |
| 13 | #include <linux/gpio.h> |
Paul Gortmaker | 6eb0de8 | 2011-07-03 16:09:31 -0400 | [diff] [blame] | 14 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 16 | #include <linux/interrupt.h> |
| 17 | #include <linux/usb.h> |
Robert Jarzmik | c2344f1 | 2009-01-24 23:54:31 -0800 | [diff] [blame] | 18 | #include <linux/workqueue.h> |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 19 | |
| 20 | #include <linux/regulator/consumer.h> |
| 21 | |
| 22 | #include <linux/usb/gadget.h> |
| 23 | #include <linux/usb/gpio_vbus.h> |
| 24 | #include <linux/usb/otg.h> |
| 25 | |
| 26 | |
| 27 | /* |
| 28 | * A simple GPIO VBUS sensing driver for B peripheral only devices |
| 29 | * with internal transceivers. It can control a D+ pullup GPIO and |
| 30 | * a regulator to limit the current drawn from VBUS. |
| 31 | * |
| 32 | * Needs to be loaded before the UDC driver that will use it. |
| 33 | */ |
| 34 | struct gpio_vbus_data { |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 35 | struct usb_phy phy; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 36 | struct device *dev; |
| 37 | struct regulator *vbus_draw; |
| 38 | int vbus_draw_enabled; |
| 39 | unsigned mA; |
Shinya Kuribayashi | 934ccec | 2012-05-10 10:31:21 +0900 | [diff] [blame] | 40 | struct delayed_work work; |
Shinya Kuribayashi | e44694e | 2012-05-10 13:02:38 +0900 | [diff] [blame] | 41 | int vbus; |
Shinya Kuribayashi | 123bbce | 2012-05-17 20:09:32 +0900 | [diff] [blame] | 42 | int irq; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | |
| 46 | /* |
| 47 | * This driver relies on "both edges" triggering. VBUS has 100 msec to |
| 48 | * stabilize, so the peripheral controller driver may need to cope with |
| 49 | * some bouncing due to current surges (e.g. charging local capacitance) |
| 50 | * and contact chatter. |
| 51 | * |
| 52 | * REVISIT in desperate straits, toggling between rising and falling |
| 53 | * edges might be workable. |
| 54 | */ |
| 55 | #define VBUS_IRQ_FLAGS \ |
Shinya Kuribayashi | da020b4 | 2012-05-17 20:09:53 +0900 | [diff] [blame] | 56 | (IRQF_SHARED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING) |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 57 | |
| 58 | |
| 59 | /* interface to regulator framework */ |
| 60 | static void set_vbus_draw(struct gpio_vbus_data *gpio_vbus, unsigned mA) |
| 61 | { |
| 62 | struct regulator *vbus_draw = gpio_vbus->vbus_draw; |
| 63 | int enabled; |
Felipe Balbi | e8d891f | 2013-03-20 08:01:53 +0200 | [diff] [blame] | 64 | int ret; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 65 | |
| 66 | if (!vbus_draw) |
| 67 | return; |
| 68 | |
| 69 | enabled = gpio_vbus->vbus_draw_enabled; |
| 70 | if (mA) { |
| 71 | regulator_set_current_limit(vbus_draw, 0, 1000 * mA); |
| 72 | if (!enabled) { |
Felipe Balbi | e8d891f | 2013-03-20 08:01:53 +0200 | [diff] [blame] | 73 | ret = regulator_enable(vbus_draw); |
| 74 | if (ret < 0) |
| 75 | return; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 76 | gpio_vbus->vbus_draw_enabled = 1; |
| 77 | } |
| 78 | } else { |
| 79 | if (enabled) { |
Felipe Balbi | e8d891f | 2013-03-20 08:01:53 +0200 | [diff] [blame] | 80 | ret = regulator_disable(vbus_draw); |
| 81 | if (ret < 0) |
| 82 | return; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 83 | gpio_vbus->vbus_draw_enabled = 0; |
| 84 | } |
| 85 | } |
| 86 | gpio_vbus->mA = mA; |
| 87 | } |
| 88 | |
Robert Jarzmik | c2344f1 | 2009-01-24 23:54:31 -0800 | [diff] [blame] | 89 | static int is_vbus_powered(struct gpio_vbus_mach_info *pdata) |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 90 | { |
Robert Jarzmik | c2344f1 | 2009-01-24 23:54:31 -0800 | [diff] [blame] | 91 | int vbus; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 92 | |
| 93 | vbus = gpio_get_value(pdata->gpio_vbus); |
| 94 | if (pdata->gpio_vbus_inverted) |
| 95 | vbus = !vbus; |
| 96 | |
Robert Jarzmik | c2344f1 | 2009-01-24 23:54:31 -0800 | [diff] [blame] | 97 | return vbus; |
| 98 | } |
| 99 | |
| 100 | static void gpio_vbus_work(struct work_struct *work) |
| 101 | { |
| 102 | struct gpio_vbus_data *gpio_vbus = |
Shinya Kuribayashi | 934ccec | 2012-05-10 10:31:21 +0900 | [diff] [blame] | 103 | container_of(work, struct gpio_vbus_data, work.work); |
Jingoo Han | 19f9e18 | 2013-07-30 17:02:13 +0900 | [diff] [blame] | 104 | struct gpio_vbus_mach_info *pdata = dev_get_platdata(gpio_vbus->dev); |
Shinya Kuribayashi | e44694e | 2012-05-10 13:02:38 +0900 | [diff] [blame] | 105 | int gpio, status, vbus; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 106 | |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 107 | if (!gpio_vbus->phy.otg->gadget) |
Robert Jarzmik | c2344f1 | 2009-01-24 23:54:31 -0800 | [diff] [blame] | 108 | return; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 109 | |
Shinya Kuribayashi | e44694e | 2012-05-10 13:02:38 +0900 | [diff] [blame] | 110 | vbus = is_vbus_powered(pdata); |
| 111 | if ((vbus ^ gpio_vbus->vbus) == 0) |
| 112 | return; |
| 113 | gpio_vbus->vbus = vbus; |
| 114 | |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 115 | /* Peripheral controllers which manage the pullup themselves won't have |
| 116 | * gpio_pullup configured here. If it's configured here, we'll do what |
| 117 | * isp1301_omap::b_peripheral() does and enable the pullup here... although |
| 118 | * that may complicate usb_gadget_{,dis}connect() support. |
| 119 | */ |
| 120 | gpio = pdata->gpio_pullup; |
Shinya Kuribayashi | e44694e | 2012-05-10 13:02:38 +0900 | [diff] [blame] | 121 | |
| 122 | if (vbus) { |
Heiko Stübner | 662c738 | 2012-02-29 23:03:11 +0100 | [diff] [blame] | 123 | status = USB_EVENT_VBUS; |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 124 | gpio_vbus->phy.state = OTG_STATE_B_PERIPHERAL; |
Heiko Stübner | 662c738 | 2012-02-29 23:03:11 +0100 | [diff] [blame] | 125 | gpio_vbus->phy.last_event = status; |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 126 | usb_gadget_vbus_connect(gpio_vbus->phy.otg->gadget); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 127 | |
| 128 | /* drawing a "unit load" is *always* OK, except for OTG */ |
| 129 | set_vbus_draw(gpio_vbus, 100); |
| 130 | |
| 131 | /* optionally enable D+ pullup */ |
| 132 | if (gpio_is_valid(gpio)) |
| 133 | gpio_set_value(gpio, !pdata->gpio_pullup_inverted); |
Heiko Stübner | 662c738 | 2012-02-29 23:03:11 +0100 | [diff] [blame] | 134 | |
| 135 | atomic_notifier_call_chain(&gpio_vbus->phy.notifier, |
| 136 | status, gpio_vbus->phy.otg->gadget); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 137 | } else { |
| 138 | /* optionally disable D+ pullup */ |
| 139 | if (gpio_is_valid(gpio)) |
| 140 | gpio_set_value(gpio, pdata->gpio_pullup_inverted); |
| 141 | |
| 142 | set_vbus_draw(gpio_vbus, 0); |
| 143 | |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 144 | usb_gadget_vbus_disconnect(gpio_vbus->phy.otg->gadget); |
Heiko Stübner | 662c738 | 2012-02-29 23:03:11 +0100 | [diff] [blame] | 145 | status = USB_EVENT_NONE; |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 146 | gpio_vbus->phy.state = OTG_STATE_B_IDLE; |
Heiko Stübner | 662c738 | 2012-02-29 23:03:11 +0100 | [diff] [blame] | 147 | gpio_vbus->phy.last_event = status; |
| 148 | |
| 149 | atomic_notifier_call_chain(&gpio_vbus->phy.notifier, |
| 150 | status, gpio_vbus->phy.otg->gadget); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 151 | } |
Robert Jarzmik | c2344f1 | 2009-01-24 23:54:31 -0800 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | /* VBUS change IRQ handler */ |
| 155 | static irqreturn_t gpio_vbus_irq(int irq, void *data) |
| 156 | { |
| 157 | struct platform_device *pdev = data; |
Jingoo Han | 19f9e18 | 2013-07-30 17:02:13 +0900 | [diff] [blame] | 158 | struct gpio_vbus_mach_info *pdata = dev_get_platdata(&pdev->dev); |
Robert Jarzmik | c2344f1 | 2009-01-24 23:54:31 -0800 | [diff] [blame] | 159 | struct gpio_vbus_data *gpio_vbus = platform_get_drvdata(pdev); |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 160 | struct usb_otg *otg = gpio_vbus->phy.otg; |
Robert Jarzmik | c2344f1 | 2009-01-24 23:54:31 -0800 | [diff] [blame] | 161 | |
| 162 | dev_dbg(&pdev->dev, "VBUS %s (gadget: %s)\n", |
| 163 | is_vbus_powered(pdata) ? "supplied" : "inactive", |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 164 | otg->gadget ? otg->gadget->name : "none"); |
Robert Jarzmik | c2344f1 | 2009-01-24 23:54:31 -0800 | [diff] [blame] | 165 | |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 166 | if (otg->gadget) |
Shinya Kuribayashi | 934ccec | 2012-05-10 10:31:21 +0900 | [diff] [blame] | 167 | schedule_delayed_work(&gpio_vbus->work, msecs_to_jiffies(100)); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 168 | |
| 169 | return IRQ_HANDLED; |
| 170 | } |
| 171 | |
| 172 | /* OTG transceiver interface */ |
| 173 | |
| 174 | /* bind/unbind the peripheral controller */ |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 175 | static int gpio_vbus_set_peripheral(struct usb_otg *otg, |
| 176 | struct usb_gadget *gadget) |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 177 | { |
| 178 | struct gpio_vbus_data *gpio_vbus; |
| 179 | struct gpio_vbus_mach_info *pdata; |
| 180 | struct platform_device *pdev; |
Shinya Kuribayashi | 123bbce | 2012-05-17 20:09:32 +0900 | [diff] [blame] | 181 | int gpio; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 182 | |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 183 | gpio_vbus = container_of(otg->phy, struct gpio_vbus_data, phy); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 184 | pdev = to_platform_device(gpio_vbus->dev); |
Jingoo Han | 19f9e18 | 2013-07-30 17:02:13 +0900 | [diff] [blame] | 185 | pdata = dev_get_platdata(gpio_vbus->dev); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 186 | gpio = pdata->gpio_pullup; |
| 187 | |
| 188 | if (!gadget) { |
| 189 | dev_dbg(&pdev->dev, "unregistering gadget '%s'\n", |
| 190 | otg->gadget->name); |
| 191 | |
| 192 | /* optionally disable D+ pullup */ |
| 193 | if (gpio_is_valid(gpio)) |
| 194 | gpio_set_value(gpio, pdata->gpio_pullup_inverted); |
| 195 | |
| 196 | set_vbus_draw(gpio_vbus, 0); |
| 197 | |
| 198 | usb_gadget_vbus_disconnect(otg->gadget); |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 199 | otg->phy->state = OTG_STATE_UNDEFINED; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 200 | |
| 201 | otg->gadget = NULL; |
| 202 | return 0; |
| 203 | } |
| 204 | |
| 205 | otg->gadget = gadget; |
| 206 | dev_dbg(&pdev->dev, "registered gadget '%s'\n", gadget->name); |
| 207 | |
| 208 | /* initialize connection state */ |
Shinya Kuribayashi | e44694e | 2012-05-10 13:02:38 +0900 | [diff] [blame] | 209 | gpio_vbus->vbus = 0; /* start with disconnected */ |
Shinya Kuribayashi | 123bbce | 2012-05-17 20:09:32 +0900 | [diff] [blame] | 210 | gpio_vbus_irq(gpio_vbus->irq, pdev); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 211 | return 0; |
| 212 | } |
| 213 | |
| 214 | /* effective for B devices, ignored for A-peripheral */ |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 215 | static int gpio_vbus_set_power(struct usb_phy *phy, unsigned mA) |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 216 | { |
| 217 | struct gpio_vbus_data *gpio_vbus; |
| 218 | |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 219 | gpio_vbus = container_of(phy, struct gpio_vbus_data, phy); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 220 | |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 221 | if (phy->state == OTG_STATE_B_PERIPHERAL) |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 222 | set_vbus_draw(gpio_vbus, mA); |
| 223 | return 0; |
| 224 | } |
| 225 | |
| 226 | /* for non-OTG B devices: set/clear transceiver suspend mode */ |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 227 | static int gpio_vbus_set_suspend(struct usb_phy *phy, int suspend) |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 228 | { |
| 229 | struct gpio_vbus_data *gpio_vbus; |
| 230 | |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 231 | gpio_vbus = container_of(phy, struct gpio_vbus_data, phy); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 232 | |
| 233 | /* draw max 0 mA from vbus in suspend mode; or the previously |
| 234 | * recorded amount of current if not suspended |
| 235 | * |
| 236 | * NOTE: high powered configs (mA > 100) may draw up to 2.5 mA |
| 237 | * if they're wake-enabled ... we don't handle that yet. |
| 238 | */ |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 239 | return gpio_vbus_set_power(phy, suspend ? 0 : gpio_vbus->mA); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | /* platform driver interface */ |
| 243 | |
Johan Hovold | eaaa775 | 2013-09-23 16:27:31 +0200 | [diff] [blame] | 244 | static int gpio_vbus_probe(struct platform_device *pdev) |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 245 | { |
Jingoo Han | 19f9e18 | 2013-07-30 17:02:13 +0900 | [diff] [blame] | 246 | struct gpio_vbus_mach_info *pdata = dev_get_platdata(&pdev->dev); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 247 | struct gpio_vbus_data *gpio_vbus; |
| 248 | struct resource *res; |
| 249 | int err, gpio, irq; |
Shinya Kuribayashi | c8240c1 | 2012-05-17 20:10:16 +0900 | [diff] [blame] | 250 | unsigned long irqflags; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 251 | |
| 252 | if (!pdata || !gpio_is_valid(pdata->gpio_vbus)) |
| 253 | return -EINVAL; |
| 254 | gpio = pdata->gpio_vbus; |
| 255 | |
Himangi Saraogi | 9f7b23c | 2014-06-04 02:49:53 +0530 | [diff] [blame] | 256 | gpio_vbus = devm_kzalloc(&pdev->dev, sizeof(struct gpio_vbus_data), |
| 257 | GFP_KERNEL); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 258 | if (!gpio_vbus) |
| 259 | return -ENOMEM; |
| 260 | |
Himangi Saraogi | 9f7b23c | 2014-06-04 02:49:53 +0530 | [diff] [blame] | 261 | gpio_vbus->phy.otg = devm_kzalloc(&pdev->dev, sizeof(struct usb_otg), |
| 262 | GFP_KERNEL); |
Himangi Saraogi | 0c58240 | 2014-08-11 01:29:37 +0530 | [diff] [blame^] | 263 | if (!gpio_vbus->phy.otg) |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 264 | return -ENOMEM; |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 265 | |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 266 | platform_set_drvdata(pdev, gpio_vbus); |
| 267 | gpio_vbus->dev = &pdev->dev; |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 268 | gpio_vbus->phy.label = "gpio-vbus"; |
Robert Jarzmik | 1abd8b3 | 2013-05-10 15:15:08 +0530 | [diff] [blame] | 269 | gpio_vbus->phy.dev = gpio_vbus->dev; |
Heikki Krogerus | 16bc1bb | 2012-02-13 13:24:07 +0200 | [diff] [blame] | 270 | gpio_vbus->phy.set_power = gpio_vbus_set_power; |
| 271 | gpio_vbus->phy.set_suspend = gpio_vbus_set_suspend; |
| 272 | gpio_vbus->phy.state = OTG_STATE_UNDEFINED; |
| 273 | |
| 274 | gpio_vbus->phy.otg->phy = &gpio_vbus->phy; |
| 275 | gpio_vbus->phy.otg->set_peripheral = gpio_vbus_set_peripheral; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 276 | |
Himangi Saraogi | 9f7b23c | 2014-06-04 02:49:53 +0530 | [diff] [blame] | 277 | err = devm_gpio_request(&pdev->dev, gpio, "vbus_detect"); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 278 | if (err) { |
| 279 | dev_err(&pdev->dev, "can't request vbus gpio %d, err: %d\n", |
| 280 | gpio, err); |
Himangi Saraogi | 9f7b23c | 2014-06-04 02:49:53 +0530 | [diff] [blame] | 281 | return err; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 282 | } |
| 283 | gpio_direction_input(gpio); |
| 284 | |
| 285 | res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
| 286 | if (res) { |
| 287 | irq = res->start; |
Shinya Kuribayashi | c8240c1 | 2012-05-17 20:10:16 +0900 | [diff] [blame] | 288 | irqflags = (res->flags & IRQF_TRIGGER_MASK) | IRQF_SHARED; |
| 289 | } else { |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 290 | irq = gpio_to_irq(gpio); |
Shinya Kuribayashi | c8240c1 | 2012-05-17 20:10:16 +0900 | [diff] [blame] | 291 | irqflags = VBUS_IRQ_FLAGS; |
| 292 | } |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 293 | |
Shinya Kuribayashi | 123bbce | 2012-05-17 20:09:32 +0900 | [diff] [blame] | 294 | gpio_vbus->irq = irq; |
| 295 | |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 296 | /* if data line pullup is in use, initialize it to "not pulling up" */ |
| 297 | gpio = pdata->gpio_pullup; |
| 298 | if (gpio_is_valid(gpio)) { |
Himangi Saraogi | 9f7b23c | 2014-06-04 02:49:53 +0530 | [diff] [blame] | 299 | err = devm_gpio_request(&pdev->dev, gpio, "udc_pullup"); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 300 | if (err) { |
| 301 | dev_err(&pdev->dev, |
| 302 | "can't request pullup gpio %d, err: %d\n", |
| 303 | gpio, err); |
Himangi Saraogi | 9f7b23c | 2014-06-04 02:49:53 +0530 | [diff] [blame] | 304 | return err; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 305 | } |
| 306 | gpio_direction_output(gpio, pdata->gpio_pullup_inverted); |
| 307 | } |
| 308 | |
Himangi Saraogi | 9f7b23c | 2014-06-04 02:49:53 +0530 | [diff] [blame] | 309 | err = devm_request_irq(&pdev->dev, irq, gpio_vbus_irq, irqflags, |
| 310 | "vbus_detect", pdev); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 311 | if (err) { |
| 312 | dev_err(&pdev->dev, "can't request irq %i, err: %d\n", |
| 313 | irq, err); |
Himangi Saraogi | 9f7b23c | 2014-06-04 02:49:53 +0530 | [diff] [blame] | 314 | return err; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 315 | } |
Heiko Stübner | 662c738 | 2012-02-29 23:03:11 +0100 | [diff] [blame] | 316 | |
Shinya Kuribayashi | 934ccec | 2012-05-10 10:31:21 +0900 | [diff] [blame] | 317 | INIT_DELAYED_WORK(&gpio_vbus->work, gpio_vbus_work); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 318 | |
Himangi Saraogi | 9f7b23c | 2014-06-04 02:49:53 +0530 | [diff] [blame] | 319 | gpio_vbus->vbus_draw = devm_regulator_get(&pdev->dev, "vbus_draw"); |
Dmitry Eremin-Solenikov | 2887ba9 | 2011-05-03 12:46:46 +0400 | [diff] [blame] | 320 | if (IS_ERR(gpio_vbus->vbus_draw)) { |
| 321 | dev_dbg(&pdev->dev, "can't get vbus_draw regulator, err: %ld\n", |
| 322 | PTR_ERR(gpio_vbus->vbus_draw)); |
| 323 | gpio_vbus->vbus_draw = NULL; |
| 324 | } |
| 325 | |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 326 | /* only active when a gadget is registered */ |
Kishon Vijay Abraham I | 662dca5 | 2012-06-22 17:02:46 +0530 | [diff] [blame] | 327 | err = usb_add_phy(&gpio_vbus->phy, USB_PHY_TYPE_USB2); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 328 | if (err) { |
| 329 | dev_err(&pdev->dev, "can't register transceiver, err: %d\n", |
| 330 | err); |
Himangi Saraogi | 9f7b23c | 2014-06-04 02:49:53 +0530 | [diff] [blame] | 331 | return err; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 332 | } |
| 333 | |
Shinya Kuribayashi | 7cbb062 | 2012-05-17 20:11:06 +0900 | [diff] [blame] | 334 | device_init_wakeup(&pdev->dev, pdata->wakeup); |
| 335 | |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 336 | return 0; |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 337 | } |
| 338 | |
Johan Hovold | eaaa775 | 2013-09-23 16:27:31 +0200 | [diff] [blame] | 339 | static int gpio_vbus_remove(struct platform_device *pdev) |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 340 | { |
| 341 | struct gpio_vbus_data *gpio_vbus = platform_get_drvdata(pdev); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 342 | |
Shinya Kuribayashi | 7cbb062 | 2012-05-17 20:11:06 +0900 | [diff] [blame] | 343 | device_init_wakeup(&pdev->dev, 0); |
Shinya Kuribayashi | ec1ac6e | 2012-05-17 20:10:43 +0900 | [diff] [blame] | 344 | cancel_delayed_work_sync(&gpio_vbus->work); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 345 | |
Kishon Vijay Abraham I | 662dca5 | 2012-06-22 17:02:46 +0530 | [diff] [blame] | 346 | usb_remove_phy(&gpio_vbus->phy); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 347 | |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 348 | return 0; |
| 349 | } |
| 350 | |
Shinya Kuribayashi | 7cbb062 | 2012-05-17 20:11:06 +0900 | [diff] [blame] | 351 | #ifdef CONFIG_PM |
| 352 | static int gpio_vbus_pm_suspend(struct device *dev) |
| 353 | { |
| 354 | struct gpio_vbus_data *gpio_vbus = dev_get_drvdata(dev); |
| 355 | |
| 356 | if (device_may_wakeup(dev)) |
| 357 | enable_irq_wake(gpio_vbus->irq); |
| 358 | |
| 359 | return 0; |
| 360 | } |
| 361 | |
| 362 | static int gpio_vbus_pm_resume(struct device *dev) |
| 363 | { |
| 364 | struct gpio_vbus_data *gpio_vbus = dev_get_drvdata(dev); |
| 365 | |
| 366 | if (device_may_wakeup(dev)) |
| 367 | disable_irq_wake(gpio_vbus->irq); |
| 368 | |
| 369 | return 0; |
| 370 | } |
| 371 | |
| 372 | static const struct dev_pm_ops gpio_vbus_dev_pm_ops = { |
| 373 | .suspend = gpio_vbus_pm_suspend, |
| 374 | .resume = gpio_vbus_pm_resume, |
| 375 | }; |
| 376 | #endif |
| 377 | |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 378 | MODULE_ALIAS("platform:gpio-vbus"); |
| 379 | |
| 380 | static struct platform_driver gpio_vbus_driver = { |
| 381 | .driver = { |
| 382 | .name = "gpio-vbus", |
| 383 | .owner = THIS_MODULE, |
Shinya Kuribayashi | 7cbb062 | 2012-05-17 20:11:06 +0900 | [diff] [blame] | 384 | #ifdef CONFIG_PM |
| 385 | .pm = &gpio_vbus_dev_pm_ops, |
| 386 | #endif |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 387 | }, |
Johan Hovold | eaaa775 | 2013-09-23 16:27:31 +0200 | [diff] [blame] | 388 | .probe = gpio_vbus_probe, |
| 389 | .remove = gpio_vbus_remove, |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 390 | }; |
| 391 | |
Johan Hovold | eaaa775 | 2013-09-23 16:27:31 +0200 | [diff] [blame] | 392 | module_platform_driver(gpio_vbus_driver); |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 393 | |
| 394 | MODULE_DESCRIPTION("simple GPIO controlled OTG transceiver driver"); |
| 395 | MODULE_AUTHOR("Philipp Zabel"); |
| 396 | MODULE_LICENSE("GPL"); |