]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/iommu/iommu-sysfs.c
BCM270X: Enable the DSI panel node in the VC4 overlay.
[mirror_ubuntu-zesty-kernel.git] / drivers / iommu / iommu-sysfs.c
CommitLineData
c61959ec
AW
1/*
2 * IOMMU sysfs class support
3 *
4 * Copyright (C) 2014 Red Hat, Inc. All rights reserved.
5 * Author: Alex Williamson <alex.williamson@redhat.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/device.h>
13#include <linux/iommu.h>
14#include <linux/module.h>
ffd78f00 15#include <linux/slab.h>
c61959ec
AW
16
17/*
18 * We provide a common class "devices" group which initially has no attributes.
19 * As devices are added to the IOMMU, we'll add links to the group.
20 */
21static struct attribute *devices_attr[] = {
22 NULL,
23};
24
25static const struct attribute_group iommu_devices_attr_group = {
26 .name = "devices",
27 .attrs = devices_attr,
28};
29
30static const struct attribute_group *iommu_dev_groups[] = {
31 &iommu_devices_attr_group,
32 NULL,
33};
34
35static void iommu_release_device(struct device *dev)
36{
37 kfree(dev);
38}
39
40static struct class iommu_class = {
41 .name = "iommu",
42 .dev_release = iommu_release_device,
43 .dev_groups = iommu_dev_groups,
44};
45
46static int __init iommu_dev_init(void)
47{
48 return class_register(&iommu_class);
49}
50postcore_initcall(iommu_dev_init);
51
52/*
cdf83a3b
JR
53 * Init the struct device for the IOMMU. IOMMU specific attributes can
54 * be provided as an attribute group, allowing a unique namespace per
55 * IOMMU type.
c61959ec 56 */
cdf83a3b
JR
57int iommu_device_sysfs_add(struct iommu_device *iommu,
58 struct device *parent,
59 const struct attribute_group **groups,
60 const char *fmt, ...)
c61959ec 61{
c61959ec
AW
62 va_list vargs;
63 int ret;
64
cdf83a3b 65 device_initialize(&iommu->dev);
c61959ec 66
cdf83a3b
JR
67 iommu->dev.class = &iommu_class;
68 iommu->dev.parent = parent;
69 iommu->dev.groups = groups;
c61959ec
AW
70
71 va_start(vargs, fmt);
cdf83a3b 72 ret = kobject_set_name_vargs(&iommu->dev.kobj, fmt, vargs);
c61959ec
AW
73 va_end(vargs);
74 if (ret)
75 goto error;
76
cdf83a3b 77 ret = device_add(&iommu->dev);
c61959ec
AW
78 if (ret)
79 goto error;
80
cdf83a3b 81 return 0;
c61959ec
AW
82
83error:
cdf83a3b
JR
84 put_device(&iommu->dev);
85 return ret;
c61959ec
AW
86}
87
cdf83a3b 88void iommu_device_sysfs_remove(struct iommu_device *iommu)
c61959ec 89{
cdf83a3b 90 device_unregister(&iommu->dev);
c61959ec 91}
c61959ec
AW
92/*
93 * IOMMU drivers can indicate a device is managed by a given IOMMU using
94 * this interface. A link to the device will be created in the "devices"
95 * directory of the IOMMU device in sysfs and an "iommu" link will be
96 * created under the linked device, pointing back at the IOMMU device.
97 */
ee624f2d 98int iommu_device_link(struct iommu_device *iommu, struct device *link)
c61959ec
AW
99{
100 int ret;
101
ee624f2d 102 if (!iommu || IS_ERR(iommu))
c61959ec
AW
103 return -ENODEV;
104
ee624f2d 105 ret = sysfs_add_link_to_group(&iommu->dev.kobj, "devices",
c61959ec
AW
106 &link->kobj, dev_name(link));
107 if (ret)
108 return ret;
109
ee624f2d 110 ret = sysfs_create_link_nowarn(&link->kobj, &iommu->dev.kobj, "iommu");
c61959ec 111 if (ret)
ee624f2d 112 sysfs_remove_link_from_group(&iommu->dev.kobj, "devices",
c61959ec
AW
113 dev_name(link));
114
115 return ret;
116}
117
ee624f2d 118void iommu_device_unlink(struct iommu_device *iommu, struct device *link)
c61959ec 119{
ee624f2d 120 if (!iommu || IS_ERR(iommu))
c61959ec
AW
121 return;
122
123 sysfs_remove_link(&link->kobj, "iommu");
ee624f2d 124 sysfs_remove_link_from_group(&iommu->dev.kobj, "devices", dev_name(link));
c61959ec 125}