All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andy Gross <agross@codeaurora.org>
To: Vinod Koul <vinod.koul@intel.com>
Cc: devicetree@vger.kernel.org, linux-arm-msm@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	Bryan Huntsman <bryanh@codeaurora.org>,
	Andy Gross <agross@codeaurora.org>,
	Dan Williams <dan.j.williams@intel.com>,
	David Brown <davidb@codeaurora.org>,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/2] add MSM BAM dmaengine driver
Date: Fri, 25 Oct 2013 15:24:01 -0500	[thread overview]
Message-ID: <1382732643-8184-1-git-send-email-agross@codeaurora.org> (raw)

This patch set introduces the dmaengine driver for the MSM 8x74 Bus Access
Manager (BAM) DMA controller.  A number of the on-chip devices have their own
BAM DMA controller and use it to move data between system memory and peripherals
or between two peripherals.

The initial version of this driver will only support slave DMA operations
between system memory and peripherals.


Andy Gross (2):
  dmaengine: add msm bam dma driver
  dmaengine: msm_bam_dma: Add device tree binding

 .../devicetree/bindings/dma/msm_bam_dma.txt        |   49 ++
 drivers/dma/Kconfig                                |    9 +
 drivers/dma/Makefile                               |    1 +
 drivers/dma/msm_bam_dma.c                          |  840 ++++++++++++++++++++
 drivers/dma/msm_bam_dma_priv.h                     |  286 +++++++
 include/linux/msm_bam_dma.h                        |   27 +
 6 files changed, 1212 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/dma/msm_bam_dma.txt
 create mode 100644 drivers/dma/msm_bam_dma.c
 create mode 100644 drivers/dma/msm_bam_dma_priv.h
 create mode 100644 include/linux/msm_bam_dma.h

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

WARNING: multiple messages have this Message-ID (diff)
From: agross@codeaurora.org (Andy Gross)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/2] add MSM BAM dmaengine driver
Date: Fri, 25 Oct 2013 15:24:01 -0500	[thread overview]
Message-ID: <1382732643-8184-1-git-send-email-agross@codeaurora.org> (raw)

This patch set introduces the dmaengine driver for the MSM 8x74 Bus Access
Manager (BAM) DMA controller.  A number of the on-chip devices have their own
BAM DMA controller and use it to move data between system memory and peripherals
or between two peripherals.

The initial version of this driver will only support slave DMA operations
between system memory and peripherals.


Andy Gross (2):
  dmaengine: add msm bam dma driver
  dmaengine: msm_bam_dma: Add device tree binding

 .../devicetree/bindings/dma/msm_bam_dma.txt        |   49 ++
 drivers/dma/Kconfig                                |    9 +
 drivers/dma/Makefile                               |    1 +
 drivers/dma/msm_bam_dma.c                          |  840 ++++++++++++++++++++
 drivers/dma/msm_bam_dma_priv.h                     |  286 +++++++
 include/linux/msm_bam_dma.h                        |   27 +
 6 files changed, 1212 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/dma/msm_bam_dma.txt
 create mode 100644 drivers/dma/msm_bam_dma.c
 create mode 100644 drivers/dma/msm_bam_dma_priv.h
 create mode 100644 include/linux/msm_bam_dma.h

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

WARNING: multiple messages have this Message-ID (diff)
From: Andy Gross <agross@codeaurora.org>
To: Vinod Koul <vinod.koul@intel.com>
Cc: linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
	Dan Williams <dan.j.williams@intel.com>,
	David Brown <davidb@codeaurora.org>,
	Bryan Huntsman <bryanh@codeaurora.org>,
	Andy Gross <agross@codeaurora.org>
Subject: [PATCH 0/2] add MSM BAM dmaengine driver
Date: Fri, 25 Oct 2013 15:24:01 -0500	[thread overview]
Message-ID: <1382732643-8184-1-git-send-email-agross@codeaurora.org> (raw)

This patch set introduces the dmaengine driver for the MSM 8x74 Bus Access
Manager (BAM) DMA controller.  A number of the on-chip devices have their own
BAM DMA controller and use it to move data between system memory and peripherals
or between two peripherals.

The initial version of this driver will only support slave DMA operations
between system memory and peripherals.


Andy Gross (2):
  dmaengine: add msm bam dma driver
  dmaengine: msm_bam_dma: Add device tree binding

 .../devicetree/bindings/dma/msm_bam_dma.txt        |   49 ++
 drivers/dma/Kconfig                                |    9 +
 drivers/dma/Makefile                               |    1 +
 drivers/dma/msm_bam_dma.c                          |  840 ++++++++++++++++++++
 drivers/dma/msm_bam_dma_priv.h                     |  286 +++++++
 include/linux/msm_bam_dma.h                        |   27 +
 6 files changed, 1212 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/dma/msm_bam_dma.txt
 create mode 100644 drivers/dma/msm_bam_dma.c
 create mode 100644 drivers/dma/msm_bam_dma_priv.h
 create mode 100644 include/linux/msm_bam_dma.h

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation


             reply	other threads:[~2013-10-25 20:24 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-25 20:24 Andy Gross [this message]
2013-10-25 20:24 ` [PATCH 0/2] add MSM BAM dmaengine driver Andy Gross
2013-10-25 20:24 ` Andy Gross
2013-10-25 20:24 ` [PATCH 1/2] dmaengine: add msm bam dma driver Andy Gross
2013-10-25 20:24   ` Andy Gross
2013-10-29 17:56   ` Stephen Boyd
2013-10-29 17:56     ` Stephen Boyd
2013-10-30 20:31     ` Andy Gross
2013-10-30 20:31       ` Andy Gross
2013-10-30 20:46       ` Stephen Boyd
2013-10-30 20:46         ` Stephen Boyd
2013-11-13 22:07       ` Tomasz Figa
2013-11-13 22:07         ` Tomasz Figa
2013-10-31 16:59   ` Vinod Koul
2013-10-31 16:59     ` Vinod Koul
2013-10-31 21:46     ` Andy Gross
2013-10-31 21:46       ` Andy Gross
2013-11-07 23:03       ` Andy Gross
2013-11-07 23:03         ` Andy Gross
2013-11-13 13:18         ` Vinod Koul
2013-11-13 13:18           ` Vinod Koul
2013-11-13 21:03           ` Andy Gross
2013-11-13 21:03             ` Andy Gross
     [not found] ` <1382732643-8184-1-git-send-email-agross-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2013-10-25 20:24   ` [PATCH 2/2] dmaengine: msm_bam_dma: Add device tree binding Andy Gross
2013-10-25 20:24     ` Andy Gross
2013-10-25 20:24     ` Andy Gross
2013-10-25 21:31     ` Kumar Gala
2013-10-25 21:31       ` Kumar Gala
2013-10-25 23:20     ` Grant Likely
2013-10-25 23:20       ` Grant Likely
2013-10-25 23:20       ` Grant Likely
2013-10-29  6:18     ` Stephen Boyd
2013-10-29  6:18       ` Stephen Boyd

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=1382732643-8184-1-git-send-email-agross@codeaurora.org \
    --to=agross@codeaurora.org \
    --cc=bryanh@codeaurora.org \
    --cc=dan.j.williams@intel.com \
    --cc=davidb@codeaurora.org \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=vinod.koul@intel.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.