Commit 7c38405c authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Revert "usb: ehci/ohci-exynos: Fix PHY getting sequence"

This reverts commit 03936890.

Vivek writes:
	We not longer need this patch, since we have planned to remove
	the usb-phy drivers for samsung [1], we have completely deleted
	the support for the the same from ohci-exynos and ehci-exynos
	drivers too [2].  Sorry for the confusion, but this patch can be
	dropped and instead we can pick the patches in [2].

	[1] http://www.mail-archive.com/linux-samsung-soc@vger.kernel.org/msg35774.html
	[2] https://www.mail-archive.com/linux-samsung-soc@vger.kernel.org/msg35695.html
	    https://www.mail-archive.com/linux-samsung-soc@vger.kernel.org/msg35696.html

Cc: Sachin Kamat <sachin.kamat@samsung.com>
Cc: Vivek Gautam <gautam.vivek@samsung.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: Jingoo Han <jg1.han@samsung.com>
Cc: Sachin Kamat <sachin.kamat@samsung.com>
Cc: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e21eba05
...@@ -62,6 +62,18 @@ static int exynos_ehci_get_phy(struct device *dev, ...@@ -62,6 +62,18 @@ static int exynos_ehci_get_phy(struct device *dev,
int phy_number; int phy_number;
int ret = 0; int ret = 0;
exynos_ehci->phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
if (IS_ERR(exynos_ehci->phy)) {
ret = PTR_ERR(exynos_ehci->phy);
if (ret != -ENXIO && ret != -ENODEV) {
dev_err(dev, "no usb2 phy configured\n");
return ret;
}
dev_dbg(dev, "Failed to get usb2 phy\n");
} else {
exynos_ehci->otg = exynos_ehci->phy->otg;
}
for_each_available_child_of_node(dev->of_node, child) { for_each_available_child_of_node(dev->of_node, child) {
ret = of_property_read_u32(child, "reg", &phy_number); ret = of_property_read_u32(child, "reg", &phy_number);
if (ret) { if (ret) {
...@@ -78,27 +90,15 @@ static int exynos_ehci_get_phy(struct device *dev, ...@@ -78,27 +90,15 @@ static int exynos_ehci_get_phy(struct device *dev,
phy = devm_of_phy_get(dev, child, NULL); phy = devm_of_phy_get(dev, child, NULL);
of_node_put(child); of_node_put(child);
if (IS_ERR(phy)) if (IS_ERR(phy)) {
/* Lets fallback to older USB-PHYs */ ret = PTR_ERR(phy);
goto usb_phy_old; if (ret != -ENOSYS && ret != -ENODEV) {
exynos_ehci->phy_g[phy_number] = phy; dev_err(dev, "no usb2 phy configured\n");
/* Make the older PHYs unavailable */ return ret;
exynos_ehci->phy = ERR_PTR(-ENXIO); }
} dev_dbg(dev, "Failed to get usb2 phy\n");
return 0;
usb_phy_old:
exynos_ehci->phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
if (IS_ERR(exynos_ehci->phy)) {
ret = PTR_ERR(exynos_ehci->phy);
if (ret != -ENXIO && ret != -ENODEV) {
dev_err(dev, "no usb2 phy configured\n");
return ret;
} }
dev_dbg(dev, "Failed to get usb2 phy\n"); exynos_ehci->phy_g[phy_number] = phy;
} else {
exynos_ehci->otg = exynos_ehci->phy->otg;
} }
return ret; return ret;
......
...@@ -51,12 +51,27 @@ static int exynos_ohci_get_phy(struct device *dev, ...@@ -51,12 +51,27 @@ static int exynos_ohci_get_phy(struct device *dev,
int phy_number; int phy_number;
int ret = 0; int ret = 0;
exynos_ohci->phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
if (IS_ERR(exynos_ohci->phy)) {
ret = PTR_ERR(exynos_ohci->phy);
if (ret != -ENXIO && ret != -ENODEV) {
dev_err(dev, "no usb2 phy configured\n");
return ret;
}
dev_dbg(dev, "Failed to get usb2 phy\n");
} else {
exynos_ohci->otg = exynos_ohci->phy->otg;
}
/* /*
* Getting generic phy: * Getting generic phy:
* We are keeping both types of phys as a part of transiting OHCI * We are keeping both types of phys as a part of transiting OHCI
* to generic phy framework, so as to maintain backward compatibilty * to generic phy framework, so as to maintain backward compatibilty
* with old DTB too. * with old DTB.
* We fallback to older USB-PHYs when we fail to get generic PHYs. * If there are existing devices using DTB files built from them,
* to remove the support for old bindings in this driver,
* we need to make sure that such devices have their DTBs
* updated to ones built from new DTS.
*/ */
for_each_available_child_of_node(dev->of_node, child) { for_each_available_child_of_node(dev->of_node, child) {
ret = of_property_read_u32(child, "reg", &phy_number); ret = of_property_read_u32(child, "reg", &phy_number);
...@@ -74,27 +89,15 @@ static int exynos_ohci_get_phy(struct device *dev, ...@@ -74,27 +89,15 @@ static int exynos_ohci_get_phy(struct device *dev,
phy = devm_of_phy_get(dev, child, NULL); phy = devm_of_phy_get(dev, child, NULL);
of_node_put(child); of_node_put(child);
if (IS_ERR(phy)) if (IS_ERR(phy)) {
/* Lets fallback to older USB-PHYs */ ret = PTR_ERR(phy);
goto usb_phy_old; if (ret != -ENOSYS && ret != -ENODEV) {
exynos_ohci->phy_g[phy_number] = phy; dev_err(dev, "no usb2 phy configured\n");
/* Make the older PHYs unavailable */ return ret;
exynos_ohci->phy = ERR_PTR(-ENXIO); }
} dev_dbg(dev, "Failed to get usb2 phy\n");
return 0;
usb_phy_old:
exynos_ohci->phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
if (IS_ERR(exynos_ohci->phy)) {
ret = PTR_ERR(exynos_ohci->phy);
if (ret != -ENXIO && ret != -ENODEV) {
dev_err(dev, "no usb2 phy configured\n");
return ret;
} }
dev_dbg(dev, "Failed to get usb2 phy\n"); exynos_ohci->phy_g[phy_number] = phy;
} else {
exynos_ohci->otg = exynos_ohci->phy->otg;
} }
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment