Re: [PATCH] ASoC: rsnd: tidyup Sampling rate convert example on Document

2017-05-15 Thread Kuninori Morimoto

Hi Niklas

> > "renesas,rsrc-card" is exchanged to "simple-scu-card".
> > Let's update Document
> 
> You state "simple-scu-audio-card" in the patch not "simple-scu-card", is 
> this intentional or a typo?

Oops
"simple-scu-card" is driver name, "simple-scu-audio-card" is compatible name
I will fix git log in v2

Best regards
---
Kuninori Morimoto


Re: [PATCH] ASoC: rsnd: tidyup Sampling rate convert example on Document

2017-05-15 Thread Niklas Söderlund
Hi Morimoto-san,

On 2017-05-15 01:59:51 +, Kuninori Morimoto wrote:
> From: Kuninori Morimoto 
> 
> "renesas,rsrc-card" is exchanged to "simple-scu-card".
> Let's update Document

You state "simple-scu-audio-card" in the patch not "simple-scu-card", is 
this intentional or a typo?

> 
> Signed-off-by: Kuninori Morimoto 
> ---
>  .../devicetree/bindings/sound/renesas,rsnd.txt | 30 
> +++---
>  1 file changed, 15 insertions(+), 15 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt 
> b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
> index 15a7316..3332910 100644
> --- a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
> +++ b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
> @@ -83,11 +83,11 @@ SRC can convert [xx]Hz to [yy]Hz. Then, it has below 2 
> modes
>  ** Asynchronous mode
>  --
>  
> -You need to use "renesas,rsrc-card" sound card for it.
> +You need to use "simple-scu-audio-card" sound card for it.
>  example)
>  
>   sound {
> - compatible = "renesas,rsrc-card";
> + compatible = "simple-scu-audio-card";
>   ...
>   /*
>* SRC Asynchronous mode setting
> @@ -97,12 +97,12 @@ example)
>* Inputed 48kHz data will be converted to
>* system specified Hz
>*/
> - convert-rate = <48000>;
> + simple-audio-card,convert-rate = <48000>;
>   ...
> - cpu {
> + simple-audio-card,cpu {
>   sound-dai = <_sound>;
>   };
> - codec {
> + simple-audio-card,codec {
>   ...
>   };
>   };
> @@ -141,23 +141,23 @@ For more detail information, see below
>   ${LINUX}/sound/soc/sh/rcar/ctu.c
>- comment of header
>  
> -You need to use "renesas,rsrc-card" sound card for it.
> +You need to use "simple-scu-audio-card" sound card for it.
>  example)
>  
>   sound {
> - compatible = "renesas,rsrc-card";
> + compatible = "simple-scu-audio-card";
>   ...
>   /*
>* CTU setting
>* All input data will be converted to 2ch
>* as output data
>*/
> - convert-channels = <2>;
> + simple-audio-card,convert-channels = <2>;
>   ...
> - cpu {
> + simple-audio-card,cpu {
>   sound-dai = <_sound>;
>   };
> - codec {
> + simple-audio-card,codec {
>   ...
>   };
>   };
> @@ -190,22 +190,22 @@ and these sounds will be merged by MIX.
>   aplay -D plughw:0,0 .wav &
>   aplay -D plughw:0,1 .wav
>  
> -You need to use "renesas,rsrc-card" sound card for it.
> +You need to use "simple-scu-audio-card" sound card for it.
>  Ex)
>   [MEM] -> [SRC1] -> [CTU02] -+-> [MIX0] -> [DVC0] -> [SSI0]
>   |
>   [MEM] -> [SRC2] -> [CTU03] -+
>  
>   sound {
> - compatible = "renesas,rsrc-card";
> + compatible = "simple-scu-audio-card";
>   ...
> - cpu@0 {
> + simple-audio-card,cpu@0 {
>   sound-dai = <_sound 0>;
>   };
> - cpu@1 {
> + simple-audio-card,cpu@1 {
>   sound-dai = <_sound 1>;
>   };
> - codec {
> + simple-audio-card,codec {
>   ...
>   };
>   };
> -- 
> 1.9.1
> 

-- 
Regards,
Niklas Söderlund


[PATCH] ASoC: rsnd: tidyup Sampling rate convert example on Document

2017-05-14 Thread Kuninori Morimoto
From: Kuninori Morimoto 

"renesas,rsrc-card" is exchanged to "simple-scu-card".
Let's update Document

Signed-off-by: Kuninori Morimoto 
---
 .../devicetree/bindings/sound/renesas,rsnd.txt | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt 
b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
index 15a7316..3332910 100644
--- a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
+++ b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
@@ -83,11 +83,11 @@ SRC can convert [xx]Hz to [yy]Hz. Then, it has below 2 modes
 ** Asynchronous mode
 --
 
-You need to use "renesas,rsrc-card" sound card for it.
+You need to use "simple-scu-audio-card" sound card for it.
 example)
 
sound {
-   compatible = "renesas,rsrc-card";
+   compatible = "simple-scu-audio-card";
...
/*
 * SRC Asynchronous mode setting
@@ -97,12 +97,12 @@ example)
 * Inputed 48kHz data will be converted to
 * system specified Hz
 */
-   convert-rate = <48000>;
+   simple-audio-card,convert-rate = <48000>;
...
-   cpu {
+   simple-audio-card,cpu {
sound-dai = <_sound>;
};
-   codec {
+   simple-audio-card,codec {
...
};
};
@@ -141,23 +141,23 @@ For more detail information, see below
${LINUX}/sound/soc/sh/rcar/ctu.c
 - comment of header
 
-You need to use "renesas,rsrc-card" sound card for it.
+You need to use "simple-scu-audio-card" sound card for it.
 example)
 
sound {
-   compatible = "renesas,rsrc-card";
+   compatible = "simple-scu-audio-card";
...
/*
 * CTU setting
 * All input data will be converted to 2ch
 * as output data
 */
-   convert-channels = <2>;
+   simple-audio-card,convert-channels = <2>;
...
-   cpu {
+   simple-audio-card,cpu {
sound-dai = <_sound>;
};
-   codec {
+   simple-audio-card,codec {
...
};
};
@@ -190,22 +190,22 @@ and these sounds will be merged by MIX.
aplay -D plughw:0,0 .wav &
aplay -D plughw:0,1 .wav
 
-You need to use "renesas,rsrc-card" sound card for it.
+You need to use "simple-scu-audio-card" sound card for it.
 Ex)
[MEM] -> [SRC1] -> [CTU02] -+-> [MIX0] -> [DVC0] -> [SSI0]
|
[MEM] -> [SRC2] -> [CTU03] -+
 
sound {
-   compatible = "renesas,rsrc-card";
+   compatible = "simple-scu-audio-card";
...
-   cpu@0 {
+   simple-audio-card,cpu@0 {
sound-dai = <_sound 0>;
};
-   cpu@1 {
+   simple-audio-card,cpu@1 {
sound-dai = <_sound 1>;
};
-   codec {
+   simple-audio-card,codec {
...
};
};
-- 
1.9.1