blob: 487ddf5ffe51fc2b6e9a624f76ccd38364cdee73 [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 */
Chris Wilsonc484f022015-03-06 12:36:42 +0000169static ssize_t status_store(struct device *device,
170 struct device_attribute *attr,
171 const char *buf, size_t count)
172{
173 struct drm_connector *connector = to_drm_connector(device);
174 struct drm_device *dev = connector->dev;
175 enum drm_connector_status old_status;
176 int ret;
177
178 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
179 if (ret)
180 return ret;
181
182 old_status = connector->status;
183
184 if (sysfs_streq(buf, "detect")) {
185 connector->force = 0;
186 connector->status = connector->funcs->detect(connector, true);
187 } else if (sysfs_streq(buf, "on")) {
188 connector->force = DRM_FORCE_ON;
189 } else if (sysfs_streq(buf, "on-digital")) {
190 connector->force = DRM_FORCE_ON_DIGITAL;
191 } else if (sysfs_streq(buf, "off")) {
192 connector->force = DRM_FORCE_OFF;
193 } else
194 ret = -EINVAL;
195
196 if (ret == 0 && connector->force) {
197 if (connector->force == DRM_FORCE_ON ||
198 connector->force == DRM_FORCE_ON_DIGITAL)
199 connector->status = connector_status_connected;
200 else
201 connector->status = connector_status_disconnected;
202 if (connector->funcs->force)
203 connector->funcs->force(connector);
204 }
205
206 if (old_status != connector->status) {
207 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
208 connector->base.id,
209 connector->name,
210 old_status, connector->status);
211
212 dev->mode_config.delayed_event = true;
213 if (dev->mode_config.poll_enabled)
214 schedule_delayed_work(&dev->mode_config.output_poll_work,
215 0);
216 }
217
218 mutex_unlock(&dev->mode_config.mutex);
219
220 return ret;
221}
222
Dave Airlief453ba02008-11-07 14:05:41 -0800223static ssize_t status_show(struct device *device,
224 struct device_attribute *attr,
225 char *buf)
226{
227 struct drm_connector *connector = to_drm_connector(device);
Chris Wilson007c80a2011-03-15 11:40:00 +0000228
Keith Packard75185c92009-05-30 20:42:25 -0700229 return snprintf(buf, PAGE_SIZE, "%s\n",
Chris Wilsonc484f022015-03-06 12:36:42 +0000230 drm_get_connector_status_name(connector->status));
Dave Airlief453ba02008-11-07 14:05:41 -0800231}
232
233static ssize_t dpms_show(struct device *device,
234 struct device_attribute *attr,
235 char *buf)
236{
237 struct drm_connector *connector = to_drm_connector(device);
238 struct drm_device *dev = connector->dev;
239 uint64_t dpms_status;
240 int ret;
241
Rob Clark58495562012-10-11 20:50:56 -0500242 ret = drm_object_property_get_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -0800243 dev->mode_config.dpms_property,
244 &dpms_status);
245 if (ret)
246 return 0;
247
Keith Packard75185c92009-05-30 20:42:25 -0700248 return snprintf(buf, PAGE_SIZE, "%s\n",
Dave Airlief453ba02008-11-07 14:05:41 -0800249 drm_get_dpms_name((int)dpms_status));
250}
251
252static ssize_t enabled_show(struct device *device,
253 struct device_attribute *attr,
254 char *buf)
255{
256 struct drm_connector *connector = to_drm_connector(device);
257
Keith Packard75185c92009-05-30 20:42:25 -0700258 return snprintf(buf, PAGE_SIZE, "%s\n", connector->encoder ? "enabled" :
Dave Airlief453ba02008-11-07 14:05:41 -0800259 "disabled");
260}
261
Chris Wright2c3c8be2010-05-12 18:28:57 -0700262static ssize_t edid_show(struct file *filp, struct kobject *kobj,
263 struct bin_attribute *attr, char *buf, loff_t off,
264 size_t count)
Dave Airlief453ba02008-11-07 14:05:41 -0800265{
266 struct device *connector_dev = container_of(kobj, struct device, kobj);
267 struct drm_connector *connector = to_drm_connector(connector_dev);
268 unsigned char *edid;
269 size_t size;
270
271 if (!connector->edid_blob_ptr)
272 return 0;
273
274 edid = connector->edid_blob_ptr->data;
275 size = connector->edid_blob_ptr->length;
276 if (!edid)
277 return 0;
278
279 if (off >= size)
280 return 0;
281
282 if (off + count > size)
283 count = size - off;
284 memcpy(buf, edid + off, count);
285
286 return count;
287}
288
289static ssize_t modes_show(struct device *device,
290 struct device_attribute *attr,
291 char *buf)
292{
293 struct drm_connector *connector = to_drm_connector(device);
294 struct drm_display_mode *mode;
295 int written = 0;
296
297 list_for_each_entry(mode, &connector->modes, head) {
298 written += snprintf(buf + written, PAGE_SIZE - written, "%s\n",
299 mode->name);
300 }
301
302 return written;
303}
304
Jani Nikula4bb46372015-05-12 12:14:54 +0300305static ssize_t tv_subconnector_show(struct device *device,
306 struct device_attribute *attr,
307 char *buf)
Dave Airlief453ba02008-11-07 14:05:41 -0800308{
309 struct drm_connector *connector = to_drm_connector(device);
310 struct drm_device *dev = connector->dev;
Jani Nikula4bb46372015-05-12 12:14:54 +0300311 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -0800312 uint64_t subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -0800313 int ret;
314
Jani Nikula4bb46372015-05-12 12:14:54 +0300315 prop = dev->mode_config.tv_subconnector_property;
Dave Airlief453ba02008-11-07 14:05:41 -0800316 if (!prop) {
317 DRM_ERROR("Unable to find subconnector property\n");
318 return 0;
319 }
320
Rob Clark58495562012-10-11 20:50:56 -0500321 ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
Dave Airlief453ba02008-11-07 14:05:41 -0800322 if (ret)
323 return 0;
324
Jani Nikula4bb46372015-05-12 12:14:54 +0300325 return snprintf(buf, PAGE_SIZE, "%s",
326 drm_get_tv_subconnector_name((int)subconnector));
Dave Airlief453ba02008-11-07 14:05:41 -0800327}
328
Jani Nikula4bb46372015-05-12 12:14:54 +0300329static ssize_t tv_select_subconnector_show(struct device *device,
330 struct device_attribute *attr,
331 char *buf)
Dave Airlief453ba02008-11-07 14:05:41 -0800332{
333 struct drm_connector *connector = to_drm_connector(device);
334 struct drm_device *dev = connector->dev;
Jani Nikula4bb46372015-05-12 12:14:54 +0300335 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -0800336 uint64_t subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -0800337 int ret;
338
Jani Nikula4bb46372015-05-12 12:14:54 +0300339 prop = dev->mode_config.tv_select_subconnector_property;
Dave Airlief453ba02008-11-07 14:05:41 -0800340 if (!prop) {
341 DRM_ERROR("Unable to find select subconnector property\n");
342 return 0;
343 }
344
Rob Clark58495562012-10-11 20:50:56 -0500345 ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
Dave Airlief453ba02008-11-07 14:05:41 -0800346 if (ret)
347 return 0;
348
Jani Nikula4bb46372015-05-12 12:14:54 +0300349 return snprintf(buf, PAGE_SIZE, "%s",
350 drm_get_tv_select_name((int)subconnector));
351}
352
353static ssize_t dvii_subconnector_show(struct device *device,
354 struct device_attribute *attr,
355 char *buf)
356{
357 struct drm_connector *connector = to_drm_connector(device);
358 struct drm_device *dev = connector->dev;
359 struct drm_property *prop;
360 uint64_t subconnector;
361 int ret;
362
Jani Nikula4bb46372015-05-12 12:14:54 +0300363 prop = dev->mode_config.dvi_i_subconnector_property;
364 if (!prop) {
365 DRM_ERROR("Unable to find subconnector property\n");
366 return 0;
367 }
368
369 ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
370 if (ret)
371 return 0;
372
373 return snprintf(buf, PAGE_SIZE, "%s",
374 drm_get_dvi_i_subconnector_name((int)subconnector));
375}
376
377static ssize_t dvii_select_subconnector_show(struct device *device,
378 struct device_attribute *attr,
379 char *buf)
380{
381 struct drm_connector *connector = to_drm_connector(device);
382 struct drm_device *dev = connector->dev;
383 struct drm_property *prop;
384 uint64_t subconnector;
385 int ret;
386
Jani Nikula4bb46372015-05-12 12:14:54 +0300387 prop = dev->mode_config.dvi_i_select_subconnector_property;
388 if (!prop) {
389 DRM_ERROR("Unable to find select subconnector property\n");
390 return 0;
391 }
392
393 ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
394 if (ret)
395 return 0;
396
397 return snprintf(buf, PAGE_SIZE, "%s",
Dave Airlief453ba02008-11-07 14:05:41 -0800398 drm_get_dvi_i_select_name((int)subconnector));
399}
400
Chris Wilsonc484f022015-03-06 12:36:42 +0000401static DEVICE_ATTR_RW(status);
Takashi Iwai335f1a62015-02-04 11:58:53 +0100402static DEVICE_ATTR_RO(enabled);
403static DEVICE_ATTR_RO(dpms);
404static DEVICE_ATTR_RO(modes);
405
406static struct attribute *connector_dev_attrs[] = {
407 &dev_attr_status.attr,
408 &dev_attr_enabled.attr,
409 &dev_attr_dpms.attr,
410 &dev_attr_modes.attr,
411 NULL
Dave Airlief453ba02008-11-07 14:05:41 -0800412};
413
Jani Nikula4bb46372015-05-12 12:14:54 +0300414static DEVICE_ATTR_RO(tv_subconnector);
415static DEVICE_ATTR_RO(tv_select_subconnector);
Takashi Iwai335f1a62015-02-04 11:58:53 +0100416
Jani Nikulafe6fcdd2015-05-12 12:14:53 +0300417static struct attribute *connector_tv_dev_attrs[] = {
Jani Nikula4bb46372015-05-12 12:14:54 +0300418 &dev_attr_tv_subconnector.attr,
419 &dev_attr_tv_select_subconnector.attr,
420 NULL
421};
422
423static DEVICE_ATTR_RO(dvii_subconnector);
424static DEVICE_ATTR_RO(dvii_select_subconnector);
425
426static struct attribute *connector_dvii_dev_attrs[] = {
427 &dev_attr_dvii_subconnector.attr,
428 &dev_attr_dvii_select_subconnector.attr,
Takashi Iwai335f1a62015-02-04 11:58:53 +0100429 NULL
Dave Airlief453ba02008-11-07 14:05:41 -0800430};
431
Jani Nikula7d4d3a52015-05-12 12:14:52 +0300432/* Connector type related helpers */
433static int kobj_connector_type(struct kobject *kobj)
Takashi Iwai335f1a62015-02-04 11:58:53 +0100434{
435 struct device *dev = kobj_to_dev(kobj);
436 struct drm_connector *connector = to_drm_connector(dev);
437
Jani Nikula7d4d3a52015-05-12 12:14:52 +0300438 return connector->connector_type;
439}
440
Jani Nikulafe6fcdd2015-05-12 12:14:53 +0300441static umode_t connector_is_dvii(struct kobject *kobj,
442 struct attribute *attr, int idx)
Jani Nikula7d4d3a52015-05-12 12:14:52 +0300443{
Jani Nikulafe6fcdd2015-05-12 12:14:53 +0300444 return kobj_connector_type(kobj) == DRM_MODE_CONNECTOR_DVII ?
445 attr->mode : 0;
446}
447
448static umode_t connector_is_tv(struct kobject *kobj,
449 struct attribute *attr, int idx)
450{
Jani Nikula7d4d3a52015-05-12 12:14:52 +0300451 switch (kobj_connector_type(kobj)) {
Takashi Iwai335f1a62015-02-04 11:58:53 +0100452 case DRM_MODE_CONNECTOR_Composite:
453 case DRM_MODE_CONNECTOR_SVIDEO:
454 case DRM_MODE_CONNECTOR_Component:
455 case DRM_MODE_CONNECTOR_TV:
456 return attr->mode;
457 }
458
459 return 0;
460}
461
Dave Airlief453ba02008-11-07 14:05:41 -0800462static struct bin_attribute edid_attr = {
463 .attr.name = "edid",
Keith Packarde36ebaf2009-05-30 20:42:26 -0700464 .attr.mode = 0444,
Adam Jackson7466f4c2010-03-29 21:43:23 +0000465 .size = 0,
Dave Airlief453ba02008-11-07 14:05:41 -0800466 .read = edid_show,
467};
468
Takashi Iwai335f1a62015-02-04 11:58:53 +0100469static struct bin_attribute *connector_bin_attrs[] = {
470 &edid_attr,
471 NULL
472};
473
474static const struct attribute_group connector_dev_group = {
475 .attrs = connector_dev_attrs,
476 .bin_attrs = connector_bin_attrs,
477};
478
Jani Nikulafe6fcdd2015-05-12 12:14:53 +0300479static const struct attribute_group connector_tv_dev_group = {
480 .attrs = connector_tv_dev_attrs,
481 .is_visible = connector_is_tv,
482};
483
484static const struct attribute_group connector_dvii_dev_group = {
Jani Nikula4bb46372015-05-12 12:14:54 +0300485 .attrs = connector_dvii_dev_attrs,
Jani Nikulafe6fcdd2015-05-12 12:14:53 +0300486 .is_visible = connector_is_dvii,
Takashi Iwai335f1a62015-02-04 11:58:53 +0100487};
488
489static const struct attribute_group *connector_dev_groups[] = {
490 &connector_dev_group,
Jani Nikulafe6fcdd2015-05-12 12:14:53 +0300491 &connector_tv_dev_group,
492 &connector_dvii_dev_group,
Takashi Iwai335f1a62015-02-04 11:58:53 +0100493 NULL
494};
495
Dave Airlief453ba02008-11-07 14:05:41 -0800496/**
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200497 * drm_sysfs_connector_add - add a connector to sysfs
Dave Airlief453ba02008-11-07 14:05:41 -0800498 * @connector: connector to add
499 *
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200500 * Create a connector device in sysfs, along with its associated connector
Dave Airlief453ba02008-11-07 14:05:41 -0800501 * properties (so far, connection status, dpms, mode list & edid) and
502 * generate a hotplug event so userspace knows there's a new connector
503 * available.
Dave Airlief453ba02008-11-07 14:05:41 -0800504 */
505int drm_sysfs_connector_add(struct drm_connector *connector)
506{
507 struct drm_device *dev = connector->dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800508
Dave Airlie5bdebb12013-10-11 14:07:25 +1000509 if (connector->kdev)
510 return 0;
511
Takashi Iwai335f1a62015-02-04 11:58:53 +0100512 connector->kdev =
513 device_create_with_groups(drm_class, dev->primary->kdev, 0,
514 connector, connector_dev_groups,
515 "card%d-%s", dev->primary->index,
516 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800517 DRM_DEBUG("adding \"%s\" to sysfs\n",
Jani Nikula25933822014-06-03 14:56:20 +0300518 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800519
Dave Airlie5bdebb12013-10-11 14:07:25 +1000520 if (IS_ERR(connector->kdev)) {
521 DRM_ERROR("failed to register connector device: %ld\n", PTR_ERR(connector->kdev));
Takashi Iwai335f1a62015-02-04 11:58:53 +0100522 return PTR_ERR(connector->kdev);
Dave Airlief453ba02008-11-07 14:05:41 -0800523 }
524
Dave Airlief453ba02008-11-07 14:05:41 -0800525 /* Let userspace know we have a new connector */
526 drm_sysfs_hotplug_event(dev);
527
528 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800529}
Dave Airlief453ba02008-11-07 14:05:41 -0800530
531/**
532 * drm_sysfs_connector_remove - remove an connector device from sysfs
533 * @connector: connector to remove
534 *
535 * Remove @connector and its associated attributes from sysfs. Note that
536 * the device model core will take care of sending the "remove" uevent
537 * at this time, so we don't need to do it.
538 *
539 * Note:
540 * This routine should only be called if the connector was previously
541 * successfully registered. If @connector hasn't been registered yet,
542 * you'll likely see a panic somewhere deep in sysfs code when called.
543 */
544void drm_sysfs_connector_remove(struct drm_connector *connector)
545{
Dave Airlie5bdebb12013-10-11 14:07:25 +1000546 if (!connector->kdev)
Dave Airlie1828fe62012-02-20 14:15:02 +0000547 return;
Dave Airlief453ba02008-11-07 14:05:41 -0800548 DRM_DEBUG("removing \"%s\" from sysfs\n",
Jani Nikula25933822014-06-03 14:56:20 +0300549 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800550
Dave Airlie5bdebb12013-10-11 14:07:25 +1000551 device_unregister(connector->kdev);
552 connector->kdev = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800553}
Dave Airlief453ba02008-11-07 14:05:41 -0800554
555/**
556 * drm_sysfs_hotplug_event - generate a DRM uevent
557 * @dev: DRM device
558 *
559 * Send a uevent for the DRM device specified by @dev. Currently we only
560 * set HOTPLUG=1 in the uevent environment, but this could be expanded to
561 * deal with other types of events.
562 */
563void drm_sysfs_hotplug_event(struct drm_device *dev)
564{
565 char *event_string = "HOTPLUG=1";
566 char *envp[] = { event_string, NULL };
567
568 DRM_DEBUG("generating hotplug event\n");
569
Dave Airlie5bdebb12013-10-11 14:07:25 +1000570 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, envp);
Dave Airlief453ba02008-11-07 14:05:41 -0800571}
Jesse Barnes5ca58282009-03-31 14:11:15 -0700572EXPORT_SYMBOL(drm_sysfs_hotplug_event);
Dave Airlief453ba02008-11-07 14:05:41 -0800573
David Herrmann760c9602013-11-21 20:50:50 +1000574static void drm_sysfs_release(struct device *dev)
575{
576 kfree(dev);
577}
578
Jesse Barnese8b962b2007-11-22 14:02:38 +1000579/**
David Herrmanne1728072014-07-23 11:38:38 +0200580 * drm_sysfs_minor_alloc() - Allocate sysfs device for given minor
581 * @minor: minor to allocate sysfs device for
Jesse Barnese8b962b2007-11-22 14:02:38 +1000582 *
David Herrmanne1728072014-07-23 11:38:38 +0200583 * This allocates a new sysfs device for @minor and returns it. The device is
584 * not registered nor linked. The caller has to use device_add() and
585 * device_del() to register and unregister it.
586 *
587 * Note that dev_get_drvdata() on the new device will return the minor.
588 * However, the device does not hold a ref-count to the minor nor to the
589 * underlying drm_device. This is unproblematic as long as you access the
590 * private data only in sysfs callbacks. device_del() disables those
591 * synchronously, so they cannot be called after you cleanup a minor.
Jesse Barnese8b962b2007-11-22 14:02:38 +1000592 */
David Herrmanne1728072014-07-23 11:38:38 +0200593struct device *drm_sysfs_minor_alloc(struct drm_minor *minor)
Jesse Barnese8b962b2007-11-22 14:02:38 +1000594{
David Herrmanne1728072014-07-23 11:38:38 +0200595 const char *minor_str;
596 struct device *kdev;
David Herrmann760c9602013-11-21 20:50:50 +1000597 int r;
Jesse Barnese8b962b2007-11-22 14:02:38 +1000598
Dave Airlief453ba02008-11-07 14:05:41 -0800599 if (minor->type == DRM_MINOR_CONTROL)
600 minor_str = "controlD%d";
David Herrmanne1728072014-07-23 11:38:38 +0200601 else if (minor->type == DRM_MINOR_RENDER)
602 minor_str = "renderD%d";
603 else
604 minor_str = "card%d";
Jesse Barnese8b962b2007-11-22 14:02:38 +1000605
David Herrmanne1728072014-07-23 11:38:38 +0200606 kdev = kzalloc(sizeof(*kdev), GFP_KERNEL);
607 if (!kdev)
608 return ERR_PTR(-ENOMEM);
David Herrmann760c9602013-11-21 20:50:50 +1000609
David Herrmanne1728072014-07-23 11:38:38 +0200610 device_initialize(kdev);
611 kdev->devt = MKDEV(DRM_MAJOR, minor->index);
612 kdev->class = drm_class;
613 kdev->type = &drm_sysfs_device_minor;
614 kdev->parent = minor->dev->dev;
615 kdev->release = drm_sysfs_release;
616 dev_set_drvdata(kdev, minor);
David Herrmann760c9602013-11-21 20:50:50 +1000617
David Herrmanne1728072014-07-23 11:38:38 +0200618 r = dev_set_name(kdev, minor_str, minor->index);
David Herrmann760c9602013-11-21 20:50:50 +1000619 if (r < 0)
David Herrmanne1728072014-07-23 11:38:38 +0200620 goto err_free;
David Herrmann760c9602013-11-21 20:50:50 +1000621
David Herrmanne1728072014-07-23 11:38:38 +0200622 return kdev;
David Herrmann760c9602013-11-21 20:50:50 +1000623
David Herrmanne1728072014-07-23 11:38:38 +0200624err_free:
625 put_device(kdev);
626 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
629/**
Thomas Hellstrom327c2252009-08-17 16:28:37 +0200630 * drm_class_device_register - Register a struct device in the drm class.
631 *
632 * @dev: pointer to struct device to register.
633 *
634 * @dev should have all relevant members pre-filled with the exception
635 * of the class member. In particular, the device_type member must
636 * be set.
637 */
638
639int drm_class_device_register(struct device *dev)
640{
Dave Airlie49099c42012-07-06 18:06:42 +0100641 if (!drm_class || IS_ERR(drm_class))
642 return -ENOENT;
643
Thomas Hellstrom327c2252009-08-17 16:28:37 +0200644 dev->class = drm_class;
645 return device_register(dev);
646}
647EXPORT_SYMBOL_GPL(drm_class_device_register);
648
649void drm_class_device_unregister(struct device *dev)
650{
651 return device_unregister(dev);
652}
653EXPORT_SYMBOL_GPL(drm_class_device_unregister);