1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
10 #include <linux/device.h>
11 #include <linux/iommu.h>
12 #include <linux/mdev.h>
14 #include "mdev_private.h"
16 static int mdev_attach_iommu(struct mdev_device *mdev)
19 struct iommu_group *group;
21 group = iommu_group_alloc();
23 return PTR_ERR(group);
25 ret = iommu_group_add_device(group, &mdev->dev);
27 dev_info(&mdev->dev, "MDEV: group_id = %d\n",
28 iommu_group_id(group));
30 iommu_group_put(group);
34 static void mdev_detach_iommu(struct mdev_device *mdev)
36 iommu_group_remove_device(&mdev->dev);
37 dev_info(&mdev->dev, "MDEV: detaching iommu\n");
40 static int mdev_probe(struct device *dev)
42 struct mdev_driver *drv =
43 container_of(dev->driver, struct mdev_driver, driver);
44 struct mdev_device *mdev = to_mdev_device(dev);
47 ret = mdev_attach_iommu(mdev);
52 ret = drv->probe(mdev);
54 mdev_detach_iommu(mdev);
60 static int mdev_remove(struct device *dev)
62 struct mdev_driver *drv =
63 container_of(dev->driver, struct mdev_driver, driver);
64 struct mdev_device *mdev = to_mdev_device(dev);
69 mdev_detach_iommu(mdev);
74 struct bus_type mdev_bus_type = {
77 .remove = mdev_remove,
79 EXPORT_SYMBOL_GPL(mdev_bus_type);
82 * mdev_register_driver - register a new MDEV driver
83 * @drv: the driver to register
85 * Returns a negative value on error, otherwise 0.
87 int mdev_register_driver(struct mdev_driver *drv)
89 /* initialize common driver fields */
90 drv->driver.bus = &mdev_bus_type;
92 /* register with core */
93 return driver_register(&drv->driver);
95 EXPORT_SYMBOL(mdev_register_driver);
98 * mdev_unregister_driver - unregister MDEV driver
99 * @drv: the driver to unregister
101 void mdev_unregister_driver(struct mdev_driver *drv)
103 driver_unregister(&drv->driver);
105 EXPORT_SYMBOL(mdev_unregister_driver);
107 int mdev_bus_register(void)
109 return bus_register(&mdev_bus_type);
112 void mdev_bus_unregister(void)
114 bus_unregister(&mdev_bus_type);