All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] usb: musb: fix pm_runtime mismatch
@ 2011-12-19 20:01 ` Felipe Contreras
  0 siblings, 0 replies; 9+ messages in thread
From: Felipe Contreras @ 2011-12-19 20:01 UTC (permalink / raw)
  To: linux-usb
  Cc: linux-kernel, linux-omap, Felipe Balbi, Greg Kroah-Hartman,
	Jarkko Nikula, Felipe Contreras, stable, Hema HK

From: Felipe Contreras <felipe.contreras@gmail.com>

In musb_init_controller() there's a pm_runtime_put(), but there's no
pm_runtime_get(), which creates a mismatch that causes the driver to
sleep when it shouldn't.

This was introduced in 7acc619[1], but it wasn't triggered in my setup
until 18a2689[2] was merged to Linus' branch at point df0914[3]. IOW;
when PM is working as it was supposed to.

However, it seems most of the time this is used in a way that keeps the
counter above 0, so nobody noticed. Also, it seems to depend on the
configuration used in versions before 3.1, but not later (or in it).

I found the problem by loading isp1704_charger before any usb gadgets:
http://article.gmane.org/gmane.linux.kernel/1226122

All versions after 2.6.39 are affected.

[1] usb: musb: Idle path retention and offmode support for OMAP3
[2] OMAP2+: musb: hwmod adaptation for musb registration
[3] Merge branch 'omap-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6

Cc: stable@vger.kernel.org
Cc: Hema HK <hemahk@ti.com>
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
---
 drivers/usb/musb/musb_core.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c
index b63ab15..920f04e 100644
--- a/drivers/usb/musb/musb_core.c
+++ b/drivers/usb/musb/musb_core.c
@@ -2012,8 +2012,6 @@ musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
 	if (status < 0)
 		goto fail3;
 
-	pm_runtime_put(musb->controller);
-
 	status = musb_init_debugfs(musb);
 	if (status < 0)
 		goto fail4;
-- 
1.7.8


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH v2] usb: musb: fix pm_runtime mismatch
@ 2011-12-19 20:01 ` Felipe Contreras
  0 siblings, 0 replies; 9+ messages in thread
From: Felipe Contreras @ 2011-12-19 20:01 UTC (permalink / raw)
  To: linux-usb-u79uwXL29TY76Z2rM5mHXA
  Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-omap, Felipe Balbi,
	Greg Kroah-Hartman, Jarkko Nikula, Felipe Contreras,
	stable-u79uwXL29TY76Z2rM5mHXA, Hema HK

From: Felipe Contreras <felipe.contreras-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

In musb_init_controller() there's a pm_runtime_put(), but there's no
pm_runtime_get(), which creates a mismatch that causes the driver to
sleep when it shouldn't.

This was introduced in 7acc619[1], but it wasn't triggered in my setup
until 18a2689[2] was merged to Linus' branch at point df0914[3]. IOW;
when PM is working as it was supposed to.

However, it seems most of the time this is used in a way that keeps the
counter above 0, so nobody noticed. Also, it seems to depend on the
configuration used in versions before 3.1, but not later (or in it).

I found the problem by loading isp1704_charger before any usb gadgets:
http://article.gmane.org/gmane.linux.kernel/1226122

All versions after 2.6.39 are affected.

[1] usb: musb: Idle path retention and offmode support for OMAP3
[2] OMAP2+: musb: hwmod adaptation for musb registration
[3] Merge branch 'omap-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6

Cc: stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: Hema HK <hemahk-l0cyMroinI0@public.gmane.org>
Signed-off-by: Felipe Contreras <felipe.contreras-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
 drivers/usb/musb/musb_core.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c
index b63ab15..920f04e 100644
--- a/drivers/usb/musb/musb_core.c
+++ b/drivers/usb/musb/musb_core.c
@@ -2012,8 +2012,6 @@ musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
 	if (status < 0)
 		goto fail3;
 
-	pm_runtime_put(musb->controller);

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] usb: musb: fix pm_runtime mismatch
@ 2011-12-20 11:38   ` Felipe Balbi
  0 siblings, 0 replies; 9+ messages in thread
From: Felipe Balbi @ 2011-12-20 11:38 UTC (permalink / raw)
  To: Felipe Contreras
  Cc: linux-usb, linux-kernel, linux-omap, Felipe Balbi,
	Greg Kroah-Hartman, Jarkko Nikula, Felipe Contreras, stable,
	Hema HK

[-- Attachment #1: Type: text/plain, Size: 1298 bytes --]

On Mon, Dec 19, 2011 at 10:01:54PM +0200, Felipe Contreras wrote:
> From: Felipe Contreras <felipe.contreras@gmail.com>
> 
> In musb_init_controller() there's a pm_runtime_put(), but there's no
> pm_runtime_get(), which creates a mismatch that causes the driver to
> sleep when it shouldn't.
> 
> This was introduced in 7acc619[1], but it wasn't triggered in my setup
> until 18a2689[2] was merged to Linus' branch at point df0914[3]. IOW;
> when PM is working as it was supposed to.
> 
> However, it seems most of the time this is used in a way that keeps the
> counter above 0, so nobody noticed. Also, it seems to depend on the
> configuration used in versions before 3.1, but not later (or in it).
> 
> I found the problem by loading isp1704_charger before any usb gadgets:
> http://article.gmane.org/gmane.linux.kernel/1226122
> 
> All versions after 2.6.39 are affected.
> 
> [1] usb: musb: Idle path retention and offmode support for OMAP3
> [2] OMAP2+: musb: hwmod adaptation for musb registration
> [3] Merge branch 'omap-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
> 
> Cc: stable@vger.kernel.org
> Cc: Hema HK <hemahk@ti.com>
> Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

applied, thanks

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] usb: musb: fix pm_runtime mismatch
@ 2011-12-20 11:38   ` Felipe Balbi
  0 siblings, 0 replies; 9+ messages in thread
From: Felipe Balbi @ 2011-12-20 11:38 UTC (permalink / raw)
  To: Felipe Contreras
  Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-omap, Felipe Balbi,
	Greg Kroah-Hartman, Jarkko Nikula, Felipe Contreras,
	stable-u79uwXL29TY76Z2rM5mHXA, Hema HK

[-- Attachment #1: Type: text/plain, Size: 1404 bytes --]

On Mon, Dec 19, 2011 at 10:01:54PM +0200, Felipe Contreras wrote:
> From: Felipe Contreras <felipe.contreras-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> 
> In musb_init_controller() there's a pm_runtime_put(), but there's no
> pm_runtime_get(), which creates a mismatch that causes the driver to
> sleep when it shouldn't.
> 
> This was introduced in 7acc619[1], but it wasn't triggered in my setup
> until 18a2689[2] was merged to Linus' branch at point df0914[3]. IOW;
> when PM is working as it was supposed to.
> 
> However, it seems most of the time this is used in a way that keeps the
> counter above 0, so nobody noticed. Also, it seems to depend on the
> configuration used in versions before 3.1, but not later (or in it).
> 
> I found the problem by loading isp1704_charger before any usb gadgets:
> http://article.gmane.org/gmane.linux.kernel/1226122
> 
> All versions after 2.6.39 are affected.
> 
> [1] usb: musb: Idle path retention and offmode support for OMAP3
> [2] OMAP2+: musb: hwmod adaptation for musb registration
> [3] Merge branch 'omap-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
> 
> Cc: stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Cc: Hema HK <hemahk-l0cyMroinI0@public.gmane.org>
> Signed-off-by: Felipe Contreras <felipe.contreras-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

applied, thanks

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] usb: musb: fix pm_runtime mismatch
  2011-12-19 20:01 ` Felipe Contreras
@ 2012-01-12 11:56   ` Grazvydas Ignotas
  -1 siblings, 0 replies; 9+ messages in thread
From: Grazvydas Ignotas @ 2012-01-12 11:56 UTC (permalink / raw)
  To: Felipe Contreras
  Cc: linux-usb, linux-kernel, linux-omap, Felipe Balbi,
	Greg Kroah-Hartman, Jarkko Nikula, Felipe Contreras, stable,
	Hema HK

On Mon, Dec 19, 2011 at 10:01 PM, Felipe Contreras
<felipe.contreras@nokia.com> wrote:
> From: Felipe Contreras <felipe.contreras@gmail.com>
>
> In musb_init_controller() there's a pm_runtime_put(), but there's no
> pm_runtime_get(), which creates a mismatch that causes the driver to
> sleep when it shouldn't.

This patch is causing problems here, the device never suspends, I've
verified musb_runtime_suspend and omap2430_runtime_suspend are never
called in my setup, unless I revert this patch. I'm using musb with
ethernet gadget; cable removal also doesn't suspend musb.

It seems pm_runtime_put() that was removed was balancing out
pm_runtime_get in musb_platform_init(), which is called at the
beginning of musb_init_controller(). I think this pm_runtime_get()
from musb_platform_init() should be moved to musb_init_controller() to
stop confusing people and pm_runtime_put() needs to be brought back. I
can do a patch if nobody objects.

> This was introduced in 7acc619[1], but it wasn't triggered in my setup
> until 18a2689[2] was merged to Linus' branch at point df0914[3]. IOW;
> when PM is working as it was supposed to.
>
> However, it seems most of the time this is used in a way that keeps the
> counter above 0, so nobody noticed. Also, it seems to depend on the
> configuration used in versions before 3.1, but not later (or in it).
>
> I found the problem by loading isp1704_charger before any usb gadgets:
> http://article.gmane.org/gmane.linux.kernel/1226122

isp1704_charger seems to be doing otg_io_read(), and it's perfectly
normal that musb can be suspended at the time isp1704 decides to do
this. I think proper fix is to wake up must on musb_ulpi_read() and
musb_ulpi_write() instead.

>
> All versions after 2.6.39 are affected.
>
> [1] usb: musb: Idle path retention and offmode support for OMAP3
> [2] OMAP2+: musb: hwmod adaptation for musb registration
> [3] Merge branch 'omap-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
>
> Cc: stable@vger.kernel.org
> Cc: Hema HK <hemahk@ti.com>
> Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
> ---
>  drivers/usb/musb/musb_core.c |    2 --
>  1 files changed, 0 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c
> index b63ab15..920f04e 100644
> --- a/drivers/usb/musb/musb_core.c
> +++ b/drivers/usb/musb/musb_core.c
> @@ -2012,8 +2012,6 @@ musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
>        if (status < 0)
>                goto fail3;
>
> -       pm_runtime_put(musb->controller);
> -
>        status = musb_init_debugfs(musb);
>        if (status < 0)
>                goto fail4;
> --
> 1.7.8
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
Gražvydas

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] usb: musb: fix pm_runtime mismatch
@ 2012-01-12 11:56   ` Grazvydas Ignotas
  0 siblings, 0 replies; 9+ messages in thread
From: Grazvydas Ignotas @ 2012-01-12 11:56 UTC (permalink / raw)
  To: Felipe Contreras
  Cc: linux-usb, linux-kernel, linux-omap, Felipe Balbi,
	Greg Kroah-Hartman, Jarkko Nikula, Felipe Contreras, stable,
	Hema HK

On Mon, Dec 19, 2011 at 10:01 PM, Felipe Contreras
<felipe.contreras@nokia.com> wrote:
> From: Felipe Contreras <felipe.contreras@gmail.com>
>
> In musb_init_controller() there's a pm_runtime_put(), but there's no
> pm_runtime_get(), which creates a mismatch that causes the driver to
> sleep when it shouldn't.

This patch is causing problems here, the device never suspends, I've
verified musb_runtime_suspend and omap2430_runtime_suspend are never
called in my setup, unless I revert this patch. I'm using musb with
ethernet gadget; cable removal also doesn't suspend musb.

It seems pm_runtime_put() that was removed was balancing out
pm_runtime_get in musb_platform_init(), which is called at the
beginning of musb_init_controller(). I think this pm_runtime_get()
from musb_platform_init() should be moved to musb_init_controller() to
stop confusing people and pm_runtime_put() needs to be brought back. I
can do a patch if nobody objects.

> This was introduced in 7acc619[1], but it wasn't triggered in my setup
> until 18a2689[2] was merged to Linus' branch at point df0914[3]. IOW;
> when PM is working as it was supposed to.
>
> However, it seems most of the time this is used in a way that keeps the
> counter above 0, so nobody noticed. Also, it seems to depend on the
> configuration used in versions before 3.1, but not later (or in it).
>
> I found the problem by loading isp1704_charger before any usb gadgets:
> http://article.gmane.org/gmane.linux.kernel/1226122

isp1704_charger seems to be doing otg_io_read(), and it's perfectly
normal that musb can be suspended at the time isp1704 decides to do
this. I think proper fix is to wake up must on musb_ulpi_read() and
musb_ulpi_write() instead.

>
> All versions after 2.6.39 are affected.
>
> [1] usb: musb: Idle path retention and offmode support for OMAP3
> [2] OMAP2+: musb: hwmod adaptation for musb registration
> [3] Merge branch 'omap-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
>
> Cc: stable@vger.kernel.org
> Cc: Hema HK <hemahk@ti.com>
> Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
> ---
>  drivers/usb/musb/musb_core.c |    2 --
>  1 files changed, 0 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c
> index b63ab15..920f04e 100644
> --- a/drivers/usb/musb/musb_core.c
> +++ b/drivers/usb/musb/musb_core.c
> @@ -2012,8 +2012,6 @@ musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
>        if (status < 0)
>                goto fail3;
>
> -       pm_runtime_put(musb->controller);
> -
>        status = musb_init_debugfs(musb);
>        if (status < 0)
>                goto fail4;
> --
> 1.7.8
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
Gražvydas
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] usb: musb: fix pm_runtime mismatch
  2012-01-12 11:56   ` Grazvydas Ignotas
  (?)
@ 2012-01-12 15:40   ` Felipe Contreras
  2012-02-13 12:54     ` Grazvydas Ignotas
  -1 siblings, 1 reply; 9+ messages in thread
From: Felipe Contreras @ 2012-01-12 15:40 UTC (permalink / raw)
  To: Grazvydas Ignotas
  Cc: Felipe Contreras, linux-usb, linux-kernel, linux-omap,
	Felipe Balbi, Greg Kroah-Hartman, Jarkko Nikula, stable, Hema HK

On Thu, Jan 12, 2012 at 1:56 PM, Grazvydas Ignotas <notasas@gmail.com> wrote:
> On Mon, Dec 19, 2011 at 10:01 PM, Felipe Contreras
> <felipe.contreras@nokia.com> wrote:
>> From: Felipe Contreras <felipe.contreras@gmail.com>
>>
>> In musb_init_controller() there's a pm_runtime_put(), but there's no
>> pm_runtime_get(), which creates a mismatch that causes the driver to
>> sleep when it shouldn't.
>
> This patch is causing problems here, the device never suspends, I've
> verified musb_runtime_suspend and omap2430_runtime_suspend are never
> called in my setup, unless I revert this patch. I'm using musb with
> ethernet gadget; cable removal also doesn't suspend musb.
>
> It seems pm_runtime_put() that was removed was balancing out
> pm_runtime_get in musb_platform_init(), which is called at the
> beginning of musb_init_controller(). I think this pm_runtime_get()
> from musb_platform_init() should be moved to musb_init_controller() to
> stop confusing people and pm_runtime_put() needs to be brought back. I
> can do a patch if nobody objects.

You mean have both get and put in musb_init_controller()? That's OK,
it would be balanced then, but you would have to remove the
pm_runtime_put() from omap2430_remove() that presumably was balancing
the pm_runtime_get_sync() in omap2430_musb_init().

>> This was introduced in 7acc619[1], but it wasn't triggered in my setup
>> until 18a2689[2] was merged to Linus' branch at point df0914[3]. IOW;
>> when PM is working as it was supposed to.
>>
>> However, it seems most of the time this is used in a way that keeps the
>> counter above 0, so nobody noticed. Also, it seems to depend on the
>> configuration used in versions before 3.1, but not later (or in it).
>>
>> I found the problem by loading isp1704_charger before any usb gadgets:
>> http://article.gmane.org/gmane.linux.kernel/1226122
>
> isp1704_charger seems to be doing otg_io_read(), and it's perfectly
> normal that musb can be suspended at the time isp1704 decides to do
> this. I think proper fix is to wake up must on musb_ulpi_read() and
> musb_ulpi_write() instead.

I guess so. If you send these patches I can give them a try.

-- 
Felipe Contreras

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] usb: musb: fix pm_runtime mismatch
  2012-01-12 15:40   ` Felipe Contreras
@ 2012-02-13 12:54     ` Grazvydas Ignotas
  2012-02-13 15:06       ` Felipe Contreras
  0 siblings, 1 reply; 9+ messages in thread
From: Grazvydas Ignotas @ 2012-02-13 12:54 UTC (permalink / raw)
  To: Felipe Contreras
  Cc: Felipe Contreras, linux-usb, linux-kernel, linux-omap,
	Felipe Balbi, Jarkko Nikula, Hema HK

On Thu, Jan 12, 2012 at 5:40 PM, Felipe Contreras
<felipe.contreras@gmail.com> wrote:
> On Thu, Jan 12, 2012 at 1:56 PM, Grazvydas Ignotas <notasas@gmail.com> wrote:
>> On Mon, Dec 19, 2011 at 10:01 PM, Felipe Contreras
>> <felipe.contreras@nokia.com> wrote:
>>> From: Felipe Contreras <felipe.contreras@gmail.com>
>>>
>>> In musb_init_controller() there's a pm_runtime_put(), but there's no
>>> pm_runtime_get(), which creates a mismatch that causes the driver to
>>> sleep when it shouldn't.
>>
>> This patch is causing problems here, the device never suspends, I've
>> verified musb_runtime_suspend and omap2430_runtime_suspend are never
>> called in my setup, unless I revert this patch. I'm using musb with
>> ethernet gadget; cable removal also doesn't suspend musb.
>>
>> It seems pm_runtime_put() that was removed was balancing out
>> pm_runtime_get in musb_platform_init(), which is called at the
>> beginning of musb_init_controller(). I think this pm_runtime_get()
>> from musb_platform_init() should be moved to musb_init_controller() to
>> stop confusing people and pm_runtime_put() needs to be brought back. I
>> can do a patch if nobody objects.
>
> You mean have both get and put in musb_init_controller()? That's OK,
> it would be balanced then, but you would have to remove the
> pm_runtime_put() from omap2430_remove() that presumably was balancing
> the pm_runtime_get_sync() in omap2430_musb_init().
>
>>> This was introduced in 7acc619[1], but it wasn't triggered in my setup
>>> until 18a2689[2] was merged to Linus' branch at point df0914[3]. IOW;
>>> when PM is working as it was supposed to.
>>>
>>> However, it seems most of the time this is used in a way that keeps the
>>> counter above 0, so nobody noticed. Also, it seems to depend on the
>>> configuration used in versions before 3.1, but not later (or in it).
>>>
>>> I found the problem by loading isp1704_charger before any usb gadgets:
>>> http://article.gmane.org/gmane.linux.kernel/1226122
>>
>> isp1704_charger seems to be doing otg_io_read(), and it's perfectly
>> normal that musb can be suspended at the time isp1704 decides to do
>> this. I think proper fix is to wake up must on musb_ulpi_read() and
>> musb_ulpi_write() instead.
>
> I guess so. If you send these patches I can give them a try.

Sent them a week ago, would be nice if you tried them.


-- 
Gražvydas

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] usb: musb: fix pm_runtime mismatch
  2012-02-13 12:54     ` Grazvydas Ignotas
@ 2012-02-13 15:06       ` Felipe Contreras
  0 siblings, 0 replies; 9+ messages in thread
From: Felipe Contreras @ 2012-02-13 15:06 UTC (permalink / raw)
  To: Grazvydas Ignotas
  Cc: Felipe Contreras, linux-usb, linux-kernel, linux-omap,
	Felipe Balbi, Jarkko Nikula, Hema HK

On Mon, Feb 13, 2012 at 2:54 PM, Grazvydas Ignotas <notasas@gmail.com> wrote:
> On Thu, Jan 12, 2012 at 5:40 PM, Felipe Contreras
> <felipe.contreras@gmail.com> wrote:
>> On Thu, Jan 12, 2012 at 1:56 PM, Grazvydas Ignotas <notasas@gmail.com> wrote:
>>> On Mon, Dec 19, 2011 at 10:01 PM, Felipe Contreras
>>> <felipe.contreras@nokia.com> wrote:
>>>> From: Felipe Contreras <felipe.contreras@gmail.com>
>>>>
>>>> In musb_init_controller() there's a pm_runtime_put(), but there's no
>>>> pm_runtime_get(), which creates a mismatch that causes the driver to
>>>> sleep when it shouldn't.
>>>
>>> This patch is causing problems here, the device never suspends, I've
>>> verified musb_runtime_suspend and omap2430_runtime_suspend are never
>>> called in my setup, unless I revert this patch. I'm using musb with
>>> ethernet gadget; cable removal also doesn't suspend musb.
>>>
>>> It seems pm_runtime_put() that was removed was balancing out
>>> pm_runtime_get in musb_platform_init(), which is called at the
>>> beginning of musb_init_controller(). I think this pm_runtime_get()
>>> from musb_platform_init() should be moved to musb_init_controller() to
>>> stop confusing people and pm_runtime_put() needs to be brought back. I
>>> can do a patch if nobody objects.
>>
>> You mean have both get and put in musb_init_controller()? That's OK,
>> it would be balanced then, but you would have to remove the
>> pm_runtime_put() from omap2430_remove() that presumably was balancing
>> the pm_runtime_get_sync() in omap2430_musb_init().
>>
>>>> This was introduced in 7acc619[1], but it wasn't triggered in my setup
>>>> until 18a2689[2] was merged to Linus' branch at point df0914[3]. IOW;
>>>> when PM is working as it was supposed to.
>>>>
>>>> However, it seems most of the time this is used in a way that keeps the
>>>> counter above 0, so nobody noticed. Also, it seems to depend on the
>>>> configuration used in versions before 3.1, but not later (or in it).
>>>>
>>>> I found the problem by loading isp1704_charger before any usb gadgets:
>>>> http://article.gmane.org/gmane.linux.kernel/1226122
>>>
>>> isp1704_charger seems to be doing otg_io_read(), and it's perfectly
>>> normal that musb can be suspended at the time isp1704 decides to do
>>> this. I think proper fix is to wake up must on musb_ulpi_read() and
>>> musb_ulpi_write() instead.
>>
>> I guess so. If you send these patches I can give them a try.
>
> Sent them a week ago, would be nice if you tried them.

Sorry, I just started hacking with my N900 again. I will probably test
them later today.

Cheers.

-- 
Felipe Contreras

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2012-02-13 15:06 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-19 20:01 [PATCH v2] usb: musb: fix pm_runtime mismatch Felipe Contreras
2011-12-19 20:01 ` Felipe Contreras
2011-12-20 11:38 ` Felipe Balbi
2011-12-20 11:38   ` Felipe Balbi
2012-01-12 11:56 ` Grazvydas Ignotas
2012-01-12 11:56   ` Grazvydas Ignotas
2012-01-12 15:40   ` Felipe Contreras
2012-02-13 12:54     ` Grazvydas Ignotas
2012-02-13 15:06       ` Felipe Contreras

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.