summaryrefslogtreecommitdiff
path: root/sys/src/9/pc/audiohda.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2012-12-10 10:01:52 +0100
committercinap_lenrek <cinap_lenrek@gmx.de>2012-12-10 10:01:52 +0100
commit8f0ed004208ea8ed438dad308137e40eb1188549 (patch)
tree73f38a8c6a4216b9ba4acdffb54a08270a74a085 /sys/src/9/pc/audiohda.c
parente93d22ef184a65418d2cf61268abb616a2752f1f (diff)
audiohda: add support for PCH (Dell E5420)
Diffstat (limited to 'sys/src/9/pc/audiohda.c')
-rw-r--r--sys/src/9/pc/audiohda.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/9/pc/audiohda.c b/sys/src/9/pc/audiohda.c
index 8736fe879..e0f88b323 100644
--- a/sys/src/9/pc/audiohda.c
+++ b/sys/src/9/pc/audiohda.c
@@ -1418,6 +1418,7 @@ hdamatch(Pcidev *p)
case (0x8086 << 16) | 0x293e: /* Intel P35 (untested) */
case (0x8086 << 16) | 0x811b: /* Intel SCH (Poulsbo) */
case (0x8086 << 16) | 0x080a: /* Intel SCH (Oaktrail) */
+ case (0x8086 << 16) | 0x1c20: /* Intel PCH */
case (0x8086 << 16) | 0x1e20: /* Intel (Thinkpad x230t) */
case (0x10de << 16) | 0x026c: /* NVidia MCP51 (untested) */
@@ -1529,6 +1530,7 @@ Found:
if(p->vid == 0x8086){
/* magic for Intel */
switch(p->did){
+ case 0x1c20: /* PCH */
case 0x811b: /* SCH */
case 0x080a:
pcicfgw16(p, 0x78, pcicfgr16(p, 0x78) & ~0x800);