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.
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.
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_store(struct device
*device
,
170 struct device_attribute
*attr
,
171 const char *buf
, size_t count
)
173 struct drm_connector
*connector
= to_drm_connector(device
);
174 struct drm_device
*dev
= connector
->dev
;
175 enum drm_connector_status old_status
;
178 ret
= mutex_lock_interruptible(&dev
->mode_config
.mutex
);
182 old_status
= connector
->status
;
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
;
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
;
201 connector
->status
= connector_status_disconnected
;
202 if (connector
->funcs
->force
)
203 connector
->funcs
->force(connector
);
206 if (old_status
!= connector
->status
) {
207 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
210 old_status
, connector
->status
);
212 dev
->mode_config
.delayed_event
= true;
213 if (dev
->mode_config
.poll_enabled
)
214 schedule_delayed_work(&dev
->mode_config
.output_poll_work
,
218 mutex_unlock(&dev
->mode_config
.mutex
);
220 return ret
? ret
: count
;
223 static ssize_t
status_show(struct device
*device
,
224 struct device_attribute
*attr
,
227 struct drm_connector
*connector
= to_drm_connector(device
);
229 return snprintf(buf
, PAGE_SIZE
, "%s\n",
230 drm_get_connector_status_name(connector
->status
));
233 static ssize_t
dpms_show(struct device
*device
,
234 struct device_attribute
*attr
,
237 struct drm_connector
*connector
= to_drm_connector(device
);
238 struct drm_device
*dev
= connector
->dev
;
239 uint64_t dpms_status
;
242 ret
= drm_object_property_get_value(&connector
->base
,
243 dev
->mode_config
.dpms_property
,
248 return snprintf(buf
, PAGE_SIZE
, "%s\n",
249 drm_get_dpms_name((int)dpms_status
));
252 static ssize_t
enabled_show(struct device
*device
,
253 struct device_attribute
*attr
,
256 struct drm_connector
*connector
= to_drm_connector(device
);
258 return snprintf(buf
, PAGE_SIZE
, "%s\n", connector
->encoder
? "enabled" :
262 static ssize_t
edid_show(struct file
*filp
, struct kobject
*kobj
,
263 struct bin_attribute
*attr
, char *buf
, loff_t off
,
266 struct device
*connector_dev
= container_of(kobj
, struct device
, kobj
);
267 struct drm_connector
*connector
= to_drm_connector(connector_dev
);
271 if (!connector
->edid_blob_ptr
)
274 edid
= connector
->edid_blob_ptr
->data
;
275 size
= connector
->edid_blob_ptr
->length
;
282 if (off
+ count
> size
)
284 memcpy(buf
, edid
+ off
, count
);
289 static ssize_t
modes_show(struct device
*device
,
290 struct device_attribute
*attr
,
293 struct drm_connector
*connector
= to_drm_connector(device
);
294 struct drm_display_mode
*mode
;
297 list_for_each_entry(mode
, &connector
->modes
, head
) {
298 written
+= snprintf(buf
+ written
, PAGE_SIZE
- written
, "%s\n",
305 static ssize_t
tv_subconnector_show(struct device
*device
,
306 struct device_attribute
*attr
,
309 struct drm_connector
*connector
= to_drm_connector(device
);
310 struct drm_device
*dev
= connector
->dev
;
311 struct drm_property
*prop
;
312 uint64_t subconnector
;
315 prop
= dev
->mode_config
.tv_subconnector_property
;
317 DRM_ERROR("Unable to find subconnector property\n");
321 ret
= drm_object_property_get_value(&connector
->base
, prop
, &subconnector
);
325 return snprintf(buf
, PAGE_SIZE
, "%s",
326 drm_get_tv_subconnector_name((int)subconnector
));
329 static ssize_t
tv_select_subconnector_show(struct device
*device
,
330 struct device_attribute
*attr
,
333 struct drm_connector
*connector
= to_drm_connector(device
);
334 struct drm_device
*dev
= connector
->dev
;
335 struct drm_property
*prop
;
336 uint64_t subconnector
;
339 prop
= dev
->mode_config
.tv_select_subconnector_property
;
341 DRM_ERROR("Unable to find select subconnector property\n");
345 ret
= drm_object_property_get_value(&connector
->base
, prop
, &subconnector
);
349 return snprintf(buf
, PAGE_SIZE
, "%s",
350 drm_get_tv_select_name((int)subconnector
));
353 static ssize_t
dvii_subconnector_show(struct device
*device
,
354 struct device_attribute
*attr
,
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
;
363 prop
= dev
->mode_config
.dvi_i_subconnector_property
;
365 DRM_ERROR("Unable to find subconnector property\n");
369 ret
= drm_object_property_get_value(&connector
->base
, prop
, &subconnector
);
373 return snprintf(buf
, PAGE_SIZE
, "%s",
374 drm_get_dvi_i_subconnector_name((int)subconnector
));
377 static ssize_t
dvii_select_subconnector_show(struct device
*device
,
378 struct device_attribute
*attr
,
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
;
387 prop
= dev
->mode_config
.dvi_i_select_subconnector_property
;
389 DRM_ERROR("Unable to find select subconnector property\n");
393 ret
= drm_object_property_get_value(&connector
->base
, prop
, &subconnector
);
397 return snprintf(buf
, PAGE_SIZE
, "%s",
398 drm_get_dvi_i_select_name((int)subconnector
));
401 static DEVICE_ATTR_RW(status
);
402 static DEVICE_ATTR_RO(enabled
);
403 static DEVICE_ATTR_RO(dpms
);
404 static DEVICE_ATTR_RO(modes
);
406 static struct attribute
*connector_dev_attrs
[] = {
407 &dev_attr_status
.attr
,
408 &dev_attr_enabled
.attr
,
410 &dev_attr_modes
.attr
,
414 static DEVICE_ATTR_RO(tv_subconnector
);
415 static DEVICE_ATTR_RO(tv_select_subconnector
);
417 static struct attribute
*connector_tv_dev_attrs
[] = {
418 &dev_attr_tv_subconnector
.attr
,
419 &dev_attr_tv_select_subconnector
.attr
,
423 static DEVICE_ATTR_RO(dvii_subconnector
);
424 static DEVICE_ATTR_RO(dvii_select_subconnector
);
426 static struct attribute
*connector_dvii_dev_attrs
[] = {
427 &dev_attr_dvii_subconnector
.attr
,
428 &dev_attr_dvii_select_subconnector
.attr
,
432 /* Connector type related helpers */
433 static int kobj_connector_type(struct kobject
*kobj
)
435 struct device
*dev
= kobj_to_dev(kobj
);
436 struct drm_connector
*connector
= to_drm_connector(dev
);
438 return connector
->connector_type
;
441 static umode_t
connector_is_dvii(struct kobject
*kobj
,
442 struct attribute
*attr
, int idx
)
444 return kobj_connector_type(kobj
) == DRM_MODE_CONNECTOR_DVII
?
448 static umode_t
connector_is_tv(struct kobject
*kobj
,
449 struct attribute
*attr
, int idx
)
451 switch (kobj_connector_type(kobj
)) {
452 case DRM_MODE_CONNECTOR_Composite
:
453 case DRM_MODE_CONNECTOR_SVIDEO
:
454 case DRM_MODE_CONNECTOR_Component
:
455 case DRM_MODE_CONNECTOR_TV
:
462 static struct bin_attribute edid_attr
= {
469 static struct bin_attribute
*connector_bin_attrs
[] = {
474 static const struct attribute_group connector_dev_group
= {
475 .attrs
= connector_dev_attrs
,
476 .bin_attrs
= connector_bin_attrs
,
479 static const struct attribute_group connector_tv_dev_group
= {
480 .attrs
= connector_tv_dev_attrs
,
481 .is_visible
= connector_is_tv
,
484 static const struct attribute_group connector_dvii_dev_group
= {
485 .attrs
= connector_dvii_dev_attrs
,
486 .is_visible
= connector_is_dvii
,
489 static const struct attribute_group
*connector_dev_groups
[] = {
490 &connector_dev_group
,
491 &connector_tv_dev_group
,
492 &connector_dvii_dev_group
,
497 * drm_sysfs_connector_add - add a connector to sysfs
498 * @connector: connector to add
500 * Create a connector device in sysfs, along with its associated connector
501 * properties (so far, connection status, dpms, mode list & edid) and
502 * generate a hotplug event so userspace knows there's a new connector
505 int drm_sysfs_connector_add(struct drm_connector
*connector
)
507 struct drm_device
*dev
= connector
->dev
;
513 device_create_with_groups(drm_class
, dev
->primary
->kdev
, 0,
514 connector
, connector_dev_groups
,
515 "card%d-%s", dev
->primary
->index
,
517 DRM_DEBUG("adding \"%s\" to sysfs\n",
520 if (IS_ERR(connector
->kdev
)) {
521 DRM_ERROR("failed to register connector device: %ld\n", PTR_ERR(connector
->kdev
));
522 return PTR_ERR(connector
->kdev
);
525 /* Let userspace know we have a new connector */
526 drm_sysfs_hotplug_event(dev
);
532 * drm_sysfs_connector_remove - remove an connector device from sysfs
533 * @connector: connector to remove
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.
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.
544 void drm_sysfs_connector_remove(struct drm_connector
*connector
)
546 if (!connector
->kdev
)
548 DRM_DEBUG("removing \"%s\" from sysfs\n",
551 device_unregister(connector
->kdev
);
552 connector
->kdev
= NULL
;
556 * drm_sysfs_hotplug_event - generate a DRM uevent
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.
563 void drm_sysfs_hotplug_event(struct drm_device
*dev
)
565 char *event_string
= "HOTPLUG=1";
566 char *envp
[] = { event_string
, NULL
};
568 DRM_DEBUG("generating hotplug event\n");
570 kobject_uevent_env(&dev
->primary
->kdev
->kobj
, KOBJ_CHANGE
, envp
);
572 EXPORT_SYMBOL(drm_sysfs_hotplug_event
);
574 static void drm_sysfs_release(struct device
*dev
)
580 * drm_sysfs_minor_alloc() - Allocate sysfs device for given minor
581 * @minor: minor to allocate sysfs device for
583 * 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.
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.
593 struct device
*drm_sysfs_minor_alloc(struct drm_minor
*minor
)
595 const char *minor_str
;
599 if (minor
->type
== DRM_MINOR_CONTROL
)
600 minor_str
= "controlD%d";
601 else if (minor
->type
== DRM_MINOR_RENDER
)
602 minor_str
= "renderD%d";
604 minor_str
= "card%d";
606 kdev
= kzalloc(sizeof(*kdev
), GFP_KERNEL
);
608 return ERR_PTR(-ENOMEM
);
610 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
);
618 r
= dev_set_name(kdev
, minor_str
, minor
->index
);
630 * drm_class_device_register - Register a struct device in the drm class.
632 * @dev: pointer to struct device to register.
634 * @dev should have all relevant members pre-filled with the exception
635 * of the class member. In particular, the device_type member must
639 int drm_class_device_register(struct device
*dev
)
641 if (!drm_class
|| IS_ERR(drm_class
))
644 dev
->class = drm_class
;
645 return device_register(dev
);
647 EXPORT_SYMBOL_GPL(drm_class_device_register
);
649 void drm_class_device_unregister(struct device
*dev
)
651 return device_unregister(dev
);
653 EXPORT_SYMBOL_GPL(drm_class_device_unregister
);