blob: cc3d6d6d67e00a52d8924bfa5dba6a51dfda5f00 [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>
Daniel Vetter67d0ec42014-09-10 12:43:53 +020024#include "drm_internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Dave Airlie5bdebb12013-10-11 14:07:25 +100026#define to_drm_minor(d) dev_get_drvdata(d)
27#define to_drm_connector(d) dev_get_drvdata(d)
Jesse Barnese8b962b2007-11-22 14:02:38 +100028
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100029static struct device_type drm_sysfs_device_minor = {
30 .name = "drm_minor"
31};
32
Jesse Barnese8b962b2007-11-22 14:02:38 +100033/**
Shuah Khancf4b91f2013-07-01 16:06:02 -060034 * __drm_class_suspend - internal DRM class suspend routine
Jesse Barnese8b962b2007-11-22 14:02:38 +100035 * @dev: Linux device to suspend
36 * @state: power state to enter
37 *
38 * Just figures out what the actual struct drm_device associated with
39 * @dev is and calls its suspend hook, if present.
40 */
Shuah Khancf4b91f2013-07-01 16:06:02 -060041static int __drm_class_suspend(struct device *dev, pm_message_t state)
Jesse Barnese8b962b2007-11-22 14:02:38 +100042{
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100043 if (dev->type == &drm_sysfs_device_minor) {
44 struct drm_minor *drm_minor = to_drm_minor(dev);
45 struct drm_device *drm_dev = drm_minor->dev;
Jesse Barnese8b962b2007-11-22 14:02:38 +100046
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100047 if (drm_minor->type == DRM_MINOR_LEGACY &&
48 !drm_core_check_feature(drm_dev, DRIVER_MODESET) &&
49 drm_dev->driver->suspend)
50 return drm_dev->driver->suspend(drm_dev, state);
51 }
Jesse Barnese8b962b2007-11-22 14:02:38 +100052 return 0;
53}
54
55/**
Shuah Khancf4b91f2013-07-01 16:06:02 -060056 * drm_class_suspend - internal DRM class suspend hook. Simply calls
57 * __drm_class_suspend() with the correct pm state.
58 * @dev: Linux device to suspend
59 */
60static int drm_class_suspend(struct device *dev)
61{
62 return __drm_class_suspend(dev, PMSG_SUSPEND);
63}
64
65/**
66 * drm_class_freeze - internal DRM class freeze hook. Simply calls
67 * __drm_class_suspend() with the correct pm state.
68 * @dev: Linux device to freeze
69 */
70static int drm_class_freeze(struct device *dev)
71{
72 return __drm_class_suspend(dev, PMSG_FREEZE);
73}
74
75/**
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100076 * drm_class_resume - DRM class resume hook
Jesse Barnese8b962b2007-11-22 14:02:38 +100077 * @dev: Linux device to resume
78 *
79 * Just figures out what the actual struct drm_device associated with
80 * @dev is and calls its resume hook, if present.
81 */
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100082static int drm_class_resume(struct device *dev)
Jesse Barnese8b962b2007-11-22 14:02:38 +100083{
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100084 if (dev->type == &drm_sysfs_device_minor) {
85 struct drm_minor *drm_minor = to_drm_minor(dev);
86 struct drm_device *drm_dev = drm_minor->dev;
Jesse Barnese8b962b2007-11-22 14:02:38 +100087
Thomas Hellstrom08e4d532009-08-20 19:02:31 +100088 if (drm_minor->type == DRM_MINOR_LEGACY &&
89 !drm_core_check_feature(drm_dev, DRIVER_MODESET) &&
90 drm_dev->driver->resume)
91 return drm_dev->driver->resume(drm_dev);
92 }
Jesse Barnese8b962b2007-11-22 14:02:38 +100093 return 0;
94}
95
Shuah Khancf4b91f2013-07-01 16:06:02 -060096static const struct dev_pm_ops drm_class_dev_pm_ops = {
97 .suspend = drm_class_suspend,
98 .resume = drm_class_resume,
99 .freeze = drm_class_freeze,
100};
101
Al Viro2c9ede52011-07-23 20:24:48 -0400102static char *drm_devnode(struct device *dev, umode_t *mode)
Kay Sievers02200d02009-04-30 15:23:42 +0200103{
104 return kasprintf(GFP_KERNEL, "dri/%s", dev_name(dev));
105}
106
Andi Kleen0933e2d2010-01-05 12:48:09 +0100107static CLASS_ATTR_STRING(version, S_IRUGO,
108 CORE_NAME " "
109 __stringify(CORE_MAJOR) "."
110 __stringify(CORE_MINOR) "."
111 __stringify(CORE_PATCHLEVEL) " "
112 CORE_DATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114/**
115 * drm_sysfs_create - create a struct drm_sysfs_class structure
116 * @owner: pointer to the module that is to "own" this struct drm_sysfs_class
117 * @name: pointer to a string for the name of this class.
118 *
Jesse Barnese8b962b2007-11-22 14:02:38 +1000119 * This is used to create DRM class pointer that can then be used
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 * in calls to drm_sysfs_device_add().
121 *
122 * Note, the pointer created here is to be destroyed when finished by making a
123 * call to drm_sysfs_destroy().
124 */
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -0800125struct class *drm_sysfs_create(struct module *owner, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -0800127 struct class *class;
Jeff Garzik24f73c92006-10-10 14:23:37 -0700128 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -0800130 class = class_create(owner, name);
Akinobu Mita94f060b2006-12-09 10:49:47 +1100131 if (IS_ERR(class)) {
132 err = PTR_ERR(class);
Jeff Garzik24f73c92006-10-10 14:23:37 -0700133 goto err_out;
134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Shuah Khancf4b91f2013-07-01 16:06:02 -0600136 class->pm = &drm_class_dev_pm_ops;
Jesse Barnese8b962b2007-11-22 14:02:38 +1000137
Andi Kleen0933e2d2010-01-05 12:48:09 +0100138 err = class_create_file(class, &class_attr_version.attr);
Jeff Garzik24f73c92006-10-10 14:23:37 -0700139 if (err)
140 goto err_out_class;
141
Kay Sieverse454cea2009-09-18 23:01:12 +0200142 class->devnode = drm_devnode;
Kay Sievers02200d02009-04-30 15:23:42 +0200143
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -0800144 return class;
Jeff Garzik24f73c92006-10-10 14:23:37 -0700145
146err_out_class:
147 class_destroy(class);
148err_out:
149 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
152/**
Jesse Barnese8b962b2007-11-22 14:02:38 +1000153 * drm_sysfs_destroy - destroys DRM class
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 *
Jesse Barnese8b962b2007-11-22 14:02:38 +1000155 * Destroy the DRM device class.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 */
Jesse Barnese8b962b2007-11-22 14:02:38 +1000157void drm_sysfs_destroy(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Jesse Barnese8b962b2007-11-22 14:02:38 +1000159 if ((drm_class == NULL) || (IS_ERR(drm_class)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return;
Andi Kleen0933e2d2010-01-05 12:48:09 +0100161 class_remove_file(drm_class, &class_attr_version.attr);
Jesse Barnese8b962b2007-11-22 14:02:38 +1000162 class_destroy(drm_class);
Dave Airlie49099c42012-07-06 18:06:42 +0100163 drm_class = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Dave Airlief453ba02008-11-07 14:05:41 -0800166/*
167 * Connector properties
168 */
169static ssize_t status_show(struct device *device,
170 struct device_attribute *attr,
171 char *buf)
172{
173 struct drm_connector *connector = to_drm_connector(device);
174 enum drm_connector_status status;
Chris Wilson007c80a2011-03-15 11:40:00 +0000175 int ret;
176
177 ret = mutex_lock_interruptible(&connector->dev->mode_config.mutex);
178 if (ret)
179 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800180
Chris Wilson7b334fc2010-09-09 23:51:02 +0100181 status = connector->funcs->detect(connector, true);
Chris Wilson007c80a2011-03-15 11:40:00 +0000182 mutex_unlock(&connector->dev->mode_config.mutex);
183
Keith Packard75185c92009-05-30 20:42:25 -0700184 return snprintf(buf, PAGE_SIZE, "%s\n",
Dave Airlief453ba02008-11-07 14:05:41 -0800185 drm_get_connector_status_name(status));
186}
187
188static ssize_t dpms_show(struct device *device,
189 struct device_attribute *attr,
190 char *buf)
191{
192 struct drm_connector *connector = to_drm_connector(device);
193 struct drm_device *dev = connector->dev;
194 uint64_t dpms_status;
195 int ret;
196
Rob Clark58495562012-10-11 20:50:56 -0500197 ret = drm_object_property_get_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -0800198 dev->mode_config.dpms_property,
199 &dpms_status);
200 if (ret)
201 return 0;
202
Keith Packard75185c92009-05-30 20:42:25 -0700203 return snprintf(buf, PAGE_SIZE, "%s\n",
Dave Airlief453ba02008-11-07 14:05:41 -0800204 drm_get_dpms_name((int)dpms_status));
205}
206
207static ssize_t enabled_show(struct device *device,
208 struct device_attribute *attr,
209 char *buf)
210{
211 struct drm_connector *connector = to_drm_connector(device);
212
Keith Packard75185c92009-05-30 20:42:25 -0700213 return snprintf(buf, PAGE_SIZE, "%s\n", connector->encoder ? "enabled" :
Dave Airlief453ba02008-11-07 14:05:41 -0800214 "disabled");
215}
216
Chris Wright2c3c8be2010-05-12 18:28:57 -0700217static ssize_t edid_show(struct file *filp, struct kobject *kobj,
218 struct bin_attribute *attr, char *buf, loff_t off,
219 size_t count)
Dave Airlief453ba02008-11-07 14:05:41 -0800220{
221 struct device *connector_dev = container_of(kobj, struct device, kobj);
222 struct drm_connector *connector = to_drm_connector(connector_dev);
223 unsigned char *edid;
224 size_t size;
225
226 if (!connector->edid_blob_ptr)
227 return 0;
228
229 edid = connector->edid_blob_ptr->data;
230 size = connector->edid_blob_ptr->length;
231 if (!edid)
232 return 0;
233
234 if (off >= size)
235 return 0;
236
237 if (off + count > size)
238 count = size - off;
239 memcpy(buf, edid + off, count);
240
241 return count;
242}
243
244static ssize_t modes_show(struct device *device,
245 struct device_attribute *attr,
246 char *buf)
247{
248 struct drm_connector *connector = to_drm_connector(device);
249 struct drm_display_mode *mode;
250 int written = 0;
251
252 list_for_each_entry(mode, &connector->modes, head) {
253 written += snprintf(buf + written, PAGE_SIZE - written, "%s\n",
254 mode->name);
255 }
256
257 return written;
258}
259
260static ssize_t subconnector_show(struct device *device,
261 struct device_attribute *attr,
262 char *buf)
263{
264 struct drm_connector *connector = to_drm_connector(device);
265 struct drm_device *dev = connector->dev;
266 struct drm_property *prop = NULL;
267 uint64_t subconnector;
268 int is_tv = 0;
269 int ret;
270
271 switch (connector->connector_type) {
272 case DRM_MODE_CONNECTOR_DVII:
273 prop = dev->mode_config.dvi_i_subconnector_property;
274 break;
275 case DRM_MODE_CONNECTOR_Composite:
276 case DRM_MODE_CONNECTOR_SVIDEO:
277 case DRM_MODE_CONNECTOR_Component:
Francisco Jerez74bd3c22009-08-02 04:19:18 +0200278 case DRM_MODE_CONNECTOR_TV:
Dave Airlief453ba02008-11-07 14:05:41 -0800279 prop = dev->mode_config.tv_subconnector_property;
280 is_tv = 1;
281 break;
282 default:
283 DRM_ERROR("Wrong connector type for this property\n");
284 return 0;
285 }
286
287 if (!prop) {
288 DRM_ERROR("Unable to find subconnector property\n");
289 return 0;
290 }
291
Rob Clark58495562012-10-11 20:50:56 -0500292 ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
Dave Airlief453ba02008-11-07 14:05:41 -0800293 if (ret)
294 return 0;
295
296 return snprintf(buf, PAGE_SIZE, "%s", is_tv ?
297 drm_get_tv_subconnector_name((int)subconnector) :
298 drm_get_dvi_i_subconnector_name((int)subconnector));
299}
300
301static ssize_t select_subconnector_show(struct device *device,
302 struct device_attribute *attr,
303 char *buf)
304{
305 struct drm_connector *connector = to_drm_connector(device);
306 struct drm_device *dev = connector->dev;
307 struct drm_property *prop = NULL;
308 uint64_t subconnector;
309 int is_tv = 0;
310 int ret;
311
312 switch (connector->connector_type) {
313 case DRM_MODE_CONNECTOR_DVII:
314 prop = dev->mode_config.dvi_i_select_subconnector_property;
315 break;
316 case DRM_MODE_CONNECTOR_Composite:
317 case DRM_MODE_CONNECTOR_SVIDEO:
318 case DRM_MODE_CONNECTOR_Component:
Francisco Jerez74bd3c22009-08-02 04:19:18 +0200319 case DRM_MODE_CONNECTOR_TV:
Dave Airlief453ba02008-11-07 14:05:41 -0800320 prop = dev->mode_config.tv_select_subconnector_property;
321 is_tv = 1;
322 break;
323 default:
324 DRM_ERROR("Wrong connector type for this property\n");
325 return 0;
326 }
327
328 if (!prop) {
329 DRM_ERROR("Unable to find select subconnector property\n");
330 return 0;
331 }
332
Rob Clark58495562012-10-11 20:50:56 -0500333 ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
Dave Airlief453ba02008-11-07 14:05:41 -0800334 if (ret)
335 return 0;
336
337 return snprintf(buf, PAGE_SIZE, "%s", is_tv ?
338 drm_get_tv_select_name((int)subconnector) :
339 drm_get_dvi_i_select_name((int)subconnector));
340}
341
342static struct device_attribute connector_attrs[] = {
343 __ATTR_RO(status),
344 __ATTR_RO(enabled),
345 __ATTR_RO(dpms),
346 __ATTR_RO(modes),
347};
348
349/* These attributes are for both DVI-I connectors and all types of tv-out. */
350static struct device_attribute connector_attrs_opt1[] = {
351 __ATTR_RO(subconnector),
352 __ATTR_RO(select_subconnector),
353};
354
355static struct bin_attribute edid_attr = {
356 .attr.name = "edid",
Keith Packarde36ebaf2009-05-30 20:42:26 -0700357 .attr.mode = 0444,
Adam Jackson7466f4c2010-03-29 21:43:23 +0000358 .size = 0,
Dave Airlief453ba02008-11-07 14:05:41 -0800359 .read = edid_show,
360};
361
362/**
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200363 * drm_sysfs_connector_add - add a connector to sysfs
Dave Airlief453ba02008-11-07 14:05:41 -0800364 * @connector: connector to add
365 *
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200366 * Create a connector device in sysfs, along with its associated connector
Dave Airlief453ba02008-11-07 14:05:41 -0800367 * properties (so far, connection status, dpms, mode list & edid) and
368 * generate a hotplug event so userspace knows there's a new connector
369 * available.
Dave Airlief453ba02008-11-07 14:05:41 -0800370 */
371int drm_sysfs_connector_add(struct drm_connector *connector)
372{
373 struct drm_device *dev = connector->dev;
Dan Carpentera1c45602010-04-27 14:11:05 -0700374 int attr_cnt = 0;
375 int opt_cnt = 0;
376 int i;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200377 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800378
Dave Airlie5bdebb12013-10-11 14:07:25 +1000379 if (connector->kdev)
380 return 0;
381
Dave Airlie5bdebb12013-10-11 14:07:25 +1000382 connector->kdev = device_create(drm_class, dev->primary->kdev,
383 0, connector, "card%d-%s",
Jani Nikula25933822014-06-03 14:56:20 +0300384 dev->primary->index, connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800385 DRM_DEBUG("adding \"%s\" to sysfs\n",
Jani Nikula25933822014-06-03 14:56:20 +0300386 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800387
Dave Airlie5bdebb12013-10-11 14:07:25 +1000388 if (IS_ERR(connector->kdev)) {
389 DRM_ERROR("failed to register connector device: %ld\n", PTR_ERR(connector->kdev));
390 ret = PTR_ERR(connector->kdev);
Dave Airlief453ba02008-11-07 14:05:41 -0800391 goto out;
392 }
393
394 /* Standard attributes */
395
Dan Carpentera1c45602010-04-27 14:11:05 -0700396 for (attr_cnt = 0; attr_cnt < ARRAY_SIZE(connector_attrs); attr_cnt++) {
Dave Airlie5bdebb12013-10-11 14:07:25 +1000397 ret = device_create_file(connector->kdev, &connector_attrs[attr_cnt]);
Dave Airlief453ba02008-11-07 14:05:41 -0800398 if (ret)
399 goto err_out_files;
400 }
401
402 /* Optional attributes */
403 /*
404 * In the long run it maybe a good idea to make one set of
405 * optionals per connector type.
406 */
407 switch (connector->connector_type) {
408 case DRM_MODE_CONNECTOR_DVII:
409 case DRM_MODE_CONNECTOR_Composite:
410 case DRM_MODE_CONNECTOR_SVIDEO:
411 case DRM_MODE_CONNECTOR_Component:
Francisco Jerez74bd3c22009-08-02 04:19:18 +0200412 case DRM_MODE_CONNECTOR_TV:
Dan Carpentera1c45602010-04-27 14:11:05 -0700413 for (opt_cnt = 0; opt_cnt < ARRAY_SIZE(connector_attrs_opt1); opt_cnt++) {
Dave Airlie5bdebb12013-10-11 14:07:25 +1000414 ret = device_create_file(connector->kdev, &connector_attrs_opt1[opt_cnt]);
Dave Airlief453ba02008-11-07 14:05:41 -0800415 if (ret)
416 goto err_out_files;
417 }
418 break;
419 default:
420 break;
421 }
422
Dave Airlie5bdebb12013-10-11 14:07:25 +1000423 ret = sysfs_create_bin_file(&connector->kdev->kobj, &edid_attr);
Dave Airlief453ba02008-11-07 14:05:41 -0800424 if (ret)
425 goto err_out_files;
426
427 /* Let userspace know we have a new connector */
428 drm_sysfs_hotplug_event(dev);
429
430 return 0;
431
432err_out_files:
Dan Carpentera1c45602010-04-27 14:11:05 -0700433 for (i = 0; i < opt_cnt; i++)
Dave Airlie5bdebb12013-10-11 14:07:25 +1000434 device_remove_file(connector->kdev, &connector_attrs_opt1[i]);
Dan Carpentera1c45602010-04-27 14:11:05 -0700435 for (i = 0; i < attr_cnt; i++)
Dave Airlie5bdebb12013-10-11 14:07:25 +1000436 device_remove_file(connector->kdev, &connector_attrs[i]);
Dave Airlie5bdebb12013-10-11 14:07:25 +1000437 device_unregister(connector->kdev);
Dave Airlief453ba02008-11-07 14:05:41 -0800438
439out:
440 return ret;
441}
Dave Airlief453ba02008-11-07 14:05:41 -0800442
443/**
444 * drm_sysfs_connector_remove - remove an connector device from sysfs
445 * @connector: connector to remove
446 *
447 * Remove @connector and its associated attributes from sysfs. Note that
448 * the device model core will take care of sending the "remove" uevent
449 * at this time, so we don't need to do it.
450 *
451 * Note:
452 * This routine should only be called if the connector was previously
453 * successfully registered. If @connector hasn't been registered yet,
454 * you'll likely see a panic somewhere deep in sysfs code when called.
455 */
456void drm_sysfs_connector_remove(struct drm_connector *connector)
457{
458 int i;
459
Dave Airlie5bdebb12013-10-11 14:07:25 +1000460 if (!connector->kdev)
Dave Airlie1828fe62012-02-20 14:15:02 +0000461 return;
Dave Airlief453ba02008-11-07 14:05:41 -0800462 DRM_DEBUG("removing \"%s\" from sysfs\n",
Jani Nikula25933822014-06-03 14:56:20 +0300463 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800464
465 for (i = 0; i < ARRAY_SIZE(connector_attrs); i++)
Dave Airlie5bdebb12013-10-11 14:07:25 +1000466 device_remove_file(connector->kdev, &connector_attrs[i]);
467 sysfs_remove_bin_file(&connector->kdev->kobj, &edid_attr);
Dave Airlie5bdebb12013-10-11 14:07:25 +1000468 device_unregister(connector->kdev);
469 connector->kdev = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800470}
Dave Airlief453ba02008-11-07 14:05:41 -0800471
472/**
473 * drm_sysfs_hotplug_event - generate a DRM uevent
474 * @dev: DRM device
475 *
476 * Send a uevent for the DRM device specified by @dev. Currently we only
477 * set HOTPLUG=1 in the uevent environment, but this could be expanded to
478 * deal with other types of events.
479 */
480void drm_sysfs_hotplug_event(struct drm_device *dev)
481{
482 char *event_string = "HOTPLUG=1";
483 char *envp[] = { event_string, NULL };
484
485 DRM_DEBUG("generating hotplug event\n");
486
Dave Airlie5bdebb12013-10-11 14:07:25 +1000487 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, envp);
Dave Airlief453ba02008-11-07 14:05:41 -0800488}
Jesse Barnes5ca58282009-03-31 14:11:15 -0700489EXPORT_SYMBOL(drm_sysfs_hotplug_event);
Dave Airlief453ba02008-11-07 14:05:41 -0800490
David Herrmann760c9602013-11-21 20:50:50 +1000491static void drm_sysfs_release(struct device *dev)
492{
493 kfree(dev);
494}
495
Jesse Barnese8b962b2007-11-22 14:02:38 +1000496/**
David Herrmanne1728072014-07-23 11:38:38 +0200497 * drm_sysfs_minor_alloc() - Allocate sysfs device for given minor
498 * @minor: minor to allocate sysfs device for
Jesse Barnese8b962b2007-11-22 14:02:38 +1000499 *
David Herrmanne1728072014-07-23 11:38:38 +0200500 * This allocates a new sysfs device for @minor and returns it. The device is
501 * not registered nor linked. The caller has to use device_add() and
502 * device_del() to register and unregister it.
503 *
504 * Note that dev_get_drvdata() on the new device will return the minor.
505 * However, the device does not hold a ref-count to the minor nor to the
506 * underlying drm_device. This is unproblematic as long as you access the
507 * private data only in sysfs callbacks. device_del() disables those
508 * synchronously, so they cannot be called after you cleanup a minor.
Jesse Barnese8b962b2007-11-22 14:02:38 +1000509 */
David Herrmanne1728072014-07-23 11:38:38 +0200510struct device *drm_sysfs_minor_alloc(struct drm_minor *minor)
Jesse Barnese8b962b2007-11-22 14:02:38 +1000511{
David Herrmanne1728072014-07-23 11:38:38 +0200512 const char *minor_str;
513 struct device *kdev;
David Herrmann760c9602013-11-21 20:50:50 +1000514 int r;
Jesse Barnese8b962b2007-11-22 14:02:38 +1000515
Dave Airlief453ba02008-11-07 14:05:41 -0800516 if (minor->type == DRM_MINOR_CONTROL)
517 minor_str = "controlD%d";
David Herrmanne1728072014-07-23 11:38:38 +0200518 else if (minor->type == DRM_MINOR_RENDER)
519 minor_str = "renderD%d";
520 else
521 minor_str = "card%d";
Jesse Barnese8b962b2007-11-22 14:02:38 +1000522
David Herrmanne1728072014-07-23 11:38:38 +0200523 kdev = kzalloc(sizeof(*kdev), GFP_KERNEL);
524 if (!kdev)
525 return ERR_PTR(-ENOMEM);
David Herrmann760c9602013-11-21 20:50:50 +1000526
David Herrmanne1728072014-07-23 11:38:38 +0200527 device_initialize(kdev);
528 kdev->devt = MKDEV(DRM_MAJOR, minor->index);
529 kdev->class = drm_class;
530 kdev->type = &drm_sysfs_device_minor;
531 kdev->parent = minor->dev->dev;
532 kdev->release = drm_sysfs_release;
533 dev_set_drvdata(kdev, minor);
David Herrmann760c9602013-11-21 20:50:50 +1000534
David Herrmanne1728072014-07-23 11:38:38 +0200535 r = dev_set_name(kdev, minor_str, minor->index);
David Herrmann760c9602013-11-21 20:50:50 +1000536 if (r < 0)
David Herrmanne1728072014-07-23 11:38:38 +0200537 goto err_free;
David Herrmann760c9602013-11-21 20:50:50 +1000538
David Herrmanne1728072014-07-23 11:38:38 +0200539 return kdev;
David Herrmann760c9602013-11-21 20:50:50 +1000540
David Herrmanne1728072014-07-23 11:38:38 +0200541err_free:
542 put_device(kdev);
543 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546/**
Thomas Hellstrom327c2252009-08-17 16:28:37 +0200547 * drm_class_device_register - Register a struct device in the drm class.
548 *
549 * @dev: pointer to struct device to register.
550 *
551 * @dev should have all relevant members pre-filled with the exception
552 * of the class member. In particular, the device_type member must
553 * be set.
554 */
555
556int drm_class_device_register(struct device *dev)
557{
Dave Airlie49099c42012-07-06 18:06:42 +0100558 if (!drm_class || IS_ERR(drm_class))
559 return -ENOENT;
560
Thomas Hellstrom327c2252009-08-17 16:28:37 +0200561 dev->class = drm_class;
562 return device_register(dev);
563}
564EXPORT_SYMBOL_GPL(drm_class_device_register);
565
566void drm_class_device_unregister(struct device *dev)
567{
568 return device_unregister(dev);
569}
570EXPORT_SYMBOL_GPL(drm_class_device_unregister);