All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vinod Koul <vinod.koul@intel.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Dan Williams <dan.j.williams@intel.com>,
	LKML <linux-kernel@vger.kernel.org>,
	dma <dmaengine@vger.kernel.org>
Subject: [GIT PULL] slave-dmaengine updates
Date: Wed, 9 Apr 2014 21:42:02 +0530	[thread overview]
Message-ID: <20140409161202.GB9846@intel.com> (raw)

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

Hey Linus,

Here is the pull request for this merge window. Please pull to receive:
- New driver for Qcom bam dma
- New driver for RCAR peri-peri
- New driver for FSL eDMA
- Various odd fixes and updates thru the subsystem


The following changes since commit b28a960c42fcd9cfc987441fa6d1c1a471f0f9ed:
  Linus Torvalds (1):
        Linux 3.14-rc2

are available in the git repository at:

  git://git.infradead.org/users/vkoul/slave-dma.git for-linus

Alexander Shiyan (2):
      dma: imx-dma: Replace printk with dev_*
      dma: imx-dma: Add missing module owner field

Andy Gross (2):
      dmaengine: qcom_bam_dma: Add device tree binding
      dmaengine: add Qualcomm BAM dma driver

Andy Shevchenko (5):
      acpi-dma: use devm_release() instead of devm_destroy()
      acpi-dma: convert to return error code when asked for channel
      dma: dw: add a PCI ID for Intel Haswell SoC
      dma: dw: remove leftovers in the comment blocks
      dma: dw: allocate memory in two stages in probe

Barry Song (1):
      dmaengine: sirf: enable generic dt binding for dma channels

Chao Xie (1):
      dma: mmp_pdma: add IRQF_SHARED when request irq

Chew, Chiau Ee (1):
      dma: dw: Add suspend and resume handling for PCI mode DW_DMAC.

Christian Engelmayer (1):
      dma: edma: Fix memory leak in edma_prep_dma_cyclic()

Dan Carpenter (1):
      dmaengine: s3c24xx-dma: make phy->irq signed for error handling

George Cherian (2):
      usb: musb: musb_cppi41: Dont reprogram DMA if tear down is initiated
      dma: cppi41: start tear down only if channel is busy

Jerome Blin (1):
      Add new line to test result strings produced in verbose mode

Jingchang Lu (2):
      dma: Add Freescale eDMA engine driver support
      dma: fsl-edma: fix static checker warning of NULL dereference

Kuninori Morimoto (1):
      shdma: add R-Car Audio DMAC peri peri driver

Lars-Peter Clausen (1):
      dma: Remove comment about embedding dma_slave_config into custom structs

Laurent Pinchart (3):
      DMA: shdma: Fix warnings due to improper casts and printk formats
      DMA: shdma: Fix warnings due to declared but unused symbols
      DMA: shdma: Make sh_dmae_pm static

Nenghua Cao (1):
      dma: mmp_tdma: move to generic device tree binding

Paul Bolle (1):
      dmaengine: Remove dependency on MACH_BCM2708

Peter Ujfalusi (1):
      dma: omap-dma: Implement device_slave_caps callback

Vinod Koul (4):
      dmaengine: at_hdmac: use tasklet_kill in teardown
      dmaengine: pch_dma: use tasklet_kill in teardown
      Merge branch 'topic/tasklet_fix' into for-linus
      Merge branch 'topic/bam' into for-linus

 Documentation/devicetree/bindings/dma/fsl-edma.txt |   76 ++
 .../devicetree/bindings/dma/qcom_bam_dma.txt       |   41 +
 .../devicetree/bindings/dma/sirfsoc-dma.txt        |   43 +
 arch/arm/boot/dts/atlas6.dtsi                      |    2 +
 arch/arm/boot/dts/prima2.dtsi                      |    2 +
 drivers/dma/Kconfig                                |   21 +-
 drivers/dma/Makefile                               |    2 +
 drivers/dma/acpi-dma.c                             |   17 +-
 drivers/dma/at_hdmac.c                             |    1 -
 drivers/dma/cppi41.c                               |    7 +-
 drivers/dma/dmaengine.c                            |    9 +-
 drivers/dma/dmatest.c                              |    4 +-
 drivers/dma/dw/core.c                              |   21 +-
 drivers/dma/dw/pci.c                               |   36 +
 drivers/dma/dw/regs.h                              |    4 +-
 drivers/dma/edma.c                                 |    5 +-
 drivers/dma/fsl-edma.c                             |  975 +++++++++++++++++
 drivers/dma/imx-dma.c                              |   13 +-
 drivers/dma/mmp_pdma.c                             |    8 +-
 drivers/dma/mmp_tdma.c                             |   50 +
 drivers/dma/omap-dma.c                             |   18 +
 drivers/dma/pch_dma.c                              |    4 +-
 drivers/dma/qcom_bam_dma.c                         | 1111 ++++++++++++++++++++
 drivers/dma/s3c24xx-dma.c                          |    2 +-
 drivers/dma/sh/Kconfig                             |    6 +
 drivers/dma/sh/Makefile                            |    1 +
 drivers/dma/sh/rcar-audmapp.c                      |  320 ++++++
 drivers/dma/sh/shdma-base.c                        |   10 +-
 drivers/dma/sh/shdma-of.c                          |    3 +-
 drivers/dma/sh/shdmac.c                            |   13 +-
 drivers/dma/sh/sudmac.c                            |    4 +-
 drivers/dma/sirf-dma.c                             |   23 +
 drivers/usb/musb/musb_cppi41.c                     |    3 +-
 include/linux/acpi_dma.h                           |    5 +-
 include/linux/dmaengine.h                          |   14 +-
 include/linux/dw_dmac.h                            |    5 +-
 include/linux/platform_data/dma-rcar-audmapp.h     |   34 +
 37 files changed, 2839 insertions(+), 74 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/dma/fsl-edma.txt
 create mode 100644 Documentation/devicetree/bindings/dma/qcom_bam_dma.txt
 create mode 100644 Documentation/devicetree/bindings/dma/sirfsoc-dma.txt
 create mode 100644 drivers/dma/fsl-edma.c
 create mode 100644 drivers/dma/qcom_bam_dma.c
 create mode 100644 drivers/dma/sh/rcar-audmapp.c
 create mode 100644 include/linux/platform_data/dma-rcar-audmapp.h

Thanks
-- 
~Vinod

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

             reply	other threads:[~2014-04-09 16:21 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-09 16:12 Vinod Koul [this message]
  -- strict thread matches above, loose matches on Subject: below --
2013-11-20  3:46 [GIT PULL] slave-dmaengine updates Vinod Koul
2013-07-07  4:17 Vinod Koul
2013-07-07 21:39 ` Linus Torvalds
2013-07-08  2:02   ` Vinod Koul
2013-05-08  2:47 Vinod Koul
2013-02-22  4:32 Vinod Koul
2012-01-16 15:06 Vinod Koul
2012-01-18  2:41 ` Linus Torvalds
2012-01-18 20:03   ` Vinod Koul
2011-10-31  4:40 Vinod Koul
2011-08-01 10:43 Koul, Vinod

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=20140409161202.GB9846@intel.com \
    --to=vinod.koul@intel.com \
    --cc=dan.j.williams@intel.com \
    --cc=dmaengine@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.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.