alsa-devel.alsa-project.org archive mirror
 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, spear-devel@list.st.com,
	Rajeev Kumar <rajeev-dlh.kumar@st.com>,
	lrg@slimlogic.co.uk
Subject: [PATCH 0/8] Add ASoC drivers for SPEAr platform
Date: Tue, 20 Mar 2012 17:03:44 +0530	[thread overview]
Message-ID: <cover.1332242166.git.rajeev-dlh.kumar@st.com> (raw)

This patch set adds support for ASoC sound drivers on ST's SPEAr
platforms. Details of the SPEAr platforms can be seen here:

http://www.st.com/internet/mcu/product/250658.jsp

This patch set supports the following modules:

1. Audio codec sta529 (connected to I2S controller).
2. SPDIF IN dummy Codec.
3. Synopsys Designware I2S controller.
4. ST SPDIF IN controller.
5. ST SPDIF OUT controller.

This patch set has been tested for linux-kernel-version 3.3-rc3 on SPEAr
platform.

In past, I had circulated the patch for the same and got some review
comments. I have incorporate those commnets also. Please find the link
below.
http://mailman.alsa-project.org/pipermail/alsa-devel/2011-April/038738.html

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 (2):
  sound:asoc:spdif_in: Add spdif IN support
  sound:asoc:spdif_out: Add spdif out support

 include/linux/designware_i2s.h   |   63 ++++
 sound/soc/Kconfig                |    1 +
 sound/soc/Makefile               |    1 +
 sound/soc/codecs/Kconfig         |    5 +
 sound/soc/codecs/Makefile        |    2 +
 sound/soc/codecs/sta529.c        |  414 ++++++++++++++++++++++++++
 sound/soc/spear/Kconfig          |   46 +++
 sound/soc/spear/Makefile         |   16 +
 sound/soc/spear/designware_i2s.c |  610 ++++++++++++++++++++++++++++++++++++++
 sound/soc/spear/spdif_in.c       |  304 +++++++++++++++++++
 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      |  278 +++++++++++++++++
 sound/soc/spear/spear_pcm.c      |  460 ++++++++++++++++++++++++++++
 sound/soc/spear/spear_pcm.h      |   33 ++
 16 files changed, 2769 insertions(+), 0 deletions(-)
 create mode 100644 include/linux/designware_i2s.h
 create mode 100644 sound/soc/codecs/sta529.c
 create mode 100644 sound/soc/spear/Kconfig
 create mode 100644 sound/soc/spear/Makefile
 create mode 100644 sound/soc/spear/designware_i2s.c
 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
 create mode 100644 sound/soc/spear/spear_pcm.h

-- 
1.7.2.2

             reply	other threads:[~2012-03-20 11:34 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-20 11:33 Rajeev Kumar [this message]
2012-03-20 11:33 ` [PATCH 1/8] sound:asoc: Add support for STA529 Audio Codec Rajeev Kumar
2012-03-20 15:25   ` Mark Brown
2012-03-23  3:42     ` Rajeev kumar
2012-03-23  9:07       ` Lars-Peter Clausen
2012-03-23  9:20         ` Rajeev kumar
2012-03-20 17:57   ` Lars-Peter Clausen
2012-03-23  4:00     ` Rajeev kumar
2012-03-23  8:51       ` Lars-Peter Clausen
2012-03-23  9:15         ` Rajeev kumar
2012-03-20 11:33 ` [PATCH 2/8] sound:asoc: Add support for synopsys i2s controller as per ASoC framework Rajeev Kumar
2012-03-20 15:44   ` Mark Brown
2012-03-26  9:03     ` Rajeev kumar
2012-03-26 11:10       ` Mark Brown
2012-03-27  3:51         ` Rajeev kumar
2012-03-20 11:33 ` [PATCH 3/8] sound:asoc: Add support for SPEAr ASoC pcm layer Rajeev Kumar
2012-03-20 15:50   ` Mark Brown
2012-03-20 11:33 ` [PATCH 4/8] sound:asoc:spdif_in: Add spdif IN support Rajeev Kumar
2012-03-20 15:55   ` Mark Brown
2012-03-27  9:25     ` Rajeev kumar
2012-03-20 11:33 ` [PATCH 5/8] sound:asoc:spdif_out: Add spdif out support Rajeev Kumar
2012-03-20 11:33 ` [PATCH 6/8] sound:asoc: Add support for SPEAr ASoC machine driver Rajeev Kumar
2012-03-20 16:00   ` Mark Brown
2012-03-20 11:33 ` [PATCH 7/8] sound:asoc: Add Kconfig and Makefile to support SPEAr audio driver Rajeev Kumar
2012-03-20 11:33 ` [PATCH 8/8] 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.1332242166.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=spear-devel@list.st.com \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).