* [PATCH 1/2] usb: host: tegra: don't touch EMC clock
@ 2013-01-23 0:28 Stephen Warren
2013-01-23 0:28 ` [PATCH 2/2] ARM: tegra: add clocks properties to USB PHY nodes Stephen Warren
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Stephen Warren @ 2013-01-23 0:28 UTC (permalink / raw)
To: linux-arm-kernel
From: Stephen Warren <swarren@nvidia.com>
Clock "emc" is for the External Memory Controller. The USB driver has no
business touching this clock directly. Remove the code that does so.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
Greg, Alan, I'd like to take this patch through the Tegra tree to avoid
any merge conflicts with the Tegra USB changes that have recently
happened there.
Venu, When creating your patch to convert the Tegra USB PHY driver to a
platform driver, can you assume these patches are applied first? Thanks.
I assume that these patches make sense to you; could you ack them if so.
---
drivers/usb/host/ehci-tegra.c | 17 -----------------
1 file changed, 17 deletions(-)
diff --git a/drivers/usb/host/ehci-tegra.c b/drivers/usb/host/ehci-tegra.c
index 1f596fb..b02622a 100644
--- a/drivers/usb/host/ehci-tegra.c
+++ b/drivers/usb/host/ehci-tegra.c
@@ -44,7 +44,6 @@ struct tegra_ehci_hcd {
struct ehci_hcd *ehci;
struct tegra_usb_phy *phy;
struct clk *clk;
- struct clk *emc_clk;
struct usb_phy *transceiver;
int host_resumed;
int port_resuming;
@@ -56,7 +55,6 @@ static void tegra_ehci_power_up(struct usb_hcd *hcd)
{
struct tegra_ehci_hcd *tegra = dev_get_drvdata(hcd->self.controller);
- clk_prepare_enable(tegra->emc_clk);
clk_prepare_enable(tegra->clk);
usb_phy_set_suspend(&tegra->phy->u_phy, 0);
tegra->host_resumed = 1;
@@ -69,7 +67,6 @@ static void tegra_ehci_power_down(struct usb_hcd *hcd)
tegra->host_resumed = 0;
usb_phy_set_suspend(&tegra->phy->u_phy, 1);
clk_disable_unprepare(tegra->clk);
- clk_disable_unprepare(tegra->emc_clk);
}
static int tegra_ehci_internal_port_reset(
@@ -694,16 +691,6 @@ static int tegra_ehci_probe(struct platform_device *pdev)
if (err)
goto fail_clk;
- tegra->emc_clk = devm_clk_get(&pdev->dev, "emc");
- if (IS_ERR(tegra->emc_clk)) {
- dev_err(&pdev->dev, "Can't get emc clock\n");
- err = PTR_ERR(tegra->emc_clk);
- goto fail_emc_clk;
- }
-
- clk_prepare_enable(tegra->emc_clk);
- clk_set_rate(tegra->emc_clk, 400000000);
-
tegra->needs_double_reset = of_property_read_bool(pdev->dev.of_node,
"nvidia,needs-double-reset");
@@ -813,8 +800,6 @@ fail:
#endif
usb_phy_shutdown(&tegra->phy->u_phy);
fail_io:
- clk_disable_unprepare(tegra->emc_clk);
-fail_emc_clk:
clk_disable_unprepare(tegra->clk);
fail_clk:
usb_put_hcd(hcd);
@@ -842,8 +827,6 @@ static int tegra_ehci_remove(struct platform_device *pdev)
clk_disable_unprepare(tegra->clk);
- clk_disable_unprepare(tegra->emc_clk);
-
return 0;
}
--
1.7.10.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/2] ARM: tegra: add clocks properties to USB PHY nodes
2013-01-23 0:28 [PATCH 1/2] usb: host: tegra: don't touch EMC clock Stephen Warren
@ 2013-01-23 0:28 ` Stephen Warren
2013-01-23 0:33 ` Stephen Warren
2013-01-23 1:06 ` [PATCH 1/2] usb: host: tegra: don't touch EMC clock Greg Kroah-Hartman
` (2 subsequent siblings)
3 siblings, 1 reply; 10+ messages in thread
From: Stephen Warren @ 2013-01-23 0:28 UTC (permalink / raw)
To: linux-arm-kernel
From: Stephen Warren <swarren@nvidia.com>
The patch to add USB PHY nodes to device tree was written before Tegra
supported the clocks property in device tree. Now that it does, add the
required clocks properties to these nodes.
This will allow all clk_get_sys() calls in tegra_usb_phy.c to be replaced
by clk_get(phy->dev, clock_name), as part of converting the PHY driver to
a platform driver.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
arch/arm/boot/dts/tegra20.dtsi | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/arch/arm/boot/dts/tegra20.dtsi b/arch/arm/boot/dts/tegra20.dtsi
index 2e9d1f0..d5e72ce 100644
--- a/arch/arm/boot/dts/tegra20.dtsi
+++ b/arch/arm/boot/dts/tegra20.dtsi
@@ -442,18 +442,24 @@
reg = <0xc5000400 0x3c00>;
phy_type = "utmi";
nvidia,has-legacy-mode;
+ clocks = <&tegra_car 22>, <&tegra_car 127>;
+ clock-names = "utmi", "pll_u";
};
phy2: usb-phy at c5004400 {
compatible = "nvidia,tegra20-usb-phy";
reg = <0xc5004400 0x3c00>;
phy_type = "ulpi";
+ clocks = <&tegra_car 94>, <&tegra_car 127>;
+ clock-names = "ulpi", "pll_u";
};
phy3: usb-phy at c5008400 {
compatible = "nvidia,tegra20-usb-phy";
reg = <0xc5008400 0x3C00>;
phy_type = "utmi";
+ clocks = <&tegra_car 22>, <&tegra_car 127>;
+ clock-names = "utmi", "pll_u";
};
usb at c5000000 {
--
1.7.10.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/2] ARM: tegra: add clocks properties to USB PHY nodes
2013-01-23 0:28 ` [PATCH 2/2] ARM: tegra: add clocks properties to USB PHY nodes Stephen Warren
@ 2013-01-23 0:33 ` Stephen Warren
2013-01-23 6:43 ` Venu Byravarasu
0 siblings, 1 reply; 10+ messages in thread
From: Stephen Warren @ 2013-01-23 0:33 UTC (permalink / raw)
To: linux-arm-kernel
On 01/22/2013 05:28 PM, Stephen Warren wrote:
> The patch to add USB PHY nodes to device tree was written before Tegra
> supported the clocks property in device tree. Now that it does, add the
> required clocks properties to these nodes.
>
> This will allow all clk_get_sys() calls in tegra_usb_phy.c to be replaced
> by clk_get(phy->dev, clock_name), as part of converting the PHY driver to
> a platform driver.
> diff --git a/arch/arm/boot/dts/tegra20.dtsi b/arch/arm/boot/dts/tegra20.dtsi
> + clocks = <&tegra_car 22>, <&tegra_car 127>;
> + clock-names = "utmi", "pll_u";
...
> + clocks = <&tegra_car 94>, <&tegra_car 127>;
> + clock-names = "ulpi", "pll_u";
Hmmm. Thinking about that first clock more, if we name it just "phy" in
both the UTMI and ULPI PHY nodes, we could make tegra_phy_init() perform
the clk_get() for all PHY types, and use the same clock name everywhere,
and hence remove the type-specific clk_get()s from tegra_phy_init() and
utmip_pad_open().
Venu, will this work for other chips such as Tegra30/Tegra114 and so on
into the future, or do chips after Tegra20 introduce any new clocks, and
hence break this scheme?
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 2/2] ARM: tegra: add clocks properties to USB PHY nodes
2013-01-23 0:33 ` Stephen Warren
@ 2013-01-23 6:43 ` Venu Byravarasu
2013-01-23 16:33 ` Stephen Warren
0 siblings, 1 reply; 10+ messages in thread
From: Venu Byravarasu @ 2013-01-23 6:43 UTC (permalink / raw)
To: linux-arm-kernel
> -----Original Message-----
> From: Stephen Warren [mailto:swarren at wwwdotorg.org]
> Sent: Wednesday, January 23, 2013 6:03 AM
> To: Venu Byravarasu
> Cc: Alan Stern; Greg Kroah-Hartman; linux-tegra at vger.kernel.org; linux-arm-
> kernel at lists.infradead.org; linux-usb at vger.kernel.org; Stephen Warren
> Subject: Re: [PATCH 2/2] ARM: tegra: add clocks properties to USB PHY nodes
>
> On 01/22/2013 05:28 PM, Stephen Warren wrote:
> > The patch to add USB PHY nodes to device tree was written before Tegra
> > supported the clocks property in device tree. Now that it does, add the
> > required clocks properties to these nodes.
> >
> > This will allow all clk_get_sys() calls in tegra_usb_phy.c to be replaced
> > by clk_get(phy->dev, clock_name), as part of converting the PHY driver to
> > a platform driver.
>
> > diff --git a/arch/arm/boot/dts/tegra20.dtsi
> b/arch/arm/boot/dts/tegra20.dtsi
>
> > + clocks = <&tegra_car 22>, <&tegra_car 127>;
> > + clock-names = "utmi", "pll_u";
> ...
> > + clocks = <&tegra_car 94>, <&tegra_car 127>;
> > + clock-names = "ulpi", "pll_u";
>
> Hmmm. Thinking about that first clock more, if we name it just "phy" in
> both the UTMI and ULPI PHY nodes, we could make tegra_phy_init() perform
> the clk_get() for all PHY types, and use the same clock name everywhere,
> and hence remove the type-specific clk_get()s from tegra_phy_init() and
> utmip_pad_open().
>
> Venu, will this work for other chips such as Tegra30/Tegra114 and so on
> into the future, or do chips after Tegra20 introduce any new clocks, and
> hence break this scheme?
Should be fine, as same clocks are used across all chips.
Acked-by: Venu Byravarasu <vbyravarasu@nvidia.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 2/2] ARM: tegra: add clocks properties to USB PHY nodes
2013-01-23 6:43 ` Venu Byravarasu
@ 2013-01-23 16:33 ` Stephen Warren
0 siblings, 0 replies; 10+ messages in thread
From: Stephen Warren @ 2013-01-23 16:33 UTC (permalink / raw)
To: linux-arm-kernel
On 01/22/2013 11:43 PM, Venu Byravarasu wrote:
> Stephen Warren wrote at Wednesday, January 23, 2013 6:03 AM:
>> On 01/22/2013 05:28 PM, Stephen Warren wrote:
>>> The patch to add USB PHY nodes to device tree was written before Tegra
>>> supported the clocks property in device tree. Now that it does, add the
>>> required clocks properties to these nodes.
>>>
>>> This will allow all clk_get_sys() calls in tegra_usb_phy.c to be replaced
>>> by clk_get(phy->dev, clock_name), as part of converting the PHY driver to
>>> a platform driver.
>>
>>> diff --git a/arch/arm/boot/dts/tegra20.dtsi
>> b/arch/arm/boot/dts/tegra20.dtsi
>>
>>> + clocks = <&tegra_car 22>, <&tegra_car 127>;
>>> + clock-names = "utmi", "pll_u";
>> ...
>>> + clocks = <&tegra_car 94>, <&tegra_car 127>;
>>> + clock-names = "ulpi", "pll_u";
>>
>> Hmmm. Thinking about that first clock more, if we name it just "phy" in
>> both the UTMI and ULPI PHY nodes, we could make tegra_phy_init() perform
>> the clk_get() for all PHY types, and use the same clock name everywhere,
>> and hence remove the type-specific clk_get()s from tegra_phy_init() and
>> utmip_pad_open().
>>
>> Venu, will this work for other chips such as Tegra30/Tegra114 and so on
>> into the future, or do chips after Tegra20 introduce any new clocks, and
>> hence break this scheme?
>
> Should be fine, as same clocks are used across all chips.
> Acked-by: Venu Byravarasu <vbyravarasu@nvidia.com>
Thanks. I've applied both patches to Tegra's for-3.9/soc branch, with
patch 2/2 modified to name the first clock "phy" rather than "utmi" or
"ulpi".
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/2] usb: host: tegra: don't touch EMC clock
2013-01-23 0:28 [PATCH 1/2] usb: host: tegra: don't touch EMC clock Stephen Warren
2013-01-23 0:28 ` [PATCH 2/2] ARM: tegra: add clocks properties to USB PHY nodes Stephen Warren
@ 2013-01-23 1:06 ` Greg Kroah-Hartman
2013-01-23 6:55 ` Venu Byravarasu
2013-01-23 15:23 ` Alan Stern
3 siblings, 0 replies; 10+ messages in thread
From: Greg Kroah-Hartman @ 2013-01-23 1:06 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Jan 22, 2013 at 05:28:22PM -0700, Stephen Warren wrote:
> From: Stephen Warren <swarren@nvidia.com>
>
> Clock "emc" is for the External Memory Controller. The USB driver has no
> business touching this clock directly. Remove the code that does so.
>
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
> Greg, Alan, I'd like to take this patch through the Tegra tree to avoid
> any merge conflicts with the Tegra USB changes that have recently
> happened there.
>
> Venu, When creating your patch to convert the Tegra USB PHY driver to a
> platform driver, can you assume these patches are applied first? Thanks.
> I assume that these patches make sense to you; could you ack them if so.
> ---
> drivers/usb/host/ehci-tegra.c | 17 -----------------
> 1 file changed, 17 deletions(-)
I always love to see code deleted, so feel free to take this through
your tree:
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/2] usb: host: tegra: don't touch EMC clock
2013-01-23 0:28 [PATCH 1/2] usb: host: tegra: don't touch EMC clock Stephen Warren
2013-01-23 0:28 ` [PATCH 2/2] ARM: tegra: add clocks properties to USB PHY nodes Stephen Warren
2013-01-23 1:06 ` [PATCH 1/2] usb: host: tegra: don't touch EMC clock Greg Kroah-Hartman
@ 2013-01-23 6:55 ` Venu Byravarasu
2013-01-23 9:45 ` Lucas Stach
2013-01-23 15:23 ` Alan Stern
3 siblings, 1 reply; 10+ messages in thread
From: Venu Byravarasu @ 2013-01-23 6:55 UTC (permalink / raw)
To: linux-arm-kernel
> -----Original Message-----
> From: linux-tegra-owner at vger.kernel.org [mailto:linux-tegra-
> owner at vger.kernel.org] On Behalf Of Stephen Warren
> Sent: Wednesday, January 23, 2013 5:58 AM
> To: Alan Stern; Greg Kroah-Hartman; Stephen Warren
> Cc: Venu Byravarasu; linux-tegra at vger.kernel.org; linux-arm-
> kernel at lists.infradead.org; linux-usb at vger.kernel.org; Stephen Warren
> Subject: [PATCH 1/2] usb: host: tegra: don't touch EMC clock
>
> From: Stephen Warren <swarren@nvidia.com>
>
> Clock "emc" is for the External Memory Controller. The USB driver has no
> business touching this clock directly. Remove the code that does so.
Stephen,
This was primarily done to make sure that EMC is set to a minimum
frequency, below which data errors may occur during USB transfers.
If we plan to remove this, how should we make sure that the EMC
is programmed for the required frequency during USB transfers?
>
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
> Greg, Alan, I'd like to take this patch through the Tegra tree to avoid
> any merge conflicts with the Tegra USB changes that have recently
> happened there.
>
> Venu, When creating your patch to convert the Tegra USB PHY driver to a
> platform driver, can you assume these patches are applied first? Thanks.
> I assume that these patches make sense to you; could you ack them if so.
> ---
> drivers/usb/host/ehci-tegra.c | 17 -----------------
> 1 file changed, 17 deletions(-)
>
> diff --git a/drivers/usb/host/ehci-tegra.c b/drivers/usb/host/ehci-tegra.c
> index 1f596fb..b02622a 100644
> --- a/drivers/usb/host/ehci-tegra.c
> +++ b/drivers/usb/host/ehci-tegra.c
> @@ -44,7 +44,6 @@ struct tegra_ehci_hcd {
> struct ehci_hcd *ehci;
> struct tegra_usb_phy *phy;
> struct clk *clk;
> - struct clk *emc_clk;
> struct usb_phy *transceiver;
> int host_resumed;
> int port_resuming;
> @@ -56,7 +55,6 @@ static void tegra_ehci_power_up(struct usb_hcd *hcd)
> {
> struct tegra_ehci_hcd *tegra = dev_get_drvdata(hcd->self.controller);
>
> - clk_prepare_enable(tegra->emc_clk);
> clk_prepare_enable(tegra->clk);
> usb_phy_set_suspend(&tegra->phy->u_phy, 0);
> tegra->host_resumed = 1;
> @@ -69,7 +67,6 @@ static void tegra_ehci_power_down(struct usb_hcd
> *hcd)
> tegra->host_resumed = 0;
> usb_phy_set_suspend(&tegra->phy->u_phy, 1);
> clk_disable_unprepare(tegra->clk);
> - clk_disable_unprepare(tegra->emc_clk);
> }
>
> static int tegra_ehci_internal_port_reset(
> @@ -694,16 +691,6 @@ static int tegra_ehci_probe(struct platform_device
> *pdev)
> if (err)
> goto fail_clk;
>
> - tegra->emc_clk = devm_clk_get(&pdev->dev, "emc");
> - if (IS_ERR(tegra->emc_clk)) {
> - dev_err(&pdev->dev, "Can't get emc clock\n");
> - err = PTR_ERR(tegra->emc_clk);
> - goto fail_emc_clk;
> - }
> -
> - clk_prepare_enable(tegra->emc_clk);
> - clk_set_rate(tegra->emc_clk, 400000000);
> -
> tegra->needs_double_reset = of_property_read_bool(pdev-
> >dev.of_node,
> "nvidia,needs-double-reset");
>
> @@ -813,8 +800,6 @@ fail:
> #endif
> usb_phy_shutdown(&tegra->phy->u_phy);
> fail_io:
> - clk_disable_unprepare(tegra->emc_clk);
> -fail_emc_clk:
> clk_disable_unprepare(tegra->clk);
> fail_clk:
> usb_put_hcd(hcd);
> @@ -842,8 +827,6 @@ static int tegra_ehci_remove(struct platform_device
> *pdev)
>
> clk_disable_unprepare(tegra->clk);
>
> - clk_disable_unprepare(tegra->emc_clk);
> -
> return 0;
> }
>
> --
> 1.7.10.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/2] usb: host: tegra: don't touch EMC clock
2013-01-23 6:55 ` Venu Byravarasu
@ 2013-01-23 9:45 ` Lucas Stach
2013-01-23 16:17 ` Stephen Warren
0 siblings, 1 reply; 10+ messages in thread
From: Lucas Stach @ 2013-01-23 9:45 UTC (permalink / raw)
To: linux-arm-kernel
Am Mittwoch, den 23.01.2013, 12:25 +0530 schrieb Venu Byravarasu:
> > -----Original Message-----
> > From: linux-tegra-owner at vger.kernel.org [mailto:linux-tegra-
> > owner at vger.kernel.org] On Behalf Of Stephen Warren
> > Sent: Wednesday, January 23, 2013 5:58 AM
> > To: Alan Stern; Greg Kroah-Hartman; Stephen Warren
> > Cc: Venu Byravarasu; linux-tegra at vger.kernel.org; linux-arm-
> > kernel at lists.infradead.org; linux-usb at vger.kernel.org; Stephen Warren
> > Subject: [PATCH 1/2] usb: host: tegra: don't touch EMC clock
> >
> > From: Stephen Warren <swarren@nvidia.com>
> >
> > Clock "emc" is for the External Memory Controller. The USB driver has no
> > business touching this clock directly. Remove the code that does so.
>
> Stephen,
> This was primarily done to make sure that EMC is set to a minimum
> frequency, below which data errors may occur during USB transfers.
> If we plan to remove this, how should we make sure that the EMC
> is programmed for the required frequency during USB transfers?
>
You could use something like the API I added in "ARM: tegra: add EMC
clock scaling API". This needs some rework and I looked into integrating
this with the DEVFREQ framework, but I don't think it fits too well.
Bandwidth requirements should always be communicated to the EMC driver
and not described by clock rates.
Regards,
Lucas
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/2] usb: host: tegra: don't touch EMC clock
2013-01-23 9:45 ` Lucas Stach
@ 2013-01-23 16:17 ` Stephen Warren
0 siblings, 0 replies; 10+ messages in thread
From: Stephen Warren @ 2013-01-23 16:17 UTC (permalink / raw)
To: linux-arm-kernel
On 01/23/2013 02:45 AM, Lucas Stach wrote:
> Am Mittwoch, den 23.01.2013, 12:25 +0530 schrieb Venu Byravarasu:
>>> -----Original Message-----
>>> From: linux-tegra-owner at vger.kernel.org [mailto:linux-tegra-
>>> owner at vger.kernel.org] On Behalf Of Stephen Warren
>>> Sent: Wednesday, January 23, 2013 5:58 AM
>>> To: Alan Stern; Greg Kroah-Hartman; Stephen Warren
>>> Cc: Venu Byravarasu; linux-tegra at vger.kernel.org; linux-arm-
>>> kernel at lists.infradead.org; linux-usb at vger.kernel.org; Stephen Warren
>>> Subject: [PATCH 1/2] usb: host: tegra: don't touch EMC clock
>>>
>>> From: Stephen Warren <swarren@nvidia.com>
>>>
>>> Clock "emc" is for the External Memory Controller. The USB driver has no
>>> business touching this clock directly. Remove the code that does so.
>>
>> Stephen,
>> This was primarily done to make sure that EMC is set to a minimum
>> frequency, below which data errors may occur during USB transfers.
>> If we plan to remove this, how should we make sure that the EMC
>> is programmed for the required frequency during USB transfers?
>
> You could use something like the API I added in "ARM: tegra: add EMC
> clock scaling API". This needs some rework and I looked into integrating
> this with the DEVFREQ framework, but I don't think it fits too well.
>
> Bandwidth requirements should always be communicated to the EMC driver
> and not described by clock rates.
I agree.
Besides, on some boards there's an EMC scaling table defined already, so
the EMC driver is simply overriding the value the USB driver selects anyway.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/2] usb: host: tegra: don't touch EMC clock
2013-01-23 0:28 [PATCH 1/2] usb: host: tegra: don't touch EMC clock Stephen Warren
` (2 preceding siblings ...)
2013-01-23 6:55 ` Venu Byravarasu
@ 2013-01-23 15:23 ` Alan Stern
3 siblings, 0 replies; 10+ messages in thread
From: Alan Stern @ 2013-01-23 15:23 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, 22 Jan 2013, Stephen Warren wrote:
> From: Stephen Warren <swarren@nvidia.com>
>
> Clock "emc" is for the External Memory Controller. The USB driver has no
> business touching this clock directly. Remove the code that does so.
>
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
> Greg, Alan, I'd like to take this patch through the Tegra tree to avoid
> any merge conflicts with the Tegra USB changes that have recently
> happened there.
It's okay with me.
Acked-by: Alan Stern <stern@rowland.harvard.edu>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2013-01-23 16:33 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-23 0:28 [PATCH 1/2] usb: host: tegra: don't touch EMC clock Stephen Warren
2013-01-23 0:28 ` [PATCH 2/2] ARM: tegra: add clocks properties to USB PHY nodes Stephen Warren
2013-01-23 0:33 ` Stephen Warren
2013-01-23 6:43 ` Venu Byravarasu
2013-01-23 16:33 ` Stephen Warren
2013-01-23 1:06 ` [PATCH 1/2] usb: host: tegra: don't touch EMC clock Greg Kroah-Hartman
2013-01-23 6:55 ` Venu Byravarasu
2013-01-23 9:45 ` Lucas Stach
2013-01-23 16:17 ` Stephen Warren
2013-01-23 15:23 ` Alan Stern
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).