- File has starter code for setting up VFIO environment as required.
- THis file reads the config space of PCI device. All devices with VFIO-PCI device have 9 regions. The regions can be found in vfio.h. The region indices that work for the audio device are 0, 4, and 7. This is the VFIO_PCI_BAR0_REGION_INDEX, VFIO_PCI_BAR4_REGION_INDEX, and VFIO_PCI_CONFIG_REGION_INDEX respectfully.
- You can compare the config space this code prints out versus the config space code by running
cat /sys/bus/pci/devices/0000\:00\:1f.3/config | hexdump
. - FOr IRQs, there are two ioctls. One to get information, which is already implemented within this file. The other is setting irqs. Here
- One last important thing to note. In order to make the vfio api to work with the multimedia audio controller, I also had to change the kernel driver of the SMBus interface from the default to the vfio-pci driver. THis is because, I think, the audio controller device has a SMBus controller function. But to the OS, it appears as it's own device, but as they are both part of the same group, the SMBUs interface had to alse be binded to the vfio-pci driver. I think this will be handled by how we decided to take care of interrupts.
WIP, exploring how IRQ handling will work. *VFIO checks which interrupts are supported by the device. *VFIO checks whether INTx, MSI, MSIx, Err, and Req interrupts are supported *For our device, Err IRQ is the only one that is not supported. Or at least ioctl for getting information about the ERR_IRQ fails. This may also be because there have been no errors on the IO-APIC bus. Not sure. *For INTx, MSI, and Req interrupts, VFIO reports that there is 1 IRQ. For MSIx, there are 0 IRQ. 0 count, according to the documentation, may be used to describe unimplemented interrupt types. According to the documentation, INTx interrupts are enabled by default, and MSI messages are not being transmitted by default. However, the capabilities to disable and enable both exist, so will have to take that into account when setting IRQs. The INTx interrupts have the eventfd, maskable, and automasked flags enabled, while the rest have the eventfd and noresize flag enabled. More information about the flags in the vfio doc.
- Binds Unbinds devices in group 11 from their default drivers and then binds them to vfio-pci driver
- File working to load and boot firmware.
https://stackoverflow.com/questions/29461518/interrupt-handling-for-assigned-device-through-vfio