Merge branch 'for-next' into for-linus
This commit is contained in:
@@ -96,6 +96,8 @@ struct alc_spec {
|
||||
hda_nid_t cap_mute_led_nid;
|
||||
|
||||
unsigned int gpio_led; /* used for alc269_fixup_hp_gpio_led() */
|
||||
unsigned int gpio_mute_led_mask;
|
||||
unsigned int gpio_mic_led_mask;
|
||||
|
||||
hda_nid_t headset_mic_pin;
|
||||
hda_nid_t headphone_mic_pin;
|
||||
@@ -3310,41 +3312,45 @@ static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
|
||||
}
|
||||
}
|
||||
|
||||
/* turn on/off mute LED per vmaster hook */
|
||||
static void alc269_fixup_hp_gpio_mute_hook(void *private_data, int enabled)
|
||||
/* update LED status via GPIO */
|
||||
static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
|
||||
bool enabled)
|
||||
{
|
||||
struct hda_codec *codec = private_data;
|
||||
struct alc_spec *spec = codec->spec;
|
||||
unsigned int oldval = spec->gpio_led;
|
||||
|
||||
if (spec->mute_led_polarity)
|
||||
enabled = !enabled;
|
||||
|
||||
if (enabled)
|
||||
spec->gpio_led &= ~0x08;
|
||||
spec->gpio_led &= ~mask;
|
||||
else
|
||||
spec->gpio_led |= 0x08;
|
||||
spec->gpio_led |= mask;
|
||||
if (spec->gpio_led != oldval)
|
||||
snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
|
||||
spec->gpio_led);
|
||||
}
|
||||
|
||||
/* turn on/off mic-mute LED per capture hook */
|
||||
static void alc269_fixup_hp_gpio_mic_mute_hook(struct hda_codec *codec,
|
||||
struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
/* turn on/off mute LED via GPIO per vmaster hook */
|
||||
static void alc_fixup_gpio_mute_hook(void *private_data, int enabled)
|
||||
{
|
||||
struct hda_codec *codec = private_data;
|
||||
struct alc_spec *spec = codec->spec;
|
||||
|
||||
alc_update_gpio_led(codec, spec->gpio_mute_led_mask, enabled);
|
||||
}
|
||||
|
||||
/* turn on/off mic-mute LED via GPIO per capture hook */
|
||||
static void alc_fixup_gpio_mic_mute_hook(struct hda_codec *codec,
|
||||
struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
struct alc_spec *spec = codec->spec;
|
||||
unsigned int oldval = spec->gpio_led;
|
||||
|
||||
if (!ucontrol)
|
||||
return;
|
||||
|
||||
if (ucontrol->value.integer.value[0] ||
|
||||
ucontrol->value.integer.value[1])
|
||||
spec->gpio_led &= ~0x10;
|
||||
else
|
||||
spec->gpio_led |= 0x10;
|
||||
if (spec->gpio_led != oldval)
|
||||
snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
|
||||
spec->gpio_led);
|
||||
if (ucontrol)
|
||||
alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
|
||||
ucontrol->value.integer.value[0] ||
|
||||
ucontrol->value.integer.value[1]);
|
||||
}
|
||||
|
||||
static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
|
||||
@@ -3358,9 +3364,33 @@ static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
|
||||
};
|
||||
|
||||
if (action == HDA_FIXUP_ACT_PRE_PROBE) {
|
||||
spec->gen.vmaster_mute.hook = alc269_fixup_hp_gpio_mute_hook;
|
||||
spec->gen.cap_sync_hook = alc269_fixup_hp_gpio_mic_mute_hook;
|
||||
spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
|
||||
spec->gen.cap_sync_hook = alc_fixup_gpio_mic_mute_hook;
|
||||
spec->gpio_led = 0;
|
||||
spec->mute_led_polarity = 0;
|
||||
spec->gpio_mute_led_mask = 0x08;
|
||||
spec->gpio_mic_led_mask = 0x10;
|
||||
snd_hda_add_verbs(codec, gpio_init);
|
||||
}
|
||||
}
|
||||
|
||||
static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
|
||||
const struct hda_fixup *fix, int action)
|
||||
{
|
||||
struct alc_spec *spec = codec->spec;
|
||||
static const struct hda_verb gpio_init[] = {
|
||||
{ 0x01, AC_VERB_SET_GPIO_MASK, 0x22 },
|
||||
{ 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x22 },
|
||||
{}
|
||||
};
|
||||
|
||||
if (action == HDA_FIXUP_ACT_PRE_PROBE) {
|
||||
spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
|
||||
spec->gen.cap_sync_hook = alc_fixup_gpio_mic_mute_hook;
|
||||
spec->gpio_led = 0;
|
||||
spec->mute_led_polarity = 0;
|
||||
spec->gpio_mute_led_mask = 0x02;
|
||||
spec->gpio_mic_led_mask = 0x20;
|
||||
snd_hda_add_verbs(codec, gpio_init);
|
||||
}
|
||||
}
|
||||
@@ -3402,9 +3432,11 @@ static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
|
||||
};
|
||||
|
||||
if (action == HDA_FIXUP_ACT_PRE_PROBE) {
|
||||
spec->gen.vmaster_mute.hook = alc269_fixup_hp_gpio_mute_hook;
|
||||
spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
|
||||
spec->gen.cap_sync_hook = alc269_fixup_hp_cap_mic_mute_hook;
|
||||
spec->gpio_led = 0;
|
||||
spec->mute_led_polarity = 0;
|
||||
spec->gpio_mute_led_mask = 0x08;
|
||||
spec->cap_mute_led_nid = 0x18;
|
||||
snd_hda_add_verbs(codec, gpio_init);
|
||||
codec->power_filter = led_power_filter;
|
||||
@@ -3423,9 +3455,11 @@ static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
|
||||
};
|
||||
|
||||
if (action == HDA_FIXUP_ACT_PRE_PROBE) {
|
||||
spec->gen.vmaster_mute.hook = alc269_fixup_hp_gpio_mute_hook;
|
||||
spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
|
||||
spec->gen.cap_sync_hook = alc269_fixup_hp_cap_mic_mute_hook;
|
||||
spec->gpio_led = 0;
|
||||
spec->mute_led_polarity = 0;
|
||||
spec->gpio_mute_led_mask = 0x08;
|
||||
spec->cap_mute_led_nid = 0x18;
|
||||
snd_hda_add_verbs(codec, gpio_init);
|
||||
codec->power_filter = led_power_filter;
|
||||
@@ -4300,6 +4334,7 @@ enum {
|
||||
ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED,
|
||||
ALC282_FIXUP_ASPIRE_V5_PINS,
|
||||
ALC280_FIXUP_HP_GPIO4,
|
||||
ALC286_FIXUP_HP_GPIO_LED,
|
||||
};
|
||||
|
||||
static const struct hda_fixup alc269_fixups[] = {
|
||||
@@ -4769,6 +4804,10 @@ static const struct hda_fixup alc269_fixups[] = {
|
||||
.type = HDA_FIXUP_FUNC,
|
||||
.v.func = alc280_fixup_hp_gpio4,
|
||||
},
|
||||
[ALC286_FIXUP_HP_GPIO_LED] = {
|
||||
.type = HDA_FIXUP_FUNC,
|
||||
.v.func = alc286_fixup_hp_gpio_led,
|
||||
},
|
||||
};
|
||||
|
||||
static const struct snd_pci_quirk alc269_fixup_tbl[] = {
|
||||
@@ -4809,6 +4848,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
|
||||
SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
|
||||
SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
|
||||
SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
|
||||
SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
|
||||
SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
|
||||
SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
|
||||
SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
|
||||
@@ -5698,22 +5738,6 @@ static void alc_fixup_bass_chmap(struct hda_codec *codec,
|
||||
}
|
||||
}
|
||||
|
||||
/* turn on/off mute LED per vmaster hook */
|
||||
static void alc662_led_gpio1_mute_hook(void *private_data, int enabled)
|
||||
{
|
||||
struct hda_codec *codec = private_data;
|
||||
struct alc_spec *spec = codec->spec;
|
||||
unsigned int oldval = spec->gpio_led;
|
||||
|
||||
if (enabled)
|
||||
spec->gpio_led |= 0x01;
|
||||
else
|
||||
spec->gpio_led &= ~0x01;
|
||||
if (spec->gpio_led != oldval)
|
||||
snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
|
||||
spec->gpio_led);
|
||||
}
|
||||
|
||||
/* avoid D3 for keeping GPIO up */
|
||||
static unsigned int gpio_led_power_filter(struct hda_codec *codec,
|
||||
hda_nid_t nid,
|
||||
@@ -5736,8 +5760,10 @@ static void alc662_fixup_led_gpio1(struct hda_codec *codec,
|
||||
};
|
||||
|
||||
if (action == HDA_FIXUP_ACT_PRE_PROBE) {
|
||||
spec->gen.vmaster_mute.hook = alc662_led_gpio1_mute_hook;
|
||||
spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
|
||||
spec->gpio_led = 0;
|
||||
spec->mute_led_polarity = 1;
|
||||
spec->gpio_mute_led_mask = 0x01;
|
||||
snd_hda_add_verbs(codec, gpio_init);
|
||||
codec->power_filter = gpio_led_power_filter;
|
||||
}
|
||||
|
Reference in New Issue
Block a user