Skip to content

Commit 4c9d4cb

Browse files
committed
WIP passthrough AMD GPU as if it were an IGP (from marmarek)
1 parent bc05bac commit 4c9d4cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/libxl/libxl_pci.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ bool libxl__is_igd_vga_passthru(libxl__gc *gc,
597597
pt_device = sysfs_dev_get_device(gc, pcidev);
598598

599599
if (pt_vendor == 0xffff || pt_device == 0xffff ||
600-
pt_vendor != 0x8086)
600+
(pt_vendor != 0x8086 && pt_vendor != 0x1002))
601601
continue;
602602

603603
if (sysfs_dev_get_class(gc, pcidev, &class))

0 commit comments

Comments
 (0)