All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vinod Koul <vinod.koul@intel.com>
To: Yoshihiro Shimoda
	<yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>
Cc: dan.j.williams-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org,
	laurent.pinchart-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org,
	horms-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org,
	kuninori.morimoto.gx-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org,
	robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	pawel.moll-5wv7dgnIgG8@public.gmane.org,
	mark.rutland-5wv7dgnIgG8@public.gmane.org,
	ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org,
	galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
	dmaengine-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-sh-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH v4 0/2] dmaengine: usb-dmac: Add Renesas USB DMA Controller
Date: Thu, 02 Apr 2015 07:40:21 +0000	[thread overview]
Message-ID: <20150402072821.GW7192@intel.com> (raw)
In-Reply-To: <1427869365-2068-1-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>

On Wed, Apr 01, 2015 at 03:22:43PM +0900, Yoshihiro Shimoda wrote:
> This patch set is based on slave-dma.git / next branch.
> (commit id = 739e9c81155e74ca7acfa152eea4e8c055fe35b8)
Applied, thanks

-- 
~Vinod
> 
> Changes from v3:
>  - Call devm_free_irq() in usb_dmac_chan_remove() to prevent the isr gets
>    triggered after this driver have freed up stuff.
> 
> Changes from v2:
>  - Change descriptor management to store the residue in descriptor instead
>    of the channel.
>  - Change acceptable any sg_len.
>  - Modify usb_dmac_tx_status() to calculate the residue for flight
>    descriptors.
>  - Remove a local tasklet.
>  - Remove #ifdef CONFIG_PM.
>  Remarks: No change in patch [1/2].
> 
> Changes from v1:
>  - Use virt-dma infrastructure instead of local descriptor management.
>  - Change acceptable sg_len to 1.
>    (because a client driver will use dmaengine_prep_slave_single().)
>  - Remove usb_dmac_sleep_{suspend,resume} functions.
>  - Add usb_dmac_chan_halt() in usb_dmac_runtime_suspend().
>  - Use a tasklet instead of a kernel thread.
>  - Add tasklet_kill() in usb_dmac_remove().
>  - Fix MODULE_AUTHOR string.
>  Remarks: No change in patch [1/2].
> 
> Yoshihiro Shimoda (2):
>   dmaengine: renesas,usb-dmac: Add device tree bindings documentation
>   dmaengine: usb-dmac: Add Renesas USB DMA Controller (USB-DMAC) driver
> 
>  .../devicetree/bindings/dma/renesas,usb-dmac.txt   |  37 +
>  drivers/dma/sh/Kconfig                             |   9 +
>  drivers/dma/sh/Makefile                            |   1 +
>  drivers/dma/sh/usb-dmac.c                          | 910 +++++++++++++++++++++
>  4 files changed, 957 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/dma/renesas,usb-dmac.txt
>  create mode 100644 drivers/dma/sh/usb-dmac.c
> 
> -- 
> 1.9.1
> 

-- 

WARNING: multiple messages have this Message-ID (diff)
From: Vinod Koul <vinod.koul-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: Yoshihiro Shimoda
	<yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>
Cc: dan.j.williams-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org,
	laurent.pinchart-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org,
	horms-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org,
	kuninori.morimoto.gx-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org,
	robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	pawel.moll-5wv7dgnIgG8@public.gmane.org,
	mark.rutland-5wv7dgnIgG8@public.gmane.org,
	ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org,
	galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
	dmaengine-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-sh-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH v4 0/2] dmaengine: usb-dmac: Add Renesas USB DMA Controller
Date: Thu, 2 Apr 2015 12:58:21 +0530	[thread overview]
Message-ID: <20150402072821.GW7192@intel.com> (raw)
In-Reply-To: <1427869365-2068-1-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>

On Wed, Apr 01, 2015 at 03:22:43PM +0900, Yoshihiro Shimoda wrote:
> This patch set is based on slave-dma.git / next branch.
> (commit id = 739e9c81155e74ca7acfa152eea4e8c055fe35b8)
Applied, thanks

-- 
~Vinod
> 
> Changes from v3:
>  - Call devm_free_irq() in usb_dmac_chan_remove() to prevent the isr gets
>    triggered after this driver have freed up stuff.
> 
> Changes from v2:
>  - Change descriptor management to store the residue in descriptor instead
>    of the channel.
>  - Change acceptable any sg_len.
>  - Modify usb_dmac_tx_status() to calculate the residue for flight
>    descriptors.
>  - Remove a local tasklet.
>  - Remove #ifdef CONFIG_PM.
>  Remarks: No change in patch [1/2].
> 
> Changes from v1:
>  - Use virt-dma infrastructure instead of local descriptor management.
>  - Change acceptable sg_len to 1.
>    (because a client driver will use dmaengine_prep_slave_single().)
>  - Remove usb_dmac_sleep_{suspend,resume} functions.
>  - Add usb_dmac_chan_halt() in usb_dmac_runtime_suspend().
>  - Use a tasklet instead of a kernel thread.
>  - Add tasklet_kill() in usb_dmac_remove().
>  - Fix MODULE_AUTHOR string.
>  Remarks: No change in patch [1/2].
> 
> Yoshihiro Shimoda (2):
>   dmaengine: renesas,usb-dmac: Add device tree bindings documentation
>   dmaengine: usb-dmac: Add Renesas USB DMA Controller (USB-DMAC) driver
> 
>  .../devicetree/bindings/dma/renesas,usb-dmac.txt   |  37 +
>  drivers/dma/sh/Kconfig                             |   9 +
>  drivers/dma/sh/Makefile                            |   1 +
>  drivers/dma/sh/usb-dmac.c                          | 910 +++++++++++++++++++++
>  4 files changed, 957 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/dma/renesas,usb-dmac.txt
>  create mode 100644 drivers/dma/sh/usb-dmac.c
> 
> -- 
> 1.9.1
> 

-- 
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2015-04-02  7:40 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-01  6:22 [PATCH v4 0/2] dmaengine: usb-dmac: Add Renesas USB DMA Controller Yoshihiro Shimoda
2015-04-01  6:22 ` Yoshihiro Shimoda
2015-04-01  6:22 ` [PATCH v4 1/2] dmaengine: renesas,usb-dmac: Add device tree bindings documentation Yoshihiro Shimoda
2015-04-01  6:22   ` Yoshihiro Shimoda
     [not found] ` <1427869365-2068-1-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>
2015-04-01  6:22   ` [PATCH v4 2/2] dmaengine: usb-dmac: Add Renesas USB DMA Controller (USB-DMAC) driver Yoshihiro Shimoda
2015-04-01  6:22     ` Yoshihiro Shimoda
2015-04-02  7:28   ` Vinod Koul [this message]
2015-04-02  7:40     ` [PATCH v4 0/2] dmaengine: usb-dmac: Add Renesas USB DMA Controller Vinod Koul

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=20150402072821.GW7192@intel.com \
    --to=vinod.koul@intel.com \
    --cc=dan.j.williams-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=dmaengine-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
    --cc=horms-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org \
    --cc=ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org \
    --cc=kuninori.morimoto.gx-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org \
    --cc=laurent.pinchart-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org \
    --cc=linux-sh-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
    --cc=pawel.moll-5wv7dgnIgG8@public.gmane.org \
    --cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.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 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.