blob: 4e393ef2f2548a582f78186df5edfb203a91edeb [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 \
Shinya Kuribayashida020b42012-05-17 20:09:53 +090056 (IRQF_SHARED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING)
Philipp Zabel6084f1b2008-11-24 12:00:01 -080057
58
59/* interface to regulator framework */
60static 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;
64
65 if (!vbus_draw)
66 return;
67
68 enabled = gpio_vbus->vbus_draw_enabled;
69 if (mA) {
70 regulator_set_current_limit(vbus_draw, 0, 1000 * mA);
71 if (!enabled) {
72 regulator_enable(vbus_draw);
73 gpio_vbus->vbus_draw_enabled = 1;
74 }
75 } else {
76 if (enabled) {
77 regulator_disable(vbus_draw);
78 gpio_vbus->vbus_draw_enabled = 0;
79 }
80 }
81 gpio_vbus->mA = mA;
82}
83
Robert Jarzmikc2344f12009-01-24 23:54:31 -080084static int is_vbus_powered(struct gpio_vbus_mach_info *pdata)
Philipp Zabel6084f1b2008-11-24 12:00:01 -080085{
Robert Jarzmikc2344f12009-01-24 23:54:31 -080086 int vbus;
Philipp Zabel6084f1b2008-11-24 12:00:01 -080087
88 vbus = gpio_get_value(pdata->gpio_vbus);
89 if (pdata->gpio_vbus_inverted)
90 vbus = !vbus;
91
Robert Jarzmikc2344f12009-01-24 23:54:31 -080092 return vbus;
93}
94
95static void gpio_vbus_work(struct work_struct *work)
96{
97 struct gpio_vbus_data *gpio_vbus =
Shinya Kuribayashi934ccec2012-05-10 10:31:21 +090098 container_of(work, struct gpio_vbus_data, work.work);
Robert Jarzmikc2344f12009-01-24 23:54:31 -080099 struct gpio_vbus_mach_info *pdata = gpio_vbus->dev->platform_data;
Shinya Kuribayashie44694e2012-05-10 13:02:38 +0900100 int gpio, status, vbus;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800101
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200102 if (!gpio_vbus->phy.otg->gadget)
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800103 return;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800104
Shinya Kuribayashie44694e2012-05-10 13:02:38 +0900105 vbus = is_vbus_powered(pdata);
106 if ((vbus ^ gpio_vbus->vbus) == 0)
107 return;
108 gpio_vbus->vbus = vbus;
109
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800110 /* Peripheral controllers which manage the pullup themselves won't have
111 * gpio_pullup configured here. If it's configured here, we'll do what
112 * isp1301_omap::b_peripheral() does and enable the pullup here... although
113 * that may complicate usb_gadget_{,dis}connect() support.
114 */
115 gpio = pdata->gpio_pullup;
Shinya Kuribayashie44694e2012-05-10 13:02:38 +0900116
117 if (vbus) {
Heiko Stübner662c7382012-02-29 23:03:11 +0100118 status = USB_EVENT_VBUS;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200119 gpio_vbus->phy.state = OTG_STATE_B_PERIPHERAL;
Heiko Stübner662c7382012-02-29 23:03:11 +0100120 gpio_vbus->phy.last_event = status;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200121 usb_gadget_vbus_connect(gpio_vbus->phy.otg->gadget);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800122
123 /* drawing a "unit load" is *always* OK, except for OTG */
124 set_vbus_draw(gpio_vbus, 100);
125
126 /* optionally enable D+ pullup */
127 if (gpio_is_valid(gpio))
128 gpio_set_value(gpio, !pdata->gpio_pullup_inverted);
Heiko Stübner662c7382012-02-29 23:03:11 +0100129
130 atomic_notifier_call_chain(&gpio_vbus->phy.notifier,
131 status, gpio_vbus->phy.otg->gadget);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800132 } else {
133 /* optionally disable D+ pullup */
134 if (gpio_is_valid(gpio))
135 gpio_set_value(gpio, pdata->gpio_pullup_inverted);
136
137 set_vbus_draw(gpio_vbus, 0);
138
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200139 usb_gadget_vbus_disconnect(gpio_vbus->phy.otg->gadget);
Heiko Stübner662c7382012-02-29 23:03:11 +0100140 status = USB_EVENT_NONE;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200141 gpio_vbus->phy.state = OTG_STATE_B_IDLE;
Heiko Stübner662c7382012-02-29 23:03:11 +0100142 gpio_vbus->phy.last_event = status;
143
144 atomic_notifier_call_chain(&gpio_vbus->phy.notifier,
145 status, gpio_vbus->phy.otg->gadget);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800146 }
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800147}
148
149/* VBUS change IRQ handler */
150static irqreturn_t gpio_vbus_irq(int irq, void *data)
151{
152 struct platform_device *pdev = data;
153 struct gpio_vbus_mach_info *pdata = pdev->dev.platform_data;
154 struct gpio_vbus_data *gpio_vbus = platform_get_drvdata(pdev);
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200155 struct usb_otg *otg = gpio_vbus->phy.otg;
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800156
157 dev_dbg(&pdev->dev, "VBUS %s (gadget: %s)\n",
158 is_vbus_powered(pdata) ? "supplied" : "inactive",
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200159 otg->gadget ? otg->gadget->name : "none");
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800160
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200161 if (otg->gadget)
Shinya Kuribayashi934ccec2012-05-10 10:31:21 +0900162 schedule_delayed_work(&gpio_vbus->work, msecs_to_jiffies(100));
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800163
164 return IRQ_HANDLED;
165}
166
167/* OTG transceiver interface */
168
169/* bind/unbind the peripheral controller */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200170static int gpio_vbus_set_peripheral(struct usb_otg *otg,
171 struct usb_gadget *gadget)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800172{
173 struct gpio_vbus_data *gpio_vbus;
174 struct gpio_vbus_mach_info *pdata;
175 struct platform_device *pdev;
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +0900176 int gpio;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800177
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200178 gpio_vbus = container_of(otg->phy, struct gpio_vbus_data, phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800179 pdev = to_platform_device(gpio_vbus->dev);
180 pdata = gpio_vbus->dev->platform_data;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800181 gpio = pdata->gpio_pullup;
182
183 if (!gadget) {
184 dev_dbg(&pdev->dev, "unregistering gadget '%s'\n",
185 otg->gadget->name);
186
187 /* optionally disable D+ pullup */
188 if (gpio_is_valid(gpio))
189 gpio_set_value(gpio, pdata->gpio_pullup_inverted);
190
191 set_vbus_draw(gpio_vbus, 0);
192
193 usb_gadget_vbus_disconnect(otg->gadget);
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200194 otg->phy->state = OTG_STATE_UNDEFINED;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800195
196 otg->gadget = NULL;
197 return 0;
198 }
199
200 otg->gadget = gadget;
201 dev_dbg(&pdev->dev, "registered gadget '%s'\n", gadget->name);
202
203 /* initialize connection state */
Shinya Kuribayashie44694e2012-05-10 13:02:38 +0900204 gpio_vbus->vbus = 0; /* start with disconnected */
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +0900205 gpio_vbus_irq(gpio_vbus->irq, pdev);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800206 return 0;
207}
208
209/* effective for B devices, ignored for A-peripheral */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200210static int gpio_vbus_set_power(struct usb_phy *phy, unsigned mA)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800211{
212 struct gpio_vbus_data *gpio_vbus;
213
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200214 gpio_vbus = container_of(phy, struct gpio_vbus_data, phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800215
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200216 if (phy->state == OTG_STATE_B_PERIPHERAL)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800217 set_vbus_draw(gpio_vbus, mA);
218 return 0;
219}
220
221/* for non-OTG B devices: set/clear transceiver suspend mode */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200222static int gpio_vbus_set_suspend(struct usb_phy *phy, int suspend)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800223{
224 struct gpio_vbus_data *gpio_vbus;
225
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200226 gpio_vbus = container_of(phy, struct gpio_vbus_data, phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800227
228 /* draw max 0 mA from vbus in suspend mode; or the previously
229 * recorded amount of current if not suspended
230 *
231 * NOTE: high powered configs (mA > 100) may draw up to 2.5 mA
232 * if they're wake-enabled ... we don't handle that yet.
233 */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200234 return gpio_vbus_set_power(phy, suspend ? 0 : gpio_vbus->mA);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800235}
236
237/* platform driver interface */
238
239static int __init gpio_vbus_probe(struct platform_device *pdev)
240{
241 struct gpio_vbus_mach_info *pdata = pdev->dev.platform_data;
242 struct gpio_vbus_data *gpio_vbus;
243 struct resource *res;
244 int err, gpio, irq;
245
246 if (!pdata || !gpio_is_valid(pdata->gpio_vbus))
247 return -EINVAL;
248 gpio = pdata->gpio_vbus;
249
250 gpio_vbus = kzalloc(sizeof(struct gpio_vbus_data), GFP_KERNEL);
251 if (!gpio_vbus)
252 return -ENOMEM;
253
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200254 gpio_vbus->phy.otg = kzalloc(sizeof(struct usb_otg), GFP_KERNEL);
255 if (!gpio_vbus->phy.otg) {
256 kfree(gpio_vbus);
257 return -ENOMEM;
258 }
259
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800260 platform_set_drvdata(pdev, gpio_vbus);
261 gpio_vbus->dev = &pdev->dev;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200262 gpio_vbus->phy.label = "gpio-vbus";
263 gpio_vbus->phy.set_power = gpio_vbus_set_power;
264 gpio_vbus->phy.set_suspend = gpio_vbus_set_suspend;
265 gpio_vbus->phy.state = OTG_STATE_UNDEFINED;
266
267 gpio_vbus->phy.otg->phy = &gpio_vbus->phy;
268 gpio_vbus->phy.otg->set_peripheral = gpio_vbus_set_peripheral;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800269
270 err = gpio_request(gpio, "vbus_detect");
271 if (err) {
272 dev_err(&pdev->dev, "can't request vbus gpio %d, err: %d\n",
273 gpio, err);
274 goto err_gpio;
275 }
276 gpio_direction_input(gpio);
277
278 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
279 if (res) {
280 irq = res->start;
281 res->flags &= IRQF_TRIGGER_MASK;
Shinya Kuribayashida020b42012-05-17 20:09:53 +0900282 res->flags |= IRQF_SHARED;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800283 } else
284 irq = gpio_to_irq(gpio);
285
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +0900286 gpio_vbus->irq = irq;
287
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800288 /* if data line pullup is in use, initialize it to "not pulling up" */
289 gpio = pdata->gpio_pullup;
290 if (gpio_is_valid(gpio)) {
291 err = gpio_request(gpio, "udc_pullup");
292 if (err) {
293 dev_err(&pdev->dev,
294 "can't request pullup gpio %d, err: %d\n",
295 gpio, err);
296 gpio_free(pdata->gpio_vbus);
297 goto err_gpio;
298 }
299 gpio_direction_output(gpio, pdata->gpio_pullup_inverted);
300 }
301
302 err = request_irq(irq, gpio_vbus_irq, VBUS_IRQ_FLAGS,
303 "vbus_detect", pdev);
304 if (err) {
305 dev_err(&pdev->dev, "can't request irq %i, err: %d\n",
306 irq, err);
307 goto err_irq;
308 }
Heiko Stübner662c7382012-02-29 23:03:11 +0100309
310 ATOMIC_INIT_NOTIFIER_HEAD(&gpio_vbus->phy.notifier);
311
Shinya Kuribayashi934ccec2012-05-10 10:31:21 +0900312 INIT_DELAYED_WORK(&gpio_vbus->work, gpio_vbus_work);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800313
Dmitry Eremin-Solenikov2887ba92011-05-03 12:46:46 +0400314 gpio_vbus->vbus_draw = regulator_get(&pdev->dev, "vbus_draw");
315 if (IS_ERR(gpio_vbus->vbus_draw)) {
316 dev_dbg(&pdev->dev, "can't get vbus_draw regulator, err: %ld\n",
317 PTR_ERR(gpio_vbus->vbus_draw));
318 gpio_vbus->vbus_draw = NULL;
319 }
320
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800321 /* only active when a gadget is registered */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200322 err = usb_set_transceiver(&gpio_vbus->phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800323 if (err) {
324 dev_err(&pdev->dev, "can't register transceiver, err: %d\n",
325 err);
326 goto err_otg;
327 }
328
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800329 return 0;
330err_otg:
Shinya Kuribayashia6dc9cf2012-05-10 10:32:14 +0900331 regulator_put(gpio_vbus->vbus_draw);
Shinya Kuribayashi0d13eeb2012-05-10 10:31:51 +0900332 free_irq(irq, pdev);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800333err_irq:
334 if (gpio_is_valid(pdata->gpio_pullup))
335 gpio_free(pdata->gpio_pullup);
336 gpio_free(pdata->gpio_vbus);
337err_gpio:
338 platform_set_drvdata(pdev, NULL);
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200339 kfree(gpio_vbus->phy.otg);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800340 kfree(gpio_vbus);
341 return err;
342}
343
344static int __exit gpio_vbus_remove(struct platform_device *pdev)
345{
346 struct gpio_vbus_data *gpio_vbus = platform_get_drvdata(pdev);
347 struct gpio_vbus_mach_info *pdata = pdev->dev.platform_data;
348 int gpio = pdata->gpio_vbus;
349
350 regulator_put(gpio_vbus->vbus_draw);
351
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200352 usb_set_transceiver(NULL);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800353
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +0900354 free_irq(gpio_vbus->irq, pdev);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800355 if (gpio_is_valid(pdata->gpio_pullup))
356 gpio_free(pdata->gpio_pullup);
357 gpio_free(gpio);
358 platform_set_drvdata(pdev, NULL);
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200359 kfree(gpio_vbus->phy.otg);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800360 kfree(gpio_vbus);
361
362 return 0;
363}
364
365/* NOTE: the gpio-vbus device may *NOT* be hotplugged */
366
367MODULE_ALIAS("platform:gpio-vbus");
368
369static struct platform_driver gpio_vbus_driver = {
370 .driver = {
371 .name = "gpio-vbus",
372 .owner = THIS_MODULE,
373 },
374 .remove = __exit_p(gpio_vbus_remove),
375};
376
377static int __init gpio_vbus_init(void)
378{
379 return platform_driver_probe(&gpio_vbus_driver, gpio_vbus_probe);
380}
381module_init(gpio_vbus_init);
382
383static void __exit gpio_vbus_exit(void)
384{
385 platform_driver_unregister(&gpio_vbus_driver);
386}
387module_exit(gpio_vbus_exit);
388
389MODULE_DESCRIPTION("simple GPIO controlled OTG transceiver driver");
390MODULE_AUTHOR("Philipp Zabel");
391MODULE_LICENSE("GPL");