All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/21] ASoC: davinci: Code cleanups and support for DRA7xx
@ 2013-11-14  9:35 Peter Ujfalusi
  2013-11-14  9:35 ` [PATCH 01/20] ASoC: davinci: Kconfig: Remove help section for SND_DAVINCI_SOC Peter Ujfalusi
                   ` (21 more replies)
  0 siblings, 22 replies; 27+ messages in thread
From: Peter Ujfalusi @ 2013-11-14  9:35 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown
  Cc: alsa-devel, Michal Bachraty, nsekhar, jsarha, gururaja.hebbar,
	Daniel Mack

Hi,

In this series:
Small cleanup of Kconfig/Makefile
McASP support for AM43xx SoCs
McASP support for DRA7xx SoCs
Fix for synchronous master mode operation of McASP
Code simplification (FIFO handling, etc)
Data port selection support (dat or config address space)
General code cleanup regarding to:
- relocating register definition to header file
- renaming of the private mcasp structure
- IO functions parameters has been changed

Regards,
Peter
---
Peter Ujfalusi (21):
  ASoC: davinci: Kconfig: Remove help section for SND_DAVINCI_SOC
  ASoC: davinci: Kconfig/Makefile: Generic EVM machine driver related
    cleanup
  ASoC: davinci: kconfig: Prepare for AM43xx support
  ASoC: davinci-evm: Do not include davinci-mcasp.h
  ASoC: davinci-evm: Switch to use .dai_fmt of snd_soc_dai_link(s)
  ASoC: davinci-mcasp: Move DAVINCI_MCASP_RATE from header to source
    file
  ASoC: davinci-mcasp: Remove unused DAVINCI_MCASP_I2S/DIT_DAI defines
  ASoC: davinci-mcasp: Correct dai driver struct initialization for 2nd
    dai
  ASoC: davinci-mcasp: Move register definitions to header file
  ASoC: davinci-mcasp: Move private struct definition to source file
  ASoC: davinci-mcasp: Remove unused DAVINCI_MCASP_NUM_SERIALIZER define
  ASoC: davinci-mcasp: Do not inline the mcasp_set_ctl_reg function
  ASoC: davinci-mcasp: Rename private struct and it's users (dev ->
    mcasp)
  ASoC: davinci-mcasp: Be consistent with the use of base in
    davinci_mcasp_set_dai_fmt
  ASoC: davinci-mcasp: Simplify FIFO configuration code
  ASoC: davinci-mcasp: Data source (bus) selection support
  ASoC: davinci-mcasp: Fix synchronous master receive mode
  ASoC: davinci-mcasp: Support for McASP version found in DRA7xx
  ASoC: davinci-mcasp: Support for fck reparenting
  ASoC: davinci-mcasp: Change IO functions parameter list
  ASoC: davinci-mcasp: Correct am33xx snd_platform_data name

 .../bindings/sound/davinci-mcasp-audio.txt         |    6 +-
 include/linux/platform_data/davinci_asp.h          |    1 +
 sound/soc/davinci/Kconfig                          |   29 +-
 sound/soc/davinci/Makefile                         |    8 +-
 sound/soc/davinci/davinci-evm.c                    |   48 +-
 sound/soc/davinci/davinci-mcasp.c                  | 1016 +++++++++-----------
 sound/soc/davinci/davinci-mcasp.h                  |  304 +++++-
 7 files changed, 738 insertions(+), 674 deletions(-)

-- 
1.8.4.2

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

end of thread, other threads:[~2013-11-14 12:59 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-14  9:35 [PATCH 00/21] ASoC: davinci: Code cleanups and support for DRA7xx Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 01/20] ASoC: davinci: Kconfig: Remove help section for SND_DAVINCI_SOC Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 02/20] ASoC: davinci: Kconfig/Makefile: Generic EVM machine driver related cleanup Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 03/20] ASoC: davinci: kconfig: Prepare for AM43xx support Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 04/20] ASoC: davinci-evm: Do not include davinci-mcasp.h Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 05/20] ASoC: davinci-evm: Switch to use .dai_fmt of snd_soc_dai_link(s) Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 06/20] ASoC: davinci-mcasp: Move DAVINCI_MCASP_RATE from header to source file Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 07/20] ASoC: davinci-mcasp: Remove unused DAVINCI_MCASP_I2S/DIT_DAI defines Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 08/20] ASoC: davinci-mcasp: Correct dai driver struct initialization for 2nd dai Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 09/20] ASoC: davinci-mcasp: Move register definitions to header file Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 10/20] ASoC: davinci-mcasp: Move private struct definition to source file Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 11/20] ASoC: davinci-mcasp: Remove unused DAVINCI_MCASP_NUM_SERIALIZER define Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 12/20] ASoC: davinci-mcasp: Do not inline the mcasp_set_ctl_reg function Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 13/20] ASoC: davinci-mcasp: Rename private struct and it's users (dev -> mcasp) Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 14/20] ASoC: davinci-mcasp: Be consistent with the use of base in davinci_mcasp_set_dai_fmt Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 15/20] ASoC: davinci-mcasp: Simplify FIFO configuration code Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 16/20] ASoC: davinci-mcasp: Data source (bus) selection support Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 17/20] ASoC: davinci-mcasp: Fix synchronous master receive mode Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 18/20] ASoC: davinci-mcasp: Support for McASP version found in DRA7xx Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 19/20] ASoC: davinci-mcasp: Support for fck reparenting Peter Ujfalusi
2013-11-14 11:51   ` Mark Brown
2013-11-14 12:59     ` Peter Ujfalusi
2013-11-14  9:35 ` [PATCH 20/20] ASoC: davinci-mcasp: Change IO functions parameter list Peter Ujfalusi
2013-11-14 11:54   ` Mark Brown
2013-11-14  9:35 ` [PATCH 21/21] ASoC: davinci-mcasp: Correct am33xx snd_platform_data name Peter Ujfalusi
2013-11-14 11:55   ` Mark Brown
2013-11-14 11:52 ` [PATCH 00/21] ASoC: davinci: Code cleanups and support for DRA7xx 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.