svn commit: r316749 - in head/sys/dev/drm2: . i915
Conrad Meyer
cem at FreeBSD.org
Thu Apr 13 01:56:17 UTC 2017
Author: cem
Date: Thu Apr 13 01:56:15 2017
New Revision: 316749
URL: https://svnweb.freebsd.org/changeset/base/316749
Log:
drm2: Add some missing PCIIDs for some Haswell systems
Submitted by: Jia-Shiun Li <jiashiun at gmail.com>
Modified:
head/sys/dev/drm2/drm_pciids.h
head/sys/dev/drm2/i915/i915_drv.c
Modified: head/sys/dev/drm2/drm_pciids.h
==============================================================================
--- head/sys/dev/drm2/drm_pciids.h Thu Apr 13 01:36:51 2017 (r316748)
+++ head/sys/dev/drm2/drm_pciids.h Thu Apr 13 01:56:15 2017 (r316749)
@@ -54,6 +54,7 @@
{0x8086, 0x0412, 0, "Intel Haswell (GT2 desktop)"}, \
{0x8086, 0x0416, 0, "Intel Haswell (GT2 mobile)"}, \
{0x8086, 0x041A, 0, "Intel Haswell (GT2 server)"}, \
+ {0x8086, 0x041E, 0, "Intel Haswell (GT2 desktop)"}, \
{0x8086, 0x0422, 0, "Intel Haswell (GT2 desktop)"}, \
{0x8086, 0x0426, 0, "Intel Haswell (GT2 mobile)"}, \
{0x8086, 0x042A, 0, "Intel Haswell (GT2 server)"}, \
Modified: head/sys/dev/drm2/i915/i915_drv.c
==============================================================================
--- head/sys/dev/drm2/i915/i915_drv.c Thu Apr 13 01:36:51 2017 (r316748)
+++ head/sys/dev/drm2/i915/i915_drv.c Thu Apr 13 01:56:15 2017 (r316749)
@@ -380,6 +380,7 @@ static const struct intel_gfx_device_id
INTEL_VGA_DEVICE(0x016a, &intel_ivybridge_d_info), /* GT2 server */
INTEL_VGA_DEVICE(0x0402, &intel_haswell_d_info), /* GT1 desktop */
INTEL_VGA_DEVICE(0x0412, &intel_haswell_d_info), /* GT2 desktop */
+ INTEL_VGA_DEVICE(0x041e, &intel_haswell_d_info), /* GT2 desktop */
INTEL_VGA_DEVICE(0x0422, &intel_haswell_d_info), /* GT2 desktop */
INTEL_VGA_DEVICE(0x040a, &intel_haswell_d_info), /* GT1 server */
INTEL_VGA_DEVICE(0x041a, &intel_haswell_d_info), /* GT2 server */
More information about the svn-src-all
mailing list