summaryrefslogtreecommitdiff
path: root/lib/intel_chipset.h
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-01-15 14:28:02 -0800
committerEric Anholt <eric@anholt.net>2010-02-25 10:41:49 -0800
commit67736dbc9435ab95ab4092d73a5b057039d14d30 (patch)
treeea43ccf27e794a66f5d090e4edf2460491bb2e55 /lib/intel_chipset.h
parent0fe5e9c1342a3baf9c15616febc74d203b43b2d4 (diff)
Add support for Sandybridge mobile chipset.
Diffstat (limited to 'lib/intel_chipset.h')
-rwxr-xr-xlib/intel_chipset.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index 3545657e..c7ffcab2 100755
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -71,6 +71,7 @@
#define PCI_CHIP_ILM_G 0x0046
#define PCI_CHIP_SANDYBRIDGE 0x0102
+#define PCI_CHIP_SANDYBRIDGE_M 0x0106
#define IS_MOBILE(devid) (devid == PCI_CHIP_I855_GM || \
devid == PCI_CHIP_I915_GM || \
@@ -114,7 +115,8 @@
IS_IRONLAKE(devid) || \
IS_GEN6(devid))
-#define IS_GEN6(devid) (devid == PCI_CHIP_SANDYBRIDGE)
+#define IS_GEN6(devid) (devid == PCI_CHIP_SANDYBRIDGE || \
+ devid == PCI_CHIP_SANDYBRIDGE_M)
#define IS_9XX(devid) (IS_915(devid) || \
IS_945(devid) || \