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.
9 * Copyright (c) 2003-2004 IBM Corp.
11 * This file is released under the GPLv2
15 #include <linux/device.h>
16 #include <linux/kdev_t.h>
17 #include <linux/gfp.h>
18 #include <linux/err.h>
19 #include <linux/export.h>
21 #include <drm/drm_sysfs.h>
22 #include <drm/drm_core.h>
24 #include "drm_internal.h"
26 #define to_drm_minor(d) dev_get_drvdata(d)
27 #define to_drm_connector(d) dev_get_drvdata(d)
29 static struct device_type drm_sysfs_device_minor = {
34 * __drm_class_suspend - internal DRM class suspend routine
35 * @dev: Linux device to suspend
36 * @state: power state to enter
38 * Just figures out what the actual struct drm_device associated with
39 * @dev is and calls its suspend hook, if present.
41 static int __drm_class_suspend(struct device *dev, pm_message_t state)
43 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;
47 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);
56 * 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
60 static int drm_class_suspend(struct device *dev)
62 return __drm_class_suspend(dev, PMSG_SUSPEND);
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
70 static int drm_class_freeze(struct device *dev)
72 return __drm_class_suspend(dev, PMSG_FREEZE);
76 * drm_class_resume - DRM class resume hook
77 * @dev: Linux device to resume
79 * Just figures out what the actual struct drm_device associated with
80 * @dev is and calls its resume hook, if present.
82 static int drm_class_resume(struct device *dev)
84 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;
88 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);
96 static 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,
102 static char *drm_devnode(struct device *dev, umode_t *mode)
104 return kasprintf(GFP_KERNEL, "dri/%s", dev_name(dev));
107 static CLASS_ATTR_STRING(version, S_IRUGO,
109 __stringify(CORE_MAJOR) "."
110 __stringify(CORE_MINOR) "."
111 __stringify(CORE_PATCHLEVEL) " "
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.
119 * This is used to create DRM class pointer that can then be used
120 * in calls to drm_sysfs_device_add().
122 * Note, the pointer created here is to be destroyed when finished by making a
123 * call to drm_sysfs_destroy().
125 struct class *drm_sysfs_create(struct module *owner, char *name)
130 class = class_create(owner, name);
132 err = PTR_ERR(class);
136 class->pm = &drm_class_dev_pm_ops;
138 err = class_create_file(class, &class_attr_version.attr);
142 class->devnode = drm_devnode;
147 class_destroy(class);
153 * drm_sysfs_destroy - destroys DRM class
155 * Destroy the DRM device class.
157 void drm_sysfs_destroy(void)
159 if ((drm_class == NULL) || (IS_ERR(drm_class)))
161 class_remove_file(drm_class, &class_attr_version.attr);
162 class_destroy(drm_class);
167 * Connector properties
169 static ssize_t status_show(struct device *device,
170 struct device_attribute *attr,
173 struct drm_connector *connector = to_drm_connector(device);
174 enum drm_connector_status status;
177 ret = mutex_lock_interruptible(&connector->dev->mode_config.mutex);
181 status = connector->funcs->detect(connector, true);
182 mutex_unlock(&connector->dev->mode_config.mutex);
184 return snprintf(buf, PAGE_SIZE, "%s\n",
185 drm_get_connector_status_name(status));
188 static ssize_t dpms_show(struct device *device,
189 struct device_attribute *attr,
192 struct drm_connector *connector = to_drm_connector(device);
193 struct drm_device *dev = connector->dev;
194 uint64_t dpms_status;
197 ret = drm_object_property_get_value(&connector->base,
198 dev->mode_config.dpms_property,
203 return snprintf(buf, PAGE_SIZE, "%s\n",
204 drm_get_dpms_name((int)dpms_status));
207 static ssize_t enabled_show(struct device *device,
208 struct device_attribute *attr,
211 struct drm_connector *connector = to_drm_connector(device);
213 return snprintf(buf, PAGE_SIZE, "%s\n", connector->encoder ? "enabled" :
217 static ssize_t edid_show(struct file *filp, struct kobject *kobj,
218 struct bin_attribute *attr, char *buf, loff_t off,
221 struct device *connector_dev = container_of(kobj, struct device, kobj);
222 struct drm_connector *connector = to_drm_connector(connector_dev);
226 if (!connector->edid_blob_ptr)
229 edid = connector->edid_blob_ptr->data;
230 size = connector->edid_blob_ptr->length;
237 if (off + count > size)
239 memcpy(buf, edid + off, count);
244 static ssize_t modes_show(struct device *device,
245 struct device_attribute *attr,
248 struct drm_connector *connector = to_drm_connector(device);
249 struct drm_display_mode *mode;
252 list_for_each_entry(mode, &connector->modes, head) {
253 written += snprintf(buf + written, PAGE_SIZE - written, "%s\n",
260 static ssize_t subconnector_show(struct device *device,
261 struct device_attribute *attr,
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;
271 switch (connector->connector_type) {
272 case DRM_MODE_CONNECTOR_DVII:
273 prop = dev->mode_config.dvi_i_subconnector_property;
275 case DRM_MODE_CONNECTOR_Composite:
276 case DRM_MODE_CONNECTOR_SVIDEO:
277 case DRM_MODE_CONNECTOR_Component:
278 case DRM_MODE_CONNECTOR_TV:
279 prop = dev->mode_config.tv_subconnector_property;
283 DRM_ERROR("Wrong connector type for this property\n");
288 DRM_ERROR("Unable to find subconnector property\n");
292 ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
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));
301 static ssize_t select_subconnector_show(struct device *device,
302 struct device_attribute *attr,
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;
312 switch (connector->connector_type) {
313 case DRM_MODE_CONNECTOR_DVII:
314 prop = dev->mode_config.dvi_i_select_subconnector_property;
316 case DRM_MODE_CONNECTOR_Composite:
317 case DRM_MODE_CONNECTOR_SVIDEO:
318 case DRM_MODE_CONNECTOR_Component:
319 case DRM_MODE_CONNECTOR_TV:
320 prop = dev->mode_config.tv_select_subconnector_property;
324 DRM_ERROR("Wrong connector type for this property\n");
329 DRM_ERROR("Unable to find select subconnector property\n");
333 ret = drm_object_property_get_value(&connector->base, prop, &subconnector);
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));
342 static struct device_attribute connector_attrs[] = {
349 /* These attributes are for both DVI-I connectors and all types of tv-out. */
350 static struct device_attribute connector_attrs_opt1[] = {
351 __ATTR_RO(subconnector),
352 __ATTR_RO(select_subconnector),
355 static struct bin_attribute edid_attr = {
363 * drm_sysfs_connector_add - add a connector to sysfs
364 * @connector: connector to add
366 * Create a connector device in sysfs, along with its associated connector
367 * properties (so far, connection status, dpms, mode list & edid) and
368 * generate a hotplug event so userspace knows there's a new connector
371 int drm_sysfs_connector_add(struct drm_connector *connector)
373 struct drm_device *dev = connector->dev;
382 connector->kdev = device_create(drm_class, dev->primary->kdev,
383 0, connector, "card%d-%s",
384 dev->primary->index, connector->name);
385 DRM_DEBUG("adding \"%s\" to sysfs\n",
388 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);
394 /* Standard attributes */
396 for (attr_cnt = 0; attr_cnt < ARRAY_SIZE(connector_attrs); attr_cnt++) {
397 ret = device_create_file(connector->kdev, &connector_attrs[attr_cnt]);
402 /* Optional attributes */
404 * In the long run it maybe a good idea to make one set of
405 * optionals per connector type.
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:
412 case DRM_MODE_CONNECTOR_TV:
413 for (opt_cnt = 0; opt_cnt < ARRAY_SIZE(connector_attrs_opt1); opt_cnt++) {
414 ret = device_create_file(connector->kdev, &connector_attrs_opt1[opt_cnt]);
423 ret = sysfs_create_bin_file(&connector->kdev->kobj, &edid_attr);
427 /* Let userspace know we have a new connector */
428 drm_sysfs_hotplug_event(dev);
433 for (i = 0; i < opt_cnt; i++)
434 device_remove_file(connector->kdev, &connector_attrs_opt1[i]);
435 for (i = 0; i < attr_cnt; i++)
436 device_remove_file(connector->kdev, &connector_attrs[i]);
437 device_unregister(connector->kdev);
444 * drm_sysfs_connector_remove - remove an connector device from sysfs
445 * @connector: connector to remove
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.
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.
456 void drm_sysfs_connector_remove(struct drm_connector *connector)
460 if (!connector->kdev)
462 DRM_DEBUG("removing \"%s\" from sysfs\n",
465 for (i = 0; i < ARRAY_SIZE(connector_attrs); i++)
466 device_remove_file(connector->kdev, &connector_attrs[i]);
467 sysfs_remove_bin_file(&connector->kdev->kobj, &edid_attr);
468 device_unregister(connector->kdev);
469 connector->kdev = NULL;
473 * drm_sysfs_hotplug_event - generate a DRM uevent
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.
480 void drm_sysfs_hotplug_event(struct drm_device *dev)
482 char *event_string = "HOTPLUG=1";
483 char *envp[] = { event_string, NULL };
485 DRM_DEBUG("generating hotplug event\n");
487 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, envp);
489 EXPORT_SYMBOL(drm_sysfs_hotplug_event);
491 static void drm_sysfs_release(struct device *dev)
497 * drm_sysfs_minor_alloc() - Allocate sysfs device for given minor
498 * @minor: minor to allocate sysfs device for
500 * 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.
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.
510 struct device *drm_sysfs_minor_alloc(struct drm_minor *minor)
512 const char *minor_str;
516 if (minor->type == DRM_MINOR_CONTROL)
517 minor_str = "controlD%d";
518 else if (minor->type == DRM_MINOR_RENDER)
519 minor_str = "renderD%d";
521 minor_str = "card%d";
523 kdev = kzalloc(sizeof(*kdev), GFP_KERNEL);
525 return ERR_PTR(-ENOMEM);
527 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);
535 r = dev_set_name(kdev, minor_str, minor->index);
547 * drm_class_device_register - Register a struct device in the drm class.
549 * @dev: pointer to struct device to register.
551 * @dev should have all relevant members pre-filled with the exception
552 * of the class member. In particular, the device_type member must
556 int drm_class_device_register(struct device *dev)
558 if (!drm_class || IS_ERR(drm_class))
561 dev->class = drm_class;
562 return device_register(dev);
564 EXPORT_SYMBOL_GPL(drm_class_device_register);
566 void drm_class_device_unregister(struct device *dev)
568 return device_unregister(dev);
570 EXPORT_SYMBOL_GPL(drm_class_device_unregister);