From: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
To: amergnat@baylibre.com, "Liam Girdwood" <lgirdwood@gmail.com>,
"Mark Brown" <broonie@kernel.org>,
"Rob Herring" <robh+dt@kernel.org>,
"Krzysztof Kozlowski" <krzysztof.kozlowski+dt@linaro.org>,
"Conor Dooley" <conor+dt@kernel.org>,
"Matthias Brugger" <matthias.bgg@gmail.com>,
"Lee Jones" <lee@kernel.org>, "Flora Fu" <flora.fu@mediatek.com>,
"Jaroslav Kysela" <perex@perex.cz>,
"Takashi Iwai" <tiwai@suse.com>,
"Sumit Semwal" <sumit.semwal@linaro.org>,
"Christian König" <christian.koenig@amd.com>,
"Catalin Marinas" <catalin.marinas@arm.com>,
"Will Deacon" <will@kernel.org>
Cc: linux-sound@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, linux-media@vger.kernel.org,
dri-devel@lists.freedesktop.org, linaro-mm-sig@lists.linaro.org,
Nicolas Belin <nbelin@baylibre.com>
Subject: Re: [PATCH 10/18] ASoc: mediatek: mt8365: Add a specific soundcard for EVK
Date: Mon, 26 Feb 2024 16:10:38 +0100 [thread overview]
Message-ID: <007956a2-605d-425e-9b3d-aef90c8e6821@collabora.com> (raw)
In-Reply-To: <20240226-audio-i350-v1-10-4fa1cea1667f@baylibre.com>
Il 26/02/24 15:01, amergnat@baylibre.com ha scritto:
> From: Nicolas Belin <nbelin@baylibre.com>
>
> Add a specific soundcard for mt8365-evk. It supports audio jack
> in/out, dmics, the amic and lineout.
>
> Signed-off-by: Nicolas Belin <nbelin@baylibre.com>
> Signed-off-by: Alexandre Mergnat <amergnat@baylibre.com>
> ---
> sound/soc/mediatek/mt8365/mt8365-mt6357.c | 379 ++++++++++++++++++++++++++++++
> 1 file changed, 379 insertions(+)
>
> diff --git a/sound/soc/mediatek/mt8365/mt8365-mt6357.c b/sound/soc/mediatek/mt8365/mt8365-mt6357.c
> new file mode 100644
> index 000000000000..5192b35458e6
> --- /dev/null
> +++ b/sound/soc/mediatek/mt8365/mt8365-mt6357.c
> @@ -0,0 +1,379 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/*
> + * Mediatek MT8365 Sound Card driver
> + *
> + * Copyright (c) 2024 MediaTek Inc.
> + * Authors: Nicolas Belin <nbelin@baylibre.com>
> + */
> +
> +#include <linux/module.h>
> +#include <linux/of_gpio.h>
> +#include <sound/soc.h>
> +#include <sound/pcm_params.h>
> +#include "mt8365-afe-common.h"
> +#include <linux/pinctrl/consumer.h>
> +#include "../common/mtk-soundcard-driver.h"
> +
> +enum PINCTRL_PIN_STATE {
Aren't those supposed to be AFE pin states?
Anyway, lower case name for enums please, and no zero initializer for the first
entry.
enum mt8365_pin_state {
PIN_STATE_DEFAULT,
....
};
> + PIN_STATE_DEFAULT = 0,
> + PIN_STATE_DMIC,
> + PIN_STATE_MISO_OFF,
> + PIN_STATE_MISO_ON,
> + PIN_STATE_MOSI_OFF,
> + PIN_STATE_MOSI_ON,
> + PIN_STATE_MAX
> +};
> +
> +static const char * const mt8365_mt6357_pin_str[PIN_STATE_MAX] = {
> + "aud_default",
> + "aud_dmic",
> + "aud_miso_off",
> + "aud_miso_on",
> + "aud_mosi_off",
> + "aud_mosi_on",
> +};
> +
> +struct mt8365_mt6357_priv {
> + struct pinctrl *pinctrl;
> + struct pinctrl_state *pin_states[PIN_STATE_MAX];
> +};
> +
> +struct mt8365_dai_link_prop {
> + char *name;
> + unsigned int link_id;
> +};
This structure is unused.
> +
> +enum {
> + /* FE */
> + DAI_LINK_DL1_PLAYBACK = 0,
> + DAI_LINK_DL2_PLAYBACK,
> + DAI_LINK_AWB_CAPTURE,
> + DAI_LINK_VUL_CAPTURE,
> + /* BE */
> + DAI_LINK_2ND_I2S_INTF,
> + DAI_LINK_DMIC,
> + DAI_LINK_INT_ADDA,
> + DAI_LINK_NUM
> +};
> +
> +static const struct snd_soc_dapm_widget mt8365_mt6357_widgets[] = {
> + SND_SOC_DAPM_OUTPUT("HDMI Out"),
> +};
> +
> +static const struct snd_soc_dapm_route mt8365_mt6357_routes[] = {
> + {"HDMI Out", NULL, "2ND I2S Playback"},
> + {"DMIC In", NULL, "MICBIAS0"},
> +};
> +
> +static int mt8365_mt6357_int_adda_startup(struct snd_pcm_substream *substream)
> +{
> + struct snd_soc_pcm_runtime *rtd = substream->private_data;
> + struct mt8365_mt6357_priv *priv = snd_soc_card_get_drvdata(rtd->card);
> + int ret = 0;
> +
> + if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
> + if (IS_ERR(priv->pin_states[PIN_STATE_MOSI_ON]))
> + return ret;
> +
> + ret = pinctrl_select_state(priv->pinctrl,
> + priv->pin_states[PIN_STATE_MOSI_ON]);
> + if (ret)
> + dev_err(rtd->card->dev, "%s failed to select state %d\n",
> + __func__, ret);
> + }
> +
> + if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
> + if (IS_ERR(priv->pin_states[PIN_STATE_MISO_ON]))
> + return ret;
> +
> + ret = pinctrl_select_state(priv->pinctrl,
> + priv->pin_states[PIN_STATE_MISO_ON]);
> + if (ret)
> + dev_err(rtd->card->dev, "%s failed to select state %d\n",
> + __func__, ret);
> + }
> +
> + return 0;
> +}
> +
> +static void mt8365_mt6357_int_adda_shutdown(struct snd_pcm_substream *substream)
> +{
> + struct snd_soc_pcm_runtime *rtd = substream->private_data;
> + struct mt8365_mt6357_priv *priv = snd_soc_card_get_drvdata(rtd->card);
> + int ret = 0;
> +
> + if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
> + if (IS_ERR(priv->pin_states[PIN_STATE_MOSI_OFF]))
> + return;
> +
> + ret = pinctrl_select_state(priv->pinctrl,
> + priv->pin_states[PIN_STATE_MOSI_OFF]);
> + if (ret)
> + dev_err(rtd->card->dev, "%s failed to select state %d\n",
> + __func__, ret);
> + }
> +
> + if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
> + if (IS_ERR(priv->pin_states[PIN_STATE_MISO_OFF]))
> + return;
> +
> + ret = pinctrl_select_state(priv->pinctrl,
> + priv->pin_states[PIN_STATE_MISO_OFF]);
> + if (ret)
> + dev_err(rtd->card->dev, "%s failed to select state %d\n",
> + __func__, ret);
> + }
> +
> +}
> +
> +static const struct snd_soc_ops mt8365_mt6357_int_adda_ops = {
> + .startup = mt8365_mt6357_int_adda_startup,
> + .shutdown = mt8365_mt6357_int_adda_shutdown,
> +};
> +
> +SND_SOC_DAILINK_DEFS(playback1,
> + DAILINK_COMP_ARRAY(COMP_CPU("DL1")),
> + DAILINK_COMP_ARRAY(COMP_DUMMY()),
> + DAILINK_COMP_ARRAY(COMP_EMPTY()));
> +SND_SOC_DAILINK_DEFS(playback2,
> + DAILINK_COMP_ARRAY(COMP_CPU("DL2")),
> + DAILINK_COMP_ARRAY(COMP_DUMMY()),
> + DAILINK_COMP_ARRAY(COMP_EMPTY()));
> +SND_SOC_DAILINK_DEFS(awb_capture,
> + DAILINK_COMP_ARRAY(COMP_CPU("AWB")),
> + DAILINK_COMP_ARRAY(COMP_DUMMY()),
> + DAILINK_COMP_ARRAY(COMP_EMPTY()));
> +SND_SOC_DAILINK_DEFS(vul,
> + DAILINK_COMP_ARRAY(COMP_CPU("VUL")),
> + DAILINK_COMP_ARRAY(COMP_DUMMY()),
> + DAILINK_COMP_ARRAY(COMP_EMPTY()));
> +
> +SND_SOC_DAILINK_DEFS(i2s3,
> + DAILINK_COMP_ARRAY(COMP_CPU("2ND I2S")),
> + DAILINK_COMP_ARRAY(COMP_DUMMY()),
> + DAILINK_COMP_ARRAY(COMP_EMPTY()));
> +SND_SOC_DAILINK_DEFS(dmic,
> + DAILINK_COMP_ARRAY(COMP_CPU("DMIC")),
> + DAILINK_COMP_ARRAY(COMP_DUMMY()),
> + DAILINK_COMP_ARRAY(COMP_EMPTY()));
> +SND_SOC_DAILINK_DEFS(primary_codec,
> + DAILINK_COMP_ARRAY(COMP_CPU("INT ADDA")),
> + DAILINK_COMP_ARRAY(COMP_CODEC("mt6357-sound", "mt6357-snd-codec-aif1")),
> + DAILINK_COMP_ARRAY(COMP_EMPTY()));
> +
> +/* Digital audio interface glue - connects codec <---> CPU */
> +static struct snd_soc_dai_link mt8365_mt6357_dais[] = {
> + /* Front End DAI links */
> + [DAI_LINK_DL1_PLAYBACK] = {
> + .name = "DL1_FE",
> + .stream_name = "MultiMedia1_PLayback",
> + .id = DAI_LINK_DL1_PLAYBACK,
> + .trigger = {
> + SND_SOC_DPCM_TRIGGER_POST,
> + SND_SOC_DPCM_TRIGGER_POST
> + },
> + .dynamic = 1,
> + .dpcm_playback = 1,
> + .dpcm_merged_rate = 1,
> + SND_SOC_DAILINK_REG(playback1),
> + },
> + [DAI_LINK_DL2_PLAYBACK] = {
> + .name = "DL2_FE",
> + .stream_name = "MultiMedia2_PLayback",
> + .id = DAI_LINK_DL2_PLAYBACK,
> + .trigger = {
> + SND_SOC_DPCM_TRIGGER_POST,
> + SND_SOC_DPCM_TRIGGER_POST
> + },
> + .dynamic = 1,
> + .dpcm_playback = 1,
> + .dpcm_merged_rate = 1,
> + SND_SOC_DAILINK_REG(playback2),
> + },
> + [DAI_LINK_AWB_CAPTURE] = {
> + .name = "AWB_FE",
> + .stream_name = "DL1_AWB_Record",
> + .id = DAI_LINK_AWB_CAPTURE,
> + .trigger = {
> + SND_SOC_DPCM_TRIGGER_POST,
> + SND_SOC_DPCM_TRIGGER_POST
> + },
> + .dynamic = 1,
> + .dpcm_capture = 1,
> + .dpcm_merged_rate = 1,
> + SND_SOC_DAILINK_REG(awb_capture),
> + },
> + [DAI_LINK_VUL_CAPTURE] = {
> + .name = "VUL_FE",
> + .stream_name = "MultiMedia1_Capture",
> + .id = DAI_LINK_VUL_CAPTURE,
> + .trigger = {
> + SND_SOC_DPCM_TRIGGER_POST,
> + SND_SOC_DPCM_TRIGGER_POST
> + },
> + .dynamic = 1,
> + .dpcm_capture = 1,
> + .dpcm_merged_rate = 1,
> + SND_SOC_DAILINK_REG(vul),
> + },
> + /* Back End DAI links */
> + [DAI_LINK_2ND_I2S_INTF] = {
> + .name = "2ND I2S BE",
> + .no_pcm = 1,
> + .id = DAI_LINK_2ND_I2S_INTF,
> + .dai_fmt = SND_SOC_DAIFMT_I2S |
> + SND_SOC_DAIFMT_NB_NF |
> + SND_SOC_DAIFMT_CBS_CFS,
> + .dpcm_playback = 1,
> + .dpcm_capture = 1,
> + SND_SOC_DAILINK_REG(i2s3),
> + },
> + [DAI_LINK_DMIC] = {
> + .name = "DMIC BE",
> + .no_pcm = 1,
> + .id = DAI_LINK_DMIC,
> + .dpcm_capture = 1,
> + SND_SOC_DAILINK_REG(dmic),
> + },
> + [DAI_LINK_INT_ADDA] = {
> + .name = "MTK Codec",
> + .no_pcm = 1,
> + .id = DAI_LINK_INT_ADDA,
> + .dpcm_playback = 1,
> + .dpcm_capture = 1,
> + .ops = &mt8365_mt6357_int_adda_ops,
> + SND_SOC_DAILINK_REG(primary_codec),
> + },
> +};
> +
> +static int pinctrl_setup(struct snd_soc_card *card,
> + struct mt8365_mt6357_priv *priv,
> + unsigned int pin_id)
> +{
> + int ret = 0;
> + /* if pin exist */
> + if (!IS_ERR(priv->pin_states[pin_id])) {
> + ret = pinctrl_select_state(priv->pinctrl,
> + priv->pin_states[pin_id]);
> + if (ret)
> + dev_err(card->dev,
> + "%s failed to select state %d\n",
> + __func__, ret);
> + }
> + return ret;
> +}
> +
> +static int mt8365_mt6357_gpio_probe(struct snd_soc_card *card)
> +{
> + struct mt8365_mt6357_priv *priv = snd_soc_card_get_drvdata(card);
> + int ret = 0;
> + int i;
> +
> + priv->pinctrl = devm_pinctrl_get(card->dev);
> + if (IS_ERR(priv->pinctrl)) {
> + ret = PTR_ERR(priv->pinctrl);
> + dev_err(card->dev, "%s devm_pinctrl_get failed %d\n",
> + __func__, ret);
> + return ret;
> + }
> +
> + for (i = 0 ; i < PIN_STATE_MAX ; i++) {
> + priv->pin_states[i] = pinctrl_lookup_state(priv->pinctrl,
> + mt8365_mt6357_pin_str[i]);
> + if (IS_ERR(priv->pin_states[i])) {
> + ret = PTR_ERR(priv->pin_states[i]);
> + dev_err(card->dev, "%s Can't find pin state %s %d\n",
> + __func__, mt8365_mt6357_pin_str[i], ret);
> + }
> + }
> +
> + /* Setup pins */
for (i = PIN_STATE_DEFAULT; i < PIN_STATE_MAX; i++) {
/* Are you sure about that?!?! */
if (IS_ERR(priv->pin_states[i]))
continue;
ret = pinctrl_select_state(...)
if (ret) {
/* Should you go back to default? */
pinctrl_select_state(card, priv, PIN_STATE_DEFAULT);
return dev_err_probe(card->dev, ret, "ARGH!\n"); /* :-) */
}
};
> + ret |= pinctrl_setup(card, priv, PIN_STATE_DEFAULT);
....because OR'in return values is a big no.
> + ret |= pinctrl_setup(card, priv, PIN_STATE_DMIC);
> + ret |= pinctrl_setup(card, priv, PIN_STATE_MISO_OFF);
> + ret |= pinctrl_setup(card, priv, PIN_STATE_MOSI_OFF);
> +
return 0;
> + return ret;
> +}
> +
> +static struct snd_soc_card mt8365_mt6357_card = {
> + .name = "mt8365-evk",
> + .owner = THIS_MODULE,
> + .dai_link = mt8365_mt6357_dais,
> + .num_links = ARRAY_SIZE(mt8365_mt6357_dais),
> + .dapm_widgets = mt8365_mt6357_widgets,
> + .num_dapm_widgets = ARRAY_SIZE(mt8365_mt6357_widgets),
> + .dapm_routes = mt8365_mt6357_routes,
> + .num_dapm_routes = ARRAY_SIZE(mt8365_mt6357_routes),
> +};
> +
> +static int mt8365_mt6357_dev_probe(struct platform_device *pdev)
> +{
> + struct snd_soc_card *card = &mt8365_mt6357_card;
> + struct device *dev = &pdev->dev;
> + struct device_node *platform_node;
> + struct mt8365_mt6357_priv *priv;
> + int i, ret;
> +
> + card->dev = dev;
> + ret = parse_dai_link_info(card);
> + if (ret)
> + goto err;
> +
> + platform_node = of_parse_phandle(dev->of_node, "mediatek,platform", 0);
> + if (!platform_node) {
> + dev_err(dev, "Property 'platform' missing or invalid\n");
> + return -EINVAL;
> + }
> +
> + for (i = 0; i < card->num_links; i++) {
> + if (mt8365_mt6357_dais[i].platforms->name)
> + continue;
> + mt8365_mt6357_dais[i].platforms->of_node = platform_node;
> + }
> +
> + priv = devm_kzalloc(dev, sizeof(struct mt8365_mt6357_priv),
> + GFP_KERNEL);
> + if (!priv) {
> + ret = -ENOMEM;
> + dev_err(dev, "%s allocate card private data fail %d\n",
> + __func__, ret);
> + return ret;
> + }
> +
> + snd_soc_card_set_drvdata(card, priv);
> +
> + mt8365_mt6357_gpio_probe(card);
P.S.: with my cleanup this function would not need any parse_dai_link_info() call,
nor phandle parsing, nor platform_node assignment, nor any call to
devm_snd_soc_register_card(), nor....
...practically you'd need to only allocate your priv (granted that you are not
moving the gpio_probe() to the AFE driver) and the actual gpio_probe() call.
But I'm not pressing to wait, anyway.
Cheers,
Angelo
next prev parent reply other threads:[~2024-02-26 15:10 UTC|newest]
Thread overview: 59+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-26 14:01 [PATCH 00/18] Add audio support for the MediaTek Genio 350-evk board Alexandre Mergnat
2024-02-26 14:01 ` [PATCH 01/18] ASoC: dt-bindings: mediatek,mt8365-afe: Add audio afe document Alexandre Mergnat
2024-02-27 9:01 ` Krzysztof Kozlowski
2024-02-27 15:18 ` Alexandre Mergnat
2024-02-28 7:28 ` Krzysztof Kozlowski
2024-02-28 9:57 ` Alexandre Mergnat
2024-02-28 10:25 ` AngeloGioacchino Del Regno
2024-02-28 11:48 ` Alexandre Mergnat
2024-02-28 12:09 ` Krzysztof Kozlowski
2024-02-26 14:01 ` [PATCH 02/18] ASoC: dt-bindings: mediatek,mt8365-mt6357: Add audio sound card document Alexandre Mergnat
2024-02-26 15:30 ` AngeloGioacchino Del Regno
2024-02-27 10:23 ` Alexandre Mergnat
2024-02-27 10:31 ` Krzysztof Kozlowski
2024-02-27 12:38 ` AngeloGioacchino Del Regno
2024-02-28 9:18 ` Alexandre Mergnat
2024-02-27 9:06 ` Krzysztof Kozlowski
2024-02-26 14:01 ` [PATCH 03/18] dt-bindings: mfd: mediatek: Add codec property for MT6357 PMIC Alexandre Mergnat
2024-02-27 9:08 ` Krzysztof Kozlowski
2024-02-26 14:01 ` [PATCH 04/18] ASoC: mediatek: mt8365: Add common header Alexandre Mergnat
2024-02-26 14:01 ` [PATCH 05/18] SoC: mediatek: mt8365: support audio clock control Alexandre Mergnat
2024-02-26 14:01 ` [PATCH 06/18] ASoC: mediatek: mt8365: Add I2S DAI support Alexandre Mergnat
2024-02-26 14:01 ` [PATCH 07/18] ASoC: mediatek: mt8365: Add ADDA " Alexandre Mergnat
2024-02-26 14:01 ` [PATCH 08/18] ASoC: mediatek: mt8365: Add DMIC " Alexandre Mergnat
2024-02-27 9:10 ` Krzysztof Kozlowski
2024-02-26 14:01 ` [PATCH 09/18] ASoC: mediatek: mt8365: Add PCM " Alexandre Mergnat
2024-02-26 14:01 ` [PATCH 10/18] ASoc: mediatek: mt8365: Add a specific soundcard for EVK amergnat
2024-02-26 15:10 ` AngeloGioacchino Del Regno [this message]
2024-02-27 8:43 ` Krzysztof Kozlowski
2024-02-26 14:01 ` [PATCH 11/18] ASoC: mediatek: mt8365: Add platform driver Alexandre Mergnat
2024-02-27 8:50 ` Krzysztof Kozlowski
2024-02-26 14:01 ` [PATCH 12/18] ASoC: codecs: mt6357: add MT6357 codec amergnat
2024-02-26 15:25 ` AngeloGioacchino Del Regno
2024-03-12 14:50 ` Alexandre Mergnat
2024-03-12 14:54 ` AngeloGioacchino Del Regno
2024-02-26 16:09 ` Mark Brown
2024-03-12 18:03 ` Alexandre Mergnat
2024-03-13 17:23 ` Mark Brown
2024-03-15 11:01 ` Alexandre Mergnat
2024-03-15 14:30 ` Mark Brown
2024-03-15 15:05 ` Alexandre Mergnat
2024-03-15 15:15 ` Mark Brown
2024-03-15 17:36 ` Alexandre Mergnat
2024-03-15 18:09 ` Mark Brown
2024-03-13 17:11 ` Alexandre Mergnat
2024-03-13 17:24 ` Mark Brown
2024-02-26 14:01 ` [PATCH 13/18] mfd: mt6397-core: register mt6357 sound codec amergnat
2024-02-26 15:26 ` AngeloGioacchino Del Regno
2024-02-29 17:45 ` (subset) " Lee Jones
2024-02-26 14:01 ` [PATCH 14/18] ASoC: mediatek: Add MT8365 support Alexandre Mergnat
2024-02-26 14:01 ` [PATCH 15/18] arm64: defconfig: enable mt8365 sound Alexandre Mergnat
2024-02-26 14:01 ` [PATCH 16/18] arm64: dts: mediatek: add mt6357 audio codec support Alexandre Mergnat
2024-02-26 14:01 ` [PATCH 17/18] arm64: dts: mediatek: add afe support for mt8365 SoC Alexandre Mergnat
2024-02-26 14:01 ` [PATCH 18/18] arm64: dts: mediatek: add audio support for mt8365-evk Alexandre Mergnat
2024-02-26 14:54 ` [PATCH 00/18] Add audio support for the MediaTek Genio 350-evk board AngeloGioacchino Del Regno
2024-03-28 10:09 ` Alexandre Mergnat
2024-02-27 15:06 ` Mark Brown
2024-03-12 8:58 ` Alexandre Mergnat
2024-03-15 14:38 ` Mark Brown
2024-03-15 15:28 ` Alexandre Mergnat
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=007956a2-605d-425e-9b3d-aef90c8e6821@collabora.com \
--to=angelogioacchino.delregno@collabora.com \
--cc=amergnat@baylibre.com \
--cc=broonie@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=christian.koenig@amd.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=flora.fu@mediatek.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=lee@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linaro-mm-sig@lists.linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-sound@vger.kernel.org \
--cc=matthias.bgg@gmail.com \
--cc=nbelin@baylibre.com \
--cc=perex@perex.cz \
--cc=robh+dt@kernel.org \
--cc=sumit.semwal@linaro.org \
--cc=tiwai@suse.com \
--cc=will@kernel.org \
/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).