From: <Sergiu.Moga@microchip.com>
To: <marex@denx.de>, <michal.simek@amd.com>, <jim.t90615@gmail.com>,
<sumit.garg@linaro.org>, <weijie.gao@mediatek.com>,
<sjg@chromium.org>, <Eugen.Hristev@microchip.com>,
<Cristian.Birsan@microchip.com>
Cc: <u-boot@lists.denx.de>, <Mihai.Sain@microchip.com>
Subject: Re: [PATCH 4/4] usb: ohci-at91: Add USB PHY functionality
Date: Tue, 3 Jan 2023 13:02:35 +0000 [thread overview]
Message-ID: <87cd8fdd-784b-837b-b7cb-38e303bfc27d@microchip.com> (raw)
In-Reply-To: <92352dd0-9606-ed73-ef93-33eee8e0e17c@denx.de>
On 03.01.2023 01:33, Marek Vasut wrote:
> On 12/23/22 13:34, Sergiu Moga wrote:
>> Add the ability to enable/disable whatever USB PHY's are
>> passed to the AT91 OHCI driver through DT.
>>
>> Signed-off-by: Sergiu Moga <sergiu.moga@microchip.com>
>> Tested-by: Mihai Sain <mihai.sain@microchip.com>
>> ---
>> drivers/usb/host/ohci-at91.c | 31 +++++++++++++++++++++++++++++++
>> 1 file changed, 31 insertions(+)
>>
>> diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c
>> index 5cf8f283e5..217f31b402 100644
>> --- a/drivers/usb/host/ohci-at91.c
>> +++ b/drivers/usb/host/ohci-at91.c
>> @@ -74,6 +74,10 @@ int usb_cpu_init_fail(void)
>> #include <usb.h>
>> #include "ohci.h"
>>
>> +#if CONFIG_IS_ENABLED(PHY_MICROCHIP_SAMA7_USB)
>> +#include <generic-phy.h>
>> +#endif
>> +
>> #define AT91_MAX_USBH_PORTS 3
>>
>> #define at91_for_each_port(index) \
>> @@ -91,6 +95,10 @@ struct ohci_at91_priv {
>> struct clk *fclk;
>> struct clk *hclk;
>> bool clocked;
>> +
>> +#if CONFIG_IS_ENABLED(PHY_MICROCHIP_SAMA7_USB)
>> + struct phy phy[AT91_MAX_USBH_PORTS];
>> +#endif
>> };
>>
>> static void at91_start_clock(struct ohci_at91_priv *ohci_at91)
>> @@ -98,6 +106,13 @@ static void at91_start_clock(struct ohci_at91_priv
>> *ohci_at91)
>> if (ohci_at91->clocked)
>> return;
>>
>> +#if CONFIG_IS_ENABLED(PHY_MICROCHIP_SAMA7_USB)
>
> Use plain:
>
> if (CONFIG_IS_ENABLED(...)) { ... }
>
> instead of the #if ... , the compiler would optimize the code out
> correctly.
>
The build system complains that the generic_phy_* methods are not
present and, if possible, I would like not to have to enable the PHY
related CONFIGs on the boards that do not need it only to avoid these
warnings.
>> + int i;
>> +
>> + at91_for_each_port(i)
>> + generic_phy_power_on(&ohci_at91->phy[i]);
>
> Look at generic_phy_get_bulk() and generic_phy_power_on_bulk() and co.
> those should get rid of this loop altogether.
>
> [...]
next prev parent reply other threads:[~2023-01-03 13:02 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-23 12:34 [PATCH 0/4] Register at91 OHCI into DM and add SAMA7 USB PHY's Sergiu Moga
2022-12-23 12:34 ` [PATCH 1/4] phy: at91: Add support for the USB 2.0 PHY's of SAMA7 Sergiu Moga
2022-12-23 12:34 ` [PATCH 2/4] usb: ohci-at91: Enable OHCI functionality and register into DM Sergiu Moga
2023-01-02 23:26 ` Marek Vasut
2023-01-03 12:11 ` Sergiu.Moga
2023-01-03 14:34 ` Marek Vasut
2023-01-03 15:49 ` Sergiu.Moga
2023-01-03 15:57 ` Marek Vasut
2023-01-03 16:01 ` Sergiu.Moga
2023-01-03 16:04 ` Marek Vasut
2022-12-23 12:34 ` [PATCH 3/4] usb: ohci-at91: Add `ohci_t` field in `ohci_at91_priv` Sergiu Moga
2023-01-02 23:27 ` Marek Vasut
2022-12-23 12:34 ` [PATCH 4/4] usb: ohci-at91: Add USB PHY functionality Sergiu Moga
2023-01-02 23:33 ` Marek Vasut
2023-01-03 13:02 ` Sergiu.Moga [this message]
2023-01-03 14:38 ` Marek Vasut
2022-12-23 12:44 ` [PATCH 0/4] Register at91 OHCI into DM and add SAMA7 USB PHY's Sergiu.Moga
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=87cd8fdd-784b-837b-b7cb-38e303bfc27d@microchip.com \
--to=sergiu.moga@microchip.com \
--cc=Cristian.Birsan@microchip.com \
--cc=Eugen.Hristev@microchip.com \
--cc=Mihai.Sain@microchip.com \
--cc=jim.t90615@gmail.com \
--cc=marex@denx.de \
--cc=michal.simek@amd.com \
--cc=sjg@chromium.org \
--cc=sumit.garg@linaro.org \
--cc=u-boot@lists.denx.de \
--cc=weijie.gao@mediatek.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