Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2013 - Virtual Open Systems
4 * Author: Antonios Motakis <a.motakis@virtualopensystems.com>
5 */
6
7#include <linux/module.h>
8#include <linux/slab.h>
9#include <linux/vfio.h>
10#include <linux/pm_runtime.h>
11#include <linux/platform_device.h>
12
13#include "vfio_platform_private.h"
14
15#define DRIVER_VERSION "0.10"
16#define DRIVER_AUTHOR "Antonios Motakis <a.motakis@virtualopensystems.com>"
17#define DRIVER_DESC "VFIO for platform devices - User Level meta-driver"
18
19static bool reset_required = true;
20module_param(reset_required, bool, 0444);
21MODULE_PARM_DESC(reset_required, "override reset requirement (default: 1)");
22
23/* probing devices from the linux platform bus */
24
25static struct resource *get_platform_resource(struct vfio_platform_device *vdev,
26 int num)
27{
28 struct platform_device *dev = (struct platform_device *) vdev->opaque;
29
30 return platform_get_mem_or_io(dev, num);
31}
32
33static int get_platform_irq(struct vfio_platform_device *vdev, int i)
34{
35 struct platform_device *pdev = (struct platform_device *) vdev->opaque;
36
37 return platform_get_irq_optional(pdev, i);
38}
39
40static int vfio_platform_init_dev(struct vfio_device *core_vdev)
41{
42 struct vfio_platform_device *vdev =
43 container_of(core_vdev, struct vfio_platform_device, vdev);
44 struct platform_device *pdev = to_platform_device(core_vdev->dev);
45
46 vdev->opaque = (void *) pdev;
47 vdev->name = pdev->name;
48 vdev->flags = VFIO_DEVICE_FLAGS_PLATFORM;
49 vdev->get_resource = get_platform_resource;
50 vdev->get_irq = get_platform_irq;
51 vdev->reset_required = reset_required;
52
53 return vfio_platform_init_common(vdev);
54}
55
56static const struct vfio_device_ops vfio_platform_ops;
57static int vfio_platform_probe(struct platform_device *pdev)
58{
59 struct vfio_platform_device *vdev;
60 int ret;
61
62 vdev = vfio_alloc_device(vfio_platform_device, vdev, &pdev->dev,
63 &vfio_platform_ops);
64 if (IS_ERR(vdev))
65 return PTR_ERR(vdev);
66
67 ret = vfio_register_group_dev(&vdev->vdev);
68 if (ret)
69 goto out_put_vdev;
70
71 pm_runtime_enable(&pdev->dev);
72 dev_set_drvdata(&pdev->dev, vdev);
73 return 0;
74
75out_put_vdev:
76 vfio_put_device(&vdev->vdev);
77 return ret;
78}
79
80static void vfio_platform_release_dev(struct vfio_device *core_vdev)
81{
82 struct vfio_platform_device *vdev =
83 container_of(core_vdev, struct vfio_platform_device, vdev);
84
85 vfio_platform_release_common(vdev);
86}
87
88static int vfio_platform_remove(struct platform_device *pdev)
89{
90 struct vfio_platform_device *vdev = dev_get_drvdata(&pdev->dev);
91
92 vfio_unregister_group_dev(&vdev->vdev);
93 pm_runtime_disable(vdev->device);
94 vfio_put_device(&vdev->vdev);
95 return 0;
96}
97
98static const struct vfio_device_ops vfio_platform_ops = {
99 .name = "vfio-platform",
100 .init = vfio_platform_init_dev,
101 .release = vfio_platform_release_dev,
102 .open_device = vfio_platform_open_device,
103 .close_device = vfio_platform_close_device,
104 .ioctl = vfio_platform_ioctl,
105 .read = vfio_platform_read,
106 .write = vfio_platform_write,
107 .mmap = vfio_platform_mmap,
108 .bind_iommufd = vfio_iommufd_physical_bind,
109 .unbind_iommufd = vfio_iommufd_physical_unbind,
110 .attach_ioas = vfio_iommufd_physical_attach_ioas,
111 .detach_ioas = vfio_iommufd_physical_detach_ioas,
112};
113
114static struct platform_driver vfio_platform_driver = {
115 .probe = vfio_platform_probe,
116 .remove = vfio_platform_remove,
117 .driver = {
118 .name = "vfio-platform",
119 },
120 .driver_managed_dma = true,
121};
122
123module_platform_driver(vfio_platform_driver);
124
125MODULE_VERSION(DRIVER_VERSION);
126MODULE_LICENSE("GPL v2");
127MODULE_AUTHOR(DRIVER_AUTHOR);
128MODULE_DESCRIPTION(DRIVER_DESC);
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2013 - Virtual Open Systems
4 * Author: Antonios Motakis <a.motakis@virtualopensystems.com>
5 */
6
7#include <linux/module.h>
8#include <linux/slab.h>
9#include <linux/vfio.h>
10#include <linux/platform_device.h>
11
12#include "vfio_platform_private.h"
13
14#define DRIVER_VERSION "0.10"
15#define DRIVER_AUTHOR "Antonios Motakis <a.motakis@virtualopensystems.com>"
16#define DRIVER_DESC "VFIO for platform devices - User Level meta-driver"
17
18static bool reset_required = true;
19module_param(reset_required, bool, 0444);
20MODULE_PARM_DESC(reset_required, "override reset requirement (default: 1)");
21
22/* probing devices from the linux platform bus */
23
24static struct resource *get_platform_resource(struct vfio_platform_device *vdev,
25 int num)
26{
27 struct platform_device *dev = (struct platform_device *) vdev->opaque;
28 int i;
29
30 for (i = 0; i < dev->num_resources; i++) {
31 struct resource *r = &dev->resource[i];
32
33 if (resource_type(r) & (IORESOURCE_MEM|IORESOURCE_IO)) {
34 if (!num)
35 return r;
36
37 num--;
38 }
39 }
40 return NULL;
41}
42
43static int get_platform_irq(struct vfio_platform_device *vdev, int i)
44{
45 struct platform_device *pdev = (struct platform_device *) vdev->opaque;
46
47 return platform_get_irq(pdev, i);
48}
49
50static int vfio_platform_probe(struct platform_device *pdev)
51{
52 struct vfio_platform_device *vdev;
53 int ret;
54
55 vdev = kzalloc(sizeof(*vdev), GFP_KERNEL);
56 if (!vdev)
57 return -ENOMEM;
58
59 vdev->opaque = (void *) pdev;
60 vdev->name = pdev->name;
61 vdev->flags = VFIO_DEVICE_FLAGS_PLATFORM;
62 vdev->get_resource = get_platform_resource;
63 vdev->get_irq = get_platform_irq;
64 vdev->parent_module = THIS_MODULE;
65 vdev->reset_required = reset_required;
66
67 ret = vfio_platform_probe_common(vdev, &pdev->dev);
68 if (ret)
69 kfree(vdev);
70
71 return ret;
72}
73
74static int vfio_platform_remove(struct platform_device *pdev)
75{
76 struct vfio_platform_device *vdev;
77
78 vdev = vfio_platform_remove_common(&pdev->dev);
79 if (vdev) {
80 kfree(vdev);
81 return 0;
82 }
83
84 return -EINVAL;
85}
86
87static struct platform_driver vfio_platform_driver = {
88 .probe = vfio_platform_probe,
89 .remove = vfio_platform_remove,
90 .driver = {
91 .name = "vfio-platform",
92 },
93};
94
95module_platform_driver(vfio_platform_driver);
96
97MODULE_VERSION(DRIVER_VERSION);
98MODULE_LICENSE("GPL v2");
99MODULE_AUTHOR(DRIVER_AUTHOR);
100MODULE_DESCRIPTION(DRIVER_DESC);