All of lore.kernel.org
 help / color / mirror / Atom feed
From: Padmavathi Venna <padma.v@samsung.com>
To: linux-samsung-soc@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	alsa-devel@alsa-project.org, devicetree@vger.kernel.org,
	padma.v@samsung.com, padma.kvr@gmail.com
Cc: broonie@kernel.org, kgene.kim@samsung.com, tomasz.figa@gmail.com,
	abrestic@chromium.org
Subject: [PATCH V4 0/4] Add i2s support on smdk5420
Date: Mon, 12 Aug 2013 15:19:50 +0530	[thread overview]
Message-ID: <1376300994-1679-1-git-send-email-padma.v@samsung.com> (raw)

Samsung has different versions of I2S introduced in different
platforms. Each version has some new support added for multichannel,
secondary fifo, s/w reset control, internal mux for rclk src clk and
tdm support. Each newly added change has a quirk. So this patch adds
all the required quirks as driver data and based on compatible string
from dtsi fetches the quirks. This also adds i2s support on exynos5420.

Changes since V3:
	- Addressed review comments by Tomasz Figa related to const qualifier
	  for samsung_i2s_dai_data
	- Removed passing quirks as driver data for non-dt platforms. 
	- Separated out adding i2s nodes and enabling audio support on 5420
	  into different patch set as they are dependent on some of already posted
	  but not yet merged i2c, dwmmc, dma and audss clock controller patches.

Changes since V2:
        - Separated out driver side changes and dts changes in two
          patch sets.
        - Replaced samsung,s3c6410-i2s-v4 with samsung,s3c6410-i2s-multi
          for more clarity as suggested by Tomasz Figa.

Changes since V1:
        - Pass quirks as driver data and fetch the quirks based on
          compatible string from dtsi file as suggested by
          Tomasz Figa and Mark Brown
        - Make the I2S driver more flexible with respect to register
          access as suggested by Tomasz Figa and Mark Brown
        - Add 5420 support in the driver.
        - Modify the dtsi files with the corresponding compatible
          strings and removed the i2s quirks from 5250 dtsi file.
        - Updated the i2s Documentation with relevent changes and
          i2s versioning info.
        - Add i2s nodes on exynos5420.dtsi
        - Enable sound support on smdk5420

This patch set is made based on Mark Brown for-next branch on sound.git.

Padmavathi Venna (4):
  ASoC: Samsung: I2S: Add quirks as driver data in I2S
  ASoC: Samsung: I2S: Modify the I2S driver to support I2S on
    Exynos5420
  ARM: dts: exynos5250: move common i2s properties to exynos5 dtsi
  ARM: dts: Change i2s compatible string on exynos5250

 .../devicetree/bindings/sound/samsung-i2s.txt      |   22 ++--
 arch/arm/boot/dts/exynos5.dtsi                     |   21 +++
 arch/arm/boot/dts/exynos5250.dtsi                  |   17 +---
 include/linux/platform_data/asoc-s3c.h             |    1 +
 sound/soc/samsung/i2s-regs.h                       |   15 ++
 sound/soc/samsung/i2s.c                            |  143 +++++++++++++++-----
 6 files changed, 157 insertions(+), 62 deletions(-)

-- 
1.7.4.4

WARNING: multiple messages have this Message-ID (diff)
From: padma.v@samsung.com (Padmavathi Venna)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V4 0/4] Add i2s support on smdk5420
Date: Mon, 12 Aug 2013 15:19:50 +0530	[thread overview]
Message-ID: <1376300994-1679-1-git-send-email-padma.v@samsung.com> (raw)

Samsung has different versions of I2S introduced in different
platforms. Each version has some new support added for multichannel,
secondary fifo, s/w reset control, internal mux for rclk src clk and
tdm support. Each newly added change has a quirk. So this patch adds
all the required quirks as driver data and based on compatible string
from dtsi fetches the quirks. This also adds i2s support on exynos5420.

Changes since V3:
	- Addressed review comments by Tomasz Figa related to const qualifier
	  for samsung_i2s_dai_data
	- Removed passing quirks as driver data for non-dt platforms. 
	- Separated out adding i2s nodes and enabling audio support on 5420
	  into different patch set as they are dependent on some of already posted
	  but not yet merged i2c, dwmmc, dma and audss clock controller patches.

Changes since V2:
        - Separated out driver side changes and dts changes in two
          patch sets.
        - Replaced samsung,s3c6410-i2s-v4 with samsung,s3c6410-i2s-multi
          for more clarity as suggested by Tomasz Figa.

Changes since V1:
        - Pass quirks as driver data and fetch the quirks based on
          compatible string from dtsi file as suggested by
          Tomasz Figa and Mark Brown
        - Make the I2S driver more flexible with respect to register
          access as suggested by Tomasz Figa and Mark Brown
        - Add 5420 support in the driver.
        - Modify the dtsi files with the corresponding compatible
          strings and removed the i2s quirks from 5250 dtsi file.
        - Updated the i2s Documentation with relevent changes and
          i2s versioning info.
        - Add i2s nodes on exynos5420.dtsi
        - Enable sound support on smdk5420

This patch set is made based on Mark Brown for-next branch on sound.git.

Padmavathi Venna (4):
  ASoC: Samsung: I2S: Add quirks as driver data in I2S
  ASoC: Samsung: I2S: Modify the I2S driver to support I2S on
    Exynos5420
  ARM: dts: exynos5250: move common i2s properties to exynos5 dtsi
  ARM: dts: Change i2s compatible string on exynos5250

 .../devicetree/bindings/sound/samsung-i2s.txt      |   22 ++--
 arch/arm/boot/dts/exynos5.dtsi                     |   21 +++
 arch/arm/boot/dts/exynos5250.dtsi                  |   17 +---
 include/linux/platform_data/asoc-s3c.h             |    1 +
 sound/soc/samsung/i2s-regs.h                       |   15 ++
 sound/soc/samsung/i2s.c                            |  143 +++++++++++++++-----
 6 files changed, 157 insertions(+), 62 deletions(-)

-- 
1.7.4.4

             reply	other threads:[~2013-08-12  9:48 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-12  9:49 Padmavathi Venna [this message]
2013-08-12  9:49 ` [PATCH V4 0/4] Add i2s support on smdk5420 Padmavathi Venna
2013-08-12  9:49 ` [PATCH V4 1/4] ASoC: Samsung: I2S: Add quirks as driver data in I2S Padmavathi Venna
2013-08-12  9:49   ` Padmavathi Venna
2013-08-12 12:06   ` Tomasz Figa
2013-08-12 12:06     ` Tomasz Figa
2013-08-12 22:57   ` Stephen Warren
2013-08-12 22:57     ` Stephen Warren
2013-08-12 23:13     ` Mark Brown
2013-08-12 23:13       ` Mark Brown
2013-08-12 23:18       ` Stephen Warren
2013-08-12 23:18         ` Stephen Warren
2013-08-12 23:46         ` Mark Brown
2013-08-12 23:46           ` Mark Brown
2013-08-13 15:42           ` Stephen Warren
2013-08-13 15:42             ` Stephen Warren
2013-08-12  9:49 ` [PATCH V4 2/4] ASoC: Samsung: I2S: Modify the I2S driver to support I2S on Exynos5420 Padmavathi Venna
2013-08-12  9:49   ` Padmavathi Venna
2013-08-12  9:49 ` [PATCH V4 3/4] ARM: dts: exynos5250: move common i2s properties to exynos5 dtsi Padmavathi Venna
2013-08-12  9:49   ` Padmavathi Venna
2013-08-12  9:49 ` [PATCH V4 4/4] ARM: dts: Change i2s compatible string on exynos5250 Padmavathi Venna
2013-08-12  9:49   ` Padmavathi Venna
2013-08-13 12:44 ` [PATCH V4 0/4] Add i2s support on smdk5420 Mark Brown
2013-08-13 12:44   ` Mark Brown
2013-08-14  8:25   ` Tomasz Figa
2013-08-14  8:25     ` Tomasz Figa
2013-08-14 10:03     ` Mark Brown
2013-08-14 10:03       ` Mark Brown

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=1376300994-1679-1-git-send-email-padma.v@samsung.com \
    --to=padma.v@samsung.com \
    --cc=abrestic@chromium.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=padma.kvr@gmail.com \
    --cc=tomasz.figa@gmail.com \
    /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.