From: "Trevor Wu (吳文良)" <Trevor.Wu@mediatek.com>
To: "robh+dt@kernel.org" <robh+dt@kernel.org>,
"broonie@kernel.org" <broonie@kernel.org>,
"conor+dt@kernel.org" <conor+dt@kernel.org>,
"tiwai@suse.com" <tiwai@suse.com>,
"lgirdwood@gmail.com" <lgirdwood@gmail.com>,
"krzysztof.kozlowski+dt@linaro.org"
<krzysztof.kozlowski+dt@linaro.org>,
"matthias.bgg@gmail.com" <matthias.bgg@gmail.com>,
"perex@perex.cz" <perex@perex.cz>,
"angelogioacchino.delregno@collabora.com"
<angelogioacchino.delregno@collabora.com>
Cc: "linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-mediatek@lists.infradead.org"
<linux-mediatek@lists.infradead.org>,
"alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>
Subject: Re: [PATCH 3/5] ASoC: mediatek: common: soundcard driver add dai_fmt support
Date: Wed, 17 May 2023 12:28:33 +0000 [thread overview]
Message-ID: <aadcbb7e04f05cebe6ab85a5fe0540418624c54b.camel@mediatek.com> (raw)
In-Reply-To: <daac5c71-e6d3-04b0-f628-c53a4e12640d@collabora.com>
On Wed, 2023-05-17 at 13:48 +0200, AngeloGioacchino Del Regno wrote:
> External email : Please do not click links or open attachments until
> you have verified the sender or the content.
>
>
> Il 17/05/23 13:15, Trevor Wu ha scritto:
> > There are two changes included in the patch.
> >
> > First, add set_dailink_daifmt() function, so dai_fmt can be updated
> > by
> > the configuration in dai-link sub node.
> >
> > Second, remove codec phandle from required property in dai-link sub
> > node.
> > For example, user possibly needs to update dai-format for all etdm
> > co-clock dai-links, but codec doesn't need to be specified in
> > capture
> > dai-link for a speaker amp.
> >
> > Signed-off-by: Trevor Wu <trevor.wu@mediatek.com>
> > ---
> > .../mediatek/common/mtk-soundcard-driver.c | 49
> > ++++++++++++++++++-
> > 1 file changed, 48 insertions(+), 1 deletion(-)
> >
> > diff --git a/sound/soc/mediatek/common/mtk-soundcard-driver.c
> > b/sound/soc/mediatek/common/mtk-soundcard-driver.c
> > index 738093451ccb..5e291092046b 100644
> > --- a/sound/soc/mediatek/common/mtk-soundcard-driver.c
> > +++ b/sound/soc/mediatek/common/mtk-soundcard-driver.c
> > @@ -22,7 +22,7 @@ static int set_card_codec_info(struct
> > snd_soc_card *card,
> >
> > codec_node = of_get_child_by_name(sub_node, "codec");
> > if (!codec_node)
> > - return -EINVAL;
> > + return 0;
> >
> > /* set card codec info */
> > ret = snd_soc_of_get_dai_link_codecs(dev, codec_node,
> > dai_link);
> > @@ -36,6 +36,47 @@ static int set_card_codec_info(struct
> > snd_soc_card *card,
> > return 0;
> > }
> >
> > +static int set_dailink_daifmt(struct snd_soc_card *card,
> > + struct device_node *sub_node,
> > + struct snd_soc_dai_link *dai_link)
> > +{
> > + unsigned int daifmt;
> > + const char *str;
> > + int ret;
> > + struct {
> > + char *name;
> > + unsigned int val;
> > + } of_clk_table[] = {
> > + { "cpu", SND_SOC_DAIFMT_CBC_CFC },
> > + { "codec", SND_SOC_DAIFMT_CBP_CFP },
> > + };
> > +
>
> This is an optional property and this function should not do anything
> if that
> property is not found, so....
>
> /*
> * Check "mediatek,clk-provider" to select the clock provider
> * in SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK area, if specified.
> */
> if (!of_property_read_string(sub_node, "mediatek,clk-
> provider", &str))
> return 0;
>
> ...this allows you to reduce indentation as well.
Hi Angelo,
Actually, there are two properties handled by the function.
"dai-format" is parsed at snd_soc_daifmt_parse_format(), and
"mediatek,clk-provider" is parsed by of_property_read_string().
I have to go through both properties in the function, so it can't
return directly if "mediatek,clk-provider" is not found.
>
> > + daifmt = snd_soc_daifmt_parse_format(sub_node, NULL);
> > + if (daifmt) {
> > + dai_link->dai_fmt &=
> > SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK;
> > + dai_link->dai_fmt |= daifmt;
> > + }
> > +
> > + /*
> > + * check "mediatek,clk-provider = xxx"
> > + * SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK area
> > + */
> > + ret = of_property_read_string(sub_node, "mediatek,clk-
> > provider", &str);
> > + if (ret == 0) {
> > + int i;
> > +
> > + for (i = 0; i < ARRAY_SIZE(of_clk_table); i++) {
> > + if (strcmp(str, of_clk_table[i].name) == 0) {
> > + dai_link->dai_fmt &=
> > ~SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK;
> > + dai_link->dai_fmt |=
> > of_clk_table[i].val;
> > + break;
> > + }
> > + }
> > + }
> > +
> > + return 0;
> > +}
> > +
> > int parse_dai_link_info(struct snd_soc_card *card)
> > {
> > struct device *dev = card->dev;
> > @@ -67,6 +108,12 @@ int parse_dai_link_info(struct snd_soc_card
> > *card)
> > of_node_put(sub_node);
> > return ret;
> > }
> > +
> > + ret = set_dailink_daifmt(card, sub_node, dai_link);
> > + if (ret < 0) {
>
> if (ret) {
> ...
> }
>
Currently, this function only returns 0, but I'm not sure if it will
return a positive value for some other usage in the future.
Because a negative value is always returned for an error and the
preceding rule is also "ret < 0", I prefer "ret < 0" here.
Thanks,
Trevor
> > + of_node_put(sub_node);
> > + return ret;
> > + }
>
> Regards,
> Angelo
>
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2023-05-17 12:42 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-17 11:15 [PATCH 0/5] ASoC: mt8188: add new board support Trevor Wu
2023-05-17 11:15 ` [PATCH 1/5] ASoC: mediatek: mt8188: separate ADDA playback dai from capture dai Trevor Wu
2023-05-17 11:40 ` AngeloGioacchino Del Regno
2023-05-17 12:13 ` Trevor Wu (吳文良)
2023-05-17 11:15 ` [PATCH 2/5] ASoC: mediatek: mt8188-mt6359: register hdmi/dp jack pins Trevor Wu
2023-05-17 11:31 ` AngeloGioacchino Del Regno
2023-05-17 12:10 ` Trevor Wu (吳文良)
2023-05-17 15:10 ` AngeloGioacchino Del Regno
2023-05-18 2:01 ` Trevor Wu (吳文良)
2023-05-17 11:15 ` [PATCH 3/5] ASoC: mediatek: common: soundcard driver add dai_fmt support Trevor Wu
2023-05-17 11:48 ` AngeloGioacchino Del Regno
2023-05-17 12:28 ` Trevor Wu (吳文良) [this message]
2023-05-17 11:15 ` [PATCH 4/5] ASoC: mediatek: mt8188-mt6359: support new board with nau88255 Trevor Wu
2023-05-17 11:54 ` AngeloGioacchino Del Regno
2023-05-17 12:41 ` Trevor Wu (吳文良)
2023-05-17 11:15 ` [PATCH 5/5] ASoC: dt-bindings: mediatek,mt8188-mt6359: update properties Trevor Wu
2023-05-17 14:43 ` Krzysztof Kozlowski
2023-05-18 2:37 ` Trevor Wu (吳文良)
2023-05-18 7:36 ` Krzysztof Kozlowski
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=aadcbb7e04f05cebe6ab85a5fe0540418624c54b.camel@mediatek.com \
--to=trevor.wu@mediatek.com \
--cc=alsa-devel@alsa-project.org \
--cc=angelogioacchino.delregno@collabora.com \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=perex@perex.cz \
--cc=robh+dt@kernel.org \
--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 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).