From: Felipe Balbi <balbi@ti.com>
To: yoshihiro shimoda <yoshihiro.shimoda.uh@renesas.com>
Cc: "balbi@ti.com" <balbi@ti.com>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Greg KH <gregkh@linuxfoundation.org>,
Rob Herring <robh+dt@kernel.org>, Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Kumar Gala <galak@codeaurora.org>,
USB list <linux-usb@vger.kernel.org>,
Linux-sh list <linux-sh@vger.kernel.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>
Subject: Re: [PATCH v2 1/4] usb: renesas_usbhs: fix spinlock suspected in a gadget complete function
Date: Fri, 13 Mar 2015 15:44:08 +0000 [thread overview]
Message-ID: <20150313154408.GE5615@saruman.tx.rr.com> (raw)
In-Reply-To: <SIXPR06MB333E6503A469B6E147B20CED8070@SIXPR06MB333.apcprd06.prod.outlook.com>
[-- Attachment #1: Type: text/plain, Size: 3103 bytes --]
Hi,
On Fri, Mar 13, 2015 at 01:14:01AM +0000, yoshihiro shimoda wrote:
> > > > diff --git a/drivers/usb/renesas_usbhs/mod_gadget.c b/drivers/usb/renesas_usbhs/mod_gadget.c
> > > > index e0384af77e56..e9d75d85be59 100644
> > > > --- a/drivers/usb/renesas_usbhs/mod_gadget.c
> > > > +++ b/drivers/usb/renesas_usbhs/mod_gadget.c
> > > > @@ -119,7 +119,7 @@ struct usbhsg_recip_handle {
> > > > /*
> > > > * queue push/pop
> > > > */
> > > > -static void usbhsg_queue_pop(struct usbhsg_uep *uep,
> > > > +static void __usbhsg_queue_pop(struct usbhsg_uep *uep,
> > > > struct usbhsg_request *ureq,
> > > > int status)
> > > > {
> > > > @@ -133,6 +133,15 @@ static void usbhsg_queue_pop(struct usbhsg_uep *uep,
> > > > usb_gadget_giveback_request(&uep->ep, &ureq->req);
> > > > }
> > > >
> > > > +static void usbhsg_queue_pop(struct usbhsg_uep *uep,
> > > > + struct usbhsg_request *ureq,
> > > > + int status)
> > > > +{
> > > > + usbhs_lock(priv, flags);
> > > > + __usbhsg_queue_pop(uep, ureq, status);
> > > > + usbhs_unlock(priv, flags);
> > > > +}
> > > > +
> > > > static void usbhsg_queue_done(struct usbhs_priv *priv, struct usbhs_pkt *pkt)
> > > > {
> > > > struct usbhs_pipe *pipe = pkt->pipe;
> > > >
> > > >
> > > > then, for cases where lock is already held you call __usbhsg_queue_pop()
> > > > and for all other cases, call usbhsg_queue_pop().
> > >
> > > Thank you for the suggestion. However, we cannot use this
> > > usbhsg_queue_pop() because a gadget driver might call usb_ep_queue()
> > > in the "complete" function and this driver calls usbhs_lock() in the
> > > usb_ep_queue().
> >
> > right, in that case just call __usbhs_queue_pop() directly.
>
> Yes. So, my understanding is that this driver always calls __usbhs_queue_pop()
> because this driver cannot know that a gadget driver calls usb_ep_queue() or not
> in the "complete" function.
but you don't need to know that. All you have to do is spin_unlock()
before calling usb_gadget_giveback_request(), look at
drivers/usb/dwc3/gadget.c::dwc3_gadget_giveback()
> > > Perhaps my explanation was bad, but this issue was caused by the
> > > following conditions:
> > > - I use the renesas_usbhs driver as udc.
> > > - I use an old usb-dmac driver that the callback runs on a kthread.
> > > - I use the ncm driver. In this environment, the ncm driver might
> > > cause a spinlock suspected.
> > >
> > > As an old solution, I fixed the renesas_usbhs driver by this patch.
> > > However, if I use a new usb-dmac driver that the callback runs on a
> > > tasklet, I don't need this patch. (This is a new solution.)
> >
> > then differentiate based on some revision register or something like
> > that ?
>
> Sorry for the lack information. I am submitting this usb-dmac driver that
> the callback runs on a tasklet now. This means that the driver is not
> merged yet. So, I think that we don't need to differentiate.
But as soon as your driver gets merged, you will need to differentiate,
right ?
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Felipe Balbi <balbi@ti.com>
To: yoshihiro shimoda <yoshihiro.shimoda.uh@renesas.com>
Cc: "balbi@ti.com" <balbi@ti.com>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Greg KH <gregkh@linuxfoundation.org>,
Rob Herring <robh+dt@kernel.org>, Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Kumar Gala <galak@codeaurora.org>,
USB list <linux-usb@vger.kernel.org>,
Linux-sh list <linux-sh@vger.kernel.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>
Subject: Re: [PATCH v2 1/4] usb: renesas_usbhs: fix spinlock suspected in a gadget complete function
Date: Fri, 13 Mar 2015 10:44:08 -0500 [thread overview]
Message-ID: <20150313154408.GE5615@saruman.tx.rr.com> (raw)
In-Reply-To: <SIXPR06MB333E6503A469B6E147B20CED8070@SIXPR06MB333.apcprd06.prod.outlook.com>
[-- Attachment #1: Type: text/plain, Size: 3103 bytes --]
Hi,
On Fri, Mar 13, 2015 at 01:14:01AM +0000, yoshihiro shimoda wrote:
> > > > diff --git a/drivers/usb/renesas_usbhs/mod_gadget.c b/drivers/usb/renesas_usbhs/mod_gadget.c
> > > > index e0384af77e56..e9d75d85be59 100644
> > > > --- a/drivers/usb/renesas_usbhs/mod_gadget.c
> > > > +++ b/drivers/usb/renesas_usbhs/mod_gadget.c
> > > > @@ -119,7 +119,7 @@ struct usbhsg_recip_handle {
> > > > /*
> > > > * queue push/pop
> > > > */
> > > > -static void usbhsg_queue_pop(struct usbhsg_uep *uep,
> > > > +static void __usbhsg_queue_pop(struct usbhsg_uep *uep,
> > > > struct usbhsg_request *ureq,
> > > > int status)
> > > > {
> > > > @@ -133,6 +133,15 @@ static void usbhsg_queue_pop(struct usbhsg_uep *uep,
> > > > usb_gadget_giveback_request(&uep->ep, &ureq->req);
> > > > }
> > > >
> > > > +static void usbhsg_queue_pop(struct usbhsg_uep *uep,
> > > > + struct usbhsg_request *ureq,
> > > > + int status)
> > > > +{
> > > > + usbhs_lock(priv, flags);
> > > > + __usbhsg_queue_pop(uep, ureq, status);
> > > > + usbhs_unlock(priv, flags);
> > > > +}
> > > > +
> > > > static void usbhsg_queue_done(struct usbhs_priv *priv, struct usbhs_pkt *pkt)
> > > > {
> > > > struct usbhs_pipe *pipe = pkt->pipe;
> > > >
> > > >
> > > > then, for cases where lock is already held you call __usbhsg_queue_pop()
> > > > and for all other cases, call usbhsg_queue_pop().
> > >
> > > Thank you for the suggestion. However, we cannot use this
> > > usbhsg_queue_pop() because a gadget driver might call usb_ep_queue()
> > > in the "complete" function and this driver calls usbhs_lock() in the
> > > usb_ep_queue().
> >
> > right, in that case just call __usbhs_queue_pop() directly.
>
> Yes. So, my understanding is that this driver always calls __usbhs_queue_pop()
> because this driver cannot know that a gadget driver calls usb_ep_queue() or not
> in the "complete" function.
but you don't need to know that. All you have to do is spin_unlock()
before calling usb_gadget_giveback_request(), look at
drivers/usb/dwc3/gadget.c::dwc3_gadget_giveback()
> > > Perhaps my explanation was bad, but this issue was caused by the
> > > following conditions:
> > > - I use the renesas_usbhs driver as udc.
> > > - I use an old usb-dmac driver that the callback runs on a kthread.
> > > - I use the ncm driver. In this environment, the ncm driver might
> > > cause a spinlock suspected.
> > >
> > > As an old solution, I fixed the renesas_usbhs driver by this patch.
> > > However, if I use a new usb-dmac driver that the callback runs on a
> > > tasklet, I don't need this patch. (This is a new solution.)
> >
> > then differentiate based on some revision register or something like
> > that ?
>
> Sorry for the lack information. I am submitting this usb-dmac driver that
> the callback runs on a tasklet now. This means that the driver is not
> merged yet. So, I think that we don't need to differentiate.
But as soon as your driver gets merged, you will need to differentiate,
right ?
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2015-03-13 15:44 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-16 1:52 [PATCH v2 0/4] usb: renesas_usbhs: add support for USB-DMAC Yoshihiro Shimoda
2015-02-16 1:52 ` Yoshihiro Shimoda
[not found] ` <1424051579-5060-1-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>
2015-02-16 1:52 ` [PATCH v2 1/4] usb: renesas_usbhs: fix spinlock suspected in a gadget complete function Yoshihiro Shimoda
2015-02-16 1:52 ` Yoshihiro Shimoda
[not found] ` <1424051579-5060-2-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>
2015-02-16 10:15 ` Geert Uytterhoeven
2015-02-16 10:15 ` Geert Uytterhoeven
2015-02-17 3:34 ` yoshihiro shimoda
2015-02-17 3:34 ` yoshihiro shimoda
2015-03-12 4:33 ` yoshihiro shimoda
2015-03-12 4:33 ` yoshihiro shimoda
2015-03-12 4:44 ` Felipe Balbi
2015-03-12 4:44 ` Felipe Balbi
2015-03-12 5:40 ` yoshihiro shimoda
2015-03-12 5:40 ` yoshihiro shimoda
2015-03-12 16:09 ` Felipe Balbi
2015-03-12 16:09 ` Felipe Balbi
[not found] ` <20150312160907.GE9261-HgARHv6XitJaoMGHk7MhZQC/G2K4zDHf@public.gmane.org>
2015-03-13 1:14 ` yoshihiro shimoda
2015-03-13 1:14 ` yoshihiro shimoda
2015-03-13 15:44 ` Felipe Balbi [this message]
2015-03-13 15:44 ` Felipe Balbi
[not found] ` <20150313154408.GE5615-HgARHv6XitJaoMGHk7MhZQC/G2K4zDHf@public.gmane.org>
2015-03-16 7:34 ` yoshihiro shimoda
2015-03-16 7:34 ` yoshihiro shimoda
2015-02-16 1:52 ` [PATCH v2 3/4] usb: renesas_usbhs: fix the sequence in xfer_work() Yoshihiro Shimoda
2015-02-16 1:52 ` Yoshihiro Shimoda
2015-02-16 1:52 ` [PATCH v2 4/4] usb: renesas_usbhs: add support for USB-DMAC Yoshihiro Shimoda
2015-02-16 1:52 ` Yoshihiro Shimoda
2015-02-16 1:52 ` [PATCH v2 2/4] usb: renesas_usbhs: add the channel number in dma-names Yoshihiro Shimoda
2015-02-16 1:52 ` Yoshihiro Shimoda
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=20150313154408.GE5615@saruman.tx.rr.com \
--to=balbi@ti.com \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=geert@linux-m68k.org \
--cc=gregkh@linuxfoundation.org \
--cc=ijc+devicetree@hellion.org.uk \
--cc=linux-sh@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=pawel.moll@arm.com \
--cc=robh+dt@kernel.org \
--cc=yoshihiro.shimoda.uh@renesas.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.