aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorvin Köhne <corvin.koehne@gmail.com>2024-08-28 15:43:26 +0200
committerCédric Le Goater <clg@redhat.com>2024-09-17 10:37:55 +0200
commit9c86b9fb43cf724c4adcf234dc4c6d20d83ee370 (patch)
tree45f56cc1cc5415605dceafcd4a884a78117c5164
parent11b5ce95beecfd51d1b17858d23fe9cbb0b5783f (diff)
downloadqemu-9c86b9fb43cf724c4adcf234dc4c6d20d83ee370.zip
qemu-9c86b9fb43cf724c4adcf234dc4c6d20d83ee370.tar.gz
qemu-9c86b9fb43cf724c4adcf234dc4c6d20d83ee370.tar.bz2
vfio/igd: add ID's for ElkhartLake and TigerLake
ElkhartLake and TigerLake devices were tested in legacy mode with Linux and Windows VMs. Both are working properly. It's likely that other Intel GPUs of gen 11 and 12 like IceLake device are working too. However, we're only adding known good devices for now. Signed-off-by: Corvin Köhne <c.koehne@beckhoff.com> Reviewed-by: Alex Williamson <alex.williamson@redhat.com>
-rw-r--r--hw/vfio/igd.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/vfio/igd.c b/hw/vfio/igd.c
index 0d68c6a..8a41b16 100644
--- a/hw/vfio/igd.c
+++ b/hw/vfio/igd.c
@@ -88,6 +88,12 @@ static int igd_gen(VFIOPCIDevice *vdev)
case 0x2200:
case 0x5900:
return 8;
+ /* ElkhartLake */
+ case 0x4500:
+ return 11;
+ /* TigerLake */
+ case 0x9A00:
+ return 12;
}
/*