[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 5/7] vfio/igd: add ID's for ElkhartLake and TigerLake
|
From: |
Corvin Köhne |
|
Subject: |
[PATCH v3 5/7] vfio/igd: add ID's for ElkhartLake and TigerLake |
|
Date: |
Wed, 28 Aug 2024 15:43:26 +0200 |
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>
---
hw/vfio/igd.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/hw/vfio/igd.c b/hw/vfio/igd.c
index 0d68c6a451..8a41b16421 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;
}
/*
--
2.46.0
- [PATCH v3 0/7] vfio/igd: add passthrough support for IGDs of gen 11 and later, Corvin Köhne, 2024/08/28
- [PATCH v3 1/7] vfio/igd: return an invalid generation for unknown devices, Corvin Köhne, 2024/08/28
- [PATCH v3 3/7] vfio/igd: use new BDSM register location and size for gen 11 and later, Corvin Köhne, 2024/08/28
- [PATCH v3 5/7] vfio/igd: add ID's for ElkhartLake and TigerLake,
Corvin Köhne <=
- [PATCH v3 4/7] vfio/igd: add new bar0 quirk to emulate BDSM mirror, Corvin Köhne, 2024/08/28
- [PATCH v3 6/7] vfio/igd: don't set stolen memory size to zero, Corvin Köhne, 2024/08/28
- [PATCH v3 7/7] vfio/igd: correctly calculate stolen memory size for gen 9 and later, Corvin Köhne, 2024/08/28
- [PATCH v3 2/7] vfio/igd: support legacy mode for all known generations, Corvin Köhne, 2024/08/28
- Re: [PATCH v3 0/7] vfio/igd: add passthrough support for IGDs of gen 11 and later, Alex Williamson, 2024/08/29