<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Re:Error43 Using SR-IOV In Alder Lake 140T from 265H in Graphics</title>
    <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1702362#M143778</link>
    <description>&lt;P&gt;To reproduce the issue, I cloned your repository &lt;A href="https://github.com/intel/mainline-tracking/" target="_blank" rel="noopener"&gt;https://github.com/intel/mainline-tracking/&lt;/A&gt;&lt;BR /&gt;Selecting the 6.15 branch.&lt;/P&gt;&lt;P&gt;I compiled it two weeks ago, then pulled again yesterday since you committed several changes related to SR-IOV in the XE driver last week, and recompiled.&lt;/P&gt;&lt;P&gt;I signed both the modules and the kernel with my personal signature so I could use Secure Boot.&lt;BR /&gt;(This signature was enrolled with mokutils on all my devices)&lt;/P&gt;&lt;P&gt;To compile, I applied a small patch to enable SR-IOV on Arrow Lake, since by default it's treated as Meteor Lake (which theoretically shouldn't support SR-IOV, although it seems that for some users it works with the i915 driver).&lt;/P&gt;&lt;P&gt;Here is the patch:&lt;/P&gt;&lt;PRE&gt;commit 093f71602d22a9aaedfdf8e26c13cf57cf428560&lt;BR /&gt;Author: mondinmr &amp;lt;mondinmr@gmail.com&amp;gt;&lt;BR /&gt;Date: &amp;nbsp;&amp;nbsp;Mon Jul 7 10:45:37 2025 +0200&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;My SR-IOV Patch&lt;BR /&gt;&lt;BR /&gt;diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c &lt;BR /&gt;index 7c347063a382..9ea6c7854ea5 100644 &lt;BR /&gt;--- a/drivers/gpu/drm/xe/xe_pci.c &lt;BR /&gt;+++ b/drivers/gpu/drm/xe/xe_pci.c &lt;BR /&gt;@@ -327,11 +327,22 @@ static const struct xe_device_desc mtl_desc = { &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_pxp = true, &lt;BR /&gt;}; &lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;+static const struct xe_device_desc arl_desc = { &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* .graphics and .media determined via GMD_ID */ &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.require_force_probe = true, &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;PLATFORM(METEORLAKE), &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.dma_mask_size = 46, &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_display = true, &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp; .has_sriov = true, &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_pxp = true, &lt;BR /&gt;+}; &lt;BR /&gt;+ &lt;BR /&gt;static const struct xe_device_desc lnl_desc = { &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;PLATFORM(LUNARLAKE), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.dma_mask_size = 46, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_display = true, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_pxp = true, &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_heci_cscfi = 1, &lt;BR /&gt;}; &lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;static const struct xe_device_desc bmg_desc = { &lt;BR /&gt;@@ -372,7 +383,7 @@ static const struct pci_device_id pciidlist[] = { &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_RPLS_IDS(INTEL_VGA_DEVICE, &amp;amp;adl_s_desc), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_DG1_IDS(INTEL_VGA_DEVICE, &amp;amp;dg1_desc), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_ATS_M_IDS(INTEL_VGA_DEVICE, &amp;amp;ats_m_desc), &lt;BR /&gt;- &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_ARL_IDS(INTEL_VGA_DEVICE, &amp;amp;mtl_desc), &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_ARL_IDS(INTEL_VGA_DEVICE, &amp;amp;arl_desc), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_DG2_IDS(INTEL_VGA_DEVICE, &amp;amp;dg2_desc), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_MTL_IDS(INTEL_VGA_DEVICE, &amp;amp;mtl_desc), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_LNL_IDS(INTEL_VGA_DEVICE, &amp;amp;lnl_desc),&lt;BR /&gt;&lt;BR /&gt;I tested with QEMU from Ubuntu 24.04 as well as the latest QEMU from git, compiled with Ubuntu's configuration and packaged into a DEB.&lt;/PRE&gt;&lt;P&gt;However, I believe SR-IOV support for the Linux XE driver is still not fully implemented for Arrow Lake. Looks like I’ll have to wait.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jul 2025 09:06:40 GMT</pubDate>
    <dc:creator>Mondin_Marco</dc:creator>
    <dc:date>2025-07-09T09:06:40Z</dc:date>
    <item>
      <title>Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1699504#M143313</link>
      <description>&lt;P&gt;I should clarify that I've compiled kernels 6.12.19 and 6.12.33 directly from Intel LTS Linux.&lt;BR /&gt;Checked 265H in your site is marked as SR-IOV supported on GPU.&lt;/P&gt;&lt;P&gt;With my previous 13000H everything worked perfectly; I could run multiple VMs.&lt;BR /&gt;However, I was limited to a specific driver version — if I updated, Error 43 was guaranteed.&lt;/P&gt;&lt;P&gt;Now, with a new Dell equipped with a 265H, I can't avoid that error no matter which driver I use.&lt;BR /&gt;I've tried dozens (Starting from original one issued by Dell).&lt;/P&gt;&lt;P&gt;I've also extracted the GOP file from the BIOS and passed it as a ROM file.&lt;/P&gt;&lt;P&gt;Below is my VM configuration KVm/LibVirt:&lt;/P&gt;&lt;P&gt;&amp;lt;domain xmlns:qemu="&lt;A href="http://libvirt.org/schemas/domain/qemu/1.0" target="_blank" rel="noopener"&gt;http://libvirt.org/schemas/domain/qemu/1.0&lt;/A&gt;" type="kvm"&amp;gt;&lt;BR /&gt;&amp;lt;name&amp;gt;Win10Codesys&amp;lt;/name&amp;gt;&lt;BR /&gt;&amp;lt;uuid&amp;gt;REMOVED FOR MANY REASONS&amp;lt;/uuid&amp;gt;&lt;BR /&gt;&amp;lt;metadata&amp;gt;&lt;BR /&gt;&amp;lt;libosinfo:libosinfo xmlns:libosinfo="&lt;A href="http://libosinfo.org/xmlns/libvirt/domain/1.0" target="_blank" rel="noopener"&gt;http://libosinfo.org/xmlns/libvirt/domain/1.0&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;libosinfo:os id="&lt;A href="http://microsoft.com/win/10" target="_blank" rel="noopener"&gt;http://microsoft.com/win/10&lt;/A&gt;"/&amp;gt;&lt;BR /&gt;&amp;lt;/libosinfo:libosinfo&amp;gt;&lt;BR /&gt;&amp;lt;/metadata&amp;gt;&lt;BR /&gt;&amp;lt;memory unit="KiB"&amp;gt;8388608&amp;lt;/memory&amp;gt;&lt;BR /&gt;&amp;lt;currentMemory unit="KiB"&amp;gt;8388608&amp;lt;/currentMemory&amp;gt;&lt;BR /&gt;&amp;lt;memoryBacking&amp;gt;&lt;BR /&gt;&amp;lt;source type="memfd"/&amp;gt;&lt;BR /&gt;&amp;lt;access mode="shared"/&amp;gt;&lt;BR /&gt;&amp;lt;/memoryBacking&amp;gt;&lt;BR /&gt;&amp;lt;vcpu placement="static"&amp;gt;8&amp;lt;/vcpu&amp;gt;&lt;BR /&gt;&amp;lt;iothreads&amp;gt;1&amp;lt;/iothreads&amp;gt;&lt;BR /&gt;&amp;lt;cputune&amp;gt;&lt;BR /&gt;&amp;lt;vcpupin vcpu="0" cpuset="0"/&amp;gt;&lt;BR /&gt;&amp;lt;vcpupin vcpu="1" cpuset="1"/&amp;gt;&lt;BR /&gt;&amp;lt;vcpupin vcpu="2" cpuset="2"/&amp;gt;&lt;BR /&gt;&amp;lt;vcpupin vcpu="3" cpuset="3"/&amp;gt;&lt;BR /&gt;&amp;lt;vcpupin vcpu="4" cpuset="4"/&amp;gt;&lt;BR /&gt;&amp;lt;vcpupin vcpu="5" cpuset="5"/&amp;gt;&lt;BR /&gt;&amp;lt;vcpupin vcpu="6" cpuset="6"/&amp;gt;&lt;BR /&gt;&amp;lt;vcpupin vcpu="7" cpuset="7"/&amp;gt;&lt;BR /&gt;&amp;lt;emulatorpin cpuset="8-15"/&amp;gt;&lt;BR /&gt;&amp;lt;iothreadpin iothread="1" cpuset="8-15"/&amp;gt;&lt;BR /&gt;&amp;lt;/cputune&amp;gt;&lt;BR /&gt;&amp;lt;sysinfo type="smbios"&amp;gt;&lt;BR /&gt;&amp;lt;bios&amp;gt;&lt;BR /&gt;&amp;lt;entry name="vendor"&amp;gt;Dell Inc.&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="version"&amp;gt;1.2.0&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="date"&amp;gt;03/21/2025&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;/bios&amp;gt;&lt;BR /&gt;&amp;lt;system&amp;gt;&lt;BR /&gt;&amp;lt;entry name="manufacturer"&amp;gt;Dell Inc.&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="product"&amp;gt;Dell Pro Max 16 MC16250&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="version"&amp;gt;Not Specified&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="serial"&amp;gt;FB9JW94&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="uuid"&amp;gt;REMOVED FOR MANY REASONS&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="sku"&amp;gt;0CF1&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="family"&amp;gt;Dell Pro Max Laptops&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;/system&amp;gt;&lt;BR /&gt;&amp;lt;baseBoard&amp;gt;&lt;BR /&gt;&amp;lt;entry name="manufacturer"&amp;gt;Dell Inc.&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="product"&amp;gt;0YHD6M&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="version"&amp;gt;A00&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="serial"&amp;gt;/FB9JW94/CNWSC0055200YF/&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;/baseBoard&amp;gt;&lt;BR /&gt;&amp;lt;chassis&amp;gt;&lt;BR /&gt;&amp;lt;entry name="manufacturer"&amp;gt;Dell Inc.&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="serial"&amp;gt;FB9JW94&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;entry name="sku"&amp;gt;Notebook&amp;lt;/entry&amp;gt;&lt;BR /&gt;&amp;lt;/chassis&amp;gt;&lt;BR /&gt;&amp;lt;/sysinfo&amp;gt;&lt;BR /&gt;&amp;lt;os firmware="efi"&amp;gt;&lt;BR /&gt;&amp;lt;type arch="x86_64" machine="pc-q35-8.2"&amp;gt;hvm&amp;lt;/type&amp;gt;&lt;BR /&gt;&amp;lt;firmware&amp;gt;&lt;BR /&gt;&amp;lt;feature enabled="no" name="enrolled-keys"/&amp;gt;&lt;BR /&gt;&amp;lt;feature enabled="yes" name="secure-boot"/&amp;gt;&lt;BR /&gt;&amp;lt;/firmware&amp;gt;&lt;BR /&gt;&amp;lt;loader readonly="yes" secure="yes" type="pflash"&amp;gt;/usr/share/OVMF/OVMF_CODE_4M.secboot.fd&amp;lt;/loader&amp;gt;&lt;BR /&gt;&amp;lt;nvram template="/usr/share/OVMF/OVMF_VARS_4M.fd"&amp;gt;/var/lib/libvirt/qemu/nvram/Windows11Codesys.fd&amp;lt;/nvram&amp;gt;&lt;BR /&gt;&amp;lt;boot dev="hd"/&amp;gt;&lt;BR /&gt;&amp;lt;bootmenu enable="yes"/&amp;gt;&lt;BR /&gt;&amp;lt;smbios mode="sysinfo"/&amp;gt;&lt;BR /&gt;&amp;lt;/os&amp;gt;&lt;BR /&gt;&amp;lt;features&amp;gt;&lt;BR /&gt;&amp;lt;acpi/&amp;gt;&lt;BR /&gt;&amp;lt;apic/&amp;gt;&lt;BR /&gt;&amp;lt;hyperv mode="custom"&amp;gt;&lt;BR /&gt;&amp;lt;relaxed state="on"/&amp;gt;&lt;BR /&gt;&amp;lt;vapic state="on"/&amp;gt;&lt;BR /&gt;&amp;lt;spinlocks state="on" retries="8191"/&amp;gt;&lt;BR /&gt;&amp;lt;vpindex state="on"/&amp;gt;&lt;BR /&gt;&amp;lt;runtime state="on"/&amp;gt;&lt;BR /&gt;&amp;lt;synic state="on"/&amp;gt;&lt;BR /&gt;&amp;lt;stimer state="on"/&amp;gt;&lt;BR /&gt;&amp;lt;vendor_id state="on" value="Dell Inc."/&amp;gt;&lt;BR /&gt;&amp;lt;/hyperv&amp;gt;&lt;BR /&gt;&amp;lt;kvm&amp;gt;&lt;BR /&gt;&amp;lt;hidden state="on"/&amp;gt;&lt;BR /&gt;&amp;lt;/kvm&amp;gt;&lt;BR /&gt;&amp;lt;vmport state="off"/&amp;gt;&lt;BR /&gt;&amp;lt;smm state="on"/&amp;gt;&lt;BR /&gt;&amp;lt;/features&amp;gt;&lt;BR /&gt;&amp;lt;cpu mode="host-passthrough" check="none" migratable="on"&amp;gt;&lt;BR /&gt;&amp;lt;topology sockets="1" dies="1" cores="8" threads="1"/&amp;gt;&lt;BR /&gt;&amp;lt;maxphysaddr mode="passthrough" limit="40"/&amp;gt;&lt;BR /&gt;&amp;lt;feature policy="disable" name="hypervisor"/&amp;gt;&lt;BR /&gt;&amp;lt;/cpu&amp;gt;&lt;BR /&gt;&amp;lt;clock offset="localtime"&amp;gt;&lt;BR /&gt;&amp;lt;timer name="rtc" tickpolicy="catchup"/&amp;gt;&lt;BR /&gt;&amp;lt;timer name="pit" tickpolicy="delay"/&amp;gt;&lt;BR /&gt;&amp;lt;timer name="hpet" present="no"/&amp;gt;&lt;BR /&gt;&amp;lt;timer name="hypervclock" present="yes"/&amp;gt;&lt;BR /&gt;&amp;lt;/clock&amp;gt;&lt;BR /&gt;&amp;lt;on_poweroff&amp;gt;destroy&amp;lt;/on_poweroff&amp;gt;&lt;BR /&gt;&amp;lt;on_reboot&amp;gt;restart&amp;lt;/on_reboot&amp;gt;&lt;BR /&gt;&amp;lt;on_crash&amp;gt;destroy&amp;lt;/on_crash&amp;gt;&lt;BR /&gt;&amp;lt;pm&amp;gt;&lt;BR /&gt;&amp;lt;suspend-to-mem enabled="no"/&amp;gt;&lt;BR /&gt;&amp;lt;suspend-to-disk enabled="no"/&amp;gt;&lt;BR /&gt;&amp;lt;/pm&amp;gt;&lt;BR /&gt;&amp;lt;devices&amp;gt;&lt;BR /&gt;&amp;lt;emulator&amp;gt;/usr/bin/qemu-system-x86_64&amp;lt;/emulator&amp;gt;&lt;BR /&gt;&amp;lt;disk type="file" device="disk"&amp;gt;&lt;BR /&gt;&amp;lt;driver name="qemu" type="qcow2"/&amp;gt;&lt;BR /&gt;&amp;lt;source file="/media/storage/VMs/KVM/Win10Codesys/Win10Codesys.qcow2"/&amp;gt;&lt;BR /&gt;&amp;lt;target dev="sdb" bus="sata"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="drive" controller="0" bus="0" target="0" unit="1"/&amp;gt;&lt;BR /&gt;&amp;lt;/disk&amp;gt;&lt;BR /&gt;&amp;lt;disk type="file" device="cdrom"&amp;gt;&lt;BR /&gt;&amp;lt;driver name="qemu" type="raw"/&amp;gt;&lt;BR /&gt;&amp;lt;target dev="sdc" bus="sata"/&amp;gt;&lt;BR /&gt;&amp;lt;readonly/&amp;gt;&lt;BR /&gt;&amp;lt;address type="drive" controller="0" bus="0" target="0" unit="2"/&amp;gt;&lt;BR /&gt;&amp;lt;/disk&amp;gt;&lt;BR /&gt;&amp;lt;controller type="usb" index="0" model="nec-xhci" ports="15"&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x03" slot="0x00" function="0x0"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="sata" index="0"&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x1f" function="0x2"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="0" model="pcie-root"/&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="1" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="1" port="0x10"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x04" function="0x0" multifunction="on"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="2" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="2" port="0x11"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x04" function="0x1"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="3" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="3" port="0x12"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x04" function="0x2"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="4" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="4" port="0x13"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x04" function="0x3"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="5" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="5" port="0x14"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x04" function="0x4"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="6" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="6" port="0x15"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x04" function="0x5"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="7" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="7" port="0x16"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x04" function="0x6"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="8" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="8" port="0x17"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x04" function="0x7"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="9" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="9" port="0x10"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x03" function="0x0" multifunction="on"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="10" model="pcie-to-pci-bridge"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-pci-bridge"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x06" slot="0x00" function="0x0"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="11" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="11" port="0x8"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x0" multifunction="on"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="12" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="12" port="0x9"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x1"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="13" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="13" port="0xa"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x2"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="14" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="14" port="0xb"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x3"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="15" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="15" port="0xc"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x4"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="16" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="16" port="0xd"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x5"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="17" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="17" port="0xe"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x6"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="18" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="18" port="0xf"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x7"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="19" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="19" port="0x10"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x0" multifunction="on"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="20" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="20" port="0x11"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x1"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="21" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="21" port="0x12"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x2"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="22" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="22" port="0x13"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x3"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="23" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="23" port="0x14"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x4"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="24" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="24" port="0x15"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x5"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="25" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="25" port="0x16"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x6"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="26" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="26" port="0x17"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x7"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="27" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="27" port="0x19"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x03" function="0x1"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="28" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="28" port="0x1a"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x03" function="0x2"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="29" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="29" port="0x1b"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x03" function="0x3"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="30" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="30" port="0x1c"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x03" function="0x4"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="31" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="31" port="0x1d"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x03" function="0x5"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="pci" index="32" model="pcie-root-port"&amp;gt;&lt;BR /&gt;&amp;lt;model name="pcie-root-port"/&amp;gt;&lt;BR /&gt;&amp;lt;target chassis="32" port="0x1e"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x00" slot="0x03" function="0x6"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;controller type="virtio-serial" index="0"&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x05" slot="0x00" function="0x0"/&amp;gt;&lt;BR /&gt;&amp;lt;/controller&amp;gt;&lt;BR /&gt;&amp;lt;interface type="bridge"&amp;gt;&lt;BR /&gt;&amp;lt;mac address="00:0c:29:5e:f6:dd"/&amp;gt;&lt;BR /&gt;&amp;lt;source bridge="BrService"/&amp;gt;&lt;BR /&gt;&amp;lt;model type="e1000e"/&amp;gt;&lt;BR /&gt;&amp;lt;link state="up"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x02" slot="0x00" function="0x0"/&amp;gt;&lt;BR /&gt;&amp;lt;/interface&amp;gt;&lt;BR /&gt;&amp;lt;serial type="pty"&amp;gt;&lt;BR /&gt;&amp;lt;target type="isa-serial" port="0"&amp;gt;&lt;BR /&gt;&amp;lt;model name="isa-serial"/&amp;gt;&lt;BR /&gt;&amp;lt;/target&amp;gt;&lt;BR /&gt;&amp;lt;/serial&amp;gt;&lt;BR /&gt;&amp;lt;console type="pty"&amp;gt;&lt;BR /&gt;&amp;lt;target type="serial" port="0"/&amp;gt;&lt;BR /&gt;&amp;lt;/console&amp;gt;&lt;BR /&gt;&amp;lt;channel type="unix"&amp;gt;&lt;BR /&gt;&amp;lt;target type="virtio" name="org.qemu.guest_agent.0"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="virtio-serial" controller="0" bus="0" port="1"/&amp;gt;&lt;BR /&gt;&amp;lt;/channel&amp;gt;&lt;BR /&gt;&amp;lt;channel type="spicevmc"&amp;gt;&lt;BR /&gt;&amp;lt;target type="virtio" name="com.redhat.spice.0"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="virtio-serial" controller="0" bus="0" port="2"/&amp;gt;&lt;BR /&gt;&amp;lt;/channel&amp;gt;&lt;BR /&gt;&amp;lt;input type="tablet" bus="usb"&amp;gt;&lt;BR /&gt;&amp;lt;address type="usb" bus="0" port="1"/&amp;gt;&lt;BR /&gt;&amp;lt;/input&amp;gt;&lt;BR /&gt;&amp;lt;input type="mouse" bus="ps2"/&amp;gt;&lt;BR /&gt;&amp;lt;input type="keyboard" bus="ps2"/&amp;gt;&lt;BR /&gt;&amp;lt;tpm model="tpm-tis"&amp;gt;&lt;BR /&gt;&amp;lt;backend type="emulator" version="1.2"/&amp;gt;&lt;BR /&gt;&amp;lt;/tpm&amp;gt;&lt;BR /&gt;&amp;lt;graphics type="spice"&amp;gt;&lt;BR /&gt;&amp;lt;listen type="none"/&amp;gt;&lt;BR /&gt;&amp;lt;image compression="off"/&amp;gt;&lt;BR /&gt;&amp;lt;gl enable="no"/&amp;gt;&lt;BR /&gt;&amp;lt;/graphics&amp;gt;&lt;BR /&gt;&amp;lt;audio id="1" type="spice"/&amp;gt;&lt;BR /&gt;&amp;lt;video&amp;gt;&lt;BR /&gt;&amp;lt;model type="none"/&amp;gt;&lt;BR /&gt;&amp;lt;/video&amp;gt;&lt;BR /&gt;&amp;lt;hostdev mode="subsystem" type="pci" managed="yes"&amp;gt;&lt;BR /&gt;&amp;lt;driver name="vfio"/&amp;gt;&lt;BR /&gt;&amp;lt;source&amp;gt;&lt;BR /&gt;&amp;lt;address domain="0x0000" bus="0x00" slot="0x02" function="0x3"/&amp;gt;&lt;BR /&gt;&amp;lt;/source&amp;gt;&lt;BR /&gt;&amp;lt;rom file="/var/lib/libvirt/roms/IntelGopDriver.efi"/&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x0a" slot="0x02" function="0x0"/&amp;gt;&lt;BR /&gt;&amp;lt;/hostdev&amp;gt;&lt;BR /&gt;&amp;lt;redirdev bus="usb" type="spicevmc"&amp;gt;&lt;BR /&gt;&amp;lt;address type="usb" bus="0" port="2"/&amp;gt;&lt;BR /&gt;&amp;lt;/redirdev&amp;gt;&lt;BR /&gt;&amp;lt;redirdev bus="usb" type="spicevmc"&amp;gt;&lt;BR /&gt;&amp;lt;address type="usb" bus="0" port="3"/&amp;gt;&lt;BR /&gt;&amp;lt;/redirdev&amp;gt;&lt;BR /&gt;&amp;lt;watchdog model="itco" action="reset"/&amp;gt;&lt;BR /&gt;&amp;lt;memballoon model="virtio"&amp;gt;&lt;BR /&gt;&amp;lt;address type="pci" domain="0x0000" bus="0x04" slot="0x00" function="0x0"/&amp;gt;&lt;BR /&gt;&amp;lt;/memballoon&amp;gt;&lt;BR /&gt;&amp;lt;/devices&amp;gt;&lt;BR /&gt;&amp;lt;qemu:override&amp;gt;&lt;BR /&gt;&amp;lt;qemu:device alias="hostdev0"&amp;gt;&lt;BR /&gt;&amp;lt;qemu:frontend&amp;gt;&lt;BR /&gt;&amp;lt;qemu:property name="x-vga" type="bool" value="true"/&amp;gt;&lt;BR /&gt;&amp;lt;qemu:property name="rombar" type="unsigned" value="6"/&amp;gt;&lt;BR /&gt;&amp;lt;/qemu:frontend&amp;gt;&lt;BR /&gt;&amp;lt;/qemu:device&amp;gt;&lt;BR /&gt;&amp;lt;/qemu:override&amp;gt;&lt;BR /&gt;&amp;lt;/domain&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;When booting Linux from a live environment inside VM, dmesg still shows something suspicious.&lt;/P&gt;&lt;P&gt;[ 10.632740] i915 0000:1e:02.0: [drm] *ERROR* Unrecognized display IP version 1023.255; disabling display.&lt;BR /&gt;[ 10.633210] ------------[ cut here ]------------&lt;BR /&gt;[ 10.633214] Missing case (((&amp;amp;(i915)-&amp;gt;__runtime)-&amp;gt;media.ip.ver) == 0)&lt;BR /&gt;[ 10.633286] WARNING: CPU: 5 PID: 1152 at drivers/gpu/drm/i915/intel_uncore.c:2397 uncore_forcewake_init+0x3c9/0x3e0 [i915]&lt;BR /&gt;[ 10.633366] Modules linked in: i915(+) intel_rapl_msr intel_rapl_common intel_uncore_frequency intel_uncore_frequency_common drm_buddy drm_display_helper platform_profile cec kvm_intel rc_core i2c_algo_bit dcdbas dell_wmi_descriptor video wmi sparse_keymap binfmt_misc joydev kvm i2c_i801 rapl i2c_mux intel_cstate i2c_smbus lpc_ich qemu_fw_cfg input_leds mac_hid serio_raw sch_fq_codel msr parport_pc ppdev lp parport efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 overlay isofs nls_iso8859_1 dm_mirror dm_region_hash dm_log uas usb_storage hid_generic crct10dif_pclmul crc32_pclmul usbhid bochs polyval_clmulni hid drm_vram_helper polyval_generic drm_ttm_helper ghash_clmulni_intel e1000e psmouse sha256_ssse3 ttm ahci sha1_ssse3 libahci xhci_pci xhci_pci_renesas aesni_intel crypto_simd cryptd&lt;BR /&gt;[ 10.633409] CPU: 5 UID: 0 PID: 1152 Comm: (udev-worker) Not tainted 6.11.0-17-generic #17~24.04.2-Ubuntu&lt;BR /&gt;[ 10.633412] Hardware name: "Dell Inc." "Dell Pro Max 16 MC16250", BIOS 2024.02-2ubuntu0.4 06/04/2025&lt;BR /&gt;[ 10.633414] RIP: 0010:uncore_forcewake_init+0x3c9/0x3e0 [i915]&lt;BR /&gt;[ 10.633474] Code: 00 00 00 20 bb a5 c0 48 c7 43 78 60 7f a5 c0 e9 63 fd ff ff 0f b6 d0 48 c7 c6 08 29 e4 c0 48 c7 c7 90 b1 e8 c0 e8 07 cc 8a f8 &amp;lt;0f&amp;gt; 0b 41 bd ed ff ff ff e9 4b fc ff ff 66 2e 0f 1f 84 00 00 00 00&lt;BR /&gt;[ 10.633474] RSP: 0018:ffffb68f0068f5a0 EFLAGS: 00010246&lt;BR /&gt;[ 10.633478] RAX: 0000000000000000 RBX: ffff95618b957c28 RCX: 0000000000000000&lt;BR /&gt;[ 10.633479] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000&lt;BR /&gt;[ 10.633479] RBP: ffffb68f0068f5b8 R08: 0000000000000000 R09: 0000000000000000&lt;BR /&gt;[ 10.633480] R10: 0000000000000000 R11: 0000000000000000 R12: ffff95618ecf0000&lt;BR /&gt;[ 10.633480] R13: 0000000000000000 R14: 0000000000000001 R15: 00000000ffffffff&lt;BR /&gt;[ 10.633481] FS: 000073e28e0918c0(0000) GS:ffff9562f7c80000(0000) knlGS:0000000000000000&lt;BR /&gt;[ 10.633482] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033&lt;BR /&gt;[ 10.633482] CR2: 00007c0edfc25530 CR3: 000000010d3d2001 CR4: 0000000000770ef0&lt;BR /&gt;[ 10.633485] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000&lt;BR /&gt;[ 10.633488] DR3: 0000000000000000 DR6: 00000000ffff07f0 DR7: 0000000000000400&lt;BR /&gt;[ 10.633488] PKRU: 55555554&lt;BR /&gt;[ 10.633491] Call Trace:&lt;BR /&gt;[ 10.633496] &amp;lt;TASK&amp;gt;&lt;BR /&gt;[ 10.633498] ? show_regs+0x6c/0x80&lt;BR /&gt;[ 10.633524] ? __warn+0x88/0x140&lt;BR /&gt;[ 10.633530] ? uncore_forcewake_init+0x3c9/0x3e0 [i915]&lt;BR /&gt;[ 10.633586] ? report_bug+0x182/0x1b0&lt;BR /&gt;[ 10.633600] ? handle_bug+0x6e/0xb0&lt;BR /&gt;[ 10.633611] ? exc_invalid_op+0x18/0x80&lt;BR /&gt;[ 10.633612] ? asm_exc_invalid_op+0x1b/0x20&lt;BR /&gt;[ 10.633622] ? uncore_forcewake_init+0x3c9/0x3e0 [i915]&lt;BR /&gt;[ 10.633675] intel_uncore_init_mmio+0x10e/0x360 [i915]&lt;BR /&gt;[ 10.633727] i915_driver_probe+0x108/0x600 [i915]&lt;BR /&gt;[ 10.633790] ? drm_privacy_screen_get+0x16d/0x190&lt;BR /&gt;[ 10.633802] ? acpi_dev_found+0x64/0x80&lt;BR /&gt;[ 10.633815] i915_pci_probe+0xd2/0x170 [i915]&lt;BR /&gt;[ 10.633867] local_pci_probe+0x44/0xb0&lt;BR /&gt;[ 10.633877] pci_call_probe+0x55/0x1a0&lt;BR /&gt;[ 10.633879] pci_device_probe+0x84/0x120&lt;BR /&gt;[ 10.633880] really_probe+0xee/0x3c0&lt;BR /&gt;[ 10.633889] __driver_probe_device+0x8c/0x180&lt;BR /&gt;[ 10.633891] driver_probe_device+0x24/0xd0&lt;BR /&gt;[ 10.633892] __driver_attach+0x10b/0x210&lt;BR /&gt;[ 10.633894] ? __pfx___driver_attach+0x10/0x10&lt;BR /&gt;[ 10.633895] bus_for_each_dev+0x8a/0xf0&lt;BR /&gt;[ 10.633896] driver_attach+0x1e/0x30&lt;BR /&gt;[ 10.633897] bus_add_driver+0x14e/0x290&lt;BR /&gt;[ 10.633898] driver_register+0x5e/0x130&lt;BR /&gt;[ 10.633900] __pci_register_driver+0x5e/0x70&lt;BR /&gt;[ 10.633901] i915_pci_register_driver+0x23/0x30 [i915]&lt;BR /&gt;[ 10.633952] i915_init+0x34/0x120 [i915]&lt;BR /&gt;[ 10.634008] ? __pfx_i915_init+0x10/0x10 [i915]&lt;BR /&gt;[ 10.634061] do_one_initcall+0x5b/0x340&lt;BR /&gt;[ 10.634068] do_init_module+0x97/0x2a0&lt;BR /&gt;[ 10.634078] load_module+0x6b5/0x7d0&lt;BR /&gt;[ 10.634079] init_module_from_file+0x96/0x100&lt;BR /&gt;[ 10.634080] idempotent_init_module+0x11c/0x310&lt;BR /&gt;[ 10.634081] __x64_sys_finit_module+0x64/0xd0&lt;BR /&gt;[ 10.634082] x64_sys_call+0x2580/0x25f0&lt;BR /&gt;[ 10.634083] do_syscall_64+0x7e/0x170&lt;BR /&gt;[ 10.634087] ? ksys_lseek+0x7d/0xd0&lt;BR /&gt;[ 10.634097] ? syscall_exit_to_user_mode+0x4e/0x250&lt;BR /&gt;[ 10.634100] ? do_syscall_64+0x8a/0x170&lt;BR /&gt;[ 10.634102] ? ovl_file_accessed+0x36/0xb0 [overlay]&lt;BR /&gt;[ 10.634111] ? backing_file_read_iter+0x151/0x1f0&lt;BR /&gt;[ 10.634120] ? vfs_read+0x178/0x390&lt;BR /&gt;[ 10.634121] ? vfs_read+0x178/0x390&lt;BR /&gt;[ 10.634122] ? rseq_get_rseq_cs+0x22/0x260&lt;BR /&gt;[ 10.634132] ? rseq_ip_fixup+0x8f/0x1f0&lt;BR /&gt;[ 10.634133] ? restore_fpregs_from_fpstate+0x3d/0xd0&lt;BR /&gt;[ 10.634136] ? switch_fpu_return+0x50/0xe0&lt;BR /&gt;[ 10.634138] ? syscall_exit_to_user_mode+0x18d/0x250&lt;BR /&gt;[ 10.634139] ? do_syscall_64+0x8a/0x170&lt;BR /&gt;[ 10.634140] ? switch_fpu_return+0x50/0xe0&lt;BR /&gt;[ 10.634141] ? syscall_exit_to_user_mode+0x18d/0x250&lt;BR /&gt;[ 10.634142] ? do_syscall_64+0x8a/0x170&lt;BR /&gt;[ 10.634143] ? syscall_exit_to_user_mode+0x4e/0x250&lt;BR /&gt;[ 10.634144] ? do_syscall_64+0x8a/0x170&lt;BR /&gt;[ 10.634145] ? __x64_sys_openat+0x55/0xa0&lt;BR /&gt;[ 10.634147] ? syscall_exit_to_user_mode+0x4e/0x250&lt;BR /&gt;[ 10.634148] ? clear_bhb_loop+0x15/0x70&lt;BR /&gt;[ 10.634149] ? clear_bhb_loop+0x15/0x70&lt;BR /&gt;[ 10.634150] ? clear_bhb_loop+0x15/0x70&lt;BR /&gt;[ 10.634150] entry_SYSCALL_64_after_hwframe+0x76/0x7e&lt;BR /&gt;[ 10.634152] RIP: 0033:0x73e28e85625d&lt;BR /&gt;[ 10.634154] Code: ff c3 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 &amp;lt;48&amp;gt; 3d 01 f0 ff ff 73 01 c3 48 8b 0d 8b bb 0d 00 f7 d8 64 89 01 48&lt;BR /&gt;[ 10.634155] RSP: 002b:00007fffb8128f28 EFLAGS: 00000246 ORIG_RAX: 0000000000000139&lt;BR /&gt;[ 10.634156] RAX: ffffffffffffffda RBX: 00005a898ae62490 RCX: 000073e28e85625d&lt;BR /&gt;[ 10.634156] RDX: 0000000000000004 RSI: 000073e28e99307d RDI: 000000000000001b&lt;BR /&gt;[ 10.634157] RBP: 00007fffb8128fe0 R08: 0000000000000040 R09: 00007fffb8128f70&lt;BR /&gt;[ 10.634157] R10: 000073e28e932b20 R11: 0000000000000246 R12: 000073e28e99307d&lt;BR /&gt;[ 10.634158] R13: 0000000000020000 R14: 00005a898ae60640 R15: 00005a898ae65e20&lt;BR /&gt;[ 10.634158] &amp;lt;/TASK&amp;gt;&lt;BR /&gt;[ 10.634159] ---[ end trace 0000000000000000 ]---&lt;BR /&gt;[ 10.691650] i915 0000:1e:02.0: Device initialization failed (-19)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here is some other info:&lt;BR /&gt;&lt;SPAN&gt;[marco@marcoLaptop][~]$ lspci -nnk &amp;nbsp;&lt;BR /&gt;00:00.0 Host bridge [0600]: Intel Corporation Device [8086:7d06] (rev 05)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Subsystem: Dell Device [1028:0cf1]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Kernel driver in use: igen6_edac&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Kernel modules: igen6_edac&lt;BR /&gt;00:02.0 VGA compatible controller [0300]: Intel Corporation Arrow Lake-P [Intel Graphics] [8086:7d51] (rev 03)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Subsystem: Dell Device [1028:0cf1]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Kernel driver in use: i915&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Kernel modules: i915, xe&lt;BR /&gt;00:02.1 VGA compatible controller [0300]: Intel Corporation Arrow Lake-P [Intel Graphics] [8086:7d51] (rev 03)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Subsystem: Dell Device [1028:0cf1]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Kernel driver in use: vfio-pci&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Kernel modules: i915, xe&lt;BR /&gt;00:02.2 VGA compatible controller [0300]: Intel Corporation Arrow Lake-P [Intel Graphics] [8086:7d51] (rev 03)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Subsystem: Dell Device [1028:0cf1]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Kernel driver in use: vfio-pci&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Kernel modules: i915, xe&lt;BR /&gt;00:02.3 VGA compatible controller [0300]: Intel Corporation Arrow Lake-P [Intel Graphics] [8086:7d51] (rev 03)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Subsystem: Dell Device [1028:0cf1]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Kernel driver in use: vfio-pci&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Kernel modules: i915, xe&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;GRUB_CMDLINE_LINUX_DEFAULT="quiet splash intel_iommu=on iommu=pt i915.force_probe=7d51 xe.force_probe=!7d51 i915.enable_guc=3 i915.max_vfs=3"&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_20250624_172801.png" style="width: 999px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/66989i19C77B998FB0C26A/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Screenshot_20250624_172801.png" alt="Screenshot_20250624_172801.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jun 2025 15:29:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1699504#M143313</guid>
      <dc:creator>Mondin_Marco</dc:creator>
      <dc:date>2025-06-24T15:29:13Z</dc:date>
    </item>
    <item>
      <title>Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1699667#M143332</link>
      <description>&lt;P&gt;Hello Mondin_Marco,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for posting in Intel community Forum.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;For me to further investigate this issue, please help provide the following details:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;What is the model of your processor?&lt;/LI&gt;&lt;LI&gt;What is the brand and model of your system or motherboard?&lt;/LI&gt;&lt;LI&gt;Can you tell me more information about the set up?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you have questions, please let us know. Thank you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Michael L.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Jun 2025 02:54:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1699667#M143332</guid>
      <dc:creator>Mike_Intel</dc:creator>
      <dc:date>2025-06-25T02:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1699801#M143354</link>
      <description>&lt;P&gt;Thank you for the prompt reply.&lt;/P&gt;&lt;P&gt;I’m running a Dell Pro Max 16 notebook with 32 GB of RAM, a 265H processor, and Intel ARC 140T graphics.&lt;/P&gt;&lt;P&gt;According to Intel’s documentation, this GPU family is listed as SR-IOV-capable (just like my previous Raptor Lake 13700H in an HP laptop, which handled SR-IOV flawlessly):&lt;BR /&gt;(&lt;A href="https://www.intel.com/content/www/us/en/support/articles/000093216/graphics/processor-graphics.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/support/articles/000093216/graphics/processor-graphics.html&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;To enable SR-IOV I compiled the linux-intel-lts kernel from:&lt;BR /&gt;&lt;A href="https://github.com/intel/linux-intel-lts/tree/lts-v6.12.33-linux-250614T193704Z" target="_blank"&gt;https://github.com/intel/linux-intel-lts/tree/lts-v6.12.33-linux-250614T193704Z&lt;/A&gt;&lt;/P&gt;&lt;P&gt;On the older laptop I used kernel 6.12.19 and ran two Windows 11 VMs plus an Ubuntu 24.04 host at 60 FPS on the WebGL Aquarium demo (&lt;A href="https://webglsamples.org/aquarium/aquarium.html" target="_blank"&gt;https://webglsamples.org/aquarium/aquarium.html&lt;/A&gt;) opened in three browsers—one on the host and one in each VM.&lt;/P&gt;&lt;P&gt;This is the only kernel that supports SR-IOV out of the box; I avoid &lt;A href="https://github.com/strongtz/i915-sriov-dkms" target="_blank"&gt;https://github.com/strongtz/i915-sriov-dkms&lt;/A&gt; because it is too unstable.&lt;/P&gt;&lt;P&gt;To display the VMs I use PARSEC and xfreerdp3 (self-compiled to enable H.264 on Ubuntu).&lt;/P&gt;&lt;P&gt;At boot everything looks fine: all VFs appear in lspci, 00:02.0 is handled by i915, while 00:02.1-7 are bound to vfio.&lt;/P&gt;&lt;P&gt;However, when a VM boots with the Dell-supplied graphics drivers, your drivers in old or new versions, I immediately encounter Error Code 43. If I start a Linux live VM on one VF, the i915 driver crashes as shown in the logs above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jun 2025 16:30:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1699801#M143354</guid>
      <dc:creator>Mondin_Marco</dc:creator>
      <dc:date>2025-06-25T16:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1700002#M143389</link>
      <description>&lt;P&gt;I just tried your&amp;nbsp;&lt;A href="https://github.com/intel/mainline-tracking/tree/linux/v6.15" target="_blank"&gt;https://github.com/intel/mainline-tracking/tree/linux/v6.15&lt;/A&gt;&lt;BR /&gt;Enabled SR-IOV in XE driver Error 43 still there in Windows11 VM.&lt;BR /&gt;&lt;BR /&gt;If I try a Ubuntu VM forcing XE kernel module I see&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;xe 0000:00:02.0: [drm]&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;ERROR&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Hardware reports unknown graphics version 0.0&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;I think it could be root cause of Error Code 43 in windows.&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 26 Jun 2025 14:57:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1700002#M143389</guid>
      <dc:creator>Mondin_Marco</dc:creator>
      <dc:date>2025-06-26T14:57:47Z</dc:date>
    </item>
    <item>
      <title>Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1700082#M143400</link>
      <description>&lt;P&gt;Hello Mondin_Marco,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for the update.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Can you try to generate the SSU logs of your system for me to check the configuration and installed drivers? &lt;/P&gt;&lt;P&gt;This will help me to further investigate the cause of the error:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/download/18895/intel-system-support-utility-for-the-linux-operating-system.html" rel="noopener noreferrer" target="_blank"&gt;Intel® System Support Utility for the Linux* Operating System&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you have questions, please let us know. Thank you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Michael L.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Jun 2025 02:12:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1700082#M143400</guid>
      <dc:creator>Mike_Intel</dc:creator>
      <dc:date>2025-06-27T02:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1700125#M143411</link>
      <description>&lt;P&gt;Attached are the 3 logs:&lt;/P&gt;&lt;P&gt;Host: Ubuntu 24.04 with Intel Mainline Tracking Kernel 6.15 (on PF)&lt;/P&gt;&lt;P&gt;Guest: Windows 11 Pro (on VF3)&lt;/P&gt;&lt;P&gt;Guest: Lubuntu 24.04 (on VF3)&lt;/P&gt;&lt;P&gt;Best regards, and thank you again for your prompt responses.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jun 2025 07:21:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1700125#M143411</guid>
      <dc:creator>Mondin_Marco</dc:creator>
      <dc:date>2025-06-27T07:21:41Z</dc:date>
    </item>
    <item>
      <title>Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1700457#M143450</link>
      <description>&lt;P&gt;Hello Mondin_Marco,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for the information provided.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I will do further research on this matter and post the response on this thread once it is available.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you have questions, please let us know. Thank you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Michael L.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jun 2025 02:36:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1700457#M143450</guid>
      <dc:creator>Mike_Intel</dc:creator>
      <dc:date>2025-06-30T02:36:52Z</dc:date>
    </item>
    <item>
      <title>Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1701542#M143641</link>
      <description>&lt;P&gt;Hello Mondin_Marco,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I hope this message finds you well. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I want to update you that I am in the processor &lt;SPAN style="font-family: Helvetica, sans-serif;"&gt;to recreate the issue on our end. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Helvetica, sans-serif;"&gt;In order to better conduct our investigation, please help share the exact steps to recreate the issue that you encountered.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Helvetica, sans-serif;"&gt;I need to obtain this information to speed up the investigation of this issue.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you have questions, please let us know. Thank you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Michael L.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Jul 2025 03:50:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1701542#M143641</guid>
      <dc:creator>Mike_Intel</dc:creator>
      <dc:date>2025-07-04T03:50:29Z</dc:date>
    </item>
    <item>
      <title>Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1702256#M143753</link>
      <description>&lt;P&gt;Hello Mondin_Marco,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this message finds you well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Were you able to check the previous post?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please let us know if you still need assistance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Michael L.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Jul 2025 23:05:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1702256#M143753</guid>
      <dc:creator>Mike_Intel</dc:creator>
      <dc:date>2025-07-08T23:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1702362#M143778</link>
      <description>&lt;P&gt;To reproduce the issue, I cloned your repository &lt;A href="https://github.com/intel/mainline-tracking/" target="_blank" rel="noopener"&gt;https://github.com/intel/mainline-tracking/&lt;/A&gt;&lt;BR /&gt;Selecting the 6.15 branch.&lt;/P&gt;&lt;P&gt;I compiled it two weeks ago, then pulled again yesterday since you committed several changes related to SR-IOV in the XE driver last week, and recompiled.&lt;/P&gt;&lt;P&gt;I signed both the modules and the kernel with my personal signature so I could use Secure Boot.&lt;BR /&gt;(This signature was enrolled with mokutils on all my devices)&lt;/P&gt;&lt;P&gt;To compile, I applied a small patch to enable SR-IOV on Arrow Lake, since by default it's treated as Meteor Lake (which theoretically shouldn't support SR-IOV, although it seems that for some users it works with the i915 driver).&lt;/P&gt;&lt;P&gt;Here is the patch:&lt;/P&gt;&lt;PRE&gt;commit 093f71602d22a9aaedfdf8e26c13cf57cf428560&lt;BR /&gt;Author: mondinmr &amp;lt;mondinmr@gmail.com&amp;gt;&lt;BR /&gt;Date: &amp;nbsp;&amp;nbsp;Mon Jul 7 10:45:37 2025 +0200&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;My SR-IOV Patch&lt;BR /&gt;&lt;BR /&gt;diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c &lt;BR /&gt;index 7c347063a382..9ea6c7854ea5 100644 &lt;BR /&gt;--- a/drivers/gpu/drm/xe/xe_pci.c &lt;BR /&gt;+++ b/drivers/gpu/drm/xe/xe_pci.c &lt;BR /&gt;@@ -327,11 +327,22 @@ static const struct xe_device_desc mtl_desc = { &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_pxp = true, &lt;BR /&gt;}; &lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;+static const struct xe_device_desc arl_desc = { &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* .graphics and .media determined via GMD_ID */ &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.require_force_probe = true, &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;PLATFORM(METEORLAKE), &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.dma_mask_size = 46, &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_display = true, &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp; .has_sriov = true, &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_pxp = true, &lt;BR /&gt;+}; &lt;BR /&gt;+ &lt;BR /&gt;static const struct xe_device_desc lnl_desc = { &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;PLATFORM(LUNARLAKE), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.dma_mask_size = 46, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_display = true, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_pxp = true, &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.has_heci_cscfi = 1, &lt;BR /&gt;}; &lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;static const struct xe_device_desc bmg_desc = { &lt;BR /&gt;@@ -372,7 +383,7 @@ static const struct pci_device_id pciidlist[] = { &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_RPLS_IDS(INTEL_VGA_DEVICE, &amp;amp;adl_s_desc), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_DG1_IDS(INTEL_VGA_DEVICE, &amp;amp;dg1_desc), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_ATS_M_IDS(INTEL_VGA_DEVICE, &amp;amp;ats_m_desc), &lt;BR /&gt;- &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_ARL_IDS(INTEL_VGA_DEVICE, &amp;amp;mtl_desc), &lt;BR /&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_ARL_IDS(INTEL_VGA_DEVICE, &amp;amp;arl_desc), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_DG2_IDS(INTEL_VGA_DEVICE, &amp;amp;dg2_desc), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_MTL_IDS(INTEL_VGA_DEVICE, &amp;amp;mtl_desc), &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;INTEL_LNL_IDS(INTEL_VGA_DEVICE, &amp;amp;lnl_desc),&lt;BR /&gt;&lt;BR /&gt;I tested with QEMU from Ubuntu 24.04 as well as the latest QEMU from git, compiled with Ubuntu's configuration and packaged into a DEB.&lt;/PRE&gt;&lt;P&gt;However, I believe SR-IOV support for the Linux XE driver is still not fully implemented for Arrow Lake. Looks like I’ll have to wait.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 09:06:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1702362#M143778</guid>
      <dc:creator>Mondin_Marco</dc:creator>
      <dc:date>2025-07-09T09:06:40Z</dc:date>
    </item>
    <item>
      <title>Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1702543#M143828</link>
      <description>&lt;P&gt;Hello Mondin_Marco,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for guide that you provided.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Let me go ahead and check this again and post the response on this thread once it is available.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you have questions, please let us know. Thank you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Michael L.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Jul 2025 03:06:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1702543#M143828</guid>
      <dc:creator>Mike_Intel</dc:creator>
      <dc:date>2025-07-10T03:06:04Z</dc:date>
    </item>
    <item>
      <title>Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1703310#M143940</link>
      <description>&lt;P&gt;Hello Mondin_Marco,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I hope this message finds you well.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;For me to document the issue and try this in the lab, please help provide the following details:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;What is the Virtual Machine software you're using within Ubuntu?&lt;/LI&gt;&lt;LI&gt;Prior to compiling the main line kernels, did you use the driver installation steps from&amp;nbsp;&lt;A href="https://dgpu-docs.intel.com/driver/client/overview.html" rel="noopener noreferrer" target="_blank"&gt;https://dgpu-docs.intel.com/driver/client/overview.html&lt;/A&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you have questions, please let us know. Thank you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Michael L.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Jul 2025 02:47:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1703310#M143940</guid>
      <dc:creator>Mike_Intel</dc:creator>
      <dc:date>2025-07-15T02:47:02Z</dc:date>
    </item>
    <item>
      <title>Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1704031#M144023</link>
      <description>&lt;P&gt;Hello Mondin_Marco,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this message finds you well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I am just sending a follow up if you were you able to review my previous post.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please let us know if you still need assistance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Michael L.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Jul 2025 22:56:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1704031#M144023</guid>
      <dc:creator>Mike_Intel</dc:creator>
      <dc:date>2025-07-17T22:56:19Z</dc:date>
    </item>
    <item>
      <title>Re:Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1704897#M144091</link>
      <description>&lt;P&gt;Hello Mondin_Marco,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope you are having a good day.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I am sending another follow up on the information that I requested.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since we have not heard back from you, I need to close this inquiry.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you need further assistance, please post a new question as this thread will no longer be monitored.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you and have a great day.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Michael L.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 22 Jul 2025 22:26:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1704897#M144091</guid>
      <dc:creator>Mike_Intel</dc:creator>
      <dc:date>2025-07-22T22:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error43 Using SR-IOV In Alder Lake 140T from 265H</title>
      <link>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1722518#M146319</link>
      <description>&lt;P&gt;Finally, I’ve found a solution.&lt;/P&gt;&lt;P&gt;In KVM, Hyper-V must be changed from custom with options to passthrough.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;features&amp;gt;
  ...
  &amp;lt;hyperv mode="passthrough"&amp;gt;
  &amp;lt;/hyperv&amp;gt;
  ...
&amp;lt;/features&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;This change—without needing GOP or other parameters—allows SR-IOV to work on Windows 11 guests.&lt;/P&gt;&lt;P&gt;Tested on a host running the Intel mainline-tracking kernel 6.17.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2025 13:41:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Graphics/Error43-Using-SR-IOV-In-Alder-Lake-140T-from-265H/m-p/1722518#M146319</guid>
      <dc:creator>Mondin_Marco</dc:creator>
      <dc:date>2025-10-17T13:41:17Z</dc:date>
    </item>
  </channel>
</rss>

