Commit d207df2d authored by Takashi Iwai's avatar Takashi Iwai

Merge branch 'fix/hda' into topic/hda

parents 1aa924e2 c8900a0f
...@@ -17,13 +17,9 @@ ...@@ -17,13 +17,9 @@
/* /*
* R6 (0x06) - Mic Bias Control 0 * R6 (0x06) - Mic Bias Control 0
*/ */
#define WM8903_MICDET_HYST_ENA 0x0080 /* MICDET_HYST_ENA */ #define WM8903_MICDET_THR_MASK 0x0030 /* MICDET_THR - [5:4] */
#define WM8903_MICDET_HYST_ENA_MASK 0x0080 /* MICDET_HYST_ENA */ #define WM8903_MICDET_THR_SHIFT 4 /* MICDET_THR - [5:4] */
#define WM8903_MICDET_HYST_ENA_SHIFT 7 /* MICDET_HYST_ENA */ #define WM8903_MICDET_THR_WIDTH 2 /* MICDET_THR - [5:4] */
#define WM8903_MICDET_HYST_ENA_WIDTH 1 /* MICDET_HYST_ENA */
#define WM8903_MICDET_THR_MASK 0x0070 /* MICDET_THR - [6:4] */
#define WM8903_MICDET_THR_SHIFT 4 /* MICDET_THR - [6:4] */
#define WM8903_MICDET_THR_WIDTH 3 /* MICDET_THR - [6:4] */
#define WM8903_MICSHORT_THR_MASK 0x000C /* MICSHORT_THR - [3:2] */ #define WM8903_MICSHORT_THR_MASK 0x000C /* MICSHORT_THR - [3:2] */
#define WM8903_MICSHORT_THR_SHIFT 2 /* MICSHORT_THR - [3:2] */ #define WM8903_MICSHORT_THR_SHIFT 2 /* MICSHORT_THR - [3:2] */
#define WM8903_MICSHORT_THR_WIDTH 2 /* MICSHORT_THR - [3:2] */ #define WM8903_MICSHORT_THR_WIDTH 2 /* MICSHORT_THR - [3:2] */
......
...@@ -1638,6 +1638,9 @@ static struct hda_codec_preset snd_hda_preset_hdmi[] = { ...@@ -1638,6 +1638,9 @@ static struct hda_codec_preset snd_hda_preset_hdmi[] = {
{ .id = 0x10de0012, .name = "GPU 12 HDMI/DP", .patch = patch_nvhdmi_8ch_89 }, { .id = 0x10de0012, .name = "GPU 12 HDMI/DP", .patch = patch_nvhdmi_8ch_89 },
{ .id = 0x10de0013, .name = "GPU 13 HDMI/DP", .patch = patch_nvhdmi_8ch_89 }, { .id = 0x10de0013, .name = "GPU 13 HDMI/DP", .patch = patch_nvhdmi_8ch_89 },
{ .id = 0x10de0014, .name = "GPU 14 HDMI/DP", .patch = patch_nvhdmi_8ch_89 }, { .id = 0x10de0014, .name = "GPU 14 HDMI/DP", .patch = patch_nvhdmi_8ch_89 },
{ .id = 0x10de0015, .name = "GPU 15 HDMI/DP", .patch = patch_nvhdmi_8ch_89 },
{ .id = 0x10de0016, .name = "GPU 16 HDMI/DP", .patch = patch_nvhdmi_8ch_89 },
/* 17 is known to be absent */
{ .id = 0x10de0018, .name = "GPU 18 HDMI/DP", .patch = patch_nvhdmi_8ch_89 }, { .id = 0x10de0018, .name = "GPU 18 HDMI/DP", .patch = patch_nvhdmi_8ch_89 },
{ .id = 0x10de0019, .name = "GPU 19 HDMI/DP", .patch = patch_nvhdmi_8ch_89 }, { .id = 0x10de0019, .name = "GPU 19 HDMI/DP", .patch = patch_nvhdmi_8ch_89 },
{ .id = 0x10de001a, .name = "GPU 1a HDMI/DP", .patch = patch_nvhdmi_8ch_89 }, { .id = 0x10de001a, .name = "GPU 1a HDMI/DP", .patch = patch_nvhdmi_8ch_89 },
...@@ -1680,6 +1683,8 @@ MODULE_ALIAS("snd-hda-codec-id:10de0011"); ...@@ -1680,6 +1683,8 @@ MODULE_ALIAS("snd-hda-codec-id:10de0011");
MODULE_ALIAS("snd-hda-codec-id:10de0012"); MODULE_ALIAS("snd-hda-codec-id:10de0012");
MODULE_ALIAS("snd-hda-codec-id:10de0013"); MODULE_ALIAS("snd-hda-codec-id:10de0013");
MODULE_ALIAS("snd-hda-codec-id:10de0014"); MODULE_ALIAS("snd-hda-codec-id:10de0014");
MODULE_ALIAS("snd-hda-codec-id:10de0015");
MODULE_ALIAS("snd-hda-codec-id:10de0016");
MODULE_ALIAS("snd-hda-codec-id:10de0018"); MODULE_ALIAS("snd-hda-codec-id:10de0018");
MODULE_ALIAS("snd-hda-codec-id:10de0019"); MODULE_ALIAS("snd-hda-codec-id:10de0019");
MODULE_ALIAS("snd-hda-codec-id:10de001a"); MODULE_ALIAS("snd-hda-codec-id:10de001a");
......
...@@ -1133,11 +1133,8 @@ static void alc_automute_speaker(struct hda_codec *codec, int pinctl) ...@@ -1133,11 +1133,8 @@ static void alc_automute_speaker(struct hda_codec *codec, int pinctl)
nid = spec->autocfg.hp_pins[i]; nid = spec->autocfg.hp_pins[i];
if (!nid) if (!nid)
break; break;
if (snd_hda_jack_detect(codec, nid)) { alc_report_jack(codec, nid);
spec->jack_present = 1; spec->jack_present |= snd_hda_jack_detect(codec, nid);
break;
}
alc_report_jack(codec, spec->autocfg.hp_pins[i]);
} }
mute = spec->jack_present ? HDA_AMP_MUTE : 0; mute = spec->jack_present ? HDA_AMP_MUTE : 0;
...@@ -15014,7 +15011,7 @@ static struct snd_pci_quirk alc269_cfg_tbl[] = { ...@@ -15014,7 +15011,7 @@ static struct snd_pci_quirk alc269_cfg_tbl[] = {
SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269VB_AMIC), SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269VB_AMIC),
SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269VB_AMIC), SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269VB_AMIC),
SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_AMIC), SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_AMIC),
SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82Jv", ALC269_AMIC), SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269VB_AMIC),
SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_AMIC), SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_AMIC),
SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_AMIC), SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_AMIC),
SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_AMIC), SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_AMIC),
......
...@@ -586,7 +586,12 @@ static hda_nid_t stac92hd83xxx_pin_nids[10] = { ...@@ -586,7 +586,12 @@ static hda_nid_t stac92hd83xxx_pin_nids[10] = {
0x0f, 0x10, 0x11, 0x1f, 0x20, 0x0f, 0x10, 0x11, 0x1f, 0x20,
}; };
static hda_nid_t stac92hd88xxx_pin_nids[10] = { static hda_nid_t stac92hd87xxx_pin_nids[6] = {
0x0a, 0x0b, 0x0c, 0x0d,
0x0f, 0x11,
};
static hda_nid_t stac92hd88xxx_pin_nids[8] = {
0x0a, 0x0b, 0x0c, 0x0d, 0x0a, 0x0b, 0x0c, 0x0d,
0x0f, 0x11, 0x1f, 0x20, 0x0f, 0x11, 0x1f, 0x20,
}; };
...@@ -5430,12 +5435,13 @@ static int patch_stac92hd83xxx(struct hda_codec *codec) ...@@ -5430,12 +5435,13 @@ static int patch_stac92hd83xxx(struct hda_codec *codec)
switch (codec->vendor_id) { switch (codec->vendor_id) {
case 0x111d76d1: case 0x111d76d1:
case 0x111d76d9: case 0x111d76d9:
case 0x111d76e5:
spec->dmic_nids = stac92hd87b_dmic_nids; spec->dmic_nids = stac92hd87b_dmic_nids;
spec->num_dmics = stac92xx_connected_ports(codec, spec->num_dmics = stac92xx_connected_ports(codec,
stac92hd87b_dmic_nids, stac92hd87b_dmic_nids,
STAC92HD87B_NUM_DMICS); STAC92HD87B_NUM_DMICS);
spec->num_pins = ARRAY_SIZE(stac92hd88xxx_pin_nids); spec->num_pins = ARRAY_SIZE(stac92hd87xxx_pin_nids);
spec->pin_nids = stac92hd88xxx_pin_nids; spec->pin_nids = stac92hd87xxx_pin_nids;
spec->mono_nid = 0; spec->mono_nid = 0;
spec->num_pwrs = 0; spec->num_pwrs = 0;
break; break;
...@@ -5443,6 +5449,7 @@ static int patch_stac92hd83xxx(struct hda_codec *codec) ...@@ -5443,6 +5449,7 @@ static int patch_stac92hd83xxx(struct hda_codec *codec)
case 0x111d7667: case 0x111d7667:
case 0x111d7668: case 0x111d7668:
case 0x111d7669: case 0x111d7669:
case 0x111d76e3:
spec->num_dmics = stac92xx_connected_ports(codec, spec->num_dmics = stac92xx_connected_ports(codec,
stac92hd88xxx_dmic_nids, stac92hd88xxx_dmic_nids,
STAC92HD88XXX_NUM_DMICS); STAC92HD88XXX_NUM_DMICS);
...@@ -6387,6 +6394,8 @@ static struct hda_codec_preset snd_hda_preset_sigmatel[] = { ...@@ -6387,6 +6394,8 @@ static struct hda_codec_preset snd_hda_preset_sigmatel[] = {
{ .id = 0x111d76cd, .name = "92HD89F2", .patch = patch_stac92hd73xx }, { .id = 0x111d76cd, .name = "92HD89F2", .patch = patch_stac92hd73xx },
{ .id = 0x111d76ce, .name = "92HD89F1", .patch = patch_stac92hd73xx }, { .id = 0x111d76ce, .name = "92HD89F1", .patch = patch_stac92hd73xx },
{ .id = 0x111d76e0, .name = "92HD91BXX", .patch = patch_stac92hd83xxx}, { .id = 0x111d76e0, .name = "92HD91BXX", .patch = patch_stac92hd83xxx},
{ .id = 0x111d76e3, .name = "92HD98BXX", .patch = patch_stac92hd83xxx},
{ .id = 0x111d76e5, .name = "92HD99BXX", .patch = patch_stac92hd83xxx},
{ .id = 0x111d76e7, .name = "92HD90BXX", .patch = patch_stac92hd83xxx}, { .id = 0x111d76e7, .name = "92HD90BXX", .patch = patch_stac92hd83xxx},
{} /* terminator */ {} /* terminator */
}; };
......
...@@ -367,7 +367,7 @@ static int cx20442_codec_remove(struct snd_soc_codec *codec) ...@@ -367,7 +367,7 @@ static int cx20442_codec_remove(struct snd_soc_codec *codec)
return 0; return 0;
} }
static const u8 cx20442_reg = CX20442_TELOUT | CX20442_MIC; static const u8 cx20442_reg;
static struct snd_soc_codec_driver cx20442_codec_dev = { static struct snd_soc_codec_driver cx20442_codec_dev = {
.probe = cx20442_codec_probe, .probe = cx20442_codec_probe,
......
...@@ -1482,7 +1482,7 @@ int wm8903_mic_detect(struct snd_soc_codec *codec, struct snd_soc_jack *jack, ...@@ -1482,7 +1482,7 @@ int wm8903_mic_detect(struct snd_soc_codec *codec, struct snd_soc_jack *jack,
WM8903_MICDET_EINT | WM8903_MICSHRT_EINT, WM8903_MICDET_EINT | WM8903_MICSHRT_EINT,
irq_mask); irq_mask);
if (det && shrt) { if (det || shrt) {
/* Enable mic detection, this may not have been set through /* Enable mic detection, this may not have been set through
* platform data (eg, if the defaults are OK). */ * platform data (eg, if the defaults are OK). */
snd_soc_update_bits(codec, WM8903_WRITE_SEQUENCER_0, snd_soc_update_bits(codec, WM8903_WRITE_SEQUENCER_0,
......
...@@ -165,7 +165,7 @@ extern int wm8903_mic_detect(struct snd_soc_codec *codec, ...@@ -165,7 +165,7 @@ extern int wm8903_mic_detect(struct snd_soc_codec *codec,
#define WM8903_VMID_RES_50K 2 #define WM8903_VMID_RES_50K 2
#define WM8903_VMID_RES_250K 3 #define WM8903_VMID_RES_250K 3
#define WM8903_VMID_RES_5K 4 #define WM8903_VMID_RES_5K 6
/* /*
* R8 (0x08) - Analogue DAC 0 * R8 (0x08) - Analogue DAC 0
......
This diff is collapsed.
...@@ -674,6 +674,9 @@ SND_SOC_DAPM_OUTPUT("LINEOUT2N"), ...@@ -674,6 +674,9 @@ SND_SOC_DAPM_OUTPUT("LINEOUT2N"),
}; };
static const struct snd_soc_dapm_route analogue_routes[] = { static const struct snd_soc_dapm_route analogue_routes[] = {
{ "MICBIAS1", NULL, "CLK_SYS" },
{ "MICBIAS2", NULL, "CLK_SYS" },
{ "IN1L PGA", "IN1LP Switch", "IN1LP" }, { "IN1L PGA", "IN1LP Switch", "IN1LP" },
{ "IN1L PGA", "IN1LN Switch", "IN1LN" }, { "IN1L PGA", "IN1LN Switch", "IN1LN" },
......
...@@ -79,7 +79,7 @@ static struct snd_soc_dai_link eukrea_tlv320_dai = { ...@@ -79,7 +79,7 @@ static struct snd_soc_dai_link eukrea_tlv320_dai = {
.name = "tlv320aic23", .name = "tlv320aic23",
.stream_name = "TLV320AIC23", .stream_name = "TLV320AIC23",
.codec_dai_name = "tlv320aic23-hifi", .codec_dai_name = "tlv320aic23-hifi",
.platform_name = "imx-pcm-audio.0", .platform_name = "imx-fiq-pcm-audio.0",
.codec_name = "tlv320aic23-codec.0-001a", .codec_name = "tlv320aic23-codec.0-001a",
.cpu_dai_name = "imx-ssi.0", .cpu_dai_name = "imx-ssi.0",
.ops = &eukrea_tlv320_snd_ops, .ops = &eukrea_tlv320_snd_ops,
......
...@@ -117,7 +117,7 @@ static struct snd_soc_dai_link e740_dai[] = { ...@@ -117,7 +117,7 @@ static struct snd_soc_dai_link e740_dai[] = {
{ {
.name = "AC97", .name = "AC97",
.stream_name = "AC97 HiFi", .stream_name = "AC97 HiFi",
.cpu_dai_name = "pxa-ac97.0", .cpu_dai_name = "pxa2xx-ac97",
.codec_dai_name = "wm9705-hifi", .codec_dai_name = "wm9705-hifi",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.codec_name = "wm9705-codec", .codec_name = "wm9705-codec",
...@@ -126,7 +126,7 @@ static struct snd_soc_dai_link e740_dai[] = { ...@@ -126,7 +126,7 @@ static struct snd_soc_dai_link e740_dai[] = {
{ {
.name = "AC97 Aux", .name = "AC97 Aux",
.stream_name = "AC97 Aux", .stream_name = "AC97 Aux",
.cpu_dai_name = "pxa-ac97.1", .cpu_dai_name = "pxa2xx-ac97-aux",
.codec_dai_name = "wm9705-aux", .codec_dai_name = "wm9705-aux",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.codec_name = "wm9705-codec", .codec_name = "wm9705-codec",
......
...@@ -99,7 +99,7 @@ static struct snd_soc_dai_link e750_dai[] = { ...@@ -99,7 +99,7 @@ static struct snd_soc_dai_link e750_dai[] = {
{ {
.name = "AC97", .name = "AC97",
.stream_name = "AC97 HiFi", .stream_name = "AC97 HiFi",
.cpu_dai_name = "pxa-ac97.0", .cpu_dai_name = "pxa2xx-ac97",
.codec_dai_name = "wm9705-hifi", .codec_dai_name = "wm9705-hifi",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.codec_name = "wm9705-codec", .codec_name = "wm9705-codec",
...@@ -109,7 +109,7 @@ static struct snd_soc_dai_link e750_dai[] = { ...@@ -109,7 +109,7 @@ static struct snd_soc_dai_link e750_dai[] = {
{ {
.name = "AC97 Aux", .name = "AC97 Aux",
.stream_name = "AC97 Aux", .stream_name = "AC97 Aux",
.cpu_dai_name = "pxa-ac97.1", .cpu_dai_name = "pxa2xx-ac97-aux",
.codec_dai_name ="wm9705-aux", .codec_dai_name ="wm9705-aux",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.codec_name = "wm9705-codec", .codec_name = "wm9705-codec",
......
...@@ -89,7 +89,7 @@ static struct snd_soc_dai_link e800_dai[] = { ...@@ -89,7 +89,7 @@ static struct snd_soc_dai_link e800_dai[] = {
{ {
.name = "AC97", .name = "AC97",
.stream_name = "AC97 HiFi", .stream_name = "AC97 HiFi",
.cpu_dai_name = "pxa-ac97.0", .cpu_dai_name = "pxa2xx-ac97",
.codec_dai_name = "wm9712-hifi", .codec_dai_name = "wm9712-hifi",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.codec_name = "wm9712-codec", .codec_name = "wm9712-codec",
...@@ -98,7 +98,7 @@ static struct snd_soc_dai_link e800_dai[] = { ...@@ -98,7 +98,7 @@ static struct snd_soc_dai_link e800_dai[] = {
{ {
.name = "AC97 Aux", .name = "AC97 Aux",
.stream_name = "AC97 Aux", .stream_name = "AC97 Aux",
.cpu_dai_name = "pxa-ac97.1", .cpu_dai_name = "pxa2xx-ac97-aux",
.codec_dai_name ="wm9712-aux", .codec_dai_name ="wm9712-aux",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.codec_name = "wm9712-codec", .codec_name = "wm9712-codec",
......
...@@ -37,7 +37,7 @@ static struct snd_soc_dai_link em_x270_dai[] = { ...@@ -37,7 +37,7 @@ static struct snd_soc_dai_link em_x270_dai[] = {
{ {
.name = "AC97", .name = "AC97",
.stream_name = "AC97 HiFi", .stream_name = "AC97 HiFi",
.cpu_dai_name = "pxa-ac97.0", .cpu_dai_name = "pxa2xx-ac97",
.codec_dai_name = "wm9712-hifi", .codec_dai_name = "wm9712-hifi",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.codec_name = "wm9712-codec", .codec_name = "wm9712-codec",
...@@ -45,7 +45,7 @@ static struct snd_soc_dai_link em_x270_dai[] = { ...@@ -45,7 +45,7 @@ static struct snd_soc_dai_link em_x270_dai[] = {
{ {
.name = "AC97 Aux", .name = "AC97 Aux",
.stream_name = "AC97 Aux", .stream_name = "AC97 Aux",
.cpu_dai_name = "pxa-ac97.1", .cpu_dai_name = "pxa2xx-ac97-aux",
.codec_dai_name ="wm9712-aux", .codec_dai_name ="wm9712-aux",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.codec_name = "wm9712-codec", .codec_name = "wm9712-codec",
......
...@@ -162,7 +162,7 @@ static struct snd_soc_dai_link mioa701_dai[] = { ...@@ -162,7 +162,7 @@ static struct snd_soc_dai_link mioa701_dai[] = {
{ {
.name = "AC97", .name = "AC97",
.stream_name = "AC97 HiFi", .stream_name = "AC97 HiFi",
.cpu_dai_name = "pxa-ac97.0", .cpu_dai_name = "pxa2xx-ac97",
.codec_dai_name = "wm9713-hifi", .codec_dai_name = "wm9713-hifi",
.codec_name = "wm9713-codec", .codec_name = "wm9713-codec",
.init = mioa701_wm9713_init, .init = mioa701_wm9713_init,
...@@ -172,7 +172,7 @@ static struct snd_soc_dai_link mioa701_dai[] = { ...@@ -172,7 +172,7 @@ static struct snd_soc_dai_link mioa701_dai[] = {
{ {
.name = "AC97 Aux", .name = "AC97 Aux",
.stream_name = "AC97 Aux", .stream_name = "AC97 Aux",
.cpu_dai_name = "pxa-ac97.1", .cpu_dai_name = "pxa2xx-ac97-aux",
.codec_dai_name ="wm9713-aux", .codec_dai_name ="wm9713-aux",
.codec_name = "wm9713-codec", .codec_name = "wm9713-codec",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
......
...@@ -132,7 +132,7 @@ static struct snd_soc_dai_link palm27x_dai[] = { ...@@ -132,7 +132,7 @@ static struct snd_soc_dai_link palm27x_dai[] = {
{ {
.name = "AC97 HiFi", .name = "AC97 HiFi",
.stream_name = "AC97 HiFi", .stream_name = "AC97 HiFi",
.cpu_dai_name = "pxa-ac97.0", .cpu_dai_name = "pxa2xx-ac97",
.codec_dai_name = "wm9712-hifi", .codec_dai_name = "wm9712-hifi",
.codec_name = "wm9712-codec", .codec_name = "wm9712-codec",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
...@@ -141,7 +141,7 @@ static struct snd_soc_dai_link palm27x_dai[] = { ...@@ -141,7 +141,7 @@ static struct snd_soc_dai_link palm27x_dai[] = {
{ {
.name = "AC97 Aux", .name = "AC97 Aux",
.stream_name = "AC97 Aux", .stream_name = "AC97 Aux",
.cpu_dai_name = "pxa-ac97.1", .cpu_dai_name = "pxa2xx-ac97-aux",
.codec_dai_name = "wm9712-aux", .codec_dai_name = "wm9712-aux",
.codec_name = "wm9712-codec", .codec_name = "wm9712-codec",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
......
...@@ -219,7 +219,7 @@ static struct snd_soc_dai_link tosa_dai[] = { ...@@ -219,7 +219,7 @@ static struct snd_soc_dai_link tosa_dai[] = {
{ {
.name = "AC97", .name = "AC97",
.stream_name = "AC97 HiFi", .stream_name = "AC97 HiFi",
.cpu_dai_name = "pxa-ac97.0", .cpu_dai_name = "pxa2xx-ac97",
.codec_dai_name = "wm9712-hifi", .codec_dai_name = "wm9712-hifi",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.codec_name = "wm9712-codec", .codec_name = "wm9712-codec",
...@@ -229,7 +229,7 @@ static struct snd_soc_dai_link tosa_dai[] = { ...@@ -229,7 +229,7 @@ static struct snd_soc_dai_link tosa_dai[] = {
{ {
.name = "AC97 Aux", .name = "AC97 Aux",
.stream_name = "AC97 Aux", .stream_name = "AC97 Aux",
.cpu_dai_name = "pxa-ac97.1", .cpu_dai_name = "pxa2xx-ac97-aux",
.codec_dai_name = "wm9712-aux", .codec_dai_name = "wm9712-aux",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.codec_name = "wm9712-codec", .codec_name = "wm9712-codec",
......
...@@ -166,7 +166,7 @@ static struct snd_soc_dai_link zylonite_dai[] = { ...@@ -166,7 +166,7 @@ static struct snd_soc_dai_link zylonite_dai[] = {
.stream_name = "AC97 HiFi", .stream_name = "AC97 HiFi",
.codec_name = "wm9713-codec", .codec_name = "wm9713-codec",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.cpu_dai_name = "pxa-ac97.0", .cpu_dai_name = "pxa2xx-ac97",
.codec_name = "wm9713-hifi", .codec_name = "wm9713-hifi",
.init = zylonite_wm9713_init, .init = zylonite_wm9713_init,
}, },
...@@ -175,7 +175,7 @@ static struct snd_soc_dai_link zylonite_dai[] = { ...@@ -175,7 +175,7 @@ static struct snd_soc_dai_link zylonite_dai[] = {
.stream_name = "AC97 Aux", .stream_name = "AC97 Aux",
.codec_name = "wm9713-codec", .codec_name = "wm9713-codec",
.platform_name = "pxa-pcm-audio", .platform_name = "pxa-pcm-audio",
.cpu_dai_name = "pxa-ac97.1", .cpu_dai_name = "pxa2xx-ac97-aux",
.codec_name = "wm9713-aux", .codec_name = "wm9713-aux",
}, },
{ {
......
...@@ -712,7 +712,15 @@ static int dapm_supply_check_power(struct snd_soc_dapm_widget *w) ...@@ -712,7 +712,15 @@ static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
!path->connected(path->source, path->sink)) !path->connected(path->source, path->sink))
continue; continue;
if (path->sink && path->sink->power_check && if (!path->sink)
continue;
if (path->sink->force) {
power = 1;
break;
}
if (path->sink->power_check &&
path->sink->power_check(path->sink)) { path->sink->power_check(path->sink)) {
power = 1; power = 1;
break; break;
...@@ -1627,6 +1635,7 @@ EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes); ...@@ -1627,6 +1635,7 @@ EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context *dapm) int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context *dapm)
{ {
struct snd_soc_dapm_widget *w; struct snd_soc_dapm_widget *w;
unsigned int val;
list_for_each_entry(w, &dapm->card->widgets, list) list_for_each_entry(w, &dapm->card->widgets, list)
{ {
...@@ -1675,6 +1684,18 @@ int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context *dapm) ...@@ -1675,6 +1684,18 @@ int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context *dapm)
case snd_soc_dapm_post: case snd_soc_dapm_post:
break; break;
} }
/* Read the initial power state from the device */
if (w->reg >= 0) {
val = snd_soc_read(w->codec, w->reg);
val &= 1 << w->shift;
if (w->invert)
val = !val;
if (val)
w->power = 1;
}
w->new = 1; w->new = 1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment