From: Jiada Wang <jiada_wang@mentor.com>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: lgirdwood@gmail.com, broonie@kernel.org, perex@perex.cz,
tiwai@suse.com, alsa-devel@alsa-project.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v1 1/1] ASoC: rsnd: ssi: Fix issue in dma data address assignment
Date: Thu, 21 Dec 2017 01:16:39 -0800 [thread overview]
Message-ID: <5A3B7BF7.7060400@mentor.com> (raw)
In-Reply-To: <87ind0bkte.wl%kuninori.morimoto.gx@renesas.com>
Hi Morimoto-san
On 12/20/2017 11:39 PM, Kuninori Morimoto wrote:
> Hi Jiada
>
>> diff --git a/arch/arm64/boot/dts/renesas/salvator-common.dtsi
>> b/arch/arm64/boot/dts/renesas/salvator-common.dtsi
>> index a298df7..16f3214 100644
>> --- a/arch/arm64/boot/dts/renesas/salvator-common.dtsi
>> +++ b/arch/arm64/boot/dts/renesas/salvator-common.dtsi
>> @@ -94,14 +94,24 @@
>> };
>>
>> rsnd_ak4613: sound {
>> - compatible = "simple-audio-card";
>> + compatible = "simple-scu-audio-card";
>>
>> simple-audio-card,format = "left_j";
>> simple-audio-card,bitclock-master =<&sndcpu>;
>> simple-audio-card,frame-master =<&sndcpu>;
>>
>> - sndcpu: simple-audio-card,cpu {
>> - sound-dai =<&rcar_sound>;
>> + simple-audio-card,prefix = "ak4613";
>> + simple-audio-card,routing =
>> + "ak4613 Playback", "DAI0 Playback",
>> + "DAI0 Capture", "ak4613 Capture",
>> + "ak4613 Playback", "DAI1 Playback";
>> +
>> + sndcpu: simple-audio-card,cpu@0 {
>> + sound-dai =<&rcar_sound 0>;
>> + };
>> +
>> + simple-audio-card,cpu@1 {
>> + sound-dai =<&rcar_sound 1>;
>> };
>>
>> sndcodec: simple-audio-card,codec {
>> @@ -517,7 +527,7 @@
>> pinctrl-names = "default";
>>
>> /* Single DAI */
>> - #sound-dai-cells =<0>;
>> + #sound-dai-cells =<1>;
>>
>> /* audio_clkout0/1/2/3 */
>> #clock-cells =<1>;
>> @@ -549,6 +559,9 @@
>> playback =<&ssi0&src0&dvc0>;
>> capture =<&ssi1&src1&dvc1>;
>> };
>> + dai1 {
>> + playback =<&ssi0>;
>> + };
>> };
>> };
>>
>> playing with dai1 will have issue.
> I guess so because you are using strange settings...
> What do you want to do ?
this is just an example setting to reproduce the issue with current
mainline kernel,
We have enabled TDM Split and Ex-Split mode in our kernel,
and SSI(U)'s dma address diffs based on the BUSIF it is using,
so have a single dma data struct per rsnd_ssi will cause issue when
SSI isn't working with BUSIF0.
Do you have any suggestion to address this issue?
Thanks,
Jiada
> Best regards
> ---
> Kuninori Morimoto
WARNING: multiple messages have this Message-ID (diff)
From: Jiada Wang <jiada_wang@mentor.com>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: <lgirdwood@gmail.com>, <broonie@kernel.org>, <perex@perex.cz>,
<tiwai@suse.com>, <alsa-devel@alsa-project.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v1 1/1] ASoC: rsnd: ssi: Fix issue in dma data address assignment
Date: Thu, 21 Dec 2017 01:16:39 -0800 [thread overview]
Message-ID: <5A3B7BF7.7060400@mentor.com> (raw)
In-Reply-To: <87ind0bkte.wl%kuninori.morimoto.gx@renesas.com>
Hi Morimoto-san
On 12/20/2017 11:39 PM, Kuninori Morimoto wrote:
> Hi Jiada
>
>> diff --git a/arch/arm64/boot/dts/renesas/salvator-common.dtsi
>> b/arch/arm64/boot/dts/renesas/salvator-common.dtsi
>> index a298df7..16f3214 100644
>> --- a/arch/arm64/boot/dts/renesas/salvator-common.dtsi
>> +++ b/arch/arm64/boot/dts/renesas/salvator-common.dtsi
>> @@ -94,14 +94,24 @@
>> };
>>
>> rsnd_ak4613: sound {
>> - compatible = "simple-audio-card";
>> + compatible = "simple-scu-audio-card";
>>
>> simple-audio-card,format = "left_j";
>> simple-audio-card,bitclock-master =<&sndcpu>;
>> simple-audio-card,frame-master =<&sndcpu>;
>>
>> - sndcpu: simple-audio-card,cpu {
>> - sound-dai =<&rcar_sound>;
>> + simple-audio-card,prefix = "ak4613";
>> + simple-audio-card,routing =
>> + "ak4613 Playback", "DAI0 Playback",
>> + "DAI0 Capture", "ak4613 Capture",
>> + "ak4613 Playback", "DAI1 Playback";
>> +
>> + sndcpu: simple-audio-card,cpu@0 {
>> + sound-dai =<&rcar_sound 0>;
>> + };
>> +
>> + simple-audio-card,cpu@1 {
>> + sound-dai =<&rcar_sound 1>;
>> };
>>
>> sndcodec: simple-audio-card,codec {
>> @@ -517,7 +527,7 @@
>> pinctrl-names = "default";
>>
>> /* Single DAI */
>> - #sound-dai-cells =<0>;
>> + #sound-dai-cells =<1>;
>>
>> /* audio_clkout0/1/2/3 */
>> #clock-cells =<1>;
>> @@ -549,6 +559,9 @@
>> playback =<&ssi0&src0&dvc0>;
>> capture =<&ssi1&src1&dvc1>;
>> };
>> + dai1 {
>> + playback =<&ssi0>;
>> + };
>> };
>> };
>>
>> playing with dai1 will have issue.
> I guess so because you are using strange settings...
> What do you want to do ?
this is just an example setting to reproduce the issue with current
mainline kernel,
We have enabled TDM Split and Ex-Split mode in our kernel,
and SSI(U)'s dma address diffs based on the BUSIF it is using,
so have a single dma data struct per rsnd_ssi will cause issue when
SSI isn't working with BUSIF0.
Do you have any suggestion to address this issue?
Thanks,
Jiada
> Best regards
> ---
> Kuninori Morimoto
next prev parent reply other threads:[~2017-12-21 9:16 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-21 4:58 [PATCH v1 1/1] ASoC: rsnd: ssi: Fix issue in dma data address assignment jiada_wang
2017-12-21 4:58 ` jiada_wang
2017-12-21 6:42 ` Kuninori Morimoto
2017-12-21 6:42 ` Kuninori Morimoto
2017-12-21 7:13 ` Jiada Wang
2017-12-21 7:13 ` Jiada Wang
2017-12-21 7:39 ` Kuninori Morimoto
2017-12-21 7:39 ` Kuninori Morimoto
2017-12-21 9:16 ` Jiada Wang [this message]
2017-12-21 9:16 ` Jiada Wang
2017-12-22 0:43 ` Kuninori Morimoto
2017-12-22 0:43 ` Kuninori Morimoto
2017-12-22 2:27 ` Jiada Wang
2017-12-22 2:27 ` Jiada Wang
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=5A3B7BF7.7060400@mentor.com \
--to=jiada_wang@mentor.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=kuninori.morimoto.gx@renesas.com \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=perex@perex.cz \
--cc=tiwai@suse.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.