blob: 7a1d9a782ddb3469a3e5105a6dc0841bd468b2a3 [file] [log] [blame]
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -08001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/device.h>
16#include <linux/kdev_t.h>
17#include <linux/err.h>
18
19#include "drm_core.h"
Dave Airlief2109732005-09-05 21:33:44 +100020#include "drmP.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Dave Airlie2c14f282008-04-21 16:47:32 +100022#define to_drm_minor(d) container_of(d, struct drm_minor, kdev)
Jesse Barnese8b962b2007-11-22 14:02:38 +100023
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{
Dave Airlie2c14f282008-04-21 16:47:32 +100034 struct drm_minor *drm_minor = to_drm_minor(dev);
35 struct drm_device *drm_dev = drm_minor->dev;
Jesse Barnese8b962b2007-11-22 14:02:38 +100036
37 printk(KERN_ERR "%s\n", __FUNCTION__);
38
39 if (drm_dev->driver->suspend)
Dave Airlieb932ccb2008-02-20 10:02:20 +100040 return drm_dev->driver->suspend(drm_dev, state);
Jesse Barnese8b962b2007-11-22 14:02:38 +100041
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{
Dave Airlie2c14f282008-04-21 16:47:32 +100054 struct drm_minor *drm_minor = to_drm_minor(dev);
55 struct drm_device *drm_dev = drm_minor->dev;
Jesse Barnese8b962b2007-11-22 14:02:38 +100056
57 if (drm_dev->driver->resume)
58 return drm_dev->driver->resume(drm_dev);
59
60 return 0;
61}
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/* 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 *
Jesse Barnese8b962b2007-11-22 14:02:38 +100077 * This is used to create DRM class pointer that can then be used
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * 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 */
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -080083struct class *drm_sysfs_create(struct module *owner, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -080085 struct class *class;
Jeff Garzik24f73c92006-10-10 14:23:37 -070086 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -080088 class = class_create(owner, name);
Akinobu Mita94f060b2006-12-09 10:49:47 +110089 if (IS_ERR(class)) {
90 err = PTR_ERR(class);
Jeff Garzik24f73c92006-10-10 14:23:37 -070091 goto err_out;
92 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Jesse Barnese8b962b2007-11-22 14:02:38 +100094 class->suspend = drm_sysfs_suspend;
95 class->resume = drm_sysfs_resume;
96
Jeff Garzik24f73c92006-10-10 14:23:37 -070097 err = class_create_file(class, &class_attr_version);
98 if (err)
99 goto err_out_class;
100
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -0800101 return class;
Jeff Garzik24f73c92006-10-10 14:23:37 -0700102
103err_out_class:
104 class_destroy(class);
105err_out:
106 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
109/**
Jesse Barnese8b962b2007-11-22 14:02:38 +1000110 * drm_sysfs_destroy - destroys DRM class
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
Jesse Barnese8b962b2007-11-22 14:02:38 +1000112 * Destroy the DRM device class.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
Jesse Barnese8b962b2007-11-22 14:02:38 +1000114void drm_sysfs_destroy(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Jesse Barnese8b962b2007-11-22 14:02:38 +1000116 if ((drm_class == NULL) || (IS_ERR(drm_class)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return;
Jesse Barnese8b962b2007-11-22 14:02:38 +1000118 class_remove_file(drm_class, &class_attr_version);
119 class_destroy(drm_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Jesse Barnese8b962b2007-11-22 14:02:38 +1000122static ssize_t show_dri(struct device *device, struct device_attribute *attr,
123 char *buf)
Dave Airlie732052e2005-11-11 22:07:35 +1100124{
Dave Airlie2c14f282008-04-21 16:47:32 +1000125 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);
Dave Airlie732052e2005-11-11 22:07:35 +1100130}
131
Jesse Barnese8b962b2007-11-22 14:02:38 +1000132static struct device_attribute device_attrs[] = {
Dave Airlie732052e2005-11-11 22:07:35 +1100133 __ATTR(dri_library_name, S_IRUGO, show_dri, NULL),
134};
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/**
Jesse Barnese8b962b2007-11-22 14:02:38 +1000137 * drm_sysfs_device_release - do nothing
138 * @dev: Linux device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 *
Jesse Barnese8b962b2007-11-22 14:02:38 +1000140 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 */
Jesse Barnese8b962b2007-11-22 14:02:38 +1000144static void drm_sysfs_device_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Jesse Barnese8b962b2007-11-22 14:02:38 +1000146 return;
147}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Jesse Barnese8b962b2007-11-22 14:02:38 +1000149/**
150 * drm_sysfs_device_add - adds a class device to sysfs for a character driver
151 * @dev: DRM device to be added
152 * @head: DRM head in question
153 *
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).
157 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000158int drm_sysfs_device_add(struct drm_minor *minor)
Jesse Barnese8b962b2007-11-22 14:02:38 +1000159{
160 int err;
161 int i, j;
Dave Airlie2c14f282008-04-21 16:47:32 +1000162 char *minor_str;
Jesse Barnese8b962b2007-11-22 14:02:38 +1000163
Dave Airlie2c14f282008-04-21 16:47:32 +1000164 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";
Jesse Barnese8b962b2007-11-22 14:02:38 +1000169
Dave Airlie2c14f282008-04-21 16:47:32 +1000170 snprintf(minor->kdev.bus_id, BUS_ID_SIZE, minor_str, minor->index);
171
172 err = device_register(&minor->kdev);
Jesse Barnese8b962b2007-11-22 14:02:38 +1000173 if (err) {
174 DRM_ERROR("device add failed: %d\n", err);
Jeff Garzik24f73c92006-10-10 14:23:37 -0700175 goto err_out;
176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Jesse Barnese8b962b2007-11-22 14:02:38 +1000178 for (i = 0; i < ARRAY_SIZE(device_attrs); i++) {
Dave Airlie2c14f282008-04-21 16:47:32 +1000179 err = device_create_file(&minor->kdev, &device_attrs[i]);
Jeff Garzik24f73c92006-10-10 14:23:37 -0700180 if (err)
181 goto err_out_files;
182 }
183
Jesse Barnese8b962b2007-11-22 14:02:38 +1000184 return 0;
Jeff Garzik24f73c92006-10-10 14:23:37 -0700185
186err_out_files:
187 if (i > 0)
188 for (j = 0; j < i; j++)
Dave Airlie2c14f282008-04-21 16:47:32 +1000189 device_remove_file(&minor->kdev, &device_attrs[i]);
190 device_unregister(&minor->kdev);
Jeff Garzik24f73c92006-10-10 14:23:37 -0700191err_out:
Jesse Barnese8b962b2007-11-22 14:02:38 +1000192
193 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196/**
Jesse Barnese8b962b2007-11-22 14:02:38 +1000197 * drm_sysfs_device_remove - remove DRM device
198 * @dev: DRM device to remove
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 *
200 * This call unregisters and cleans up a class device that was created with a
201 * call to drm_sysfs_device_add()
202 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000203void drm_sysfs_device_remove(struct drm_minor *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Dave Airlie732052e2005-11-11 22:07:35 +1100205 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Jesse Barnese8b962b2007-11-22 14:02:38 +1000207 for (i = 0; i < ARRAY_SIZE(device_attrs); i++)
Dave Airlie2c14f282008-04-21 16:47:32 +1000208 device_remove_file(&minor->kdev, &device_attrs[i]);
209 device_unregister(&minor->kdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}