提交 c859aa65 编写于 作者: P Peter Chen 提交者: Greg Kroah-Hartman

usb: chipidea: refine PHY operation

- Delete global_phy due to we can get the phy from phy layer now
- using devm_usb_get_phy to instead of usb_get_phy
- delete the otg_set_peripheral, which should be handled by otg layer
Signed-off-by: NPeter Chen <peter.chen@freescale.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 3c701651
...@@ -196,8 +196,6 @@ struct ci_hdrc { ...@@ -196,8 +196,6 @@ struct ci_hdrc {
struct ci_hdrc_platform_data *platdata; struct ci_hdrc_platform_data *platdata;
int vbus_active; int vbus_active;
/* FIXME: some day, we'll not use global phy */
bool global_phy;
struct usb_phy *transceiver; struct usb_phy *transceiver;
struct usb_hcd *hcd; struct usb_hcd *hcd;
struct dentry *debugfs; struct dentry *debugfs;
......
...@@ -496,33 +496,6 @@ static void ci_get_otg_capable(struct ci_hdrc *ci) ...@@ -496,33 +496,6 @@ static void ci_get_otg_capable(struct ci_hdrc *ci)
} }
} }
static int ci_usb_phy_init(struct ci_hdrc *ci)
{
if (ci->platdata->phy) {
ci->transceiver = ci->platdata->phy;
return usb_phy_init(ci->transceiver);
} else {
ci->global_phy = true;
ci->transceiver = usb_get_phy(USB_PHY_TYPE_USB2);
if (IS_ERR(ci->transceiver))
ci->transceiver = NULL;
return 0;
}
}
static void ci_usb_phy_destroy(struct ci_hdrc *ci)
{
if (!ci->transceiver)
return;
otg_set_peripheral(ci->transceiver->otg, NULL);
if (ci->global_phy)
usb_put_phy(ci->transceiver);
else
usb_phy_shutdown(ci->transceiver);
}
static int ci_hdrc_probe(struct platform_device *pdev) static int ci_hdrc_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
...@@ -561,7 +534,26 @@ static int ci_hdrc_probe(struct platform_device *pdev) ...@@ -561,7 +534,26 @@ static int ci_hdrc_probe(struct platform_device *pdev)
hw_phymode_configure(ci); hw_phymode_configure(ci);
ret = ci_usb_phy_init(ci); if (ci->platdata->phy)
ci->transceiver = ci->platdata->phy;
else
ci->transceiver = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
if (IS_ERR(ci->transceiver)) {
ret = PTR_ERR(ci->transceiver);
/*
* if -ENXIO is returned, it means PHY layer wasn't
* enabled, so it makes no sense to return -EPROBE_DEFER
* in that case, since no PHY driver will ever probe.
*/
if (ret == -ENXIO)
return ret;
dev_err(dev, "no usb2 phy configured\n");
return -EPROBE_DEFER;
}
ret = usb_phy_init(ci->transceiver);
if (ret) { if (ret) {
dev_err(dev, "unable to init phy: %d\n", ret); dev_err(dev, "unable to init phy: %d\n", ret);
return ret; return ret;
...@@ -573,7 +565,7 @@ static int ci_hdrc_probe(struct platform_device *pdev) ...@@ -573,7 +565,7 @@ static int ci_hdrc_probe(struct platform_device *pdev)
if (ci->irq < 0) { if (ci->irq < 0) {
dev_err(dev, "missing IRQ\n"); dev_err(dev, "missing IRQ\n");
ret = -ENODEV; ret = -ENODEV;
goto destroy_phy; goto deinit_phy;
} }
ci_get_otg_capable(ci); ci_get_otg_capable(ci);
...@@ -590,23 +582,12 @@ static int ci_hdrc_probe(struct platform_device *pdev) ...@@ -590,23 +582,12 @@ static int ci_hdrc_probe(struct platform_device *pdev)
ret = ci_hdrc_gadget_init(ci); ret = ci_hdrc_gadget_init(ci);
if (ret) if (ret)
dev_info(dev, "doesn't support gadget\n"); dev_info(dev, "doesn't support gadget\n");
if (!ret && ci->transceiver) {
ret = otg_set_peripheral(ci->transceiver->otg,
&ci->gadget);
/*
* If we implement all USB functions using chipidea drivers,
* it doesn't need to call above API, meanwhile, if we only
* use gadget function, calling above API is useless.
*/
if (ret && ret != -ENOTSUPP)
goto destroy_phy;
}
} }
if (!ci->roles[CI_ROLE_HOST] && !ci->roles[CI_ROLE_GADGET]) { if (!ci->roles[CI_ROLE_HOST] && !ci->roles[CI_ROLE_GADGET]) {
dev_err(dev, "no supported roles\n"); dev_err(dev, "no supported roles\n");
ret = -ENODEV; ret = -ENODEV;
goto destroy_phy; goto deinit_phy;
} }
if (ci->is_otg) { if (ci->is_otg) {
...@@ -663,8 +644,8 @@ static int ci_hdrc_probe(struct platform_device *pdev) ...@@ -663,8 +644,8 @@ static int ci_hdrc_probe(struct platform_device *pdev)
free_irq(ci->irq, ci); free_irq(ci->irq, ci);
stop: stop:
ci_role_destroy(ci); ci_role_destroy(ci);
destroy_phy: deinit_phy:
ci_usb_phy_destroy(ci); usb_phy_shutdown(ci->transceiver);
return ret; return ret;
} }
...@@ -677,7 +658,8 @@ static int ci_hdrc_remove(struct platform_device *pdev) ...@@ -677,7 +658,8 @@ static int ci_hdrc_remove(struct platform_device *pdev)
free_irq(ci->irq, ci); free_irq(ci->irq, ci);
ci_role_destroy(ci); ci_role_destroy(ci);
ci_hdrc_enter_lpm(ci, true); ci_hdrc_enter_lpm(ci, true);
ci_usb_phy_destroy(ci); usb_phy_shutdown(ci->transceiver);
kfree(ci->hw_bank.regmap);
return 0; return 0;
} }
......
...@@ -1837,12 +1837,6 @@ void ci_hdrc_gadget_destroy(struct ci_hdrc *ci) ...@@ -1837,12 +1837,6 @@ void ci_hdrc_gadget_destroy(struct ci_hdrc *ci)
dma_pool_destroy(ci->td_pool); dma_pool_destroy(ci->td_pool);
dma_pool_destroy(ci->qh_pool); dma_pool_destroy(ci->qh_pool);
if (ci->transceiver) {
otg_set_peripheral(ci->transceiver->otg, NULL);
if (ci->global_phy)
usb_put_phy(ci->transceiver);
}
} }
static int udc_id_switch_for_device(struct ci_hdrc *ci) static int udc_id_switch_for_device(struct ci_hdrc *ci)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册