All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/19] Configure ux500 Audio Drivers for Device Tree
@ 2012-07-31 13:38 ` Lee Jones
  0 siblings, 0 replies; 70+ messages in thread
From: Lee Jones @ 2012-07-31 13:38 UTC (permalink / raw)
  To: linux-arm-kernel, linux-kernel, olalilja, ola.o.lilja,
	alsa-devel, lrg, broonie
  Cc: STEricsson_nomadik_linux, linus.walleij, arnd

This patch-set sees many of the ux500 related Audio drivers gain
Device Tree enablement. There are also some fixes to issues which
where encountered along the way.

 Documentation/devicetree/bindings/mfd/ab8500.txt   |   15 +
 .../devicetree/bindings/sound/ux500-mop500.txt     |   39 ++
 .../devicetree/bindings/sound/ux500-msp.txt        |   43 ++
 arch/arm/boot/dts/db8500.dtsi                      |  597 ------------------
 arch/arm/boot/dts/dbx5x0.dtsi                      |  636 ++++++++++++++++++++
 arch/arm/boot/dts/snowball.dts                     |   18 +-
 arch/arm/mach-ux500/Makefile                       |    2 +-
 arch/arm/mach-ux500/board-mop500-audio.c           |  189 ++++++
 arch/arm/mach-ux500/board-mop500-msp.c             |  267 --------
 arch/arm/mach-ux500/board-mop500-msp.h             |   14 -
 arch/arm/mach-ux500/board-mop500.c                 |   22 +-
 arch/arm/mach-ux500/board-mop500.h                 |    6 +
 arch/arm/mach-ux500/include/mach/msp.h             |    2 -
 include/linux/mfd/abx500/ab8500-codec.h            |    6 +-
 sound/soc/codecs/ab8500-codec.c                    |   81 +++
 sound/soc/ux500/mop500.c                           |   42 +-
 sound/soc/ux500/ux500_msp_dai.c                    |   20 +-
 sound/soc/ux500/ux500_msp_i2s.c                    |   97 ++-
 sound/soc/ux500/ux500_msp_i2s.h                    |    2 -
 sound/soc/ux500/ux500_pcm.c                        |   19 +-
 sound/soc/ux500/ux500_pcm.h                        |    3 +
 21 files changed, 1189 insertions(+), 931 deletions(-)


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

end of thread, other threads:[~2012-08-02 12:45 UTC | newest]

Thread overview: 70+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-31 13:38 [PATCH 01/19] Configure ux500 Audio Drivers for Device Tree Lee Jones
2012-07-31 13:38 ` Lee Jones
2012-07-31 13:38 ` [PATCH 01/19] ASoC: Ux500: Move MSP pinctrl setup into the MSP driver Lee Jones
2012-07-31 13:38   ` Lee Jones
2012-07-31 13:38 ` [PATCH 02/19] ASoC: Ux500: Enable MOP500 driver for Device Tree Lee Jones
2012-07-31 13:38   ` Lee Jones
2012-07-31 13:38   ` Lee Jones
2012-07-31 13:38 ` [PATCH 03/19] ASoC: Ux500: Enable ux500 MSP " Lee Jones
2012-07-31 13:38   ` Lee Jones
2012-07-31 13:38   ` Lee Jones
2012-07-31 13:38 ` [PATCH 04/19] ASoC: Ux500: Initialise PCM from MSP probe rather than as a device Lee Jones
2012-07-31 13:38   ` Lee Jones
2012-07-31 13:38 ` [PATCH 05/19] ASoC: codecs: Enable AB8500 CODEC for Device Tree Lee Jones
2012-07-31 13:38   ` Lee Jones
2012-07-31 13:38   ` Lee Jones
2012-07-31 13:39 ` [PATCH 06/19] ARM: ux500: Clean-up MSP platform code Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39 ` [PATCH 07/19] ARM: ux500: Add AB8500 CODEC node to DB8500 Device Tree Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39 ` [PATCH 08/19] ARM: ux500: Fork MSP platform registration for step-by-step DT enablement Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39 ` [PATCH 09/19] ARM: ux500: Pass MSP DMA platform data though AUXDATA Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39 ` [PATCH 10/19] ARM: ux500: Stop registering the MOP500 Audio driver from platform code Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39 ` [PATCH 11/19] ARM: ux500: Stop registering the PCM " Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39 ` [PATCH 12/19] ARM: ux500: Remove platform registration of MSP devices Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39 ` [PATCH 13/19] ARM: ux500: Rename MSP board file to something more meaningful Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39 ` [PATCH 14/19] ARM: ux500: Rename db8500.dtsi to dbx5x0.dtsi to encompass the u9500, u8540 and u9540 Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39 ` [PATCH 15/19] ARM: ux500: Add nodes for the MSP into Device Tree Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39 ` [PATCH 16/19] ARM: ux500: Add all encompassing sound node to the Snowball " Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:39 ` [PATCH 17/19] Documentation: Define the MOP500 Audio Machine Driver Device Tree bindings Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:53   ` Mark Brown
2012-07-31 13:53     ` Mark Brown
2012-07-31 13:53     ` Mark Brown
2012-07-31 15:00     ` Lee Jones
2012-07-31 15:00       ` Lee Jones
2012-07-31 15:00       ` Lee Jones
2012-08-02 12:12     ` Lee Jones
2012-08-02 12:12       ` Lee Jones
2012-08-02 12:12       ` Lee Jones
2012-07-31 13:39 ` [PATCH 18/19] Documentation: Define the MSP " Lee Jones
2012-07-31 13:39   ` Lee Jones
2012-07-31 13:55   ` Mark Brown
2012-07-31 13:55     ` Mark Brown
2012-07-31 13:55     ` Mark Brown
2012-07-31 14:59     ` Lee Jones
2012-07-31 14:59       ` Lee Jones
2012-07-31 14:59       ` Lee Jones
2012-07-31 15:10       ` Mark Brown
2012-07-31 15:10         ` Mark Brown
2012-07-31 15:10         ` Mark Brown
2012-08-02 12:45         ` Lee Jones
2012-08-02 12:45           ` Lee Jones
2012-08-02 12:45           ` Lee Jones
2012-07-31 13:39 ` [PATCH 19/19] Documentation: Add the AB8500 CODEC device to the MFD AB8500 doc Lee Jones
2012-07-31 13:39   ` Lee Jones

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.