2018-07-02 09:30:28 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//
|
|
|
|
// ASoC simple sound card support
|
|
|
|
//
|
|
|
|
// Copyright (C) 2012 Renesas Solutions Corp.
|
|
|
|
// Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
|
|
|
2013-11-20 10:25:02 +04:00
|
|
|
#include <linux/clk.h>
|
2014-02-14 05:34:36 +04:00
|
|
|
#include <linux/device.h>
|
2012-04-09 08:17:50 +04:00
|
|
|
#include <linux/module.h>
|
2013-11-20 10:25:02 +04:00
|
|
|
#include <linux/of.h>
|
2012-04-09 08:17:50 +04:00
|
|
|
#include <linux/platform_device.h>
|
2014-01-14 08:35:32 +04:00
|
|
|
#include <linux/string.h>
|
2012-04-09 08:17:50 +04:00
|
|
|
#include <sound/simple_card.h>
|
2014-02-14 05:34:36 +04:00
|
|
|
#include <sound/soc-dai.h>
|
|
|
|
#include <sound/soc.h>
|
2012-04-09 08:17:50 +04:00
|
|
|
|
2018-12-20 04:46:53 +03:00
|
|
|
struct link_info {
|
|
|
|
int dais; /* number of dai */
|
|
|
|
int link; /* number of link */
|
|
|
|
int conf; /* number of codec_conf */
|
|
|
|
int cpu; /* turn for CPU / Codec */
|
|
|
|
};
|
|
|
|
|
2016-08-08 09:02:07 +03:00
|
|
|
#define DAI "sound-dai"
|
|
|
|
#define CELL "#sound-dai-cells"
|
2016-05-31 11:59:01 +03:00
|
|
|
#define PREFIX "simple-audio-card,"
|
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
static const struct snd_soc_ops simple_ops = {
|
2019-03-20 07:55:14 +03:00
|
|
|
.startup = asoc_simple_startup,
|
2019-03-20 07:55:27 +03:00
|
|
|
.shutdown = asoc_simple_shutdown,
|
2019-03-20 07:55:39 +03:00
|
|
|
.hw_params = asoc_simple_hw_params,
|
2014-05-22 19:31:49 +04:00
|
|
|
};
|
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
static int simple_dai_init(struct snd_soc_pcm_runtime *rtd)
|
2012-04-09 08:17:50 +04:00
|
|
|
{
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
struct asoc_simple_priv *priv = snd_soc_card_get_drvdata(rtd->card);
|
2018-12-04 11:19:43 +03:00
|
|
|
struct simple_dai_props *dai_props = simple_priv_to_props(priv, rtd->num);
|
2015-11-18 10:34:11 +03:00
|
|
|
int ret;
|
2012-04-09 08:17:50 +04:00
|
|
|
|
2018-12-04 11:19:43 +03:00
|
|
|
ret = asoc_simple_card_init_dai(rtd->codec_dai,
|
|
|
|
dai_props->codec_dai);
|
2013-01-11 04:49:11 +04:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2012-04-09 08:17:50 +04:00
|
|
|
|
2018-12-04 11:19:43 +03:00
|
|
|
ret = asoc_simple_card_init_dai(rtd->cpu_dai,
|
|
|
|
dai_props->cpu_dai);
|
2013-01-11 04:49:11 +04:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2012-04-09 08:17:50 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
static int simple_be_hw_params_fixup(struct snd_soc_pcm_runtime *rtd,
|
|
|
|
struct snd_pcm_hw_params *params)
|
2018-12-14 05:35:10 +03:00
|
|
|
{
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
struct asoc_simple_priv *priv = snd_soc_card_get_drvdata(rtd->card);
|
2018-12-14 05:35:10 +03:00
|
|
|
struct simple_dai_props *dai_props = simple_priv_to_props(priv, rtd->num);
|
|
|
|
|
|
|
|
asoc_simple_card_convert_fixup(&dai_props->adata, params);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-03-18 07:50:08 +03:00
|
|
|
static void simple_parse_convert(struct device *dev,
|
|
|
|
struct device_node *np,
|
|
|
|
struct asoc_simple_card_data *adata)
|
2018-12-20 04:46:42 +03:00
|
|
|
{
|
|
|
|
struct device_node *top = dev->of_node;
|
|
|
|
struct device_node *node = of_get_parent(np);
|
|
|
|
|
|
|
|
asoc_simple_card_parse_convert(dev, top, PREFIX, adata);
|
|
|
|
asoc_simple_card_parse_convert(dev, node, PREFIX, adata);
|
|
|
|
asoc_simple_card_parse_convert(dev, node, NULL, adata);
|
|
|
|
asoc_simple_card_parse_convert(dev, np, NULL, adata);
|
|
|
|
|
|
|
|
of_node_put(node);
|
|
|
|
}
|
|
|
|
|
2019-03-18 07:50:17 +03:00
|
|
|
static void simple_parse_mclk_fs(struct device_node *top,
|
|
|
|
struct device_node *cpu,
|
|
|
|
struct device_node *codec,
|
|
|
|
struct simple_dai_props *props,
|
|
|
|
char *prefix)
|
|
|
|
{
|
|
|
|
struct device_node *node = of_get_parent(cpu);
|
|
|
|
char prop[128];
|
|
|
|
|
|
|
|
snprintf(prop, sizeof(prop), "%smclk-fs", PREFIX);
|
|
|
|
of_property_read_u32(top, prop, &props->mclk_fs);
|
|
|
|
|
|
|
|
snprintf(prop, sizeof(prop), "%smclk-fs", prefix);
|
|
|
|
of_property_read_u32(node, prop, &props->mclk_fs);
|
|
|
|
of_property_read_u32(cpu, prop, &props->mclk_fs);
|
|
|
|
of_property_read_u32(codec, prop, &props->mclk_fs);
|
|
|
|
|
|
|
|
of_node_put(node);
|
|
|
|
}
|
|
|
|
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
static int simple_dai_link_of_dpcm(struct asoc_simple_priv *priv,
|
2018-12-20 04:47:34 +03:00
|
|
|
struct device_node *np,
|
|
|
|
struct device_node *codec,
|
|
|
|
struct link_info *li,
|
|
|
|
bool is_top)
|
2018-12-14 05:35:10 +03:00
|
|
|
{
|
|
|
|
struct device *dev = simple_priv_to_dev(priv);
|
2018-12-20 04:46:53 +03:00
|
|
|
struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, li->link);
|
|
|
|
struct simple_dai_props *dai_props = simple_priv_to_props(priv, li->link);
|
2018-12-14 05:35:10 +03:00
|
|
|
struct asoc_simple_dai *dai;
|
2018-12-14 05:35:24 +03:00
|
|
|
struct snd_soc_dai_link_component *codecs = dai_link->codecs;
|
2018-12-20 04:47:23 +03:00
|
|
|
struct device_node *top = dev->of_node;
|
|
|
|
struct device_node *node = of_get_parent(np);
|
2018-12-14 05:35:10 +03:00
|
|
|
char *prefix = "";
|
|
|
|
int ret;
|
|
|
|
|
2018-12-20 04:47:23 +03:00
|
|
|
/*
|
|
|
|
* |CPU |Codec : turn
|
|
|
|
* CPU |Pass |return
|
|
|
|
* Codec |return|Pass
|
|
|
|
* np
|
|
|
|
*/
|
|
|
|
if (li->cpu == (np == codec))
|
|
|
|
return 0;
|
|
|
|
|
2018-12-20 04:46:53 +03:00
|
|
|
dev_dbg(dev, "link_of DPCM (%pOF)\n", np);
|
|
|
|
|
|
|
|
li->link++;
|
|
|
|
|
2018-12-20 04:47:23 +03:00
|
|
|
of_node_put(node);
|
|
|
|
|
2018-12-14 05:35:10 +03:00
|
|
|
/* For single DAI link & old style of DT node */
|
2018-12-20 04:47:23 +03:00
|
|
|
if (is_top)
|
2018-12-14 05:35:10 +03:00
|
|
|
prefix = PREFIX;
|
|
|
|
|
2018-12-20 04:47:23 +03:00
|
|
|
if (li->cpu) {
|
2018-12-14 05:35:10 +03:00
|
|
|
int is_single_links = 0;
|
|
|
|
|
|
|
|
/* BE is dummy */
|
|
|
|
codecs->of_node = NULL;
|
|
|
|
codecs->dai_name = "snd-soc-dummy-dai";
|
|
|
|
codecs->name = "snd-soc-dummy";
|
|
|
|
|
|
|
|
/* FE settings */
|
|
|
|
dai_link->dynamic = 1;
|
|
|
|
dai_link->dpcm_merged_format = 1;
|
|
|
|
|
|
|
|
dai =
|
2018-12-20 04:46:53 +03:00
|
|
|
dai_props->cpu_dai = &priv->dais[li->dais++];
|
2018-12-14 05:35:10 +03:00
|
|
|
|
|
|
|
ret = asoc_simple_card_parse_cpu(np, dai_link, DAI, CELL,
|
|
|
|
&is_single_links);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = asoc_simple_card_parse_clk_cpu(dev, np, dai_link, dai);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = asoc_simple_card_set_dailink_name(dev, dai_link,
|
|
|
|
"fe.%s",
|
|
|
|
dai_link->cpu_dai_name);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
asoc_simple_card_canonicalize_cpu(dai_link, is_single_links);
|
|
|
|
} else {
|
|
|
|
struct snd_soc_codec_conf *cconf;
|
|
|
|
|
|
|
|
/* FE is dummy */
|
|
|
|
dai_link->cpu_of_node = NULL;
|
|
|
|
dai_link->cpu_dai_name = "snd-soc-dummy-dai";
|
|
|
|
dai_link->cpu_name = "snd-soc-dummy";
|
|
|
|
|
|
|
|
/* BE settings */
|
|
|
|
dai_link->no_pcm = 1;
|
2018-12-20 04:47:34 +03:00
|
|
|
dai_link->be_hw_params_fixup = simple_be_hw_params_fixup;
|
2018-12-14 05:35:10 +03:00
|
|
|
|
|
|
|
dai =
|
2018-12-20 04:46:53 +03:00
|
|
|
dai_props->codec_dai = &priv->dais[li->dais++];
|
2018-12-14 05:35:10 +03:00
|
|
|
|
|
|
|
cconf =
|
2018-12-20 04:46:53 +03:00
|
|
|
dai_props->codec_conf = &priv->codec_conf[li->conf++];
|
2018-12-14 05:35:10 +03:00
|
|
|
|
|
|
|
ret = asoc_simple_card_parse_codec(np, dai_link, DAI, CELL);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = asoc_simple_card_parse_clk_codec(dev, np, dai_link, dai);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = asoc_simple_card_set_dailink_name(dev, dai_link,
|
|
|
|
"be.%s",
|
2018-12-14 05:35:24 +03:00
|
|
|
codecs->dai_name);
|
2018-12-14 05:35:10 +03:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* check "prefix" from top node */
|
2018-12-14 05:35:24 +03:00
|
|
|
snd_soc_of_parse_node_prefix(top, cconf, codecs->of_node,
|
2018-12-14 05:35:10 +03:00
|
|
|
PREFIX "prefix");
|
2018-12-14 05:35:24 +03:00
|
|
|
snd_soc_of_parse_node_prefix(node, cconf, codecs->of_node,
|
|
|
|
"prefix");
|
|
|
|
snd_soc_of_parse_node_prefix(np, cconf, codecs->of_node,
|
|
|
|
"prefix");
|
2018-12-14 05:35:10 +03:00
|
|
|
}
|
|
|
|
|
2019-03-18 07:50:08 +03:00
|
|
|
simple_parse_convert(dev, np, &dai_props->adata);
|
2019-03-18 07:50:17 +03:00
|
|
|
simple_parse_mclk_fs(top, np, codec, dai_props, prefix);
|
2018-12-14 05:35:10 +03:00
|
|
|
|
2019-01-21 10:40:59 +03:00
|
|
|
asoc_simple_card_canonicalize_platform(dai_link);
|
|
|
|
|
2018-12-14 05:35:10 +03:00
|
|
|
ret = asoc_simple_card_of_parse_tdm(np, dai);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = asoc_simple_card_parse_daifmt(dev, node, codec,
|
|
|
|
prefix, &dai_link->dai_fmt);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
dai_link->dpcm_playback = 1;
|
|
|
|
dai_link->dpcm_capture = 1;
|
2018-12-20 04:47:34 +03:00
|
|
|
dai_link->ops = &simple_ops;
|
|
|
|
dai_link->init = simple_dai_init;
|
2018-12-14 05:35:10 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
static int simple_dai_link_of(struct asoc_simple_priv *priv,
|
2018-12-20 04:47:34 +03:00
|
|
|
struct device_node *np,
|
|
|
|
struct device_node *codec,
|
|
|
|
struct link_info *li,
|
|
|
|
bool is_top)
|
2014-03-20 14:49:55 +04:00
|
|
|
{
|
2014-09-10 08:37:57 +04:00
|
|
|
struct device *dev = simple_priv_to_dev(priv);
|
2018-12-20 04:46:53 +03:00
|
|
|
struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, li->link);
|
|
|
|
struct simple_dai_props *dai_props = simple_priv_to_props(priv, li->link);
|
2018-12-04 11:19:43 +03:00
|
|
|
struct asoc_simple_dai *cpu_dai;
|
|
|
|
struct asoc_simple_dai *codec_dai;
|
2018-12-20 04:47:23 +03:00
|
|
|
struct device_node *top = dev->of_node;
|
2014-10-28 04:04:52 +03:00
|
|
|
struct device_node *cpu = NULL;
|
2018-12-20 04:47:23 +03:00
|
|
|
struct device_node *node = NULL;
|
2015-04-29 13:11:07 +03:00
|
|
|
struct device_node *plat = NULL;
|
2014-03-24 14:15:25 +04:00
|
|
|
char prop[128];
|
|
|
|
char *prefix = "";
|
2016-08-08 09:02:07 +03:00
|
|
|
int ret, single_cpu;
|
2014-03-20 14:49:55 +04:00
|
|
|
|
2018-12-20 04:47:23 +03:00
|
|
|
/*
|
|
|
|
* |CPU |Codec : turn
|
|
|
|
* CPU |Pass |return
|
|
|
|
* Codec |return|return
|
|
|
|
* np
|
|
|
|
*/
|
|
|
|
if (!li->cpu || np == codec)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
cpu = np;
|
|
|
|
node = of_get_parent(np);
|
2018-12-20 04:46:53 +03:00
|
|
|
li->link++;
|
|
|
|
|
|
|
|
dev_dbg(dev, "link_of (%pOF)\n", node);
|
|
|
|
|
2014-09-03 06:23:39 +04:00
|
|
|
/* For single DAI link & old style of DT node */
|
2018-12-20 04:47:23 +03:00
|
|
|
if (is_top)
|
2016-05-31 11:59:01 +03:00
|
|
|
prefix = PREFIX;
|
2014-03-24 14:15:25 +04:00
|
|
|
|
2015-04-29 13:11:07 +03:00
|
|
|
snprintf(prop, sizeof(prop), "%splat", prefix);
|
|
|
|
plat = of_get_child_by_name(node, prop);
|
|
|
|
|
2018-12-04 11:19:43 +03:00
|
|
|
cpu_dai =
|
2018-12-20 04:46:53 +03:00
|
|
|
dai_props->cpu_dai = &priv->dais[li->dais++];
|
2018-12-04 11:19:43 +03:00
|
|
|
codec_dai =
|
2018-12-20 04:46:53 +03:00
|
|
|
dai_props->codec_dai = &priv->dais[li->dais++];
|
2018-12-04 11:19:43 +03:00
|
|
|
|
2016-06-30 09:02:46 +03:00
|
|
|
ret = asoc_simple_card_parse_daifmt(dev, node, codec,
|
|
|
|
prefix, &dai_link->dai_fmt);
|
2014-10-28 04:04:52 +03:00
|
|
|
if (ret < 0)
|
|
|
|
goto dai_link_of_err;
|
|
|
|
|
2019-03-18 07:50:17 +03:00
|
|
|
simple_parse_mclk_fs(top, cpu, codec, dai_props, prefix);
|
2015-06-05 11:19:05 +03:00
|
|
|
|
2016-08-08 09:02:07 +03:00
|
|
|
ret = asoc_simple_card_parse_cpu(cpu, dai_link,
|
|
|
|
DAI, CELL, &single_cpu);
|
|
|
|
if (ret < 0)
|
|
|
|
goto dai_link_of_err;
|
|
|
|
|
|
|
|
ret = asoc_simple_card_parse_codec(codec, dai_link, DAI, CELL);
|
|
|
|
if (ret < 0)
|
|
|
|
goto dai_link_of_err;
|
|
|
|
|
|
|
|
ret = asoc_simple_card_parse_platform(plat, dai_link, DAI, CELL);
|
|
|
|
if (ret < 0)
|
|
|
|
goto dai_link_of_err;
|
|
|
|
|
2017-06-14 03:34:53 +03:00
|
|
|
ret = asoc_simple_card_of_parse_tdm(cpu, cpu_dai);
|
2014-03-24 14:15:25 +04:00
|
|
|
if (ret < 0)
|
|
|
|
goto dai_link_of_err;
|
|
|
|
|
2017-06-14 03:34:53 +03:00
|
|
|
ret = asoc_simple_card_of_parse_tdm(codec, codec_dai);
|
2016-05-20 12:40:41 +03:00
|
|
|
if (ret < 0)
|
|
|
|
goto dai_link_of_err;
|
|
|
|
|
2017-01-23 10:29:42 +03:00
|
|
|
ret = asoc_simple_card_parse_clk_cpu(dev, cpu, dai_link, cpu_dai);
|
2016-07-19 05:53:13 +03:00
|
|
|
if (ret < 0)
|
|
|
|
goto dai_link_of_err;
|
|
|
|
|
2017-01-23 10:29:42 +03:00
|
|
|
ret = asoc_simple_card_parse_clk_codec(dev, codec, dai_link, codec_dai);
|
2016-07-19 05:53:13 +03:00
|
|
|
if (ret < 0)
|
|
|
|
goto dai_link_of_err;
|
|
|
|
|
2016-07-12 02:57:34 +03:00
|
|
|
ret = asoc_simple_card_set_dailink_name(dev, dai_link,
|
|
|
|
"%s-%s",
|
|
|
|
dai_link->cpu_dai_name,
|
2018-08-31 06:08:24 +03:00
|
|
|
dai_link->codecs->dai_name);
|
2016-07-12 02:57:34 +03:00
|
|
|
if (ret < 0)
|
2015-03-03 16:29:00 +03:00
|
|
|
goto dai_link_of_err;
|
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
dai_link->ops = &simple_ops;
|
|
|
|
dai_link->init = simple_dai_init;
|
2014-03-24 14:15:25 +04:00
|
|
|
|
2016-08-10 05:20:43 +03:00
|
|
|
asoc_simple_card_canonicalize_cpu(dai_link, single_cpu);
|
2019-01-21 10:40:59 +03:00
|
|
|
asoc_simple_card_canonicalize_platform(dai_link);
|
2014-08-28 07:08:06 +04:00
|
|
|
|
2014-03-24 14:15:25 +04:00
|
|
|
dai_link_of_err:
|
2019-02-19 18:46:48 +03:00
|
|
|
of_node_put(plat);
|
2018-12-20 04:47:23 +03:00
|
|
|
of_node_put(node);
|
2014-10-28 04:04:52 +03:00
|
|
|
|
2014-03-20 14:49:55 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
static int simple_for_each_link(struct asoc_simple_priv *priv,
|
2018-12-20 04:47:28 +03:00
|
|
|
struct link_info *li,
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
int (*func_noml)(struct asoc_simple_priv *priv,
|
2018-12-20 04:47:28 +03:00
|
|
|
struct device_node *np,
|
|
|
|
struct device_node *codec,
|
|
|
|
struct link_info *li, bool is_top),
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
int (*func_dpcm)(struct asoc_simple_priv *priv,
|
2018-12-20 04:47:28 +03:00
|
|
|
struct device_node *np,
|
|
|
|
struct device_node *codec,
|
|
|
|
struct link_info *li, bool is_top))
|
|
|
|
{
|
|
|
|
struct device *dev = simple_priv_to_dev(priv);
|
|
|
|
struct device_node *top = dev->of_node;
|
|
|
|
struct device_node *node;
|
|
|
|
bool is_top = 0;
|
2019-02-19 18:46:49 +03:00
|
|
|
int ret = 0;
|
2018-12-20 04:47:28 +03:00
|
|
|
|
|
|
|
/* Check if it has dai-link */
|
|
|
|
node = of_get_child_by_name(top, PREFIX "dai-link");
|
|
|
|
if (!node) {
|
2019-02-16 13:09:42 +03:00
|
|
|
node = of_node_get(top);
|
2018-12-20 04:47:28 +03:00
|
|
|
is_top = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* loop for all dai-link */
|
|
|
|
do {
|
|
|
|
struct asoc_simple_card_data adata;
|
|
|
|
struct device_node *codec;
|
|
|
|
struct device_node *np;
|
|
|
|
int num = of_get_child_count(node);
|
|
|
|
|
|
|
|
/* get codec */
|
|
|
|
codec = of_get_child_by_name(node, is_top ?
|
|
|
|
PREFIX "codec" : "codec");
|
2019-02-19 18:46:49 +03:00
|
|
|
if (!codec) {
|
|
|
|
ret = -ENODEV;
|
|
|
|
goto error;
|
|
|
|
}
|
2018-12-20 04:47:28 +03:00
|
|
|
|
|
|
|
of_node_put(codec);
|
|
|
|
|
|
|
|
/* get convert-xxx property */
|
|
|
|
memset(&adata, 0, sizeof(adata));
|
|
|
|
for_each_child_of_node(node, np)
|
2019-03-18 07:50:08 +03:00
|
|
|
simple_parse_convert(dev, np, &adata);
|
2018-12-20 04:47:28 +03:00
|
|
|
|
|
|
|
/* loop for all CPU/Codec node */
|
|
|
|
for_each_child_of_node(node, np) {
|
|
|
|
/*
|
|
|
|
* It is DPCM
|
|
|
|
* if it has many CPUs,
|
|
|
|
* or has convert-xxx property
|
|
|
|
*/
|
|
|
|
if (num > 2 ||
|
|
|
|
adata.convert_rate || adata.convert_channels)
|
|
|
|
ret = func_dpcm(priv, np, codec, li, is_top);
|
|
|
|
/* else normal sound */
|
|
|
|
else
|
|
|
|
ret = func_noml(priv, np, codec, li, is_top);
|
|
|
|
|
2019-02-19 18:46:49 +03:00
|
|
|
if (ret < 0) {
|
|
|
|
of_node_put(np);
|
|
|
|
goto error;
|
|
|
|
}
|
2018-12-20 04:47:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
node = of_get_next_child(top, node);
|
|
|
|
} while (!is_top && node);
|
|
|
|
|
2019-02-19 18:46:49 +03:00
|
|
|
error:
|
|
|
|
of_node_put(node);
|
|
|
|
return ret;
|
2018-12-20 04:47:28 +03:00
|
|
|
}
|
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
static int simple_parse_aux_devs(struct device_node *node,
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
struct asoc_simple_priv *priv)
|
2016-09-26 12:56:51 +03:00
|
|
|
{
|
|
|
|
struct device *dev = simple_priv_to_dev(priv);
|
|
|
|
struct device_node *aux_node;
|
2017-03-15 07:44:00 +03:00
|
|
|
struct snd_soc_card *card = simple_priv_to_card(priv);
|
2016-09-26 12:56:51 +03:00
|
|
|
int i, n, len;
|
|
|
|
|
|
|
|
if (!of_find_property(node, PREFIX "aux-devs", &len))
|
|
|
|
return 0; /* Ok to have no aux-devs */
|
|
|
|
|
|
|
|
n = len / sizeof(__be32);
|
|
|
|
if (n <= 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
treewide: devm_kzalloc() -> devm_kcalloc()
The devm_kzalloc() function has a 2-factor argument form, devm_kcalloc().
This patch replaces cases of:
devm_kzalloc(handle, a * b, gfp)
with:
devm_kcalloc(handle, a * b, gfp)
as well as handling cases of:
devm_kzalloc(handle, a * b * c, gfp)
with:
devm_kzalloc(handle, array3_size(a, b, c), gfp)
as it's slightly less ugly than:
devm_kcalloc(handle, array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
devm_kzalloc(handle, 4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
Some manual whitespace fixes were needed in this patch, as Coccinelle
really liked to write "=devm_kcalloc..." instead of "= devm_kcalloc...".
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
expression HANDLE;
type TYPE;
expression THING, E;
@@
(
devm_kzalloc(HANDLE,
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
devm_kzalloc(HANDLE,
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression HANDLE;
expression COUNT;
typedef u8;
typedef __u8;
@@
(
devm_kzalloc(HANDLE,
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(char) * COUNT
+ COUNT
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
expression HANDLE;
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
expression HANDLE;
identifier SIZE, COUNT;
@@
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression HANDLE;
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
devm_kzalloc(HANDLE,
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression HANDLE;
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
devm_kzalloc(HANDLE,
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
expression HANDLE;
identifier STRIDE, SIZE, COUNT;
@@
(
devm_kzalloc(HANDLE,
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
devm_kzalloc(HANDLE,
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression HANDLE;
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
devm_kzalloc(HANDLE, C1 * C2 * C3, ...)
|
devm_kzalloc(HANDLE,
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
devm_kzalloc(HANDLE,
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
devm_kzalloc(HANDLE,
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
devm_kzalloc(HANDLE,
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression HANDLE;
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
devm_kzalloc(HANDLE, sizeof(THING) * C2, ...)
|
devm_kzalloc(HANDLE, sizeof(TYPE) * C2, ...)
|
devm_kzalloc(HANDLE, C1 * C2 * C3, ...)
|
devm_kzalloc(HANDLE, C1 * C2, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- (E1) * E2
+ E1, E2
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- (E1) * (E2)
+ E1, E2
, ...)
|
- devm_kzalloc
+ devm_kcalloc
(HANDLE,
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-13 00:07:58 +03:00
|
|
|
card->aux_dev = devm_kcalloc(dev,
|
|
|
|
n, sizeof(*card->aux_dev), GFP_KERNEL);
|
2017-03-15 07:44:00 +03:00
|
|
|
if (!card->aux_dev)
|
2016-09-26 12:56:51 +03:00
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
aux_node = of_parse_phandle(node, PREFIX "aux-devs", i);
|
|
|
|
if (!aux_node)
|
|
|
|
return -EINVAL;
|
2017-03-15 07:44:00 +03:00
|
|
|
card->aux_dev[i].codec_of_node = aux_node;
|
2016-09-26 12:56:51 +03:00
|
|
|
}
|
|
|
|
|
2017-03-15 07:44:00 +03:00
|
|
|
card->num_aux_devs = n;
|
2016-09-26 12:56:51 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
static int simple_parse_of(struct asoc_simple_priv *priv)
|
2013-11-20 10:25:02 +04:00
|
|
|
{
|
2014-09-10 08:37:57 +04:00
|
|
|
struct device *dev = simple_priv_to_dev(priv);
|
2018-12-14 05:35:10 +03:00
|
|
|
struct device_node *top = dev->of_node;
|
2017-03-15 07:44:00 +03:00
|
|
|
struct snd_soc_card *card = simple_priv_to_card(priv);
|
2018-12-20 04:46:53 +03:00
|
|
|
struct link_info li;
|
2018-12-20 04:47:28 +03:00
|
|
|
int ret;
|
2018-12-14 05:35:10 +03:00
|
|
|
|
|
|
|
if (!top)
|
2014-09-03 06:23:39 +04:00
|
|
|
return -EINVAL;
|
|
|
|
|
2017-06-16 04:39:11 +03:00
|
|
|
ret = asoc_simple_card_of_parse_widgets(card, PREFIX);
|
|
|
|
if (ret < 0)
|
2018-12-14 05:35:10 +03:00
|
|
|
return ret;
|
2014-02-08 11:59:53 +04:00
|
|
|
|
2018-11-21 05:11:13 +03:00
|
|
|
ret = asoc_simple_card_of_parse_routing(card, PREFIX);
|
2017-06-15 03:25:17 +03:00
|
|
|
if (ret < 0)
|
2018-12-14 05:35:10 +03:00
|
|
|
return ret;
|
2013-12-23 08:57:01 +04:00
|
|
|
|
2014-09-03 06:23:39 +04:00
|
|
|
/* Single/Muti DAI link(s) & New style of DT node */
|
2018-12-20 04:46:53 +03:00
|
|
|
memset(&li, 0, sizeof(li));
|
2018-12-20 04:47:28 +03:00
|
|
|
for (li.cpu = 1; li.cpu >= 0; li.cpu--) {
|
2018-12-20 04:47:23 +03:00
|
|
|
/*
|
|
|
|
* Detect all CPU first, and Detect all Codec 2nd.
|
|
|
|
*
|
|
|
|
* In Normal sound case, all DAIs are detected
|
|
|
|
* as "CPU-Codec".
|
|
|
|
*
|
|
|
|
* In DPCM sound case,
|
|
|
|
* all CPUs are detected as "CPU-dummy", and
|
|
|
|
* all Codecs are detected as "dummy-Codec".
|
|
|
|
* To avoid random sub-device numbering,
|
|
|
|
* detect "dummy-Codec" in last;
|
|
|
|
*/
|
2018-12-20 04:47:34 +03:00
|
|
|
ret = simple_for_each_link(priv, &li,
|
|
|
|
simple_dai_link_of,
|
|
|
|
simple_dai_link_of_dpcm);
|
2018-12-20 04:47:28 +03:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
}
|
2018-12-20 04:47:23 +03:00
|
|
|
|
2017-03-15 07:44:00 +03:00
|
|
|
ret = asoc_simple_card_parse_card_name(card, PREFIX);
|
2016-09-26 12:56:51 +03:00
|
|
|
if (ret < 0)
|
2018-12-14 05:35:10 +03:00
|
|
|
return ret;
|
2014-02-28 06:25:24 +04:00
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
ret = simple_parse_aux_devs(top, priv);
|
2016-08-26 06:05:16 +03:00
|
|
|
|
|
|
|
return ret;
|
2013-11-20 10:25:02 +04:00
|
|
|
}
|
|
|
|
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
static int simple_count_noml(struct asoc_simple_priv *priv,
|
2018-12-20 04:47:34 +03:00
|
|
|
struct device_node *np,
|
|
|
|
struct device_node *codec,
|
|
|
|
struct link_info *li, bool is_top)
|
2018-12-20 04:47:23 +03:00
|
|
|
{
|
|
|
|
li->dais++; /* CPU or Codec */
|
|
|
|
if (np != codec)
|
|
|
|
li->link++; /* CPU-Codec */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
static int simple_count_dpcm(struct asoc_simple_priv *priv,
|
2018-12-20 04:47:34 +03:00
|
|
|
struct device_node *np,
|
|
|
|
struct device_node *codec,
|
|
|
|
struct link_info *li, bool is_top)
|
2018-12-20 04:47:23 +03:00
|
|
|
{
|
|
|
|
li->dais++; /* CPU or Codec */
|
|
|
|
li->link++; /* CPU-dummy or dummy-Codec */
|
|
|
|
if (np == codec)
|
|
|
|
li->conf++;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
static void simple_get_dais_count(struct asoc_simple_priv *priv,
|
2018-12-20 04:47:34 +03:00
|
|
|
struct link_info *li)
|
2018-12-14 05:35:10 +03:00
|
|
|
{
|
2018-12-20 04:47:23 +03:00
|
|
|
struct device *dev = simple_priv_to_dev(priv);
|
2018-12-14 05:35:10 +03:00
|
|
|
struct device_node *top = dev->of_node;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* link_num : number of links.
|
|
|
|
* CPU-Codec / CPU-dummy / dummy-Codec
|
|
|
|
* dais_num : number of DAIs
|
|
|
|
* ccnf_num : number of codec_conf
|
|
|
|
* same number for "dummy-Codec"
|
|
|
|
*
|
|
|
|
* ex1)
|
|
|
|
* CPU0 --- Codec0 link : 5
|
|
|
|
* CPU1 --- Codec1 dais : 7
|
|
|
|
* CPU2 -/ ccnf : 1
|
|
|
|
* CPU3 --- Codec2
|
|
|
|
*
|
|
|
|
* => 5 links = 2xCPU-Codec + 2xCPU-dummy + 1xdummy-Codec
|
|
|
|
* => 7 DAIs = 4xCPU + 3xCodec
|
|
|
|
* => 1 ccnf = 1xdummy-Codec
|
|
|
|
*
|
|
|
|
* ex2)
|
|
|
|
* CPU0 --- Codec0 link : 5
|
|
|
|
* CPU1 --- Codec1 dais : 6
|
|
|
|
* CPU2 -/ ccnf : 1
|
|
|
|
* CPU3 -/
|
|
|
|
*
|
|
|
|
* => 5 links = 1xCPU-Codec + 3xCPU-dummy + 1xdummy-Codec
|
|
|
|
* => 6 DAIs = 4xCPU + 2xCodec
|
|
|
|
* => 1 ccnf = 1xdummy-Codec
|
|
|
|
*
|
|
|
|
* ex3)
|
|
|
|
* CPU0 --- Codec0 link : 6
|
|
|
|
* CPU1 -/ dais : 6
|
|
|
|
* CPU2 --- Codec1 ccnf : 2
|
|
|
|
* CPU3 -/
|
|
|
|
*
|
|
|
|
* => 6 links = 0xCPU-Codec + 4xCPU-dummy + 2xdummy-Codec
|
|
|
|
* => 6 DAIs = 4xCPU + 2xCodec
|
|
|
|
* => 2 ccnf = 2xdummy-Codec
|
2018-12-20 04:46:47 +03:00
|
|
|
*
|
|
|
|
* ex4)
|
|
|
|
* CPU0 --- Codec0 (convert-rate) link : 3
|
|
|
|
* CPU1 --- Codec1 dais : 4
|
|
|
|
* ccnf : 1
|
|
|
|
*
|
|
|
|
* => 3 links = 1xCPU-Codec + 1xCPU-dummy + 1xdummy-Codec
|
|
|
|
* => 4 DAIs = 2xCPU + 2xCodec
|
|
|
|
* => 1 ccnf = 1xdummy-Codec
|
2018-12-14 05:35:10 +03:00
|
|
|
*/
|
|
|
|
if (!top) {
|
2018-12-20 04:46:53 +03:00
|
|
|
li->link = 1;
|
|
|
|
li->dais = 2;
|
|
|
|
li->conf = 0;
|
2018-12-14 05:35:10 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
simple_for_each_link(priv, li,
|
|
|
|
simple_count_noml,
|
|
|
|
simple_count_dpcm);
|
|
|
|
|
2018-12-20 04:47:28 +03:00
|
|
|
dev_dbg(dev, "link %d, dais %d, ccnf %d\n",
|
|
|
|
li->link, li->dais, li->conf);
|
2018-12-14 05:35:10 +03:00
|
|
|
}
|
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
static int simple_soc_probe(struct snd_soc_card *card)
|
2018-06-11 11:32:13 +03:00
|
|
|
{
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
struct asoc_simple_priv *priv = snd_soc_card_get_drvdata(card);
|
2018-06-11 11:32:13 +03:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = asoc_simple_card_init_hp(card, &priv->hp_jack, PREFIX);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = asoc_simple_card_init_mic(card, &priv->mic_jack, PREFIX);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
static int simple_probe(struct platform_device *pdev)
|
2012-04-09 08:17:50 +04:00
|
|
|
{
|
ASoC: simple_card_utils: share common priv for simple-card/audio-graph
Historically, simple-card/simple-scu-card/audio-graph/audio-graph-scu
are similar but different generic sound card.
simple-scu-card which was for DPCM was merged into simple-card, and
audio-graph-scu which was for DPCM was merged into audio-graph.
simple-card is for non OF graph sound card, and
audio-graph is for OF graph sound card.
And, small detail difference (= function parameter, naming, etc)
between simple-card/audio-graph has been unified.
So today, the difference between simple-card/audio-graph are
just using OF graph style, or not.
In other words, there should no difference other than OF graph sytle.
simple-card/audio-graph are using own priv today , but we can merge it.
This patch merge it at simple_card_utils.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-03-20 07:54:59 +03:00
|
|
|
struct asoc_simple_priv *priv;
|
2014-01-15 19:51:45 +04:00
|
|
|
struct snd_soc_dai_link *dai_link;
|
2016-08-26 06:10:25 +03:00
|
|
|
struct simple_dai_props *dai_props;
|
2018-12-04 11:19:43 +03:00
|
|
|
struct asoc_simple_dai *dais;
|
2012-12-26 10:52:33 +04:00
|
|
|
struct device *dev = &pdev->dev;
|
2017-03-15 07:43:21 +03:00
|
|
|
struct device_node *np = dev->of_node;
|
2017-03-15 07:44:00 +03:00
|
|
|
struct snd_soc_card *card;
|
2018-12-14 05:35:10 +03:00
|
|
|
struct snd_soc_codec_conf *cconf;
|
2018-12-20 04:46:53 +03:00
|
|
|
struct link_info li;
|
2018-12-14 05:35:10 +03:00
|
|
|
int ret, i;
|
2012-04-09 08:17:50 +04:00
|
|
|
|
2014-09-10 05:59:55 +04:00
|
|
|
/* Allocate the private data and the DAI link array */
|
2016-08-26 06:10:25 +03:00
|
|
|
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
|
2014-01-15 19:51:52 +04:00
|
|
|
if (!priv)
|
2014-01-14 08:35:32 +04:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2018-12-20 04:47:23 +03:00
|
|
|
card = simple_priv_to_card(priv);
|
|
|
|
card->owner = THIS_MODULE;
|
|
|
|
card->dev = dev;
|
2018-12-20 04:47:34 +03:00
|
|
|
card->probe = simple_soc_probe;
|
2018-12-20 04:47:23 +03:00
|
|
|
|
2018-12-20 04:46:53 +03:00
|
|
|
memset(&li, 0, sizeof(li));
|
2018-12-20 04:47:34 +03:00
|
|
|
simple_get_dais_count(priv, &li);
|
2018-12-20 04:46:53 +03:00
|
|
|
if (!li.link || !li.dais)
|
2018-12-14 05:35:10 +03:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-12-20 04:46:53 +03:00
|
|
|
dai_props = devm_kcalloc(dev, li.link, sizeof(*dai_props), GFP_KERNEL);
|
|
|
|
dai_link = devm_kcalloc(dev, li.link, sizeof(*dai_link), GFP_KERNEL);
|
|
|
|
dais = devm_kcalloc(dev, li.dais, sizeof(*dais), GFP_KERNEL);
|
|
|
|
cconf = devm_kcalloc(dev, li.conf, sizeof(*cconf), GFP_KERNEL);
|
2018-12-04 11:19:43 +03:00
|
|
|
if (!dai_props || !dai_link || !dais)
|
2016-08-26 06:10:25 +03:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2018-08-31 06:08:24 +03:00
|
|
|
/*
|
|
|
|
* Use snd_soc_dai_link_component instead of legacy style
|
|
|
|
* It is codec only. but cpu/platform will be supported in the future.
|
|
|
|
* see
|
|
|
|
* soc-core.c :: snd_soc_init_multicodec()
|
|
|
|
*/
|
2018-12-20 04:46:53 +03:00
|
|
|
for (i = 0; i < li.link; i++) {
|
2018-08-31 06:08:24 +03:00
|
|
|
dai_link[i].codecs = &dai_props[i].codecs;
|
|
|
|
dai_link[i].num_codecs = 1;
|
2019-01-21 03:32:32 +03:00
|
|
|
dai_link[i].platforms = &dai_props[i].platforms;
|
|
|
|
dai_link[i].num_platforms = 1;
|
2018-08-31 06:08:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-20 04:47:23 +03:00
|
|
|
priv->dai_props = dai_props;
|
|
|
|
priv->dai_link = dai_link;
|
|
|
|
priv->dais = dais;
|
|
|
|
priv->codec_conf = cconf;
|
2016-08-26 06:10:25 +03:00
|
|
|
|
2017-03-15 07:44:00 +03:00
|
|
|
card->dai_link = priv->dai_link;
|
2018-12-20 04:46:53 +03:00
|
|
|
card->num_links = li.link;
|
2018-12-14 05:35:10 +03:00
|
|
|
card->codec_conf = cconf;
|
2018-12-20 04:46:53 +03:00
|
|
|
card->num_configs = li.conf;
|
2014-01-15 19:51:41 +04:00
|
|
|
|
2013-11-20 10:25:02 +04:00
|
|
|
if (np && of_device_is_available(np)) {
|
2014-01-14 08:35:32 +04:00
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
ret = simple_parse_of(priv);
|
2014-01-14 08:35:32 +04:00
|
|
|
if (ret < 0) {
|
|
|
|
if (ret != -EPROBE_DEFER)
|
|
|
|
dev_err(dev, "parse error %d\n", ret);
|
2014-03-11 13:03:40 +04:00
|
|
|
goto err;
|
2013-11-20 10:25:02 +04:00
|
|
|
}
|
2014-03-20 14:49:55 +04:00
|
|
|
|
2013-11-20 10:25:02 +04:00
|
|
|
} else {
|
2014-01-15 19:51:52 +04:00
|
|
|
struct asoc_simple_card_info *cinfo;
|
2018-08-31 06:08:24 +03:00
|
|
|
struct snd_soc_dai_link_component *codecs;
|
2018-08-31 06:10:33 +03:00
|
|
|
struct snd_soc_dai_link_component *platform;
|
2018-12-13 08:15:20 +03:00
|
|
|
int dai_idx = 0;
|
2014-01-15 19:51:52 +04:00
|
|
|
|
|
|
|
cinfo = dev->platform_data;
|
|
|
|
if (!cinfo) {
|
2014-01-09 13:49:40 +04:00
|
|
|
dev_err(dev, "no info for asoc-simple-card\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2013-11-20 10:25:02 +04:00
|
|
|
|
2014-04-24 15:14:00 +04:00
|
|
|
if (!cinfo->name ||
|
|
|
|
!cinfo->codec_dai.name ||
|
|
|
|
!cinfo->codec ||
|
|
|
|
!cinfo->platform ||
|
2014-01-15 19:51:33 +04:00
|
|
|
!cinfo->cpu_dai.name) {
|
|
|
|
dev_err(dev, "insufficient asoc_simple_card_info settings\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2014-01-15 19:51:37 +04:00
|
|
|
|
2018-12-13 08:15:20 +03:00
|
|
|
dai_props->cpu_dai = &priv->dais[dai_idx++];
|
|
|
|
dai_props->codec_dai = &priv->dais[dai_idx++];
|
|
|
|
|
2018-08-31 06:08:24 +03:00
|
|
|
codecs = dai_link->codecs;
|
|
|
|
codecs->name = cinfo->codec;
|
|
|
|
codecs->dai_name = cinfo->codec_dai.name;
|
|
|
|
|
2019-01-21 03:32:32 +03:00
|
|
|
platform = dai_link->platforms;
|
2018-08-31 06:10:33 +03:00
|
|
|
platform->name = cinfo->platform;
|
|
|
|
|
2017-03-15 07:44:00 +03:00
|
|
|
card->name = (cinfo->card) ? cinfo->card : cinfo->name;
|
2014-01-15 19:51:45 +04:00
|
|
|
dai_link->name = cinfo->name;
|
|
|
|
dai_link->stream_name = cinfo->name;
|
2014-01-15 19:51:48 +04:00
|
|
|
dai_link->cpu_dai_name = cinfo->cpu_dai.name;
|
2015-03-24 04:07:08 +03:00
|
|
|
dai_link->dai_fmt = cinfo->daifmt;
|
2018-12-20 04:47:34 +03:00
|
|
|
dai_link->init = simple_dai_init;
|
2018-12-13 08:15:20 +03:00
|
|
|
memcpy(priv->dai_props->cpu_dai, &cinfo->cpu_dai,
|
|
|
|
sizeof(*priv->dai_props->cpu_dai));
|
|
|
|
memcpy(priv->dai_props->codec_dai, &cinfo->codec_dai,
|
|
|
|
sizeof(*priv->dai_props->codec_dai));
|
2012-04-09 08:17:50 +04:00
|
|
|
}
|
|
|
|
|
2017-03-15 07:44:00 +03:00
|
|
|
snd_soc_card_set_drvdata(card, priv);
|
2012-04-09 08:17:50 +04:00
|
|
|
|
2019-03-20 07:54:42 +03:00
|
|
|
asoc_simple_debug_info(priv);
|
|
|
|
|
2017-03-15 07:44:00 +03:00
|
|
|
ret = devm_snd_soc_register_card(dev, card);
|
2017-05-19 03:57:21 +03:00
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
return 0;
|
2014-03-11 13:03:40 +04:00
|
|
|
err:
|
2017-03-15 07:44:00 +03:00
|
|
|
asoc_simple_card_clean_reference(card);
|
2016-08-26 06:07:59 +03:00
|
|
|
|
2014-03-11 13:03:40 +04:00
|
|
|
return ret;
|
2012-04-09 08:17:50 +04:00
|
|
|
}
|
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
static int simple_remove(struct platform_device *pdev)
|
2014-09-01 10:46:52 +04:00
|
|
|
{
|
2014-10-02 01:25:20 +04:00
|
|
|
struct snd_soc_card *card = platform_get_drvdata(pdev);
|
|
|
|
|
2016-08-10 05:21:42 +03:00
|
|
|
return asoc_simple_card_clean_reference(card);
|
2014-09-01 10:46:52 +04:00
|
|
|
}
|
|
|
|
|
2018-12-20 04:47:34 +03:00
|
|
|
static const struct of_device_id simple_of_match[] = {
|
2013-11-20 10:25:02 +04:00
|
|
|
{ .compatible = "simple-audio-card", },
|
2018-12-14 05:35:10 +03:00
|
|
|
{ .compatible = "simple-scu-audio-card", },
|
2013-11-20 10:25:02 +04:00
|
|
|
{},
|
|
|
|
};
|
2018-12-20 04:47:34 +03:00
|
|
|
MODULE_DEVICE_TABLE(of, simple_of_match);
|
2013-11-20 10:25:02 +04:00
|
|
|
|
2012-04-09 08:17:50 +04:00
|
|
|
static struct platform_driver asoc_simple_card = {
|
|
|
|
.driver = {
|
2014-04-24 15:14:00 +04:00
|
|
|
.name = "asoc-simple-card",
|
2016-05-09 13:38:10 +03:00
|
|
|
.pm = &snd_soc_pm_ops,
|
2018-12-20 04:47:34 +03:00
|
|
|
.of_match_table = simple_of_match,
|
2012-04-09 08:17:50 +04:00
|
|
|
},
|
2018-12-20 04:47:34 +03:00
|
|
|
.probe = simple_probe,
|
|
|
|
.remove = simple_remove,
|
2012-04-09 08:17:50 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
module_platform_driver(asoc_simple_card);
|
|
|
|
|
2013-08-23 21:35:17 +04:00
|
|
|
MODULE_ALIAS("platform:asoc-simple-card");
|
2016-08-26 06:07:28 +03:00
|
|
|
MODULE_LICENSE("GPL v2");
|
2012-04-09 08:17:50 +04:00
|
|
|
MODULE_DESCRIPTION("ASoC Simple Sound Card");
|
|
|
|
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
|