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 DEFINE_SPINLOCK(phy_lock
);
34 struct notifier_block
*nb
;
37 static const char *const usb_chger_type
[] = {
38 [UNKNOWN_TYPE
] = "USB_CHARGER_UNKNOWN_TYPE",
39 [SDP_TYPE
] = "USB_CHARGER_SDP_TYPE",
40 [CDP_TYPE
] = "USB_CHARGER_CDP_TYPE",
41 [DCP_TYPE
] = "USB_CHARGER_DCP_TYPE",
42 [ACA_TYPE
] = "USB_CHARGER_ACA_TYPE",
45 static struct usb_phy
*__usb_find_phy(struct list_head
*list
,
46 enum usb_phy_type type
)
48 struct usb_phy
*phy
= NULL
;
50 list_for_each_entry(phy
, list
, head
) {
51 if (phy
->type
!= type
)
57 return ERR_PTR(-ENODEV
);
60 static struct usb_phy
*__of_usb_find_phy(struct device_node
*node
)
64 if (!of_device_is_available(node
))
65 return ERR_PTR(-ENODEV
);
67 list_for_each_entry(phy
, &phy_list
, head
) {
68 if (node
!= phy
->dev
->of_node
)
74 return ERR_PTR(-EPROBE_DEFER
);
77 static void usb_phy_set_default_current(struct usb_phy
*usb_phy
)
79 usb_phy
->chg_cur
.sdp_min
= DEFAULT_SDP_CUR_MIN
;
80 usb_phy
->chg_cur
.sdp_max
= DEFAULT_SDP_CUR_MAX
;
81 usb_phy
->chg_cur
.dcp_min
= DEFAULT_DCP_CUR_MIN
;
82 usb_phy
->chg_cur
.dcp_max
= DEFAULT_DCP_CUR_MAX
;
83 usb_phy
->chg_cur
.cdp_min
= DEFAULT_CDP_CUR_MIN
;
84 usb_phy
->chg_cur
.cdp_max
= DEFAULT_CDP_CUR_MAX
;
85 usb_phy
->chg_cur
.aca_min
= DEFAULT_ACA_CUR_MIN
;
86 usb_phy
->chg_cur
.aca_max
= DEFAULT_ACA_CUR_MAX
;
90 * usb_phy_notify_charger_work - notify the USB charger state
91 * @work: the charger work to notify the USB charger state
93 * This work can be issued when USB charger state has been changed or
94 * USB charger current has been changed, then we can notify the current
95 * what can be drawn to power user and the charger state to userspace.
97 * If we get the charger type from extcon subsystem, we can notify the
98 * charger state to power user automatically by usb_phy_get_charger_type()
99 * issuing from extcon subsystem.
101 * If we get the charger type from ->charger_detect() instead of extcon
102 * subsystem, the usb phy driver should issue usb_phy_set_charger_state()
103 * to set charger state when the charger state has been changed.
105 static void usb_phy_notify_charger_work(struct work_struct
*work
)
107 struct usb_phy
*usb_phy
= container_of(work
, struct usb_phy
, chg_work
);
108 char uchger_state
[50] = { 0 };
109 char uchger_type
[50] = { 0 };
110 char *envp
[] = { uchger_state
, uchger_type
, NULL
};
111 unsigned int min
, max
;
113 switch (usb_phy
->chg_state
) {
114 case USB_CHARGER_PRESENT
:
115 usb_phy_get_charger_current(usb_phy
, &min
, &max
);
117 atomic_notifier_call_chain(&usb_phy
->notifier
, max
, usb_phy
);
118 snprintf(uchger_state
, ARRAY_SIZE(uchger_state
),
119 "USB_CHARGER_STATE=%s", "USB_CHARGER_PRESENT");
121 case USB_CHARGER_ABSENT
:
122 usb_phy_set_default_current(usb_phy
);
124 atomic_notifier_call_chain(&usb_phy
->notifier
, 0, usb_phy
);
125 snprintf(uchger_state
, ARRAY_SIZE(uchger_state
),
126 "USB_CHARGER_STATE=%s", "USB_CHARGER_ABSENT");
129 dev_warn(usb_phy
->dev
, "Unknown USB charger state: %d\n",
134 snprintf(uchger_type
, ARRAY_SIZE(uchger_type
),
135 "USB_CHARGER_TYPE=%s", usb_chger_type
[usb_phy
->chg_type
]);
136 kobject_uevent_env(&usb_phy
->dev
->kobj
, KOBJ_CHANGE
, envp
);
139 static void __usb_phy_get_charger_type(struct usb_phy
*usb_phy
)
141 if (extcon_get_state(usb_phy
->edev
, EXTCON_CHG_USB_SDP
) > 0) {
142 usb_phy
->chg_type
= SDP_TYPE
;
143 usb_phy
->chg_state
= USB_CHARGER_PRESENT
;
144 } else if (extcon_get_state(usb_phy
->edev
, EXTCON_CHG_USB_CDP
) > 0) {
145 usb_phy
->chg_type
= CDP_TYPE
;
146 usb_phy
->chg_state
= USB_CHARGER_PRESENT
;
147 } else if (extcon_get_state(usb_phy
->edev
, EXTCON_CHG_USB_DCP
) > 0) {
148 usb_phy
->chg_type
= DCP_TYPE
;
149 usb_phy
->chg_state
= USB_CHARGER_PRESENT
;
150 } else if (extcon_get_state(usb_phy
->edev
, EXTCON_CHG_USB_ACA
) > 0) {
151 usb_phy
->chg_type
= ACA_TYPE
;
152 usb_phy
->chg_state
= USB_CHARGER_PRESENT
;
154 usb_phy
->chg_type
= UNKNOWN_TYPE
;
155 usb_phy
->chg_state
= USB_CHARGER_ABSENT
;
158 schedule_work(&usb_phy
->chg_work
);
162 * usb_phy_get_charger_type - get charger type from extcon subsystem
163 * @nb: the notifier block to determine charger type
164 * @state: the cable state
165 * @data: private data
167 * Determin the charger type from extcon subsystem which also means the
168 * charger state has been chaned, then we should notify this event.
170 static int usb_phy_get_charger_type(struct notifier_block
*nb
,
171 unsigned long state
, void *data
)
173 struct usb_phy
*usb_phy
= container_of(nb
, struct usb_phy
, type_nb
);
175 __usb_phy_get_charger_type(usb_phy
);
180 * usb_phy_set_charger_current - set the USB charger current
181 * @usb_phy: the USB phy to be used
182 * @mA: the current need to be set
184 * Usually we only change the charger default current when USB finished the
185 * enumeration as one SDP charger. As one SDP charger, usb_phy_set_power()
186 * will issue this function to change charger current when after setting USB
187 * configuration, or suspend/resume USB. For other type charger, we should
188 * use the default charger current and we do not suggest to issue this function
189 * to change the charger current.
191 * When USB charger current has been changed, we need to notify the power users.
193 void usb_phy_set_charger_current(struct usb_phy
*usb_phy
, unsigned int mA
)
195 switch (usb_phy
->chg_type
) {
197 if (usb_phy
->chg_cur
.sdp_max
== mA
)
200 usb_phy
->chg_cur
.sdp_max
= (mA
> DEFAULT_SDP_CUR_MAX_SS
) ?
201 DEFAULT_SDP_CUR_MAX_SS
: mA
;
204 if (usb_phy
->chg_cur
.dcp_max
== mA
)
207 usb_phy
->chg_cur
.dcp_max
= (mA
> DEFAULT_DCP_CUR_MAX
) ?
208 DEFAULT_DCP_CUR_MAX
: mA
;
211 if (usb_phy
->chg_cur
.cdp_max
== mA
)
214 usb_phy
->chg_cur
.cdp_max
= (mA
> DEFAULT_CDP_CUR_MAX
) ?
215 DEFAULT_CDP_CUR_MAX
: mA
;
218 if (usb_phy
->chg_cur
.aca_max
== mA
)
221 usb_phy
->chg_cur
.aca_max
= (mA
> DEFAULT_ACA_CUR_MAX
) ?
222 DEFAULT_ACA_CUR_MAX
: mA
;
228 schedule_work(&usb_phy
->chg_work
);
230 EXPORT_SYMBOL_GPL(usb_phy_set_charger_current
);
233 * usb_phy_get_charger_current - get the USB charger current
234 * @usb_phy: the USB phy to be used
235 * @min: the minimum current
236 * @max: the maximum current
238 * Usually we will notify the maximum current to power user, but for some
239 * special case, power user also need the minimum current value. Then the
240 * power user can issue this function to get the suitable current.
242 void usb_phy_get_charger_current(struct usb_phy
*usb_phy
,
243 unsigned int *min
, unsigned int *max
)
245 switch (usb_phy
->chg_type
) {
247 *min
= usb_phy
->chg_cur
.sdp_min
;
248 *max
= usb_phy
->chg_cur
.sdp_max
;
251 *min
= usb_phy
->chg_cur
.dcp_min
;
252 *max
= usb_phy
->chg_cur
.dcp_max
;
255 *min
= usb_phy
->chg_cur
.cdp_min
;
256 *max
= usb_phy
->chg_cur
.cdp_max
;
259 *min
= usb_phy
->chg_cur
.aca_min
;
260 *max
= usb_phy
->chg_cur
.aca_max
;
268 EXPORT_SYMBOL_GPL(usb_phy_get_charger_current
);
271 * usb_phy_set_charger_state - set the USB charger state
272 * @usb_phy: the USB phy to be used
273 * @state: the new state need to be set for charger
275 * The usb phy driver can issue this function when the usb phy driver
276 * detected the charger state has been changed, in this case the charger
277 * type should be get from ->charger_detect().
279 void usb_phy_set_charger_state(struct usb_phy
*usb_phy
,
280 enum usb_charger_state state
)
282 if (usb_phy
->chg_state
== state
|| !usb_phy
->charger_detect
)
285 usb_phy
->chg_state
= state
;
286 if (usb_phy
->chg_state
== USB_CHARGER_PRESENT
)
287 usb_phy
->chg_type
= usb_phy
->charger_detect(usb_phy
);
289 usb_phy
->chg_type
= UNKNOWN_TYPE
;
291 schedule_work(&usb_phy
->chg_work
);
293 EXPORT_SYMBOL_GPL(usb_phy_set_charger_state
);
295 static void devm_usb_phy_release(struct device
*dev
, void *res
)
297 struct usb_phy
*phy
= *(struct usb_phy
**)res
;
302 static void devm_usb_phy_release2(struct device
*dev
, void *_res
)
304 struct phy_devm
*res
= _res
;
307 usb_unregister_notifier(res
->phy
, res
->nb
);
308 usb_put_phy(res
->phy
);
311 static int devm_usb_phy_match(struct device
*dev
, void *res
, void *match_data
)
313 struct usb_phy
**phy
= res
;
315 return *phy
== match_data
;
318 static void usb_charger_init(struct usb_phy
*usb_phy
)
320 usb_phy
->chg_type
= UNKNOWN_TYPE
;
321 usb_phy
->chg_state
= USB_CHARGER_DEFAULT
;
322 usb_phy_set_default_current(usb_phy
);
323 INIT_WORK(&usb_phy
->chg_work
, usb_phy_notify_charger_work
);
326 static int usb_add_extcon(struct usb_phy
*x
)
330 if (of_property_read_bool(x
->dev
->of_node
, "extcon")) {
331 x
->edev
= extcon_get_edev_by_phandle(x
->dev
, 0);
333 return PTR_ERR(x
->edev
);
335 x
->id_edev
= extcon_get_edev_by_phandle(x
->dev
, 1);
336 if (IS_ERR(x
->id_edev
)) {
338 dev_info(x
->dev
, "No separate ID extcon device\n");
341 if (x
->vbus_nb
.notifier_call
) {
342 ret
= devm_extcon_register_notifier(x
->dev
, x
->edev
,
347 "register VBUS notifier failed\n");
351 x
->type_nb
.notifier_call
= usb_phy_get_charger_type
;
353 ret
= devm_extcon_register_notifier(x
->dev
, x
->edev
,
358 "register extcon USB SDP failed.\n");
362 ret
= devm_extcon_register_notifier(x
->dev
, x
->edev
,
367 "register extcon USB CDP failed.\n");
371 ret
= devm_extcon_register_notifier(x
->dev
, x
->edev
,
376 "register extcon USB DCP failed.\n");
380 ret
= devm_extcon_register_notifier(x
->dev
, x
->edev
,
385 "register extcon USB ACA failed.\n");
390 if (x
->id_nb
.notifier_call
) {
391 struct extcon_dev
*id_ext
;
398 ret
= devm_extcon_register_notifier(x
->dev
, id_ext
,
403 "register ID notifier failed\n");
409 if (x
->type_nb
.notifier_call
)
410 __usb_phy_get_charger_type(x
);
416 * devm_usb_get_phy - find the USB PHY
417 * @dev: device that requests this phy
418 * @type: the type of the phy the controller requires
420 * Gets the phy using usb_get_phy(), and associates a device with it using
421 * devres. On driver detach, release function is invoked on the devres data,
422 * then, devres data is freed.
424 * For use by USB host and peripheral drivers.
426 struct usb_phy
*devm_usb_get_phy(struct device
*dev
, enum usb_phy_type type
)
428 struct usb_phy
**ptr
, *phy
;
430 ptr
= devres_alloc(devm_usb_phy_release
, sizeof(*ptr
), GFP_KERNEL
);
432 return ERR_PTR(-ENOMEM
);
434 phy
= usb_get_phy(type
);
437 devres_add(dev
, ptr
);
443 EXPORT_SYMBOL_GPL(devm_usb_get_phy
);
446 * usb_get_phy - find the USB PHY
447 * @type: the type of the phy the controller requires
449 * Returns the phy driver, after getting a refcount to it; or
450 * -ENODEV if there is no such phy. The caller is responsible for
451 * calling usb_put_phy() to release that count.
453 * For use by USB host and peripheral drivers.
455 struct usb_phy
*usb_get_phy(enum usb_phy_type type
)
457 struct usb_phy
*phy
= NULL
;
460 spin_lock_irqsave(&phy_lock
, flags
);
462 phy
= __usb_find_phy(&phy_list
, type
);
463 if (IS_ERR(phy
) || !try_module_get(phy
->dev
->driver
->owner
)) {
464 pr_debug("PHY: unable to find transceiver of type %s\n",
465 usb_phy_type_string(type
));
467 phy
= ERR_PTR(-ENODEV
);
472 get_device(phy
->dev
);
475 spin_unlock_irqrestore(&phy_lock
, flags
);
479 EXPORT_SYMBOL_GPL(usb_get_phy
);
482 * devm_usb_get_phy_by_node - find the USB PHY by device_node
483 * @dev: device that requests this phy
484 * @node: the device_node for the phy device.
485 * @nb: a notifier_block to register with the phy.
487 * Returns the phy driver associated with the given device_node,
488 * after getting a refcount to it, -ENODEV if there is no such phy or
489 * -EPROBE_DEFER if the device is not yet loaded. While at that, it
490 * also associates the device with
491 * the phy using devres. On driver detach, release function is invoked
492 * on the devres data, then, devres data is freed.
494 * For use by peripheral drivers for devices related to a phy,
497 struct usb_phy
*devm_usb_get_phy_by_node(struct device
*dev
,
498 struct device_node
*node
,
499 struct notifier_block
*nb
)
501 struct usb_phy
*phy
= ERR_PTR(-ENOMEM
);
502 struct phy_devm
*ptr
;
505 ptr
= devres_alloc(devm_usb_phy_release2
, sizeof(*ptr
), GFP_KERNEL
);
507 dev_dbg(dev
, "failed to allocate memory for devres\n");
511 spin_lock_irqsave(&phy_lock
, flags
);
513 phy
= __of_usb_find_phy(node
);
519 if (!try_module_get(phy
->dev
->driver
->owner
)) {
520 phy
= ERR_PTR(-ENODEV
);
525 usb_register_notifier(phy
, nb
);
528 devres_add(dev
, ptr
);
530 get_device(phy
->dev
);
533 spin_unlock_irqrestore(&phy_lock
, flags
);
539 EXPORT_SYMBOL_GPL(devm_usb_get_phy_by_node
);
542 * devm_usb_get_phy_by_phandle - find the USB PHY by phandle
543 * @dev: device that requests this phy
544 * @phandle: name of the property holding the phy phandle value
545 * @index: the index of the phy
547 * Returns the phy driver associated with the given phandle value,
548 * after getting a refcount to it, -ENODEV if there is no such phy or
549 * -EPROBE_DEFER if there is a phandle to the phy, but the device is
550 * not yet loaded. While at that, it also associates the device with
551 * the phy using devres. On driver detach, release function is invoked
552 * on the devres data, then, devres data is freed.
554 * For use by USB host and peripheral drivers.
556 struct usb_phy
*devm_usb_get_phy_by_phandle(struct device
*dev
,
557 const char *phandle
, u8 index
)
559 struct device_node
*node
;
563 dev_dbg(dev
, "device does not have a device node entry\n");
564 return ERR_PTR(-EINVAL
);
567 node
= of_parse_phandle(dev
->of_node
, phandle
, index
);
569 dev_dbg(dev
, "failed to get %s phandle in %pOF node\n", phandle
,
571 return ERR_PTR(-ENODEV
);
573 phy
= devm_usb_get_phy_by_node(dev
, node
, NULL
);
577 EXPORT_SYMBOL_GPL(devm_usb_get_phy_by_phandle
);
580 * devm_usb_put_phy - release the USB PHY
581 * @dev: device that wants to release this phy
582 * @phy: the phy returned by devm_usb_get_phy()
584 * destroys the devres associated with this phy and invokes usb_put_phy
585 * to release the phy.
587 * For use by USB host and peripheral drivers.
589 void devm_usb_put_phy(struct device
*dev
, struct usb_phy
*phy
)
593 r
= devres_destroy(dev
, devm_usb_phy_release
, devm_usb_phy_match
, phy
);
594 dev_WARN_ONCE(dev
, r
, "couldn't find PHY resource\n");
596 EXPORT_SYMBOL_GPL(devm_usb_put_phy
);
599 * usb_put_phy - release the USB PHY
600 * @x: the phy returned by usb_get_phy()
602 * Releases a refcount the caller received from usb_get_phy().
604 * For use by USB host and peripheral drivers.
606 void usb_put_phy(struct usb_phy
*x
)
609 struct module
*owner
= x
->dev
->driver
->owner
;
615 EXPORT_SYMBOL_GPL(usb_put_phy
);
618 * usb_add_phy: declare the USB PHY
619 * @x: the USB phy to be used; or NULL
620 * @type: the type of this PHY
622 * This call is exclusively for use by phy drivers, which
623 * coordinate the activities of drivers for host and peripheral
624 * controllers, and in some cases for VBUS current regulation.
626 int usb_add_phy(struct usb_phy
*x
, enum usb_phy_type type
)
632 if (x
->type
!= USB_PHY_TYPE_UNDEFINED
) {
633 dev_err(x
->dev
, "not accepting initialized PHY %s\n", x
->label
);
638 ret
= usb_add_extcon(x
);
642 ATOMIC_INIT_NOTIFIER_HEAD(&x
->notifier
);
644 spin_lock_irqsave(&phy_lock
, flags
);
646 list_for_each_entry(phy
, &phy_list
, head
) {
647 if (phy
->type
== type
) {
649 dev_err(x
->dev
, "transceiver type %s already exists\n",
650 usb_phy_type_string(type
));
656 list_add_tail(&x
->head
, &phy_list
);
659 spin_unlock_irqrestore(&phy_lock
, flags
);
662 EXPORT_SYMBOL_GPL(usb_add_phy
);
665 * usb_add_phy_dev - declare the USB PHY
666 * @x: the USB phy to be used; or NULL
668 * This call is exclusively for use by phy drivers, which
669 * coordinate the activities of drivers for host and peripheral
670 * controllers, and in some cases for VBUS current regulation.
672 int usb_add_phy_dev(struct usb_phy
*x
)
678 dev_err(x
->dev
, "no device provided for PHY\n");
683 ret
= usb_add_extcon(x
);
687 ATOMIC_INIT_NOTIFIER_HEAD(&x
->notifier
);
689 spin_lock_irqsave(&phy_lock
, flags
);
690 list_add_tail(&x
->head
, &phy_list
);
691 spin_unlock_irqrestore(&phy_lock
, flags
);
695 EXPORT_SYMBOL_GPL(usb_add_phy_dev
);
698 * usb_remove_phy - remove the OTG PHY
699 * @x: the USB OTG PHY to be removed;
701 * This reverts the effects of usb_add_phy
703 void usb_remove_phy(struct usb_phy
*x
)
707 spin_lock_irqsave(&phy_lock
, flags
);
710 spin_unlock_irqrestore(&phy_lock
, flags
);
712 EXPORT_SYMBOL_GPL(usb_remove_phy
);
715 * usb_phy_set_event - set event to phy event
716 * @x: the phy returned by usb_get_phy();
717 * @event: event to set
719 * This sets event to phy event
721 void usb_phy_set_event(struct usb_phy
*x
, unsigned long event
)
723 x
->last_event
= event
;
725 EXPORT_SYMBOL_GPL(usb_phy_set_event
);