xref: /dragonfly/sys/dev/drm/include/drm/i915_pciids.h (revision a8138aa8)
19edbd4a0SFrançois Tigeot /*
29edbd4a0SFrançois Tigeot  * Copyright 2013 Intel Corporation
39edbd4a0SFrançois Tigeot  * All Rights Reserved.
49edbd4a0SFrançois Tigeot  *
59edbd4a0SFrançois Tigeot  * Permission is hereby granted, free of charge, to any person obtaining a
69edbd4a0SFrançois Tigeot  * copy of this software and associated documentation files (the
79edbd4a0SFrançois Tigeot  * "Software"), to deal in the Software without restriction, including
89edbd4a0SFrançois Tigeot  * without limitation the rights to use, copy, modify, merge, publish,
99edbd4a0SFrançois Tigeot  * distribute, sub license, and/or sell copies of the Software, and to
109edbd4a0SFrançois Tigeot  * permit persons to whom the Software is furnished to do so, subject to
119edbd4a0SFrançois Tigeot  * the following conditions:
129edbd4a0SFrançois Tigeot  *
139edbd4a0SFrançois Tigeot  * The above copyright notice and this permission notice (including the
149edbd4a0SFrançois Tigeot  * next paragraph) shall be included in all copies or substantial portions
159edbd4a0SFrançois Tigeot  * of the Software.
169edbd4a0SFrançois Tigeot  *
179edbd4a0SFrançois Tigeot  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
189edbd4a0SFrançois Tigeot  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
199edbd4a0SFrançois Tigeot  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
209edbd4a0SFrançois Tigeot  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
219edbd4a0SFrançois Tigeot  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
229edbd4a0SFrançois Tigeot  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
239edbd4a0SFrançois Tigeot  * DEALINGS IN THE SOFTWARE.
249edbd4a0SFrançois Tigeot  */
259edbd4a0SFrançois Tigeot #ifndef _I915_PCIIDS_H
269edbd4a0SFrançois Tigeot #define _I915_PCIIDS_H
279edbd4a0SFrançois Tigeot 
289edbd4a0SFrançois Tigeot /*
299edbd4a0SFrançois Tigeot  * A pci_device_id struct {
309edbd4a0SFrançois Tigeot  *	__u32 vendor, device;
319edbd4a0SFrançois Tigeot  *      __u32 subvendor, subdevice;
329edbd4a0SFrançois Tigeot  *	__u32 class, class_mask;
339edbd4a0SFrançois Tigeot  *	kernel_ulong_t driver_data;
349edbd4a0SFrançois Tigeot  * };
359edbd4a0SFrançois Tigeot  * Don't use C99 here because "class" is reserved and we want to
369edbd4a0SFrançois Tigeot  * give userspace flexibility.
379edbd4a0SFrançois Tigeot  */
389edbd4a0SFrançois Tigeot #define INTEL_VGA_DEVICE(id, info) {		\
39477eb7f9SFrançois Tigeot 	0x8086,	id,				\
40477eb7f9SFrançois Tigeot 	~0, ~0,					\
41477eb7f9SFrançois Tigeot 	0x030000, 0xff0000,			\
42477eb7f9SFrançois Tigeot 	(unsigned long) info }
439edbd4a0SFrançois Tigeot 
449edbd4a0SFrançois Tigeot #define INTEL_QUANTA_VGA_DEVICE(info) {		\
45477eb7f9SFrançois Tigeot 	0x8086,	0x16a,				\
46477eb7f9SFrançois Tigeot 	0x152d,	0x8990,				\
47477eb7f9SFrançois Tigeot 	0x030000, 0xff0000,			\
48477eb7f9SFrançois Tigeot 	(unsigned long) info }
499edbd4a0SFrançois Tigeot 
509edbd4a0SFrançois Tigeot #define INTEL_I830_IDS(info)				\
519edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3577, info)
529edbd4a0SFrançois Tigeot 
539edbd4a0SFrançois Tigeot #define INTEL_I845G_IDS(info)				\
549edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2562, info)
559edbd4a0SFrançois Tigeot 
569edbd4a0SFrançois Tigeot #define INTEL_I85X_IDS(info)				\
579edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3582, info), /* I855_GM */ \
589edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x358e, info)
599edbd4a0SFrançois Tigeot 
609edbd4a0SFrançois Tigeot #define INTEL_I865G_IDS(info)				\
619edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2572, info) /* I865_G */
629edbd4a0SFrançois Tigeot 
639edbd4a0SFrançois Tigeot #define INTEL_I915G_IDS(info)				\
649edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2582, info), /* I915_G */ \
659edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x258a, info)  /* E7221_G */
669edbd4a0SFrançois Tigeot 
679edbd4a0SFrançois Tigeot #define INTEL_I915GM_IDS(info)				\
689edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2592, info) /* I915_GM */
699edbd4a0SFrançois Tigeot 
709edbd4a0SFrançois Tigeot #define INTEL_I945G_IDS(info)				\
719edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2772, info) /* I945_G */
729edbd4a0SFrançois Tigeot 
739edbd4a0SFrançois Tigeot #define INTEL_I945GM_IDS(info)				\
749edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x27a2, info), /* I945_GM */ \
759edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x27ae, info)  /* I945_GME */
769edbd4a0SFrançois Tigeot 
779edbd4a0SFrançois Tigeot #define INTEL_I965G_IDS(info)				\
789edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2972, info), /* I946_GZ */	\
799edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2982, info),	/* G35_G */	\
809edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2992, info),	/* I965_Q */	\
819edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x29a2, info)	/* I965_G */
829edbd4a0SFrançois Tigeot 
839edbd4a0SFrançois Tigeot #define INTEL_G33_IDS(info)				\
849edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x29b2, info), /* Q35_G */ \
859edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x29c2, info),	/* G33_G */ \
869edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x29d2, info)	/* Q33_G */
879edbd4a0SFrançois Tigeot 
889edbd4a0SFrançois Tigeot #define INTEL_I965GM_IDS(info)				\
899edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2a02, info),	/* I965_GM */ \
909edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2a12, info)  /* I965_GME */
919edbd4a0SFrançois Tigeot 
929edbd4a0SFrançois Tigeot #define INTEL_GM45_IDS(info)				\
939edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2a42, info) /* GM45_G */
949edbd4a0SFrançois Tigeot 
959edbd4a0SFrançois Tigeot #define INTEL_G45_IDS(info)				\
969edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2e02, info), /* IGD_E_G */ \
979edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2e12, info), /* Q45_G */ \
989edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2e22, info), /* G45_G */ \
999edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2e32, info), /* G41_G */ \
1009edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2e42, info), /* B43_G */ \
1019edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x2e92, info)	/* B43_G.1 */
1029edbd4a0SFrançois Tigeot 
1039edbd4a0SFrançois Tigeot #define INTEL_PINEVIEW_IDS(info)			\
1049edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0xa001, info),			\
1059edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0xa011, info)
1069edbd4a0SFrançois Tigeot 
1079edbd4a0SFrançois Tigeot #define INTEL_IRONLAKE_D_IDS(info) \
1089edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0042, info)
1099edbd4a0SFrançois Tigeot 
1109edbd4a0SFrançois Tigeot #define INTEL_IRONLAKE_M_IDS(info) \
1119edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0046, info)
1129edbd4a0SFrançois Tigeot 
1133f2dd94aSFrançois Tigeot #define INTEL_SNB_D_GT1_IDS(info) \
1149edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0102, info), \
1159edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x010A, info)
1169edbd4a0SFrançois Tigeot 
1173f2dd94aSFrançois Tigeot #define INTEL_SNB_D_GT2_IDS(info) \
1183f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0112, info), \
1193f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0122, info)
1203f2dd94aSFrançois Tigeot 
1213f2dd94aSFrançois Tigeot #define INTEL_SNB_D_IDS(info) \
1223f2dd94aSFrançois Tigeot 	INTEL_SNB_D_GT1_IDS(info), \
1233f2dd94aSFrançois Tigeot 	INTEL_SNB_D_GT2_IDS(info)
1243f2dd94aSFrançois Tigeot 
1253f2dd94aSFrançois Tigeot #define INTEL_SNB_M_GT1_IDS(info) \
1263f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0106, info)
1273f2dd94aSFrançois Tigeot 
1283f2dd94aSFrançois Tigeot #define INTEL_SNB_M_GT2_IDS(info) \
1299edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0116, info), \
1309edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0126, info)
1319edbd4a0SFrançois Tigeot 
1323f2dd94aSFrançois Tigeot #define INTEL_SNB_M_IDS(info) \
1333f2dd94aSFrançois Tigeot 	INTEL_SNB_M_GT1_IDS(info), \
1343f2dd94aSFrançois Tigeot 	INTEL_SNB_M_GT2_IDS(info)
1353f2dd94aSFrançois Tigeot 
1363f2dd94aSFrançois Tigeot #define INTEL_IVB_M_GT1_IDS(info) \
1373f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0156, info) /* GT1 mobile */
1383f2dd94aSFrançois Tigeot 
1393f2dd94aSFrançois Tigeot #define INTEL_IVB_M_GT2_IDS(info) \
1409edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0166, info) /* GT2 mobile */
1419edbd4a0SFrançois Tigeot 
1423f2dd94aSFrançois Tigeot #define INTEL_IVB_M_IDS(info) \
1433f2dd94aSFrançois Tigeot 	INTEL_IVB_M_GT1_IDS(info), \
1443f2dd94aSFrançois Tigeot 	INTEL_IVB_M_GT2_IDS(info)
1453f2dd94aSFrançois Tigeot 
1463f2dd94aSFrançois Tigeot #define INTEL_IVB_D_GT1_IDS(info) \
1479edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0152, info), /* GT1 desktop */ \
1483f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x015a, info)  /* GT1 server */
1493f2dd94aSFrançois Tigeot 
1503f2dd94aSFrançois Tigeot #define INTEL_IVB_D_GT2_IDS(info) \
1519edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0162, info), /* GT2 desktop */ \
1529edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x016a, info)  /* GT2 server */
1539edbd4a0SFrançois Tigeot 
1543f2dd94aSFrançois Tigeot #define INTEL_IVB_D_IDS(info) \
1553f2dd94aSFrançois Tigeot 	INTEL_IVB_D_GT1_IDS(info), \
1563f2dd94aSFrançois Tigeot 	INTEL_IVB_D_GT2_IDS(info)
1573f2dd94aSFrançois Tigeot 
1589edbd4a0SFrançois Tigeot #define INTEL_IVB_Q_IDS(info) \
1599edbd4a0SFrançois Tigeot 	INTEL_QUANTA_VGA_DEVICE(info) /* Quanta transcode */
1609edbd4a0SFrançois Tigeot 
1613f2dd94aSFrançois Tigeot #define INTEL_HSW_GT1_IDS(info) \
1629edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0402, info), /* GT1 desktop */ \
1639edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x040a, info), /* GT1 server */ \
1649edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x040B, info), /* GT1 reserved */ \
1659edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x040E, info), /* GT1 reserved */ \
1669edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C02, info), /* SDV GT1 desktop */ \
1679edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C0A, info), /* SDV GT1 server */ \
1689edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C0B, info), /* SDV GT1 reserved */ \
1699edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C0E, info), /* SDV GT1 reserved */ \
1709edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A02, info), /* ULT GT1 desktop */ \
1719edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A0A, info), /* ULT GT1 server */ \
1729edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A0B, info), /* ULT GT1 reserved */ \
1739edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D02, info), /* CRW GT1 desktop */ \
1749edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D0A, info), /* CRW GT1 server */ \
1759edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D0B, info), /* CRW GT1 reserved */ \
1769edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D0E, info), /* CRW GT1 reserved */ \
1779edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0406, info), /* GT1 mobile */ \
1783f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C06, info), /* SDV GT1 mobile */ \
1793f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A06, info), /* ULT GT1 mobile */ \
1803f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A0E, info), /* ULX GT1 mobile */ \
1813f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D06, info)  /* CRW GT1 mobile */
1823f2dd94aSFrançois Tigeot 
1833f2dd94aSFrançois Tigeot #define INTEL_HSW_GT2_IDS(info) \
1843f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0412, info), /* GT2 desktop */ \
1853f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x041a, info), /* GT2 server */ \
1863f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x041B, info), /* GT2 reserved */ \
1873f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x041E, info), /* GT2 reserved */ \
1883f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C12, info), /* SDV GT2 desktop */ \
1893f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C1A, info), /* SDV GT2 server */ \
1903f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C1B, info), /* SDV GT2 reserved */ \
1913f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C1E, info), /* SDV GT2 reserved */ \
1923f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A12, info), /* ULT GT2 desktop */ \
1933f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A1A, info), /* ULT GT2 server */ \
1943f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A1B, info), /* ULT GT2 reserved */ \
1953f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D12, info), /* CRW GT2 desktop */ \
1963f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D1A, info), /* CRW GT2 server */ \
1973f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D1B, info), /* CRW GT2 reserved */ \
1983f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D1E, info), /* CRW GT2 reserved */ \
1999edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0416, info), /* GT2 mobile */ \
2009edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0426, info), /* GT2 mobile */ \
2019edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C16, info), /* SDV GT2 mobile */ \
2029edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A16, info), /* ULT GT2 mobile */ \
203ba55f2f5SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A1E, info), /* ULX GT2 mobile */ \
2043f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D16, info)  /* CRW GT2 mobile */
2053f2dd94aSFrançois Tigeot 
2063f2dd94aSFrançois Tigeot #define INTEL_HSW_GT3_IDS(info) \
2073f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0422, info), /* GT3 desktop */ \
2083f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x042a, info), /* GT3 server */ \
2093f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x042B, info), /* GT3 reserved */ \
2103f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x042E, info), /* GT3 reserved */ \
2113f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C22, info), /* SDV GT3 desktop */ \
2123f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C2A, info), /* SDV GT3 server */ \
2133f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C2B, info), /* SDV GT3 reserved */ \
2143f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C2E, info), /* SDV GT3 reserved */ \
2153f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A22, info), /* ULT GT3 desktop */ \
2163f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A2A, info), /* ULT GT3 server */ \
2173f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A2B, info), /* ULT GT3 reserved */ \
2183f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D22, info), /* CRW GT3 desktop */ \
2193f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D2A, info), /* CRW GT3 server */ \
2203f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D2B, info), /* CRW GT3 reserved */ \
2213f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D2E, info), /* CRW GT3 reserved */ \
2223f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0C26, info), /* SDV GT3 mobile */ \
2233f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A26, info), /* ULT GT3 mobile */ \
2249edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A2E, info), /* ULT GT3 reserved */ \
2259edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0D26, info)  /* CRW GT3 mobile */
2269edbd4a0SFrançois Tigeot 
2273f2dd94aSFrançois Tigeot #define INTEL_HSW_IDS(info) \
2283f2dd94aSFrançois Tigeot 	INTEL_HSW_GT1_IDS(info), \
2293f2dd94aSFrançois Tigeot 	INTEL_HSW_GT2_IDS(info), \
2303f2dd94aSFrançois Tigeot 	INTEL_HSW_GT3_IDS(info)
2313f2dd94aSFrançois Tigeot 
2321e12ee3bSFrançois Tigeot #define INTEL_VLV_IDS(info) \
2339edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0f30, info), \
2349edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0f31, info), \
2359edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0f32, info), \
2369edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0f33, info), \
2371e12ee3bSFrançois Tigeot 	INTEL_VGA_DEVICE(0x0157, info), \
2389edbd4a0SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0155, info)
2399edbd4a0SFrançois Tigeot 
2403f2dd94aSFrançois Tigeot #define INTEL_BDW_GT1_IDS(info)  \
241477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1602, info), /* GT1 ULT */ \
242477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1606, info), /* GT1 ULT */ \
243477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x160B, info), /* GT1 Iris */ \
244477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x160E, info), /* GT1 ULX */ \
2453f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x160A, info), /* GT1 Server */ \
2463f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x160D, info)  /* GT1 Workstation */
2473f2dd94aSFrançois Tigeot 
2483f2dd94aSFrançois Tigeot #define INTEL_BDW_GT2_IDS(info)  \
249477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1612, info), /* GT2 Halo */	\
250477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1616, info), /* GT2 ULT */ \
251477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x161B, info), /* GT2 ULT */ \
2521e12ee3bSFrançois Tigeot 	INTEL_VGA_DEVICE(0x161E, info), /* GT2 ULX */ \
253477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x161A, info), /* GT2 Server */ \
254477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x161D, info)  /* GT2 Workstation */
255ba55f2f5SFrançois Tigeot 
2561e12ee3bSFrançois Tigeot #define INTEL_BDW_GT3_IDS(info) \
257477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1622, info), /* ULT */ \
258477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1626, info), /* ULT */ \
259477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x162B, info), /* Iris */ \
2601e12ee3bSFrançois Tigeot 	INTEL_VGA_DEVICE(0x162E, info),  /* ULX */\
261477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x162A, info), /* Server */ \
262477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x162D, info)  /* Workstation */
2639edbd4a0SFrançois Tigeot 
2644be47400SFrançois Tigeot #define INTEL_BDW_RSVD_IDS(info) \
265477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1632, info), /* ULT */ \
266477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1636, info), /* ULT */ \
267477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x163B, info), /* Iris */ \
2684be47400SFrançois Tigeot 	INTEL_VGA_DEVICE(0x163E, info), /* ULX */ \
269477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x163A, info), /* Server */ \
270477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x163D, info)  /* Workstation */
271ba55f2f5SFrançois Tigeot 
2721e12ee3bSFrançois Tigeot #define INTEL_BDW_IDS(info) \
2733f2dd94aSFrançois Tigeot 	INTEL_BDW_GT1_IDS(info), \
2743f2dd94aSFrançois Tigeot 	INTEL_BDW_GT2_IDS(info), \
2751e12ee3bSFrançois Tigeot 	INTEL_BDW_GT3_IDS(info), \
2764be47400SFrançois Tigeot 	INTEL_BDW_RSVD_IDS(info)
277ba55f2f5SFrançois Tigeot 
278ba55f2f5SFrançois Tigeot #define INTEL_CHV_IDS(info) \
279ba55f2f5SFrançois Tigeot 	INTEL_VGA_DEVICE(0x22b0, info), \
280ba55f2f5SFrançois Tigeot 	INTEL_VGA_DEVICE(0x22b1, info), \
281ba55f2f5SFrançois Tigeot 	INTEL_VGA_DEVICE(0x22b2, info), \
282ba55f2f5SFrançois Tigeot 	INTEL_VGA_DEVICE(0x22b3, info)
283ba55f2f5SFrançois Tigeot 
284477eb7f9SFrançois Tigeot #define INTEL_SKL_GT1_IDS(info)	\
2852c9916cdSFrançois Tigeot 	INTEL_VGA_DEVICE(0x1906, info), /* ULT GT1 */ \
2862c9916cdSFrançois Tigeot 	INTEL_VGA_DEVICE(0x190E, info), /* ULX GT1 */ \
287477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1902, info), /* DT  GT1 */ \
288477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x190B, info), /* Halo GT1 */ \
289477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x190A, info) /* SRV GT1 */
290477eb7f9SFrançois Tigeot 
291477eb7f9SFrançois Tigeot #define INTEL_SKL_GT2_IDS(info)	\
292477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1916, info), /* ULT GT2 */ \
293477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1921, info), /* ULT GT2F */ \
2942c9916cdSFrançois Tigeot 	INTEL_VGA_DEVICE(0x191E, info), /* ULX GT2 */ \
2952c9916cdSFrançois Tigeot 	INTEL_VGA_DEVICE(0x1912, info), /* DT  GT2 */ \
2962c9916cdSFrançois Tigeot 	INTEL_VGA_DEVICE(0x191B, info), /* Halo GT2 */ \
2972c9916cdSFrançois Tigeot 	INTEL_VGA_DEVICE(0x191A, info), /* SRV GT2 */ \
2982c9916cdSFrançois Tigeot 	INTEL_VGA_DEVICE(0x191D, info)  /* WKS GT2 */
2992c9916cdSFrançois Tigeot 
300477eb7f9SFrançois Tigeot #define INTEL_SKL_GT3_IDS(info) \
301c0e85e96SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1923, info), /* ULT GT3 */ \
302477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1926, info), /* ULT GT3 */ \
303c0e85e96SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1927, info), /* ULT GT3 */ \
304477eb7f9SFrançois Tigeot 	INTEL_VGA_DEVICE(0x192B, info), /* Halo GT3 */ \
305a85cb24fSFrançois Tigeot 	INTEL_VGA_DEVICE(0x192D, info)  /* SRV GT3 */
306aee94f86SFrançois Tigeot 
307aee94f86SFrançois Tigeot #define INTEL_SKL_GT4_IDS(info) \
308aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1932, info), /* DT GT4 */ \
309aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x193B, info), /* Halo GT4 */ \
310aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x193D, info), /* WKS GT4 */ \
311a85cb24fSFrançois Tigeot 	INTEL_VGA_DEVICE(0x192A, info), /* SRV GT4 */ \
312a85cb24fSFrançois Tigeot 	INTEL_VGA_DEVICE(0x193A, info)  /* SRV GT4e */
313477eb7f9SFrançois Tigeot 
314477eb7f9SFrançois Tigeot #define INTEL_SKL_IDS(info)	 \
315477eb7f9SFrançois Tigeot 	INTEL_SKL_GT1_IDS(info), \
316477eb7f9SFrançois Tigeot 	INTEL_SKL_GT2_IDS(info), \
317aee94f86SFrançois Tigeot 	INTEL_SKL_GT3_IDS(info), \
318aee94f86SFrançois Tigeot 	INTEL_SKL_GT4_IDS(info)
319477eb7f9SFrançois Tigeot 
32019c468b4SFrançois Tigeot #define INTEL_BXT_IDS(info) \
32119c468b4SFrançois Tigeot 	INTEL_VGA_DEVICE(0x0A84, info), \
322352ff8bdSFrançois Tigeot 	INTEL_VGA_DEVICE(0x1A84, info), \
323c0e85e96SFrançois Tigeot 	INTEL_VGA_DEVICE(0x1A85, info), \
324c0e85e96SFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A84, info), /* APL HD Graphics 505 */ \
325c0e85e96SFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A85, info)  /* APL HD Graphics 500 */
326477eb7f9SFrançois Tigeot 
327a85cb24fSFrançois Tigeot #define INTEL_GLK_IDS(info) \
328a85cb24fSFrançois Tigeot 	INTEL_VGA_DEVICE(0x3184, info), \
329a85cb24fSFrançois Tigeot 	INTEL_VGA_DEVICE(0x3185, info)
330a85cb24fSFrançois Tigeot 
331aee94f86SFrançois Tigeot #define INTEL_KBL_GT1_IDS(info)	\
332aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x5913, info), /* ULT GT1.5 */ \
333aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x5915, info), /* ULX GT1.5 */ \
334aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x5906, info), /* ULT GT1 */ \
335aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x590E, info), /* ULX GT1 */ \
336aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x5902, info), /* DT  GT1 */ \
337198d2d2aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5908, info), /* Halo GT1 */ \
338aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x590B, info), /* Halo GT1 */ \
339aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x590A, info) /* SRV GT1 */
340aee94f86SFrançois Tigeot 
341aee94f86SFrançois Tigeot #define INTEL_KBL_GT2_IDS(info)	\
342aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x5916, info), /* ULT GT2 */ \
3433f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5917, info), /* Mobile GT2 */ \
344aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x5921, info), /* ULT GT2F */ \
345aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x591E, info), /* ULX GT2 */ \
346aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x5912, info), /* DT  GT2 */ \
347aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x591B, info), /* Halo GT2 */ \
348aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x591A, info), /* SRV GT2 */ \
349aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x591D, info) /* WKS GT2 */
350aee94f86SFrançois Tigeot 
351aee94f86SFrançois Tigeot #define INTEL_KBL_GT3_IDS(info) \
352198d2d2aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5923, info), /* ULT GT3 */ \
353aee94f86SFrançois Tigeot 	INTEL_VGA_DEVICE(0x5926, info), /* ULT GT3 */ \
354198d2d2aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5927, info) /* ULT GT3 */
355aee94f86SFrançois Tigeot 
356aee94f86SFrançois Tigeot #define INTEL_KBL_GT4_IDS(info) \
357198d2d2aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x593B, info) /* Halo GT4 */
358198d2d2aSFrançois Tigeot 
359198d2d2aSFrançois Tigeot /* AML/KBL Y GT2 */
360fc0abc32SFrançois Tigeot #define INTEL_AML_KBL_GT2_IDS(info) \
361198d2d2aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x591C, info),  /* ULX GT2 */ \
362198d2d2aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x87C0, info) /* ULX GT2 */
363aee94f86SFrançois Tigeot 
364fc0abc32SFrançois Tigeot /* AML/CFL Y GT2 */
365fc0abc32SFrançois Tigeot #define INTEL_AML_CFL_GT2_IDS(info) \
366fc0abc32SFrançois Tigeot 	INTEL_VGA_DEVICE(0x87CA, info)
367fc0abc32SFrançois Tigeot 
368fc0abc32SFrançois Tigeot /* CML GT1 */
369fc0abc32SFrançois Tigeot #define INTEL_CML_GT1_IDS(info)	\
370fc0abc32SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BA5, info), \
371fc0abc32SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BA8, info), \
372fc0abc32SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BA4, info), \
373fc0abc32SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BA2, info)
374fc0abc32SFrançois Tigeot 
375*a8138aa8SFrançois Tigeot #define INTEL_CML_U_GT1_IDS(info) \
376*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9B21, info), \
377*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BAA, info), \
378*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BAC, info)
379*a8138aa8SFrançois Tigeot 
380fc0abc32SFrançois Tigeot /* CML GT2 */
381fc0abc32SFrançois Tigeot #define INTEL_CML_GT2_IDS(info)	\
382fc0abc32SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BC5, info), \
383fc0abc32SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BC8, info), \
384fc0abc32SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BC4, info), \
385*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BC2, info), \
386*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BC6, info), \
387*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BE6, info), \
388*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BF6, info)
389*a8138aa8SFrançois Tigeot 
390*a8138aa8SFrançois Tigeot #define INTEL_CML_U_GT2_IDS(info) \
391*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9B41, info), \
392*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BCA, info), \
393*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x9BCC, info)
394fc0abc32SFrançois Tigeot 
395aee94f86SFrançois Tigeot #define INTEL_KBL_IDS(info) \
396aee94f86SFrançois Tigeot 	INTEL_KBL_GT1_IDS(info), \
397aee94f86SFrançois Tigeot 	INTEL_KBL_GT2_IDS(info), \
398aee94f86SFrançois Tigeot 	INTEL_KBL_GT3_IDS(info), \
3993f2dd94aSFrançois Tigeot 	INTEL_KBL_GT4_IDS(info)
400e755878bSFrançois Tigeot 
401*a8138aa8SFrançois Tigeot /* CFL S */
402*a8138aa8SFrançois Tigeot #define INTEL_CFL_S_GT1_IDS(info) \
403*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3E90, info), /* SRV GT1 */ \
404*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3E93, info), /* SRV GT1 */ \
405*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3E99, info)  /* SRV GT1 */
406*a8138aa8SFrançois Tigeot 
407*a8138aa8SFrançois Tigeot #define INTEL_CFL_S_GT2_IDS(info) \
408*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3E91, info), /* SRV GT2 */ \
409*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3E92, info), /* SRV GT2 */ \
410*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3E96, info), /* SRV GT2 */ \
411*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3E98, info), /* SRV GT2 */ \
412*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3E9A, info)  /* SRV GT2 */
413*a8138aa8SFrançois Tigeot 
414*a8138aa8SFrançois Tigeot /* CFL H */
415*a8138aa8SFrançois Tigeot #define INTEL_CFL_H_GT1_IDS(info) \
416*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3E9C, info)
417*a8138aa8SFrançois Tigeot 
418*a8138aa8SFrançois Tigeot #define INTEL_CFL_H_GT2_IDS(info) \
419*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3E9B, info), /* Halo GT2 */ \
420*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3E94, info)  /* Halo GT2 */
421*a8138aa8SFrançois Tigeot 
422*a8138aa8SFrançois Tigeot /* CFL U GT2 */
423*a8138aa8SFrançois Tigeot #define INTEL_CFL_U_GT2_IDS(info) \
424*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3EA9, info)
425*a8138aa8SFrançois Tigeot 
426*a8138aa8SFrançois Tigeot /* CFL U GT3 */
427*a8138aa8SFrançois Tigeot #define INTEL_CFL_U_GT3_IDS(info) \
428*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3EA5, info), /* ULT GT3 */ \
429*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3EA6, info), /* ULT GT3 */ \
430*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3EA7, info), /* ULT GT3 */ \
431*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3EA8, info)  /* ULT GT3 */
432*a8138aa8SFrançois Tigeot 
433*a8138aa8SFrançois Tigeot /* WHL/CFL U GT1 */
434*a8138aa8SFrançois Tigeot #define INTEL_WHL_U_GT1_IDS(info) \
435*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3EA1, info), \
436*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3EA4, info)
437*a8138aa8SFrançois Tigeot 
438*a8138aa8SFrançois Tigeot /* WHL/CFL U GT2 */
439*a8138aa8SFrançois Tigeot #define INTEL_WHL_U_GT2_IDS(info) \
440*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3EA0, info), \
441*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3EA3, info)
442*a8138aa8SFrançois Tigeot 
443*a8138aa8SFrançois Tigeot /* WHL/CFL U GT3 */
444*a8138aa8SFrançois Tigeot #define INTEL_WHL_U_GT3_IDS(info) \
445*a8138aa8SFrançois Tigeot 	INTEL_VGA_DEVICE(0x3EA2, info)
446*a8138aa8SFrançois Tigeot 
447e755878bSFrançois Tigeot #define INTEL_CFL_IDS(info)	   \
448e755878bSFrançois Tigeot 	INTEL_CFL_S_GT1_IDS(info), \
449e755878bSFrançois Tigeot 	INTEL_CFL_S_GT2_IDS(info), \
450*a8138aa8SFrançois Tigeot 	INTEL_CFL_H_GT1_IDS(info), \
451e755878bSFrançois Tigeot 	INTEL_CFL_H_GT2_IDS(info), \
452*a8138aa8SFrançois Tigeot 	INTEL_CFL_U_GT2_IDS(info), \
453*a8138aa8SFrançois Tigeot 	INTEL_CFL_U_GT3_IDS(info), \
454*a8138aa8SFrançois Tigeot 	INTEL_WHL_U_GT1_IDS(info), \
455*a8138aa8SFrançois Tigeot 	INTEL_WHL_U_GT2_IDS(info), \
456*a8138aa8SFrançois Tigeot 	INTEL_WHL_U_GT3_IDS(info), \
457*a8138aa8SFrançois Tigeot 	INTEL_AML_CFL_GT2_IDS(info), \
458*a8138aa8SFrançois Tigeot 	INTEL_CML_GT1_IDS(info), \
459*a8138aa8SFrançois Tigeot 	INTEL_CML_GT2_IDS(info), \
460*a8138aa8SFrançois Tigeot 	INTEL_CML_U_GT1_IDS(info), \
461*a8138aa8SFrançois Tigeot 	INTEL_CML_U_GT2_IDS(info)
4623f2dd94aSFrançois Tigeot 
4633f2dd94aSFrançois Tigeot /* CNL U 2+2 */
4643f2dd94aSFrançois Tigeot #define INTEL_CNL_U_GT2_IDS(info) \
4653f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A52, info), \
4663f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A5A, info), \
4673f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A42, info), \
4683f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A4A, info)
4693f2dd94aSFrançois Tigeot 
4703f2dd94aSFrançois Tigeot /* CNL Y 2+2 */
4713f2dd94aSFrançois Tigeot #define INTEL_CNL_Y_GT2_IDS(info) \
4723f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A51, info), \
4733f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A59, info), \
4743f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A41, info), \
4753f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A49, info), \
4763f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A71, info), \
4773f2dd94aSFrançois Tigeot 	INTEL_VGA_DEVICE(0x5A79, info)
4783f2dd94aSFrançois Tigeot 
4793f2dd94aSFrançois Tigeot #define INTEL_CNL_IDS(info) \
4803f2dd94aSFrançois Tigeot 	INTEL_CNL_U_GT2_IDS(info), \
4813f2dd94aSFrançois Tigeot 	INTEL_CNL_Y_GT2_IDS(info)
4823f2dd94aSFrançois Tigeot 
4839edbd4a0SFrançois Tigeot #endif /* _I915_PCIIDS_H */
484