From: Greg Kroah-Hartman Date: Mon, 14 Jan 2019 10:51:23 +0000 (+0100) Subject: 4.14-stable patches X-Git-Tag: v4.20.3~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a62e968df3cb2c20b2b6ffd4fc3f632c43c7d410;p=thirdparty%2Fkernel%2Fstable-queue.git 4.14-stable patches added patches: alsa-hda-realtek-add-unplug-function-into-unplug-state-of-headset-mode-for-alc225.patch alsa-hda-realtek-disable-headset-mic-vref-for-headset-mode-of-alc225.patch alsa-hda-realtek-support-dell-headset-mode-for-new-aio-platform.patch --- diff --git a/queue-4.14/alsa-hda-realtek-add-unplug-function-into-unplug-state-of-headset-mode-for-alc225.patch b/queue-4.14/alsa-hda-realtek-add-unplug-function-into-unplug-state-of-headset-mode-for-alc225.patch new file mode 100644 index 00000000000..c366f9d7b35 --- /dev/null +++ b/queue-4.14/alsa-hda-realtek-add-unplug-function-into-unplug-state-of-headset-mode-for-alc225.patch @@ -0,0 +1,31 @@ +From 4d4b0c52bde470c379f5d168d5c139ad866cb808 Mon Sep 17 00:00:00 2001 +From: Kailang Yang +Date: Wed, 9 Jan 2019 16:23:37 +0800 +Subject: ALSA: hda/realtek - Add unplug function into unplug state of Headset Mode for ALC225 + +From: Kailang Yang + +commit 4d4b0c52bde470c379f5d168d5c139ad866cb808 upstream. + +Forgot to add unplug function to unplug state of headset mode +for ALC225. + +Signed-off-by: Kailang Yang +Cc: +Signed-off-by: Takashi Iwai +Signed-off-by: Greg Kroah-Hartman + +--- + sound/pci/hda/patch_realtek.c | 1 + + 1 file changed, 1 insertion(+) + +--- a/sound/pci/hda/patch_realtek.c ++++ b/sound/pci/hda/patch_realtek.c +@@ -4005,6 +4005,7 @@ static void alc_headset_mode_unplugged(s + case 0x10ec0225: + case 0x10ec0295: + case 0x10ec0299: ++ alc_process_coef_fw(codec, alc225_pre_hsmode); + alc_process_coef_fw(codec, coef0225); + break; + case 0x10ec0867: diff --git a/queue-4.14/alsa-hda-realtek-disable-headset-mic-vref-for-headset-mode-of-alc225.patch b/queue-4.14/alsa-hda-realtek-disable-headset-mic-vref-for-headset-mode-of-alc225.patch new file mode 100644 index 00000000000..503dfa54a0d --- /dev/null +++ b/queue-4.14/alsa-hda-realtek-disable-headset-mic-vref-for-headset-mode-of-alc225.patch @@ -0,0 +1,69 @@ +From d1dd42110d2727e81b9265841a62bc84c454c3a2 Mon Sep 17 00:00:00 2001 +From: Kailang Yang +Date: Wed, 9 Jan 2019 17:05:24 +0800 +Subject: ALSA: hda/realtek - Disable headset Mic VREF for headset mode of ALC225 + +From: Kailang Yang + +commit d1dd42110d2727e81b9265841a62bc84c454c3a2 upstream. + +Disable Headset Mic VREF for headset mode of ALC225. +This will be controlled by coef bits of headset mode functions. + +[ Fixed a compile warning and code simplification -- tiwai ] + +Signed-off-by: Kailang Yang +Cc: +Signed-off-by: Takashi Iwai +Signed-off-by: Greg Kroah-Hartman + +--- + sound/pci/hda/patch_realtek.c | 16 +++++++++++++++- + 1 file changed, 15 insertions(+), 1 deletion(-) + +--- a/sound/pci/hda/patch_realtek.c ++++ b/sound/pci/hda/patch_realtek.c +@@ -5253,6 +5253,13 @@ static void alc274_fixup_bind_dacs(struc + spec->gen.preferred_dacs = preferred_pairs; + } + ++static void alc_fixup_disable_mic_vref(struct hda_codec *codec, ++ const struct hda_fixup *fix, int action) ++{ ++ if (action == HDA_FIXUP_ACT_PRE_PROBE) ++ snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ); ++} ++ + /* for hda_fixup_thinkpad_acpi() */ + #include "thinkpad_helper.c" + +@@ -5362,6 +5369,7 @@ enum { + ALC293_FIXUP_LENOVO_SPK_NOISE, + ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, + ALC255_FIXUP_DELL_SPK_NOISE, ++ ALC225_FIXUP_DISABLE_MIC_VREF, + ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, + ALC295_FIXUP_DISABLE_DAC3, + ALC280_FIXUP_HP_HEADSET_MIC, +@@ -6063,6 +6071,12 @@ static const struct hda_fixup alc269_fix + .chained = true, + .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE + }, ++ [ALC225_FIXUP_DISABLE_MIC_VREF] = { ++ .type = HDA_FIXUP_FUNC, ++ .v.func = alc_fixup_disable_mic_vref, ++ .chained = true, ++ .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE ++ }, + [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = { + .type = HDA_FIXUP_VERBS, + .v.verbs = (const struct hda_verb[]) { +@@ -6072,7 +6086,7 @@ static const struct hda_fixup alc269_fix + {} + }, + .chained = true, +- .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE ++ .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF + }, + [ALC280_FIXUP_HP_HEADSET_MIC] = { + .type = HDA_FIXUP_FUNC, diff --git a/queue-4.14/alsa-hda-realtek-support-dell-headset-mode-for-new-aio-platform.patch b/queue-4.14/alsa-hda-realtek-support-dell-headset-mode-for-new-aio-platform.patch new file mode 100644 index 00000000000..38a18593687 --- /dev/null +++ b/queue-4.14/alsa-hda-realtek-support-dell-headset-mode-for-new-aio-platform.patch @@ -0,0 +1,31 @@ +From c2a7c55a04065c3b0c32d23b099db7ea1dbf6250 Mon Sep 17 00:00:00 2001 +From: Kailang Yang +Date: Thu, 3 Jan 2019 15:53:39 +0800 +Subject: ALSA: hda/realtek - Support Dell headset mode for New AIO platform + +From: Kailang Yang + +commit c2a7c55a04065c3b0c32d23b099db7ea1dbf6250 upstream. + +Dell has new platform for ALC274. +This will support to enable headset mode. + +Signed-off-by: Kailang Yang +Cc: +Signed-off-by: Takashi Iwai +Signed-off-by: Greg Kroah-Hartman + +--- + sound/pci/hda/patch_realtek.c | 1 + + 1 file changed, 1 insertion(+) + +--- a/sound/pci/hda/patch_realtek.c ++++ b/sound/pci/hda/patch_realtek.c +@@ -6311,6 +6311,7 @@ static const struct snd_pci_quirk alc269 + SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC), + SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC), + SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB), ++ SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB), + SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), + SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), + SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2), diff --git a/queue-4.14/series b/queue-4.14/series index a6c874055be..9ed8125148b 100644 --- a/queue-4.14/series +++ b/queue-4.14/series @@ -1,2 +1,5 @@ x86-kvm-move-qemu-guest-fpu-switching-out-to-vcpu_run.patch x86-modpost-replace-last-remnants-of-retpoline-with-config_retpoline.patch +alsa-hda-realtek-support-dell-headset-mode-for-new-aio-platform.patch +alsa-hda-realtek-add-unplug-function-into-unplug-state-of-headset-mode-for-alc225.patch +alsa-hda-realtek-disable-headset-mic-vref-for-headset-mode-of-alc225.patch