mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 13:41:55 +00:00
ASoC: Intel: avs: rt5663: Validate machine board configuration
Allow for board to be used with TDMs. Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com> Link: https://lore.kernel.org/r/20231012083514.492626-16-amadeuszx.slawinski@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
cc7ea74497
commit
797611b5ce
@ -15,6 +15,7 @@
|
||||
#include <sound/soc.h>
|
||||
#include <sound/soc-acpi.h>
|
||||
#include "../../../codecs/rt5663.h"
|
||||
#include "../utils.h"
|
||||
|
||||
#define RT5663_CODEC_DAI "rt5663-aif"
|
||||
|
||||
@ -133,7 +134,7 @@ static const struct snd_soc_ops avs_rt5663_ops = {
|
||||
|
||||
|
||||
static int avs_create_dai_link(struct device *dev, const char *platform_name, int ssp_port,
|
||||
struct snd_soc_dai_link **dai_link)
|
||||
int tdm_slot, struct snd_soc_dai_link **dai_link)
|
||||
{
|
||||
struct snd_soc_dai_link_component *platform;
|
||||
struct snd_soc_dai_link *dl;
|
||||
@ -145,13 +146,15 @@ static int avs_create_dai_link(struct device *dev, const char *platform_name, in
|
||||
|
||||
platform->name = platform_name;
|
||||
|
||||
dl->name = devm_kasprintf(dev, GFP_KERNEL, "SSP%d-Codec", ssp_port);
|
||||
dl->name = devm_kasprintf(dev, GFP_KERNEL,
|
||||
AVS_STRING_FMT("SSP", "-Codec", ssp_port, tdm_slot));
|
||||
dl->cpus = devm_kzalloc(dev, sizeof(*dl->cpus), GFP_KERNEL);
|
||||
dl->codecs = devm_kzalloc(dev, sizeof(*dl->codecs), GFP_KERNEL);
|
||||
if (!dl->name || !dl->cpus || !dl->codecs)
|
||||
return -ENOMEM;
|
||||
|
||||
dl->cpus->dai_name = devm_kasprintf(dev, GFP_KERNEL, "SSP%d Pin", ssp_port);
|
||||
dl->cpus->dai_name = devm_kasprintf(dev, GFP_KERNEL,
|
||||
AVS_STRING_FMT("SSP", " Pin", ssp_port, tdm_slot));
|
||||
dl->codecs->name = devm_kasprintf(dev, GFP_KERNEL, "i2c-10EC5663:00");
|
||||
dl->codecs->dai_name = devm_kasprintf(dev, GFP_KERNEL, RT5663_CODEC_DAI);
|
||||
if (!dl->cpus->dai_name || !dl->codecs->name || !dl->codecs->dai_name)
|
||||
@ -200,13 +203,16 @@ static int avs_rt5663_probe(struct platform_device *pdev)
|
||||
struct rt5663_private *priv;
|
||||
struct device *dev = &pdev->dev;
|
||||
const char *pname;
|
||||
int ssp_port, ret;
|
||||
int ssp_port, tdm_slot, ret;
|
||||
|
||||
mach = dev_get_platdata(dev);
|
||||
pname = mach->mach_params.platform;
|
||||
ssp_port = __ffs(mach->mach_params.i2s_link_mask);
|
||||
|
||||
ret = avs_create_dai_link(dev, pname, ssp_port, &dai_link);
|
||||
ret = avs_mach_get_ssp_tdm(dev, mach, &ssp_port, &tdm_slot);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = avs_create_dai_link(dev, pname, ssp_port, tdm_slot, &dai_link);
|
||||
if (ret) {
|
||||
dev_err(dev, "Failed to create dai link: %d", ret);
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user