of: MSI: Simplify irqdomain lookup
[linux/fpc-iii.git] / drivers / vfio / platform / vfio_amba.c
bloba66479bd0edf968c8209b384264052f79a6ec272
1 /*
2 * Copyright (C) 2013 - Virtual Open Systems
3 * Author: Antonios Motakis <a.motakis@virtualopensystems.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2, as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/module.h>
16 #include <linux/slab.h>
17 #include <linux/vfio.h>
18 #include <linux/amba/bus.h>
20 #include "vfio_platform_private.h"
22 #define DRIVER_VERSION "0.10"
23 #define DRIVER_AUTHOR "Antonios Motakis <a.motakis@virtualopensystems.com>"
24 #define DRIVER_DESC "VFIO for AMBA devices - User Level meta-driver"
26 /* probing devices from the AMBA bus */
28 static struct resource *get_amba_resource(struct vfio_platform_device *vdev,
29 int i)
31 struct amba_device *adev = (struct amba_device *) vdev->opaque;
33 if (i == 0)
34 return &adev->res;
36 return NULL;
39 static int get_amba_irq(struct vfio_platform_device *vdev, int i)
41 struct amba_device *adev = (struct amba_device *) vdev->opaque;
42 int ret = 0;
44 if (i < AMBA_NR_IRQS)
45 ret = adev->irq[i];
47 /* zero is an unset IRQ for AMBA devices */
48 return ret ? ret : -ENXIO;
51 static int vfio_amba_probe(struct amba_device *adev, const struct amba_id *id)
53 struct vfio_platform_device *vdev;
54 int ret;
56 vdev = kzalloc(sizeof(*vdev), GFP_KERNEL);
57 if (!vdev)
58 return -ENOMEM;
60 vdev->name = kasprintf(GFP_KERNEL, "vfio-amba-%08x", adev->periphid);
61 if (!vdev->name) {
62 kfree(vdev);
63 return -ENOMEM;
66 vdev->opaque = (void *) adev;
67 vdev->flags = VFIO_DEVICE_FLAGS_AMBA;
68 vdev->get_resource = get_amba_resource;
69 vdev->get_irq = get_amba_irq;
70 vdev->parent_module = THIS_MODULE;
72 ret = vfio_platform_probe_common(vdev, &adev->dev);
73 if (ret) {
74 kfree(vdev->name);
75 kfree(vdev);
78 return ret;
81 static int vfio_amba_remove(struct amba_device *adev)
83 struct vfio_platform_device *vdev;
85 vdev = vfio_platform_remove_common(&adev->dev);
86 if (vdev) {
87 kfree(vdev->name);
88 kfree(vdev);
89 return 0;
92 return -EINVAL;
95 static struct amba_id pl330_ids[] = {
96 { 0, 0 },
99 MODULE_DEVICE_TABLE(amba, pl330_ids);
101 static struct amba_driver vfio_amba_driver = {
102 .probe = vfio_amba_probe,
103 .remove = vfio_amba_remove,
104 .id_table = pl330_ids,
105 .drv = {
106 .name = "vfio-amba",
107 .owner = THIS_MODULE,
111 module_amba_driver(vfio_amba_driver);
113 MODULE_VERSION(DRIVER_VERSION);
114 MODULE_LICENSE("GPL v2");
115 MODULE_AUTHOR(DRIVER_AUTHOR);
116 MODULE_DESCRIPTION(DRIVER_DESC);