devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Padma Venkat <padma.kvr@gmail.com>
To: Padmavathi Venna <padma.v@samsung.com>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org, alsa-devel@alsa-project.org,
	devicetree-discuss@lists.ozlabs.org, sbkim73@samsung.com,
	ben-linux@fluff.org, kgene.kim@samsung.com,
	Mark Brown <broonie@opensource.wolfsonmicro.com>
Subject: Re: [PATCH V3 1/2] ARM: dts: Add nodes for i2s controllers for Samsung Exynos5 platforms
Date: Fri, 23 Nov 2012 16:44:15 +0530	[thread overview]
Message-ID: <CAAgF-Be=m2ZrupCWV-iTGCT=AkMzxZOQGhJ-2fF3L_YeqS_FaQ@mail.gmail.com> (raw)
In-Reply-To: <1352177084-16339-2-git-send-email-padma.v@samsung.com>

cc'ing Mark Brown.

On Tue, Nov 6, 2012 at 10:14 AM, Padmavathi Venna <padma.v@samsung.com> wrote:
> Add device nodes for the three instances of i2s controllers in Exynos5
> platforms. Enable instance i2s 0 for exynos5250 board and disable all
> other i2s instances.
>
> Signed-off-by: Padmavathi Venna <padma.v@samsung.com>
> ---
>  arch/arm/boot/dts/exynos5250-smdk5250.dts |   14 ++++++++++++++
>  arch/arm/boot/dts/exynos5250.dtsi         |   29 +++++++++++++++++++++++++++++
>  2 files changed, 43 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/boot/dts/exynos5250-smdk5250.dts b/arch/arm/boot/dts/exynos5250-smdk5250.dts
> index 405009c..3b2a3c9 100644
> --- a/arch/arm/boot/dts/exynos5250-smdk5250.dts
> +++ b/arch/arm/boot/dts/exynos5250-smdk5250.dts
> @@ -193,4 +193,18 @@
>         hdmi {
>                 hpd-gpio = <&gpx3 7 0xf 1 3>;
>         };
> +
> +       i2s_0: i2s@03830000 {
> +               gpios = <&gpz 0 2 0 0>, <&gpz 1 2 0 0>, <&gpz 2 2 0 0>,
> +                       <&gpz 3 2 0 0>, <&gpz 4 2 0 0>, <&gpz 5 2 0 0>,
> +                       <&gpz 6 2 0 0>;
> +       };
> +
> +       i2s_1: i2s@12D60000 {
> +               status = "disabled";
> +       };
> +
> +       i2s_2: i2s@12D70000 {
> +               status = "disabled";
> +       };
>  };
> diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts/exynos5250.dtsi
> index cf6a02d..a168e98 100644
> --- a/arch/arm/boot/dts/exynos5250.dtsi
> +++ b/arch/arm/boot/dts/exynos5250.dtsi
> @@ -31,6 +31,9 @@
>                 gsc1 = &gsc_1;
>                 gsc2 = &gsc_2;
>                 gsc3 = &gsc_3;
> +               i2s0 = &i2s_0;
> +               i2s1 = &i2s_1;
> +               i2s2 = &i2s_2;
>         };
>
>         gic:interrupt-controller@10481000 {
> @@ -238,6 +241,32 @@
>                 #size-cells = <0>;
>         };
>
> +       i2s_0: i2s@03830000 {
> +               compatible = "samsung,samsung-i2s";
> +               reg = <0x03830000 0x100>;
> +               tx-dma-channel-secondary = <&pdma0 8>; /* preliminary */
> +               tx-dma-channel = <&pdma0 10>; /* preliminary */
> +               rx-dma-channel = <&pdma0 9>; /* preliminary */
> +               samsung,supports-6ch;
> +               samsung,supports-rstclr;
> +               samsung,supports-secdai;
> +               samsung,idma-addr = <0x03000000>;
> +       };
> +
> +       i2s_1: i2s@12D60000 {
> +               compatible = "samsung,samsung-i2s";
> +               reg = <0x12D60000 0x100>;
> +               tx-dma-channel = <&pdma1 12>; /* preliminary */
> +               rx-dma-channel = <&pdma1 11>; /* preliminary */
> +       };
> +
> +       i2s_2: i2s@12D70000 {
> +               compatible = "samsung,samsung-i2s";
> +               reg = <0x12D70000 0x100>;
> +               tx-dma-channel = <&pdma0 12>; /* preliminary */
> +               rx-dma-channel = <&pdma0 11>; /* preliminary */
> +       };
> +
>         amba {
>                 #address-cells = <1>;
>                 #size-cells = <1>;
> --
> 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:[~2012-11-23 11:14 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-06  4:44 [PATCH V3 0/2] ARM: Exynos: Enable I2S platform support for Exynos5 Padmavathi Venna
2012-11-06  4:44 ` [PATCH V3 1/2] ARM: dts: Add nodes for i2s controllers for Samsung Exynos5 platforms Padmavathi Venna
2012-11-23 11:14   ` Padma Venkat [this message]
2012-11-06  4:44 ` [PATCH V3 2/2] ARM: EXYNOS: Enable platform support for I2S controllers Padmavathi Venna
2012-11-23 11:14   ` Padma Venkat
2012-11-23  9:27 ` [PATCH V3 0/2] ARM: Exynos: Enable I2S platform support for Exynos5 Sangbeom Kim
2012-11-24  2:10   ` Kukjin Kim
2012-11-23 11:21 ` Padma Venkat

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='CAAgF-Be=m2ZrupCWV-iTGCT=AkMzxZOQGhJ-2fF3L_YeqS_FaQ@mail.gmail.com' \
    --to=padma.kvr@gmail.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=ben-linux@fluff.org \
    --cc=broonie@opensource.wolfsonmicro.com \
    --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.v@samsung.com \
    --cc=sbkim73@samsung.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).