diff options
author | Corvin Köhne <c.koehne@beckhoff.com> | 2024-11-08 13:48:30 +0100 |
---|---|---|
committer | Cédric Le Goater <clg@redhat.com> | 2024-11-18 08:40:06 +0100 |
commit | aff0c39c5bb5b45ebbf8f857cf8f546d4565f1bb (patch) | |
tree | 00c0905f6b3d4ef6bf76adc4ae2cf620230af1ba /hw | |
parent | abb1565d3d863cf210f18f70c4a42b0f39b8ccdb (diff) |
vfio/igd: add pci id for Coffee Lake
I've tested and verified that Coffee Lake devices are working properly.
Signed-off-by: Corvin Köhne <c.koehne@beckhoff.com>
Reviewed-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/vfio/igd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/vfio/igd.c b/hw/vfio/igd.c index a95d441f68..c5282827ec 100644 --- a/hw/vfio/igd.c +++ b/hw/vfio/igd.c @@ -88,6 +88,9 @@ static int igd_gen(VFIOPCIDevice *vdev) case 0x2200: case 0x5900: return 8; + /* CoffeeLake */ + case 0x3e00: + return 9; /* ElkhartLake */ case 0x4500: return 11; |