From: rogerq@ti.com (Roger Quadros)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 10/30] USB: ehci-omap: Use PHY APIs to get the PHY device and put it out of suspend
Date: Mon, 28 Jan 2013 17:58:29 +0200 [thread overview]
Message-ID: <5106A025.2040003@ti.com> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1301281034060.1997-100000@iolanthe.rowland.org>
On 01/28/2013 05:40 PM, Alan Stern wrote:
> On Mon, 28 Jan 2013, Roger Quadros wrote:
>
>> For each port that is in PHY mode we obtain a PHY device using the USB PHY
>> library and put it out of suspend.
>>
>> It is upto platform code to associate the PHY to the controller's
>> port and it is upto the PHY driver to manage the PHY's resources.
>
> "up to" is two words, not one.
right :P
>
>> Signed-off-by: Roger Quadros <rogerq@ti.com>
>> ---
>> drivers/usb/host/ehci-omap.c | 54 ++++++++++++++++++++++++++++++++++++++++++
>> 1 files changed, 54 insertions(+), 0 deletions(-)
>>
>> diff --git a/drivers/usb/host/ehci-omap.c b/drivers/usb/host/ehci-omap.c
>> index fd2f5450..a35e44e 100644
>> --- a/drivers/usb/host/ehci-omap.c
>> +++ b/drivers/usb/host/ehci-omap.c
>> @@ -70,6 +70,11 @@ static const char hcd_name[] = "ehci-omap";
>>
>> /*-------------------------------------------------------------------------*/
>>
>> +struct omap_hcd {
>> + struct usb_hcd *hcd;
>
> This pointer is not needed any more.
>
OK.
>> + struct usb_phy **phy; /* one PHY for each port */
>> + int nports;
>
> Is there a reasonable upper limit on the number of ports? If there is
> you could just put a fixed-size array here.
For now there are only 3 which is defined in OMAP3_HS_USB_PORTS.
>
>> @@ -233,6 +240,39 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev)
>> hcd->rsrc_len = resource_size(res);
>> hcd->regs = regs;
>>
>> + omap = (struct omap_hcd *)hcd_to_ehci(hcd)->priv;
>> + omap->nports = pdata->nports;
>> + i = sizeof(struct usb_phy *) * omap->nports;
>> + omap->phy = devm_kzalloc(&pdev->dev, i, GFP_KERNEL);
>> + if (!omap->phy) {
>> + dev_err(dev, "Memory allocation failed\n");
>> + return -ENOMEM;
>
> You have to put a "goto" here, not a "return". The hcd must be cleaned
> up properly.
good catch!
>
>> @@ -295,11 +342,18 @@ static int ehci_hcd_omap_remove(struct platform_device *pdev)
>> {
>> struct device *dev = &pdev->dev;
>> struct usb_hcd *hcd = dev_get_drvdata(dev);
>> + struct omap_hcd *omap = (struct omap_hcd *)hcd_to_ehci(hcd)->priv;
>
> What's with the weird spacing in the first two declarations? This
> isn't a typeset document where the paragraphs need to be fully
> justified. :-)
Funny that it is all over the place ;). I'll fix it around whatever I touch.
>
>> + int i;
>>
>> usb_remove_hcd(hcd);
>> disable_put_regulator(dev->platform_data);
>> usb_put_hcd(hcd);
>
> This line must be moved down. When the hcd is deallocated, the
> omap_hcd structure goes with it.
Good one. Will fix.
>
>> + for (i = 0; i < omap->nports; i++) {
>> + if (omap->phy[i])
>> + usb_phy_shutdown(omap->phy[i]);
>> + }
>> +
>
regards,
-roger
WARNING: multiple messages have this Message-ID (diff)
From: Roger Quadros <rogerq@ti.com>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: <tony@atomide.com>, <linux@arm.linux.org.uk>,
<sameo@linux.intel.com>, <balbi@ti.com>,
<gregkh@linuxfoundation.org>, <eballetbo@gmail.com>,
<javier@dowhile0.org>, <sshtylyov@mvista.com>,
<linux-usb@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v2 10/30] USB: ehci-omap: Use PHY APIs to get the PHY device and put it out of suspend
Date: Mon, 28 Jan 2013 17:58:29 +0200 [thread overview]
Message-ID: <5106A025.2040003@ti.com> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1301281034060.1997-100000@iolanthe.rowland.org>
On 01/28/2013 05:40 PM, Alan Stern wrote:
> On Mon, 28 Jan 2013, Roger Quadros wrote:
>
>> For each port that is in PHY mode we obtain a PHY device using the USB PHY
>> library and put it out of suspend.
>>
>> It is upto platform code to associate the PHY to the controller's
>> port and it is upto the PHY driver to manage the PHY's resources.
>
> "up to" is two words, not one.
right :P
>
>> Signed-off-by: Roger Quadros <rogerq@ti.com>
>> ---
>> drivers/usb/host/ehci-omap.c | 54 ++++++++++++++++++++++++++++++++++++++++++
>> 1 files changed, 54 insertions(+), 0 deletions(-)
>>
>> diff --git a/drivers/usb/host/ehci-omap.c b/drivers/usb/host/ehci-omap.c
>> index fd2f5450..a35e44e 100644
>> --- a/drivers/usb/host/ehci-omap.c
>> +++ b/drivers/usb/host/ehci-omap.c
>> @@ -70,6 +70,11 @@ static const char hcd_name[] = "ehci-omap";
>>
>> /*-------------------------------------------------------------------------*/
>>
>> +struct omap_hcd {
>> + struct usb_hcd *hcd;
>
> This pointer is not needed any more.
>
OK.
>> + struct usb_phy **phy; /* one PHY for each port */
>> + int nports;
>
> Is there a reasonable upper limit on the number of ports? If there is
> you could just put a fixed-size array here.
For now there are only 3 which is defined in OMAP3_HS_USB_PORTS.
>
>> @@ -233,6 +240,39 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev)
>> hcd->rsrc_len = resource_size(res);
>> hcd->regs = regs;
>>
>> + omap = (struct omap_hcd *)hcd_to_ehci(hcd)->priv;
>> + omap->nports = pdata->nports;
>> + i = sizeof(struct usb_phy *) * omap->nports;
>> + omap->phy = devm_kzalloc(&pdev->dev, i, GFP_KERNEL);
>> + if (!omap->phy) {
>> + dev_err(dev, "Memory allocation failed\n");
>> + return -ENOMEM;
>
> You have to put a "goto" here, not a "return". The hcd must be cleaned
> up properly.
good catch!
>
>> @@ -295,11 +342,18 @@ static int ehci_hcd_omap_remove(struct platform_device *pdev)
>> {
>> struct device *dev = &pdev->dev;
>> struct usb_hcd *hcd = dev_get_drvdata(dev);
>> + struct omap_hcd *omap = (struct omap_hcd *)hcd_to_ehci(hcd)->priv;
>
> What's with the weird spacing in the first two declarations? This
> isn't a typeset document where the paragraphs need to be fully
> justified. :-)
Funny that it is all over the place ;). I'll fix it around whatever I touch.
>
>> + int i;
>>
>> usb_remove_hcd(hcd);
>> disable_put_regulator(dev->platform_data);
>> usb_put_hcd(hcd);
>
> This line must be moved down. When the hcd is deallocated, the
> omap_hcd structure goes with it.
Good one. Will fix.
>
>> + for (i = 0; i < omap->nports; i++) {
>> + if (omap->phy[i])
>> + usb_phy_shutdown(omap->phy[i]);
>> + }
>> +
>
regards,
-roger
next prev parent reply other threads:[~2013-01-28 15:58 UTC|newest]
Thread overview: 202+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-28 11:30 [PATCH v2 00/30] USB: omap-ehci: Move PHY management to PHY driver Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-01-28 11:30 ` [PATCH 01/30] USB: EHCI: split ehci-omap out to a separate driver Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:11 ` Felipe Balbi
2013-02-05 9:11 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 02/30] usb: phy: nop: use devm_kzalloc() Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:14 ` Felipe Balbi
2013-02-05 9:14 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 03/30] usb: phy: nop: Manage PHY clock Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:17 ` Felipe Balbi
2013-02-05 9:17 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 04/30] usb: phy: nop: Handle power supply regulator for the PHY Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:20 ` Felipe Balbi
2013-02-05 9:20 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 05/30] usb: phy: nop: Handle RESET " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:22 ` Felipe Balbi
2013-02-05 9:22 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 06/30] usb: phy: nop: use new PHY API to register PHY Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:23 ` Felipe Balbi
2013-02-05 9:23 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 07/30] mfd: omap-usb-host: update nports in platform_data Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:24 ` Felipe Balbi
2013-02-05 9:24 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 08/30] mfd: omap-usb-host: Remove PHY reset handling code Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:25 ` Felipe Balbi
2013-02-05 9:25 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 09/30] USB: ehci-omap: Use devm_request_and_ioremap() Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-01-28 15:17 ` Alan Stern
2013-01-28 15:17 ` Alan Stern
2013-01-28 15:20 ` Russell King - ARM Linux
2013-01-28 15:20 ` Russell King - ARM Linux
2013-01-29 15:34 ` Alan Stern
2013-01-29 15:34 ` Alan Stern
2013-01-29 16:01 ` Russell King - ARM Linux
2013-01-29 16:01 ` Russell King - ARM Linux
2013-01-29 22:08 ` Greg KH
2013-01-29 22:08 ` Greg KH
2013-02-05 9:25 ` Felipe Balbi
2013-02-05 9:25 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 10/30] USB: ehci-omap: Use PHY APIs to get the PHY device and put it out of suspend Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-01-28 15:40 ` Alan Stern
2013-01-28 15:40 ` Alan Stern
2013-01-28 15:58 ` Roger Quadros [this message]
2013-01-28 15:58 ` Roger Quadros
2013-01-29 9:50 ` [PATCH v3 " Roger Quadros
2013-01-29 9:50 ` Roger Quadros
2013-01-29 9:57 ` Felipe Balbi
2013-01-29 9:57 ` Felipe Balbi
2013-01-29 10:08 ` Roger Quadros
2013-01-29 10:08 ` Roger Quadros
2013-01-29 10:12 ` Felipe Balbi
2013-01-29 10:12 ` Felipe Balbi
2013-01-29 15:30 ` Alan Stern
2013-01-29 15:30 ` Alan Stern
2013-01-29 15:33 ` Roger Quadros
2013-01-29 15:33 ` Roger Quadros
2013-02-05 9:13 ` Felipe Balbi
2013-02-05 9:13 ` Felipe Balbi
2013-02-05 9:26 ` Felipe Balbi
2013-02-05 9:26 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 11/30] usb: ehci-omap: Remove PHY reset handling code Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-01-28 17:34 ` Alan Stern
2013-01-28 17:34 ` Alan Stern
2013-02-05 9:27 ` Felipe Balbi
2013-02-05 9:27 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 12/30] usb: ehci-omap: Remove PHY regulator " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-01-28 17:35 ` Alan Stern
2013-01-28 17:35 ` Alan Stern
2013-02-05 9:27 ` Felipe Balbi
2013-02-05 9:27 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 13/30] ARM: OMAP2+: omap4panda: Provide USB Host's PHY platform data Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:28 ` Felipe Balbi
2013-02-05 9:28 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH v2 14/30] ARM: OMAP2+: omap4panda: Adapt to ehci-omap changes Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:31 ` Felipe Balbi
2013-02-05 9:31 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 15/30] ARM: OMAP3: Beagle: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:31 ` Felipe Balbi
2013-02-05 9:31 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 16/30] ARM: OMAP3: 3430SDP: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:31 ` Felipe Balbi
2013-02-05 9:31 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 17/30] ARM: OMAP3: 3630SDP: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:31 ` Felipe Balbi
2013-02-05 9:31 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 18/30] ARM: OMAP: AM3517crane: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:32 ` Felipe Balbi
2013-02-05 9:32 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 19/30] ARM: OMAP: AM3517evm: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:32 ` Felipe Balbi
2013-02-05 9:32 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 20/30] ARM: OMAP3: cm-t35: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:32 ` Felipe Balbi
2013-02-05 9:32 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 21/30] ARM: OMAP3: cm-t3517: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:32 ` Felipe Balbi
2013-02-05 9:32 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 22/30] ARM: OMAP: devkit8000: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:33 ` Felipe Balbi
2013-02-05 9:33 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 23/30] ARM: OMAP3: igep0020: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:33 ` Felipe Balbi
2013-02-05 9:33 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 24/30] ARM: OMAP3: omap3evm: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:33 ` Felipe Balbi
2013-02-05 9:33 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 25/30] ARM: OMAP3: omap3pandora: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:33 ` Felipe Balbi
2013-02-05 9:33 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 26/30] ARM: OMAP3: omap3stalker: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:34 ` Felipe Balbi
2013-02-05 9:34 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 27/30] ARM: OMAP3: omap3touchbook: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:34 ` Felipe Balbi
2013-02-05 9:34 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 28/30] ARM: OMAP3: overo: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:40 ` Felipe Balbi
2013-02-05 9:40 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 29/30] ARM: OMAP: zoom: " Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:40 ` Felipe Balbi
2013-02-05 9:40 ` Felipe Balbi
2013-01-28 11:30 ` [PATCH 30/30] ARM: OMAP: USB: Remove unused fields from struct usbhs_omap_platform_data Roger Quadros
2013-01-28 11:30 ` Roger Quadros
2013-02-05 9:40 ` Felipe Balbi
2013-02-05 9:40 ` Felipe Balbi
2013-01-30 12:08 ` [PATCH v2 00/30] USB: omap-ehci: Move PHY management to PHY driver Mohammed, Afzal
2013-01-30 12:08 ` Mohammed, Afzal
2013-01-30 12:48 ` Roger Quadros
2013-01-30 12:48 ` Roger Quadros
2013-01-30 13:12 ` Mohammed, Afzal
2013-01-30 13:12 ` Mohammed, Afzal
2013-01-30 13:15 ` Roger Quadros
2013-01-30 13:15 ` Roger Quadros
2013-01-30 13:15 ` Felipe Balbi
2013-01-30 13:15 ` Felipe Balbi
2013-01-30 13:19 ` Mohammed, Afzal
2013-01-30 13:19 ` Mohammed, Afzal
2013-02-01 14:21 ` Mohammed, Afzal
2013-02-01 14:21 ` Mohammed, Afzal
2013-02-01 14:25 ` Roger Quadros
2013-02-01 14:25 ` Roger Quadros
2013-02-01 14:27 ` Mohammed, Afzal
2013-02-01 14:27 ` Mohammed, Afzal
2013-02-01 14:31 ` Roger Quadros
2013-02-01 14:31 ` Roger Quadros
2013-02-01 14:35 ` Mohammed, Afzal
2013-02-01 14:35 ` Mohammed, Afzal
2013-02-01 14:58 ` Roger Quadros
2013-02-01 14:58 ` Roger Quadros
2013-02-04 14:35 ` [PATCH v2 09/31] USB: ehci-omap: Use devm_ioremap_resource() Roger Quadros
2013-02-04 14:35 ` Roger Quadros
2013-02-04 21:11 ` Alan Stern
2013-02-04 21:11 ` Alan Stern
2013-02-04 14:46 ` [PATCH 31/31] USB: ehci-omap: Select NOP USB transceiver driver Roger Quadros
2013-02-04 14:46 ` Roger Quadros
2013-02-04 21:03 ` Alan Stern
2013-02-04 21:03 ` Alan Stern
2013-02-05 9:41 ` Felipe Balbi
2013-02-05 9:41 ` Felipe Balbi
2013-02-05 11:28 ` [PATCH v2 00/30] USB: omap-ehci: Move PHY management to PHY driver Roger Quadros
2013-02-05 11:28 ` Roger Quadros
2013-02-05 16:58 ` Greg KH
2013-02-05 16:58 ` Greg KH
2013-02-05 17:17 ` Tony Lindgren
2013-02-05 17:17 ` Tony Lindgren
2013-02-06 9:49 ` Roger Quadros
2013-02-06 9:49 ` Roger Quadros
2013-02-06 17:11 ` Tony Lindgren
2013-02-06 17:11 ` Tony Lindgren
2013-02-06 17:48 ` Greg KH
2013-02-06 17:48 ` Greg KH
2013-02-07 15:28 ` Roger Quadros
2013-02-07 15:28 ` 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=5106A025.2040003@ti.com \
--to=rogerq@ti.com \
--cc=linux-arm-kernel@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 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.