summaryrefslogtreecommitdiffstats
path: root/sys/dev/sound
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2012-12-12 11:44:20 +0000
committermav <mav@FreeBSD.org>2012-12-12 11:44:20 +0000
commit86c6c31a50bcd8834ece5906b2116f7647775899 (patch)
tree9a64ca16dc6244b042a0391ad0b3d756b4412e99 /sys/dev/sound
parentaac6a44d7e468fc3fe77812ec3fe4dc5259f6499 (diff)
downloadFreeBSD-src-86c6c31a50bcd8834ece5906b2116f7647775899.zip
FreeBSD-src-86c6c31a50bcd8834ece5906b2116f7647775899.tar.gz
Add quirks for AD1984A codec and Lenovo X300 laptop.
PR: kern/148741 MFC after: 2 weeks
Diffstat (limited to 'sys/dev/sound')
-rw-r--r--sys/dev/sound/pci/hda/hdaa_patches.c19
-rw-r--r--sys/dev/sound/pci/hda/hdac.h1
2 files changed, 19 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/hda/hdaa_patches.c b/sys/dev/sound/pci/hda/hdaa_patches.c
index 2e7255f..41d51d7 100644
--- a/sys/dev/sound/pci/hda/hdaa_patches.c
+++ b/sys/dev/sound/pci/hda/hdaa_patches.c
@@ -271,7 +271,17 @@ hdac_pin_patch(struct hdaa_widget *w)
}
/* New patches */
- if (id == HDA_CODEC_AD1986A &&
+ if (id == HDA_CODEC_AD1984A &&
+ subid == LENOVO_X300_SUBVENDOR) {
+ switch (nid) {
+ case 17: /* Headphones with redirection */
+ patch = "as=1 seq=15";
+ break;
+ case 20: /* Two mics together */
+ patch = "as=2 seq=15";
+ break;
+ }
+ } else if (id == HDA_CODEC_AD1986A &&
(subid == ASUS_M2NPVMX_SUBVENDOR ||
subid == ASUS_A8NVMCSM_SUBVENDOR ||
subid == ASUS_P5PL2_SUBVENDOR)) {
@@ -372,6 +382,13 @@ hdaa_widget_patch(struct hdaa_widget *w)
HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_SHIFT;
w->waspin = 1;
}
+ /*
+ * Clear "digital" flag from digital mic input, as its signal then goes
+ * to "analog" mixer and this separation just limits functionaity.
+ */
+ if (hdaa_codec_id(devinfo) == HDA_CODEC_AD1984A &&
+ w->nid == 23)
+ w->param.widget_cap &= ~HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL_MASK;
HDA_BOOTVERBOSE(
if (w->param.widget_cap != orig) {
device_printf(w->devinfo->dev,
diff --git a/sys/dev/sound/pci/hda/hdac.h b/sys/dev/sound/pci/hda/hdac.h
index 622d56e..642e379 100644
--- a/sys/dev/sound/pci/hda/hdac.h
+++ b/sys/dev/sound/pci/hda/hdac.h
@@ -218,6 +218,7 @@
#define LENOVO_3KN200_SUBVENDOR HDA_MODEL_CONSTRUCT(LENOVO, 0x384e)
#define LENOVO_B450_SUBVENDOR HDA_MODEL_CONSTRUCT(LENOVO, 0x3a0d)
#define LENOVO_TCA55_SUBVENDOR HDA_MODEL_CONSTRUCT(LENOVO, 0x1015)
+#define LENOVO_X300_SUBVENDOR HDA_MODEL_CONSTRUCT(LENOVO, 0x20ac)
#define LENOVO_ALL_SUBVENDOR HDA_MODEL_CONSTRUCT(LENOVO, 0xffff)
/* Samsung */
OpenPOWER on IntegriCloud