1 // SPDX-License-Identifier: GPL-2.0-only
3 * IOMMU sysfs class support
5 * Copyright (C) 2014 Red Hat, Inc. All rights reserved.
6 * Author: Alex Williamson <alex.williamson@redhat.com>
9 #include <linux/device.h>
10 #include <linux/iommu.h>
11 #include <linux/init.h>
12 #include <linux/slab.h>
15 * We provide a common class "devices" group which initially has no attributes.
16 * As devices are added to the IOMMU, we'll add links to the group.
18 static struct attribute
*devices_attr
[] = {
22 static const struct attribute_group devices_attr_group
= {
24 .attrs
= devices_attr
,
27 static const struct attribute_group
*dev_groups
[] = {
32 static void release_device(struct device
*dev
)
37 static struct class iommu_class
= {
39 .dev_release
= release_device
,
40 .dev_groups
= dev_groups
,
43 static int __init
iommu_dev_init(void)
45 return class_register(&iommu_class
);
47 postcore_initcall(iommu_dev_init
);
50 * Init the struct device for the IOMMU. IOMMU specific attributes can
51 * be provided as an attribute group, allowing a unique namespace per
54 int iommu_device_sysfs_add(struct iommu_device
*iommu
,
55 struct device
*parent
,
56 const struct attribute_group
**groups
,
62 iommu
->dev
= kzalloc(sizeof(*iommu
->dev
), GFP_KERNEL
);
66 device_initialize(iommu
->dev
);
68 iommu
->dev
->class = &iommu_class
;
69 iommu
->dev
->parent
= parent
;
70 iommu
->dev
->groups
= groups
;
73 ret
= kobject_set_name_vargs(&iommu
->dev
->kobj
, fmt
, vargs
);
78 ret
= device_add(iommu
->dev
);
82 dev_set_drvdata(iommu
->dev
, iommu
);
87 put_device(iommu
->dev
);
91 void iommu_device_sysfs_remove(struct iommu_device
*iommu
)
93 dev_set_drvdata(iommu
->dev
, NULL
);
94 device_unregister(iommu
->dev
);
98 * IOMMU drivers can indicate a device is managed by a given IOMMU using
99 * this interface. A link to the device will be created in the "devices"
100 * directory of the IOMMU device in sysfs and an "iommu" link will be
101 * created under the linked device, pointing back at the IOMMU device.
103 int iommu_device_link(struct iommu_device
*iommu
, struct device
*link
)
107 if (!iommu
|| IS_ERR(iommu
))
110 ret
= sysfs_add_link_to_group(&iommu
->dev
->kobj
, "devices",
111 &link
->kobj
, dev_name(link
));
115 ret
= sysfs_create_link_nowarn(&link
->kobj
, &iommu
->dev
->kobj
, "iommu");
117 sysfs_remove_link_from_group(&iommu
->dev
->kobj
, "devices",
123 void iommu_device_unlink(struct iommu_device
*iommu
, struct device
*link
)
125 if (!iommu
|| IS_ERR(iommu
))
128 sysfs_remove_link(&link
->kobj
, "iommu");
129 sysfs_remove_link_from_group(&iommu
->dev
->kobj
, "devices", dev_name(link
));