diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-08-13 07:45:38 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-08-13 07:45:38 +0000 |
commit | 1ac44a1c2eaa4250a4e288e7d2c610d264e9f1a1 (patch) | |
tree | ea894a1ada1ed4c33b5fa81805d3875aeaf1987e /sys/dev/pci/pucdata.c | |
parent | 6213133651c3ff575b8af862c31693a437b36e67 (diff) |
match on Intel 9 series and 9 series LP PCH, and add 8 series KT to puc
ok millert@
Diffstat (limited to 'sys/dev/pci/pucdata.c')
-rw-r--r-- | sys/dev/pci/pucdata.c | 39 |
1 files changed, 30 insertions, 9 deletions
diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index 45a45865d54..0a7d08a7bf3 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pucdata.c,v 1.92 2014/02/02 19:25:41 miod Exp $ */ +/* $OpenBSD: pucdata.c,v 1.93 2014/08/13 07:45:37 jsg Exp $ */ /* $NetBSD: pucdata.c,v 1.6 1999/07/03 05:55:23 cgd Exp $ */ /* @@ -55,13 +55,41 @@ const struct puc_device_description puc_devs[] = { { PUC_COM_POW2(0), 0x10, 0x0000 }, }, }, - { /* Series KT */ + { /* 7 Series KT */ { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_7SERIES_KT, 0x0000, 0x0000 }, { 0xffff, 0xffff, 0x0000, 0x0000 }, { { PUC_COM_POW2(0), 0x10, 0x0000 }, }, }, + { /* 8 Series KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8SERIES_KT, 0x0000, 0x0000 }, + { 0xffff, 0xffff, 0x0000, 0x0000 }, + { + { PUC_COM_POW2(0), 0x10, 0x0000 }, + }, + }, + { /* 8 Series LP KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8SERIES_LP_KT, 0x0000, 0x0000 }, + { 0xffff, 0xffff, 0x0000, 0x0000 }, + { + { PUC_COM_POW2(0), 0x10, 0x0000 }, + }, + }, + { /* 9 Series KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_9SERIES_KT, 0x0000, 0x0000 }, + { 0xffff, 0xffff, 0x0000, 0x0000 }, + { + { PUC_COM_POW2(0), 0x10, 0x0000 }, + }, + }, + { /* 9 Series LP KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_9SERIES_LP_KT, 0x0000, 0x0000 }, + { 0xffff, 0xffff, 0x0000, 0x0000 }, + { + { PUC_COM_POW2(0), 0x10, 0x0000 }, + }, + }, { /* 82946GZ KT */ { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82946GZ_KT, 0x0000, 0x0000 }, { 0xffff, 0xffff, 0x0000, 0x0000 }, @@ -146,13 +174,6 @@ const struct puc_device_description puc_devs[] = { { PUC_COM_POW2(0), 0x10, 0x0000 }, }, }, - { /* 8 Series KT */ - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8SERIES_KT, 0x0000, 0x0000 }, - { 0xffff, 0xffff, 0x0000, 0x0000 }, - { - { PUC_COM_POW2(0), 0x10, 0x0000 }, - }, - }, { /* Intel EG20T */ { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_EG20T_SERIAL_1, 0x0000, 0x0000 }, { 0xffff, 0xffff, 0x0000, 0x0000 }, |