diff options
| author | Damien Lespiau <damien.lespiau@intel.com> | 2015-05-15 19:34:12 +0100 | 
|---|---|---|
| committer | Damien Lespiau <damien.lespiau@intel.com> | 2015-05-18 16:24:21 +0100 | 
| commit | e9ea1f42d14e10852f292f3470aee260c7349978 (patch) | |
| tree | bfea6daac0fda73915cd92dae944c2eac133d68d /intel | |
| parent | b2360626c4aa1dccdf3fe258b833121748d64d35 (diff) | |
intel: Add the Broxton PCI IDs
Cc: Imre Deak <imre.deak@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Diffstat (limited to 'intel')
| -rw-r--r-- | intel/intel_chipset.h | 11 | 
1 files changed, 10 insertions, 1 deletions
diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h index e22a8673..253ea710 100644 --- a/intel/intel_chipset.h +++ b/intel/intel_chipset.h @@ -181,6 +181,10 @@  #define PCI_CHIP_SKYLAKE_SRV_GT1	0x190A  #define PCI_CHIP_SKYLAKE_WKS_GT2 	0x191D +#define PCI_CHIP_BROXTON_0		0x0A84 +#define PCI_CHIP_BROXTON_1		0x1A84 +#define PCI_CHIP_BROXTON_2		0x5A84 +  #define IS_MOBILE(devid)	((devid) == PCI_CHIP_I855_GM || \  				 (devid) == PCI_CHIP_I915_GM || \  				 (devid) == PCI_CHIP_I945_GM || \ @@ -362,7 +366,12 @@  				 IS_SKL_GT2(devid) || \  				 IS_SKL_GT3(devid)) -#define IS_GEN9(devid)		IS_SKYLAKE(devid) +#define IS_BROXTON(devid)	((devid) == PCI_CHIP_BROXTON_0	|| \ +				 (devid) == PCI_CHIP_BROXTON_1	|| \ +				 (devid) == PCI_CHIP_BROXTON_2) + +#define IS_GEN9(devid)		(IS_SKYLAKE(devid) || \ +				 IS_BROXTON(devid))  #define IS_9XX(dev)		(IS_GEN3(dev) || \  				 IS_GEN4(dev) || \  | 
