ALSA: hda: 92hd73xx fixes
Added support for defining the number of amps and the creation of the private_dimux dynamically for the 92hd73xx codec family. Signed-off-by: Matthew Ranostay <mranostay@embeddedalley.com> [Fixed a typo by tiwai] Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
418c8f8991
commit
2a9c781608
|
@ -157,13 +157,11 @@ struct sigmatel_spec {
|
||||||
unsigned int num_pwrs;
|
unsigned int num_pwrs;
|
||||||
unsigned int *pwr_mapping;
|
unsigned int *pwr_mapping;
|
||||||
hda_nid_t *pwr_nids;
|
hda_nid_t *pwr_nids;
|
||||||
hda_nid_t *amp_nids;
|
|
||||||
hda_nid_t *dac_list;
|
hda_nid_t *dac_list;
|
||||||
|
|
||||||
/* playback */
|
/* playback */
|
||||||
struct hda_input_mux *mono_mux;
|
struct hda_input_mux *mono_mux;
|
||||||
struct hda_input_mux *amp_mux;
|
struct hda_input_mux *amp_mux;
|
||||||
unsigned int cur_amux;
|
|
||||||
unsigned int cur_mmux;
|
unsigned int cur_mmux;
|
||||||
struct hda_multi_out multiout;
|
struct hda_multi_out multiout;
|
||||||
hda_nid_t dac_nids[5];
|
hda_nid_t dac_nids[5];
|
||||||
|
@ -202,6 +200,9 @@ struct sigmatel_spec {
|
||||||
unsigned int cur_mux[3];
|
unsigned int cur_mux[3];
|
||||||
struct hda_input_mux *sinput_mux;
|
struct hda_input_mux *sinput_mux;
|
||||||
unsigned int cur_smux[2];
|
unsigned int cur_smux[2];
|
||||||
|
unsigned int cur_amux;
|
||||||
|
hda_nid_t *amp_nids;
|
||||||
|
unsigned int num_amps;
|
||||||
unsigned int powerdown_adcs;
|
unsigned int powerdown_adcs;
|
||||||
|
|
||||||
/* i/o switches */
|
/* i/o switches */
|
||||||
|
@ -248,8 +249,9 @@ static hda_nid_t stac92hd73xx_adc_nids[2] = {
|
||||||
0x1a, 0x1b
|
0x1a, 0x1b
|
||||||
};
|
};
|
||||||
|
|
||||||
static hda_nid_t stac92hd73xx_amp_nids[4] = {
|
#define DELL_M6_AMP 2
|
||||||
0x0b, 0x0c, 0x0e, 0
|
static hda_nid_t stac92hd73xx_amp_nids[3] = {
|
||||||
|
0x0b, 0x0c, 0x0e
|
||||||
};
|
};
|
||||||
|
|
||||||
#define STAC92HD73XX_NUM_DMICS 2
|
#define STAC92HD73XX_NUM_DMICS 2
|
||||||
|
@ -964,7 +966,25 @@ static struct snd_kcontrol_new stac9200_mixer[] = {
|
||||||
{ } /* end */
|
{ } /* end */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define DELL_M6_MIXER 6
|
||||||
static struct snd_kcontrol_new stac92hd73xx_6ch_mixer[] = {
|
static struct snd_kcontrol_new stac92hd73xx_6ch_mixer[] = {
|
||||||
|
/* start of config #1 */
|
||||||
|
HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
|
||||||
|
HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
|
||||||
|
|
||||||
|
HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
|
||||||
|
HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
|
||||||
|
|
||||||
|
HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
|
||||||
|
HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
|
||||||
|
|
||||||
|
/* start of config #2 */
|
||||||
|
HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
|
||||||
|
HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
|
||||||
|
|
||||||
|
HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
|
||||||
|
HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
|
||||||
|
|
||||||
STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
|
STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
|
||||||
|
|
||||||
HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
|
HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
|
||||||
|
@ -973,20 +993,6 @@ static struct snd_kcontrol_new stac92hd73xx_6ch_mixer[] = {
|
||||||
HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
|
HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
|
||||||
HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
|
HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
|
||||||
|
|
||||||
HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
|
|
||||||
HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
|
|
||||||
|
|
||||||
HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
|
|
||||||
HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
|
|
||||||
|
|
||||||
HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
|
|
||||||
HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
|
|
||||||
|
|
||||||
HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
|
|
||||||
HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
|
|
||||||
|
|
||||||
HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
|
|
||||||
HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
|
|
||||||
{ } /* end */
|
{ } /* end */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2959,17 +2965,19 @@ static int stac92xx_auto_create_amp_output_ctls(struct hda_codec *codec)
|
||||||
struct hda_input_mux *amp_mux = &spec->private_amp_mux;
|
struct hda_input_mux *amp_mux = &spec->private_amp_mux;
|
||||||
int i, err;
|
int i, err;
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(stac92xx_amp_labels); i++) {
|
for (i = 0; i < spec->num_amps; i++) {
|
||||||
amp_mux->items[amp_mux->num_items].label =
|
amp_mux->items[amp_mux->num_items].label =
|
||||||
stac92xx_amp_labels[i];
|
stac92xx_amp_labels[i];
|
||||||
amp_mux->items[amp_mux->num_items].index = i;
|
amp_mux->items[amp_mux->num_items].index = i;
|
||||||
amp_mux->num_items++;
|
amp_mux->num_items++;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_MUX,
|
if (spec->num_amps > 1) {
|
||||||
"Amp Selector Capture Switch", 0);
|
err = stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_MUX,
|
||||||
if (err < 0)
|
"Amp Selector Capture Switch", 0);
|
||||||
return err;
|
if (err < 0)
|
||||||
|
return err;
|
||||||
|
}
|
||||||
return stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_VOL,
|
return stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_VOL,
|
||||||
"Amp Capture Volume",
|
"Amp Capture Volume",
|
||||||
HDA_COMPOSE_AMP_VAL(spec->amp_nids[0], 3, 0, HDA_INPUT));
|
HDA_COMPOSE_AMP_VAL(spec->amp_nids[0], 3, 0, HDA_INPUT));
|
||||||
|
@ -3345,12 +3353,12 @@ static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
if (spec->amp_nids) {
|
if (spec->num_amps > 0) {
|
||||||
err = stac92xx_auto_create_amp_output_ctls(codec);
|
err = stac92xx_auto_create_amp_output_ctls(codec);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
if (spec->num_dmics > 0)
|
if (spec->num_dmics > 0 && !spec->dinput_mux)
|
||||||
if ((err = stac92xx_auto_create_dmic_input_ctls(codec,
|
if ((err = stac92xx_auto_create_dmic_input_ctls(codec,
|
||||||
&spec->autocfg)) < 0)
|
&spec->autocfg)) < 0)
|
||||||
return err;
|
return err;
|
||||||
|
@ -3378,8 +3386,7 @@ static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out
|
||||||
spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
|
spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
|
||||||
|
|
||||||
spec->input_mux = &spec->private_imux;
|
spec->input_mux = &spec->private_imux;
|
||||||
if (!spec->dinput_mux)
|
spec->dinput_mux = &spec->private_dimux;
|
||||||
spec->dinput_mux = &spec->private_dimux;
|
|
||||||
spec->sinput_mux = &spec->private_smux;
|
spec->sinput_mux = &spec->private_smux;
|
||||||
spec->mono_mux = &spec->private_mono_mux;
|
spec->mono_mux = &spec->private_mono_mux;
|
||||||
spec->amp_mux = &spec->private_amp_mux;
|
spec->amp_mux = &spec->private_amp_mux;
|
||||||
|
@ -3978,9 +3985,9 @@ static struct hda_input_mux stac92hd73xx_dmux = {
|
||||||
.num_items = 4,
|
.num_items = 4,
|
||||||
.items = {
|
.items = {
|
||||||
{ "Analog Inputs", 0x0b },
|
{ "Analog Inputs", 0x0b },
|
||||||
{ "CD", 0x08 },
|
|
||||||
{ "Digital Mic 1", 0x09 },
|
{ "Digital Mic 1", 0x09 },
|
||||||
{ "Digital Mic 2", 0x0a },
|
{ "Digital Mic 2", 0x0a },
|
||||||
|
{ "CD", 0x08 },
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -4051,12 +4058,14 @@ again:
|
||||||
spec->dmux_nids = stac92hd73xx_dmux_nids;
|
spec->dmux_nids = stac92hd73xx_dmux_nids;
|
||||||
spec->smux_nids = stac92hd73xx_smux_nids;
|
spec->smux_nids = stac92hd73xx_smux_nids;
|
||||||
spec->amp_nids = stac92hd73xx_amp_nids;
|
spec->amp_nids = stac92hd73xx_amp_nids;
|
||||||
|
spec->num_amps = ARRAY_SIZE(stac92hd73xx_amp_nids);
|
||||||
|
|
||||||
spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids);
|
spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids);
|
||||||
spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids);
|
spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids);
|
||||||
spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids);
|
spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids);
|
||||||
spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
|
memcpy(&spec->private_dimux, &stac92hd73xx_dmux,
|
||||||
spec->dinput_mux = &stac92hd73xx_dmux;
|
sizeof(stac92hd73xx_dmux));
|
||||||
|
|
||||||
/* GPIO0 High = Enable EAPD */
|
/* GPIO0 High = Enable EAPD */
|
||||||
spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
|
spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
|
||||||
spec->gpio_data = 0x01;
|
spec->gpio_data = 0x01;
|
||||||
|
@ -4064,11 +4073,18 @@ again:
|
||||||
switch (spec->board_config) {
|
switch (spec->board_config) {
|
||||||
case STAC_DELL_M6:
|
case STAC_DELL_M6:
|
||||||
spec->init = dell_eq_core_init;
|
spec->init = dell_eq_core_init;
|
||||||
|
spec->num_smuxes = 0;
|
||||||
|
spec->multiout.hp_nid =
|
||||||
|
spec->multiout.dac_nids[spec->multiout.num_dacs - 1];
|
||||||
|
spec->mixer = &stac92hd73xx_6ch_mixer[DELL_M6_MIXER];
|
||||||
|
spec->amp_nids = &stac92hd73xx_amp_nids[DELL_M6_AMP];
|
||||||
|
spec->num_amps = 1;
|
||||||
switch (codec->subsystem_id) {
|
switch (codec->subsystem_id) {
|
||||||
case 0x1028025e: /* Analog Mics */
|
case 0x1028025e: /* Analog Mics */
|
||||||
case 0x1028025f:
|
case 0x1028025f:
|
||||||
stac92xx_set_config_reg(codec, 0x0b, 0x90A70170);
|
stac92xx_set_config_reg(codec, 0x0b, 0x90A70170);
|
||||||
spec->num_dmics = 0;
|
spec->num_dmics = 0;
|
||||||
|
spec->private_dimux.num_items = 1;
|
||||||
break;
|
break;
|
||||||
case 0x10280271: /* Digital Mics */
|
case 0x10280271: /* Digital Mics */
|
||||||
case 0x10280272:
|
case 0x10280272:
|
||||||
|
@ -4078,18 +4094,22 @@ again:
|
||||||
case 0x10280255:
|
case 0x10280255:
|
||||||
stac92xx_set_config_reg(codec, 0x13, 0x90A60160);
|
stac92xx_set_config_reg(codec, 0x13, 0x90A60160);
|
||||||
spec->num_dmics = 1;
|
spec->num_dmics = 1;
|
||||||
|
spec->private_dimux.num_items = 2;
|
||||||
break;
|
break;
|
||||||
case 0x10280256: /* Both */
|
case 0x10280256: /* Both */
|
||||||
case 0x10280057:
|
case 0x10280057:
|
||||||
stac92xx_set_config_reg(codec, 0x0b, 0x90A70170);
|
stac92xx_set_config_reg(codec, 0x0b, 0x90A70170);
|
||||||
stac92xx_set_config_reg(codec, 0x13, 0x90A60160);
|
stac92xx_set_config_reg(codec, 0x13, 0x90A60160);
|
||||||
spec->num_dmics = 1;
|
spec->num_dmics = 1;
|
||||||
|
spec->private_dimux.num_items = 2;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
spec->num_dmics = STAC92HD73XX_NUM_DMICS;
|
spec->num_dmics = STAC92HD73XX_NUM_DMICS;
|
||||||
|
spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
|
||||||
}
|
}
|
||||||
|
spec->dinput_mux = &spec->private_dimux;
|
||||||
|
|
||||||
spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
|
spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
|
||||||
spec->pwr_nids = stac92hd73xx_pwr_nids;
|
spec->pwr_nids = stac92hd73xx_pwr_nids;
|
||||||
|
|
Loading…
Reference in New Issue