OSDN Git Service

drm: convert drawable handling to use Linux idr
[android-x86/external-libdrm.git] / linux-core / drm_sysfs.c
1 /*
2  * drm_sysfs.c - Modifications to drm_sysfs_class.c to support
3  *               extra sysfs attribute from DRM. Normal drm_sysfs_class
4  *               does not allow adding attributes.
5  *
6  * Copyright (c) 2004 Jon Smirl <jonsmirl@gmail.com>
7  * Copyright (c) 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
8  * Copyright (c) 2003-2004 IBM Corp.
9  *
10  * This file is released under the GPLv2
11  *
12  */
13
14 #include <linux/device.h>
15 #include <linux/kdev_t.h>
16 #include <linux/err.h>
17
18 #include "drmP.h"
19 #include "drm_core.h"
20
21 struct drm_sysfs_class {
22         struct class_device_attribute attr;
23         struct class class;
24 };
25 #define to_drm_sysfs_class(d) container_of(d, struct drm_sysfs_class, class)
26
27 struct simple_dev {
28         dev_t dev;
29         struct class_device class_dev;
30 };
31 #define to_simple_dev(d) container_of(d, struct simple_dev, class_dev)
32
33 static void release_simple_dev(struct class_device *class_dev)
34 {
35         struct simple_dev *s_dev = to_simple_dev(class_dev);
36         kfree(s_dev);
37 }
38
39 static ssize_t show_dev(struct class_device *class_dev, char *buf)
40 {
41         struct simple_dev *s_dev = to_simple_dev(class_dev);
42         return print_dev_t(buf, s_dev->dev);
43 }
44
45 static void drm_sysfs_class_release(struct class *class)
46 {
47         struct drm_sysfs_class *cs = to_drm_sysfs_class(class);
48         kfree(cs);
49 }
50
51 /* Display the version of drm_core. This doesn't work right in current design */
52 static ssize_t version_show(struct class *dev, char *buf)
53 {
54         return sprintf(buf, "%s %d.%d.%d %s\n", CORE_NAME, CORE_MAJOR,
55                        CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
56 }
57
58 static CLASS_ATTR(version, S_IRUGO, version_show, NULL);
59
60 /**
61  * drm_sysfs_create - create a struct drm_sysfs_class structure
62  * @owner: pointer to the module that is to "own" this struct drm_sysfs_class
63  * @name: pointer to a string for the name of this class.
64  *
65  * This is used to create a struct drm_sysfs_class pointer that can then be used
66  * in calls to drm_sysfs_device_add().
67  *
68  * Note, the pointer created here is to be destroyed when finished by making a
69  * call to drm_sysfs_destroy().
70  */
71 struct drm_sysfs_class *drm_sysfs_create(struct module *owner, char *name)
72 {
73         struct drm_sysfs_class *cs;
74         int retval;
75
76         cs = kmalloc(sizeof(*cs), GFP_KERNEL);
77         if (!cs) {
78                 retval = -ENOMEM;
79                 goto error;
80         }
81         memset(cs, 0x00, sizeof(*cs));
82
83         cs->class.name = name;
84         cs->class.class_release = drm_sysfs_class_release;
85         cs->class.release = release_simple_dev;
86
87         cs->attr.attr.name = "dev";
88         cs->attr.attr.mode = S_IRUGO;
89         cs->attr.attr.owner = owner;
90         cs->attr.show = show_dev;
91         cs->attr.store = NULL;
92
93         retval = class_register(&cs->class);
94         if (retval)
95                 goto error;
96         class_create_file(&cs->class, &class_attr_version);
97
98         return cs;
99
100       error:
101         kfree(cs);
102         return ERR_PTR(retval);
103 }
104
105 /**
106  * drm_sysfs_destroy - destroys a struct drm_sysfs_class structure
107  * @cs: pointer to the struct drm_sysfs_class that is to be destroyed
108  *
109  * Note, the pointer to be destroyed must have been created with a call to
110  * drm_sysfs_create().
111  */
112 void drm_sysfs_destroy(struct drm_sysfs_class *cs)
113 {
114         if ((cs == NULL) || (IS_ERR(cs)))
115                 return;
116
117         class_unregister(&cs->class);
118 }
119
120 static ssize_t show_dri(struct class_device *class_device, char *buf)
121 {
122         drm_device_t * dev = ((drm_head_t *)class_get_devdata(class_device))->dev;
123         if (dev->driver->dri_library_name)
124                 return dev->driver->dri_library_name(dev, buf);
125         return snprintf(buf, PAGE_SIZE, "%s\n", dev->driver->pci_driver.name);
126 }
127
128 static struct class_device_attribute class_device_attrs[] = {
129         __ATTR(dri_library_name, S_IRUGO, show_dri, NULL),
130 };
131
132 /**
133  * drm_sysfs_device_add - adds a class device to sysfs for a character driver
134  * @cs: pointer to the struct drm_sysfs_class that this device should be registered to.
135  * @dev: the dev_t for the device to be added.
136  * @device: a pointer to a struct device that is assiociated with this class device.
137  * @fmt: string for the class device's name
138  *
139  * A struct class_device will be created in sysfs, registered to the specified
140  * class.  A "dev" file will be created, showing the dev_t for the device.  The
141  * pointer to the struct class_device will be returned from the call.  Any further
142  * sysfs files that might be required can be created using this pointer.
143  * Note: the struct drm_sysfs_class passed to this function must have previously been
144  * created with a call to drm_sysfs_create().
145  */
146 struct class_device *drm_sysfs_device_add(struct drm_sysfs_class *cs,
147                                           drm_head_t * head)
148 {
149         struct simple_dev *s_dev = NULL;
150         int i, retval;
151
152         if ((cs == NULL) || (IS_ERR(cs))) {
153                 retval = -ENODEV;
154                 goto error;
155         }
156
157         s_dev = kmalloc(sizeof(*s_dev), GFP_KERNEL);
158         if (!s_dev) {
159                 retval = -ENOMEM;
160                 goto error;
161         }
162         memset(s_dev, 0x00, sizeof(*s_dev));
163
164         s_dev->dev = MKDEV(DRM_MAJOR, head->minor);
165         s_dev->class_dev.dev = &head->dev->pdev->dev;
166         s_dev->class_dev.class = &cs->class;
167
168         snprintf(s_dev->class_dev.class_id, BUS_ID_SIZE, "card%d", head->minor);
169         retval = class_device_register(&s_dev->class_dev);
170         if (retval)
171                 goto error;
172
173         class_device_create_file(&s_dev->class_dev, &cs->attr);
174         class_set_devdata(&s_dev->class_dev, head);
175
176         for (i = 0; i < ARRAY_SIZE(class_device_attrs); i++)
177                 class_device_create_file(&s_dev->class_dev, &class_device_attrs[i]);
178
179         return &s_dev->class_dev;
180
181 error:
182         kfree(s_dev);
183         return ERR_PTR(retval);
184 }
185
186 /**
187  * drm_sysfs_device_remove - removes a class device that was created with drm_sysfs_device_add()
188  * @dev: the dev_t of the device that was previously registered.
189  *
190  * This call unregisters and cleans up a class device that was created with a
191  * call to drm_sysfs_device_add()
192  */
193 void drm_sysfs_device_remove(struct class_device *class_dev)
194 {
195         struct simple_dev *s_dev = to_simple_dev(class_dev);
196         int i;
197
198         for (i = 0; i < ARRAY_SIZE(class_device_attrs); i++)
199                 class_device_remove_file(&s_dev->class_dev, &class_device_attrs[i]);
200
201         class_device_unregister(&s_dev->class_dev);
202 }