mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-22 05:30:24 +00:00
Project ACRN hypervisor
Some virtio PCI devices can change the device configuration state, as reflected in the device-specific configuration region of the device. In this case: * If MSI-X capability is disabled: 1. Set the second lower bit of the ISR Status field for the device 2. Send the appropriate PCI interrupt for the device. * If MSI-X capability is enabled: 1. If config_msix_vector is not NO_VECTOR, request the appropriate MSI-X interrupt message for the device, config_msix_vector sets the MSI-X Table entry number. A single interrupt MAY indicate both that one or more virtqueue has been used and that the configuration space has changed. Signed-off-by: Shuo Liu <shuo.a.liu@intel.com> Reviewed-by: Hao Li <hao.l.li@intel.com> |
||
---|---|---|
core | ||
hw | ||
include | ||
samples | ||
.gitignore | ||
license_header | ||
MAINTAINERS | ||
Makefile | ||
README.rst |
ACRN Device Model ################# Introduction ============ The ACRN Device Model provides **device sharing** capabilities between the Service OS and Guest OSs. It is a component that is used in conjunction with the `ACRN Hypervisor`_ and this is installed within the Service OS. You can find out more about Project ACRN on the `Project ACRN documentation`_ website. Building the Device Model ========================= Build dependencies ****************** * For Clear Linux .. code-block:: console sudo swupd bundle-add os-clr-on-clr \ os-utils-gui-dev * For CentOS .. code-block:: console sudo yum install gcc \ libuuid-devel \ openssl-devel \ libpciaccess-devel * For Fedora 27 .. code-block:: console sudo dnf install gcc \ libuuid-devel \ openssl-devel \ libpciaccess-devel Build ***** To build the Device Model .. code-block:: console make To clean the build artefacts .. code-block:: console make clean Runtime dependencies ******************** * On CentOS .. code-block:: console sudo yum install openssl-libs \ zlib \ libpciaccess \ libuuid * On Fedora 27 .. code-block:: console sudo dnf install openssl-libs \ zlib \ libpciaccess \ libuuid .. _`ACRN Hypervisor`: https://github.com/projectacrn/acrn-hypervisor .. _`Project ACRN documentation`: https://projectacrn.github.io/