All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286
@ 2019-03-15  9:51 Jian-Hong Pan
  2019-03-15 11:24   ` Takashi Iwai
  0 siblings, 1 reply; 6+ messages in thread
From: Jian-Hong Pan @ 2019-03-15  9:51 UTC (permalink / raw)
  To: Takashi Iwai, Kailang Yang; +Cc: alsa-devel, linux-kernel, linux, Jian-Hong Pan

Some Acer AIO desktops like Veriton Z6860G, Z4860G and Z4660G cannot
record sound from headset MIC.  This patch adds the
ALC286_FIXUP_ACER_AIO_HEADSET_MIC quirk to fix this issue.

Signed-off-by: Jian-Hong Pan <jian-hong@endlessm.com>
---
v2: According to Realtek's suggestion, change the COEF 0x4f from 0xd429 to
    0x5029.  Thanks to Realtek!

 sound/pci/hda/patch_realtek.c | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 384719d5c44e..191830d4fa40 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -5687,6 +5687,7 @@ enum {
 	ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
 	ALC225_FIXUP_WYSE_AUTO_MUTE,
 	ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
+	ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
 };
 
 static const struct hda_fixup alc269_fixups[] = {
@@ -6685,6 +6686,16 @@ static const struct hda_fixup alc269_fixups[] = {
 		.chained = true,
 		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
 	},
+	[ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
+		.type = HDA_FIXUP_VERBS,
+		.v.verbs = (const struct hda_verb[]) {
+			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
+			{ 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
+			{ }
+		},
+		.chained = true,
+		.chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
+	},
 };
 
 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
@@ -6701,9 +6712,9 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
 	SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
 	SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
 	SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
-	SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
-	SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
-	SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
+	SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
+	SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
+	SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
 	SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
 	SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
 	SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286
  2019-03-15  9:51 [PATCH v2] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286 Jian-Hong Pan
@ 2019-03-15 11:24   ` Takashi Iwai
  0 siblings, 0 replies; 6+ messages in thread
From: Takashi Iwai @ 2019-03-15 11:24 UTC (permalink / raw)
  To: Jian-Hong Pan; +Cc: Kailang Yang, alsa-devel, linux, linux-kernel

On Fri, 15 Mar 2019 10:51:09 +0100,
Jian-Hong Pan wrote:
> 
> Some Acer AIO desktops like Veriton Z6860G, Z4860G and Z4660G cannot
> record sound from headset MIC.  This patch adds the
> ALC286_FIXUP_ACER_AIO_HEADSET_MIC quirk to fix this issue.
> 
> Signed-off-by: Jian-Hong Pan <jian-hong@endlessm.com>
> ---
> v2: According to Realtek's suggestion, change the COEF 0x4f from 0xd429 to
>     0x5029.  Thanks to Realtek!

It'd be nicer if we get either Acked-by or Reviewed-by tag from
Realtek.  Kailang?


thanks,

Takashi

> 
>  sound/pci/hda/patch_realtek.c | 17 ++++++++++++++---
>  1 file changed, 14 insertions(+), 3 deletions(-)
> 
> diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
> index 384719d5c44e..191830d4fa40 100644
> --- a/sound/pci/hda/patch_realtek.c
> +++ b/sound/pci/hda/patch_realtek.c
> @@ -5687,6 +5687,7 @@ enum {
>  	ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
>  	ALC225_FIXUP_WYSE_AUTO_MUTE,
>  	ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
> +	ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
>  };
>  
>  static const struct hda_fixup alc269_fixups[] = {
> @@ -6685,6 +6686,16 @@ static const struct hda_fixup alc269_fixups[] = {
>  		.chained = true,
>  		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
>  	},
> +	[ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
> +		.type = HDA_FIXUP_VERBS,
> +		.v.verbs = (const struct hda_verb[]) {
> +			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
> +			{ 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
> +			{ }
> +		},
> +		.chained = true,
> +		.chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
> +	},
>  };
>  
>  static const struct snd_pci_quirk alc269_fixup_tbl[] = {
> @@ -6701,9 +6712,9 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
>  	SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
>  	SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
>  	SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
> -	SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> -	SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> -	SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> +	SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> +	SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> +	SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
>  	SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
>  	SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
>  	SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
> -- 
> 2.20.1
> 
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286
@ 2019-03-15 11:24   ` Takashi Iwai
  0 siblings, 0 replies; 6+ messages in thread
From: Takashi Iwai @ 2019-03-15 11:24 UTC (permalink / raw)
  To: Jian-Hong Pan; +Cc: Kailang Yang, alsa-devel, linux, linux-kernel

On Fri, 15 Mar 2019 10:51:09 +0100,
Jian-Hong Pan wrote:
> 
> Some Acer AIO desktops like Veriton Z6860G, Z4860G and Z4660G cannot
> record sound from headset MIC.  This patch adds the
> ALC286_FIXUP_ACER_AIO_HEADSET_MIC quirk to fix this issue.
> 
> Signed-off-by: Jian-Hong Pan <jian-hong@endlessm.com>
> ---
> v2: According to Realtek's suggestion, change the COEF 0x4f from 0xd429 to
>     0x5029.  Thanks to Realtek!

It'd be nicer if we get either Acked-by or Reviewed-by tag from
Realtek.  Kailang?


thanks,

Takashi

> 
>  sound/pci/hda/patch_realtek.c | 17 ++++++++++++++---
>  1 file changed, 14 insertions(+), 3 deletions(-)
> 
> diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
> index 384719d5c44e..191830d4fa40 100644
> --- a/sound/pci/hda/patch_realtek.c
> +++ b/sound/pci/hda/patch_realtek.c
> @@ -5687,6 +5687,7 @@ enum {
>  	ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
>  	ALC225_FIXUP_WYSE_AUTO_MUTE,
>  	ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
> +	ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
>  };
>  
>  static const struct hda_fixup alc269_fixups[] = {
> @@ -6685,6 +6686,16 @@ static const struct hda_fixup alc269_fixups[] = {
>  		.chained = true,
>  		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
>  	},
> +	[ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
> +		.type = HDA_FIXUP_VERBS,
> +		.v.verbs = (const struct hda_verb[]) {
> +			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
> +			{ 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
> +			{ }
> +		},
> +		.chained = true,
> +		.chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
> +	},
>  };
>  
>  static const struct snd_pci_quirk alc269_fixup_tbl[] = {
> @@ -6701,9 +6712,9 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
>  	SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
>  	SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
>  	SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
> -	SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> -	SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> -	SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> +	SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> +	SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> +	SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
>  	SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
>  	SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
>  	SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
> -- 
> 2.20.1
> 
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286
  2019-03-15 11:24   ` Takashi Iwai
  (?)
@ 2019-03-20  5:05   ` Jian-Hong Pan
  2019-03-21  2:37     ` Kailang
  -1 siblings, 1 reply; 6+ messages in thread
From: Jian-Hong Pan @ 2019-03-20  5:05 UTC (permalink / raw)
  To: Takashi Iwai
  Cc: Kailang Yang, alsa-devel, Linux Upstreaming Team, Linux Kernel

Takashi Iwai <tiwai@suse.de> 於 2019年3月15日 週五 下午7:24寫道:
>
> On Fri, 15 Mar 2019 10:51:09 +0100,
> Jian-Hong Pan wrote:
> >
> > Some Acer AIO desktops like Veriton Z6860G, Z4860G and Z4660G cannot
> > record sound from headset MIC.  This patch adds the
> > ALC286_FIXUP_ACER_AIO_HEADSET_MIC quirk to fix this issue.
> >
> > Signed-off-by: Jian-Hong Pan <jian-hong@endlessm.com>
> > ---
> > v2: According to Realtek's suggestion, change the COEF 0x4f from 0xd429 to
> >     0x5029.  Thanks to Realtek!
>
> It'd be nicer if we get either Acked-by or Reviewed-by tag from
> Realtek.  Kailang?

Hi Kailang,

May we have your Acked-by or Reviewed-by tag for this patch?
Signed-off will also be great!

Thank you
Jian-Hong Pan

> thanks,
>
> Takashi
>
> >
> >  sound/pci/hda/patch_realtek.c | 17 ++++++++++++++---
> >  1 file changed, 14 insertions(+), 3 deletions(-)
> >
> > diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
> > index 384719d5c44e..191830d4fa40 100644
> > --- a/sound/pci/hda/patch_realtek.c
> > +++ b/sound/pci/hda/patch_realtek.c
> > @@ -5687,6 +5687,7 @@ enum {
> >       ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
> >       ALC225_FIXUP_WYSE_AUTO_MUTE,
> >       ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
> > +     ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
> >  };
> >
> >  static const struct hda_fixup alc269_fixups[] = {
> > @@ -6685,6 +6686,16 @@ static const struct hda_fixup alc269_fixups[] = {
> >               .chained = true,
> >               .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
> >       },
> > +     [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
> > +             .type = HDA_FIXUP_VERBS,
> > +             .v.verbs = (const struct hda_verb[]) {
> > +                     { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
> > +                     { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
> > +                     { }
> > +             },
> > +             .chained = true,
> > +             .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
> > +     },
> >  };
> >
> >  static const struct snd_pci_quirk alc269_fixup_tbl[] = {
> > @@ -6701,9 +6712,9 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
> >       SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
> >       SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> >       SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
> > -     SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> > -     SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> > -     SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> > +     SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> > +     SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> > +     SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> >       SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
> >       SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
> >       SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
> > --
> > 2.20.1
> >
> >

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH v2] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286
  2019-03-20  5:05   ` Jian-Hong Pan
@ 2019-03-21  2:37     ` Kailang
  2019-03-21  6:27       ` Takashi Iwai
  0 siblings, 1 reply; 6+ messages in thread
From: Kailang @ 2019-03-21  2:37 UTC (permalink / raw)
  To: Jian-Hong Pan, Takashi Iwai
  Cc: alsa-devel, Linux Upstreaming Team, Linux Kernel

Yes, you could use Reviewed-by.

-----Original Message-----
From: Jian-Hong Pan <jian-hong@endlessm.com> 
Sent: Wednesday, March 20, 2019 1:06 PM
To: Takashi Iwai <tiwai@suse.de>
Cc: Kailang <kailang@realtek.com>; alsa-devel@alsa-project.org; Linux Upstreaming Team <linux@endlessm.com>; Linux Kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286

Takashi Iwai <tiwai@suse.de> 於 2019年3月15日 週五 下午7:24寫道:
>
> On Fri, 15 Mar 2019 10:51:09 +0100,
> Jian-Hong Pan wrote:
> >
> > Some Acer AIO desktops like Veriton Z6860G, Z4860G and Z4660G cannot 
> > record sound from headset MIC.  This patch adds the 
> > ALC286_FIXUP_ACER_AIO_HEADSET_MIC quirk to fix this issue.
> >
> > Signed-off-by: Jian-Hong Pan <jian-hong@endlessm.com>
> > ---
> > v2: According to Realtek's suggestion, change the COEF 0x4f from 0xd429 to
> >     0x5029.  Thanks to Realtek!
>
> It'd be nicer if we get either Acked-by or Reviewed-by tag from 
> Realtek.  Kailang?

Hi Kailang,

May we have your Acked-by or Reviewed-by tag for this patch?
Signed-off will also be great!

Thank you
Jian-Hong Pan

> thanks,
>
> Takashi
>
> >
> >  sound/pci/hda/patch_realtek.c | 17 ++++++++++++++---
> >  1 file changed, 14 insertions(+), 3 deletions(-)
> >
> > diff --git a/sound/pci/hda/patch_realtek.c 
> > b/sound/pci/hda/patch_realtek.c index 384719d5c44e..191830d4fa40 
> > 100644
> > --- a/sound/pci/hda/patch_realtek.c
> > +++ b/sound/pci/hda/patch_realtek.c
> > @@ -5687,6 +5687,7 @@ enum {
> >       ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
> >       ALC225_FIXUP_WYSE_AUTO_MUTE,
> >       ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
> > +     ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
> >  };
> >
> >  static const struct hda_fixup alc269_fixups[] = { @@ -6685,6 
> > +6686,16 @@ static const struct hda_fixup alc269_fixups[] = {
> >               .chained = true,
> >               .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
> >       },
> > +     [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
> > +             .type = HDA_FIXUP_VERBS,
> > +             .v.verbs = (const struct hda_verb[]) {
> > +                     { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
> > +                     { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
> > +                     { }
> > +             },
> > +             .chained = true,
> > +             .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
> > +     },
> >  };
> >
> >  static const struct snd_pci_quirk alc269_fixup_tbl[] = { @@ -6701,9 
> > +6712,9 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
> >       SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
> >       SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> >       SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
> > -     SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> > -     SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> > -     SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> > +     SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> > +     SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> > +     SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", 
> > + ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> >       SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
> >       SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
> >       SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", 
> > ALC275_FIXUP_DELL_XPS),
> > --
> > 2.20.1
> >
> >

------Please consider the environment before printing this e-mail.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286
  2019-03-21  2:37     ` Kailang
@ 2019-03-21  6:27       ` Takashi Iwai
  0 siblings, 0 replies; 6+ messages in thread
From: Takashi Iwai @ 2019-03-21  6:27 UTC (permalink / raw)
  To: Kailang; +Cc: Jian-Hong Pan, alsa-devel, Linux Upstreaming Team, Linux Kernel

On Thu, 21 Mar 2019 03:37:33 +0100,
Kailang wrote:
> 
> Yes, you could use Reviewed-by.

OK, applied now.  Thanks.


Takashi

> 
> -----Original Message-----
> From: Jian-Hong Pan <jian-hong@endlessm.com> 
> Sent: Wednesday, March 20, 2019 1:06 PM
> To: Takashi Iwai <tiwai@suse.de>
> Cc: Kailang <kailang@realtek.com>; alsa-devel@alsa-project.org; Linux Upstreaming Team <linux@endlessm.com>; Linux Kernel <linux-kernel@vger.kernel.org>
> Subject: Re: [PATCH v2] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286
> 
> Takashi Iwai <tiwai@suse.de> 於 2019年3月15日 週五 下午7:24寫道:
> >
> > On Fri, 15 Mar 2019 10:51:09 +0100,
> > Jian-Hong Pan wrote:
> > >
> > > Some Acer AIO desktops like Veriton Z6860G, Z4860G and Z4660G cannot 
> > > record sound from headset MIC.  This patch adds the 
> > > ALC286_FIXUP_ACER_AIO_HEADSET_MIC quirk to fix this issue.
> > >
> > > Signed-off-by: Jian-Hong Pan <jian-hong@endlessm.com>
> > > ---
> > > v2: According to Realtek's suggestion, change the COEF 0x4f from 0xd429 to
> > >     0x5029.  Thanks to Realtek!
> >
> > It'd be nicer if we get either Acked-by or Reviewed-by tag from 
> > Realtek.  Kailang?
> 
> Hi Kailang,
> 
> May we have your Acked-by or Reviewed-by tag for this patch?
> Signed-off will also be great!
> 
> Thank you
> Jian-Hong Pan
> 
> > thanks,
> >
> > Takashi
> >
> > >
> > >  sound/pci/hda/patch_realtek.c | 17 ++++++++++++++---
> > >  1 file changed, 14 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/sound/pci/hda/patch_realtek.c 
> > > b/sound/pci/hda/patch_realtek.c index 384719d5c44e..191830d4fa40 
> > > 100644
> > > --- a/sound/pci/hda/patch_realtek.c
> > > +++ b/sound/pci/hda/patch_realtek.c
> > > @@ -5687,6 +5687,7 @@ enum {
> > >       ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
> > >       ALC225_FIXUP_WYSE_AUTO_MUTE,
> > >       ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
> > > +     ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
> > >  };
> > >
> > >  static const struct hda_fixup alc269_fixups[] = { @@ -6685,6 
> > > +6686,16 @@ static const struct hda_fixup alc269_fixups[] = {
> > >               .chained = true,
> > >               .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
> > >       },
> > > +     [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
> > > +             .type = HDA_FIXUP_VERBS,
> > > +             .v.verbs = (const struct hda_verb[]) {
> > > +                     { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
> > > +                     { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
> > > +                     { }
> > > +             },
> > > +             .chained = true,
> > > +             .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
> > > +     },
> > >  };
> > >
> > >  static const struct snd_pci_quirk alc269_fixup_tbl[] = { @@ -6701,9 
> > > +6712,9 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
> > >       SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
> > >       SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> > >       SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
> > > -     SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> > > -     SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> > > -     SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
> > > +     SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> > > +     SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> > > +     SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", 
> > > + ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
> > >       SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
> > >       SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
> > >       SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", 
> > > ALC275_FIXUP_DELL_XPS),
> > > --
> > > 2.20.1
> > >
> > >
> 
> ------Please consider the environment before printing this e-mail.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-03-21  6:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-15  9:51 [PATCH v2] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286 Jian-Hong Pan
2019-03-15 11:24 ` Takashi Iwai
2019-03-15 11:24   ` Takashi Iwai
2019-03-20  5:05   ` Jian-Hong Pan
2019-03-21  2:37     ` Kailang
2019-03-21  6:27       ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.