diff options
| author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-11-17 10:12:29 +0100 |
|---|---|---|
| committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-11-17 10:12:29 +0100 |
| commit | dbb320ca909a6044976cd055fee3edf26ce797a5 (patch) | |
| tree | 2c6d41e4935bc8a4b18b1564298bebc9e777f86d | |
| parent | fbdaa03d8470f90d269da01fe1bd2453f3387f04 (diff) | |
| download | plan9front-dbb320ca909a6044976cd055fee3edf26ce797a5.tar.xz | |
audiohda: add pci ids for Intel 8 Series Lynx Point (thanks quux)
Based on OpenBSD driver:
- /sys/dev/pci/azalia.c rev 1.209
- /sys/dev/pci/pcidevs rev 1.1689
- only tested on amd64; machine is an Acer V5-573G
exact model: V5-573G-74518G1Takk
| -rw-r--r-- | sys/src/9/pc/audiohda.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/9/pc/audiohda.c b/sys/src/9/pc/audiohda.c index 81b9a6025..086182bf1 100644 --- a/sys/src/9/pc/audiohda.c +++ b/sys/src/9/pc/audiohda.c @@ -1747,6 +1747,7 @@ hdamatch(Pcidev *p) case (0x8086 << 16) | 0x1c20: /* Intel PCH */ case (0x8086 << 16) | 0x1e20: /* Intel (Thinkpad x230t) */ case (0x8086 << 16) | 0x8c20: /* Intel 8 Series/C220 Series */ + case (0x8086 << 16) | 0x9c20: /* Intel 8 Series Lynx Point */ case (0x10de << 16) | 0x026c: /* NVidia MCP51 (untested) */ case (0x10de << 16) | 0x0371: /* NVidia MCP55 (untested) */ @@ -1865,6 +1866,7 @@ Found: case 0x811b: /* SCH */ case 0x080a: case 0x8c20: + case 0x9c20: pcicfgw16(p, 0x78, pcicfgr16(p, 0x78) & ~0x800); } } |
