forked from luck/tmp_suning_uos_patched
ASoC: core: Update snd_soc_of_parse_daifmt() interface
Adds struct device_node **bitclkmaster and struct device_node **framemaster function parameters. With the new syntax bitclock-master and frame-master properties can explicitly indicate the dai-link bit-clock and frame masters with a phandle. This patch also makes the minimal changes to simple-card for it to work with the updated snd_soc_of_parse_daifmt(). Simple-card appears to be the only user of snd_soc_of_parse_daifmt() for now. Signed-off-by: Jyri Sarha <jsarha@ti.com> Acked-by: Jean-Francois Moine <moinejf@free.fr> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
c9eaa447e7
commit
389cb8348c
|
@ -1241,7 +1241,9 @@ int snd_soc_of_parse_tdm_slot(struct device_node *np,
|
||||||
int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
|
int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
|
||||||
const char *propname);
|
const char *propname);
|
||||||
unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
|
unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
|
||||||
const char *prefix);
|
const char *prefix,
|
||||||
|
struct device_node **bitclkmaster,
|
||||||
|
struct device_node **framemaster);
|
||||||
int snd_soc_of_get_dai_name(struct device_node *of_node,
|
int snd_soc_of_get_dai_name(struct device_node *of_node,
|
||||||
const char **dai_name);
|
const char **dai_name);
|
||||||
|
|
||||||
|
|
|
@ -121,7 +121,7 @@ asoc_simple_card_sub_parse_of(struct device_node *np,
|
||||||
* bitclock-master, frame-master
|
* bitclock-master, frame-master
|
||||||
* and specific "format" if it has
|
* and specific "format" if it has
|
||||||
*/
|
*/
|
||||||
dai->fmt = snd_soc_of_parse_daifmt(np, NULL);
|
dai->fmt = snd_soc_of_parse_daifmt(np, NULL, NULL, NULL);
|
||||||
dai->fmt |= daifmt;
|
dai->fmt |= daifmt;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -201,7 +201,8 @@ static int asoc_simple_card_parse_of(struct device_node *node,
|
||||||
snd_soc_of_parse_card_name(&priv->snd_card, "simple-audio-card,name");
|
snd_soc_of_parse_card_name(&priv->snd_card, "simple-audio-card,name");
|
||||||
|
|
||||||
/* get CPU/CODEC common format via simple-audio-card,format */
|
/* get CPU/CODEC common format via simple-audio-card,format */
|
||||||
daifmt = snd_soc_of_parse_daifmt(node, "simple-audio-card,") &
|
daifmt = snd_soc_of_parse_daifmt(node, "simple-audio-card,", NULL,
|
||||||
|
NULL) &
|
||||||
(SND_SOC_DAIFMT_FORMAT_MASK | SND_SOC_DAIFMT_INV_MASK);
|
(SND_SOC_DAIFMT_FORMAT_MASK | SND_SOC_DAIFMT_INV_MASK);
|
||||||
|
|
||||||
/* off-codec widgets */
|
/* off-codec widgets */
|
||||||
|
|
|
@ -4554,7 +4554,9 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
|
||||||
EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
|
EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
|
||||||
|
|
||||||
unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
|
unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
|
||||||
const char *prefix)
|
const char *prefix,
|
||||||
|
struct device_node **bitclkmaster,
|
||||||
|
struct device_node **framemaster)
|
||||||
{
|
{
|
||||||
int ret, i;
|
int ret, i;
|
||||||
char prop[128];
|
char prop[128];
|
||||||
|
@ -4637,9 +4639,13 @@ unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
|
||||||
*/
|
*/
|
||||||
snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
|
snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
|
||||||
bit = !!of_get_property(np, prop, NULL);
|
bit = !!of_get_property(np, prop, NULL);
|
||||||
|
if (bit && bitclkmaster)
|
||||||
|
*bitclkmaster = of_parse_phandle(np, prop, 0);
|
||||||
|
|
||||||
snprintf(prop, sizeof(prop), "%sframe-master", prefix);
|
snprintf(prop, sizeof(prop), "%sframe-master", prefix);
|
||||||
frame = !!of_get_property(np, prop, NULL);
|
frame = !!of_get_property(np, prop, NULL);
|
||||||
|
if (frame && framemaster)
|
||||||
|
*framemaster = of_parse_phandle(np, prop, 0);
|
||||||
|
|
||||||
switch ((bit << 4) + frame) {
|
switch ((bit << 4) + frame) {
|
||||||
case 0x11:
|
case 0x11:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user