From: Kishon Vijay Abraham I <kishon@ti.com>
To: George Cherian <george.cherian@ti.com>
Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-doc@vger.kernel.org, devicetree@vger.kernel.org,
s.nawrocki@samsung.com, tony@atomide.com,
gregkh@linuxfoundation.org, rob@landley.net,
galak@codeaurora.org, ijc+devicetree@hellion.org.uk,
mark.rutland@arm.com, pawel.moll@arm.com, robh+dt@kernel.org
Subject: Re: [PATCH 2/3] phy: omap-usb2: Provide workaround for USB2PHY false disconnect
Date: Wed, 5 Mar 2014 12:37:12 +0530 [thread overview]
Message-ID: <5316CD20.3030909@ti.com> (raw)
In-Reply-To: <1393842174-29868-1-git-send-email-george.cherian@ti.com>
Hi,
On Monday 03 March 2014 03:52 PM, George Cherian wrote:
> From: Austin Beam <austinbeam@ti.com>
>
> Enable the dra7x errata workaround for false disconnect problem
> with USB2PHY. False disconnects were detected with some of the devices.
> Reduce the sensitivity of the disconnect logic within the USB2PHY subsystem
> to enusre these false disconnects are not registered.
>
> [george.cherian@ti.com]
> While at that, pass proper flags for each SoC's. This is a common driver
> used across OMAP4,OMAP5,DRA7xx and AM437x USB2PHY.
>
> False disconnect workaround is currently applicable for only DRA7x.
>
> Update the Documentation also to add new comaptible.
>
> Signed-off-by: Austin Beam <austinbeam@ti.com>
> Signed-off-by: George Cherian <george.cherian@ti.com>
> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
> ---
> Documentation/devicetree/bindings/usb/usb-phy.txt | 3 +-
> drivers/phy/phy-omap-usb2.c | 48 +++++++++++++++++++++++
> include/linux/usb/omap_usb.h | 3 ++
> 3 files changed, 53 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/usb/usb-phy.txt b/Documentation/devicetree/bindings/usb/usb-phy.txt
> index b3fa409..03de61a5 100644
> --- a/Documentation/devicetree/bindings/usb/usb-phy.txt
> +++ b/Documentation/devicetree/bindings/usb/usb-phy.txt
> @@ -4,7 +4,8 @@ OMAP USB2 PHY
>
> Required properties:
> - compatible: Should be either of
> - * "ti,omap-usb2" for OMAP4, OMAP5, DRA7
> + * "ti,omap-usb2" for OMAP4 and OMAP5
> + * "ti,dra7x-usb2" for DRA7
> * "ti,am437x-usb2" for AM437x
> - reg : Address and length of the register set for the device.
> - #phy-cells: determine the number of cells that should be given in the
> diff --git a/drivers/phy/phy-omap-usb2.c b/drivers/phy/phy-omap-usb2.c
> index d54f24b..80ba7f0 100644
> --- a/drivers/phy/phy-omap-usb2.c
> +++ b/drivers/phy/phy-omap-usb2.c
> @@ -31,6 +31,9 @@
> #include <linux/phy/phy.h>
> #include <linux/of_platform.h>
>
> +#define USB2PHY_DISCON_BYP_LATCH (1 << 31)
> +#define USB2PHY_ANA_CONFIG1 0x4c
> +
> /**
> * omap_usb2_set_comparator - links the comparator present in the sytem with
> * this phy
> @@ -138,7 +141,30 @@ static int omap_usb_power_on(struct phy *x)
> return 0;
> }
>
> +static int omap_usb_init(struct phy *x)
> +{
> + struct omap_usb *phy = phy_get_drvdata(x);
> + u32 val;
> +
> + if (phy->flags & OMAP_USB2_CALIBRATE_FALSE_DISCONNECT) {
> + /*
> + *
> + * Reduce the sensitivity of internal PHY by enabling the
> + * DISCON_BYP_LATCH of the USB2PHY_ANA_CONFIG1 register. This
> + * resolves issues with certain devices which can otherwise
> + * be prone to false disconnects.
> + *
> + */
> + val = omap_usb_readl(phy->phy_base, USB2PHY_ANA_CONFIG1);
> + val |= USB2PHY_DISCON_BYP_LATCH;
> + omap_usb_writel(phy->phy_base, USB2PHY_ANA_CONFIG1, val);
> + }
> +
> + return 0;
> +}
> +
> static struct phy_ops ops = {
> + .init = omap_usb_init,
> .power_on = omap_usb_power_on,
> .power_off = omap_usb_power_off,
> .owner = THIS_MODULE,
> @@ -150,6 +176,11 @@ static const struct usb_phy_data omap_usb2_data = {
> .flags = OMAP_USB2_HAS_START_SRP | OMAP_USB2_HAS_SET_VBUS,
> };
>
> +static const struct usb_phy_data dra7x_usb2_data = {
> + .label = "dra7x_usb2",
> + .flags = OMAP_USB2_CALIBRATE_FALSE_DISCONNECT,
> +};
> +
> static const struct usb_phy_data am437x_usb2_data = {
> .label = "am437x_usb2",
> .flags = 0,
> @@ -161,6 +192,10 @@ static const struct of_device_id omap_usb2_id_table[] = {
> .data = &omap_usb2_data,
> },
> {
> + .compatible = "ti,dra7x-usb2",
> + .data = &dra7x_usb2_data,
> + },
> + {
> .compatible = "ti,am437x-usb2",
> .data = &am437x_usb2_data,
> },
> @@ -173,6 +208,7 @@ static int omap_usb2_probe(struct platform_device *pdev)
> {
> struct omap_usb *phy;
> struct phy *generic_phy;
> + struct resource *res;
> struct phy_provider *phy_provider;
> struct usb_otg *otg;
> struct device_node *node = pdev->dev.of_node;
> @@ -208,6 +244,18 @@ static int omap_usb2_probe(struct platform_device *pdev)
> phy->phy.otg = otg;
> phy->phy.type = USB_PHY_TYPE_USB2;
>
> + if (phy_data->flags & OMAP_USB2_CALIBRATE_FALSE_DISCONNECT) {
> + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> + if (!res) {
> + dev_err(&pdev->dev, "memory resource not available\n");
> + return -ENODEV;
> + }
You can remove the error check here and..
> + phy->phy_base = devm_request_and_ioremap(&pdev->dev, res);
use devm_ioremap_resource instead.
Thanks
Kishon
WARNING: multiple messages have this Message-ID (diff)
From: Kishon Vijay Abraham I <kishon@ti.com>
To: George Cherian <george.cherian@ti.com>
Cc: <linux-usb@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-doc@vger.kernel.org>, <devicetree@vger.kernel.org>,
<s.nawrocki@samsung.com>, <tony@atomide.com>,
<gregkh@linuxfoundation.org>, <rob@landley.net>,
<galak@codeaurora.org>, <ijc+devicetree@hellion.org.uk>,
<mark.rutland@arm.com>, <pawel.moll@arm.com>,
<robh+dt@kernel.org>
Subject: Re: [PATCH 2/3] phy: omap-usb2: Provide workaround for USB2PHY false disconnect
Date: Wed, 5 Mar 2014 12:37:12 +0530 [thread overview]
Message-ID: <5316CD20.3030909@ti.com> (raw)
In-Reply-To: <1393842174-29868-1-git-send-email-george.cherian@ti.com>
Hi,
On Monday 03 March 2014 03:52 PM, George Cherian wrote:
> From: Austin Beam <austinbeam@ti.com>
>
> Enable the dra7x errata workaround for false disconnect problem
> with USB2PHY. False disconnects were detected with some of the devices.
> Reduce the sensitivity of the disconnect logic within the USB2PHY subsystem
> to enusre these false disconnects are not registered.
>
> [george.cherian@ti.com]
> While at that, pass proper flags for each SoC's. This is a common driver
> used across OMAP4,OMAP5,DRA7xx and AM437x USB2PHY.
>
> False disconnect workaround is currently applicable for only DRA7x.
>
> Update the Documentation also to add new comaptible.
>
> Signed-off-by: Austin Beam <austinbeam@ti.com>
> Signed-off-by: George Cherian <george.cherian@ti.com>
> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
> ---
> Documentation/devicetree/bindings/usb/usb-phy.txt | 3 +-
> drivers/phy/phy-omap-usb2.c | 48 +++++++++++++++++++++++
> include/linux/usb/omap_usb.h | 3 ++
> 3 files changed, 53 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/usb/usb-phy.txt b/Documentation/devicetree/bindings/usb/usb-phy.txt
> index b3fa409..03de61a5 100644
> --- a/Documentation/devicetree/bindings/usb/usb-phy.txt
> +++ b/Documentation/devicetree/bindings/usb/usb-phy.txt
> @@ -4,7 +4,8 @@ OMAP USB2 PHY
>
> Required properties:
> - compatible: Should be either of
> - * "ti,omap-usb2" for OMAP4, OMAP5, DRA7
> + * "ti,omap-usb2" for OMAP4 and OMAP5
> + * "ti,dra7x-usb2" for DRA7
> * "ti,am437x-usb2" for AM437x
> - reg : Address and length of the register set for the device.
> - #phy-cells: determine the number of cells that should be given in the
> diff --git a/drivers/phy/phy-omap-usb2.c b/drivers/phy/phy-omap-usb2.c
> index d54f24b..80ba7f0 100644
> --- a/drivers/phy/phy-omap-usb2.c
> +++ b/drivers/phy/phy-omap-usb2.c
> @@ -31,6 +31,9 @@
> #include <linux/phy/phy.h>
> #include <linux/of_platform.h>
>
> +#define USB2PHY_DISCON_BYP_LATCH (1 << 31)
> +#define USB2PHY_ANA_CONFIG1 0x4c
> +
> /**
> * omap_usb2_set_comparator - links the comparator present in the sytem with
> * this phy
> @@ -138,7 +141,30 @@ static int omap_usb_power_on(struct phy *x)
> return 0;
> }
>
> +static int omap_usb_init(struct phy *x)
> +{
> + struct omap_usb *phy = phy_get_drvdata(x);
> + u32 val;
> +
> + if (phy->flags & OMAP_USB2_CALIBRATE_FALSE_DISCONNECT) {
> + /*
> + *
> + * Reduce the sensitivity of internal PHY by enabling the
> + * DISCON_BYP_LATCH of the USB2PHY_ANA_CONFIG1 register. This
> + * resolves issues with certain devices which can otherwise
> + * be prone to false disconnects.
> + *
> + */
> + val = omap_usb_readl(phy->phy_base, USB2PHY_ANA_CONFIG1);
> + val |= USB2PHY_DISCON_BYP_LATCH;
> + omap_usb_writel(phy->phy_base, USB2PHY_ANA_CONFIG1, val);
> + }
> +
> + return 0;
> +}
> +
> static struct phy_ops ops = {
> + .init = omap_usb_init,
> .power_on = omap_usb_power_on,
> .power_off = omap_usb_power_off,
> .owner = THIS_MODULE,
> @@ -150,6 +176,11 @@ static const struct usb_phy_data omap_usb2_data = {
> .flags = OMAP_USB2_HAS_START_SRP | OMAP_USB2_HAS_SET_VBUS,
> };
>
> +static const struct usb_phy_data dra7x_usb2_data = {
> + .label = "dra7x_usb2",
> + .flags = OMAP_USB2_CALIBRATE_FALSE_DISCONNECT,
> +};
> +
> static const struct usb_phy_data am437x_usb2_data = {
> .label = "am437x_usb2",
> .flags = 0,
> @@ -161,6 +192,10 @@ static const struct of_device_id omap_usb2_id_table[] = {
> .data = &omap_usb2_data,
> },
> {
> + .compatible = "ti,dra7x-usb2",
> + .data = &dra7x_usb2_data,
> + },
> + {
> .compatible = "ti,am437x-usb2",
> .data = &am437x_usb2_data,
> },
> @@ -173,6 +208,7 @@ static int omap_usb2_probe(struct platform_device *pdev)
> {
> struct omap_usb *phy;
> struct phy *generic_phy;
> + struct resource *res;
> struct phy_provider *phy_provider;
> struct usb_otg *otg;
> struct device_node *node = pdev->dev.of_node;
> @@ -208,6 +244,18 @@ static int omap_usb2_probe(struct platform_device *pdev)
> phy->phy.otg = otg;
> phy->phy.type = USB_PHY_TYPE_USB2;
>
> + if (phy_data->flags & OMAP_USB2_CALIBRATE_FALSE_DISCONNECT) {
> + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> + if (!res) {
> + dev_err(&pdev->dev, "memory resource not available\n");
> + return -ENODEV;
> + }
You can remove the error check here and..
> + phy->phy_base = devm_request_and_ioremap(&pdev->dev, res);
use devm_ioremap_resource instead.
Thanks
Kishon
next prev parent reply other threads:[~2014-03-05 7:07 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-03 10:10 [PATCH 0/3] phy-omap-usb2 driver enhancements George Cherian
2014-03-03 10:10 ` George Cherian
2014-03-03 10:10 ` [PATCH 1/3] phy: omap-usb2: Adapt phy-omap-usb2 for AM437x George Cherian
2014-03-03 10:10 ` George Cherian
[not found] ` <1393841424-27656-2-git-send-email-george.cherian-l0cyMroinI0@public.gmane.org>
2014-03-06 11:13 ` Kishon Vijay Abraham I
2014-03-06 11:13 ` Kishon Vijay Abraham I
2014-03-06 12:44 ` George Cherian
2014-03-06 12:44 ` George Cherian
2014-03-03 10:22 ` [PATCH 2/3] phy: omap-usb2: Provide workaround for USB2PHY false disconnect George Cherian
2014-03-03 10:22 ` George Cherian
[not found] ` <1393842174-29868-1-git-send-email-george.cherian-l0cyMroinI0@public.gmane.org>
2014-03-03 10:22 ` [PATCH 3/3] phy: omap-usb2: Add different compatible for OMAP5 George Cherian
2014-03-03 10:22 ` George Cherian
2014-03-05 7:07 ` Kishon Vijay Abraham I [this message]
2014-03-05 7:07 ` [PATCH 2/3] phy: omap-usb2: Provide workaround for USB2PHY false disconnect Kishon Vijay Abraham I
2014-03-06 9:59 ` [PATCH v2 " George Cherian
2014-03-06 9:59 ` George Cherian
-- strict thread matches above, loose matches on Subject: below --
2014-03-03 10:16 [PATCH " George Cherian
2014-03-03 10:16 ` George Cherian
2014-03-03 10:16 ` George Cherian
2014-03-03 10:16 ` George Cherian
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5316CD20.3030909@ti.com \
--to=kishon@ti.com \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=george.cherian@ti.com \
--cc=gregkh@linuxfoundation.org \
--cc=ijc+devicetree@hellion.org.uk \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=pawel.moll@arm.com \
--cc=rob@landley.net \
--cc=robh+dt@kernel.org \
--cc=s.nawrocki@samsung.com \
--cc=tony@atomide.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.