mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
4d100c7a41
Hand-entering indexes for 20 PCI controllers is not as tedious as manually determining and entering their PCI addresses, but it's still annoying, and the algorithm for determining the proper index is incredibly simple (in all cases except one) - just pick the lowest unused index. The one exception is USB2 controllers because multiple controllers in the same group have the same index. For these we look to see if 1) the most recently added USB controller is also a USB2 controller, and 2) the group *that* controller belongs to doesn't yet have a controller of the exact model we're just now adding - if both are true, the new controller gets the same index, but in all other cases we just assign the lowest unused index. With this patch in place and combined with the automatic PCI address assignment, we can define a PCIe switch with several ports like this: <controller type='pci' model='pcie-root-port'/> <controller type='pci' model='pcie-switch-upstream-port'/> <controller type='pci' model='pcie-switch-downstream-port'/> <controller type='pci' model='pcie-switch-downstream-port'/> <controller type='pci' model='pcie-switch-downstream-port'/> <controller type='pci' model='pcie-switch-downstream-port'/> <controller type='pci' model='pcie-switch-downstream-port'/> ... These will each get a unique index, and PCI addresses that connect them together appropriately with no pesky numbers required.
55 lines
2.3 KiB
XML
55 lines
2.3 KiB
XML
<domain type='qemu'>
|
|
<name>q35-test</name>
|
|
<uuid>11dbdcdd-4c3b-482b-8903-9bdb8c0a2774</uuid>
|
|
<memory unit='KiB'>2097152</memory>
|
|
<currentMemory unit='KiB'>2097152</currentMemory>
|
|
<vcpu placement='static' cpuset='0-1'>2</vcpu>
|
|
<os>
|
|
<type arch='x86_64' machine='q35'>hvm</type>
|
|
<boot dev='hd'/>
|
|
</os>
|
|
<clock offset='utc'/>
|
|
<on_poweroff>destroy</on_poweroff>
|
|
<on_reboot>restart</on_reboot>
|
|
<on_crash>destroy</on_crash>
|
|
<devices>
|
|
<emulator>/usr/libexec/qemu-kvm</emulator>
|
|
<disk type='block' device='disk'>
|
|
<source dev='/dev/HostVG/QEMUGuest1'/>
|
|
<target dev='sda' bus='sata'/>
|
|
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
|
|
</disk>
|
|
<controller type='pci' model='pcie-root'/>
|
|
<controller type='pci' model='dmi-to-pci-bridge'/>
|
|
<controller type='pci' model='pci-bridge'/>
|
|
<controller type='pci' model='pcie-root-port'/>
|
|
<controller type='pci' model='pcie-switch-upstream-port'/>
|
|
<controller type='pci' model='pcie-switch-downstream-port'/>
|
|
<controller type='pci' model='pcie-switch-downstream-port'/>
|
|
<controller type='pci' model='pcie-switch-downstream-port'/>
|
|
<controller type='pci' model='pcie-switch-downstream-port'/>
|
|
<controller type='pci' model='pcie-switch-downstream-port'/>
|
|
<controller type='pci' model='pcie-switch-downstream-port'/>
|
|
<controller type='pci' model='pcie-switch-downstream-port'/>
|
|
<controller type='pci' model='pcie-switch-downstream-port'/>
|
|
<controller type='pci' model='pcie-switch-downstream-port'/>
|
|
<controller type='pci' model='pcie-switch-downstream-port'/>
|
|
<controller type='usb' model='ich9-ehci1'/>
|
|
<controller type='usb' model='ich9-uhci1'/>
|
|
<controller type='usb' model='ich9-uhci2'/>
|
|
<controller type='usb' model='ich9-uhci3'/>
|
|
<controller type='usb' model='ich9-ehci1'/>
|
|
<controller type='usb' model='ich9-uhci1'/>
|
|
<controller type='usb' model='ich9-uhci1'/>
|
|
<controller type='usb' model='ich9-uhci2'/>
|
|
<controller type='usb' model='ich9-uhci3'/>
|
|
<controller type='usb' model='ich9-ehci1'/>
|
|
<controller type='usb' model='nec-xhci'/>
|
|
<controller type='usb' model='ich9-uhci1'/>
|
|
<controller type='usb' model='ich9-uhci2'/>
|
|
<controller type='usb' model='ich9-uhci3'/>
|
|
<controller type='usb' model='ich9-ehci1'/>
|
|
<memballoon model='none'/>
|
|
</devices>
|
|
</domain>
|