Linux USB
 help / color / mirror / Atom feed
From: Paul Cercueil <paul@crapouillou.net>
To: Frank Li <Frank.li@nxp.com>
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	"Jonathan Corbet" <corbet@lwn.net>,
	"Sumit Semwal" <sumit.semwal@linaro.org>,
	"Christian König" <christian.koenig@amd.com>,
	"Jonathan Cameron" <jic23@kernel.org>,
	"Nuno Sá" <noname.nuno@gmail.com>,
	"Michael Hennerich" <Michael.Hennerich@analog.com>,
	linux-usb@vger.kernel.org, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-media@vger.kernel.org,
	dri-devel@lists.freedesktop.org, linaro-mm-sig@lists.linaro.org
Subject: Re: [PATCH v4 1/4] usb: gadget: Support already-mapped DMA SGs
Date: Sat, 20 Jan 2024 01:14:52 +0100	[thread overview]
Message-ID: <59799a40d8cc425dc5a847a0c8e25730db4fc5c8.camel@crapouillou.net> (raw)
In-Reply-To: <ZaruU5BpQF8SeZZS@lizhi-Precision-Tower-5810>

Hi Frank,

Le vendredi 19 janvier 2024 à 16:49 -0500, Frank Li a écrit :
> On Wed, Jan 17, 2024 at 01:26:43PM +0100, Paul Cercueil wrote:
> > Add a new 'sg_was_mapped' field to the struct usb_request. This
> > field
> > can be used to indicate that the scatterlist associated to the USB
> > transfer has already been mapped into the DMA space, and it does
> > not
> > have to be done internally.
> > 
> > Signed-off-by: Paul Cercueil <paul@crapouillou.net>
> > ---
> >  drivers/usb/gadget/udc/core.c | 7 ++++++-
> >  include/linux/usb/gadget.h    | 2 ++
> >  2 files changed, 8 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/usb/gadget/udc/core.c
> > b/drivers/usb/gadget/udc/core.c
> > index d59f94464b87..9d4150124fdb 100644
> > --- a/drivers/usb/gadget/udc/core.c
> > +++ b/drivers/usb/gadget/udc/core.c
> > @@ -903,6 +903,11 @@ int usb_gadget_map_request_by_dev(struct
> > device *dev,
> >  	if (req->length == 0)
> >  		return 0;
> >  
> > +	if (req->sg_was_mapped) {
> > +		req->num_mapped_sgs = req->num_sgs;
> > +		return 0;
> > +	}
> > +
> >  	if (req->num_sgs) {
> >  		int     mapped;
> >  
> > @@ -948,7 +953,7 @@ EXPORT_SYMBOL_GPL(usb_gadget_map_request);
> >  void usb_gadget_unmap_request_by_dev(struct device *dev,
> >  		struct usb_request *req, int is_in)
> >  {
> > -	if (req->length == 0)
> > +	if (req->length == 0 || req->sg_was_mapped)
> >  		return;
> >  
> >  	if (req->num_mapped_sgs) {
> > diff --git a/include/linux/usb/gadget.h
> > b/include/linux/usb/gadget.h
> > index a771ccc038ac..c529e4e06997 100644
> > --- a/include/linux/usb/gadget.h
> > +++ b/include/linux/usb/gadget.h
> > @@ -52,6 +52,7 @@ struct usb_ep;
> >   * @short_not_ok: When reading data, makes short packets be
> >   *     treated as errors (queue stops advancing till cleanup).
> >   * @dma_mapped: Indicates if request has been mapped to DMA
> > (internal)
> > + * @sg_was_mapped: Set if the scatterlist has been mapped before
> > the request
> >   * @complete: Function called when request completes, so this
> > request and
> >   *	its buffer may be re-used.  The function will always be
> > called with
> >   *	interrupts disabled, and it must not sleep.
> > @@ -111,6 +112,7 @@ struct usb_request {
> >  	unsigned		zero:1;
> >  	unsigned		short_not_ok:1;
> >  	unsigned		dma_mapped:1;
> > +	unsigned		sg_was_mapped:1;
> 
> why not use dma_mapped direclty?

Because of the unmap case. We want to know whether we should unmap or
not.

> 
> Frank

Cheers,
-Paul

> 
> >  
> >  	void			(*complete)(struct usb_ep *ep,
> >  					struct usb_request *req);
> > -- 
> > 2.43.0
> > 


  reply	other threads:[~2024-01-20  0:15 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-17 12:26 [PATCH v4 0/4] usb: gadget: functionfs: DMABUF import interface Paul Cercueil
2024-01-17 12:26 ` [PATCH v4 1/4] usb: gadget: Support already-mapped DMA SGs Paul Cercueil
2024-01-19 21:49   ` Frank Li
2024-01-20  0:14     ` Paul Cercueil [this message]
2024-01-20  2:01       ` Frank Li
2024-01-17 12:26 ` [PATCH v4 2/4] usb: gadget: functionfs: Factorize wait-for-endpoint code Paul Cercueil
2024-01-17 12:26 ` [PATCH v4 3/4] usb: gadget: functionfs: Add DMABUF import interface Paul Cercueil
2024-01-17 13:15   ` Christian König
2024-01-19 13:10   ` kernel test robot
2024-01-19 14:25   ` kernel test robot
2024-01-17 12:26 ` [PATCH v4 4/4] Documentation: usb: Document FunctionFS DMABUF API Paul Cercueil

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=59799a40d8cc425dc5a847a0c8e25730db4fc5c8.camel@crapouillou.net \
    --to=paul@crapouillou.net \
    --cc=Frank.li@nxp.com \
    --cc=Michael.Hennerich@analog.com \
    --cc=christian.koenig@amd.com \
    --cc=corbet@lwn.net \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jic23@kernel.org \
    --cc=linaro-mm-sig@lists.linaro.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=noname.nuno@gmail.com \
    --cc=sumit.semwal@linaro.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox