public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [GIT PULL] DaVinci SoC updates for v3.11 (part 2)
@ 2013-06-24 14:42 Sekhar Nori
  2013-06-24 14:46 ` Sekhar Nori
  0 siblings, 1 reply; 3+ messages in thread
From: Sekhar Nori @ 2013-06-24 14:42 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Arnd, Olof,

Can you please pull the following EDMA related updates for v3.11?
There is a small change to drivers/dma/Kconfig that would have liked 
Vinod's ack, but the change is pretty trivial and the patches have
been out there for pretty long now.

Thanks,
Sekhar

The following changes since commit 7bb5d75ce91ca3725256c0d502624ed697231cde:

  ARM: edma: remove unused transfer controller handlers (2013-06-18 10:53:13 +0530)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v3.11/soc-2

for you to fetch changes up to e65abbbc5279319ab679298f8740ddf53e022a5e:

  dmaengine: edma: enable build for AM33XX (2013-06-24 15:55:08 +0530)

----------------------------------------------------------------
DaVinci SoC updates for v3.11 - part 2
--------------------------------------

This pull request adds DT and runtime PM to
EDMA ARM private API so it can be used on
DT enabled DaVinci and OMAP platforms.

Also adds DMA channel crossbar mapping
support to be used by DT-enabled platforms
which use it.

----------------------------------------------------------------
Lad, Prabhakar (1):
      ARM: edma: Convert to devm_* api

Matt Porter (4):
      dmaengine: edma: Add TI EDMA device tree binding
      ARM: edma: Add DT and runtime PM support to the private EDMA API
      ARM: edma: Add EDMA crossbar event mux support
      dmaengine: edma: enable build for AM33XX

 Documentation/devicetree/bindings/dma/ti-edma.txt |   34 +++
 arch/arm/common/edma.c                            |  329 +++++++++++++++++----
 arch/arm/mach-davinci/devices-da8xx.c             |    8 +-
 arch/arm/mach-davinci/devices-tnetv107x.c         |    4 +-
 arch/arm/mach-davinci/dm355.c                     |    4 +-
 arch/arm/mach-davinci/dm365.c                     |    4 +-
 arch/arm/mach-davinci/dm644x.c                    |    4 +-
 arch/arm/mach-davinci/dm646x.c                    |    4 +-
 arch/arm/mach-omap2/Kconfig                       |    1 +
 drivers/dma/Kconfig                               |    2 +-
 include/linux/platform_data/edma.h                |    5 +-
 11 files changed, 324 insertions(+), 75 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/dma/ti-edma.txt

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [GIT PULL] DaVinci SoC updates for v3.11 (part 2)
  2013-06-24 14:42 [GIT PULL] DaVinci SoC updates for v3.11 (part 2) Sekhar Nori
@ 2013-06-24 14:46 ` Sekhar Nori
  2013-06-24 14:54   ` Arnd Bergmann
  0 siblings, 1 reply; 3+ messages in thread
From: Sekhar Nori @ 2013-06-24 14:46 UTC (permalink / raw)
  To: linux-arm-kernel

replying to own with address of DaVinci kernel list fixed.

On 6/24/2013 8:12 PM, Sekhar Nori wrote:
> Hi Arnd, Olof,
> 
> Can you please pull the following EDMA related updates for v3.11?
> There is a small change to drivers/dma/Kconfig that would have liked 
> Vinod's ack, but the change is pretty trivial and the patches have
> been out there for pretty long now.
> 
> Thanks,
> Sekhar
> 
> The following changes since commit 7bb5d75ce91ca3725256c0d502624ed697231cde:
> 
>   ARM: edma: remove unused transfer controller handlers (2013-06-18 10:53:13 +0530)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v3.11/soc-2
> 
> for you to fetch changes up to e65abbbc5279319ab679298f8740ddf53e022a5e:
> 
>   dmaengine: edma: enable build for AM33XX (2013-06-24 15:55:08 +0530)
> 
> ----------------------------------------------------------------
> DaVinci SoC updates for v3.11 - part 2
> --------------------------------------
> 
> This pull request adds DT and runtime PM to
> EDMA ARM private API so it can be used on
> DT enabled DaVinci and OMAP platforms.
> 
> Also adds DMA channel crossbar mapping
> support to be used by DT-enabled platforms
> which use it.
> 
> ----------------------------------------------------------------
> Lad, Prabhakar (1):
>       ARM: edma: Convert to devm_* api
> 
> Matt Porter (4):
>       dmaengine: edma: Add TI EDMA device tree binding
>       ARM: edma: Add DT and runtime PM support to the private EDMA API
>       ARM: edma: Add EDMA crossbar event mux support
>       dmaengine: edma: enable build for AM33XX
> 
>  Documentation/devicetree/bindings/dma/ti-edma.txt |   34 +++
>  arch/arm/common/edma.c                            |  329 +++++++++++++++++----
>  arch/arm/mach-davinci/devices-da8xx.c             |    8 +-
>  arch/arm/mach-davinci/devices-tnetv107x.c         |    4 +-
>  arch/arm/mach-davinci/dm355.c                     |    4 +-
>  arch/arm/mach-davinci/dm365.c                     |    4 +-
>  arch/arm/mach-davinci/dm644x.c                    |    4 +-
>  arch/arm/mach-davinci/dm646x.c                    |    4 +-
>  arch/arm/mach-omap2/Kconfig                       |    1 +
>  drivers/dma/Kconfig                               |    2 +-
>  include/linux/platform_data/edma.h                |    5 +-
>  11 files changed, 324 insertions(+), 75 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/dma/ti-edma.txt
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [GIT PULL] DaVinci SoC updates for v3.11 (part 2)
  2013-06-24 14:46 ` Sekhar Nori
@ 2013-06-24 14:54   ` Arnd Bergmann
  0 siblings, 0 replies; 3+ messages in thread
From: Arnd Bergmann @ 2013-06-24 14:54 UTC (permalink / raw)
  To: linux-arm-kernel

On Monday 24 June 2013 20:16:21 Sekhar Nori wrote:
> replying to own with address of DaVinci kernel list fixed.
> 
> On 6/24/2013 8:12 PM, Sekhar Nori wrote:
> > Hi Arnd, Olof,
> > 
> > Can you please pull the following EDMA related updates for v3.11?
> > There is a small change to drivers/dma/Kconfig that would have liked 
> > Vinod's ack, but the change is pretty trivial and the patches have
> > been out there for pretty long now.
> > 
> > Thanks,
> > Sekhar
> > 
> > The following changes since commit 7bb5d75ce91ca3725256c0d502624ed697231cde:
> > 
> >   ARM: edma: remove unused transfer controller handlers (2013-06-18 10:53:13 +0530)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v3.11/soc-2
> > 
> > for you to fetch changes up to e65abbbc5279319ab679298f8740ddf53e022a5e:
> > 
> >   dmaengine: edma: enable build for AM33XX (2013-06-24 15:55:08 +0530)
> > 
> > ----------------------------------------------------------------
> > DaVinci SoC updates for v3.11 - part 2
> > --------------------------------------
> > 
> > This pull request adds DT and runtime PM to
> > EDMA ARM private API so it can be used on
> > DT enabled DaVinci and OMAP platforms.
> > 
> > Also adds DMA channel crossbar mapping
> > support to be used by DT-enabled platforms
> > which use it.

Pulled into next/soc, thanks!

	Arnd

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-06-24 14:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-24 14:42 [GIT PULL] DaVinci SoC updates for v3.11 (part 2) Sekhar Nori
2013-06-24 14:46 ` Sekhar Nori
2013-06-24 14:54   ` Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox