1
0
Fork 0
vfio-win10/roles/win10/templates/win10.xml

272 lines
10 KiB
XML
Raw Normal View History

2019-10-12 22:55:19 +00:00
<domain type='kvm' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'>
<name>win10</name>
<uuid>9d7df055-d6d1-4551-bb25-ef2ddb835c4d</uuid>
<metadata>
<libosinfo:libosinfo xmlns:libosinfo="http://libosinfo.org/xmlns/libvirt/domain/1.0">
<libosinfo:os id="http://microsoft.com/win/10"/>
</libosinfo:libosinfo>
</metadata>
<memory unit='KiB'>16777216</memory>
<currentMemory unit='KiB'>16777216</currentMemory>
<memoryBacking>
2022-08-30 04:40:49 +00:00
<!-- <hugepages/> -->
2020-03-25 16:03:09 +00:00
<locked/>
2019-10-12 22:55:19 +00:00
</memoryBacking>
<vcpu placement='static'>6</vcpu>
<iothreads>1</iothreads>
<cputune>
<vcpupin vcpu='0' cpuset='1'/>
<vcpupin vcpu='1' cpuset='5'/>
<vcpupin vcpu='2' cpuset='2'/>
<vcpupin vcpu='3' cpuset='6'/>
<vcpupin vcpu='4' cpuset='3'/>
<vcpupin vcpu='5' cpuset='7'/>
<emulatorpin cpuset='0,4'/>
<iothreadpin iothread='1' cpuset='0,4'/>
2020-03-25 16:03:09 +00:00
<vcpusched vcpus='0-5' scheduler='fifo' priority='99'/>
<emulatorsched scheduler='fifo' priority='99'/>
<iothreadsched iothreads='1' scheduler='fifo' priority='99'/>
2019-10-12 22:55:19 +00:00
</cputune>
<os>
2020-01-07 22:54:19 +00:00
<type arch='x86_64' machine='pc-q35-4.1'>hvm</type>
2019-10-12 22:55:19 +00:00
<loader readonly='yes' type='pflash'>/usr/share/ovmf/x64/OVMF_CODE.fd</loader>
<nvram>/var/lib/libvirt/qemu/nvram/win10_VARS.fd</nvram>
</os>
<features>
<acpi/>
<apic/>
<hyperv>
2020-01-07 22:54:19 +00:00
<!-- hyper-v enlightments, the more the better -->
2020-03-25 16:03:09 +00:00
<!-- https://archive.fosdem.org/2019/schedule/event/vai_enlightening_kvm/ -->
2019-10-12 22:55:19 +00:00
<relaxed state='on'/>
<vapic state='on'/>
<spinlocks state='on' retries='8191'/>
<vpindex state='on'/>
2021-11-21 07:22:14 +00:00
<runtime state='on'/>
2019-10-12 22:55:19 +00:00
<synic state='on'/>
2021-11-21 07:22:14 +00:00
<stimer state="on">
<direct state="on"/>
</stimer>
2019-10-12 22:55:19 +00:00
<reset state='on'/>
2022-10-29 18:08:40 +00:00
<vendor_id state='on' value='other'/>
2019-10-12 22:55:19 +00:00
<frequencies state='on'/>
2020-03-25 16:03:09 +00:00
<reenlightenment state='on'/>
2021-11-21 07:22:14 +00:00
<tlbflush state='on'/>
<ipi state='on'/>
<evmcs state='off'/>
2019-10-12 22:55:19 +00:00
</hyperv>
<kvm>
2020-01-07 22:54:19 +00:00
<hidden state='on'/>
2019-10-12 22:55:19 +00:00
</kvm>
<vmport state='off'/>
<ioapic driver='kvm'/>
</features>
2021-11-23 05:03:40 +00:00
<cpu mode='host-passthrough' check='partial'>
2019-10-12 22:55:19 +00:00
<topology sockets='1' cores='3' threads='2'/>
2020-01-07 22:54:19 +00:00
<cache mode='passthrough'/>
2020-03-25 16:03:09 +00:00
<feature policy='require' name='invtsc'/>
<!-- required for Genshin Impact, come with a performance hit -->
2021-11-21 07:09:25 +00:00
<!-- <feature policy="disable" name="hypervisor"/> -->
2019-10-12 22:55:19 +00:00
</cpu>
<clock offset='localtime'>
2020-01-07 22:54:19 +00:00
<timer name='tsc' present='yes' mode='native'/>
2021-11-21 07:22:14 +00:00
<timer name='hypervclock' present='yes'/>
<timer name='rtc' tickpolicy='catchup'/>
<timer name='pit' tickpolicy='delay'/>
<timer name='hpet' present='no'/>
2019-10-12 22:55:19 +00:00
</clock>
<on_poweroff>destroy</on_poweroff>
2022-08-16 00:45:14 +00:00
<!-- Because of the AMD reset bug, we cannot actually reboot normally -->
2022-01-31 14:16:38 +00:00
<on_reboot>destroy</on_reboot>
2020-08-21 20:19:00 +00:00
<on_crash>destroy</on_crash>
2019-10-12 22:55:19 +00:00
<pm>
2020-01-07 22:54:19 +00:00
<suspend-to-mem enabled='no'/>
<suspend-to-disk enabled='no'/>
2019-10-12 22:55:19 +00:00
</pm>
<devices>
<emulator>/usr/bin/qemu-system-x86_64</emulator>
2022-10-29 18:08:40 +00:00
<memballoon model='none'/>
2019-10-12 22:55:19 +00:00
<disk type='file' device='disk'>
<driver name='qemu' type='raw'/>
2022-04-26 01:59:00 +00:00
<source file='/data/marchambault/VirtualMachines/img/win10.img'/>
2022-08-16 00:45:14 +00:00
<target dev='sda' bus='scsi' rotation_rate="1"/>
<boot order='2'/>
2019-10-12 22:55:19 +00:00
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
</disk>
<disk type='block' device='disk'>
2022-08-16 00:45:14 +00:00
<driver name='qemu' type='raw' cache='none' io='native' discard='unmap'/>
2020-12-05 03:02:09 +00:00
<source dev='/dev/disk/by-id/nvme-CT1000P1SSD8_1910E1F03D8E'/>
2022-08-16 00:45:14 +00:00
<target dev='sdc' bus='scsi' rotation_rate="1"/>
2019-10-12 22:55:19 +00:00
<address type='drive' controller='0' bus='0' target='0' unit='2'/>
</disk>
<disk type='file' device='cdrom'>
<driver name='qemu' type='raw'/>
2022-08-16 00:45:14 +00:00
<!-- <source file=''/> -->
2019-10-12 22:55:19 +00:00
<target dev='sdb' bus='sata'/>
<readonly/>
2022-08-16 00:45:14 +00:00
<boot order='1'/>
2019-10-12 22:55:19 +00:00
<address type='drive' controller='0' bus='0' target='0' unit='1'/>
</disk>
<controller type='scsi' index='0' model='virtio-scsi'>
<driver queues='6' iothread='1'/>
<address type='pci' domain='0x0000' bus='0x05' slot='0x00' function='0x0'/>
</controller>
<controller type='sata' index='0'>
<address type='pci' domain='0x0000' bus='0x00' slot='0x1f' function='0x2'/>
</controller>
<controller type='pci' index='0' model='pcie-root'/>
<controller type='pci' index='1' model='dmi-to-pci-bridge'>
<model name='i82801b11-bridge'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x1e' function='0x0'/>
</controller>
<controller type='pci' index='2' model='pci-bridge'>
<model name='pci-bridge'/>
<target chassisNr='2'/>
<address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
</controller>
<controller type='pci' index='3' model='pcie-root-port'>
<model name='pcie-root-port'/>
<target chassis='3' port='0x10'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0' multifunction='on'/>
</controller>
<controller type='pci' index='4' model='pcie-root-port'>
<model name='pcie-root-port'/>
<target chassis='4' port='0x11'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x1'/>
</controller>
<controller type='pci' index='5' model='pcie-root-port'>
<model name='pcie-root-port'/>
<target chassis='5' port='0x12'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x2'/>
</controller>
<controller type='pci' index='6' model='pcie-root-port'>
<model name='pcie-root-port'/>
<target chassis='6' port='0x13'/>
<alias name='ua-gfx0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x3'/>
</controller>
<controller type='pci' index='7' model='pcie-root-port'>
<model name='pcie-root-port'/>
<target chassis='7' port='0x14'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x4'/>
</controller>
<controller type='pci' index='8' model='pcie-root-port'>
<model name='pcie-root-port'/>
<target chassis='8' port='0x15'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x5'/>
</controller>
<controller type='pci' index='9' model='pcie-root-port'>
<model name='pcie-root-port'/>
<target chassis='9' port='0x16'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x6'/>
</controller>
<controller type='pci' index='10' model='pcie-root-port'>
<model name='pcie-root-port'/>
<target chassis='10' port='0x17'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x7'/>
</controller>
<controller type='usb' index='0' model='qemu-xhci' ports='15'>
<address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
</controller>
2022-01-31 14:16:38 +00:00
<!-- networking -->
2022-08-16 00:45:14 +00:00
<interface type='bridge'>
2019-10-12 22:55:19 +00:00
<mac address='52:54:00:f5:2c:df'/>
2021-03-04 22:03:16 +00:00
<source bridge='virbr0'/>
<model type='virtio'/>
2019-10-12 22:55:19 +00:00
<link state='up'/>
<address type='pci' domain='0x0000' bus='0x08' slot='0x00' function='0x0'/>
2022-08-16 00:45:14 +00:00
</interface>
2022-01-31 14:16:38 +00:00
<!-- HID -->
2019-10-12 22:55:19 +00:00
<input type='mouse' bus='ps2'/>
2021-11-21 07:09:25 +00:00
<input type='mouse' bus='virtio'/>
2019-10-12 22:55:19 +00:00
<input type='keyboard' bus='ps2'/>
2021-11-21 07:09:25 +00:00
<input type='keyboard' bus='virtio'/>
2022-01-31 14:16:38 +00:00
<!-- mouse evdev passthrough -->
{% for item in mice %}
<input type='evdev'>
<source dev='/dev/input/by-id/uinput-persist-mouse{{ loop.index0 }}'/>
</input>
{% endfor %}
<!-- keyboard evdev passthrough -->
{% for item in keyboards %}
<input type='evdev'>
<source dev='/dev/input/by-id/uinput-persist-keyboard{{ loop.index0 }}' grab='all' repeat='on'/>
</input>
{% endfor %}
<!-- audio -->
2020-03-25 16:03:09 +00:00
<sound model='ich9'>
2019-10-12 22:55:19 +00:00
<address type='pci' domain='0x0000' bus='0x02' slot='0x02' function='0x0'/>
2022-08-30 04:40:49 +00:00
<codec type='micro'/>
<audio id='1'/>
2019-10-12 22:55:19 +00:00
</sound>
2022-09-13 13:39:23 +00:00
<!-- <audio id='1' type='pulseaudio' serverName='/run/user/1000/pulse/native'>
2022-08-30 04:40:49 +00:00
<input mixingEngine='yes' fixedSettings='yes' voices='1' bufferLength='100'/>
2022-08-16 00:45:14 +00:00
<output mixingEngine='yes' fixedSettings='yes' voices='1' bufferLength='100'>
2022-09-13 13:39:23 +00:00
<settings frequency='48000' channels='2' format='s16'/>
2022-04-26 01:59:00 +00:00
</output>
2022-09-13 13:39:23 +00:00
</audio> -->
2022-08-30 04:40:49 +00:00
2022-09-13 13:39:23 +00:00
<audio id='1' type='pulseaudio' serverName='/run/user/1000/pulse/native'>
2022-08-30 04:40:49 +00:00
<input mixingEngine='no'/>
<output mixingEngine='no'/>
2022-09-13 13:39:23 +00:00
</audio>
2022-08-30 04:40:49 +00:00
<!-- <audio id='1' type='jack'>
<input clientName="win10" connectPorts="{{ audio.source }}"/>
<output clientName="win10" connectPorts="{{ audio.sink }}"/>
</audio> -->
2022-01-31 14:16:38 +00:00
<!-- pci passthrough -->
{% for pci_device_id in pci_device_ids %}
2019-10-12 22:55:19 +00:00
<hostdev mode='subsystem' type='pci' managed='yes'>
<source>
2022-01-31 14:16:38 +00:00
<address domain='0x{{ pci_device_id.domain }}' bus='0x{{ pci_device_id.bus }}' slot='0x{{ pci_device_id.slot }}' function='0x{{ pci_device_id.function }}'/>
2019-10-12 22:55:19 +00:00
</source>
2022-08-16 00:45:14 +00:00
{% if 'alias' in pci_device_id %}
<alias name='{{ pci_device_id.alias }}'/>
{% endif %}
2019-10-12 22:55:19 +00:00
</hostdev>
2022-01-31 14:16:38 +00:00
{% endfor %}
2022-08-16 00:45:14 +00:00
2022-01-31 14:16:38 +00:00
<!-- spice -->
2022-10-29 18:08:40 +00:00
<!-- <graphics type='spice' listen='127.0.0.1' port='5900' defaultMode='insecure'>
2022-01-31 14:16:38 +00:00
<listen type='address' address='127.0.0.1'/>
<image compression='off' />
<mouse mode='server'/>
<filetransfer enable='no'/>
</graphics>
2019-10-12 22:55:19 +00:00
<redirdev bus='usb' type='spicevmc'>
<address type='usb' bus='0' port='2'/>
</redirdev>
<redirdev bus='usb' type='spicevmc'>
<address type='usb' bus='0' port='3'/>
2022-10-29 18:08:40 +00:00
</redirdev> -->
2022-01-31 14:16:38 +00:00
<!-- looking-glass -->
2019-10-12 22:55:19 +00:00
<shmem name='looking-glass'>
<model type='ivshmem-plain'/>
<size unit='M'>32</size>
<address type='pci' domain='0x0000' bus='0x02' slot='0x04' function='0x0'/>
</shmem>
2021-11-21 07:09:25 +00:00
</devices>
2022-08-16 00:45:14 +00:00
<qemu:override>
<!-- workaround for NVMe passthrough with SMI SM2262 controller -->
<!-- this breaks with >15 vCPUs! -->
<!-- https://bugzilla.kernel.org/show_bug.cgi?id=202055#c42 -->
<!-- <qemu:device alias='ua-nvme1'>
<qemu:frontend>
<qemu:property name='x-msix-relocation' type='string' value='bar2'/>
</qemu:frontend>
</qemu:device> -->
</qemu:override>
2021-11-21 07:09:25 +00:00
<qemu:commandline>
2022-08-30 04:40:49 +00:00
<!-- <qemu:env name="PIPEWIRE_RUNTIME_DIR" value="/run/user/1000"/>
<qemu:env name="PIPEWIRE_LATENCY" value="512/48000"/> -->
2019-10-12 22:55:19 +00:00
</qemu:commandline>
</domain>