blob: a30c04115115046e9c1c43e4e1bbced59b73e441 [file] [log] [blame]
Tony Lindgren3cb22d62008-11-24 12:02:21 -08001/*
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>
Paul Gortmakerf940fcd2011-05-27 09:56:31 -040013#include <linux/export.h>
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +053014#include <linux/err.h>
Tony Lindgren3cb22d62008-11-24 12:02:21 -080015#include <linux/device.h>
Kishon Vijay Abraham I410219d2012-06-22 17:02:47 +053016#include <linux/slab.h>
Tony Lindgren3cb22d62008-11-24 12:02:21 -080017
18#include <linux/usb/otg.h>
19
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +053020static LIST_HEAD(phy_list);
21static DEFINE_SPINLOCK(phy_lock);
22
23static struct usb_phy *__usb_find_phy(struct list_head *list,
24 enum usb_phy_type type)
25{
26 struct usb_phy *phy = NULL;
27
28 list_for_each_entry(phy, list, head) {
29 if (phy->type != type)
30 continue;
31
32 return phy;
33 }
34
35 return ERR_PTR(-ENODEV);
36}
Tony Lindgren3cb22d62008-11-24 12:02:21 -080037
Kishon Vijay Abraham I410219d2012-06-22 17:02:47 +053038static void devm_usb_phy_release(struct device *dev, void *res)
39{
40 struct usb_phy *phy = *(struct usb_phy **)res;
41
42 usb_put_phy(phy);
43}
44
45static int devm_usb_phy_match(struct device *dev, void *res, void *match_data)
46{
47 return res == match_data;
48}
49
50/**
51 * devm_usb_get_phy - find the USB PHY
52 * @dev - device that requests this phy
53 * @type - the type of the phy the controller requires
54 *
55 * Gets the phy using usb_get_phy(), and associates a device with it using
56 * devres. On driver detach, release function is invoked on the devres data,
57 * then, devres data is freed.
58 *
59 * For use by USB host and peripheral drivers.
60 */
61struct usb_phy *devm_usb_get_phy(struct device *dev, enum usb_phy_type type)
62{
63 struct usb_phy **ptr, *phy;
64
65 ptr = devres_alloc(devm_usb_phy_release, sizeof(*ptr), GFP_KERNEL);
66 if (!ptr)
67 return NULL;
68
69 phy = usb_get_phy(type);
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053070 if (!IS_ERR(phy)) {
Kishon Vijay Abraham I410219d2012-06-22 17:02:47 +053071 *ptr = phy;
72 devres_add(dev, ptr);
73 } else
74 devres_free(ptr);
75
76 return phy;
77}
78EXPORT_SYMBOL(devm_usb_get_phy);
79
Tony Lindgren3cb22d62008-11-24 12:02:21 -080080/**
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +053081 * usb_get_phy - find the USB PHY
82 * @type - the type of the phy the controller requires
Tony Lindgren3cb22d62008-11-24 12:02:21 -080083 *
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +053084 * Returns the phy driver, after getting a refcount to it; or
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053085 * -ENODEV if there is no such phy. The caller is responsible for
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +053086 * calling usb_put_phy() to release that count.
Tony Lindgren3cb22d62008-11-24 12:02:21 -080087 *
88 * For use by USB host and peripheral drivers.
89 */
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +053090struct usb_phy *usb_get_phy(enum usb_phy_type type)
Tony Lindgren3cb22d62008-11-24 12:02:21 -080091{
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +053092 struct usb_phy *phy = NULL;
93 unsigned long flags;
94
95 spin_lock_irqsave(&phy_lock, flags);
96
97 phy = __usb_find_phy(&phy_list, type);
98 if (IS_ERR(phy)) {
99 pr_err("unable to find transceiver of type %s\n",
100 usb_phy_type_string(type));
Kishon Vijay Abraham If8ecf822012-07-02 12:20:24 +0530101 goto err0;
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530102 }
103
104 get_device(phy->dev);
105
Kishon Vijay Abraham If8ecf822012-07-02 12:20:24 +0530106err0:
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530107 spin_unlock_irqrestore(&phy_lock, flags);
108
Heikki Krogerus7a8a3a92012-02-13 13:24:04 +0200109 return phy;
Tony Lindgren3cb22d62008-11-24 12:02:21 -0800110}
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530111EXPORT_SYMBOL(usb_get_phy);
Tony Lindgren3cb22d62008-11-24 12:02:21 -0800112
113/**
Kishon Vijay Abraham I410219d2012-06-22 17:02:47 +0530114 * devm_usb_put_phy - release the USB PHY
115 * @dev - device that wants to release this phy
116 * @phy - the phy returned by devm_usb_get_phy()
117 *
118 * destroys the devres associated with this phy and invokes usb_put_phy
119 * to release the phy.
120 *
121 * For use by USB host and peripheral drivers.
122 */
123void devm_usb_put_phy(struct device *dev, struct usb_phy *phy)
124{
125 int r;
126
127 r = devres_destroy(dev, devm_usb_phy_release, devm_usb_phy_match, phy);
128 dev_WARN_ONCE(dev, r, "couldn't find PHY resource\n");
129}
130EXPORT_SYMBOL(devm_usb_put_phy);
131
132/**
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530133 * usb_put_phy - release the USB PHY
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530134 * @x: the phy returned by usb_get_phy()
Tony Lindgren3cb22d62008-11-24 12:02:21 -0800135 *
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530136 * Releases a refcount the caller received from usb_get_phy().
Tony Lindgren3cb22d62008-11-24 12:02:21 -0800137 *
138 * For use by USB host and peripheral drivers.
139 */
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530140void usb_put_phy(struct usb_phy *x)
Tony Lindgren3cb22d62008-11-24 12:02:21 -0800141{
Robert Jarzmikecf85e42009-04-21 20:33:10 -0700142 if (x)
143 put_device(x->dev);
Tony Lindgren3cb22d62008-11-24 12:02:21 -0800144}
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530145EXPORT_SYMBOL(usb_put_phy);
Tony Lindgren3cb22d62008-11-24 12:02:21 -0800146
147/**
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530148 * usb_add_phy - declare the USB PHY
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530149 * @x: the USB phy to be used; or NULL
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530150 * @type - the type of this PHY
Tony Lindgren3cb22d62008-11-24 12:02:21 -0800151 *
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530152 * This call is exclusively for use by phy drivers, which
Tony Lindgren3cb22d62008-11-24 12:02:21 -0800153 * coordinate the activities of drivers for host and peripheral
154 * controllers, and in some cases for VBUS current regulation.
155 */
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530156int usb_add_phy(struct usb_phy *x, enum usb_phy_type type)
Tony Lindgren3cb22d62008-11-24 12:02:21 -0800157{
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530158 int ret = 0;
159 unsigned long flags;
160 struct usb_phy *phy;
161
Shubhrajyoti Ddf6791d72012-08-07 19:56:30 +0530162 if (x->type != USB_PHY_TYPE_UNDEFINED) {
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530163 dev_err(x->dev, "not accepting initialized PHY %s\n", x->label);
164 return -EINVAL;
165 }
166
167 spin_lock_irqsave(&phy_lock, flags);
168
169 list_for_each_entry(phy, &phy_list, head) {
170 if (phy->type == type) {
171 ret = -EBUSY;
172 dev_err(x->dev, "transceiver type %s already exists\n",
173 usb_phy_type_string(type));
174 goto out;
175 }
176 }
177
178 x->type = type;
179 list_add_tail(&x->head, &phy_list);
180
181out:
182 spin_unlock_irqrestore(&phy_lock, flags);
183 return ret;
Tony Lindgren3cb22d62008-11-24 12:02:21 -0800184}
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530185EXPORT_SYMBOL(usb_add_phy);
Anatolij Gustschin3dacdf12011-04-15 16:18:38 +0200186
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530187/**
188 * usb_remove_phy - remove the OTG PHY
189 * @x: the USB OTG PHY to be removed;
190 *
191 * This reverts the effects of usb_add_phy
192 */
193void usb_remove_phy(struct usb_phy *x)
194{
195 unsigned long flags;
196
197 spin_lock_irqsave(&phy_lock, flags);
198 if (x)
199 list_del(&x->head);
200 spin_unlock_irqrestore(&phy_lock, flags);
201}
202EXPORT_SYMBOL(usb_remove_phy);
203
Anatolij Gustschin3dacdf12011-04-15 16:18:38 +0200204const char *otg_state_string(enum usb_otg_state state)
205{
206 switch (state) {
207 case OTG_STATE_A_IDLE:
208 return "a_idle";
209 case OTG_STATE_A_WAIT_VRISE:
210 return "a_wait_vrise";
211 case OTG_STATE_A_WAIT_BCON:
212 return "a_wait_bcon";
213 case OTG_STATE_A_HOST:
214 return "a_host";
215 case OTG_STATE_A_SUSPEND:
216 return "a_suspend";
217 case OTG_STATE_A_PERIPHERAL:
218 return "a_peripheral";
219 case OTG_STATE_A_WAIT_VFALL:
220 return "a_wait_vfall";
221 case OTG_STATE_A_VBUS_ERR:
222 return "a_vbus_err";
223 case OTG_STATE_B_IDLE:
224 return "b_idle";
225 case OTG_STATE_B_SRP_INIT:
226 return "b_srp_init";
227 case OTG_STATE_B_PERIPHERAL:
228 return "b_peripheral";
229 case OTG_STATE_B_WAIT_ACON:
230 return "b_wait_acon";
231 case OTG_STATE_B_HOST:
232 return "b_host";
233 default:
234 return "UNDEFINED";
235 }
236}
237EXPORT_SYMBOL(otg_state_string);