mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
intel: Add Sandybridge mobile chipset id
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
This commit is contained in:
parent
cdcef6cbf4
commit
82abbca692
1 changed files with 3 additions and 1 deletions
|
|
@ -72,6 +72,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 @@
|
|||
devid == PCI_CHIP_I946_GZ || \
|
||||
IS_G4X(devid))
|
||||
|
||||
#define IS_GEN6(devid) (devid == PCI_CHIP_SANDYBRIDGE)
|
||||
#define IS_GEN6(devid) (devid == PCI_CHIP_SANDYBRIDGE || \
|
||||
devid == PCI_CHIP_SANDYBRIDGE_M)
|
||||
|
||||
#define IS_965(devid) (IS_GEN4(devid) || \
|
||||
IS_G4X(devid) || \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue