diff options
author | Tony Lindgren <tony@atomide.com> | 2008-11-24 15:02:21 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-07 13:00:03 -0500 |
commit | 3cb22d658668234edbe6dcb165501e9ef0c0a059 (patch) | |
tree | f242d930ce9fce671ee71132e2a7a5f461d93514 /drivers/usb | |
parent | 68144e0cc92125f41157ede7b060f83367bc4fe7 (diff) |
USB: otg: sharable otg transceiver ops
Move otg_get/set/put_transceiver() from omap specific code
to common otg.c so other upcoming drivers can share them.
[ dbrownell@users.sourceforge.net: move to drivers/usb/otg, dox ]
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Felipe Balbi <me@felipebalbi.com>
Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/otg/Makefile | 11 | ||||
-rw-r--r-- | drivers/usb/otg/otg.c | 65 |
2 files changed, 71 insertions, 5 deletions
diff --git a/drivers/usb/otg/Makefile b/drivers/usb/otg/Makefile index 6c58b36ca7cf..7c80fc379e6a 100644 --- a/drivers/usb/otg/Makefile +++ b/drivers/usb/otg/Makefile | |||
@@ -2,12 +2,13 @@ | |||
2 | # OTG infrastructure and transceiver drivers | 2 | # OTG infrastructure and transceiver drivers |
3 | # | 3 | # |
4 | 4 | ||
5 | # infrastructure | ||
6 | obj-$(CONFIG_USB_OTG_UTILS) += otg.o | ||
7 | |||
8 | # transceiver drivers | ||
5 | obj-$(CONFIG_USB_GPIO_VBUS) += gpio_vbus.o | 9 | obj-$(CONFIG_USB_GPIO_VBUS) += gpio_vbus.o |
6 | obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o | 10 | obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o |
7 | 11 | ||
8 | ifeq ($(CONFIG_USB_DEBUG),y) | 12 | ccflags-$(CONFIG_USB_DEBUG) += -DDEBUG |
9 | EXTRA_CFLAGS += -DDEBUG | 13 | ccflags-$(CONFIG_USB_GADGET_DEBUG) += -DDEBUG |
10 | else ifeq ($(CONFIG_USB_GADGET_DEBUG),y) | ||
11 | EXTRA_CFLAGS += -DDEBUG | ||
12 | endif | ||
13 | 14 | ||
diff --git a/drivers/usb/otg/otg.c b/drivers/usb/otg/otg.c new file mode 100644 index 000000000000..ff318fae7d4d --- /dev/null +++ b/drivers/usb/otg/otg.c | |||
@@ -0,0 +1,65 @@ | |||
1 | /* | ||
2 | * otg.c -- USB OTG utility code | ||
3 | * | ||
4 | * Copyright (C) 2004 Texas Instruments | ||
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 as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/device.h> | ||
14 | |||
15 | #include <linux/usb/otg.h> | ||
16 | |||
17 | static struct otg_transceiver *xceiv; | ||
18 | |||
19 | /** | ||
20 | * otg_get_transceiver - find the (single) OTG transceiver | ||
21 | * | ||
22 | * Returns the transceiver driver, after getting a refcount to it; or | ||
23 | * null if there is no such transceiver. The caller is responsible for | ||
24 | * calling otg_put_transceiver() to release that count. | ||
25 | * | ||
26 | * For use by USB host and peripheral drivers. | ||
27 | */ | ||
28 | struct otg_transceiver *otg_get_transceiver(void) | ||
29 | { | ||
30 | if (xceiv) | ||
31 | get_device(xceiv->dev); | ||
32 | return xceiv; | ||
33 | } | ||
34 | EXPORT_SYMBOL(otg_get_transceiver); | ||
35 | |||
36 | /** | ||
37 | * otg_put_transceiver - release the (single) OTG transceiver | ||
38 | * @x: the transceiver returned by otg_get_transceiver() | ||
39 | * | ||
40 | * Releases a refcount the caller received from otg_get_transceiver(). | ||
41 | * | ||
42 | * For use by USB host and peripheral drivers. | ||
43 | */ | ||
44 | void otg_put_transceiver(struct otg_transceiver *x) | ||
45 | { | ||
46 | put_device(x->dev); | ||
47 | } | ||
48 | EXPORT_SYMBOL(otg_put_transceiver); | ||
49 | |||
50 | /** | ||
51 | * otg_set_transceiver - declare the (single) OTG transceiver | ||
52 | * @x: the USB OTG transceiver to be used; or NULL | ||
53 | * | ||
54 | * This call is exclusively for use by transceiver drivers, which | ||
55 | * coordinate the activities of drivers for host and peripheral | ||
56 | * controllers, and in some cases for VBUS current regulation. | ||
57 | */ | ||
58 | int otg_set_transceiver(struct otg_transceiver *x) | ||
59 | { | ||
60 | if (xceiv && x) | ||
61 | return -EBUSY; | ||
62 | xceiv = x; | ||
63 | return 0; | ||
64 | } | ||
65 | EXPORT_SYMBOL(otg_set_transceiver); | ||