lkml.org 
[lkml]   [2020]   [Jun]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH AUTOSEL 5.6 135/606] ALSA: hda/realtek - Add supported new mute Led for HP
    Date
    From: Kailang Yang <kailang@realtek.com>

    [ Upstream commit 431e76c3edd76d84a0ed1eb81a286b2ddecc5ee4 ]

    HP Note Book supported new mute Led.
    Hardware PIN was not enough to meet old LED rule.
    JD2 to control playback mute led.
    GPO3 to control capture mute led.
    (ALC285 didn't control GPO3 via verb command)
    This two PIN just could control by COEF registers.

    [ corrected typos by tiwai ]

    Signed-off-by: Kailang Yang <kailang@realtek.com>
    Link: https://lore.kernel.org/r/6741211598ba499687362ff2aa30626b@realtek.com
    Signed-off-by: Takashi Iwai <tiwai@suse.de>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
    sound/pci/hda/patch_realtek.c | 81 +++++++++++++++++++++++++++++++++++
    1 file changed, 81 insertions(+)

    diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
    index d73c814358bf..44fbd5d2d89c 100644
    --- a/sound/pci/hda/patch_realtek.c
    +++ b/sound/pci/hda/patch_realtek.c
    @@ -86,6 +86,14 @@ struct alc_spec {

    unsigned int gpio_mute_led_mask;
    unsigned int gpio_mic_led_mask;
    + unsigned int mute_led_coef_idx;
    + unsigned int mute_led_coefbit_mask;
    + unsigned int mute_led_coefbit_on;
    + unsigned int mute_led_coefbit_off;
    + unsigned int mic_led_coef_idx;
    + unsigned int mic_led_coefbit_mask;
    + unsigned int mic_led_coefbit_on;
    + unsigned int mic_led_coefbit_off;

    hda_nid_t headset_mic_pin;
    hda_nid_t headphone_mic_pin;
    @@ -4182,6 +4190,73 @@ static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
    }
    }

    +/* update mute-LED according to the speaker mute state via COEF bit */
    +static void alc_fixup_mute_led_coefbit_hook(void *private_data, int enabled)
    +{
    + struct hda_codec *codec = private_data;
    + struct alc_spec *spec = codec->spec;
    +
    + if (spec->mute_led_polarity)
    + enabled = !enabled;
    +
    + /* temporarily power up/down for setting COEF bit */
    + enabled ? alc_update_coef_idx(codec, spec->mute_led_coef_idx,
    + spec->mute_led_coefbit_mask, spec->mute_led_coefbit_off) :
    + alc_update_coef_idx(codec, spec->mute_led_coef_idx,
    + spec->mute_led_coefbit_mask, spec->mute_led_coefbit_on);
    +}
    +
    +static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
    + const struct hda_fixup *fix,
    + int action)
    +{
    + struct alc_spec *spec = codec->spec;
    +
    + if (action == HDA_FIXUP_ACT_PRE_PROBE) {
    + spec->mute_led_polarity = 0;
    + spec->mute_led_coef_idx = 0x0b;
    + spec->mute_led_coefbit_mask = 1<<3;
    + spec->mute_led_coefbit_on = 1<<3;
    + spec->mute_led_coefbit_off = 0;
    + spec->gen.vmaster_mute.hook = alc_fixup_mute_led_coefbit_hook;
    + spec->gen.vmaster_mute_enum = 1;
    + }
    +}
    +
    +/* turn on/off mic-mute LED per capture hook by coef bit */
    +static void alc_hp_cap_micmute_update(struct hda_codec *codec)
    +{
    + struct alc_spec *spec = codec->spec;
    +
    + if (spec->gen.micmute_led.led_value)
    + alc_update_coef_idx(codec, spec->mic_led_coef_idx,
    + spec->mic_led_coefbit_mask, spec->mic_led_coefbit_on);
    + else
    + alc_update_coef_idx(codec, spec->mic_led_coef_idx,
    + spec->mic_led_coefbit_mask, spec->mic_led_coefbit_off);
    +}
    +
    +static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec,
    + const struct hda_fixup *fix, int action)
    +{
    + struct alc_spec *spec = codec->spec;
    +
    + if (action == HDA_FIXUP_ACT_PRE_PROBE) {
    + spec->mic_led_coef_idx = 0x19;
    + spec->mic_led_coefbit_mask = 1<<13;
    + spec->mic_led_coefbit_on = 1<<13;
    + spec->mic_led_coefbit_off = 0;
    + snd_hda_gen_add_micmute_led(codec, alc_hp_cap_micmute_update);
    + }
    +}
    +
    +static void alc285_fixup_hp_mute_led(struct hda_codec *codec,
    + const struct hda_fixup *fix, int action)
    +{
    + alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
    + alc285_fixup_hp_coef_micmute_led(codec, fix, action);
    +}
    +
    #if IS_REACHABLE(CONFIG_INPUT)
    static void gpio2_mic_hotkey_event(struct hda_codec *codec,
    struct hda_jack_callback *event)
    @@ -5980,6 +6055,7 @@ enum {
    ALC294_FIXUP_ASUS_HPE,
    ALC294_FIXUP_ASUS_COEF_1B,
    ALC285_FIXUP_HP_GPIO_LED,
    + ALC285_FIXUP_HP_MUTE_LED,
    };

    static const struct hda_fixup alc269_fixups[] = {
    @@ -7128,6 +7204,10 @@ static const struct hda_fixup alc269_fixups[] = {
    .type = HDA_FIXUP_FUNC,
    .v.func = alc285_fixup_hp_gpio_led,
    },
    + [ALC285_FIXUP_HP_MUTE_LED] = {
    + .type = HDA_FIXUP_FUNC,
    + .v.func = alc285_fixup_hp_mute_led,
    + },
    };

    static const struct snd_pci_quirk alc269_fixup_tbl[] = {
    @@ -7273,6 +7353,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
    SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
    SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
    SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_LED),
    + SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED),
    SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
    SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
    SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
    --
    2.25.1
    \
     
     \ /
      Last update: 2020-06-09 02:34    [W:4.582 / U:0.476 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site