mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
ASoC: audio-graph-card2: Introduce playback-only/capture-only DAI link flags
We need this to support MICFIL PDM found on i.MX8MP where the DAI link supports only capture direction. Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com> Link: https://msgid.link/r/20231128081119.106360-2-daniel.baluta@oss.nxp.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
6475b8e182
commit
d29351e8c2
@ -195,6 +195,9 @@ int graph_util_is_ports0(struct device_node *port);
|
|||||||
int graph_util_parse_dai(struct device *dev, struct device_node *ep,
|
int graph_util_parse_dai(struct device *dev, struct device_node *ep,
|
||||||
struct snd_soc_dai_link_component *dlc, int *is_single_link);
|
struct snd_soc_dai_link_component *dlc, int *is_single_link);
|
||||||
|
|
||||||
|
int graph_util_parse_link_direction(struct device_node *np,
|
||||||
|
bool *is_playback_only, bool *is_capture_only);
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
static inline void simple_util_debug_dai(struct simple_util_priv *priv,
|
static inline void simple_util_debug_dai(struct simple_util_priv *priv,
|
||||||
char *name,
|
char *name,
|
||||||
|
@ -760,6 +760,7 @@ static void graph_link_init(struct simple_util_priv *priv,
|
|||||||
struct device_node *ep;
|
struct device_node *ep;
|
||||||
struct device_node *ports;
|
struct device_node *ports;
|
||||||
unsigned int daifmt = 0, daiclk = 0;
|
unsigned int daifmt = 0, daiclk = 0;
|
||||||
|
bool playback_only = 0, capture_only = 0;
|
||||||
unsigned int bit_frame = 0;
|
unsigned int bit_frame = 0;
|
||||||
|
|
||||||
if (graph_lnk_is_multi(port)) {
|
if (graph_lnk_is_multi(port)) {
|
||||||
@ -798,6 +799,11 @@ static void graph_link_init(struct simple_util_priv *priv,
|
|||||||
if (is_cpu_node)
|
if (is_cpu_node)
|
||||||
daiclk = snd_soc_daifmt_clock_provider_flipped(daiclk);
|
daiclk = snd_soc_daifmt_clock_provider_flipped(daiclk);
|
||||||
|
|
||||||
|
graph_util_parse_link_direction(port, &playback_only, &capture_only);
|
||||||
|
|
||||||
|
dai_link->playback_only = playback_only;
|
||||||
|
dai_link->capture_only = capture_only;
|
||||||
|
|
||||||
dai_link->dai_fmt = daifmt | daiclk;
|
dai_link->dai_fmt = daifmt | daiclk;
|
||||||
dai_link->init = simple_util_dai_init;
|
dai_link->init = simple_util_dai_init;
|
||||||
dai_link->ops = &graph_ops;
|
dai_link->ops = &graph_ops;
|
||||||
|
@ -1129,6 +1129,25 @@ parse_dai_end:
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(graph_util_parse_dai);
|
EXPORT_SYMBOL_GPL(graph_util_parse_dai);
|
||||||
|
|
||||||
|
int graph_util_parse_link_direction(struct device_node *np,
|
||||||
|
bool *playback_only, bool *capture_only)
|
||||||
|
{
|
||||||
|
bool is_playback_only = false;
|
||||||
|
bool is_capture_only = false;
|
||||||
|
|
||||||
|
is_playback_only = of_property_read_bool(np, "playback-only");
|
||||||
|
is_capture_only = of_property_read_bool(np, "capture-only");
|
||||||
|
|
||||||
|
if (is_playback_only && is_capture_only)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
*playback_only = is_playback_only;
|
||||||
|
*capture_only = is_capture_only;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(graph_util_parse_link_direction);
|
||||||
|
|
||||||
/* Module information */
|
/* Module information */
|
||||||
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
|
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
|
||||||
MODULE_DESCRIPTION("ALSA SoC Simple Card Utils");
|
MODULE_DESCRIPTION("ALSA SoC Simple Card Utils");
|
||||||
|
Loading…
Reference in New Issue
Block a user