devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: sunil joshi <sjoshi.open@gmail.com>
To: Padmavathi Venna <padma.v@samsung.com>
Cc: linux-samsung-soc@vger.kernel.org,
	devicetree-discuss@lists.ozlabs.org,
	linux-arm-kernel@lists.infradead.org,
	alsa-devel@alsa-project.org, padma.kvr@gmail.com,
	broonie@kernel.org, kgene.kim@samsung.com, abrestic@chromium.org,
	tomasz.figa@gmail.com
Subject: Re: [PATCH V2 6/8] ARM: dts: exynos5420: add i2s controllers
Date: Fri, 2 Aug 2013 12:02:17 +0530	[thread overview]
Message-ID: <CANruHrT6m233MH69XitCwb66cgKvAngKBv5EPPD4xb-1jx1DUw@mail.gmail.com> (raw)
In-Reply-To: <1374845812-7803-7-git-send-email-padma.v@samsung.com>

Padma,
You may move the common stuff of I2S contents for 5250 & 5420 into exynos5.dtsi.

Regards
Sunil

On Fri, Jul 26, 2013 at 7:06 PM, Padmavathi Venna <padma.v@samsung.com> wrote:
> From: Andrew Bresticker <abrestic@chromium.org>
>
> This adds device-tree bindings for the i2s controllers on Exynos 5420.
>
> Signed-off-by: Andrew Bresticker <abrestic@chromium.org>
> Signed-off-by: Padmavathi Venna <padma.v@samsung.com>
> Reviewed-on: https://gerrit.chromium.org/gerrit/57713
> ---
>  arch/arm/boot/dts/exynos5420.dtsi |   44 +++++++++++++++++++++++++++++++++++++
>  1 files changed, 44 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/boot/dts/exynos5420.dtsi b/arch/arm/boot/dts/exynos5420.dtsi
> index d2fdb87..c9ed8d2 100644
> --- a/arch/arm/boot/dts/exynos5420.dtsi
> +++ b/arch/arm/boot/dts/exynos5420.dtsi
> @@ -242,4 +242,48 @@
>                 pinctrl-names = "default";
>                 pinctrl-0 = <&i2c3_bus>;
>         };
> +
> +       i2s_0: i2s@03830000 {
> +               compatible = "samsung,exynos5420-i2s";
> +               reg = <0x03830000 0x100>;
> +               dmas = <&adma 0
> +                       &adma 2
> +                       &adma 1>;
> +               dma-names = "tx", "rx", "tx-sec";
> +               clocks = <&clock_audss EXYNOS_I2S_BUS>,
> +                       <&clock_audss EXYNOS_I2S_BUS>,
> +                       <&clock_audss EXYNOS_SCLK_I2S>;
> +               clock-names = "iis", "i2s_opclk0", "i2s_opclk1";
> +               samsung,idma-addr = <0x03000000>;
> +               pinctrl-names = "default";
> +               pinctrl-0 = <&i2s0_bus>;
> +               status = "disabled";
> +       };
> +
> +       i2s_1: i2s@12D60000 {
> +               compatible = "samsung,s3c6410-i2s";
> +               reg = <0x12D60000 0x100>;
> +               dmas = <&pdma1 12
> +                       &pdma1 11>;
> +               dma-names = "tx", "rx";
> +               clocks = <&clock 275>, <&clock 138>;
> +               clock-names = "iis", "i2s_opclk0";
> +               pinctrl-names = "default";
> +               pinctrl-0 = <&i2s1_bus>;
> +               status = "disabled";
> +       };
> +
> +       i2s_2: i2s@12D70000 {
> +               compatible = "samsung,s3c6410-i2s";
> +               reg = <0x12D70000 0x100>;
> +               dmas = <&pdma0 12
> +                       &pdma0 11>;
> +               dma-names = "tx", "rx";
> +               clocks = <&clock 276>, <&clock 139>;
> +               clock-names = "iis", "i2s_opclk0";
> +               pinctrl-names = "default";
> +               pinctrl-0 = <&i2s2_bus>;
> +               status = "disabled";
> +       };
> +
>  };
> --
> 1.7.4.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2013-08-02  6:32 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-26 13:36 [PATCH V2 0/8] Add audio support on smdk5420 Padmavathi Venna
2013-07-26 13:36 ` [PATCH V2 1/8] platform: Increase platform name size Padmavathi Venna
2013-07-26 14:36   ` Sachin Kamat
2013-07-26 13:36 ` [PATCH V2 2/8] ASoC: Samsung: I2S: Add quirks as driver data in I2S Padmavathi Venna
2013-07-26 14:06   ` Russell King - ARM Linux
2013-07-26 14:21     ` Tomasz Figa
2013-07-26 14:27       ` Russell King - ARM Linux
2013-07-26 14:37         ` Tomasz Figa
2013-07-26 14:53   ` Mark Brown
2013-07-26 15:02     ` Tomasz Figa
2013-07-26 15:25       ` Mark Brown
2013-07-27 11:56         ` Tomasz Figa
2013-07-26 13:36 ` [PATCH V2 3/8] ARM: dts: Change i2s compatible string on exynos5250 Padmavathi Venna
2013-07-26 13:36 ` [PATCH V2 4/8] ASoC: Samsung: I2S: Modify driver to give more flexibility Padmavathi Venna
2013-07-26 15:05   ` Mark Brown
2013-07-26 13:36 ` [PATCH V2 5/8] ASoC: Samsung: I2S: Modify the I2S driver to support I2S on Exynos5420 Padmavathi Venna
2013-07-26 13:36 ` [PATCH V2 6/8] ARM: dts: exynos5420: add i2s controllers Padmavathi Venna
2013-08-02  6:32   ` sunil joshi [this message]
2013-07-26 13:36 ` [PATCH V2 7/8] ARM: dts: wm8994: Add wm8994 support on smdk5420 Padmavathi Venna
2013-07-26 15:19   ` Mark Brown
2013-07-27  1:16     ` Padma Venkat
2013-07-29 12:01       ` Padma Venkat
2013-07-29 13:43         ` Mark Brown
2013-07-30  3:28           ` Padma Venkat
2013-08-02 10:45             ` Padma Venkat
2013-08-04 17:22               ` Mark Brown
2013-07-26 13:36 ` [PATCH V2 8/8] ARM: dts: Enable sound " Padmavathi Venna
2013-07-26 14:22 ` [PATCH V2 0/8] Add audio " Tomasz Figa

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=CANruHrT6m233MH69XitCwb66cgKvAngKBv5EPPD4xb-1jx1DUw@mail.gmail.com \
    --to=sjoshi.open@gmail.com \
    --cc=abrestic@chromium.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=devicetree-discuss@lists.ozlabs.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=padma.v@samsung.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 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).