diff options
author | Eric Auger <eric.auger@linaro.org> | 2015-06-15 05:09:42 -0400 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2015-06-17 17:39:09 -0400 |
commit | 9f85d8f9fa342b22f01b8b4416c850bac00c2b4a (patch) | |
tree | 46d220b8f091d712bb756183a0bb01c8e93878e4 /drivers/vfio | |
parent | 20f300175a1e150dae231e21dfa1fc4c6fcf4db6 (diff) |
VFIO: platform: add reset struct and lookup table
This patch introduces the vfio_platform_reset_combo struct that
stores all the information useful to handle the reset modality:
compat string, name of the reset function, name of the module that
implements the reset function. A lookup table of such structures
is added, currently void.
Signed-off-by: Eric Auger <eric.auger@linaro.org>
Acked-by: Baptiste Reynal <b.reynal@virtualopensystems.com>
Tested-by: Baptiste Reynal <b.reynal@virtualopensystems.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/vfio')
-rw-r--r-- | drivers/vfio/platform/vfio_platform_common.c | 3 | ||||
-rw-r--r-- | drivers/vfio/platform/vfio_platform_private.h | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/drivers/vfio/platform/vfio_platform_common.c b/drivers/vfio/platform/vfio_platform_common.c index abcff7a1aa66..611597e65f44 100644 --- a/drivers/vfio/platform/vfio_platform_common.c +++ b/drivers/vfio/platform/vfio_platform_common.c | |||
@@ -25,6 +25,9 @@ | |||
25 | 25 | ||
26 | static DEFINE_MUTEX(driver_lock); | 26 | static DEFINE_MUTEX(driver_lock); |
27 | 27 | ||
28 | static const struct vfio_platform_reset_combo reset_lookup_table[] = { | ||
29 | }; | ||
30 | |||
28 | static int vfio_platform_regions_init(struct vfio_platform_device *vdev) | 31 | static int vfio_platform_regions_init(struct vfio_platform_device *vdev) |
29 | { | 32 | { |
30 | int cnt = 0, i; | 33 | int cnt = 0, i; |
diff --git a/drivers/vfio/platform/vfio_platform_private.h b/drivers/vfio/platform/vfio_platform_private.h index 5d31e0473406..9e37b9fda483 100644 --- a/drivers/vfio/platform/vfio_platform_private.h +++ b/drivers/vfio/platform/vfio_platform_private.h | |||
@@ -69,6 +69,12 @@ struct vfio_platform_device { | |||
69 | int (*get_irq)(struct vfio_platform_device *vdev, int i); | 69 | int (*get_irq)(struct vfio_platform_device *vdev, int i); |
70 | }; | 70 | }; |
71 | 71 | ||
72 | struct vfio_platform_reset_combo { | ||
73 | const char *compat; | ||
74 | const char *reset_function_name; | ||
75 | const char *module_name; | ||
76 | }; | ||
77 | |||
72 | extern int vfio_platform_probe_common(struct vfio_platform_device *vdev, | 78 | extern int vfio_platform_probe_common(struct vfio_platform_device *vdev, |
73 | struct device *dev); | 79 | struct device *dev); |
74 | extern struct vfio_platform_device *vfio_platform_remove_common | 80 | extern struct vfio_platform_device *vfio_platform_remove_common |