1 // SPDX-License-Identifier: GPL-2.0
3 * gpio-vbus.c - simple GPIO VBUS sensing driver for B peripheral devices
5 * Copyright (c) 2008 Philipp Zabel <philipp.zabel@gmail.com>
8 #include <linux/kernel.h>
9 #include <linux/platform_device.h>
10 #include <linux/gpio.h>
11 #include <linux/module.h>
12 #include <linux/slab.h>
13 #include <linux/interrupt.h>
14 #include <linux/usb.h>
15 #include <linux/workqueue.h>
17 #include <linux/regulator/consumer.h>
19 #include <linux/usb/gadget.h>
20 #include <linux/usb/gpio_vbus.h>
21 #include <linux/usb/otg.h>
25 * A simple GPIO VBUS sensing driver for B peripheral only devices
26 * with internal transceivers. It can control a D+ pullup GPIO and
27 * a regulator to limit the current drawn from VBUS.
29 * Needs to be loaded before the UDC driver that will use it.
31 struct gpio_vbus_data
{
34 struct regulator
*vbus_draw
;
35 int vbus_draw_enabled
;
37 struct delayed_work work
;
44 * This driver relies on "both edges" triggering. VBUS has 100 msec to
45 * stabilize, so the peripheral controller driver may need to cope with
46 * some bouncing due to current surges (e.g. charging local capacitance)
47 * and contact chatter.
49 * REVISIT in desperate straits, toggling between rising and falling
50 * edges might be workable.
52 #define VBUS_IRQ_FLAGS \
53 (IRQF_SHARED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING)
56 /* interface to regulator framework */
57 static void set_vbus_draw(struct gpio_vbus_data
*gpio_vbus
, unsigned mA
)
59 struct regulator
*vbus_draw
= gpio_vbus
->vbus_draw
;
66 enabled
= gpio_vbus
->vbus_draw_enabled
;
68 regulator_set_current_limit(vbus_draw
, 0, 1000 * mA
);
70 ret
= regulator_enable(vbus_draw
);
73 gpio_vbus
->vbus_draw_enabled
= 1;
77 ret
= regulator_disable(vbus_draw
);
80 gpio_vbus
->vbus_draw_enabled
= 0;
86 static int is_vbus_powered(struct gpio_vbus_mach_info
*pdata
)
90 vbus
= gpio_get_value(pdata
->gpio_vbus
);
91 if (pdata
->gpio_vbus_inverted
)
97 static void gpio_vbus_work(struct work_struct
*work
)
99 struct gpio_vbus_data
*gpio_vbus
=
100 container_of(work
, struct gpio_vbus_data
, work
.work
);
101 struct gpio_vbus_mach_info
*pdata
= dev_get_platdata(gpio_vbus
->dev
);
102 int gpio
, status
, vbus
;
104 if (!gpio_vbus
->phy
.otg
->gadget
)
107 vbus
= is_vbus_powered(pdata
);
108 if ((vbus
^ gpio_vbus
->vbus
) == 0)
110 gpio_vbus
->vbus
= vbus
;
112 /* Peripheral controllers which manage the pullup themselves won't have
113 * gpio_pullup configured here. If it's configured here, we'll do what
114 * isp1301_omap::b_peripheral() does and enable the pullup here... although
115 * that may complicate usb_gadget_{,dis}connect() support.
117 gpio
= pdata
->gpio_pullup
;
120 status
= USB_EVENT_VBUS
;
121 gpio_vbus
->phy
.otg
->state
= OTG_STATE_B_PERIPHERAL
;
122 gpio_vbus
->phy
.last_event
= status
;
123 usb_gadget_vbus_connect(gpio_vbus
->phy
.otg
->gadget
);
125 /* drawing a "unit load" is *always* OK, except for OTG */
126 set_vbus_draw(gpio_vbus
, 100);
128 /* optionally enable D+ pullup */
129 if (gpio_is_valid(gpio
))
130 gpio_set_value(gpio
, !pdata
->gpio_pullup_inverted
);
132 atomic_notifier_call_chain(&gpio_vbus
->phy
.notifier
,
133 status
, gpio_vbus
->phy
.otg
->gadget
);
134 usb_phy_set_event(&gpio_vbus
->phy
, USB_EVENT_ENUMERATED
);
136 /* optionally disable D+ pullup */
137 if (gpio_is_valid(gpio
))
138 gpio_set_value(gpio
, pdata
->gpio_pullup_inverted
);
140 set_vbus_draw(gpio_vbus
, 0);
142 usb_gadget_vbus_disconnect(gpio_vbus
->phy
.otg
->gadget
);
143 status
= USB_EVENT_NONE
;
144 gpio_vbus
->phy
.otg
->state
= OTG_STATE_B_IDLE
;
145 gpio_vbus
->phy
.last_event
= status
;
147 atomic_notifier_call_chain(&gpio_vbus
->phy
.notifier
,
148 status
, gpio_vbus
->phy
.otg
->gadget
);
149 usb_phy_set_event(&gpio_vbus
->phy
, USB_EVENT_NONE
);
153 /* VBUS change IRQ handler */
154 static irqreturn_t
gpio_vbus_irq(int irq
, void *data
)
156 struct platform_device
*pdev
= data
;
157 struct gpio_vbus_mach_info
*pdata
= dev_get_platdata(&pdev
->dev
);
158 struct gpio_vbus_data
*gpio_vbus
= platform_get_drvdata(pdev
);
159 struct usb_otg
*otg
= gpio_vbus
->phy
.otg
;
161 dev_dbg(&pdev
->dev
, "VBUS %s (gadget: %s)\n",
162 is_vbus_powered(pdata
) ? "supplied" : "inactive",
163 otg
->gadget
? otg
->gadget
->name
: "none");
166 schedule_delayed_work(&gpio_vbus
->work
, msecs_to_jiffies(100));
171 /* OTG transceiver interface */
173 /* bind/unbind the peripheral controller */
174 static int gpio_vbus_set_peripheral(struct usb_otg
*otg
,
175 struct usb_gadget
*gadget
)
177 struct gpio_vbus_data
*gpio_vbus
;
178 struct gpio_vbus_mach_info
*pdata
;
179 struct platform_device
*pdev
;
182 gpio_vbus
= container_of(otg
->usb_phy
, struct gpio_vbus_data
, phy
);
183 pdev
= to_platform_device(gpio_vbus
->dev
);
184 pdata
= dev_get_platdata(gpio_vbus
->dev
);
185 gpio
= pdata
->gpio_pullup
;
188 dev_dbg(&pdev
->dev
, "unregistering gadget '%s'\n",
191 /* optionally disable D+ pullup */
192 if (gpio_is_valid(gpio
))
193 gpio_set_value(gpio
, pdata
->gpio_pullup_inverted
);
195 set_vbus_draw(gpio_vbus
, 0);
197 usb_gadget_vbus_disconnect(otg
->gadget
);
198 otg
->state
= OTG_STATE_UNDEFINED
;
204 otg
->gadget
= gadget
;
205 dev_dbg(&pdev
->dev
, "registered gadget '%s'\n", gadget
->name
);
207 /* initialize connection state */
208 gpio_vbus
->vbus
= 0; /* start with disconnected */
209 gpio_vbus_irq(gpio_vbus
->irq
, pdev
);
213 /* effective for B devices, ignored for A-peripheral */
214 static int gpio_vbus_set_power(struct usb_phy
*phy
, unsigned mA
)
216 struct gpio_vbus_data
*gpio_vbus
;
218 gpio_vbus
= container_of(phy
, struct gpio_vbus_data
, phy
);
220 if (phy
->otg
->state
== OTG_STATE_B_PERIPHERAL
)
221 set_vbus_draw(gpio_vbus
, mA
);
225 /* for non-OTG B devices: set/clear transceiver suspend mode */
226 static int gpio_vbus_set_suspend(struct usb_phy
*phy
, int suspend
)
228 struct gpio_vbus_data
*gpio_vbus
;
230 gpio_vbus
= container_of(phy
, struct gpio_vbus_data
, phy
);
232 /* draw max 0 mA from vbus in suspend mode; or the previously
233 * recorded amount of current if not suspended
235 * NOTE: high powered configs (mA > 100) may draw up to 2.5 mA
236 * if they're wake-enabled ... we don't handle that yet.
238 return gpio_vbus_set_power(phy
, suspend
? 0 : gpio_vbus
->mA
);
241 /* platform driver interface */
243 static int gpio_vbus_probe(struct platform_device
*pdev
)
245 struct gpio_vbus_mach_info
*pdata
= dev_get_platdata(&pdev
->dev
);
246 struct gpio_vbus_data
*gpio_vbus
;
247 struct resource
*res
;
249 unsigned long irqflags
;
251 if (!pdata
|| !gpio_is_valid(pdata
->gpio_vbus
))
253 gpio
= pdata
->gpio_vbus
;
255 gpio_vbus
= devm_kzalloc(&pdev
->dev
, sizeof(struct gpio_vbus_data
),
260 gpio_vbus
->phy
.otg
= devm_kzalloc(&pdev
->dev
, sizeof(struct usb_otg
),
262 if (!gpio_vbus
->phy
.otg
)
265 platform_set_drvdata(pdev
, gpio_vbus
);
266 gpio_vbus
->dev
= &pdev
->dev
;
267 gpio_vbus
->phy
.label
= "gpio-vbus";
268 gpio_vbus
->phy
.dev
= gpio_vbus
->dev
;
269 gpio_vbus
->phy
.set_power
= gpio_vbus_set_power
;
270 gpio_vbus
->phy
.set_suspend
= gpio_vbus_set_suspend
;
272 gpio_vbus
->phy
.otg
->state
= OTG_STATE_UNDEFINED
;
273 gpio_vbus
->phy
.otg
->usb_phy
= &gpio_vbus
->phy
;
274 gpio_vbus
->phy
.otg
->set_peripheral
= gpio_vbus_set_peripheral
;
276 err
= devm_gpio_request(&pdev
->dev
, gpio
, "vbus_detect");
278 dev_err(&pdev
->dev
, "can't request vbus gpio %d, err: %d\n",
282 gpio_direction_input(gpio
);
284 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
287 irqflags
= (res
->flags
& IRQF_TRIGGER_MASK
) | IRQF_SHARED
;
289 irq
= gpio_to_irq(gpio
);
290 irqflags
= VBUS_IRQ_FLAGS
;
293 gpio_vbus
->irq
= irq
;
295 /* if data line pullup is in use, initialize it to "not pulling up" */
296 gpio
= pdata
->gpio_pullup
;
297 if (gpio_is_valid(gpio
)) {
298 err
= devm_gpio_request(&pdev
->dev
, gpio
, "udc_pullup");
301 "can't request pullup gpio %d, err: %d\n",
305 gpio_direction_output(gpio
, pdata
->gpio_pullup_inverted
);
308 err
= devm_request_irq(&pdev
->dev
, irq
, gpio_vbus_irq
, irqflags
,
309 "vbus_detect", pdev
);
311 dev_err(&pdev
->dev
, "can't request irq %i, err: %d\n",
316 INIT_DELAYED_WORK(&gpio_vbus
->work
, gpio_vbus_work
);
318 gpio_vbus
->vbus_draw
= devm_regulator_get(&pdev
->dev
, "vbus_draw");
319 if (IS_ERR(gpio_vbus
->vbus_draw
)) {
320 dev_dbg(&pdev
->dev
, "can't get vbus_draw regulator, err: %ld\n",
321 PTR_ERR(gpio_vbus
->vbus_draw
));
322 gpio_vbus
->vbus_draw
= NULL
;
325 /* only active when a gadget is registered */
326 err
= usb_add_phy(&gpio_vbus
->phy
, USB_PHY_TYPE_USB2
);
328 dev_err(&pdev
->dev
, "can't register transceiver, err: %d\n",
333 device_init_wakeup(&pdev
->dev
, pdata
->wakeup
);
338 static int gpio_vbus_remove(struct platform_device
*pdev
)
340 struct gpio_vbus_data
*gpio_vbus
= platform_get_drvdata(pdev
);
342 device_init_wakeup(&pdev
->dev
, 0);
343 cancel_delayed_work_sync(&gpio_vbus
->work
);
345 usb_remove_phy(&gpio_vbus
->phy
);
351 static int gpio_vbus_pm_suspend(struct device
*dev
)
353 struct gpio_vbus_data
*gpio_vbus
= dev_get_drvdata(dev
);
355 if (device_may_wakeup(dev
))
356 enable_irq_wake(gpio_vbus
->irq
);
361 static int gpio_vbus_pm_resume(struct device
*dev
)
363 struct gpio_vbus_data
*gpio_vbus
= dev_get_drvdata(dev
);
365 if (device_may_wakeup(dev
))
366 disable_irq_wake(gpio_vbus
->irq
);
371 static const struct dev_pm_ops gpio_vbus_dev_pm_ops
= {
372 .suspend
= gpio_vbus_pm_suspend
,
373 .resume
= gpio_vbus_pm_resume
,
377 MODULE_ALIAS("platform:gpio-vbus");
379 static struct platform_driver gpio_vbus_driver
= {
383 .pm
= &gpio_vbus_dev_pm_ops
,
386 .probe
= gpio_vbus_probe
,
387 .remove
= gpio_vbus_remove
,
390 module_platform_driver(gpio_vbus_driver
);
392 MODULE_DESCRIPTION("simple GPIO controlled OTG transceiver driver");
393 MODULE_AUTHOR("Philipp Zabel");
394 MODULE_LICENSE("GPL");