From: Roger Quadros <rogerq@kernel.org>
To: Andrew Davis <afd@ti.com>, Thinh.Nguyen@synopsys.com
Cc: gregkh@linuxfoundation.org, r-gunasekaran@ti.com, b-liu@ti.com,
nm@ti.com, srk@ti.com, linux-usb@vger.kernel.org,
linux-kernel@vger.kernel.org, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>
Subject: Re: [PATCH v2 5/5] usb: dwc3-am62: add workaround for Errata i2409
Date: Thu, 8 Feb 2024 14:20:50 +0200 [thread overview]
Message-ID: <330f901c-2d69-4666-90ed-9c558a4b3dfe@kernel.org> (raw)
In-Reply-To: <05a3ef7e-b4d6-4f87-b34d-cec5f4ecfb9f@ti.com>
On 05/02/2024 20:07, Andrew Davis wrote:
> On 2/5/24 8:12 AM, Roger Quadros wrote:
>> All AM62 devices have Errata i2409 [1] due to which
>> USB2 PHY may lock up due to short suspend.
>>
>> Workaround involves setting bit 5 and 4 PLL_REG12
>> in PHY2 register space after USB controller is brought
>> out of LPSC reset but before controller initialization.
>>
>> Handle this workaround.
>>
>> [1] - https://www.ti.com/lit/er/sprz487d/sprz487d.pdf
>>
>> Cc: Rob Herring <robh+dt@kernel.org>
>> Cc: Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
>> Cc: Conor Dooley <conor+dt@kernel.org>
>> Signed-off-by: Roger Quadros <rogerq@kernel.org>
>> ---
>>
>> Notes:
>> Changelog:
>> v2:
>> - don't add phy read/write helpers or add phy to private data
>> v1: https://lore.kernel.org/all/20240201121220.5523-5-rogerq@kernel.org/
>>
>> drivers/usb/dwc3/dwc3-am62.c | 21 ++++++++++++++++++++-
>> 1 file changed, 20 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/usb/dwc3/dwc3-am62.c b/drivers/usb/dwc3/dwc3-am62.c
>> index af1ce934e7fb..5ae5c3087b0f 100644
>> --- a/drivers/usb/dwc3/dwc3-am62.c
>> +++ b/drivers/usb/dwc3/dwc3-am62.c
>> @@ -101,6 +101,11 @@
>> #define PHY_CORE_VOLTAGE_MASK BIT(31)
>> #define PHY_PLL_REFCLK_MASK GENMASK(3, 0)
>> +/* USB PHY2 register offsets */
>> +#define USB_PHY_PLL_REG12 0x130
>> +#define USB_PHY_PLL_LDO_REF_EN BIT(5)
>> +#define USB_PHY_PLL_LDO_REF_EN_EN BIT(4)
>> +
>> #define DWC3_AM62_AUTOSUSPEND_DELAY 100
>> struct dwc3_am62 {
>> @@ -184,8 +189,9 @@ static int dwc3_ti_probe(struct platform_device *pdev)
>> struct device *dev = &pdev->dev;
>> struct device_node *node = pdev->dev.of_node;
>> struct dwc3_am62 *am62;
>> - int i, ret;
>> unsigned long rate;
>> + void __iomem *phy;
>> + int i, ret;
>> u32 reg;
>> am62 = devm_kzalloc(dev, sizeof(*am62), GFP_KERNEL);
>> @@ -201,6 +207,12 @@ static int dwc3_ti_probe(struct platform_device *pdev)
>> return PTR_ERR(am62->usbss);
>> }
>> + phy = devm_platform_ioremap_resource(pdev, 1);
>> + if (IS_ERR(phy)) {
>> + dev_err(dev, "can't map PHY IOMEM resource. Won't apply i2409 fix.\n");
>> + phy = NULL;
>> + }
>
> Why not move this down to where you use it below, then just have
> it be an if/else with the work around in the if (!IS_ERR(phy))
> and the warning in the else.
Seems reasonable. Will fix.
>
> Andrew
>
>> +
>> am62->usb2_refclk = devm_clk_get(dev, "ref");
>> if (IS_ERR(am62->usb2_refclk)) {
>> dev_err(dev, "can't get usb2_refclk\n");
>> @@ -227,6 +239,13 @@ static int dwc3_ti_probe(struct platform_device *pdev)
>> if (ret)
>> return ret;
>> + /* Workaround Errata i2409 */
>> + if (phy) {
>> + reg = readl(phy + USB_PHY_PLL_REG12);
>> + reg |= USB_PHY_PLL_LDO_REF_EN | USB_PHY_PLL_LDO_REF_EN_EN;
>> + writel(reg, phy + USB_PHY_PLL_REG12);
>> + }
>> +
>> /* VBUS divider select */
>> am62->vbus_divider = device_property_read_bool(dev, "ti,vbus-divider");
>> reg = dwc3_ti_readl(am62, USBSS_PHY_CONFIG);
--
cheers,
-roger
next prev parent reply other threads:[~2024-02-08 12:20 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-05 14:12 [PATCH v2 0/5] usb: dwc3-am62: module removal and errata fixes Roger Quadros
2024-02-05 14:12 ` [PATCH v2 1/5] usb: dwc3-am62: call of_platform_depopulate in .remove() Roger Quadros
2024-02-05 14:12 ` [PATCH v2 2/5] usb: dwc3-am62: fix error on module removal Roger Quadros
2024-02-05 14:12 ` [PATCH v2 3/5] usb: dwc3-am62: Fix PHY core voltage selection Roger Quadros
2024-02-05 14:12 ` [PATCH v2 4/5] dt-bindings: usb/ti,am62-usb.yaml: Add PHY2 register space Roger Quadros
2024-02-06 7:58 ` Krzysztof Kozlowski
2024-02-05 14:12 ` [PATCH v2 5/5] usb: dwc3-am62: add workaround for Errata i2409 Roger Quadros
2024-02-05 18:07 ` Andrew Davis
2024-02-08 12:20 ` Roger Quadros [this message]
2024-02-11 16:18 ` Francesco Dolcini
2024-02-14 9:40 ` Roger Quadros
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=330f901c-2d69-4666-90ed-9c558a4b3dfe@kernel.org \
--to=rogerq@kernel.org \
--cc=Thinh.Nguyen@synopsys.com \
--cc=afd@ti.com \
--cc=b-liu@ti.com \
--cc=conor+dt@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=nm@ti.com \
--cc=r-gunasekaran@ti.com \
--cc=robh+dt@kernel.org \
--cc=srk@ti.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox