All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: George Cherian <george.cherian@ti.com>
Cc: linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org,
	linux-omap@vger.kernel.org, gregkh@linuxfoundation.org,
	balbi@ti.com, zonque@gmail.com, b-liu@ti.com
Subject: Re: [PATCH v6 1/5] usb: musb: core: Handle Babble condition only in HOST mode
Date: Thu, 19 Jun 2014 03:44:42 -0700	[thread overview]
Message-ID: <20140619104441.GD29055@atomide.com> (raw)
In-Reply-To: <1401096012-6895-2-git-send-email-george.cherian@ti.com>

* George Cherian <george.cherian@ti.com> [140526 02:25]:
> BABBLE and RESET share the same interrupt. The interrupt
> is considered to be RESET if MUSB is in peripheral mode and
> as a BABBLE if MUSB is in HOST mode.
> 
> Handle babble condition iff MUSB is in HOST mode.

Please get this into mainline kernel for v3.16-rc.

Fixes: ca88fc2ef0d7 (usb: musb: add a work_struct to recover from babble errors)

Tested-by: Tony Lindgren <tony@atomide.com>
 
> Signed-off-by: George Cherian <george.cherian@ti.com>
> ---
>  drivers/usb/musb/musb_core.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c
> index 3c6043c..0ad9551 100644
> --- a/drivers/usb/musb/musb_core.c
> +++ b/drivers/usb/musb/musb_core.c
> @@ -849,7 +849,7 @@ b_host:
>  	}
>  
>  	/* handle babble condition */
> -	if (int_usb & MUSB_INTR_BABBLE)
> +	if (int_usb & MUSB_INTR_BABBLE && is_host_active(musb))
>  		schedule_work(&musb->recover_work);
>  
>  #if 0
> -- 
> 1.8.3.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

  reply	other threads:[~2014-06-19 10:44 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-26  9:20 [PATCH v6 0/5] Add support for SW babble Control George Cherian
2014-05-26  9:20 ` George Cherian
2014-05-26  9:20 ` [PATCH v6 1/5] usb: musb: core: Handle Babble condition only in HOST mode George Cherian
2014-05-26  9:20   ` George Cherian
2014-06-19 10:44   ` Tony Lindgren [this message]
2014-06-19 16:01     ` Felipe Balbi
2014-06-19 16:01       ` Felipe Balbi
2014-05-26  9:20 ` [PATCH v6 2/5] usb: musb: core: Convert babble recover work to delayed work George Cherian
2014-05-26  9:20   ` George Cherian
2014-05-26  9:20 ` [PATCH v6 3/5] usb: musb: dsps: Call usb_phy(_shutdown/_init) during musb_platform_reset() George Cherian
2014-05-26  9:20   ` George Cherian
2014-05-26  9:20 ` [PATCH v6 4/5] usb: musb: core: Convert the musb_platform_reset to have a return value George Cherian
2014-05-26  9:20   ` George Cherian
2014-05-26  9:20 ` [PATCH v6 5/5] usb: musb: dsps: Add the sw_babble_control() and Enable for newer silicon George Cherian
2014-05-26  9:20   ` George Cherian
2014-06-03 19:00 ` [PATCH v6 0/5] Add support for SW babble Control Bin Liu
2014-06-30 17:30 ` Felipe Balbi
2014-06-30 17:30   ` Felipe Balbi

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=20140619104441.GD29055@atomide.com \
    --to=tony@atomide.com \
    --cc=b-liu@ti.com \
    --cc=balbi@ti.com \
    --cc=george.cherian@ti.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=zonque@gmail.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 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.