All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rajeev Kumar <rajeev-dlh.kumar@st.com>
To: tiwai@suse.de, broonie@opensource.wolfsonmicro.com, perex@perex.cz
Cc: alsa-devel@alsa-project.org,
	Rajeev Kumar <rajeev-dlh.kumar@st.com>,
	lrg@slimlogic.co.uk
Subject: [PATCH V2 0/9] Add ASoC drivers for SPEAr platform & I2S driver for Designware module
Date: Thu, 21 Jun 2012 15:54:48 +0530	[thread overview]
Message-ID: <cover.1340273261.git.rajeev-dlh.kumar@st.com> (raw)

Changes since V1:
1. Move Synopsys i2s designware controller from 'spear' folder to a new folder 'dwc' 
2. Implemented regmap in sta529 codec.
3. In-corporated review comments received on V1.

Rajeev Kumar (6):
  sound:asoc: Add support for STA529 Audio Codec
  sound:asoc: Add support for synopsys i2s controller as per ASoC
    framework.
  sound:asoc: Add support for SPEAr ASoC pcm layer.
  sound:asoc: Add support for SPEAr ASoC machine driver.
  sound:asoc: Add Kconfig and Makefile to support SPEAr audio driver
  sound:asoc: Update Kconfig and Makefile(sound/soc/) to support SPEAr
    audio

Vipin Kumar (3):
  sound:asoc: Add support for spdif in Audio Codec
  sound:asoc:spdif_in: Add spdif IN support
  sound:asoc:spdif_out: Add spdif out support

 include/sound/designware_i2s.h    |   69 ++++++
 include/sound/spear_dma.h         |   35 +++
 include/sound/spear_spdif.h       |   29 +++
 sound/soc/Kconfig                 |    2 +
 sound/soc/Makefile                |    2 +
 sound/soc/codecs/Kconfig          |    4 +
 sound/soc/codecs/Makefile         |    4 +-
 sound/soc/codecs/spdif_receiver.c |   76 ++++++
 sound/soc/codecs/sta529.c         |  477 +++++++++++++++++++++++++++++++++++++
 sound/soc/dwc/Kconfig             |    8 +
 sound/soc/dwc/Makefile            |    3 +
 sound/soc/dwc/designware_i2s.c    |  454 +++++++++++++++++++++++++++++++++++
 sound/soc/spear/Kconfig           |   40 +++
 sound/soc/spear/Makefile          |    7 +
 sound/soc/spear/spdif_in.c        |  297 +++++++++++++++++++++++
 sound/soc/spear/spdif_in_regs.h   |   60 +++++
 sound/soc/spear/spdif_out.c       |  397 ++++++++++++++++++++++++++++++
 sound/soc/spear/spdif_out_regs.h  |   79 ++++++
 sound/soc/spear/spear_evb.c       |  206 ++++++++++++++++
 sound/soc/spear/spear_pcm.c       |  214 +++++++++++++++++
 20 files changed, 2462 insertions(+), 1 deletions(-)
 create mode 100644 include/sound/designware_i2s.h
 create mode 100644 include/sound/spear_dma.h
 create mode 100644 include/sound/spear_spdif.h
 create mode 100644 sound/soc/codecs/spdif_receiver.c
 create mode 100644 sound/soc/codecs/sta529.c
 create mode 100644 sound/soc/dwc/Kconfig
 create mode 100644 sound/soc/dwc/Makefile
 create mode 100644 sound/soc/dwc/designware_i2s.c
 create mode 100644 sound/soc/spear/Kconfig
 create mode 100644 sound/soc/spear/Makefile
 create mode 100644 sound/soc/spear/spdif_in.c
 create mode 100644 sound/soc/spear/spdif_in_regs.h
 create mode 100644 sound/soc/spear/spdif_out.c
 create mode 100644 sound/soc/spear/spdif_out_regs.h
 create mode 100644 sound/soc/spear/spear_evb.c
 create mode 100644 sound/soc/spear/spear_pcm.c

             reply	other threads:[~2012-06-21  9:03 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-21 10:24 Rajeev Kumar [this message]
2012-06-21 10:24 ` [PATCH V2 1/9] sound:asoc: Add support for spdif in Audio Codec Rajeev Kumar
2012-06-22  9:21   ` Mark Brown
2012-06-22  9:44     ` Rajeev kumar
2012-06-22  9:49       ` Mark Brown
2012-06-22  9:54         ` Rajeev kumar
2012-06-21 10:24 ` [PATCH V2 2/9] sound:asoc: Add support for STA529 " Rajeev Kumar
2012-06-21 12:25   ` Mark Brown
2012-06-22  6:26     ` Rajeev kumar
2012-06-22  8:49       ` Mark Brown
2012-06-21 10:24 ` [PATCH V2 3/9] sound:asoc: Add support for synopsys i2s controller as per ASoC framework Rajeev Kumar
2012-06-22  9:25   ` Mark Brown
2012-06-22  9:43     ` Rajeev kumar
2012-06-21 10:24 ` [PATCH V2 4/9] sound:asoc: Add support for SPEAr ASoC pcm layer Rajeev Kumar
2012-06-22  9:28   ` Mark Brown
2012-06-22  9:37     ` Rajeev kumar
2012-06-21 10:24 ` [PATCH V2 5/9] sound:asoc:spdif_in: Add spdif IN support Rajeev Kumar
2012-06-23 10:55   ` Mark Brown
2012-06-21 10:24 ` [PATCH V2 6/9] sound:asoc:spdif_out: Add spdif out support Rajeev Kumar
2012-06-23 10:56   ` Mark Brown
2012-06-21 10:24 ` [PATCH V2 7/9] sound:asoc: Add support for SPEAr ASoC machine driver Rajeev Kumar
2012-06-23 11:01   ` Mark Brown
2012-06-25 10:28     ` Rajeev kumar
2012-06-27  4:37       ` Rajeev kumar
2012-06-27 11:12         ` Mark Brown
2012-06-21 10:24 ` [PATCH V2 8/9] sound:asoc: Add Kconfig and Makefile to support SPEAr audio driver Rajeev Kumar
2012-06-21 10:24 ` [PATCH V2 9/9] sound:asoc: Update Kconfig and Makefile(sound/soc/) to support SPEAr audio Rajeev Kumar

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=cover.1340273261.git.rajeev-dlh.kumar@st.com \
    --to=rajeev-dlh.kumar@st.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=lrg@slimlogic.co.uk \
    --cc=perex@perex.cz \
    --cc=tiwai@suse.de \
    /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.