drivers/char: replace remaining __FUNCTION__ occurrences
[deliverable/linux.git] / drivers / char / drm / drm_sysfs.c
CommitLineData
0650fd58 1
1da177e4
LT
2/*
3 * drm_sysfs.c - Modifications to drm_sysfs_class.c to support
4 * extra sysfs attribute from DRM. Normal drm_sysfs_class
5 * does not allow adding attributes.
6 *
7 * Copyright (c) 2004 Jon Smirl <jonsmirl@gmail.com>
8 * Copyright (c) 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
9 * Copyright (c) 2003-2004 IBM Corp.
10 *
11 * This file is released under the GPLv2
12 *
13 */
14
1da177e4
LT
15#include <linux/device.h>
16#include <linux/kdev_t.h>
17#include <linux/err.h>
18
19#include "drm_core.h"
f210973b 20#include "drmP.h"
1da177e4 21
2c14f28b 22#define to_drm_minor(d) container_of(d, struct drm_minor, kdev)
e8b962b6
JB
23
24/**
25 * drm_sysfs_suspend - DRM class suspend hook
26 * @dev: Linux device to suspend
27 * @state: power state to enter
28 *
29 * Just figures out what the actual struct drm_device associated with
30 * @dev is and calls its suspend hook, if present.
31 */
32static int drm_sysfs_suspend(struct device *dev, pm_message_t state)
33{
2c14f28b
DA
34 struct drm_minor *drm_minor = to_drm_minor(dev);
35 struct drm_device *drm_dev = drm_minor->dev;
e8b962b6 36
bf9d8929 37 printk(KERN_ERR "%s\n", __func__);
e8b962b6
JB
38
39 if (drm_dev->driver->suspend)
b932ccb5 40 return drm_dev->driver->suspend(drm_dev, state);
e8b962b6
JB
41
42 return 0;
43}
44
45/**
46 * drm_sysfs_resume - DRM class resume hook
47 * @dev: Linux device to resume
48 *
49 * Just figures out what the actual struct drm_device associated with
50 * @dev is and calls its resume hook, if present.
51 */
52static int drm_sysfs_resume(struct device *dev)
53{
2c14f28b
DA
54 struct drm_minor *drm_minor = to_drm_minor(dev);
55 struct drm_device *drm_dev = drm_minor->dev;
e8b962b6
JB
56
57 if (drm_dev->driver->resume)
58 return drm_dev->driver->resume(drm_dev);
59
60 return 0;
61}
62
1da177e4
LT
63/* Display the version of drm_core. This doesn't work right in current design */
64static ssize_t version_show(struct class *dev, char *buf)
65{
66 return sprintf(buf, "%s %d.%d.%d %s\n", CORE_NAME, CORE_MAJOR,
67 CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
68}
69
70static CLASS_ATTR(version, S_IRUGO, version_show, NULL);
71
72/**
73 * drm_sysfs_create - create a struct drm_sysfs_class structure
74 * @owner: pointer to the module that is to "own" this struct drm_sysfs_class
75 * @name: pointer to a string for the name of this class.
76 *
e8b962b6 77 * This is used to create DRM class pointer that can then be used
1da177e4
LT
78 * in calls to drm_sysfs_device_add().
79 *
80 * Note, the pointer created here is to be destroyed when finished by making a
81 * call to drm_sysfs_destroy().
82 */
0650fd58 83struct class *drm_sysfs_create(struct module *owner, char *name)
1da177e4 84{
0650fd58 85 struct class *class;
24f73c92 86 int err;
0650fd58
GKH
87
88 class = class_create(owner, name);
94f060bd
AM
89 if (IS_ERR(class)) {
90 err = PTR_ERR(class);
24f73c92
JG
91 goto err_out;
92 }
93
e8b962b6
JB
94 class->suspend = drm_sysfs_suspend;
95 class->resume = drm_sysfs_resume;
96
24f73c92
JG
97 err = class_create_file(class, &class_attr_version);
98 if (err)
99 goto err_out_class;
0650fd58 100
0650fd58 101 return class;
24f73c92
JG
102
103err_out_class:
104 class_destroy(class);
105err_out:
106 return ERR_PTR(err);
1da177e4
LT
107}
108
109/**
e8b962b6 110 * drm_sysfs_destroy - destroys DRM class
1da177e4 111 *
e8b962b6 112 * Destroy the DRM device class.
1da177e4 113 */
e8b962b6 114void drm_sysfs_destroy(void)
1da177e4 115{
e8b962b6 116 if ((drm_class == NULL) || (IS_ERR(drm_class)))
1da177e4 117 return;
e8b962b6
JB
118 class_remove_file(drm_class, &class_attr_version);
119 class_destroy(drm_class);
1da177e4
LT
120}
121
e8b962b6
JB
122static ssize_t show_dri(struct device *device, struct device_attribute *attr,
123 char *buf)
732052ed 124{
2c14f28b
DA
125 struct drm_minor *drm_minor = to_drm_minor(device);
126 struct drm_device *drm_dev = drm_minor->dev;
127 if (drm_dev->driver->dri_library_name)
128 return drm_dev->driver->dri_library_name(drm_dev, buf);
129 return snprintf(buf, PAGE_SIZE, "%s\n", drm_dev->driver->pci_driver.name);
732052ed
DA
130}
131
e8b962b6 132static struct device_attribute device_attrs[] = {
732052ed
DA
133 __ATTR(dri_library_name, S_IRUGO, show_dri, NULL),
134};
135
e8b962b6
JB
136/**
137 * drm_sysfs_device_release - do nothing
138 * @dev: Linux device
139 *
140 * Normally, this would free the DRM device associated with @dev, along
141 * with cleaning up any other stuff. But we do that in the DRM core, so
142 * this function can just return and hope that the core does its job.
143 */
144static void drm_sysfs_device_release(struct device *dev)
145{
146 return;
147}
148
1da177e4
LT
149/**
150 * drm_sysfs_device_add - adds a class device to sysfs for a character driver
e8b962b6
JB
151 * @dev: DRM device to be added
152 * @head: DRM head in question
1da177e4 153 *
e8b962b6
JB
154 * Add a DRM device to the DRM's device model class. We use @dev's PCI device
155 * as the parent for the Linux device, and make sure it has a file containing
156 * the driver we're using (for userspace compatibility).
1da177e4 157 */
2c14f28b 158int drm_sysfs_device_add(struct drm_minor *minor)
1da177e4 159{
e8b962b6
JB
160 int err;
161 int i, j;
2c14f28b 162 char *minor_str;
e8b962b6 163
2c14f28b
DA
164 minor->kdev.parent = &minor->dev->pdev->dev;
165 minor->kdev.class = drm_class;
166 minor->kdev.release = drm_sysfs_device_release;
167 minor->kdev.devt = minor->device;
168 minor_str = "card%d";
e8b962b6 169
2c14f28b
DA
170 snprintf(minor->kdev.bus_id, BUS_ID_SIZE, minor_str, minor->index);
171
172 err = device_register(&minor->kdev);
e8b962b6
JB
173 if (err) {
174 DRM_ERROR("device add failed: %d\n", err);
24f73c92
JG
175 goto err_out;
176 }
1da177e4 177
e8b962b6 178 for (i = 0; i < ARRAY_SIZE(device_attrs); i++) {
2c14f28b 179 err = device_create_file(&minor->kdev, &device_attrs[i]);
24f73c92
JG
180 if (err)
181 goto err_out_files;
182 }
183
e8b962b6 184 return 0;
24f73c92
JG
185
186err_out_files:
187 if (i > 0)
188 for (j = 0; j < i; j++)
2c14f28b
DA
189 device_remove_file(&minor->kdev, &device_attrs[i]);
190 device_unregister(&minor->kdev);
24f73c92 191err_out:
e8b962b6
JB
192
193 return err;
1da177e4
LT
194}
195
196/**
e8b962b6
JB
197 * drm_sysfs_device_remove - remove DRM device
198 * @dev: DRM device to remove
1da177e4
LT
199 *
200 * This call unregisters and cleans up a class device that was created with a
201 * call to drm_sysfs_device_add()
202 */
2c14f28b 203void drm_sysfs_device_remove(struct drm_minor *minor)
1da177e4 204{
732052ed
DA
205 int i;
206
e8b962b6 207 for (i = 0; i < ARRAY_SIZE(device_attrs); i++)
2c14f28b
DA
208 device_remove_file(&minor->kdev, &device_attrs[i]);
209 device_unregister(&minor->kdev);
1da177e4 210}
This page took 0.328446 seconds and 5 git commands to generate.