blob: 8853cb1fd9d745bedc1c4dcd17b9a4b8011775f1 [file] [log] [blame]
Philipp Zabel6084f1b2008-11-24 12:00:01 -08001/*
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 Gortmaker6eb0de82011-07-03 16:09:31 -040014#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Philipp Zabel6084f1b2008-11-24 12:00:01 -080016#include <linux/interrupt.h>
17#include <linux/usb.h>
Robert Jarzmikc2344f12009-01-24 23:54:31 -080018#include <linux/workqueue.h>
Philipp Zabel6084f1b2008-11-24 12:00:01 -080019
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 */
34struct gpio_vbus_data {
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +020035 struct usb_phy phy;
Philipp Zabel6084f1b2008-11-24 12:00:01 -080036 struct device *dev;
37 struct regulator *vbus_draw;
38 int vbus_draw_enabled;
39 unsigned mA;
Shinya Kuribayashi934ccec2012-05-10 10:31:21 +090040 struct delayed_work work;
Shinya Kuribayashie44694e2012-05-10 13:02:38 +090041 int vbus;
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +090042 int irq;
Philipp Zabel6084f1b2008-11-24 12:00:01 -080043};
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 \
56 ( IRQF_SAMPLE_RANDOM | IRQF_SHARED \
57 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING )
58
59
60/* interface to regulator framework */
61static void set_vbus_draw(struct gpio_vbus_data *gpio_vbus, unsigned mA)
62{
63 struct regulator *vbus_draw = gpio_vbus->vbus_draw;
64 int enabled;
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) {
73 regulator_enable(vbus_draw);
74 gpio_vbus->vbus_draw_enabled = 1;
75 }
76 } else {
77 if (enabled) {
78 regulator_disable(vbus_draw);
79 gpio_vbus->vbus_draw_enabled = 0;
80 }
81 }
82 gpio_vbus->mA = mA;
83}
84
Robert Jarzmikc2344f12009-01-24 23:54:31 -080085static int is_vbus_powered(struct gpio_vbus_mach_info *pdata)
Philipp Zabel6084f1b2008-11-24 12:00:01 -080086{
Robert Jarzmikc2344f12009-01-24 23:54:31 -080087 int vbus;
Philipp Zabel6084f1b2008-11-24 12:00:01 -080088
89 vbus = gpio_get_value(pdata->gpio_vbus);
90 if (pdata->gpio_vbus_inverted)
91 vbus = !vbus;
92
Robert Jarzmikc2344f12009-01-24 23:54:31 -080093 return vbus;
94}
95
96static void gpio_vbus_work(struct work_struct *work)
97{
98 struct gpio_vbus_data *gpio_vbus =
Shinya Kuribayashi934ccec2012-05-10 10:31:21 +090099 container_of(work, struct gpio_vbus_data, work.work);
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800100 struct gpio_vbus_mach_info *pdata = gpio_vbus->dev->platform_data;
Shinya Kuribayashie44694e2012-05-10 13:02:38 +0900101 int gpio, status, vbus;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800102
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200103 if (!gpio_vbus->phy.otg->gadget)
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800104 return;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800105
Shinya Kuribayashie44694e2012-05-10 13:02:38 +0900106 vbus = is_vbus_powered(pdata);
107 if ((vbus ^ gpio_vbus->vbus) == 0)
108 return;
109 gpio_vbus->vbus = vbus;
110
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800111 /* Peripheral controllers which manage the pullup themselves won't have
112 * gpio_pullup configured here. If it's configured here, we'll do what
113 * isp1301_omap::b_peripheral() does and enable the pullup here... although
114 * that may complicate usb_gadget_{,dis}connect() support.
115 */
116 gpio = pdata->gpio_pullup;
Shinya Kuribayashie44694e2012-05-10 13:02:38 +0900117
118 if (vbus) {
Heiko Stübner662c7382012-02-29 23:03:11 +0100119 status = USB_EVENT_VBUS;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200120 gpio_vbus->phy.state = OTG_STATE_B_PERIPHERAL;
Heiko Stübner662c7382012-02-29 23:03:11 +0100121 gpio_vbus->phy.last_event = status;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200122 usb_gadget_vbus_connect(gpio_vbus->phy.otg->gadget);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800123
124 /* drawing a "unit load" is *always* OK, except for OTG */
125 set_vbus_draw(gpio_vbus, 100);
126
127 /* optionally enable D+ pullup */
128 if (gpio_is_valid(gpio))
129 gpio_set_value(gpio, !pdata->gpio_pullup_inverted);
Heiko Stübner662c7382012-02-29 23:03:11 +0100130
131 atomic_notifier_call_chain(&gpio_vbus->phy.notifier,
132 status, gpio_vbus->phy.otg->gadget);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800133 } else {
134 /* optionally disable D+ pullup */
135 if (gpio_is_valid(gpio))
136 gpio_set_value(gpio, pdata->gpio_pullup_inverted);
137
138 set_vbus_draw(gpio_vbus, 0);
139
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200140 usb_gadget_vbus_disconnect(gpio_vbus->phy.otg->gadget);
Heiko Stübner662c7382012-02-29 23:03:11 +0100141 status = USB_EVENT_NONE;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200142 gpio_vbus->phy.state = OTG_STATE_B_IDLE;
Heiko Stübner662c7382012-02-29 23:03:11 +0100143 gpio_vbus->phy.last_event = status;
144
145 atomic_notifier_call_chain(&gpio_vbus->phy.notifier,
146 status, gpio_vbus->phy.otg->gadget);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800147 }
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800148}
149
150/* VBUS change IRQ handler */
151static irqreturn_t gpio_vbus_irq(int irq, void *data)
152{
153 struct platform_device *pdev = data;
154 struct gpio_vbus_mach_info *pdata = pdev->dev.platform_data;
155 struct gpio_vbus_data *gpio_vbus = platform_get_drvdata(pdev);
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200156 struct usb_otg *otg = gpio_vbus->phy.otg;
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800157
158 dev_dbg(&pdev->dev, "VBUS %s (gadget: %s)\n",
159 is_vbus_powered(pdata) ? "supplied" : "inactive",
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200160 otg->gadget ? otg->gadget->name : "none");
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800161
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200162 if (otg->gadget)
Shinya Kuribayashi934ccec2012-05-10 10:31:21 +0900163 schedule_delayed_work(&gpio_vbus->work, msecs_to_jiffies(100));
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800164
165 return IRQ_HANDLED;
166}
167
168/* OTG transceiver interface */
169
170/* bind/unbind the peripheral controller */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200171static int gpio_vbus_set_peripheral(struct usb_otg *otg,
172 struct usb_gadget *gadget)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800173{
174 struct gpio_vbus_data *gpio_vbus;
175 struct gpio_vbus_mach_info *pdata;
176 struct platform_device *pdev;
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +0900177 int gpio;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800178
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200179 gpio_vbus = container_of(otg->phy, struct gpio_vbus_data, phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800180 pdev = to_platform_device(gpio_vbus->dev);
181 pdata = gpio_vbus->dev->platform_data;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800182 gpio = pdata->gpio_pullup;
183
184 if (!gadget) {
185 dev_dbg(&pdev->dev, "unregistering gadget '%s'\n",
186 otg->gadget->name);
187
188 /* optionally disable D+ pullup */
189 if (gpio_is_valid(gpio))
190 gpio_set_value(gpio, pdata->gpio_pullup_inverted);
191
192 set_vbus_draw(gpio_vbus, 0);
193
194 usb_gadget_vbus_disconnect(otg->gadget);
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200195 otg->phy->state = OTG_STATE_UNDEFINED;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800196
197 otg->gadget = NULL;
198 return 0;
199 }
200
201 otg->gadget = gadget;
202 dev_dbg(&pdev->dev, "registered gadget '%s'\n", gadget->name);
203
204 /* initialize connection state */
Shinya Kuribayashie44694e2012-05-10 13:02:38 +0900205 gpio_vbus->vbus = 0; /* start with disconnected */
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +0900206 gpio_vbus_irq(gpio_vbus->irq, pdev);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800207 return 0;
208}
209
210/* effective for B devices, ignored for A-peripheral */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200211static int gpio_vbus_set_power(struct usb_phy *phy, unsigned mA)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800212{
213 struct gpio_vbus_data *gpio_vbus;
214
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200215 gpio_vbus = container_of(phy, struct gpio_vbus_data, phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800216
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200217 if (phy->state == OTG_STATE_B_PERIPHERAL)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800218 set_vbus_draw(gpio_vbus, mA);
219 return 0;
220}
221
222/* for non-OTG B devices: set/clear transceiver suspend mode */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200223static int gpio_vbus_set_suspend(struct usb_phy *phy, int suspend)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800224{
225 struct gpio_vbus_data *gpio_vbus;
226
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200227 gpio_vbus = container_of(phy, struct gpio_vbus_data, phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800228
229 /* draw max 0 mA from vbus in suspend mode; or the previously
230 * recorded amount of current if not suspended
231 *
232 * NOTE: high powered configs (mA > 100) may draw up to 2.5 mA
233 * if they're wake-enabled ... we don't handle that yet.
234 */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200235 return gpio_vbus_set_power(phy, suspend ? 0 : gpio_vbus->mA);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800236}
237
238/* platform driver interface */
239
240static int __init gpio_vbus_probe(struct platform_device *pdev)
241{
242 struct gpio_vbus_mach_info *pdata = pdev->dev.platform_data;
243 struct gpio_vbus_data *gpio_vbus;
244 struct resource *res;
245 int err, gpio, irq;
246
247 if (!pdata || !gpio_is_valid(pdata->gpio_vbus))
248 return -EINVAL;
249 gpio = pdata->gpio_vbus;
250
251 gpio_vbus = kzalloc(sizeof(struct gpio_vbus_data), GFP_KERNEL);
252 if (!gpio_vbus)
253 return -ENOMEM;
254
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200255 gpio_vbus->phy.otg = kzalloc(sizeof(struct usb_otg), GFP_KERNEL);
256 if (!gpio_vbus->phy.otg) {
257 kfree(gpio_vbus);
258 return -ENOMEM;
259 }
260
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800261 platform_set_drvdata(pdev, gpio_vbus);
262 gpio_vbus->dev = &pdev->dev;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200263 gpio_vbus->phy.label = "gpio-vbus";
264 gpio_vbus->phy.set_power = gpio_vbus_set_power;
265 gpio_vbus->phy.set_suspend = gpio_vbus_set_suspend;
266 gpio_vbus->phy.state = OTG_STATE_UNDEFINED;
267
268 gpio_vbus->phy.otg->phy = &gpio_vbus->phy;
269 gpio_vbus->phy.otg->set_peripheral = gpio_vbus_set_peripheral;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800270
271 err = gpio_request(gpio, "vbus_detect");
272 if (err) {
273 dev_err(&pdev->dev, "can't request vbus gpio %d, err: %d\n",
274 gpio, err);
275 goto err_gpio;
276 }
277 gpio_direction_input(gpio);
278
279 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
280 if (res) {
281 irq = res->start;
282 res->flags &= IRQF_TRIGGER_MASK;
283 res->flags |= IRQF_SAMPLE_RANDOM | IRQF_SHARED;
284 } else
285 irq = gpio_to_irq(gpio);
286
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +0900287 gpio_vbus->irq = irq;
288
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800289 /* if data line pullup is in use, initialize it to "not pulling up" */
290 gpio = pdata->gpio_pullup;
291 if (gpio_is_valid(gpio)) {
292 err = gpio_request(gpio, "udc_pullup");
293 if (err) {
294 dev_err(&pdev->dev,
295 "can't request pullup gpio %d, err: %d\n",
296 gpio, err);
297 gpio_free(pdata->gpio_vbus);
298 goto err_gpio;
299 }
300 gpio_direction_output(gpio, pdata->gpio_pullup_inverted);
301 }
302
303 err = request_irq(irq, gpio_vbus_irq, VBUS_IRQ_FLAGS,
304 "vbus_detect", pdev);
305 if (err) {
306 dev_err(&pdev->dev, "can't request irq %i, err: %d\n",
307 irq, err);
308 goto err_irq;
309 }
Heiko Stübner662c7382012-02-29 23:03:11 +0100310
311 ATOMIC_INIT_NOTIFIER_HEAD(&gpio_vbus->phy.notifier);
312
Shinya Kuribayashi934ccec2012-05-10 10:31:21 +0900313 INIT_DELAYED_WORK(&gpio_vbus->work, gpio_vbus_work);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800314
Dmitry Eremin-Solenikov2887ba92011-05-03 12:46:46 +0400315 gpio_vbus->vbus_draw = regulator_get(&pdev->dev, "vbus_draw");
316 if (IS_ERR(gpio_vbus->vbus_draw)) {
317 dev_dbg(&pdev->dev, "can't get vbus_draw regulator, err: %ld\n",
318 PTR_ERR(gpio_vbus->vbus_draw));
319 gpio_vbus->vbus_draw = NULL;
320 }
321
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800322 /* only active when a gadget is registered */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200323 err = usb_set_transceiver(&gpio_vbus->phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800324 if (err) {
325 dev_err(&pdev->dev, "can't register transceiver, err: %d\n",
326 err);
327 goto err_otg;
328 }
329
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800330 return 0;
331err_otg:
Shinya Kuribayashia6dc9cf2012-05-10 10:32:14 +0900332 regulator_put(gpio_vbus->vbus_draw);
Shinya Kuribayashi0d13eeb2012-05-10 10:31:51 +0900333 free_irq(irq, pdev);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800334err_irq:
335 if (gpio_is_valid(pdata->gpio_pullup))
336 gpio_free(pdata->gpio_pullup);
337 gpio_free(pdata->gpio_vbus);
338err_gpio:
339 platform_set_drvdata(pdev, NULL);
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200340 kfree(gpio_vbus->phy.otg);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800341 kfree(gpio_vbus);
342 return err;
343}
344
345static int __exit gpio_vbus_remove(struct platform_device *pdev)
346{
347 struct gpio_vbus_data *gpio_vbus = platform_get_drvdata(pdev);
348 struct gpio_vbus_mach_info *pdata = pdev->dev.platform_data;
349 int gpio = pdata->gpio_vbus;
350
351 regulator_put(gpio_vbus->vbus_draw);
352
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200353 usb_set_transceiver(NULL);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800354
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +0900355 free_irq(gpio_vbus->irq, pdev);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800356 if (gpio_is_valid(pdata->gpio_pullup))
357 gpio_free(pdata->gpio_pullup);
358 gpio_free(gpio);
359 platform_set_drvdata(pdev, NULL);
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200360 kfree(gpio_vbus->phy.otg);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800361 kfree(gpio_vbus);
362
363 return 0;
364}
365
366/* NOTE: the gpio-vbus device may *NOT* be hotplugged */
367
368MODULE_ALIAS("platform:gpio-vbus");
369
370static struct platform_driver gpio_vbus_driver = {
371 .driver = {
372 .name = "gpio-vbus",
373 .owner = THIS_MODULE,
374 },
375 .remove = __exit_p(gpio_vbus_remove),
376};
377
378static int __init gpio_vbus_init(void)
379{
380 return platform_driver_probe(&gpio_vbus_driver, gpio_vbus_probe);
381}
382module_init(gpio_vbus_init);
383
384static void __exit gpio_vbus_exit(void)
385{
386 platform_driver_unregister(&gpio_vbus_driver);
387}
388module_exit(gpio_vbus_exit);
389
390MODULE_DESCRIPTION("simple GPIO controlled OTG transceiver driver");
391MODULE_AUTHOR("Philipp Zabel");
392MODULE_LICENSE("GPL");