1 // SPDX-License-Identifier: GPL-2.0+
3 * phy.c -- USB phy handling
5 * Copyright (C) 2004-2013 Texas Instruments
7 #include <linux/kernel.h>
8 #include <linux/export.h>
10 #include <linux/device.h>
11 #include <linux/module.h>
12 #include <linux/slab.h>
15 #include <linux/usb/phy.h>
17 /* Default current range by charger type. */
18 #define DEFAULT_SDP_CUR_MIN 2
19 #define DEFAULT_SDP_CUR_MAX 500
20 #define DEFAULT_SDP_CUR_MIN_SS 150
21 #define DEFAULT_SDP_CUR_MAX_SS 900
22 #define DEFAULT_DCP_CUR_MIN 500
23 #define DEFAULT_DCP_CUR_MAX 5000
24 #define DEFAULT_CDP_CUR_MIN 1500
25 #define DEFAULT_CDP_CUR_MAX 5000
26 #define DEFAULT_ACA_CUR_MIN 1500
27 #define DEFAULT_ACA_CUR_MAX 5000
29 static LIST_HEAD(phy_list
);
30 static LIST_HEAD(phy_bind_list
);
31 static DEFINE_SPINLOCK(phy_lock
);
35 struct notifier_block
*nb
;
38 static struct usb_phy
*__usb_find_phy(struct list_head
*list
,
39 enum usb_phy_type type
)
41 struct usb_phy
*phy
= NULL
;
43 list_for_each_entry(phy
, list
, head
) {
44 if (phy
->type
!= type
)
50 return ERR_PTR(-ENODEV
);
53 static struct usb_phy
*__usb_find_phy_dev(struct device
*dev
,
54 struct list_head
*list
, u8 index
)
56 struct usb_phy_bind
*phy_bind
= NULL
;
58 list_for_each_entry(phy_bind
, list
, list
) {
59 if (!(strcmp(phy_bind
->dev_name
, dev_name(dev
))) &&
60 phy_bind
->index
== index
) {
64 return ERR_PTR(-EPROBE_DEFER
);
68 return ERR_PTR(-ENODEV
);
71 static struct usb_phy
*__of_usb_find_phy(struct device_node
*node
)
75 if (!of_device_is_available(node
))
76 return ERR_PTR(-ENODEV
);
78 list_for_each_entry(phy
, &phy_list
, head
) {
79 if (node
!= phy
->dev
->of_node
)
85 return ERR_PTR(-EPROBE_DEFER
);
88 static void usb_phy_set_default_current(struct usb_phy
*usb_phy
)
90 usb_phy
->chg_cur
.sdp_min
= DEFAULT_SDP_CUR_MIN
;
91 usb_phy
->chg_cur
.sdp_max
= DEFAULT_SDP_CUR_MAX
;
92 usb_phy
->chg_cur
.dcp_min
= DEFAULT_DCP_CUR_MIN
;
93 usb_phy
->chg_cur
.dcp_max
= DEFAULT_DCP_CUR_MAX
;
94 usb_phy
->chg_cur
.cdp_min
= DEFAULT_CDP_CUR_MIN
;
95 usb_phy
->chg_cur
.cdp_max
= DEFAULT_CDP_CUR_MAX
;
96 usb_phy
->chg_cur
.aca_min
= DEFAULT_ACA_CUR_MIN
;
97 usb_phy
->chg_cur
.aca_max
= DEFAULT_ACA_CUR_MAX
;
101 * usb_phy_notify_charger_work - notify the USB charger state
102 * @work - the charger work to notify the USB charger state
104 * This work can be issued when USB charger state has been changed or
105 * USB charger current has been changed, then we can notify the current
106 * what can be drawn to power user and the charger state to userspace.
108 * If we get the charger type from extcon subsystem, we can notify the
109 * charger state to power user automatically by usb_phy_get_charger_type()
110 * issuing from extcon subsystem.
112 * If we get the charger type from ->charger_detect() instead of extcon
113 * subsystem, the usb phy driver should issue usb_phy_set_charger_state()
114 * to set charger state when the charger state has been changed.
116 static void usb_phy_notify_charger_work(struct work_struct
*work
)
118 struct usb_phy
*usb_phy
= container_of(work
, struct usb_phy
, chg_work
);
119 char uchger_state
[50] = { 0 };
120 char *envp
[] = { uchger_state
, NULL
};
121 unsigned int min
, max
;
123 switch (usb_phy
->chg_state
) {
124 case USB_CHARGER_PRESENT
:
125 usb_phy_get_charger_current(usb_phy
, &min
, &max
);
127 atomic_notifier_call_chain(&usb_phy
->notifier
, max
, usb_phy
);
128 snprintf(uchger_state
, ARRAY_SIZE(uchger_state
),
129 "USB_CHARGER_STATE=%s", "USB_CHARGER_PRESENT");
131 case USB_CHARGER_ABSENT
:
132 usb_phy_set_default_current(usb_phy
);
134 atomic_notifier_call_chain(&usb_phy
->notifier
, 0, usb_phy
);
135 snprintf(uchger_state
, ARRAY_SIZE(uchger_state
),
136 "USB_CHARGER_STATE=%s", "USB_CHARGER_ABSENT");
139 dev_warn(usb_phy
->dev
, "Unknown USB charger state: %d\n",
144 kobject_uevent_env(&usb_phy
->dev
->kobj
, KOBJ_CHANGE
, envp
);
147 static void __usb_phy_get_charger_type(struct usb_phy
*usb_phy
)
149 if (extcon_get_state(usb_phy
->edev
, EXTCON_CHG_USB_SDP
) > 0) {
150 usb_phy
->chg_type
= SDP_TYPE
;
151 usb_phy
->chg_state
= USB_CHARGER_PRESENT
;
152 } else if (extcon_get_state(usb_phy
->edev
, EXTCON_CHG_USB_CDP
) > 0) {
153 usb_phy
->chg_type
= CDP_TYPE
;
154 usb_phy
->chg_state
= USB_CHARGER_PRESENT
;
155 } else if (extcon_get_state(usb_phy
->edev
, EXTCON_CHG_USB_DCP
) > 0) {
156 usb_phy
->chg_type
= DCP_TYPE
;
157 usb_phy
->chg_state
= USB_CHARGER_PRESENT
;
158 } else if (extcon_get_state(usb_phy
->edev
, EXTCON_CHG_USB_ACA
) > 0) {
159 usb_phy
->chg_type
= ACA_TYPE
;
160 usb_phy
->chg_state
= USB_CHARGER_PRESENT
;
162 usb_phy
->chg_type
= UNKNOWN_TYPE
;
163 usb_phy
->chg_state
= USB_CHARGER_ABSENT
;
166 schedule_work(&usb_phy
->chg_work
);
170 * usb_phy_get_charger_type - get charger type from extcon subsystem
171 * @nb -the notifier block to determine charger type
172 * @state - the cable state
173 * @data - private data
175 * Determin the charger type from extcon subsystem which also means the
176 * charger state has been chaned, then we should notify this event.
178 static int usb_phy_get_charger_type(struct notifier_block
*nb
,
179 unsigned long state
, void *data
)
181 struct usb_phy
*usb_phy
= container_of(nb
, struct usb_phy
, type_nb
);
183 __usb_phy_get_charger_type(usb_phy
);
188 * usb_phy_set_charger_current - set the USB charger current
189 * @usb_phy - the USB phy to be used
190 * @mA - the current need to be set
192 * Usually we only change the charger default current when USB finished the
193 * enumeration as one SDP charger. As one SDP charger, usb_phy_set_power()
194 * will issue this function to change charger current when after setting USB
195 * configuration, or suspend/resume USB. For other type charger, we should
196 * use the default charger current and we do not suggest to issue this function
197 * to change the charger current.
199 * When USB charger current has been changed, we need to notify the power users.
201 void usb_phy_set_charger_current(struct usb_phy
*usb_phy
, unsigned int mA
)
203 switch (usb_phy
->chg_type
) {
205 if (usb_phy
->chg_cur
.sdp_max
== mA
)
208 usb_phy
->chg_cur
.sdp_max
= (mA
> DEFAULT_SDP_CUR_MAX_SS
) ?
209 DEFAULT_SDP_CUR_MAX_SS
: mA
;
212 if (usb_phy
->chg_cur
.dcp_max
== mA
)
215 usb_phy
->chg_cur
.dcp_max
= (mA
> DEFAULT_DCP_CUR_MAX
) ?
216 DEFAULT_DCP_CUR_MAX
: mA
;
219 if (usb_phy
->chg_cur
.cdp_max
== mA
)
222 usb_phy
->chg_cur
.cdp_max
= (mA
> DEFAULT_CDP_CUR_MAX
) ?
223 DEFAULT_CDP_CUR_MAX
: mA
;
226 if (usb_phy
->chg_cur
.aca_max
== mA
)
229 usb_phy
->chg_cur
.aca_max
= (mA
> DEFAULT_ACA_CUR_MAX
) ?
230 DEFAULT_ACA_CUR_MAX
: mA
;
236 schedule_work(&usb_phy
->chg_work
);
238 EXPORT_SYMBOL_GPL(usb_phy_set_charger_current
);
241 * usb_phy_get_charger_current - get the USB charger current
242 * @usb_phy - the USB phy to be used
243 * @min - the minimum current
244 * @max - the maximum current
246 * Usually we will notify the maximum current to power user, but for some
247 * special case, power user also need the minimum current value. Then the
248 * power user can issue this function to get the suitable current.
250 void usb_phy_get_charger_current(struct usb_phy
*usb_phy
,
251 unsigned int *min
, unsigned int *max
)
253 switch (usb_phy
->chg_type
) {
255 *min
= usb_phy
->chg_cur
.sdp_min
;
256 *max
= usb_phy
->chg_cur
.sdp_max
;
259 *min
= usb_phy
->chg_cur
.dcp_min
;
260 *max
= usb_phy
->chg_cur
.dcp_max
;
263 *min
= usb_phy
->chg_cur
.cdp_min
;
264 *max
= usb_phy
->chg_cur
.cdp_max
;
267 *min
= usb_phy
->chg_cur
.aca_min
;
268 *max
= usb_phy
->chg_cur
.aca_max
;
276 EXPORT_SYMBOL_GPL(usb_phy_get_charger_current
);
279 * usb_phy_set_charger_state - set the USB charger state
280 * @usb_phy - the USB phy to be used
281 * @state - the new state need to be set for charger
283 * The usb phy driver can issue this function when the usb phy driver
284 * detected the charger state has been changed, in this case the charger
285 * type should be get from ->charger_detect().
287 void usb_phy_set_charger_state(struct usb_phy
*usb_phy
,
288 enum usb_charger_state state
)
290 if (usb_phy
->chg_state
== state
|| !usb_phy
->charger_detect
)
293 usb_phy
->chg_state
= state
;
294 if (usb_phy
->chg_state
== USB_CHARGER_PRESENT
)
295 usb_phy
->chg_type
= usb_phy
->charger_detect(usb_phy
);
297 usb_phy
->chg_type
= UNKNOWN_TYPE
;
299 schedule_work(&usb_phy
->chg_work
);
301 EXPORT_SYMBOL_GPL(usb_phy_set_charger_state
);
303 static void devm_usb_phy_release(struct device
*dev
, void *res
)
305 struct usb_phy
*phy
= *(struct usb_phy
**)res
;
310 static void devm_usb_phy_release2(struct device
*dev
, void *_res
)
312 struct phy_devm
*res
= _res
;
315 usb_unregister_notifier(res
->phy
, res
->nb
);
316 usb_put_phy(res
->phy
);
319 static int devm_usb_phy_match(struct device
*dev
, void *res
, void *match_data
)
321 struct usb_phy
**phy
= res
;
323 return *phy
== match_data
;
326 static void usb_charger_init(struct usb_phy
*usb_phy
)
328 usb_phy
->chg_type
= UNKNOWN_TYPE
;
329 usb_phy
->chg_state
= USB_CHARGER_DEFAULT
;
330 usb_phy_set_default_current(usb_phy
);
331 INIT_WORK(&usb_phy
->chg_work
, usb_phy_notify_charger_work
);
334 static int usb_add_extcon(struct usb_phy
*x
)
338 if (of_property_read_bool(x
->dev
->of_node
, "extcon")) {
339 x
->edev
= extcon_get_edev_by_phandle(x
->dev
, 0);
341 return PTR_ERR(x
->edev
);
343 x
->id_edev
= extcon_get_edev_by_phandle(x
->dev
, 1);
344 if (IS_ERR(x
->id_edev
)) {
346 dev_info(x
->dev
, "No separate ID extcon device\n");
349 if (x
->vbus_nb
.notifier_call
) {
350 ret
= devm_extcon_register_notifier(x
->dev
, x
->edev
,
355 "register VBUS notifier failed\n");
359 x
->type_nb
.notifier_call
= usb_phy_get_charger_type
;
361 ret
= devm_extcon_register_notifier(x
->dev
, x
->edev
,
366 "register extcon USB SDP failed.\n");
370 ret
= devm_extcon_register_notifier(x
->dev
, x
->edev
,
375 "register extcon USB CDP failed.\n");
379 ret
= devm_extcon_register_notifier(x
->dev
, x
->edev
,
384 "register extcon USB DCP failed.\n");
388 ret
= devm_extcon_register_notifier(x
->dev
, x
->edev
,
393 "register extcon USB ACA failed.\n");
398 if (x
->id_nb
.notifier_call
) {
399 struct extcon_dev
*id_ext
;
406 ret
= devm_extcon_register_notifier(x
->dev
, id_ext
,
411 "register ID notifier failed\n");
417 if (x
->type_nb
.notifier_call
)
418 __usb_phy_get_charger_type(x
);
424 * devm_usb_get_phy - find the USB PHY
425 * @dev - device that requests this phy
426 * @type - the type of the phy the controller requires
428 * Gets the phy using usb_get_phy(), and associates a device with it using
429 * devres. On driver detach, release function is invoked on the devres data,
430 * then, devres data is freed.
432 * For use by USB host and peripheral drivers.
434 struct usb_phy
*devm_usb_get_phy(struct device
*dev
, enum usb_phy_type type
)
436 struct usb_phy
**ptr
, *phy
;
438 ptr
= devres_alloc(devm_usb_phy_release
, sizeof(*ptr
), GFP_KERNEL
);
440 return ERR_PTR(-ENOMEM
);
442 phy
= usb_get_phy(type
);
445 devres_add(dev
, ptr
);
451 EXPORT_SYMBOL_GPL(devm_usb_get_phy
);
454 * usb_get_phy - find the USB PHY
455 * @type - the type of the phy the controller requires
457 * Returns the phy driver, after getting a refcount to it; or
458 * -ENODEV if there is no such phy. The caller is responsible for
459 * calling usb_put_phy() to release that count.
461 * For use by USB host and peripheral drivers.
463 struct usb_phy
*usb_get_phy(enum usb_phy_type type
)
465 struct usb_phy
*phy
= NULL
;
468 spin_lock_irqsave(&phy_lock
, flags
);
470 phy
= __usb_find_phy(&phy_list
, type
);
471 if (IS_ERR(phy
) || !try_module_get(phy
->dev
->driver
->owner
)) {
472 pr_debug("PHY: unable to find transceiver of type %s\n",
473 usb_phy_type_string(type
));
475 phy
= ERR_PTR(-ENODEV
);
480 get_device(phy
->dev
);
483 spin_unlock_irqrestore(&phy_lock
, flags
);
487 EXPORT_SYMBOL_GPL(usb_get_phy
);
490 * devm_usb_get_phy_by_node - find the USB PHY by device_node
491 * @dev - device that requests this phy
492 * @node - the device_node for the phy device.
493 * @nb - a notifier_block to register with the phy.
495 * Returns the phy driver associated with the given device_node,
496 * after getting a refcount to it, -ENODEV if there is no such phy or
497 * -EPROBE_DEFER if the device is not yet loaded. While at that, it
498 * also associates the device with
499 * the phy using devres. On driver detach, release function is invoked
500 * on the devres data, then, devres data is freed.
502 * For use by peripheral drivers for devices related to a phy,
505 struct usb_phy
*devm_usb_get_phy_by_node(struct device
*dev
,
506 struct device_node
*node
,
507 struct notifier_block
*nb
)
509 struct usb_phy
*phy
= ERR_PTR(-ENOMEM
);
510 struct phy_devm
*ptr
;
513 ptr
= devres_alloc(devm_usb_phy_release2
, sizeof(*ptr
), GFP_KERNEL
);
515 dev_dbg(dev
, "failed to allocate memory for devres\n");
519 spin_lock_irqsave(&phy_lock
, flags
);
521 phy
= __of_usb_find_phy(node
);
527 if (!try_module_get(phy
->dev
->driver
->owner
)) {
528 phy
= ERR_PTR(-ENODEV
);
533 usb_register_notifier(phy
, nb
);
536 devres_add(dev
, ptr
);
538 get_device(phy
->dev
);
541 spin_unlock_irqrestore(&phy_lock
, flags
);
547 EXPORT_SYMBOL_GPL(devm_usb_get_phy_by_node
);
550 * devm_usb_get_phy_by_phandle - find the USB PHY by phandle
551 * @dev - device that requests this phy
552 * @phandle - name of the property holding the phy phandle value
553 * @index - the index of the phy
555 * Returns the phy driver associated with the given phandle value,
556 * after getting a refcount to it, -ENODEV if there is no such phy or
557 * -EPROBE_DEFER if there is a phandle to the phy, but the device is
558 * not yet loaded. While at that, it also associates the device with
559 * the phy using devres. On driver detach, release function is invoked
560 * on the devres data, then, devres data is freed.
562 * For use by USB host and peripheral drivers.
564 struct usb_phy
*devm_usb_get_phy_by_phandle(struct device
*dev
,
565 const char *phandle
, u8 index
)
567 struct device_node
*node
;
571 dev_dbg(dev
, "device does not have a device node entry\n");
572 return ERR_PTR(-EINVAL
);
575 node
= of_parse_phandle(dev
->of_node
, phandle
, index
);
577 dev_dbg(dev
, "failed to get %s phandle in %pOF node\n", phandle
,
579 return ERR_PTR(-ENODEV
);
581 phy
= devm_usb_get_phy_by_node(dev
, node
, NULL
);
585 EXPORT_SYMBOL_GPL(devm_usb_get_phy_by_phandle
);
588 * usb_get_phy_dev - find the USB PHY
589 * @dev - device that requests this phy
590 * @index - the index of the phy
592 * Returns the phy driver, after getting a refcount to it; or
593 * -ENODEV if there is no such phy. The caller is responsible for
594 * calling usb_put_phy() to release that count.
596 * For use by USB host and peripheral drivers.
598 struct usb_phy
*usb_get_phy_dev(struct device
*dev
, u8 index
)
600 struct usb_phy
*phy
= NULL
;
603 spin_lock_irqsave(&phy_lock
, flags
);
605 phy
= __usb_find_phy_dev(dev
, &phy_bind_list
, index
);
606 if (IS_ERR(phy
) || !try_module_get(phy
->dev
->driver
->owner
)) {
607 dev_dbg(dev
, "unable to find transceiver\n");
609 phy
= ERR_PTR(-ENODEV
);
614 get_device(phy
->dev
);
617 spin_unlock_irqrestore(&phy_lock
, flags
);
621 EXPORT_SYMBOL_GPL(usb_get_phy_dev
);
624 * devm_usb_get_phy_dev - find the USB PHY using device ptr and index
625 * @dev - device that requests this phy
626 * @index - the index of the phy
628 * Gets the phy using usb_get_phy_dev(), and associates a device with it using
629 * devres. On driver detach, release function is invoked on the devres data,
630 * then, devres data is freed.
632 * For use by USB host and peripheral drivers.
634 struct usb_phy
*devm_usb_get_phy_dev(struct device
*dev
, u8 index
)
636 struct usb_phy
**ptr
, *phy
;
638 ptr
= devres_alloc(devm_usb_phy_release
, sizeof(*ptr
), GFP_KERNEL
);
642 phy
= usb_get_phy_dev(dev
, index
);
645 devres_add(dev
, ptr
);
651 EXPORT_SYMBOL_GPL(devm_usb_get_phy_dev
);
654 * devm_usb_put_phy - release the USB PHY
655 * @dev - device that wants to release this phy
656 * @phy - the phy returned by devm_usb_get_phy()
658 * destroys the devres associated with this phy and invokes usb_put_phy
659 * to release the phy.
661 * For use by USB host and peripheral drivers.
663 void devm_usb_put_phy(struct device
*dev
, struct usb_phy
*phy
)
667 r
= devres_destroy(dev
, devm_usb_phy_release
, devm_usb_phy_match
, phy
);
668 dev_WARN_ONCE(dev
, r
, "couldn't find PHY resource\n");
670 EXPORT_SYMBOL_GPL(devm_usb_put_phy
);
673 * usb_put_phy - release the USB PHY
674 * @x: the phy returned by usb_get_phy()
676 * Releases a refcount the caller received from usb_get_phy().
678 * For use by USB host and peripheral drivers.
680 void usb_put_phy(struct usb_phy
*x
)
683 struct module
*owner
= x
->dev
->driver
->owner
;
689 EXPORT_SYMBOL_GPL(usb_put_phy
);
692 * usb_add_phy - declare the USB PHY
693 * @x: the USB phy to be used; or NULL
694 * @type - the type of this PHY
696 * This call is exclusively for use by phy drivers, which
697 * coordinate the activities of drivers for host and peripheral
698 * controllers, and in some cases for VBUS current regulation.
700 int usb_add_phy(struct usb_phy
*x
, enum usb_phy_type type
)
706 if (x
->type
!= USB_PHY_TYPE_UNDEFINED
) {
707 dev_err(x
->dev
, "not accepting initialized PHY %s\n", x
->label
);
712 ret
= usb_add_extcon(x
);
716 ATOMIC_INIT_NOTIFIER_HEAD(&x
->notifier
);
718 spin_lock_irqsave(&phy_lock
, flags
);
720 list_for_each_entry(phy
, &phy_list
, head
) {
721 if (phy
->type
== type
) {
723 dev_err(x
->dev
, "transceiver type %s already exists\n",
724 usb_phy_type_string(type
));
730 list_add_tail(&x
->head
, &phy_list
);
733 spin_unlock_irqrestore(&phy_lock
, flags
);
736 EXPORT_SYMBOL_GPL(usb_add_phy
);
739 * usb_add_phy_dev - declare the USB PHY
740 * @x: the USB phy to be used; or NULL
742 * This call is exclusively for use by phy drivers, which
743 * coordinate the activities of drivers for host and peripheral
744 * controllers, and in some cases for VBUS current regulation.
746 int usb_add_phy_dev(struct usb_phy
*x
)
748 struct usb_phy_bind
*phy_bind
;
753 dev_err(x
->dev
, "no device provided for PHY\n");
758 ret
= usb_add_extcon(x
);
762 ATOMIC_INIT_NOTIFIER_HEAD(&x
->notifier
);
764 spin_lock_irqsave(&phy_lock
, flags
);
765 list_for_each_entry(phy_bind
, &phy_bind_list
, list
)
766 if (!(strcmp(phy_bind
->phy_dev_name
, dev_name(x
->dev
))))
769 list_add_tail(&x
->head
, &phy_list
);
771 spin_unlock_irqrestore(&phy_lock
, flags
);
774 EXPORT_SYMBOL_GPL(usb_add_phy_dev
);
777 * usb_remove_phy - remove the OTG PHY
778 * @x: the USB OTG PHY to be removed;
780 * This reverts the effects of usb_add_phy
782 void usb_remove_phy(struct usb_phy
*x
)
785 struct usb_phy_bind
*phy_bind
;
787 spin_lock_irqsave(&phy_lock
, flags
);
789 list_for_each_entry(phy_bind
, &phy_bind_list
, list
)
790 if (phy_bind
->phy
== x
)
791 phy_bind
->phy
= NULL
;
794 spin_unlock_irqrestore(&phy_lock
, flags
);
796 EXPORT_SYMBOL_GPL(usb_remove_phy
);
799 * usb_bind_phy - bind the phy and the controller that uses the phy
800 * @dev_name: the device name of the device that will bind to the phy
801 * @index: index to specify the port number
802 * @phy_dev_name: the device name of the phy
804 * Fills the phy_bind structure with the dev_name and phy_dev_name. This will
805 * be used when the phy driver registers the phy and when the controller
808 * To be used by platform specific initialization code.
810 int usb_bind_phy(const char *dev_name
, u8 index
,
811 const char *phy_dev_name
)
813 struct usb_phy_bind
*phy_bind
;
816 phy_bind
= kzalloc(sizeof(*phy_bind
), GFP_KERNEL
);
820 phy_bind
->dev_name
= dev_name
;
821 phy_bind
->phy_dev_name
= phy_dev_name
;
822 phy_bind
->index
= index
;
824 spin_lock_irqsave(&phy_lock
, flags
);
825 list_add_tail(&phy_bind
->list
, &phy_bind_list
);
826 spin_unlock_irqrestore(&phy_lock
, flags
);
830 EXPORT_SYMBOL_GPL(usb_bind_phy
);
833 * usb_phy_set_event - set event to phy event
834 * @x: the phy returned by usb_get_phy();
836 * This sets event to phy event
838 void usb_phy_set_event(struct usb_phy
*x
, unsigned long event
)
840 x
->last_event
= event
;
842 EXPORT_SYMBOL_GPL(usb_phy_set_event
);