All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] ASoC: dma: ARM: ux500: Obtain DMA data from Device Tree
@ 2013-11-19 11:07 ` Lee Jones
  0 siblings, 0 replies; 78+ messages in thread
From: Lee Jones @ 2013-11-19 11:07 UTC (permalink / raw)
  To: linux-arm-kernel, linux-kernel; +Cc: linus.walleij, Mark Brown

At this moment in time the Ux500 ASoC driver obtains its DMA information
via AUXDATA platform data passing. To make the driver more independent
we have to start extracting it from the Device Tree.
 
If this patch-set could go through ASoC as a whole, it would drive down
the chance of a dependency mess. Vinod has already provided Acks for his
parts, so it's just between you two Linus and Mark.

 Documentation/devicetree/bindings/dma/ste-dma40.txt |   3 ++
 arch/arm/boot/dts/ste-dbx5x0.dtsi                   |  15 ++++++++++
 arch/arm/mach-ux500/board-mop500-audio.c            |   8 +++---
 drivers/dma/ste_dma40.c                             |   4 +++
 include/linux/platform_data/asoc-ux500-msp.h        |   9 +-----
 sound/soc/ux500/mop500.c                            |   2 ++
 sound/soc/ux500/ux500_msp_dai.c                     | 150 +++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------
 sound/soc/ux500/ux500_msp_i2s.c                     |  56 +++++++++++++++++++++++++++----------
 sound/soc/ux500/ux500_msp_i2s.h                     |   2 +-
 sound/soc/ux500/ux500_pcm.c                         |  32 +++++++++++++++------
 10 files changed, 160 insertions(+), 121 deletions(-)

Cc: Mark Brown <broonie@kernel.org>


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

end of thread, other threads:[~2013-12-04 18:03 UTC | newest]

Thread overview: 78+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-19 11:07 [PATCH 00/10] ASoC: dma: ARM: ux500: Obtain DMA data from Device Tree Lee Jones
2013-11-19 11:07 ` Lee Jones
2013-11-19 11:07 ` [PATCH 01/10] dma: ste_dma40: Expand DT binding to accept 'high-priority channel' flag Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 21:02   ` Linus Walleij
2013-11-19 21:02     ` Linus Walleij
2013-11-19 21:02     ` Linus Walleij
2013-11-19 11:07 ` [PATCH 02/10] dma: ste_dma40: Parse flags property for new 'high priority channel' request Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 21:03   ` Linus Walleij
2013-11-19 21:03     ` Linus Walleij
2013-11-19 11:07 ` [PATCH 03/10] ARM: ux500: Don't use enums for MSP IDs - for easy DT conversion Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 11:07 ` [PATCH 04/10] ARM: ux500: Add DMA config bindings for MSP devices Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 21:06   ` Linus Walleij
2013-11-19 21:06     ` Linus Walleij
2013-11-19 11:07 ` [PATCH 05/10] ASoC: Ux500: Match platform by device node when booting Device Tree Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 18:49   ` Mark Brown
2013-11-19 18:49     ` Mark Brown
2013-11-19 11:07 ` [PATCH 06/10] ASoC: ux500_pcm: Extend Device Tree support to deal with DMA data Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 18:50   ` Mark Brown
2013-11-19 18:50     ` Mark Brown
2013-11-19 11:07 ` [PATCH 07/10] ASoC: ux500: Store DMA data in the DAI differently in the pdata and DT case Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 18:51   ` Mark Brown
2013-11-19 18:51     ` Mark Brown
2013-12-02  7:35   ` [alsa-devel] " Olof Johansson
2013-12-02  7:35     ` Olof Johansson
2013-12-02  7:35     ` Olof Johansson
2013-12-02 10:12     ` Lee Jones
2013-12-02 10:12       ` Lee Jones
2013-12-02 10:12       ` Lee Jones
2013-12-02 13:54       ` [alsa-devel] " Mark Brown
2013-12-02 13:54         ` Mark Brown
2013-12-02 13:54         ` Mark Brown
2013-12-02 14:03         ` Lee Jones
2013-12-02 14:03           ` Lee Jones
2013-12-02 14:03           ` Lee Jones
2013-12-02 14:04           ` [alsa-devel] " Mark Brown
2013-12-02 14:04             ` Mark Brown
2013-12-02 14:04             ` Mark Brown
2013-12-04 17:45   ` Kevin Hilman
2013-12-04 17:45     ` Kevin Hilman
2013-12-04 18:03     ` Lee Jones
2013-12-04 18:03       ` Lee Jones
2013-12-04 18:03       ` Lee Jones
2013-11-19 11:07 ` [PATCH 08/10] ASoC: ux500_pcm: Differentiate between pdata and DT initialisation Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 18:48   ` Mark Brown
2013-11-19 18:48     ` Mark Brown
2013-11-19 19:33     ` Lee Jones
2013-11-19 19:33       ` Lee Jones
2013-11-19 19:40       ` Lars-Peter Clausen
2013-11-19 19:40         ` Lars-Peter Clausen
2013-11-19 20:09         ` Mark Brown
2013-11-19 20:09           ` Mark Brown
2013-11-19 11:07 ` [PATCH 09/10] ASoC: ux500_pcm: Take out pointless dev_dbg() call Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 18:51   ` Mark Brown
2013-11-19 18:51     ` Mark Brown
2013-11-19 11:07 ` [PATCH 10/10] ASoC: ux500: Dynamically fill DAI driver data on probe Lee Jones
2013-11-19 11:07   ` Lee Jones
2013-11-19 18:53 ` [PATCH 00/10] ASoC: dma: ARM: ux500: Obtain DMA data from Device Tree Mark Brown
2013-11-19 18:53   ` Mark Brown
2013-11-29 16:03 ` Lee Jones
2013-11-29 16:03   ` Lee Jones
2013-11-29 16:42   ` Mark Brown
2013-11-29 16:42     ` Mark Brown
2013-11-29 17:37     ` Lee Jones
2013-11-29 17:37       ` Lee Jones
2013-11-29 18:21       ` Mark Brown
2013-11-29 18:21         ` Mark Brown

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.