Merge remote-tracking branches 'asoc/topic/tegra', 'asoc/topic/tlv320aic23' and 'asoc/topic/ux500' into asoc-next
This commit is contained in:
commit
ff096eae2e
|
@ -31,7 +31,7 @@ static int tlv320aic23_i2c_probe(struct i2c_client *i2c,
|
||||||
return tlv320aic23_probe(&i2c->dev, regmap);
|
return tlv320aic23_probe(&i2c->dev, regmap);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __exit tlv320aic23_i2c_remove(struct i2c_client *i2c)
|
static int tlv320aic23_i2c_remove(struct i2c_client *i2c)
|
||||||
{
|
{
|
||||||
snd_soc_unregister_codec(&i2c->dev);
|
snd_soc_unregister_codec(&i2c->dev);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -56,7 +56,7 @@ static struct i2c_driver tlv320aic23_i2c_driver = {
|
||||||
.of_match_table = of_match_ptr(tlv320aic23_of_match),
|
.of_match_table = of_match_ptr(tlv320aic23_of_match),
|
||||||
},
|
},
|
||||||
.probe = tlv320aic23_i2c_probe,
|
.probe = tlv320aic23_i2c_probe,
|
||||||
.remove = __exit_p(tlv320aic23_i2c_remove),
|
.remove = tlv320aic23_i2c_remove,
|
||||||
.id_table = tlv320aic23_id,
|
.id_table = tlv320aic23_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -101,9 +101,6 @@ static const struct snd_kcontrol_new tegra_alc5632_controls[] = {
|
||||||
|
|
||||||
static int tegra_alc5632_asoc_init(struct snd_soc_pcm_runtime *rtd)
|
static int tegra_alc5632_asoc_init(struct snd_soc_pcm_runtime *rtd)
|
||||||
{
|
{
|
||||||
struct snd_soc_dai *codec_dai = rtd->codec_dai;
|
|
||||||
struct snd_soc_codec *codec = codec_dai->codec;
|
|
||||||
struct snd_soc_dapm_context *dapm = &codec->dapm;
|
|
||||||
struct tegra_alc5632 *machine = snd_soc_card_get_drvdata(rtd->card);
|
struct tegra_alc5632 *machine = snd_soc_card_get_drvdata(rtd->card);
|
||||||
|
|
||||||
snd_soc_card_jack_new(rtd->card, "Headset Jack", SND_JACK_HEADSET,
|
snd_soc_card_jack_new(rtd->card, "Headset Jack", SND_JACK_HEADSET,
|
||||||
|
@ -118,7 +115,7 @@ static int tegra_alc5632_asoc_init(struct snd_soc_pcm_runtime *rtd)
|
||||||
&tegra_alc5632_hp_jack_gpio);
|
&tegra_alc5632_hp_jack_gpio);
|
||||||
}
|
}
|
||||||
|
|
||||||
snd_soc_dapm_force_enable_pin(dapm, "MICBIAS1");
|
snd_soc_dapm_force_enable_pin(&rtd->card->dapm, "MICBIAS1");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -141,9 +141,6 @@ static const struct snd_kcontrol_new tegra_rt5677_controls[] = {
|
||||||
|
|
||||||
static int tegra_rt5677_asoc_init(struct snd_soc_pcm_runtime *rtd)
|
static int tegra_rt5677_asoc_init(struct snd_soc_pcm_runtime *rtd)
|
||||||
{
|
{
|
||||||
struct snd_soc_dai *codec_dai = rtd->codec_dai;
|
|
||||||
struct snd_soc_codec *codec = codec_dai->codec;
|
|
||||||
struct snd_soc_dapm_context *dapm = &codec->dapm;
|
|
||||||
struct tegra_rt5677 *machine = snd_soc_card_get_drvdata(rtd->card);
|
struct tegra_rt5677 *machine = snd_soc_card_get_drvdata(rtd->card);
|
||||||
|
|
||||||
snd_soc_card_jack_new(rtd->card, "Headphone Jack", SND_JACK_HEADPHONE,
|
snd_soc_card_jack_new(rtd->card, "Headphone Jack", SND_JACK_HEADPHONE,
|
||||||
|
@ -167,7 +164,7 @@ static int tegra_rt5677_asoc_init(struct snd_soc_pcm_runtime *rtd)
|
||||||
&tegra_rt5677_mic_jack_gpio);
|
&tegra_rt5677_mic_jack_gpio);
|
||||||
}
|
}
|
||||||
|
|
||||||
snd_soc_dapm_force_enable_pin(dapm, "MICBIAS1");
|
snd_soc_dapm_force_enable_pin(&rtd->card->dapm, "MICBIAS1");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -329,7 +326,6 @@ static const struct of_device_id tegra_rt5677_of_match[] = {
|
||||||
static struct platform_driver tegra_rt5677_driver = {
|
static struct platform_driver tegra_rt5677_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = DRV_NAME,
|
.name = DRV_NAME,
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.pm = &snd_soc_pm_ops,
|
.pm = &snd_soc_pm_ops,
|
||||||
.of_match_table = tegra_rt5677_of_match,
|
.of_match_table = tegra_rt5677_of_match,
|
||||||
},
|
},
|
||||||
|
|
|
@ -171,7 +171,6 @@ static int tegra_wm8903_init(struct snd_soc_pcm_runtime *rtd)
|
||||||
{
|
{
|
||||||
struct snd_soc_dai *codec_dai = rtd->codec_dai;
|
struct snd_soc_dai *codec_dai = rtd->codec_dai;
|
||||||
struct snd_soc_codec *codec = codec_dai->codec;
|
struct snd_soc_codec *codec = codec_dai->codec;
|
||||||
struct snd_soc_dapm_context *dapm = &codec->dapm;
|
|
||||||
struct snd_soc_card *card = rtd->card;
|
struct snd_soc_card *card = rtd->card;
|
||||||
struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
|
struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
|
||||||
|
|
||||||
|
@ -193,7 +192,7 @@ static int tegra_wm8903_init(struct snd_soc_pcm_runtime *rtd)
|
||||||
wm8903_mic_detect(codec, &tegra_wm8903_mic_jack, SND_JACK_MICROPHONE,
|
wm8903_mic_detect(codec, &tegra_wm8903_mic_jack, SND_JACK_MICROPHONE,
|
||||||
0);
|
0);
|
||||||
|
|
||||||
snd_soc_dapm_force_enable_pin(dapm, "MICBIAS");
|
snd_soc_dapm_force_enable_pin(&card->dapm, "MICBIAS");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,11 +46,7 @@ static const struct snd_soc_dapm_widget tegra_wm9712_dapm_widgets[] = {
|
||||||
|
|
||||||
static int tegra_wm9712_init(struct snd_soc_pcm_runtime *rtd)
|
static int tegra_wm9712_init(struct snd_soc_pcm_runtime *rtd)
|
||||||
{
|
{
|
||||||
struct snd_soc_dai *codec_dai = rtd->codec_dai;
|
return snd_soc_dapm_force_enable_pin(&rtd->card->dapm, "Mic Bias");
|
||||||
struct snd_soc_codec *codec = codec_dai->codec;
|
|
||||||
struct snd_soc_dapm_context *dapm = &codec->dapm;
|
|
||||||
|
|
||||||
return snd_soc_dapm_force_enable_pin(dapm, "Mic Bias");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct snd_soc_dai_link tegra_wm9712_dai = {
|
static struct snd_soc_dai_link tegra_wm9712_dai = {
|
||||||
|
|
|
@ -362,7 +362,7 @@ struct snd_soc_ops mop500_ab8500_ops[] = {
|
||||||
|
|
||||||
int mop500_ab8500_machine_init(struct snd_soc_pcm_runtime *rtd)
|
int mop500_ab8500_machine_init(struct snd_soc_pcm_runtime *rtd)
|
||||||
{
|
{
|
||||||
struct snd_soc_codec *codec = rtd->codec;
|
struct snd_soc_dapm_context *dapm = &rtd->card->dapm;
|
||||||
struct device *dev = rtd->card->dev;
|
struct device *dev = rtd->card->dev;
|
||||||
struct mop500_ab8500_drvdata *drvdata;
|
struct mop500_ab8500_drvdata *drvdata;
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -407,23 +407,23 @@ int mop500_ab8500_machine_init(struct snd_soc_pcm_runtime *rtd)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = snd_soc_dapm_disable_pin(&codec->dapm, "Earpiece");
|
ret = snd_soc_dapm_disable_pin(dapm, "Earpiece");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "Speaker Left");
|
ret |= snd_soc_dapm_disable_pin(dapm, "Speaker Left");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "Speaker Right");
|
ret |= snd_soc_dapm_disable_pin(dapm, "Speaker Right");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "LineOut Left");
|
ret |= snd_soc_dapm_disable_pin(dapm, "LineOut Left");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "LineOut Right");
|
ret |= snd_soc_dapm_disable_pin(dapm, "LineOut Right");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "Vibra 1");
|
ret |= snd_soc_dapm_disable_pin(dapm, "Vibra 1");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "Vibra 2");
|
ret |= snd_soc_dapm_disable_pin(dapm, "Vibra 2");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "Mic 1");
|
ret |= snd_soc_dapm_disable_pin(dapm, "Mic 1");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "Mic 2");
|
ret |= snd_soc_dapm_disable_pin(dapm, "Mic 2");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "LineIn Left");
|
ret |= snd_soc_dapm_disable_pin(dapm, "LineIn Left");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "LineIn Right");
|
ret |= snd_soc_dapm_disable_pin(dapm, "LineIn Right");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "DMic 1");
|
ret |= snd_soc_dapm_disable_pin(dapm, "DMic 1");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "DMic 2");
|
ret |= snd_soc_dapm_disable_pin(dapm, "DMic 2");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "DMic 3");
|
ret |= snd_soc_dapm_disable_pin(dapm, "DMic 3");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "DMic 4");
|
ret |= snd_soc_dapm_disable_pin(dapm, "DMic 4");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "DMic 5");
|
ret |= snd_soc_dapm_disable_pin(dapm, "DMic 5");
|
||||||
ret |= snd_soc_dapm_disable_pin(&codec->dapm, "DMic 6");
|
ret |= snd_soc_dapm_disable_pin(dapm, "DMic 6");
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue