* [alsa-devel] [PATCH v2 RESEND] ARM: dts: Support audio on Exynos5422-odroidxu3 using simple-audio-card
@ 2015-04-10 7:32 Inha Song
[not found] ` <1428651178-18186-1-git-send-email-ideal.song-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Inha Song @ 2015-04-10 7:32 UTC (permalink / raw)
To: kgene
Cc: s.nawrocki, broonie, robh+dt, pawel.moll, mark.rutland,
ijc+devicetree, galak, alsa-devel, devicetree, linux-samsung-soc,
cw00.choi, Inha Song
Add MAX98090 audio codec, I2S interface and the sound nodes to support
audio on Exynos5422 SoC Based Odroid-XU3 board. Now we can support audio
in Odroid-XU3 board using simple-audio-card DT binding.
Signed-off-by: Inha Song <ideal.song@samsung.com>
Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
---
arch/arm/boot/dts/exynos5420.dtsi | 9 +++++
arch/arm/boot/dts/exynos5422-odroidxu3.dts | 59 ++++++++++++++++++++++++++++++
2 files changed, 68 insertions(+)
diff --git a/arch/arm/boot/dts/exynos5420.dtsi b/arch/arm/boot/dts/exynos5420.dtsi
index ac6f860..73886d6 100644
--- a/arch/arm/boot/dts/exynos5420.dtsi
+++ b/arch/arm/boot/dts/exynos5420.dtsi
@@ -415,6 +415,9 @@
<&clock_audss EXYNOS_I2S_BUS>,
<&clock_audss EXYNOS_SCLK_I2S>;
clock-names = "iis", "i2s_opclk0", "i2s_opclk1";
+ #clock-cells = <1>;
+ clock-output-names = "i2s_cdclk0";
+ #sound-dai-cells = <1>;
samsung,idma-addr = <0x03000000>;
pinctrl-names = "default";
pinctrl-0 = <&i2s0_bus>;
@@ -429,6 +432,9 @@
dma-names = "tx", "rx";
clocks = <&clock CLK_I2S1>, <&clock CLK_SCLK_I2S1>;
clock-names = "iis", "i2s_opclk0";
+ #clock-cells = <1>;
+ clock-output-names = "i2s_cdclk1";
+ #sound-dai-cells = <1>;
pinctrl-names = "default";
pinctrl-0 = <&i2s1_bus>;
status = "disabled";
@@ -442,6 +448,9 @@
dma-names = "tx", "rx";
clocks = <&clock CLK_I2S2>, <&clock CLK_SCLK_I2S2>;
clock-names = "iis", "i2s_opclk0";
+ #clock-cells = <1>;
+ clock-output-names = "i2s_cdclk2";
+ #sound-dai-cells = <1>;
pinctrl-names = "default";
pinctrl-0 = <&i2s2_bus>;
status = "disabled";
diff --git a/arch/arm/boot/dts/exynos5422-odroidxu3.dts b/arch/arm/boot/dts/exynos5422-odroidxu3.dts
index edc25cf..c038f0d 100644
--- a/arch/arm/boot/dts/exynos5422-odroidxu3.dts
+++ b/arch/arm/boot/dts/exynos5422-odroidxu3.dts
@@ -11,6 +11,7 @@
*/
/dts-v1/;
+#include <dt-bindings/sound/samsung-i2s.h>
#include "exynos5800.dtsi"
/ {
@@ -285,6 +286,64 @@
rtc@101E0000 {
status = "okay";
};
+
+ sound: sound {
+ compatible = "simple-audio-card";
+
+ simple-audio-card,name = "Odroid-XU3";
+ simple-audio-card,widgets =
+ "Headphone", "Headphone Jack",
+ "Speakers", "Speakers";
+ simple-audio-card,routing =
+ "Headphone Jack", "HPL",
+ "Headphone Jack", "HPR",
+ "Headphone Jack", "MICBIAS",
+ "IN1", "Headphone Jack",
+ "Speakers", "SPKL",
+ "Speakers", "SPKR";
+
+ simple-audio-card,format = "i2s";
+ simple-audio-card,bitclock-master = <&link0_codec>;
+ simple-audio-card,frame-master = <&link0_codec>;
+
+ simple-audio-card,cpu {
+ sound-dai = <&i2s0 0>;
+ system-clock-frequency = <19200000>;
+ };
+
+ link0_codec: simple-audio-card,codec {
+ sound-dai = <&max98090>;
+ clocks = <&i2s0 CLK_I2S_CDCLK>;
+ };
+ };
+};
+
+&clock_audss {
+ assigned-clocks = <&clock_audss EXYNOS_MOUT_AUDSS>,
+ <&clock_audss EXYNOS_MOUT_I2S>,
+ <&clock_audss EXYNOS_DOUT_AUD_BUS>;
+ assigned-clock-parents = <&clock CLK_FIN_PLL>,
+ <&clock_audss EXYNOS_MOUT_AUDSS>;
+ assigned-clock-rates = <0>,
+ <0>,
+ <19200000>;
+};
+
+&hsi2c_5 {
+ status = "okay";
+ max98090: max98090@10 {
+ compatible = "maxim,max98090";
+ reg = <0x10>;
+ interrupt-parent = <&gpx3>;
+ interrupts = <2 0>;
+ clocks = <&i2s0 CLK_I2S_CDCLK>;
+ clock-names = "mclk";
+ #sound-dai-cells = <0>;
+ };
+};
+
+&i2s0 {
+ status = "okay";
};
&hdmi {
--
2.0.0.390.gcb682f8
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [alsa-devel] [PATCH v2 RESEND] ARM: dts: Support audio on Exynos5422-odroidxu3 using simple-audio-card
[not found] ` <1428651178-18186-1-git-send-email-ideal.song-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
@ 2015-04-10 9:02 ` Markus Reichl
[not found] ` <552791A4.40203-SRyzfwRm/0rPTwkrwQOX7A@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Markus Reichl @ 2015-04-10 9:02 UTC (permalink / raw)
To: Inha Song, kgene-DgEjT+Ai2ygdnm+yROfE0A
Cc: s.nawrocki-Sze3O3UU22JBDgjK7y7TUQ, broonie-DgEjT+Ai2ygdnm+yROfE0A,
robh+dt-DgEjT+Ai2ygdnm+yROfE0A, pawel.moll-5wv7dgnIgG8,
mark.rutland-5wv7dgnIgG8, ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg,
galak-sgV2jX0FEOL9JmXXK+q4OQ, alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-samsung-soc-u79uwXL29TY76Z2rM5mHXA,
cw00.choi-Sze3O3UU22JBDgjK7y7TUQ
[-- Attachment #1: Type: text/plain, Size: 4039 bytes --]
Hi Inha,
I have tested this on XU3 (Headphone output).
Tested-by: Markus Reichl <m.reichl-SRyzfwRm/0rPTwkrwQOX7A@public.gmane.org>
Best Regards
--
Markus Reichl
Am 10.04.2015 um 09:32 schrieb Inha Song:
> Add MAX98090 audio codec, I2S interface and the sound nodes to support
> audio on Exynos5422 SoC Based Odroid-XU3 board. Now we can support audio
> in Odroid-XU3 board using simple-audio-card DT binding.
>
> Signed-off-by: Inha Song <ideal.song-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
> Reviewed-by: Sylwester Nawrocki <s.nawrocki-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
> ---
> arch/arm/boot/dts/exynos5420.dtsi | 9 +++++
> arch/arm/boot/dts/exynos5422-odroidxu3.dts | 59 ++++++++++++++++++++++++++++++
> 2 files changed, 68 insertions(+)
>
> diff --git a/arch/arm/boot/dts/exynos5420.dtsi b/arch/arm/boot/dts/exynos5420.dtsi
> index ac6f860..73886d6 100644
> --- a/arch/arm/boot/dts/exynos5420.dtsi
> +++ b/arch/arm/boot/dts/exynos5420.dtsi
> @@ -415,6 +415,9 @@
> <&clock_audss EXYNOS_I2S_BUS>,
> <&clock_audss EXYNOS_SCLK_I2S>;
> clock-names = "iis", "i2s_opclk0", "i2s_opclk1";
> + #clock-cells = <1>;
> + clock-output-names = "i2s_cdclk0";
> + #sound-dai-cells = <1>;
> samsung,idma-addr = <0x03000000>;
> pinctrl-names = "default";
> pinctrl-0 = <&i2s0_bus>;
> @@ -429,6 +432,9 @@
> dma-names = "tx", "rx";
> clocks = <&clock CLK_I2S1>, <&clock CLK_SCLK_I2S1>;
> clock-names = "iis", "i2s_opclk0";
> + #clock-cells = <1>;
> + clock-output-names = "i2s_cdclk1";
> + #sound-dai-cells = <1>;
> pinctrl-names = "default";
> pinctrl-0 = <&i2s1_bus>;
> status = "disabled";
> @@ -442,6 +448,9 @@
> dma-names = "tx", "rx";
> clocks = <&clock CLK_I2S2>, <&clock CLK_SCLK_I2S2>;
> clock-names = "iis", "i2s_opclk0";
> + #clock-cells = <1>;
> + clock-output-names = "i2s_cdclk2";
> + #sound-dai-cells = <1>;
> pinctrl-names = "default";
> pinctrl-0 = <&i2s2_bus>;
> status = "disabled";
> diff --git a/arch/arm/boot/dts/exynos5422-odroidxu3.dts b/arch/arm/boot/dts/exynos5422-odroidxu3.dts
> index edc25cf..c038f0d 100644
> --- a/arch/arm/boot/dts/exynos5422-odroidxu3.dts
> +++ b/arch/arm/boot/dts/exynos5422-odroidxu3.dts
> @@ -11,6 +11,7 @@
> */
>
> /dts-v1/;
> +#include <dt-bindings/sound/samsung-i2s.h>
> #include "exynos5800.dtsi"
>
> / {
> @@ -285,6 +286,64 @@
> rtc@101E0000 {
> status = "okay";
> };
> +
> + sound: sound {
> + compatible = "simple-audio-card";
> +
> + simple-audio-card,name = "Odroid-XU3";
> + simple-audio-card,widgets =
> + "Headphone", "Headphone Jack",
> + "Speakers", "Speakers";
> + simple-audio-card,routing =
> + "Headphone Jack", "HPL",
> + "Headphone Jack", "HPR",
> + "Headphone Jack", "MICBIAS",
> + "IN1", "Headphone Jack",
> + "Speakers", "SPKL",
> + "Speakers", "SPKR";
> +
> + simple-audio-card,format = "i2s";
> + simple-audio-card,bitclock-master = <&link0_codec>;
> + simple-audio-card,frame-master = <&link0_codec>;
> +
> + simple-audio-card,cpu {
> + sound-dai = <&i2s0 0>;
> + system-clock-frequency = <19200000>;
> + };
> +
> + link0_codec: simple-audio-card,codec {
> + sound-dai = <&max98090>;
> + clocks = <&i2s0 CLK_I2S_CDCLK>;
> + };
> + };
> +};
> +
> +&clock_audss {
> + assigned-clocks = <&clock_audss EXYNOS_MOUT_AUDSS>,
> + <&clock_audss EXYNOS_MOUT_I2S>,
> + <&clock_audss EXYNOS_DOUT_AUD_BUS>;
> + assigned-clock-parents = <&clock CLK_FIN_PLL>,
> + <&clock_audss EXYNOS_MOUT_AUDSS>;
> + assigned-clock-rates = <0>,
> + <0>,
> + <19200000>;
> +};
> +
> +&hsi2c_5 {
> + status = "okay";
> + max98090: max98090@10 {
> + compatible = "maxim,max98090";
> + reg = <0x10>;
> + interrupt-parent = <&gpx3>;
> + interrupts = <2 0>;
> + clocks = <&i2s0 CLK_I2S_CDCLK>;
> + clock-names = "mclk";
> + #sound-dai-cells = <0>;
> + };
> +};
> +
> +&i2s0 {
> + status = "okay";
> };
>
> &hdmi {
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [alsa-devel] [PATCH v2 RESEND] ARM: dts: Support audio on Exynos5422-odroidxu3 using simple-audio-card
[not found] ` <552791A4.40203-SRyzfwRm/0rPTwkrwQOX7A@public.gmane.org>
@ 2015-04-10 9:18 ` Anand Moon
2015-05-06 1:47 ` Inha Song
0 siblings, 1 reply; 6+ messages in thread
From: Anand Moon @ 2015-04-10 9:18 UTC (permalink / raw)
To: Markus Reichl
Cc: Inha Song, Kukjin Kim, Sylwester Nawrocki,
broonie-DgEjT+Ai2ygdnm+yROfE0A, Rob Herring, Pawel Moll,
Mark Rutland, Ian Campbell, Kumar Gala,
alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-samsung-soc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Chanwoo Choi
Hi Inha,
Tested-by: Anand Moon <linux.amoon-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
-Anand Moon
On 10 April 2015 at 14:32, Markus Reichl <m.reichl-SRyzfwRm/0rPTwkrwQOX7A@public.gmane.org> wrote:
> Hi Inha,
>
> I have tested this on XU3 (Headphone output).
>
> Tested-by: Markus Reichl <m.reichl-SRyzfwRm/0rPTwkrwQOX7A@public.gmane.org>
>
> Best Regards
> --
> Markus Reichl
>
> Am 10.04.2015 um 09:32 schrieb Inha Song:
>> Add MAX98090 audio codec, I2S interface and the sound nodes to support
>> audio on Exynos5422 SoC Based Odroid-XU3 board. Now we can support audio
>> in Odroid-XU3 board using simple-audio-card DT binding.
>>
>> Signed-off-by: Inha Song <ideal.song-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
>> Reviewed-by: Sylwester Nawrocki <s.nawrocki-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
>> ---
>> arch/arm/boot/dts/exynos5420.dtsi | 9 +++++
>> arch/arm/boot/dts/exynos5422-odroidxu3.dts | 59 ++++++++++++++++++++++++++++++
>> 2 files changed, 68 insertions(+)
>>
>> diff --git a/arch/arm/boot/dts/exynos5420.dtsi b/arch/arm/boot/dts/exynos5420.dtsi
>> index ac6f860..73886d6 100644
>> --- a/arch/arm/boot/dts/exynos5420.dtsi
>> +++ b/arch/arm/boot/dts/exynos5420.dtsi
>> @@ -415,6 +415,9 @@
>> <&clock_audss EXYNOS_I2S_BUS>,
>> <&clock_audss EXYNOS_SCLK_I2S>;
>> clock-names = "iis", "i2s_opclk0", "i2s_opclk1";
>> + #clock-cells = <1>;
>> + clock-output-names = "i2s_cdclk0";
>> + #sound-dai-cells = <1>;
>> samsung,idma-addr = <0x03000000>;
>> pinctrl-names = "default";
>> pinctrl-0 = <&i2s0_bus>;
>> @@ -429,6 +432,9 @@
>> dma-names = "tx", "rx";
>> clocks = <&clock CLK_I2S1>, <&clock CLK_SCLK_I2S1>;
>> clock-names = "iis", "i2s_opclk0";
>> + #clock-cells = <1>;
>> + clock-output-names = "i2s_cdclk1";
>> + #sound-dai-cells = <1>;
>> pinctrl-names = "default";
>> pinctrl-0 = <&i2s1_bus>;
>> status = "disabled";
>> @@ -442,6 +448,9 @@
>> dma-names = "tx", "rx";
>> clocks = <&clock CLK_I2S2>, <&clock CLK_SCLK_I2S2>;
>> clock-names = "iis", "i2s_opclk0";
>> + #clock-cells = <1>;
>> + clock-output-names = "i2s_cdclk2";
>> + #sound-dai-cells = <1>;
>> pinctrl-names = "default";
>> pinctrl-0 = <&i2s2_bus>;
>> status = "disabled";
>> diff --git a/arch/arm/boot/dts/exynos5422-odroidxu3.dts b/arch/arm/boot/dts/exynos5422-odroidxu3.dts
>> index edc25cf..c038f0d 100644
>> --- a/arch/arm/boot/dts/exynos5422-odroidxu3.dts
>> +++ b/arch/arm/boot/dts/exynos5422-odroidxu3.dts
>> @@ -11,6 +11,7 @@
>> */
>>
>> /dts-v1/;
>> +#include <dt-bindings/sound/samsung-i2s.h>
>> #include "exynos5800.dtsi"
>>
>> / {
>> @@ -285,6 +286,64 @@
>> rtc@101E0000 {
>> status = "okay";
>> };
>> +
>> + sound: sound {
>> + compatible = "simple-audio-card";
>> +
>> + simple-audio-card,name = "Odroid-XU3";
>> + simple-audio-card,widgets =
>> + "Headphone", "Headphone Jack",
>> + "Speakers", "Speakers";
>> + simple-audio-card,routing =
>> + "Headphone Jack", "HPL",
>> + "Headphone Jack", "HPR",
>> + "Headphone Jack", "MICBIAS",
>> + "IN1", "Headphone Jack",
>> + "Speakers", "SPKL",
>> + "Speakers", "SPKR";
>> +
>> + simple-audio-card,format = "i2s";
>> + simple-audio-card,bitclock-master = <&link0_codec>;
>> + simple-audio-card,frame-master = <&link0_codec>;
>> +
>> + simple-audio-card,cpu {
>> + sound-dai = <&i2s0 0>;
>> + system-clock-frequency = <19200000>;
>> + };
>> +
>> + link0_codec: simple-audio-card,codec {
>> + sound-dai = <&max98090>;
>> + clocks = <&i2s0 CLK_I2S_CDCLK>;
>> + };
>> + };
>> +};
>> +
>> +&clock_audss {
>> + assigned-clocks = <&clock_audss EXYNOS_MOUT_AUDSS>,
>> + <&clock_audss EXYNOS_MOUT_I2S>,
>> + <&clock_audss EXYNOS_DOUT_AUD_BUS>;
>> + assigned-clock-parents = <&clock CLK_FIN_PLL>,
>> + <&clock_audss EXYNOS_MOUT_AUDSS>;
>> + assigned-clock-rates = <0>,
>> + <0>,
>> + <19200000>;
>> +};
>> +
>> +&hsi2c_5 {
>> + status = "okay";
>> + max98090: max98090@10 {
>> + compatible = "maxim,max98090";
>> + reg = <0x10>;
>> + interrupt-parent = <&gpx3>;
>> + interrupts = <2 0>;
>> + clocks = <&i2s0 CLK_I2S_CDCLK>;
>> + clock-names = "mclk";
>> + #sound-dai-cells = <0>;
>> + };
>> +};
>> +
>> +&i2s0 {
>> + status = "okay";
>> };
>>
>> &hdmi {
>>
>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [alsa-devel] [PATCH v2 RESEND] ARM: dts: Support audio on Exynos5422-odroidxu3 using simple-audio-card
2015-04-10 9:18 ` Anand Moon
@ 2015-05-06 1:47 ` Inha Song
2015-05-06 13:23 ` Javier Martinez Canillas
0 siblings, 1 reply; 6+ messages in thread
From: Inha Song @ 2015-05-06 1:47 UTC (permalink / raw)
To: Kukjin Kim
Cc: Anand Moon, Markus Reichl, Sylwester Nawrocki, broonie,
Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala,
alsa-devel, devicetree, linux-samsung-soc@vger.kernel.org,
Chanwoo Choi
Hi Kukjin,
Any comments about this patch?
Best Regards,
Inha Song.
On Fri, 10 Apr 2015 14:48:13 +0530
Anand Moon <linux.amoon@gmail.com> wrote:
> Hi Inha,
>
> Tested-by: Anand Moon <linux.amoon@gmail.com>
>
> -Anand Moon
>
> On 10 April 2015 at 14:32, Markus Reichl <m.reichl@fivetechno.de> wrote:
> > Hi Inha,
> >
> > I have tested this on XU3 (Headphone output).
> >
> > Tested-by: Markus Reichl <m.reichl@fivetechno.de>
> >
> > Best Regards
> > --
> > Markus Reichl
> >
> > Am 10.04.2015 um 09:32 schrieb Inha Song:
> >> Add MAX98090 audio codec, I2S interface and the sound nodes to support
> >> audio on Exynos5422 SoC Based Odroid-XU3 board. Now we can support audio
> >> in Odroid-XU3 board using simple-audio-card DT binding.
> >>
> >> Signed-off-by: Inha Song <ideal.song@samsung.com>
> >> Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
> >> ---
> >> arch/arm/boot/dts/exynos5420.dtsi | 9 +++++
> >> arch/arm/boot/dts/exynos5422-odroidxu3.dts | 59 ++++++++++++++++++++++++++++++
> >> 2 files changed, 68 insertions(+)
> >>
> >> diff --git a/arch/arm/boot/dts/exynos5420.dtsi b/arch/arm/boot/dts/exynos5420.dtsi
> >> index ac6f860..73886d6 100644
> >> --- a/arch/arm/boot/dts/exynos5420.dtsi
> >> +++ b/arch/arm/boot/dts/exynos5420.dtsi
> >> @@ -415,6 +415,9 @@
> >> <&clock_audss EXYNOS_I2S_BUS>,
> >> <&clock_audss EXYNOS_SCLK_I2S>;
> >> clock-names = "iis", "i2s_opclk0", "i2s_opclk1";
> >> + #clock-cells = <1>;
> >> + clock-output-names = "i2s_cdclk0";
> >> + #sound-dai-cells = <1>;
> >> samsung,idma-addr = <0x03000000>;
> >> pinctrl-names = "default";
> >> pinctrl-0 = <&i2s0_bus>;
> >> @@ -429,6 +432,9 @@
> >> dma-names = "tx", "rx";
> >> clocks = <&clock CLK_I2S1>, <&clock CLK_SCLK_I2S1>;
> >> clock-names = "iis", "i2s_opclk0";
> >> + #clock-cells = <1>;
> >> + clock-output-names = "i2s_cdclk1";
> >> + #sound-dai-cells = <1>;
> >> pinctrl-names = "default";
> >> pinctrl-0 = <&i2s1_bus>;
> >> status = "disabled";
> >> @@ -442,6 +448,9 @@
> >> dma-names = "tx", "rx";
> >> clocks = <&clock CLK_I2S2>, <&clock CLK_SCLK_I2S2>;
> >> clock-names = "iis", "i2s_opclk0";
> >> + #clock-cells = <1>;
> >> + clock-output-names = "i2s_cdclk2";
> >> + #sound-dai-cells = <1>;
> >> pinctrl-names = "default";
> >> pinctrl-0 = <&i2s2_bus>;
> >> status = "disabled";
> >> diff --git a/arch/arm/boot/dts/exynos5422-odroidxu3.dts b/arch/arm/boot/dts/exynos5422-odroidxu3.dts
> >> index edc25cf..c038f0d 100644
> >> --- a/arch/arm/boot/dts/exynos5422-odroidxu3.dts
> >> +++ b/arch/arm/boot/dts/exynos5422-odroidxu3.dts
> >> @@ -11,6 +11,7 @@
> >> */
> >>
> >> /dts-v1/;
> >> +#include <dt-bindings/sound/samsung-i2s.h>
> >> #include "exynos5800.dtsi"
> >>
> >> / {
> >> @@ -285,6 +286,64 @@
> >> rtc@101E0000 {
> >> status = "okay";
> >> };
> >> +
> >> + sound: sound {
> >> + compatible = "simple-audio-card";
> >> +
> >> + simple-audio-card,name = "Odroid-XU3";
> >> + simple-audio-card,widgets =
> >> + "Headphone", "Headphone Jack",
> >> + "Speakers", "Speakers";
> >> + simple-audio-card,routing =
> >> + "Headphone Jack", "HPL",
> >> + "Headphone Jack", "HPR",
> >> + "Headphone Jack", "MICBIAS",
> >> + "IN1", "Headphone Jack",
> >> + "Speakers", "SPKL",
> >> + "Speakers", "SPKR";
> >> +
> >> + simple-audio-card,format = "i2s";
> >> + simple-audio-card,bitclock-master = <&link0_codec>;
> >> + simple-audio-card,frame-master = <&link0_codec>;
> >> +
> >> + simple-audio-card,cpu {
> >> + sound-dai = <&i2s0 0>;
> >> + system-clock-frequency = <19200000>;
> >> + };
> >> +
> >> + link0_codec: simple-audio-card,codec {
> >> + sound-dai = <&max98090>;
> >> + clocks = <&i2s0 CLK_I2S_CDCLK>;
> >> + };
> >> + };
> >> +};
> >> +
> >> +&clock_audss {
> >> + assigned-clocks = <&clock_audss EXYNOS_MOUT_AUDSS>,
> >> + <&clock_audss EXYNOS_MOUT_I2S>,
> >> + <&clock_audss EXYNOS_DOUT_AUD_BUS>;
> >> + assigned-clock-parents = <&clock CLK_FIN_PLL>,
> >> + <&clock_audss EXYNOS_MOUT_AUDSS>;
> >> + assigned-clock-rates = <0>,
> >> + <0>,
> >> + <19200000>;
> >> +};
> >> +
> >> +&hsi2c_5 {
> >> + status = "okay";
> >> + max98090: max98090@10 {
> >> + compatible = "maxim,max98090";
> >> + reg = <0x10>;
> >> + interrupt-parent = <&gpx3>;
> >> + interrupts = <2 0>;
> >> + clocks = <&i2s0 CLK_I2S_CDCLK>;
> >> + clock-names = "mclk";
> >> + #sound-dai-cells = <0>;
> >> + };
> >> +};
> >> +
> >> +&i2s0 {
> >> + status = "okay";
> >> };
> >>
> >> &hdmi {
> >>
> >
> --
> 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
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [alsa-devel] [PATCH v2 RESEND] ARM: dts: Support audio on Exynos5422-odroidxu3 using simple-audio-card
2015-05-06 1:47 ` Inha Song
@ 2015-05-06 13:23 ` Javier Martinez Canillas
2015-05-06 23:49 ` Krzysztof Kozlowski
0 siblings, 1 reply; 6+ messages in thread
From: Javier Martinez Canillas @ 2015-05-06 13:23 UTC (permalink / raw)
To: Inha Song, Krzysztof Kozłowski
Cc: Kukjin Kim, Anand Moon, Markus Reichl, Sylwester Nawrocki,
Mark Brown, Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell,
Kumar Gala, alsa-devel@alsa-project.org,
devicetree@vger.kernel.org, linux-samsung-soc@vger.kernel.org,
Chanwoo Choi
+Krzysztof Kozlowski
Hello Inha,
On Wed, May 6, 2015 at 3:47 AM, Inha Song <ideal.song@samsung.com> wrote:
> Hi Kukjin,
>
> Any comments about this patch?
>
> Best Regards,
> Inha Song.
>
It seems Kukjin didn't have time lately to deal with the huge backlog
of patches for Exynos so Krzysztof (added as cc) has kindly
volunteered to help him by acting as a co-maintainer and queuing
patches.
So could you please for any patches that my have been forgotten (like
$subject), rebase on current head, carry all the obtained tags and
re-send cc'ing Krzysztof so he can be aware of them?
Best regards,
Javier
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [alsa-devel] [PATCH v2 RESEND] ARM: dts: Support audio on Exynos5422-odroidxu3 using simple-audio-card
2015-05-06 13:23 ` Javier Martinez Canillas
@ 2015-05-06 23:49 ` Krzysztof Kozlowski
0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2015-05-06 23:49 UTC (permalink / raw)
To: Javier Martinez Canillas, Inha Song
Cc: Kukjin Kim, Anand Moon, Markus Reichl, Sylwester Nawrocki,
Mark Brown, Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell,
Kumar Gala, alsa-devel@alsa-project.org,
devicetree@vger.kernel.org, linux-samsung-soc@vger.kernel.org,
Chanwoo Choi
On 06.05.2015 22:23, Javier Martinez Canillas wrote:
> +Krzysztof Kozlowski
>
> Hello Inha,
>
> On Wed, May 6, 2015 at 3:47 AM, Inha Song <ideal.song@samsung.com> wrote:
>> Hi Kukjin,
>>
>> Any comments about this patch?
>>
>> Best Regards,
>> Inha Song.
>>
>
> It seems Kukjin didn't have time lately to deal with the huge backlog
> of patches for Exynos so Krzysztof (added as cc) has kindly
> volunteered to help him by acting as a co-maintainer and queuing
> patches.
>
> So could you please for any patches that my have been forgotten (like
> $subject), rebase on current head, carry all the obtained tags and
> re-send cc'ing Krzysztof so he can be aware of them?
Thanks Javier, I queued this already with test-by tags. I'll try to push
it next time... which I don't know when it happens as current pull
request stalled.
Anyway I won't forget about the patch. It can be found here:
https://github.com/krzk/linux/commits/samsung-for-next
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-05-06 23:49 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-10 7:32 [alsa-devel] [PATCH v2 RESEND] ARM: dts: Support audio on Exynos5422-odroidxu3 using simple-audio-card Inha Song
[not found] ` <1428651178-18186-1-git-send-email-ideal.song-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2015-04-10 9:02 ` Markus Reichl
[not found] ` <552791A4.40203-SRyzfwRm/0rPTwkrwQOX7A@public.gmane.org>
2015-04-10 9:18 ` Anand Moon
2015-05-06 1:47 ` Inha Song
2015-05-06 13:23 ` Javier Martinez Canillas
2015-05-06 23:49 ` Krzysztof Kozlowski
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).