blob: f66120db8a41d5c6991c948a03f271059d86f3a9 [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;
Felipe Balbie8d891f2013-03-20 08:01:53 +020064 int ret;
Philipp Zabel6084f1b2008-11-24 12:00:01 -080065
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 Balbie8d891f2013-03-20 08:01:53 +020073 ret = regulator_enable(vbus_draw);
74 if (ret < 0)
75 return;
Philipp Zabel6084f1b2008-11-24 12:00:01 -080076 gpio_vbus->vbus_draw_enabled = 1;
77 }
78 } else {
79 if (enabled) {
Felipe Balbie8d891f2013-03-20 08:01:53 +020080 ret = regulator_disable(vbus_draw);
81 if (ret < 0)
82 return;
Philipp Zabel6084f1b2008-11-24 12:00:01 -080083 gpio_vbus->vbus_draw_enabled = 0;
84 }
85 }
86 gpio_vbus->mA = mA;
87}
88
Robert Jarzmikc2344f12009-01-24 23:54:31 -080089static int is_vbus_powered(struct gpio_vbus_mach_info *pdata)
Philipp Zabel6084f1b2008-11-24 12:00:01 -080090{
Robert Jarzmikc2344f12009-01-24 23:54:31 -080091 int vbus;
Philipp Zabel6084f1b2008-11-24 12:00:01 -080092
93 vbus = gpio_get_value(pdata->gpio_vbus);
94 if (pdata->gpio_vbus_inverted)
95 vbus = !vbus;
96
Robert Jarzmikc2344f12009-01-24 23:54:31 -080097 return vbus;
98}
99
100static void gpio_vbus_work(struct work_struct *work)
101{
102 struct gpio_vbus_data *gpio_vbus =
Shinya Kuribayashi934ccec2012-05-10 10:31:21 +0900103 container_of(work, struct gpio_vbus_data, work.work);
Jingoo Han19f9e182013-07-30 17:02:13 +0900104 struct gpio_vbus_mach_info *pdata = dev_get_platdata(gpio_vbus->dev);
Shinya Kuribayashie44694e2012-05-10 13:02:38 +0900105 int gpio, status, vbus;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800106
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200107 if (!gpio_vbus->phy.otg->gadget)
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800108 return;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800109
Shinya Kuribayashie44694e2012-05-10 13:02:38 +0900110 vbus = is_vbus_powered(pdata);
111 if ((vbus ^ gpio_vbus->vbus) == 0)
112 return;
113 gpio_vbus->vbus = vbus;
114
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800115 /* 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 Kuribayashie44694e2012-05-10 13:02:38 +0900121
122 if (vbus) {
Heiko Stübner662c7382012-02-29 23:03:11 +0100123 status = USB_EVENT_VBUS;
Antoine Tenarte47d9252014-10-30 18:41:13 +0100124 gpio_vbus->phy.otg->state = OTG_STATE_B_PERIPHERAL;
Heiko Stübner662c7382012-02-29 23:03:11 +0100125 gpio_vbus->phy.last_event = status;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200126 usb_gadget_vbus_connect(gpio_vbus->phy.otg->gadget);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800127
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übner662c7382012-02-29 23:03:11 +0100134
135 atomic_notifier_call_chain(&gpio_vbus->phy.notifier,
136 status, gpio_vbus->phy.otg->gadget);
Kiran Raparthyb20f3f92014-11-24 22:54:59 +0530137 usb_phy_set_event(&gpio_vbus->phy, USB_EVENT_ENUMERATED);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800138 } else {
139 /* optionally disable D+ pullup */
140 if (gpio_is_valid(gpio))
141 gpio_set_value(gpio, pdata->gpio_pullup_inverted);
142
143 set_vbus_draw(gpio_vbus, 0);
144
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200145 usb_gadget_vbus_disconnect(gpio_vbus->phy.otg->gadget);
Heiko Stübner662c7382012-02-29 23:03:11 +0100146 status = USB_EVENT_NONE;
Antoine Tenarte47d9252014-10-30 18:41:13 +0100147 gpio_vbus->phy.otg->state = OTG_STATE_B_IDLE;
Heiko Stübner662c7382012-02-29 23:03:11 +0100148 gpio_vbus->phy.last_event = status;
149
150 atomic_notifier_call_chain(&gpio_vbus->phy.notifier,
151 status, gpio_vbus->phy.otg->gadget);
Kiran Raparthyb20f3f92014-11-24 22:54:59 +0530152 usb_phy_set_event(&gpio_vbus->phy, USB_EVENT_NONE);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800153 }
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800154}
155
156/* VBUS change IRQ handler */
157static irqreturn_t gpio_vbus_irq(int irq, void *data)
158{
159 struct platform_device *pdev = data;
Jingoo Han19f9e182013-07-30 17:02:13 +0900160 struct gpio_vbus_mach_info *pdata = dev_get_platdata(&pdev->dev);
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800161 struct gpio_vbus_data *gpio_vbus = platform_get_drvdata(pdev);
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200162 struct usb_otg *otg = gpio_vbus->phy.otg;
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800163
164 dev_dbg(&pdev->dev, "VBUS %s (gadget: %s)\n",
165 is_vbus_powered(pdata) ? "supplied" : "inactive",
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200166 otg->gadget ? otg->gadget->name : "none");
Robert Jarzmikc2344f12009-01-24 23:54:31 -0800167
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200168 if (otg->gadget)
Shinya Kuribayashi934ccec2012-05-10 10:31:21 +0900169 schedule_delayed_work(&gpio_vbus->work, msecs_to_jiffies(100));
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800170
171 return IRQ_HANDLED;
172}
173
174/* OTG transceiver interface */
175
176/* bind/unbind the peripheral controller */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200177static int gpio_vbus_set_peripheral(struct usb_otg *otg,
178 struct usb_gadget *gadget)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800179{
180 struct gpio_vbus_data *gpio_vbus;
181 struct gpio_vbus_mach_info *pdata;
182 struct platform_device *pdev;
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +0900183 int gpio;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800184
Antoine Tenart19c1eac2014-10-30 18:41:14 +0100185 gpio_vbus = container_of(otg->usb_phy, struct gpio_vbus_data, phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800186 pdev = to_platform_device(gpio_vbus->dev);
Jingoo Han19f9e182013-07-30 17:02:13 +0900187 pdata = dev_get_platdata(gpio_vbus->dev);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800188 gpio = pdata->gpio_pullup;
189
190 if (!gadget) {
191 dev_dbg(&pdev->dev, "unregistering gadget '%s'\n",
192 otg->gadget->name);
193
194 /* optionally disable D+ pullup */
195 if (gpio_is_valid(gpio))
196 gpio_set_value(gpio, pdata->gpio_pullup_inverted);
197
198 set_vbus_draw(gpio_vbus, 0);
199
200 usb_gadget_vbus_disconnect(otg->gadget);
Antoine Tenarte47d9252014-10-30 18:41:13 +0100201 otg->state = OTG_STATE_UNDEFINED;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800202
203 otg->gadget = NULL;
204 return 0;
205 }
206
207 otg->gadget = gadget;
208 dev_dbg(&pdev->dev, "registered gadget '%s'\n", gadget->name);
209
210 /* initialize connection state */
Shinya Kuribayashie44694e2012-05-10 13:02:38 +0900211 gpio_vbus->vbus = 0; /* start with disconnected */
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +0900212 gpio_vbus_irq(gpio_vbus->irq, pdev);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800213 return 0;
214}
215
216/* effective for B devices, ignored for A-peripheral */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200217static int gpio_vbus_set_power(struct usb_phy *phy, unsigned mA)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800218{
219 struct gpio_vbus_data *gpio_vbus;
220
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200221 gpio_vbus = container_of(phy, struct gpio_vbus_data, phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800222
Antoine Tenarte47d9252014-10-30 18:41:13 +0100223 if (phy->otg->state == OTG_STATE_B_PERIPHERAL)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800224 set_vbus_draw(gpio_vbus, mA);
225 return 0;
226}
227
228/* for non-OTG B devices: set/clear transceiver suspend mode */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200229static int gpio_vbus_set_suspend(struct usb_phy *phy, int suspend)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800230{
231 struct gpio_vbus_data *gpio_vbus;
232
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200233 gpio_vbus = container_of(phy, struct gpio_vbus_data, phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800234
235 /* draw max 0 mA from vbus in suspend mode; or the previously
236 * recorded amount of current if not suspended
237 *
238 * NOTE: high powered configs (mA > 100) may draw up to 2.5 mA
239 * if they're wake-enabled ... we don't handle that yet.
240 */
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200241 return gpio_vbus_set_power(phy, suspend ? 0 : gpio_vbus->mA);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800242}
243
244/* platform driver interface */
245
Johan Hovoldeaaa7752013-09-23 16:27:31 +0200246static int gpio_vbus_probe(struct platform_device *pdev)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800247{
Jingoo Han19f9e182013-07-30 17:02:13 +0900248 struct gpio_vbus_mach_info *pdata = dev_get_platdata(&pdev->dev);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800249 struct gpio_vbus_data *gpio_vbus;
250 struct resource *res;
251 int err, gpio, irq;
Shinya Kuribayashic8240c12012-05-17 20:10:16 +0900252 unsigned long irqflags;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800253
254 if (!pdata || !gpio_is_valid(pdata->gpio_vbus))
255 return -EINVAL;
256 gpio = pdata->gpio_vbus;
257
Himangi Saraogi9f7b23c2014-06-04 02:49:53 +0530258 gpio_vbus = devm_kzalloc(&pdev->dev, sizeof(struct gpio_vbus_data),
259 GFP_KERNEL);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800260 if (!gpio_vbus)
261 return -ENOMEM;
262
Himangi Saraogi9f7b23c2014-06-04 02:49:53 +0530263 gpio_vbus->phy.otg = devm_kzalloc(&pdev->dev, sizeof(struct usb_otg),
264 GFP_KERNEL);
Himangi Saraogi0c582402014-08-11 01:29:37 +0530265 if (!gpio_vbus->phy.otg)
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200266 return -ENOMEM;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200267
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800268 platform_set_drvdata(pdev, gpio_vbus);
269 gpio_vbus->dev = &pdev->dev;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200270 gpio_vbus->phy.label = "gpio-vbus";
Robert Jarzmik1abd8b32013-05-10 15:15:08 +0530271 gpio_vbus->phy.dev = gpio_vbus->dev;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200272 gpio_vbus->phy.set_power = gpio_vbus_set_power;
273 gpio_vbus->phy.set_suspend = gpio_vbus_set_suspend;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200274
Antoine Tenarte47d9252014-10-30 18:41:13 +0100275 gpio_vbus->phy.otg->state = OTG_STATE_UNDEFINED;
Antoine Tenart19c1eac2014-10-30 18:41:14 +0100276 gpio_vbus->phy.otg->usb_phy = &gpio_vbus->phy;
Heikki Krogerus16bc1bb2012-02-13 13:24:07 +0200277 gpio_vbus->phy.otg->set_peripheral = gpio_vbus_set_peripheral;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800278
Himangi Saraogi9f7b23c2014-06-04 02:49:53 +0530279 err = devm_gpio_request(&pdev->dev, gpio, "vbus_detect");
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800280 if (err) {
281 dev_err(&pdev->dev, "can't request vbus gpio %d, err: %d\n",
282 gpio, err);
Himangi Saraogi9f7b23c2014-06-04 02:49:53 +0530283 return err;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800284 }
285 gpio_direction_input(gpio);
286
287 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
288 if (res) {
289 irq = res->start;
Shinya Kuribayashic8240c12012-05-17 20:10:16 +0900290 irqflags = (res->flags & IRQF_TRIGGER_MASK) | IRQF_SHARED;
291 } else {
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800292 irq = gpio_to_irq(gpio);
Shinya Kuribayashic8240c12012-05-17 20:10:16 +0900293 irqflags = VBUS_IRQ_FLAGS;
294 }
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800295
Shinya Kuribayashi123bbce2012-05-17 20:09:32 +0900296 gpio_vbus->irq = irq;
297
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800298 /* if data line pullup is in use, initialize it to "not pulling up" */
299 gpio = pdata->gpio_pullup;
300 if (gpio_is_valid(gpio)) {
Himangi Saraogi9f7b23c2014-06-04 02:49:53 +0530301 err = devm_gpio_request(&pdev->dev, gpio, "udc_pullup");
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800302 if (err) {
303 dev_err(&pdev->dev,
304 "can't request pullup gpio %d, err: %d\n",
305 gpio, err);
Himangi Saraogi9f7b23c2014-06-04 02:49:53 +0530306 return err;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800307 }
308 gpio_direction_output(gpio, pdata->gpio_pullup_inverted);
309 }
310
Himangi Saraogi9f7b23c2014-06-04 02:49:53 +0530311 err = devm_request_irq(&pdev->dev, irq, gpio_vbus_irq, irqflags,
312 "vbus_detect", pdev);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800313 if (err) {
314 dev_err(&pdev->dev, "can't request irq %i, err: %d\n",
315 irq, err);
Himangi Saraogi9f7b23c2014-06-04 02:49:53 +0530316 return err;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800317 }
Heiko Stübner662c7382012-02-29 23:03:11 +0100318
Shinya Kuribayashi934ccec2012-05-10 10:31:21 +0900319 INIT_DELAYED_WORK(&gpio_vbus->work, gpio_vbus_work);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800320
Himangi Saraogi9f7b23c2014-06-04 02:49:53 +0530321 gpio_vbus->vbus_draw = devm_regulator_get(&pdev->dev, "vbus_draw");
Dmitry Eremin-Solenikov2887ba92011-05-03 12:46:46 +0400322 if (IS_ERR(gpio_vbus->vbus_draw)) {
323 dev_dbg(&pdev->dev, "can't get vbus_draw regulator, err: %ld\n",
324 PTR_ERR(gpio_vbus->vbus_draw));
325 gpio_vbus->vbus_draw = NULL;
326 }
327
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800328 /* only active when a gadget is registered */
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530329 err = usb_add_phy(&gpio_vbus->phy, USB_PHY_TYPE_USB2);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800330 if (err) {
331 dev_err(&pdev->dev, "can't register transceiver, err: %d\n",
332 err);
Himangi Saraogi9f7b23c2014-06-04 02:49:53 +0530333 return err;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800334 }
335
Shinya Kuribayashi7cbb0622012-05-17 20:11:06 +0900336 device_init_wakeup(&pdev->dev, pdata->wakeup);
337
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800338 return 0;
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800339}
340
Johan Hovoldeaaa7752013-09-23 16:27:31 +0200341static int gpio_vbus_remove(struct platform_device *pdev)
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800342{
343 struct gpio_vbus_data *gpio_vbus = platform_get_drvdata(pdev);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800344
Shinya Kuribayashi7cbb0622012-05-17 20:11:06 +0900345 device_init_wakeup(&pdev->dev, 0);
Shinya Kuribayashiec1ac6e2012-05-17 20:10:43 +0900346 cancel_delayed_work_sync(&gpio_vbus->work);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800347
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530348 usb_remove_phy(&gpio_vbus->phy);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800349
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800350 return 0;
351}
352
Shinya Kuribayashi7cbb0622012-05-17 20:11:06 +0900353#ifdef CONFIG_PM
354static int gpio_vbus_pm_suspend(struct device *dev)
355{
356 struct gpio_vbus_data *gpio_vbus = dev_get_drvdata(dev);
357
358 if (device_may_wakeup(dev))
359 enable_irq_wake(gpio_vbus->irq);
360
361 return 0;
362}
363
364static int gpio_vbus_pm_resume(struct device *dev)
365{
366 struct gpio_vbus_data *gpio_vbus = dev_get_drvdata(dev);
367
368 if (device_may_wakeup(dev))
369 disable_irq_wake(gpio_vbus->irq);
370
371 return 0;
372}
373
374static const struct dev_pm_ops gpio_vbus_dev_pm_ops = {
375 .suspend = gpio_vbus_pm_suspend,
376 .resume = gpio_vbus_pm_resume,
377};
378#endif
379
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800380MODULE_ALIAS("platform:gpio-vbus");
381
382static struct platform_driver gpio_vbus_driver = {
383 .driver = {
384 .name = "gpio-vbus",
Shinya Kuribayashi7cbb0622012-05-17 20:11:06 +0900385#ifdef CONFIG_PM
386 .pm = &gpio_vbus_dev_pm_ops,
387#endif
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800388 },
Johan Hovoldeaaa7752013-09-23 16:27:31 +0200389 .probe = gpio_vbus_probe,
390 .remove = gpio_vbus_remove,
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800391};
392
Johan Hovoldeaaa7752013-09-23 16:27:31 +0200393module_platform_driver(gpio_vbus_driver);
Philipp Zabel6084f1b2008-11-24 12:00:01 -0800394
395MODULE_DESCRIPTION("simple GPIO controlled OTG transceiver driver");
396MODULE_AUTHOR("Philipp Zabel");
397MODULE_LICENSE("GPL");