linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy
@ 2019-01-21 10:25 Yinbo Zhu
  2019-01-21 10:25 ` [PATCH v2 2/6] usb: phy: Workaround for USB erratum-A005728 Yinbo Zhu
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Yinbo Zhu @ 2019-01-21 10:25 UTC (permalink / raw)
  To: Alan Stern
  Cc: Yinbo Zhu, Xiaobo Xie, Jerry Huang, Ran Wang, Greg Kroah-Hartman,
	Ramneek Mehresh, Nikhil Badola, Suresh Gupta, linux-usb,
	linux-kernel

From: Nikhil Badola <nikhil.badola@freescale.com>

Set USB_EN bit to select ULPI phy for USB controller version 2.5

Signed-off-by: Nikhil Badola <nikhil.badola@freescale.com>
Signed-off-by: Yinbo Zhu <yinbo.zhu@nxp.com>
---
Change in v2:
		replace Yinbo.Zhu with Yinbo Zhu 

 drivers/usb/host/ehci-fsl.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/drivers/usb/host/ehci-fsl.c b/drivers/usb/host/ehci-fsl.c
index 0a9fd20..71c4661 100644
--- a/drivers/usb/host/ehci-fsl.c
+++ b/drivers/usb/host/ehci-fsl.c
@@ -118,6 +118,12 @@ static int fsl_ehci_drv_probe(struct platform_device *pdev)
 		clrsetbits_be32(hcd->regs + FSL_SOC_USB_CTRL,
 				CONTROL_REGISTER_W1C_MASK, 0x4);
 
+	/* Set USB_EN bit to select ULPI phy for USB controller version 2.5 */
+	if (pdata->controller_ver == FSL_USB_VER_2_5 &&
+		pdata->phy_mode == FSL_USB2_PHY_ULPI)
+		iowrite32be(USB_CTRL_USB_EN, hcd->regs + FSL_SOC_USB_CTRL);
+
+
 	/*
 	 * Enable UTMI phy and program PTS field in UTMI mode before asserting
 	 * controller reset for USB Controller version 2.5
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v2 2/6] usb: phy: Workaround for USB erratum-A005728
  2019-01-21 10:25 [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy Yinbo Zhu
@ 2019-01-21 10:25 ` Yinbo Zhu
  2019-01-21 10:25 ` [PATCH v2 3/6] usb: host: Stops USB controller init if PLL fails to lock Yinbo Zhu
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Yinbo Zhu @ 2019-01-21 10:25 UTC (permalink / raw)
  To: Alan Stern
  Cc: Yinbo Zhu, Xiaobo Xie, Jerry Huang, Ran Wang, Greg Kroah-Hartman,
	Ramneek Mehresh, Nikhil Badola, Suresh Gupta, linux-usb,
	linux-kernel, Suresh Gupta

From: Suresh Gupta <B42813@freescale.com>

PHY_CLK_VALID bit for UTMI PHY in USBDR does not set even
if PHY is providing valid clock. Workaround for this
involves resetting of PHY and check PHY_CLK_VALID bit
multiple times. If PHY_CLK_VALID bit is still not set even
after 5 retries, it would be safe to deaclare that PHY
clock is not available.
This erratum is applicable for USBDR less then ver 2.4.

Signed-off-by: Suresh Gupta <B42813@freescale.com>
Signed-off-by: Yinbo Zhu <yinbo.zhu@nxp.com>
---
Change in v2:
		replace Yinbo.Zhu with Yinbo Zhu

 drivers/usb/host/ehci-fsl.c |   37 ++++++++++++++++++++++++++-----------
 drivers/usb/host/ehci-fsl.h |    3 +++
 2 files changed, 29 insertions(+), 11 deletions(-)

diff --git a/drivers/usb/host/ehci-fsl.c b/drivers/usb/host/ehci-fsl.c
index 71c4661..a28ec1e 100644
--- a/drivers/usb/host/ehci-fsl.c
+++ b/drivers/usb/host/ehci-fsl.c
@@ -176,6 +176,17 @@ static int fsl_ehci_drv_probe(struct platform_device *pdev)
 	return retval;
 }
 
+static bool usb_phy_clk_valid(struct usb_hcd *hcd)
+{
+	void __iomem *non_ehci = hcd->regs;
+	bool ret = true;
+
+	if (!(in_be32(non_ehci + FSL_SOC_USB_CTRL) & PHY_CLK_VALID))
+		ret = false;
+
+	return ret;
+}
+
 static int ehci_fsl_setup_phy(struct usb_hcd *hcd,
 			       enum fsl_usb2_phy_modes phy_mode,
 			       unsigned int port_offset)
@@ -214,6 +225,16 @@ static int ehci_fsl_setup_phy(struct usb_hcd *hcd,
 		/* fall through */
 	case FSL_USB2_PHY_UTMI:
 	case FSL_USB2_PHY_UTMI_DUAL:
+		/* PHY_CLK_VALID bit is de-featured from all controller
+		 * versions below 2.4 and is to be checked only for
+		 * internal UTMI phy
+		 */
+		if (pdata->controller_ver > FSL_USB_VER_2_4 &&
+			pdata->have_sysif_regs && !usb_phy_clk_valid(hcd)) {
+			pr_err("fsl-ehci: USB PHY clock invalid\n");
+			return -EINVAL;
+		}
+
 		if (pdata->have_sysif_regs && pdata->controller_ver) {
 			/* controller version 1.6 or above */
 			clrsetbits_be32(non_ehci + FSL_SOC_USB_CTRL,
@@ -232,17 +253,11 @@ static int ehci_fsl_setup_phy(struct usb_hcd *hcd,
 		break;
 	}
 
-	/*
-	 * check PHY_CLK_VALID to determine phy clock presence before writing
-	 * to portsc
-	 */
-	if (pdata->check_phy_clk_valid) {
-		if (!(ioread32be(non_ehci + FSL_SOC_USB_CTRL) &
-		    PHY_CLK_VALID)) {
-			dev_warn(hcd->self.controller,
-				 "USB PHY clock invalid\n");
-			return -EINVAL;
-		}
+	if (pdata->have_sysif_regs &&
+		pdata->controller_ver > FSL_USB_VER_1_6 &&
+		!usb_phy_clk_valid(hcd)) {
+		dev_warn(hcd->self.controller, "USB PHY clock invalid\n");
+		return -EINVAL;
 	}
 
 	ehci_writel(ehci, portsc, &ehci->regs->port_status[port_offset]);
diff --git a/drivers/usb/host/ehci-fsl.h b/drivers/usb/host/ehci-fsl.h
index cbc4220..9d18c6e 100644
--- a/drivers/usb/host/ehci-fsl.h
+++ b/drivers/usb/host/ehci-fsl.h
@@ -50,4 +50,7 @@
 #define UTMI_PHY_EN             (1<<9)
 #define ULPI_PHY_CLK_SEL        (1<<10)
 #define PHY_CLK_VALID		(1<<17)
+
+/* Retry count for checking UTMI PHY CLK validity */
+#define UTMI_PHY_CLK_VALID_CHK_RETRY 5
 #endif				/* _EHCI_FSL_H */
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v2 3/6] usb: host: Stops USB controller init if PLL fails to lock
  2019-01-21 10:25 [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy Yinbo Zhu
  2019-01-21 10:25 ` [PATCH v2 2/6] usb: phy: Workaround for USB erratum-A005728 Yinbo Zhu
@ 2019-01-21 10:25 ` Yinbo Zhu
  2019-01-22  8:04   ` Greg Kroah-Hartman
  2019-01-21 10:25 ` [PATCH v2 4/6] usb: linux/fsl_device: Add platform member has_fsl_erratum_a006918 Yinbo Zhu
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 8+ messages in thread
From: Yinbo Zhu @ 2019-01-21 10:25 UTC (permalink / raw)
  To: Alan Stern
  Cc: Yinbo Zhu, Xiaobo Xie, Jerry Huang, Ran Wang, Greg Kroah-Hartman,
	Ramneek Mehresh, Nikhil Badola, Suresh Gupta, linux-usb,
	linux-kernel

From: yinbo.zhu <yinbo.zhu@nxp.com>

USB erratum-A006918 workaround tries to start internal PHY inside
uboot (when PLL fails to lock). However, if the workaround also
fails, then USB initialization is also stopped inside Linux.
Erratum-A006918 workaround failure creates "fsl,erratum_a006918"
node in device-tree. Presence of this node in device-tree is
used to stop USB controller initialization in Linux

Signed-off-by: Ramneek Mehresh <ramneek.mehresh@freescale.com>
Signed-off-by: Suresh Gupta <suresh.gupta@freescale.com>
Signed-off-by: Yinbo Zhu <yinbo.zhu@nxp.com>
---
Change in v2:
		replace Yinbo.Zhu with Yinbo Zhu

 drivers/usb/host/ehci-fsl.c      |    5 +++++
 drivers/usb/host/fsl-mph-dr-of.c |    5 +++++
 2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/drivers/usb/host/ehci-fsl.c b/drivers/usb/host/ehci-fsl.c
index a28ec1e..6884130 100644
--- a/drivers/usb/host/ehci-fsl.c
+++ b/drivers/usb/host/ehci-fsl.c
@@ -224,6 +224,11 @@ static int ehci_fsl_setup_phy(struct usb_hcd *hcd,
 		portsc |= PORT_PTS_PTW;
 		/* fall through */
 	case FSL_USB2_PHY_UTMI:
+		if (pdata->has_fsl_erratum_a006918) {
+			pr_warn("fsl-ehci: USB PHY clock invalid\n");
+			return -EINVAL;
+		}
+
 	case FSL_USB2_PHY_UTMI_DUAL:
 		/* PHY_CLK_VALID bit is de-featured from all controller
 		 * versions below 2.4 and is to be checked only for
diff --git a/drivers/usb/host/fsl-mph-dr-of.c b/drivers/usb/host/fsl-mph-dr-of.c
index 677f9d5..7e07701 100644
--- a/drivers/usb/host/fsl-mph-dr-of.c
+++ b/drivers/usb/host/fsl-mph-dr-of.c
@@ -225,6 +225,11 @@ static int fsl_usb2_mph_dr_of_probe(struct platform_device *ofdev)
 	pdata->has_fsl_erratum_a005697 =
 		of_property_read_bool(np, "fsl,usb_erratum-a005697");
 
+	if (of_get_property(np, "fsl,erratum_a006918", NULL))
+		pdata->has_fsl_erratum_a006918 = 1;
+	else
+		pdata->has_fsl_erratum_a006918 = 0;
+
 	/*
 	 * Determine whether phy_clk_valid needs to be checked
 	 * by reading property in device tree
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v2 4/6] usb: linux/fsl_device: Add platform member has_fsl_erratum_a006918
  2019-01-21 10:25 [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy Yinbo Zhu
  2019-01-21 10:25 ` [PATCH v2 2/6] usb: phy: Workaround for USB erratum-A005728 Yinbo Zhu
  2019-01-21 10:25 ` [PATCH v2 3/6] usb: host: Stops USB controller init if PLL fails to lock Yinbo Zhu
@ 2019-01-21 10:25 ` Yinbo Zhu
  2019-01-21 10:25 ` [PATCH v2 5/6] usb: linux/fsl_device: Add platform member has_fsl_erratum_14 Yinbo Zhu
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Yinbo Zhu @ 2019-01-21 10:25 UTC (permalink / raw)
  To: Alan Stern
  Cc: Yinbo Zhu, Xiaobo Xie, Jerry Huang, Ran Wang, Greg Kroah-Hartman,
	Ramneek Mehresh, Nikhil Badola, Suresh Gupta, linux-usb,
	linux-kernel

From: Yinbo Zhu <yinbo.zhu@nxp.com>

This patch is to add member has_fsl_erratum_a006918 in platform data

Signed-off-by: Yinbo Zhu <yinbo.zhu@nxp.com>
---
 include/linux/fsl_devices.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h
index 60cef82..7ea53c8 100644
--- a/include/linux/fsl_devices.h
+++ b/include/linux/fsl_devices.h
@@ -101,6 +101,7 @@ struct fsl_usb2_platform_data {
 	unsigned        has_fsl_erratum_a007792:1;
 	unsigned        has_fsl_erratum_a005275:1;
 	unsigned	has_fsl_erratum_a005697:1;
+	unsigned	has_fsl_erratum_a006918:1;
 	unsigned        check_phy_clk_valid:1;
 
 	/* register save area for suspend/resume */
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v2 5/6] usb: linux/fsl_device: Add platform member has_fsl_erratum_14
  2019-01-21 10:25 [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy Yinbo Zhu
                   ` (2 preceding siblings ...)
  2019-01-21 10:25 ` [PATCH v2 4/6] usb: linux/fsl_device: Add platform member has_fsl_erratum_a006918 Yinbo Zhu
@ 2019-01-21 10:25 ` Yinbo Zhu
  2019-01-21 10:25 ` [PATCH v2 6/6] usb :fsl: Change string format for errata property Yinbo Zhu
  2019-01-22  8:08 ` [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy Greg Kroah-Hartman
  5 siblings, 0 replies; 8+ messages in thread
From: Yinbo Zhu @ 2019-01-21 10:25 UTC (permalink / raw)
  To: Alan Stern
  Cc: Yinbo Zhu, Xiaobo Xie, Jerry Huang, Ran Wang, Greg Kroah-Hartman,
	Ramneek Mehresh, Nikhil Badola, Suresh Gupta, linux-usb,
	linux-kernel

From: Yinbo Zhu <yinbo.zhu@nxp.com>

This patch is to add member has_fsl_erratum_14 in platform data

Signed-off-by: Yinbo Zhu <yinbo.zhu@nxp.com>
---
 include/linux/fsl_devices.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h
index 7ea53c8..5c21a3a 100644
--- a/include/linux/fsl_devices.h
+++ b/include/linux/fsl_devices.h
@@ -102,6 +102,7 @@ struct fsl_usb2_platform_data {
 	unsigned        has_fsl_erratum_a005275:1;
 	unsigned	has_fsl_erratum_a005697:1;
 	unsigned	has_fsl_erratum_a006918:1;
+	unsigned	has_fsl_erratum_14:1;
 	unsigned        check_phy_clk_valid:1;
 
 	/* register save area for suspend/resume */
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v2 6/6] usb :fsl: Change string format for errata property
  2019-01-21 10:25 [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy Yinbo Zhu
                   ` (3 preceding siblings ...)
  2019-01-21 10:25 ` [PATCH v2 5/6] usb: linux/fsl_device: Add platform member has_fsl_erratum_14 Yinbo Zhu
@ 2019-01-21 10:25 ` Yinbo Zhu
  2019-01-22  8:08 ` [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy Greg Kroah-Hartman
  5 siblings, 0 replies; 8+ messages in thread
From: Yinbo Zhu @ 2019-01-21 10:25 UTC (permalink / raw)
  To: Alan Stern
  Cc: Yinbo Zhu, Xiaobo Xie, Jerry Huang, Ran Wang, Greg Kroah-Hartman,
	Ramneek Mehresh, Nikhil Badola, Suresh Gupta, linux-usb,
	linux-kernel

From: Nikhil Badola <nikhil.badola@freescale.com>

Remove USB errata checking code from driver. Applicability of erratum
is retrieved by reading corresponding property in device tree.
This property is written during device tree fixup.

Signed-off-by: Ramneek Mehresh <ramneek.mehresh@freescale.com>
Signed-off-by: Nikhil Badola <nikhil.badola@freescale.com>
Signed-off-by: Yinbo Zhu <yinbo.zhu@nxp.com>
---
 drivers/usb/host/ehci-fsl.c      |    7 +------
 drivers/usb/host/fsl-mph-dr-of.c |    9 ++++-----
 2 files changed, 5 insertions(+), 11 deletions(-)

diff --git a/drivers/usb/host/ehci-fsl.c b/drivers/usb/host/ehci-fsl.c
index 6884130..c71680e 100644
--- a/drivers/usb/host/ehci-fsl.c
+++ b/drivers/usb/host/ehci-fsl.c
@@ -310,14 +310,9 @@ static int ehci_fsl_usb_setup(struct ehci_hcd *ehci)
 			return -EINVAL;
 
 	if (pdata->operating_mode == FSL_USB2_MPH_HOST) {
-		unsigned int chip, rev, svr;
-
-		svr = mfspr(SPRN_SVR);
-		chip = svr >> 16;
-		rev = (svr >> 4) & 0xf;
 
 		/* Deal with USB Erratum #14 on MPC834x Rev 1.0 & 1.1 chips */
-		if ((rev == 1) && (chip >= 0x8050) && (chip <= 0x8055))
+		if (pdata->has_fsl_erratum_14 == 1)
 			ehci->has_fsl_port_bug = 1;
 
 		if (pdata->port_enables & FSL_USB2_PORT0_ENABLED)
diff --git a/drivers/usb/host/fsl-mph-dr-of.c b/drivers/usb/host/fsl-mph-dr-of.c
index 7e07701..ae8f60f 100644
--- a/drivers/usb/host/fsl-mph-dr-of.c
+++ b/drivers/usb/host/fsl-mph-dr-of.c
@@ -224,11 +224,10 @@ static int fsl_usb2_mph_dr_of_probe(struct platform_device *ofdev)
 		of_property_read_bool(np, "fsl,usb-erratum-a005275");
 	pdata->has_fsl_erratum_a005697 =
 		of_property_read_bool(np, "fsl,usb_erratum-a005697");
-
-	if (of_get_property(np, "fsl,erratum_a006918", NULL))
-		pdata->has_fsl_erratum_a006918 = 1;
-	else
-		pdata->has_fsl_erratum_a006918 = 0;
+	pdata->has_fsl_erratum_a006918 =
+		of_property_read_bool(np, "fsl,usb_erratum-a006918");
+	pdata->has_fsl_erratum_14 =
+		of_property_read_bool(np, "fsl,usb_erratum-14");
 
 	/*
 	 * Determine whether phy_clk_valid needs to be checked
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 3/6] usb: host: Stops USB controller init if PLL fails to lock
  2019-01-21 10:25 ` [PATCH v2 3/6] usb: host: Stops USB controller init if PLL fails to lock Yinbo Zhu
@ 2019-01-22  8:04   ` Greg Kroah-Hartman
  0 siblings, 0 replies; 8+ messages in thread
From: Greg Kroah-Hartman @ 2019-01-22  8:04 UTC (permalink / raw)
  To: Yinbo Zhu
  Cc: Alan Stern, Xiaobo Xie, Jerry Huang, Ran Wang, Ramneek Mehresh,
	Nikhil Badola, Suresh Gupta, linux-usb, linux-kernel

On Mon, Jan 21, 2019 at 10:25:10AM +0000, Yinbo Zhu wrote:
> From: yinbo.zhu <yinbo.zhu@nxp.com>

This line is still wrong :(

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy
  2019-01-21 10:25 [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy Yinbo Zhu
                   ` (4 preceding siblings ...)
  2019-01-21 10:25 ` [PATCH v2 6/6] usb :fsl: Change string format for errata property Yinbo Zhu
@ 2019-01-22  8:08 ` Greg Kroah-Hartman
  5 siblings, 0 replies; 8+ messages in thread
From: Greg Kroah-Hartman @ 2019-01-22  8:08 UTC (permalink / raw)
  To: Yinbo Zhu
  Cc: Alan Stern, Xiaobo Xie, Jerry Huang, Ran Wang, Ramneek Mehresh,
	Nikhil Badola, Suresh Gupta, linux-usb, linux-kernel

On Mon, Jan 21, 2019 at 10:25:00AM +0000, Yinbo Zhu wrote:
> From: Nikhil Badola <nikhil.badola@freescale.com>
> 
> Set USB_EN bit to select ULPI phy for USB controller version 2.5
> 
> Signed-off-by: Nikhil Badola <nikhil.badola@freescale.com>
> Signed-off-by: Yinbo Zhu <yinbo.zhu@nxp.com>
> ---
> Change in v2:
> 		replace Yinbo.Zhu with Yinbo Zhu 
> 
>  drivers/usb/host/ehci-fsl.c |    6 ++++++
>  1 files changed, 6 insertions(+), 0 deletions(-)

This patch doesn't apply against my usb-next branch, what did you
generate it against?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-01-22  8:08 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-21 10:25 [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy Yinbo Zhu
2019-01-21 10:25 ` [PATCH v2 2/6] usb: phy: Workaround for USB erratum-A005728 Yinbo Zhu
2019-01-21 10:25 ` [PATCH v2 3/6] usb: host: Stops USB controller init if PLL fails to lock Yinbo Zhu
2019-01-22  8:04   ` Greg Kroah-Hartman
2019-01-21 10:25 ` [PATCH v2 4/6] usb: linux/fsl_device: Add platform member has_fsl_erratum_a006918 Yinbo Zhu
2019-01-21 10:25 ` [PATCH v2 5/6] usb: linux/fsl_device: Add platform member has_fsl_erratum_14 Yinbo Zhu
2019-01-21 10:25 ` [PATCH v2 6/6] usb :fsl: Change string format for errata property Yinbo Zhu
2019-01-22  8:08 ` [PATCH v2 1/6] usb: fsl: Set USB_EN bit to select ULPI phy Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).