blob: 2290b3b7383247a6dde176d71ee1e6fe18d7b4c7 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/err.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040019#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
David Howells760285e2012-10-02 18:01:07 +010021#include <drm/drm_sysfs.h>
22#include <drm/drm_core.h>
23#include <drm/drmP.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Dave Airlie2c14f282008-04-21 16:47:32 +100025#define to_drm_minor(d) container_of(d, struct drm_minor, kdev)
Dave Airlief453ba02008-11-07 14:05:41 -080026#define to_drm_connector(d) container_of(d, struct drm_connector, kdev)
Jesse Barnese8b962b2007-11-22 14:02:38 +100027
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100028static struct device_type drm_sysfs_device_minor = {
29 .name = "drm_minor"
30};
31
Jesse Barnese8b962b2007-11-22 14:02:38 +100032/**
Shuah Khancf4b91f2013-07-01 16:06:02 -060033 * __drm_class_suspend - internal DRM class suspend routine
Jesse Barnese8b962b2007-11-22 14:02:38 +100034 * @dev: Linux device to suspend
35 * @state: power state to enter
36 *
37 * Just figures out what the actual struct drm_device associated with
38 * @dev is and calls its suspend hook, if present.
39 */
Shuah Khancf4b91f2013-07-01 16:06:02 -060040static int __drm_class_suspend(struct device *dev, pm_message_t state)
Jesse Barnese8b962b2007-11-22 14:02:38 +100041{
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100042 if (dev->type == &drm_sysfs_device_minor) {
43 struct drm_minor *drm_minor = to_drm_minor(dev);
44 struct drm_device *drm_dev = drm_minor->dev;
Jesse Barnese8b962b2007-11-22 14:02:38 +100045
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100046 if (drm_minor->type == DRM_MINOR_LEGACY &&
47 !drm_core_check_feature(drm_dev, DRIVER_MODESET) &&
48 drm_dev->driver->suspend)
49 return drm_dev->driver->suspend(drm_dev, state);
50 }
Jesse Barnese8b962b2007-11-22 14:02:38 +100051 return 0;
52}
53
54/**
Shuah Khancf4b91f2013-07-01 16:06:02 -060055 * drm_class_suspend - internal DRM class suspend hook. Simply calls
56 * __drm_class_suspend() with the correct pm state.
57 * @dev: Linux device to suspend
58 */
59static int drm_class_suspend(struct device *dev)
60{
61 return __drm_class_suspend(dev, PMSG_SUSPEND);
62}
63
64/**
65 * drm_class_freeze - internal DRM class freeze hook. Simply calls
66 * __drm_class_suspend() with the correct pm state.
67 * @dev: Linux device to freeze
68 */
69static int drm_class_freeze(struct device *dev)
70{
71 return __drm_class_suspend(dev, PMSG_FREEZE);
72}
73
74/**
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100075 * drm_class_resume - DRM class resume hook
Jesse Barnese8b962b2007-11-22 14:02:38 +100076 * @dev: Linux device to resume
77 *
78 * Just figures out what the actual struct drm_device associated with
79 * @dev is and calls its resume hook, if present.
80 */
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100081static int drm_class_resume(struct device *dev)
Jesse Barnese8b962b2007-11-22 14:02:38 +100082{
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100083 if (dev->type == &drm_sysfs_device_minor) {
84 struct drm_minor *drm_minor = to_drm_minor(dev);
85 struct drm_device *drm_dev = drm_minor->dev;
Jesse Barnese8b962b2007-11-22 14:02:38 +100086
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100087 if (drm_minor->type == DRM_MINOR_LEGACY &&
88 !drm_core_check_feature(drm_dev, DRIVER_MODESET) &&
89 drm_dev->driver->resume)
90 return drm_dev->driver->resume(drm_dev);
91 }
Jesse Barnese8b962b2007-11-22 14:02:38 +100092 return 0;
93}
94
Shuah Khancf4b91f2013-07-01 16:06:02 -060095static const struct dev_pm_ops drm_class_dev_pm_ops = {
96 .suspend = drm_class_suspend,
97 .resume = drm_class_resume,
98 .freeze = drm_class_freeze,
99};
100
Al Viro2c9ede52011-07-23 20:24:48 -0400101static char *drm_devnode(struct device *dev, umode_t *mode)
Kay Sievers02200d02009-04-30 15:23:42 +0200102{
103 return kasprintf(GFP_KERNEL, "dri/%s", dev_name(dev));
104}
105
Andi Kleen0933e2d2010-01-05 12:48:09 +0100106static CLASS_ATTR_STRING(version, S_IRUGO,
107 CORE_NAME " "
108 __stringify(CORE_MAJOR) "."
109 __stringify(CORE_MINOR) "."
110 __stringify(CORE_PATCHLEVEL) " "
111 CORE_DATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113/**
114 * drm_sysfs_create - create a struct drm_sysfs_class structure
115 * @owner: pointer to the module that is to "own" this struct drm_sysfs_class
116 * @name: pointer to a string for the name of this class.
117 *
Jesse Barnese8b962b2007-11-22 14:02:38 +1000118 * This is used to create DRM class pointer that can then be used
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * in calls to drm_sysfs_device_add().
120 *
121 * Note, the pointer created here is to be destroyed when finished by making a
122 * call to drm_sysfs_destroy().
123 */
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -0800124struct class *drm_sysfs_create(struct module *owner, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -0800126 struct class *class;
Jeff Garzik24f73c92006-10-10 14:23:37 -0700127 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -0800129 class = class_create(owner, name);
Akinobu Mita94f060b2006-12-09 10:49:47 +1100130 if (IS_ERR(class)) {
131 err = PTR_ERR(class);
Jeff Garzik24f73c92006-10-10 14:23:37 -0700132 goto err_out;
133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Shuah Khancf4b91f2013-07-01 16:06:02 -0600135 class->pm = &drm_class_dev_pm_ops;
Jesse Barnese8b962b2007-11-22 14:02:38 +1000136
Andi Kleen0933e2d2010-01-05 12:48:09 +0100137 err = class_create_file(class, &class_attr_version.attr);
Jeff Garzik24f73c92006-10-10 14:23:37 -0700138 if (err)
139 goto err_out_class;
140
Kay Sieverse454cea2009-09-18 23:01:12 +0200141 class->devnode = drm_devnode;
Kay Sievers02200d02009-04-30 15:23:42 +0200142
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -0800143 return class;
Jeff Garzik24f73c92006-10-10 14:23:37 -0700144
145err_out_class:
146 class_destroy(class);
147err_out:
148 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151/**
Jesse Barnese8b962b2007-11-22 14:02:38 +1000152 * drm_sysfs_destroy - destroys DRM class
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 *
Jesse Barnese8b962b2007-11-22 14:02:38 +1000154 * Destroy the DRM device class.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
Jesse Barnese8b962b2007-11-22 14:02:38 +1000156void drm_sysfs_destroy(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Jesse Barnese8b962b2007-11-22 14:02:38 +1000158 if ((drm_class == NULL) || (IS_ERR(drm_class)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return;
Andi Kleen0933e2d2010-01-05 12:48:09 +0100160 class_remove_file(drm_class, &class_attr_version.attr);
Jesse Barnese8b962b2007-11-22 14:02:38 +1000161 class_destroy(drm_class);
Dave Airlie49099c42012-07-06 18:06:42 +0100162 drm_class = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
165/**
Jesse Barnese8b962b2007-11-22 14:02:38 +1000166 * drm_sysfs_device_release - do nothing
167 * @dev: Linux device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 *
Jesse Barnese8b962b2007-11-22 14:02:38 +1000169 * Normally, this would free the DRM device associated with @dev, along
170 * with cleaning up any other stuff. But we do that in the DRM core, so
171 * this function can just return and hope that the core does its job.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
Jesse Barnese8b962b2007-11-22 14:02:38 +1000173static void drm_sysfs_device_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Ma Ling77d26dc2009-04-16 17:51:25 +0800175 memset(dev, 0, sizeof(struct device));
Jesse Barnese8b962b2007-11-22 14:02:38 +1000176 return;
177}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Dave Airlief453ba02008-11-07 14:05:41 -0800179/*
180 * Connector properties
181 */
182static ssize_t status_show(struct device *device,
183 struct device_attribute *attr,
184 char *buf)
185{
186 struct drm_connector *connector = to_drm_connector(device);
187 enum drm_connector_status status;
Chris Wilson007c80a2011-03-15 11:40:00 +0000188 int ret;
189
190 ret = mutex_lock_interruptible(&connector->dev->mode_config.mutex);
191 if (ret)
192 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800193
Chris Wilson7b334fc2010-09-09 23:51:02 +0100194 status = connector->funcs->detect(connector, true);
Chris Wilson007c80a2011-03-15 11:40:00 +0000195 mutex_unlock(&connector->dev->mode_config.mutex);
196
Keith Packard75185c92009-05-30 20:42:25 -0700197 return snprintf(buf, PAGE_SIZE, "%s\n",
Dave Airlief453ba02008-11-07 14:05:41 -0800198 drm_get_connector_status_name(status));
199}
200
201static ssize_t dpms_show(struct device *device,
202 struct device_attribute *attr,
203 char *buf)
204{
205 struct drm_connector *connector = to_drm_connector(device);
206 struct drm_device *dev = connector->dev;
207 uint64_t dpms_status;
208 int ret;
209
Rob Clark58495562012-10-11 20:50:56 -0500210 ret = drm_object_property_get_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -0800211 dev->mode_config.dpms_property,
212 &dpms_status);
213 if (ret)
214 return 0;
215
Keith Packard75185c92009-05-30 20:42:25 -0700216 return snprintf(buf, PAGE_SIZE, "%s\n",
Dave Airlief453ba02008-11-07 14:05:41 -0800217 drm_get_dpms_name((int)dpms_status));
218}
219
220static ssize_t enabled_show(struct device *device,
221 struct device_attribute *attr,
222 char *buf)
223{
224 struct drm_connector *connector = to_drm_connector(device);
225
Keith Packard75185c92009-05-30 20:42:25 -0700226 return snprintf(buf, PAGE_SIZE, "%s\n", connector->encoder ? "enabled" :
Dave Airlief453ba02008-11-07 14:05:41 -0800227 "disabled");
228}
229
Chris Wright2c3c8be2010-05-12 18:28:57 -0700230static ssize_t edid_show(struct file *filp, struct kobject *kobj,
231 struct bin_attribute *attr, char *buf, loff_t off,
232 size_t count)
Dave Airlief453ba02008-11-07 14:05:41 -0800233{
234 struct device *connector_dev = container_of(kobj, struct device, kobj);
235 struct drm_connector *connector = to_drm_connector(connector_dev);
236 unsigned char *edid;
237 size_t size;
238
239 if (!connector->edid_blob_ptr)
240 return 0;
241
242 edid = connector->edid_blob_ptr->data;
243 size = connector->edid_blob_ptr->length;
244 if (!edid)
245 return 0;
246
247 if (off >= size)
248 return 0;
249
250 if (off + count > size)
251 count = size - off;
252 memcpy(buf, edid + off, count);
253
254 return count;
255}
256
257static ssize_t modes_show(struct device *device,
258 struct device_attribute *attr,
259 char *buf)
260{
261 struct drm_connector *connector = to_drm_connector(device);
262 struct drm_display_mode *mode;
263 int written = 0;
264
265 list_for_each_entry(mode, &connector->modes, head) {
266 written += snprintf(buf + written, PAGE_SIZE - written, "%s\n",
267 mode->name);
268 }
269
270 return written;
271}
272
273static ssize_t subconnector_show(struct device *device,
274 struct device_attribute *attr,
275 char *buf)
276{
277 struct drm_connector *connector = to_drm_connector(device);
278 struct drm_device *dev = connector->dev;
279 struct drm_property *prop = NULL;
280 uint64_t subconnector;
281 int is_tv = 0;
282 int ret;
283
284 switch (connector->connector_type) {
285 case DRM_MODE_CONNECTOR_DVII:
286 prop = dev->mode_config.dvi_i_subconnector_property;
287 break;
288 case DRM_MODE_CONNECTOR_Composite:
289 case DRM_MODE_CONNECTOR_SVIDEO:
290 case DRM_MODE_CONNECTOR_Component:
Francisco Jerez74bd3c22009-08-02 04:19:18 +0200291 case DRM_MODE_CONNECTOR_TV:
Dave Airlief453ba02008-11-07 14:05:41 -0800292 prop = dev->mode_config.tv_subconnector_property;
293 is_tv = 1;
294 break;
295 default:
296 DRM_ERROR("Wrong connector type for this property\n");
297 return 0;
298 }
299
300 if (!prop) {
301 DRM_ERROR("Unable to find subconnector property\n");
302 return 0;
303 }
304
Rob Clark58495562012-10-11 20:50:56 -0500305 ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
Dave Airlief453ba02008-11-07 14:05:41 -0800306 if (ret)
307 return 0;
308
309 return snprintf(buf, PAGE_SIZE, "%s", is_tv ?
310 drm_get_tv_subconnector_name((int)subconnector) :
311 drm_get_dvi_i_subconnector_name((int)subconnector));
312}
313
314static ssize_t select_subconnector_show(struct device *device,
315 struct device_attribute *attr,
316 char *buf)
317{
318 struct drm_connector *connector = to_drm_connector(device);
319 struct drm_device *dev = connector->dev;
320 struct drm_property *prop = NULL;
321 uint64_t subconnector;
322 int is_tv = 0;
323 int ret;
324
325 switch (connector->connector_type) {
326 case DRM_MODE_CONNECTOR_DVII:
327 prop = dev->mode_config.dvi_i_select_subconnector_property;
328 break;
329 case DRM_MODE_CONNECTOR_Composite:
330 case DRM_MODE_CONNECTOR_SVIDEO:
331 case DRM_MODE_CONNECTOR_Component:
Francisco Jerez74bd3c22009-08-02 04:19:18 +0200332 case DRM_MODE_CONNECTOR_TV:
Dave Airlief453ba02008-11-07 14:05:41 -0800333 prop = dev->mode_config.tv_select_subconnector_property;
334 is_tv = 1;
335 break;
336 default:
337 DRM_ERROR("Wrong connector type for this property\n");
338 return 0;
339 }
340
341 if (!prop) {
342 DRM_ERROR("Unable to find select subconnector property\n");
343 return 0;
344 }
345
Rob Clark58495562012-10-11 20:50:56 -0500346 ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
Dave Airlief453ba02008-11-07 14:05:41 -0800347 if (ret)
348 return 0;
349
350 return snprintf(buf, PAGE_SIZE, "%s", is_tv ?
351 drm_get_tv_select_name((int)subconnector) :
352 drm_get_dvi_i_select_name((int)subconnector));
353}
354
355static struct device_attribute connector_attrs[] = {
356 __ATTR_RO(status),
357 __ATTR_RO(enabled),
358 __ATTR_RO(dpms),
359 __ATTR_RO(modes),
360};
361
362/* These attributes are for both DVI-I connectors and all types of tv-out. */
363static struct device_attribute connector_attrs_opt1[] = {
364 __ATTR_RO(subconnector),
365 __ATTR_RO(select_subconnector),
366};
367
368static struct bin_attribute edid_attr = {
369 .attr.name = "edid",
Keith Packarde36ebaf2009-05-30 20:42:26 -0700370 .attr.mode = 0444,
Adam Jackson7466f4c2010-03-29 21:43:23 +0000371 .size = 0,
Dave Airlief453ba02008-11-07 14:05:41 -0800372 .read = edid_show,
373};
374
375/**
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200376 * drm_sysfs_connector_add - add a connector to sysfs
Dave Airlief453ba02008-11-07 14:05:41 -0800377 * @connector: connector to add
378 *
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200379 * Create a connector device in sysfs, along with its associated connector
Dave Airlief453ba02008-11-07 14:05:41 -0800380 * properties (so far, connection status, dpms, mode list & edid) and
381 * generate a hotplug event so userspace knows there's a new connector
382 * available.
383 *
384 * Note:
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200385 * This routine should only be called *once* for each registered connector.
386 * A second call for an already registered connector will trigger the BUG_ON
Dave Airlief453ba02008-11-07 14:05:41 -0800387 * below.
388 */
389int drm_sysfs_connector_add(struct drm_connector *connector)
390{
391 struct drm_device *dev = connector->dev;
Dan Carpentera1c45602010-04-27 14:11:05 -0700392 int attr_cnt = 0;
393 int opt_cnt = 0;
394 int i;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200395 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800396
397 /* We shouldn't get called more than once for the same connector */
398 BUG_ON(device_is_registered(&connector->kdev));
399
400 connector->kdev.parent = &dev->primary->kdev;
401 connector->kdev.class = drm_class;
402 connector->kdev.release = drm_sysfs_device_release;
403
404 DRM_DEBUG("adding \"%s\" to sysfs\n",
405 drm_get_connector_name(connector));
406
Kay Sievers2ead0542009-03-24 16:38:22 -0700407 dev_set_name(&connector->kdev, "card%d-%s",
408 dev->primary->index, drm_get_connector_name(connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800409 ret = device_register(&connector->kdev);
410
411 if (ret) {
412 DRM_ERROR("failed to register connector device: %d\n", ret);
413 goto out;
414 }
415
416 /* Standard attributes */
417
Dan Carpentera1c45602010-04-27 14:11:05 -0700418 for (attr_cnt = 0; attr_cnt < ARRAY_SIZE(connector_attrs); attr_cnt++) {
419 ret = device_create_file(&connector->kdev, &connector_attrs[attr_cnt]);
Dave Airlief453ba02008-11-07 14:05:41 -0800420 if (ret)
421 goto err_out_files;
422 }
423
424 /* Optional attributes */
425 /*
426 * In the long run it maybe a good idea to make one set of
427 * optionals per connector type.
428 */
429 switch (connector->connector_type) {
430 case DRM_MODE_CONNECTOR_DVII:
431 case DRM_MODE_CONNECTOR_Composite:
432 case DRM_MODE_CONNECTOR_SVIDEO:
433 case DRM_MODE_CONNECTOR_Component:
Francisco Jerez74bd3c22009-08-02 04:19:18 +0200434 case DRM_MODE_CONNECTOR_TV:
Dan Carpentera1c45602010-04-27 14:11:05 -0700435 for (opt_cnt = 0; opt_cnt < ARRAY_SIZE(connector_attrs_opt1); opt_cnt++) {
436 ret = device_create_file(&connector->kdev, &connector_attrs_opt1[opt_cnt]);
Dave Airlief453ba02008-11-07 14:05:41 -0800437 if (ret)
438 goto err_out_files;
439 }
440 break;
441 default:
442 break;
443 }
444
445 ret = sysfs_create_bin_file(&connector->kdev.kobj, &edid_attr);
446 if (ret)
447 goto err_out_files;
448
449 /* Let userspace know we have a new connector */
450 drm_sysfs_hotplug_event(dev);
451
452 return 0;
453
454err_out_files:
Dan Carpentera1c45602010-04-27 14:11:05 -0700455 for (i = 0; i < opt_cnt; i++)
456 device_remove_file(&connector->kdev, &connector_attrs_opt1[i]);
457 for (i = 0; i < attr_cnt; i++)
458 device_remove_file(&connector->kdev, &connector_attrs[i]);
Dave Airlief453ba02008-11-07 14:05:41 -0800459 device_unregister(&connector->kdev);
460
461out:
462 return ret;
463}
464EXPORT_SYMBOL(drm_sysfs_connector_add);
465
466/**
467 * drm_sysfs_connector_remove - remove an connector device from sysfs
468 * @connector: connector to remove
469 *
470 * Remove @connector and its associated attributes from sysfs. Note that
471 * the device model core will take care of sending the "remove" uevent
472 * at this time, so we don't need to do it.
473 *
474 * Note:
475 * This routine should only be called if the connector was previously
476 * successfully registered. If @connector hasn't been registered yet,
477 * you'll likely see a panic somewhere deep in sysfs code when called.
478 */
479void drm_sysfs_connector_remove(struct drm_connector *connector)
480{
481 int i;
482
Dave Airlie1828fe62012-02-20 14:15:02 +0000483 if (!connector->kdev.parent)
484 return;
Dave Airlief453ba02008-11-07 14:05:41 -0800485 DRM_DEBUG("removing \"%s\" from sysfs\n",
486 drm_get_connector_name(connector));
487
488 for (i = 0; i < ARRAY_SIZE(connector_attrs); i++)
489 device_remove_file(&connector->kdev, &connector_attrs[i]);
490 sysfs_remove_bin_file(&connector->kdev.kobj, &edid_attr);
491 device_unregister(&connector->kdev);
Dave Airlie1828fe62012-02-20 14:15:02 +0000492 connector->kdev.parent = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800493}
494EXPORT_SYMBOL(drm_sysfs_connector_remove);
495
496/**
497 * drm_sysfs_hotplug_event - generate a DRM uevent
498 * @dev: DRM device
499 *
500 * Send a uevent for the DRM device specified by @dev. Currently we only
501 * set HOTPLUG=1 in the uevent environment, but this could be expanded to
502 * deal with other types of events.
503 */
504void drm_sysfs_hotplug_event(struct drm_device *dev)
505{
506 char *event_string = "HOTPLUG=1";
507 char *envp[] = { event_string, NULL };
508
509 DRM_DEBUG("generating hotplug event\n");
510
511 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, envp);
512}
Jesse Barnes5ca58282009-03-31 14:11:15 -0700513EXPORT_SYMBOL(drm_sysfs_hotplug_event);
Dave Airlief453ba02008-11-07 14:05:41 -0800514
Jesse Barnese8b962b2007-11-22 14:02:38 +1000515/**
516 * drm_sysfs_device_add - adds a class device to sysfs for a character driver
517 * @dev: DRM device to be added
518 * @head: DRM head in question
519 *
520 * Add a DRM device to the DRM's device model class. We use @dev's PCI device
521 * as the parent for the Linux device, and make sure it has a file containing
522 * the driver we're using (for userspace compatibility).
523 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000524int drm_sysfs_device_add(struct drm_minor *minor)
Jesse Barnese8b962b2007-11-22 14:02:38 +1000525{
526 int err;
Dave Airlie2c14f282008-04-21 16:47:32 +1000527 char *minor_str;
Jesse Barnese8b962b2007-11-22 14:02:38 +1000528
Jordan Crousedcdb1672010-05-27 13:40:25 -0600529 minor->kdev.parent = minor->dev->dev;
530
Dave Airlie2c14f282008-04-21 16:47:32 +1000531 minor->kdev.class = drm_class;
532 minor->kdev.release = drm_sysfs_device_release;
533 minor->kdev.devt = minor->device;
Thomas Hellstrom08e4d532009-08-20 19:02:31 +1000534 minor->kdev.type = &drm_sysfs_device_minor;
Dave Airlief453ba02008-11-07 14:05:41 -0800535 if (minor->type == DRM_MINOR_CONTROL)
536 minor_str = "controlD%d";
537 else if (minor->type == DRM_MINOR_RENDER)
538 minor_str = "renderD%d";
539 else
540 minor_str = "card%d";
Jesse Barnese8b962b2007-11-22 14:02:38 +1000541
Kay Sievers8f4bbd92009-01-06 10:44:41 -0800542 dev_set_name(&minor->kdev, minor_str, minor->index);
Dave Airlie2c14f282008-04-21 16:47:32 +1000543
544 err = device_register(&minor->kdev);
Jesse Barnese8b962b2007-11-22 14:02:38 +1000545 if (err) {
546 DRM_ERROR("device add failed: %d\n", err);
Jeff Garzik24f73c92006-10-10 14:23:37 -0700547 goto err_out;
548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Jesse Barnese8b962b2007-11-22 14:02:38 +1000550 return 0;
Jeff Garzik24f73c92006-10-10 14:23:37 -0700551
Jeff Garzik24f73c92006-10-10 14:23:37 -0700552err_out:
Jesse Barnese8b962b2007-11-22 14:02:38 +1000553 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
556/**
Jesse Barnese8b962b2007-11-22 14:02:38 +1000557 * drm_sysfs_device_remove - remove DRM device
558 * @dev: DRM device to remove
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 *
560 * This call unregisters and cleans up a class device that was created with a
561 * call to drm_sysfs_device_add()
562 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000563void drm_sysfs_device_remove(struct drm_minor *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Dave Airlie1828fe62012-02-20 14:15:02 +0000565 if (minor->kdev.parent)
566 device_unregister(&minor->kdev);
567 minor->kdev.parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
Thomas Hellstrom327c2252009-08-17 16:28:37 +0200569
570
571/**
572 * drm_class_device_register - Register a struct device in the drm class.
573 *
574 * @dev: pointer to struct device to register.
575 *
576 * @dev should have all relevant members pre-filled with the exception
577 * of the class member. In particular, the device_type member must
578 * be set.
579 */
580
581int drm_class_device_register(struct device *dev)
582{
Dave Airlie49099c42012-07-06 18:06:42 +0100583 if (!drm_class || IS_ERR(drm_class))
584 return -ENOENT;
585
Thomas Hellstrom327c2252009-08-17 16:28:37 +0200586 dev->class = drm_class;
587 return device_register(dev);
588}
589EXPORT_SYMBOL_GPL(drm_class_device_register);
590
591void drm_class_device_unregister(struct device *dev)
592{
593 return device_unregister(dev);
594}
595EXPORT_SYMBOL_GPL(drm_class_device_unregister);