2 * phy.c -- USB phy handling
4 * Copyright (C) 2004-2013 Texas Instruments
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.
11 #include <linux/kernel.h>
12 #include <linux/export.h>
13 #include <linux/err.h>
14 #include <linux/device.h>
15 #include <linux/module.h>
16 #include <linux/slab.h>
19 #include <linux/usb/phy.h>
21 static LIST_HEAD(phy_list
);
22 static LIST_HEAD(phy_bind_list
);
23 static DEFINE_SPINLOCK(phy_lock
);
27 struct notifier_block
*nb
;
30 static struct usb_phy
*__usb_find_phy(struct list_head
*list
,
31 enum usb_phy_type type
)
33 struct usb_phy
*phy
= NULL
;
35 list_for_each_entry(phy
, list
, head
) {
36 if (phy
->type
!= type
)
42 return ERR_PTR(-ENODEV
);
45 static struct usb_phy
*__usb_find_phy_dev(struct device
*dev
,
46 struct list_head
*list
, u8 index
)
48 struct usb_phy_bind
*phy_bind
= NULL
;
50 list_for_each_entry(phy_bind
, list
, list
) {
51 if (!(strcmp(phy_bind
->dev_name
, dev_name(dev
))) &&
52 phy_bind
->index
== index
) {
56 return ERR_PTR(-EPROBE_DEFER
);
60 return ERR_PTR(-ENODEV
);
63 static struct usb_phy
*__of_usb_find_phy(struct device_node
*node
)
67 if (!of_device_is_available(node
))
68 return ERR_PTR(-ENODEV
);
70 list_for_each_entry(phy
, &phy_list
, head
) {
71 if (node
!= phy
->dev
->of_node
)
77 return ERR_PTR(-EPROBE_DEFER
);
80 static void devm_usb_phy_release(struct device
*dev
, void *res
)
82 struct usb_phy
*phy
= *(struct usb_phy
**)res
;
87 static void devm_usb_phy_release2(struct device
*dev
, void *_res
)
89 struct phy_devm
*res
= _res
;
92 usb_unregister_notifier(res
->phy
, res
->nb
);
93 usb_put_phy(res
->phy
);
96 static int devm_usb_phy_match(struct device
*dev
, void *res
, void *match_data
)
98 struct usb_phy
**phy
= res
;
100 return *phy
== match_data
;
104 * devm_usb_get_phy - find the USB PHY
105 * @dev - device that requests this phy
106 * @type - the type of the phy the controller requires
108 * Gets the phy using usb_get_phy(), and associates a device with it using
109 * devres. On driver detach, release function is invoked on the devres data,
110 * then, devres data is freed.
112 * For use by USB host and peripheral drivers.
114 struct usb_phy
*devm_usb_get_phy(struct device
*dev
, enum usb_phy_type type
)
116 struct usb_phy
**ptr
, *phy
;
118 ptr
= devres_alloc(devm_usb_phy_release
, sizeof(*ptr
), GFP_KERNEL
);
120 return ERR_PTR(-ENOMEM
);
122 phy
= usb_get_phy(type
);
125 devres_add(dev
, ptr
);
131 EXPORT_SYMBOL_GPL(devm_usb_get_phy
);
134 * usb_get_phy - find the USB PHY
135 * @type - the type of the phy the controller requires
137 * Returns the phy driver, after getting a refcount to it; or
138 * -ENODEV if there is no such phy. The caller is responsible for
139 * calling usb_put_phy() to release that count.
141 * For use by USB host and peripheral drivers.
143 struct usb_phy
*usb_get_phy(enum usb_phy_type type
)
145 struct usb_phy
*phy
= NULL
;
148 spin_lock_irqsave(&phy_lock
, flags
);
150 phy
= __usb_find_phy(&phy_list
, type
);
151 if (IS_ERR(phy
) || !try_module_get(phy
->dev
->driver
->owner
)) {
152 pr_debug("PHY: unable to find transceiver of type %s\n",
153 usb_phy_type_string(type
));
155 phy
= ERR_PTR(-ENODEV
);
160 get_device(phy
->dev
);
163 spin_unlock_irqrestore(&phy_lock
, flags
);
167 EXPORT_SYMBOL_GPL(usb_get_phy
);
170 * devm_usb_get_phy_by_node - find the USB PHY by device_node
171 * @dev - device that requests this phy
172 * @node - the device_node for the phy device.
173 * @nb - a notifier_block to register with the phy.
175 * Returns the phy driver associated with the given device_node,
176 * after getting a refcount to it, -ENODEV if there is no such phy or
177 * -EPROBE_DEFER if the device is not yet loaded. While at that, it
178 * also associates the device with
179 * the phy using devres. On driver detach, release function is invoked
180 * on the devres data, then, devres data is freed.
182 * For use by peripheral drivers for devices related to a phy,
185 struct usb_phy
*devm_usb_get_phy_by_node(struct device
*dev
,
186 struct device_node
*node
,
187 struct notifier_block
*nb
)
189 struct usb_phy
*phy
= ERR_PTR(-ENOMEM
);
190 struct phy_devm
*ptr
;
193 ptr
= devres_alloc(devm_usb_phy_release2
, sizeof(*ptr
), GFP_KERNEL
);
195 dev_dbg(dev
, "failed to allocate memory for devres\n");
199 spin_lock_irqsave(&phy_lock
, flags
);
201 phy
= __of_usb_find_phy(node
);
207 if (!try_module_get(phy
->dev
->driver
->owner
)) {
208 phy
= ERR_PTR(-ENODEV
);
213 usb_register_notifier(phy
, nb
);
216 devres_add(dev
, ptr
);
218 get_device(phy
->dev
);
221 spin_unlock_irqrestore(&phy_lock
, flags
);
227 EXPORT_SYMBOL_GPL(devm_usb_get_phy_by_node
);
230 * devm_usb_get_phy_by_phandle - find the USB PHY by phandle
231 * @dev - device that requests this phy
232 * @phandle - name of the property holding the phy phandle value
233 * @index - the index of the phy
235 * Returns the phy driver associated with the given phandle value,
236 * after getting a refcount to it, -ENODEV if there is no such phy or
237 * -EPROBE_DEFER if there is a phandle to the phy, but the device is
238 * not yet loaded. While at that, it also associates the device with
239 * the phy using devres. On driver detach, release function is invoked
240 * on the devres data, then, devres data is freed.
242 * For use by USB host and peripheral drivers.
244 struct usb_phy
*devm_usb_get_phy_by_phandle(struct device
*dev
,
245 const char *phandle
, u8 index
)
247 struct device_node
*node
;
251 dev_dbg(dev
, "device does not have a device node entry\n");
252 return ERR_PTR(-EINVAL
);
255 node
= of_parse_phandle(dev
->of_node
, phandle
, index
);
257 dev_dbg(dev
, "failed to get %s phandle in %s node\n", phandle
,
258 dev
->of_node
->full_name
);
259 return ERR_PTR(-ENODEV
);
261 phy
= devm_usb_get_phy_by_node(dev
, node
, NULL
);
265 EXPORT_SYMBOL_GPL(devm_usb_get_phy_by_phandle
);
268 * usb_get_phy_dev - find the USB PHY
269 * @dev - device that requests this phy
270 * @index - the index of the phy
272 * Returns the phy driver, after getting a refcount to it; or
273 * -ENODEV if there is no such phy. The caller is responsible for
274 * calling usb_put_phy() to release that count.
276 * For use by USB host and peripheral drivers.
278 struct usb_phy
*usb_get_phy_dev(struct device
*dev
, u8 index
)
280 struct usb_phy
*phy
= NULL
;
283 spin_lock_irqsave(&phy_lock
, flags
);
285 phy
= __usb_find_phy_dev(dev
, &phy_bind_list
, index
);
286 if (IS_ERR(phy
) || !try_module_get(phy
->dev
->driver
->owner
)) {
287 dev_dbg(dev
, "unable to find transceiver\n");
289 phy
= ERR_PTR(-ENODEV
);
294 get_device(phy
->dev
);
297 spin_unlock_irqrestore(&phy_lock
, flags
);
301 EXPORT_SYMBOL_GPL(usb_get_phy_dev
);
304 * devm_usb_get_phy_dev - find the USB PHY using device ptr and index
305 * @dev - device that requests this phy
306 * @index - the index of the phy
308 * Gets the phy using usb_get_phy_dev(), and associates a device with it using
309 * devres. On driver detach, release function is invoked on the devres data,
310 * then, devres data is freed.
312 * For use by USB host and peripheral drivers.
314 struct usb_phy
*devm_usb_get_phy_dev(struct device
*dev
, u8 index
)
316 struct usb_phy
**ptr
, *phy
;
318 ptr
= devres_alloc(devm_usb_phy_release
, sizeof(*ptr
), GFP_KERNEL
);
322 phy
= usb_get_phy_dev(dev
, index
);
325 devres_add(dev
, ptr
);
331 EXPORT_SYMBOL_GPL(devm_usb_get_phy_dev
);
334 * devm_usb_put_phy - release the USB PHY
335 * @dev - device that wants to release this phy
336 * @phy - the phy returned by devm_usb_get_phy()
338 * destroys the devres associated with this phy and invokes usb_put_phy
339 * to release the phy.
341 * For use by USB host and peripheral drivers.
343 void devm_usb_put_phy(struct device
*dev
, struct usb_phy
*phy
)
347 r
= devres_destroy(dev
, devm_usb_phy_release
, devm_usb_phy_match
, phy
);
348 dev_WARN_ONCE(dev
, r
, "couldn't find PHY resource\n");
350 EXPORT_SYMBOL_GPL(devm_usb_put_phy
);
353 * usb_put_phy - release the USB PHY
354 * @x: the phy returned by usb_get_phy()
356 * Releases a refcount the caller received from usb_get_phy().
358 * For use by USB host and peripheral drivers.
360 void usb_put_phy(struct usb_phy
*x
)
363 struct module
*owner
= x
->dev
->driver
->owner
;
369 EXPORT_SYMBOL_GPL(usb_put_phy
);
372 * usb_add_phy - declare the USB PHY
373 * @x: the USB phy to be used; or NULL
374 * @type - the type of this PHY
376 * This call is exclusively for use by phy drivers, which
377 * coordinate the activities of drivers for host and peripheral
378 * controllers, and in some cases for VBUS current regulation.
380 int usb_add_phy(struct usb_phy
*x
, enum usb_phy_type type
)
386 if (x
->type
!= USB_PHY_TYPE_UNDEFINED
) {
387 dev_err(x
->dev
, "not accepting initialized PHY %s\n", x
->label
);
391 ATOMIC_INIT_NOTIFIER_HEAD(&x
->notifier
);
393 spin_lock_irqsave(&phy_lock
, flags
);
395 list_for_each_entry(phy
, &phy_list
, head
) {
396 if (phy
->type
== type
) {
398 dev_err(x
->dev
, "transceiver type %s already exists\n",
399 usb_phy_type_string(type
));
405 list_add_tail(&x
->head
, &phy_list
);
408 spin_unlock_irqrestore(&phy_lock
, flags
);
411 EXPORT_SYMBOL_GPL(usb_add_phy
);
414 * usb_add_phy_dev - declare the USB PHY
415 * @x: the USB phy to be used; or NULL
417 * This call is exclusively for use by phy drivers, which
418 * coordinate the activities of drivers for host and peripheral
419 * controllers, and in some cases for VBUS current regulation.
421 int usb_add_phy_dev(struct usb_phy
*x
)
423 struct usb_phy_bind
*phy_bind
;
427 dev_err(x
->dev
, "no device provided for PHY\n");
431 ATOMIC_INIT_NOTIFIER_HEAD(&x
->notifier
);
433 spin_lock_irqsave(&phy_lock
, flags
);
434 list_for_each_entry(phy_bind
, &phy_bind_list
, list
)
435 if (!(strcmp(phy_bind
->phy_dev_name
, dev_name(x
->dev
))))
438 list_add_tail(&x
->head
, &phy_list
);
440 spin_unlock_irqrestore(&phy_lock
, flags
);
443 EXPORT_SYMBOL_GPL(usb_add_phy_dev
);
446 * usb_remove_phy - remove the OTG PHY
447 * @x: the USB OTG PHY to be removed;
449 * This reverts the effects of usb_add_phy
451 void usb_remove_phy(struct usb_phy
*x
)
454 struct usb_phy_bind
*phy_bind
;
456 spin_lock_irqsave(&phy_lock
, flags
);
458 list_for_each_entry(phy_bind
, &phy_bind_list
, list
)
459 if (phy_bind
->phy
== x
)
460 phy_bind
->phy
= NULL
;
463 spin_unlock_irqrestore(&phy_lock
, flags
);
465 EXPORT_SYMBOL_GPL(usb_remove_phy
);
468 * usb_bind_phy - bind the phy and the controller that uses the phy
469 * @dev_name: the device name of the device that will bind to the phy
470 * @index: index to specify the port number
471 * @phy_dev_name: the device name of the phy
473 * Fills the phy_bind structure with the dev_name and phy_dev_name. This will
474 * be used when the phy driver registers the phy and when the controller
477 * To be used by platform specific initialization code.
479 int usb_bind_phy(const char *dev_name
, u8 index
,
480 const char *phy_dev_name
)
482 struct usb_phy_bind
*phy_bind
;
485 phy_bind
= kzalloc(sizeof(*phy_bind
), GFP_KERNEL
);
489 phy_bind
->dev_name
= dev_name
;
490 phy_bind
->phy_dev_name
= phy_dev_name
;
491 phy_bind
->index
= index
;
493 spin_lock_irqsave(&phy_lock
, flags
);
494 list_add_tail(&phy_bind
->list
, &phy_bind_list
);
495 spin_unlock_irqrestore(&phy_lock
, flags
);
499 EXPORT_SYMBOL_GPL(usb_bind_phy
);
502 * usb_phy_set_event - set event to phy event
503 * @x: the phy returned by usb_get_phy();
505 * This sets event to phy event
507 void usb_phy_set_event(struct usb_phy
*x
, unsigned long event
)
509 x
->last_event
= event
;
511 EXPORT_SYMBOL_GPL(usb_phy_set_event
);