phy-gpio-vbus-usb.c 10.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * gpio-vbus.c - simple GPIO VBUS sensing driver for B peripheral devices
 *
 * Copyright (c) 2008 Philipp Zabel <philipp.zabel@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/gpio.h>
14
#include <linux/module.h>
15
#include <linux/slab.h>
16 17
#include <linux/interrupt.h>
#include <linux/usb.h>
18
#include <linux/workqueue.h>
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

#include <linux/regulator/consumer.h>

#include <linux/usb/gadget.h>
#include <linux/usb/gpio_vbus.h>
#include <linux/usb/otg.h>


/*
 * A simple GPIO VBUS sensing driver for B peripheral only devices
 * with internal transceivers. It can control a D+ pullup GPIO and
 * a regulator to limit the current drawn from VBUS.
 *
 * Needs to be loaded before the UDC driver that will use it.
 */
struct gpio_vbus_data {
35
	struct usb_phy		phy;
36 37 38 39
	struct device          *dev;
	struct regulator       *vbus_draw;
	int			vbus_draw_enabled;
	unsigned		mA;
40
	struct delayed_work	work;
41
	int			vbus;
42
	int			irq;
43 44 45 46 47 48 49 50 51 52 53 54 55
};


/*
 * This driver relies on "both edges" triggering.  VBUS has 100 msec to
 * stabilize, so the peripheral controller driver may need to cope with
 * some bouncing due to current surges (e.g. charging local capacitance)
 * and contact chatter.
 *
 * REVISIT in desperate straits, toggling between rising and falling
 * edges might be workable.
 */
#define VBUS_IRQ_FLAGS \
56
	(IRQF_SHARED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING)
57 58 59 60 61 62 63


/* interface to regulator framework */
static void set_vbus_draw(struct gpio_vbus_data *gpio_vbus, unsigned mA)
{
	struct regulator *vbus_draw = gpio_vbus->vbus_draw;
	int enabled;
64
	int ret;
65 66 67 68 69 70 71 72

	if (!vbus_draw)
		return;

	enabled = gpio_vbus->vbus_draw_enabled;
	if (mA) {
		regulator_set_current_limit(vbus_draw, 0, 1000 * mA);
		if (!enabled) {
73 74 75
			ret = regulator_enable(vbus_draw);
			if (ret < 0)
				return;
76 77 78 79
			gpio_vbus->vbus_draw_enabled = 1;
		}
	} else {
		if (enabled) {
80 81 82
			ret = regulator_disable(vbus_draw);
			if (ret < 0)
				return;
83 84 85 86 87 88
			gpio_vbus->vbus_draw_enabled = 0;
		}
	}
	gpio_vbus->mA = mA;
}

89
static int is_vbus_powered(struct gpio_vbus_mach_info *pdata)
90
{
91
	int vbus;
92 93 94 95 96

	vbus = gpio_get_value(pdata->gpio_vbus);
	if (pdata->gpio_vbus_inverted)
		vbus = !vbus;

97 98 99 100 101 102
	return vbus;
}

static void gpio_vbus_work(struct work_struct *work)
{
	struct gpio_vbus_data *gpio_vbus =
103
		container_of(work, struct gpio_vbus_data, work.work);
J
Jingoo Han 已提交
104
	struct gpio_vbus_mach_info *pdata = dev_get_platdata(gpio_vbus->dev);
105
	int gpio, status, vbus;
106

107
	if (!gpio_vbus->phy.otg->gadget)
108
		return;
109

110 111 112 113 114
	vbus = is_vbus_powered(pdata);
	if ((vbus ^ gpio_vbus->vbus) == 0)
		return;
	gpio_vbus->vbus = vbus;

115 116 117 118 119 120
	/* Peripheral controllers which manage the pullup themselves won't have
	 * gpio_pullup configured here.  If it's configured here, we'll do what
	 * isp1301_omap::b_peripheral() does and enable the pullup here... although
	 * that may complicate usb_gadget_{,dis}connect() support.
	 */
	gpio = pdata->gpio_pullup;
121 122

	if (vbus) {
123
		status = USB_EVENT_VBUS;
124
		gpio_vbus->phy.otg->state = OTG_STATE_B_PERIPHERAL;
125
		gpio_vbus->phy.last_event = status;
126
		usb_gadget_vbus_connect(gpio_vbus->phy.otg->gadget);
127 128 129 130 131 132 133

		/* drawing a "unit load" is *always* OK, except for OTG */
		set_vbus_draw(gpio_vbus, 100);

		/* optionally enable D+ pullup */
		if (gpio_is_valid(gpio))
			gpio_set_value(gpio, !pdata->gpio_pullup_inverted);
134 135 136

		atomic_notifier_call_chain(&gpio_vbus->phy.notifier,
					   status, gpio_vbus->phy.otg->gadget);
137 138 139 140 141 142 143
	} else {
		/* optionally disable D+ pullup */
		if (gpio_is_valid(gpio))
			gpio_set_value(gpio, pdata->gpio_pullup_inverted);

		set_vbus_draw(gpio_vbus, 0);

144
		usb_gadget_vbus_disconnect(gpio_vbus->phy.otg->gadget);
145
		status = USB_EVENT_NONE;
146
		gpio_vbus->phy.otg->state = OTG_STATE_B_IDLE;
147 148 149 150
		gpio_vbus->phy.last_event = status;

		atomic_notifier_call_chain(&gpio_vbus->phy.notifier,
					   status, gpio_vbus->phy.otg->gadget);
151
	}
152 153 154 155 156 157
}

/* VBUS change IRQ handler */
static irqreturn_t gpio_vbus_irq(int irq, void *data)
{
	struct platform_device *pdev = data;
J
Jingoo Han 已提交
158
	struct gpio_vbus_mach_info *pdata = dev_get_platdata(&pdev->dev);
159
	struct gpio_vbus_data *gpio_vbus = platform_get_drvdata(pdev);
160
	struct usb_otg *otg = gpio_vbus->phy.otg;
161 162 163

	dev_dbg(&pdev->dev, "VBUS %s (gadget: %s)\n",
		is_vbus_powered(pdata) ? "supplied" : "inactive",
164
		otg->gadget ? otg->gadget->name : "none");
165

166
	if (otg->gadget)
167
		schedule_delayed_work(&gpio_vbus->work, msecs_to_jiffies(100));
168 169 170 171 172 173 174

	return IRQ_HANDLED;
}

/* OTG transceiver interface */

/* bind/unbind the peripheral controller */
175 176
static int gpio_vbus_set_peripheral(struct usb_otg *otg,
					struct usb_gadget *gadget)
177 178 179 180
{
	struct gpio_vbus_data *gpio_vbus;
	struct gpio_vbus_mach_info *pdata;
	struct platform_device *pdev;
181
	int gpio;
182

A
Antoine Tenart 已提交
183
	gpio_vbus = container_of(otg->usb_phy, struct gpio_vbus_data, phy);
184
	pdev = to_platform_device(gpio_vbus->dev);
J
Jingoo Han 已提交
185
	pdata = dev_get_platdata(gpio_vbus->dev);
186 187 188 189 190 191 192 193 194 195 196 197 198
	gpio = pdata->gpio_pullup;

	if (!gadget) {
		dev_dbg(&pdev->dev, "unregistering gadget '%s'\n",
			otg->gadget->name);

		/* optionally disable D+ pullup */
		if (gpio_is_valid(gpio))
			gpio_set_value(gpio, pdata->gpio_pullup_inverted);

		set_vbus_draw(gpio_vbus, 0);

		usb_gadget_vbus_disconnect(otg->gadget);
199
		otg->state = OTG_STATE_UNDEFINED;
200 201 202 203 204 205 206 207 208

		otg->gadget = NULL;
		return 0;
	}

	otg->gadget = gadget;
	dev_dbg(&pdev->dev, "registered gadget '%s'\n", gadget->name);

	/* initialize connection state */
209
	gpio_vbus->vbus = 0; /* start with disconnected */
210
	gpio_vbus_irq(gpio_vbus->irq, pdev);
211 212 213 214
	return 0;
}

/* effective for B devices, ignored for A-peripheral */
215
static int gpio_vbus_set_power(struct usb_phy *phy, unsigned mA)
216 217 218
{
	struct gpio_vbus_data *gpio_vbus;

219
	gpio_vbus = container_of(phy, struct gpio_vbus_data, phy);
220

221
	if (phy->otg->state == OTG_STATE_B_PERIPHERAL)
222 223 224 225 226
		set_vbus_draw(gpio_vbus, mA);
	return 0;
}

/* for non-OTG B devices: set/clear transceiver suspend mode */
227
static int gpio_vbus_set_suspend(struct usb_phy *phy, int suspend)
228 229 230
{
	struct gpio_vbus_data *gpio_vbus;

231
	gpio_vbus = container_of(phy, struct gpio_vbus_data, phy);
232 233 234 235 236 237 238

	/* draw max 0 mA from vbus in suspend mode; or the previously
	 * recorded amount of current if not suspended
	 *
	 * NOTE: high powered configs (mA > 100) may draw up to 2.5 mA
	 * if they're wake-enabled ... we don't handle that yet.
	 */
239
	return gpio_vbus_set_power(phy, suspend ? 0 : gpio_vbus->mA);
240 241 242 243
}

/* platform driver interface */

244
static int gpio_vbus_probe(struct platform_device *pdev)
245
{
J
Jingoo Han 已提交
246
	struct gpio_vbus_mach_info *pdata = dev_get_platdata(&pdev->dev);
247 248 249
	struct gpio_vbus_data *gpio_vbus;
	struct resource *res;
	int err, gpio, irq;
250
	unsigned long irqflags;
251 252 253 254 255

	if (!pdata || !gpio_is_valid(pdata->gpio_vbus))
		return -EINVAL;
	gpio = pdata->gpio_vbus;

256 257
	gpio_vbus = devm_kzalloc(&pdev->dev, sizeof(struct gpio_vbus_data),
				 GFP_KERNEL);
258 259 260
	if (!gpio_vbus)
		return -ENOMEM;

261 262
	gpio_vbus->phy.otg = devm_kzalloc(&pdev->dev, sizeof(struct usb_otg),
					  GFP_KERNEL);
263
	if (!gpio_vbus->phy.otg)
264 265
		return -ENOMEM;

266 267
	platform_set_drvdata(pdev, gpio_vbus);
	gpio_vbus->dev = &pdev->dev;
268
	gpio_vbus->phy.label = "gpio-vbus";
269
	gpio_vbus->phy.dev = gpio_vbus->dev;
270 271 272
	gpio_vbus->phy.set_power = gpio_vbus_set_power;
	gpio_vbus->phy.set_suspend = gpio_vbus_set_suspend;

273
	gpio_vbus->phy.otg->state = OTG_STATE_UNDEFINED;
A
Antoine Tenart 已提交
274
	gpio_vbus->phy.otg->usb_phy = &gpio_vbus->phy;
275
	gpio_vbus->phy.otg->set_peripheral = gpio_vbus_set_peripheral;
276

277
	err = devm_gpio_request(&pdev->dev, gpio, "vbus_detect");
278 279 280
	if (err) {
		dev_err(&pdev->dev, "can't request vbus gpio %d, err: %d\n",
			gpio, err);
281
		return err;
282 283 284 285 286 287
	}
	gpio_direction_input(gpio);

	res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (res) {
		irq = res->start;
288 289
		irqflags = (res->flags & IRQF_TRIGGER_MASK) | IRQF_SHARED;
	} else {
290
		irq = gpio_to_irq(gpio);
291 292
		irqflags = VBUS_IRQ_FLAGS;
	}
293

294 295
	gpio_vbus->irq = irq;

296 297 298
	/* if data line pullup is in use, initialize it to "not pulling up" */
	gpio = pdata->gpio_pullup;
	if (gpio_is_valid(gpio)) {
299
		err = devm_gpio_request(&pdev->dev, gpio, "udc_pullup");
300 301 302 303
		if (err) {
			dev_err(&pdev->dev,
				"can't request pullup gpio %d, err: %d\n",
				gpio, err);
304
			return err;
305 306 307 308
		}
		gpio_direction_output(gpio, pdata->gpio_pullup_inverted);
	}

309 310
	err = devm_request_irq(&pdev->dev, irq, gpio_vbus_irq, irqflags,
			       "vbus_detect", pdev);
311 312 313
	if (err) {
		dev_err(&pdev->dev, "can't request irq %i, err: %d\n",
			irq, err);
314
		return err;
315
	}
316

317
	INIT_DELAYED_WORK(&gpio_vbus->work, gpio_vbus_work);
318

319
	gpio_vbus->vbus_draw = devm_regulator_get(&pdev->dev, "vbus_draw");
320 321 322 323 324 325
	if (IS_ERR(gpio_vbus->vbus_draw)) {
		dev_dbg(&pdev->dev, "can't get vbus_draw regulator, err: %ld\n",
			PTR_ERR(gpio_vbus->vbus_draw));
		gpio_vbus->vbus_draw = NULL;
	}

326
	/* only active when a gadget is registered */
327
	err = usb_add_phy(&gpio_vbus->phy, USB_PHY_TYPE_USB2);
328 329 330
	if (err) {
		dev_err(&pdev->dev, "can't register transceiver, err: %d\n",
			err);
331
		return err;
332 333
	}

334 335
	device_init_wakeup(&pdev->dev, pdata->wakeup);

336 337 338
	return 0;
}

339
static int gpio_vbus_remove(struct platform_device *pdev)
340 341 342
{
	struct gpio_vbus_data *gpio_vbus = platform_get_drvdata(pdev);

343
	device_init_wakeup(&pdev->dev, 0);
344
	cancel_delayed_work_sync(&gpio_vbus->work);
345

346
	usb_remove_phy(&gpio_vbus->phy);
347 348 349 350

	return 0;
}

351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
#ifdef CONFIG_PM
static int gpio_vbus_pm_suspend(struct device *dev)
{
	struct gpio_vbus_data *gpio_vbus = dev_get_drvdata(dev);

	if (device_may_wakeup(dev))
		enable_irq_wake(gpio_vbus->irq);

	return 0;
}

static int gpio_vbus_pm_resume(struct device *dev)
{
	struct gpio_vbus_data *gpio_vbus = dev_get_drvdata(dev);

	if (device_may_wakeup(dev))
		disable_irq_wake(gpio_vbus->irq);

	return 0;
}

static const struct dev_pm_ops gpio_vbus_dev_pm_ops = {
	.suspend	= gpio_vbus_pm_suspend,
	.resume		= gpio_vbus_pm_resume,
};
#endif

378 379 380 381 382 383
MODULE_ALIAS("platform:gpio-vbus");

static struct platform_driver gpio_vbus_driver = {
	.driver = {
		.name  = "gpio-vbus",
		.owner = THIS_MODULE,
384 385 386
#ifdef CONFIG_PM
		.pm = &gpio_vbus_dev_pm_ops,
#endif
387
	},
388 389
	.probe		= gpio_vbus_probe,
	.remove		= gpio_vbus_remove,
390 391
};

392
module_platform_driver(gpio_vbus_driver);
393 394 395 396

MODULE_DESCRIPTION("simple GPIO controlled OTG transceiver driver");
MODULE_AUTHOR("Philipp Zabel");
MODULE_LICENSE("GPL");