From 8e444fb9e2685e3eac42beb848b08e91dc20c88a Mon Sep 17 00:00:00 2001 From: "Xiang, Haihao" Date: Tue, 29 Jan 2008 11:13:53 +0800 Subject: i965: new integrated graphics chipset support --- src/mesa/drivers/dri/intel/intel_chipset.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/mesa/drivers/dri/intel/intel_chipset.h') diff --git a/src/mesa/drivers/dri/intel/intel_chipset.h b/src/mesa/drivers/dri/intel/intel_chipset.h index 4fc4c963765..5f094dc5fb4 100644 --- a/src/mesa/drivers/dri/intel/intel_chipset.h +++ b/src/mesa/drivers/dri/intel/intel_chipset.h @@ -52,19 +52,25 @@ #define PCI_CHIP_I965_GM 0x2A02 #define PCI_CHIP_I965_GME 0x2A12 +#define PCI_CHIP_IGD_GM 0x2A42 + #define IS_MOBILE(devid) (devid == PCI_CHIP_I855_GM || \ devid == PCI_CHIP_I915_GM || \ devid == PCI_CHIP_I945_GM || \ devid == PCI_CHIP_I945_GME || \ devid == PCI_CHIP_I965_GM || \ - devid == PCI_CHIP_I965_GME) + devid == PCI_CHIP_I965_GME || \ + devid == PCI_CHIP_IGD_GM) + +#define IS_IGD(devid) (devid == PCI_CHIP_IGD_GM) #define IS_965(devid) (devid == PCI_CHIP_I965_G || \ devid == PCI_CHIP_I965_Q || \ devid == PCI_CHIP_I965_G_1 || \ devid == PCI_CHIP_I965_GM || \ devid == PCI_CHIP_I965_GME || \ - devid == PCI_CHIP_I946_GZ) + devid == PCI_CHIP_I946_GZ || \ + IS_IGD(devid)) #define IS_9XX(devid) (devid == PCI_CHIP_I915_G || \ devid == PCI_CHIP_I915_GM || \ -- cgit v1.2.3