Commit 9398381a authored by Chunxu Li's avatar Chunxu Li Committed by Mark Brown

ASoC: mediatek: mt8186: add SOF support on mt8186-mt6366-da7219-max98357

1. Add widgets, routes and dai-links required by SOF

2. Only when adsp phandle could be retrieved from DTS, the SOF related part
of machine driver is executed.

3. Support dai-links could be specified from DTS, so that
we can disable AP side hardware controls when DSP SOF controls the same
audio FE.
Signed-off-by: default avatarChunxu Li <chunxu.li@mediatek.com>
Link: https://lore.kernel.org/r/20220818025113.17144-4-chunxu.li@mediatek.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 4be34e1b
...@@ -18,6 +18,8 @@ ...@@ -18,6 +18,8 @@
#include "../../codecs/da7219.h" #include "../../codecs/da7219.h"
#include "../../codecs/mt6358.h" #include "../../codecs/mt6358.h"
#include "../common/mtk-afe-platform-driver.h" #include "../common/mtk-afe-platform-driver.h"
#include "../common/mtk-dsp-sof-common.h"
#include "../common/mtk-soc-card.h"
#include "mt8186-afe-common.h" #include "mt8186-afe-common.h"
#include "mt8186-afe-clk.h" #include "mt8186-afe-clk.h"
#include "mt8186-afe-gpio.h" #include "mt8186-afe-gpio.h"
...@@ -26,6 +28,11 @@ ...@@ -26,6 +28,11 @@
#define DA7219_CODEC_DAI "da7219-hifi" #define DA7219_CODEC_DAI "da7219-hifi"
#define DA7219_DEV_NAME "da7219.5-001a" #define DA7219_DEV_NAME "da7219.5-001a"
#define SOF_DMA_DL1 "SOF_DMA_DL1"
#define SOF_DMA_DL2 "SOF_DMA_DL2"
#define SOF_DMA_UL1 "SOF_DMA_UL1"
#define SOF_DMA_UL2 "SOF_DMA_UL2"
struct mt8186_mt6366_da7219_max98357_priv { struct mt8186_mt6366_da7219_max98357_priv {
struct snd_soc_jack headset_jack, hdmi_jack; struct snd_soc_jack headset_jack, hdmi_jack;
}; };
...@@ -47,8 +54,9 @@ static struct snd_soc_codec_conf mt8186_mt6366_da7219_max98357_codec_conf[] = { ...@@ -47,8 +54,9 @@ static struct snd_soc_codec_conf mt8186_mt6366_da7219_max98357_codec_conf[] = {
static int mt8186_da7219_init(struct snd_soc_pcm_runtime *rtd) static int mt8186_da7219_init(struct snd_soc_pcm_runtime *rtd)
{ {
struct mt8186_mt6366_da7219_max98357_priv *priv = struct mtk_soc_card_data *soc_card_data =
snd_soc_card_get_drvdata(rtd->card); snd_soc_card_get_drvdata(rtd->card);
struct mt8186_mt6366_da7219_max98357_priv *priv = soc_card_data->mach_priv;
struct snd_soc_jack *jack = &priv->headset_jack; struct snd_soc_jack *jack = &priv->headset_jack;
struct snd_soc_component *cmpnt_codec = struct snd_soc_component *cmpnt_codec =
asoc_rtd_to_codec(rtd, 0)->component; asoc_rtd_to_codec(rtd, 0)->component;
...@@ -154,8 +162,9 @@ static int mt8186_mt6366_da7219_max98357_hdmi_init(struct snd_soc_pcm_runtime *r ...@@ -154,8 +162,9 @@ static int mt8186_mt6366_da7219_max98357_hdmi_init(struct snd_soc_pcm_runtime *r
{ {
struct snd_soc_component *cmpnt_codec = struct snd_soc_component *cmpnt_codec =
asoc_rtd_to_codec(rtd, 0)->component; asoc_rtd_to_codec(rtd, 0)->component;
struct mt8186_mt6366_da7219_max98357_priv *priv = struct mtk_soc_card_data *soc_card_data =
snd_soc_card_get_drvdata(rtd->card); snd_soc_card_get_drvdata(rtd->card);
struct mt8186_mt6366_da7219_max98357_priv *priv = soc_card_data->mach_priv;
int ret; int ret;
ret = snd_soc_card_jack_new(rtd->card, "HDMI Jack", SND_JACK_LINEOUT, &priv->hdmi_jack); ret = snd_soc_card_jack_new(rtd->card, "HDMI Jack", SND_JACK_LINEOUT, &priv->hdmi_jack);
...@@ -201,6 +210,24 @@ static int mt8186_anx7625_i2s_hw_params_fixup(struct snd_soc_pcm_runtime *rtd, ...@@ -201,6 +210,24 @@ static int mt8186_anx7625_i2s_hw_params_fixup(struct snd_soc_pcm_runtime *rtd,
return mt8186_hw_params_fixup(rtd, params, SNDRV_PCM_FORMAT_S24_LE); return mt8186_hw_params_fixup(rtd, params, SNDRV_PCM_FORMAT_S24_LE);
} }
/* fixup the BE DAI link to match any values from topology */
static int mt8186_sof_dai_link_fixup(struct snd_soc_pcm_runtime *rtd,
struct snd_pcm_hw_params *params)
{
int ret;
ret = mtk_sof_dai_link_fixup(rtd, params);
if (!strcmp(rtd->dai_link->name, "I2S0") ||
!strcmp(rtd->dai_link->name, "I2S1") ||
!strcmp(rtd->dai_link->name, "I2S2"))
mt8186_i2s_hw_params_fixup(rtd, params);
else if (!strcmp(rtd->dai_link->name, "I2S3"))
mt8186_anx7625_i2s_hw_params_fixup(rtd, params);
return ret;
}
static int mt8186_mt6366_da7219_max98357_playback_startup(struct snd_pcm_substream *substream) static int mt8186_mt6366_da7219_max98357_playback_startup(struct snd_pcm_substream *substream)
{ {
static const unsigned int rates[] = { static const unsigned int rates[] = {
...@@ -474,6 +501,33 @@ SND_SOC_DAILINK_DEFS(hostless_src_aaudio, ...@@ -474,6 +501,33 @@ SND_SOC_DAILINK_DEFS(hostless_src_aaudio,
DAILINK_COMP_ARRAY(COMP_CPU("Hostless SRC AAudio DAI")), DAILINK_COMP_ARRAY(COMP_CPU("Hostless SRC AAudio DAI")),
DAILINK_COMP_ARRAY(COMP_DUMMY()), DAILINK_COMP_ARRAY(COMP_DUMMY()),
DAILINK_COMP_ARRAY(COMP_EMPTY())); DAILINK_COMP_ARRAY(COMP_EMPTY()));
SND_SOC_DAILINK_DEFS(AFE_SOF_DL1,
DAILINK_COMP_ARRAY(COMP_CPU("SOF_DL1")),
DAILINK_COMP_ARRAY(COMP_DUMMY()),
DAILINK_COMP_ARRAY(COMP_EMPTY()));
SND_SOC_DAILINK_DEFS(AFE_SOF_DL2,
DAILINK_COMP_ARRAY(COMP_CPU("SOF_DL2")),
DAILINK_COMP_ARRAY(COMP_DUMMY()),
DAILINK_COMP_ARRAY(COMP_EMPTY()));
SND_SOC_DAILINK_DEFS(AFE_SOF_UL1,
DAILINK_COMP_ARRAY(COMP_CPU("SOF_UL1")),
DAILINK_COMP_ARRAY(COMP_DUMMY()),
DAILINK_COMP_ARRAY(COMP_EMPTY()));
SND_SOC_DAILINK_DEFS(AFE_SOF_UL2,
DAILINK_COMP_ARRAY(COMP_CPU("SOF_UL2")),
DAILINK_COMP_ARRAY(COMP_DUMMY()),
DAILINK_COMP_ARRAY(COMP_EMPTY()));
static const struct sof_conn_stream g_sof_conn_streams[] = {
{ "I2S1", "AFE_SOF_DL1", SOF_DMA_DL1, SNDRV_PCM_STREAM_PLAYBACK},
{ "I2S3", "AFE_SOF_DL2", SOF_DMA_DL2, SNDRV_PCM_STREAM_PLAYBACK},
{ "Primary Codec", "AFE_SOF_UL1", SOF_DMA_UL1, SNDRV_PCM_STREAM_CAPTURE},
{ "I2S0", "AFE_SOF_UL2", SOF_DMA_UL2, SNDRV_PCM_STREAM_CAPTURE},
};
static struct snd_soc_dai_link mt8186_mt6366_da7219_max98357_dai_links[] = { static struct snd_soc_dai_link mt8186_mt6366_da7219_max98357_dai_links[] = {
/* Front End DAI links */ /* Front End DAI links */
{ {
...@@ -848,12 +902,41 @@ static struct snd_soc_dai_link mt8186_mt6366_da7219_max98357_dai_links[] = { ...@@ -848,12 +902,41 @@ static struct snd_soc_dai_link mt8186_mt6366_da7219_max98357_dai_links[] = {
.ignore_suspend = 1, .ignore_suspend = 1,
SND_SOC_DAILINK_REG(hostless_ul6), SND_SOC_DAILINK_REG(hostless_ul6),
}, },
/* SOF BE */
{
.name = "AFE_SOF_DL1",
.no_pcm = 1,
.dpcm_playback = 1,
SND_SOC_DAILINK_REG(AFE_SOF_DL1),
},
{
.name = "AFE_SOF_DL2",
.no_pcm = 1,
.dpcm_playback = 1,
SND_SOC_DAILINK_REG(AFE_SOF_DL2),
},
{
.name = "AFE_SOF_UL1",
.no_pcm = 1,
.dpcm_capture = 1,
SND_SOC_DAILINK_REG(AFE_SOF_UL1),
},
{
.name = "AFE_SOF_UL2",
.no_pcm = 1,
.dpcm_capture = 1,
SND_SOC_DAILINK_REG(AFE_SOF_UL2),
},
}; };
static const struct snd_soc_dapm_widget static const struct snd_soc_dapm_widget
mt8186_mt6366_da7219_max98357_widgets[] = { mt8186_mt6366_da7219_max98357_widgets[] = {
SND_SOC_DAPM_SPK("Speakers", NULL), SND_SOC_DAPM_SPK("Speakers", NULL),
SND_SOC_DAPM_OUTPUT("HDMI1"), SND_SOC_DAPM_OUTPUT("HDMI1"),
SND_SOC_DAPM_MIXER(SOF_DMA_DL1, SND_SOC_NOPM, 0, 0, NULL, 0),
SND_SOC_DAPM_MIXER(SOF_DMA_DL2, SND_SOC_NOPM, 0, 0, NULL, 0),
SND_SOC_DAPM_MIXER(SOF_DMA_UL1, SND_SOC_NOPM, 0, 0, NULL, 0),
SND_SOC_DAPM_MIXER(SOF_DMA_UL2, SND_SOC_NOPM, 0, 0, NULL, 0),
}; };
static const struct snd_soc_dapm_route static const struct snd_soc_dapm_route
...@@ -862,6 +945,14 @@ mt8186_mt6366_da7219_max98357_routes[] = { ...@@ -862,6 +945,14 @@ mt8186_mt6366_da7219_max98357_routes[] = {
{ "Speakers", NULL, "Speaker"}, { "Speakers", NULL, "Speaker"},
/* HDMI */ /* HDMI */
{ "HDMI1", NULL, "TX"}, { "HDMI1", NULL, "TX"},
/* SOF Uplink */
{SOF_DMA_UL1, NULL, "UL1_CH1"},
{SOF_DMA_UL1, NULL, "UL1_CH2"},
{SOF_DMA_UL2, NULL, "UL2_CH1"},
{SOF_DMA_UL2, NULL, "UL2_CH2"},
/* SOF Downlink */
{"DSP_DL1_VIRT", NULL, SOF_DMA_DL1},
{"DSP_DL2_VIRT", NULL, SOF_DMA_DL2},
}; };
static const struct snd_kcontrol_new static const struct snd_kcontrol_new
...@@ -889,8 +980,10 @@ static int mt8186_mt6366_da7219_max98357_dev_probe(struct platform_device *pdev) ...@@ -889,8 +980,10 @@ static int mt8186_mt6366_da7219_max98357_dev_probe(struct platform_device *pdev)
{ {
struct snd_soc_card *card; struct snd_soc_card *card;
struct snd_soc_dai_link *dai_link; struct snd_soc_dai_link *dai_link;
struct mt8186_mt6366_da7219_max98357_priv *priv; struct mtk_soc_card_data *soc_card_data;
struct device_node *platform_node, *headset_codec, *playback_codec; struct mt8186_mt6366_da7219_max98357_priv *mach_priv;
struct device_node *platform_node, *headset_codec, *playback_codec, *adsp_node;
int sof_on = 0;
int ret, i; int ret, i;
card = (struct snd_soc_card *)device_get_match_data(&pdev->dev); card = (struct snd_soc_card *)device_get_match_data(&pdev->dev);
...@@ -898,11 +991,60 @@ static int mt8186_mt6366_da7219_max98357_dev_probe(struct platform_device *pdev) ...@@ -898,11 +991,60 @@ static int mt8186_mt6366_da7219_max98357_dev_probe(struct platform_device *pdev)
return -EINVAL; return -EINVAL;
card->dev = &pdev->dev; card->dev = &pdev->dev;
soc_card_data = devm_kzalloc(&pdev->dev, sizeof(*soc_card_data), GFP_KERNEL);
if (!soc_card_data)
return -ENOMEM;
mach_priv = devm_kzalloc(&pdev->dev, sizeof(*mach_priv), GFP_KERNEL);
if (!mach_priv)
return -ENOMEM;
soc_card_data->mach_priv = mach_priv;
adsp_node = of_parse_phandle(pdev->dev.of_node, "mediatek,adsp", 0);
if (adsp_node) {
struct mtk_sof_priv *sof_priv;
sof_priv = devm_kzalloc(&pdev->dev, sizeof(*sof_priv), GFP_KERNEL);
if (!sof_priv) {
ret = -ENOMEM;
goto err_adsp_node;
}
sof_priv->conn_streams = g_sof_conn_streams;
sof_priv->num_streams = ARRAY_SIZE(g_sof_conn_streams);
sof_priv->sof_dai_link_fixup = mt8186_sof_dai_link_fixup;
soc_card_data->sof_priv = sof_priv;
card->probe = mtk_sof_card_probe;
card->late_probe = mtk_sof_card_late_probe;
if (!card->topology_shortname_created) {
snprintf(card->topology_shortname, 32, "sof-%s", card->name);
card->topology_shortname_created = true;
}
card->name = card->topology_shortname;
sof_on = 1;
} else {
dev_info(&pdev->dev, "Probe without adsp\n");
}
if (of_property_read_bool(pdev->dev.of_node, "mediatek,dai-link")) {
ret = mtk_sof_dailink_parse_of(card, pdev->dev.of_node,
"mediatek,dai-link",
mt8186_mt6366_da7219_max98357_dai_links,
ARRAY_SIZE(mt8186_mt6366_da7219_max98357_dai_links));
if (ret) {
dev_dbg(&pdev->dev, "Parse dai-link fail\n");
goto err_adsp_node;
}
} else {
if (!sof_on)
card->num_links = ARRAY_SIZE(mt8186_mt6366_da7219_max98357_dai_links)
- ARRAY_SIZE(g_sof_conn_streams);
}
platform_node = of_parse_phandle(pdev->dev.of_node, "mediatek,platform", 0); platform_node = of_parse_phandle(pdev->dev.of_node, "mediatek,platform", 0);
if (!platform_node) { if (!platform_node) {
ret = -EINVAL; ret = -EINVAL;
dev_err_probe(&pdev->dev, ret, "Property 'platform' missing or invalid\n"); dev_err_probe(&pdev->dev, ret, "Property 'platform' missing or invalid\n");
return ret; goto err_platform_node;
} }
playback_codec = of_get_child_by_name(pdev->dev.of_node, "playback-codecs"); playback_codec = of_get_child_by_name(pdev->dev.of_node, "playback-codecs");
...@@ -941,17 +1083,14 @@ static int mt8186_mt6366_da7219_max98357_dev_probe(struct platform_device *pdev) ...@@ -941,17 +1083,14 @@ static int mt8186_mt6366_da7219_max98357_dev_probe(struct platform_device *pdev)
goto err_probe; goto err_probe;
} }
if (!dai_link->platforms->name) if (!strncmp(dai_link->name, "AFE_SOF", strlen("AFE_SOF")) && sof_on)
dai_link->platforms->of_node = platform_node; dai_link->platforms->of_node = adsp_node;
}
priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL); if (!dai_link->platforms->name && !dai_link->platforms->of_node)
if (!priv) { dai_link->platforms->of_node = platform_node;
ret = -ENOMEM;
goto err_probe;
} }
snd_soc_card_set_drvdata(card, priv); snd_soc_card_set_drvdata(card, soc_card_data);
ret = mt8186_afe_gpio_init(&pdev->dev); ret = mt8186_afe_gpio_init(&pdev->dev);
if (ret) { if (ret) {
...@@ -969,6 +1108,9 @@ static int mt8186_mt6366_da7219_max98357_dev_probe(struct platform_device *pdev) ...@@ -969,6 +1108,9 @@ static int mt8186_mt6366_da7219_max98357_dev_probe(struct platform_device *pdev)
of_node_put(playback_codec); of_node_put(playback_codec);
err_playback_codec: err_playback_codec:
of_node_put(platform_node); of_node_put(platform_node);
err_platform_node:
err_adsp_node:
of_node_put(adsp_node);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment