summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2012-06-11 12:08:32 -0700
committerJesse Barnes <jbarnes@virtuousgeek.org>2012-06-11 12:08:32 -0700
commit34240176c15968e9f25e154d7a1111bb7b0af8af (patch)
tree8c8158cd1e7333d737cb642a0f281f3b9c6df926
parentb015a25e897d8b2d79d5938d10e35803ce4dfa2c (diff)
add VLV PCI ID
This allows the tests to run on the prototype boards.
-rwxr-xr-xlib/intel_chipset.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index afc7fd5..6a85ca2 100755
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -91,6 +91,8 @@
#define PCI_CHIP_HASWELL_M_GT2 0x0416
#define PCI_CHIP_HASWELL_M_ULT_GT2 0x0A16 /* Mobile ULT */
+#define PCI_CHIP_VALLEYVIEW_PO 0x0f30 /* VLV PO board */
+
#define IS_MOBILE(devid) (devid == PCI_CHIP_I855_GM || \
devid == PCI_CHIP_I915_GM || \
devid == PCI_CHIP_I945_GM || \
@@ -160,7 +162,8 @@
dev == PCI_CHIP_IVYBRIDGE_M_GT1 || \
dev == PCI_CHIP_IVYBRIDGE_M_GT2 || \
dev == PCI_CHIP_IVYBRIDGE_S || \
- dev == PCI_CHIP_IVYBRIDGE_S_GT2)
+ dev == PCI_CHIP_IVYBRIDGE_S_GT2 || \
+ dev == PCI_CHIP_VALLEYVIEW_PO)
#define IS_HSW_GT1(devid) (devid == PCI_CHIP_HASWELL_GT1 || \
devid == PCI_CHIP_HASWELL_M_GT1)