From: narmstrong@baylibre.com (Neil Armstrong)
To: linus-amlogic@lists.infradead.org
Subject: [PATCH u-boot 2/3] usb: host: dwc3: Add support for multiple PHYs
Date: Thu, 29 Mar 2018 16:23:48 +0200 [thread overview]
Message-ID: <19da48b5-c314-1a8a-e3e4-de1107b196e8@baylibre.com> (raw)
In-Reply-To: <630e8bba-a5d8-2965-98a3-34ca8ed2c868@denx.de>
On 29/03/2018 15:53, Marek Vasut wrote:
> On 03/29/2018 03:42 PM, Neil Armstrong wrote:
>> DWC3 Ips can have more than 1 PHY for USB2 and 1 PHY for USB3, add support
>> for a generic number of PHYs and adapt the code to handle a generic
>> number of PHYs.
>>
>> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
>> ---
>> drivers/usb/host/xhci-dwc3.c | 105 ++++++++++++++++++++++++-------------------
>> 1 file changed, 58 insertions(+), 47 deletions(-)
>>
>> diff --git a/drivers/usb/host/xhci-dwc3.c b/drivers/usb/host/xhci-dwc3.c
>> index 1022dd5..da29162 100644
>> --- a/drivers/usb/host/xhci-dwc3.c
>> +++ b/drivers/usb/host/xhci-dwc3.c
>> @@ -22,8 +22,8 @@
>> DECLARE_GLOBAL_DATA_PTR;
>>
>> struct xhci_dwc3_platdata {
>> - struct phy usb_phy;
>> - struct phy usb3_phy;
>> + struct phy *usb_phys;
>> + int num_phys;
>> };
>>
>> void dwc3_set_mode(struct dwc3 *dwc3_reg, u32 mode)
>> @@ -113,45 +113,74 @@ void dwc3_set_fladj(struct dwc3 *dwc3_reg, u32 val)
>> }
>>
>> #ifdef CONFIG_DM_USB
>> -static int xhci_dwc3_setup_phy(struct udevice *dev, int index, struct phy *phy)
>> +static int xhci_dwc3_setup_phy(struct udevice *dev, int count)
>> {
>> - int ret = 0;
>> + struct xhci_dwc3_platdata *plat = dev_get_platdata(dev);
>> + int i, ret;
>> +
>> + if (!count)
>> + return 0;
>>
>> - ret = generic_phy_get_by_index(dev, index, phy);
>> - if (ret) {
>> - if (ret != -ENOENT) {
>> - pr_err("Failed to get USB PHY for %s\n", dev->name);
>> + plat->usb_phys = devm_kcalloc(dev, count, sizeof(struct phy),
>> + GFP_KERNEL);
>> + if (!plat->usb_phys)
>> + return -ENOMEM;
>> +
>> + for (i = 0; i < count; i++) {
>> + ret = generic_phy_get_by_index(dev, i, &plat->usb_phys[i]);
>> + if (ret && ret != -ENOENT) {
>> + pr_err("Failed to get USB PHY%d for %s\n",
>> + i, dev->name);
>> return ret;
>> }
>> - } else {
>> - ret = generic_phy_init(phy);
>> +
>> + ++plat->num_phys;
>> + }
>> +
>> + for (i = 0; i < plat->num_phys; i++) {
>> + ret = generic_phy_init(&plat->usb_phys[i]);
>> if (ret) {
>> - pr_err("Can't init USB PHY for %s\n", dev->name);
>> - return ret;
>> + pr_err("Can't init USB PHY%d for %s\n",
>> + i, dev->name);
>> + goto phys_err;
>> }
>> - ret = generic_phy_power_on(phy);
>> + }
>> +
>> + for (i = 0; i < plat->num_phys; i++) {
>> + ret = generic_phy_power_on(&plat->usb_phys[i]);
>> if (ret) {
>> - pr_err("Can't power on USB PHY for %s\n", dev->name);
>> - generic_phy_exit(phy);
>> - return ret;
>> + pr_err("Can't power USB PHY%d for %s\n",
>> + i, dev->name);
>> + goto phys_err;
>> }
>> }
>>
>> return 0;
>> +
>> +phys_err:
>> + for (; i >= 0; i--) {
>> + generic_phy_power_off(&plat->usb_phys[i]);
>> + generic_phy_exit(&plat->usb_phys[i]);
>> + }
>
> This will not work if all the PHYs are inited, but the power up function
> fails -- at that point the phy_exit will not be called for all inited PHys.
>
Ok will split in 2 parts.
Neil
next prev parent reply other threads:[~2018-03-29 14:23 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-29 13:42 [PATCH u-boot 0/3] Add USB Support for Amlogic Meson GXL SoCs Neil Armstrong
2018-03-29 13:42 ` [PATCH u-boot 1/3] usb: host: Add simple of glue driver for DWC3 USB Controllers integration Neil Armstrong
2018-03-29 13:52 ` Marek Vasut
2018-03-29 14:23 ` Neil Armstrong
2018-03-29 14:24 ` Marek Vasut
2018-03-29 14:27 ` Neil Armstrong
2018-03-29 14:31 ` Marek Vasut
2018-03-29 13:42 ` [PATCH u-boot 2/3] usb: host: dwc3: Add support for multiple PHYs Neil Armstrong
2018-03-29 13:53 ` Marek Vasut
2018-03-29 14:23 ` Neil Armstrong [this message]
2018-03-29 13:42 ` [PATCH u-boot 3/3] phy: Add Amlogic Meson USB2 & USB3 Generic PHY drivers Neil Armstrong
2018-03-29 13:54 ` Marek Vasut
2018-03-29 14:24 ` Neil Armstrong
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=19da48b5-c314-1a8a-e3e4-de1107b196e8@baylibre.com \
--to=narmstrong@baylibre.com \
--cc=linus-amlogic@lists.infradead.org \
/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
all inboxes | Powered by JetHome®