diff --git a/sys/dev/agp/agp_i810.c b/sys/dev/agp/agp_i810.c index 6048982..833a8c9 100644 --- a/sys/dev/agp/agp_i810.c +++ b/sys/dev/agp/agp_i810.c @@ -796,6 +796,11 @@ static const struct agp_i810_match { .driver = &agp_i810_hsw_driver }, { + .devid = 0x0a168086, + .name = "Haswell ULT GT2 mobile", + .driver = &agp_i810_hsw_driver + }, + { .devid = 0x0c168086, .name = "Haswell SDV", .driver = &agp_i810_hsw_driver diff --git a/sys/dev/drm2/drm_pciids.h b/sys/dev/drm2/drm_pciids.h index 828862c..1eae3bf 100644 --- a/sys/dev/drm2/drm_pciids.h +++ b/sys/dev/drm2/drm_pciids.h @@ -54,6 +54,7 @@ {0x8086, 0x0412, 0, "Intel Haswell"}, \ {0x8086, 0x0416, 0, "Intel Haswell (M)"}, \ {0x8086, 0x041A, 0, "Intel Haswell (S)"}, \ + {0x8086, 0x0A16, 0, "Intel Haswell (ULT GT2 mobile)"}, \ {0x8086, 0x0C16, 0, "Intel Haswell (SDV)"}, \ {0x8086, 0x2562, 0, "Intel i845G GMCH"}, \ {0x8086, 0x2572, 0, "Intel i865G GMCH"}, \