diff options
author | Antonios Motakis <a.motakis@virtualopensystems.com> | 2015-03-16 21:08:43 +0100 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2015-03-16 21:08:43 +0100 |
commit | 9df85aaa43297cb12dc85155695dd1bfdf94f91d (patch) | |
tree | b7a17a5d63ae1d3b6f6412e8251f066421050fb6 /include | |
parent | vfio/platform: initial skeleton of VFIO support for platform devices (diff) | |
download | linux-9df85aaa43297cb12dc85155695dd1bfdf94f91d.tar.xz linux-9df85aaa43297cb12dc85155695dd1bfdf94f91d.zip |
vfio: platform: probe to devices on the platform bus
Driver to bind to Linux platform devices, and callbacks to discover their
resources to be used by the main VFIO PLATFORM code.
Signed-off-by: Antonios Motakis <a.motakis@virtualopensystems.com>
Signed-off-by: Baptiste Reynal <b.reynal@virtualopensystems.com>
Reviewed-by: Eric Auger <eric.auger@linaro.org>
Tested-by: Eric Auger <eric.auger@linaro.org>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/vfio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/linux/vfio.h b/include/uapi/linux/vfio.h index 82889c30f4f5..ea9514b6bb5c 100644 --- a/include/uapi/linux/vfio.h +++ b/include/uapi/linux/vfio.h @@ -160,6 +160,7 @@ struct vfio_device_info { __u32 flags; #define VFIO_DEVICE_FLAGS_RESET (1 << 0) /* Device supports reset */ #define VFIO_DEVICE_FLAGS_PCI (1 << 1) /* vfio-pci device */ +#define VFIO_DEVICE_FLAGS_PLATFORM (1 << 2) /* vfio-platform device */ __u32 num_regions; /* Max region index + 1 */ __u32 num_irqs; /* Max IRQ index + 1 */ }; |