blob: 480546b542fedfc8dca9fb9ba654fc3033cc7f8e [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>
17#include <linux/err.h>
18
19#include "drm_core.h"
Dave Airlief2109732005-09-05 21:33:44 +100020#include "drmP.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Dave Airlie2c14f282008-04-21 16:47:32 +100022#define to_drm_minor(d) container_of(d, struct drm_minor, kdev)
Dave Airlief453ba02008-11-07 14:05:41 -080023#define to_drm_connector(d) container_of(d, struct drm_connector, kdev)
Jesse Barnese8b962b2007-11-22 14:02:38 +100024
25/**
26 * drm_sysfs_suspend - DRM class suspend hook
27 * @dev: Linux device to suspend
28 * @state: power state to enter
29 *
30 * Just figures out what the actual struct drm_device associated with
31 * @dev is and calls its suspend hook, if present.
32 */
33static int drm_sysfs_suspend(struct device *dev, pm_message_t state)
34{
Dave Airlie2c14f282008-04-21 16:47:32 +100035 struct drm_minor *drm_minor = to_drm_minor(dev);
36 struct drm_device *drm_dev = drm_minor->dev;
Jesse Barnese8b962b2007-11-22 14:02:38 +100037
Kristian Høgsberg112b7152009-01-04 16:55:33 -050038 if (drm_minor->type == DRM_MINOR_LEGACY &&
39 !drm_core_check_feature(drm_dev, DRIVER_MODESET) &&
40 drm_dev->driver->suspend)
Dave Airlieb932ccb2008-02-20 10:02:20 +100041 return drm_dev->driver->suspend(drm_dev, state);
Jesse Barnese8b962b2007-11-22 14:02:38 +100042
43 return 0;
44}
45
46/**
47 * drm_sysfs_resume - DRM class resume hook
48 * @dev: Linux device to resume
49 *
50 * Just figures out what the actual struct drm_device associated with
51 * @dev is and calls its resume hook, if present.
52 */
53static int drm_sysfs_resume(struct device *dev)
54{
Dave Airlie2c14f282008-04-21 16:47:32 +100055 struct drm_minor *drm_minor = to_drm_minor(dev);
56 struct drm_device *drm_dev = drm_minor->dev;
Jesse Barnese8b962b2007-11-22 14:02:38 +100057
Kristian Høgsberg112b7152009-01-04 16:55:33 -050058 if (drm_minor->type == DRM_MINOR_LEGACY &&
59 !drm_core_check_feature(drm_dev, DRIVER_MODESET) &&
60 drm_dev->driver->resume)
Jesse Barnese8b962b2007-11-22 14:02:38 +100061 return drm_dev->driver->resume(drm_dev);
62
63 return 0;
64}
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/* Display the version of drm_core. This doesn't work right in current design */
67static ssize_t version_show(struct class *dev, char *buf)
68{
69 return sprintf(buf, "%s %d.%d.%d %s\n", CORE_NAME, CORE_MAJOR,
70 CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
71}
72
73static CLASS_ATTR(version, S_IRUGO, version_show, NULL);
74
75/**
76 * drm_sysfs_create - create a struct drm_sysfs_class structure
77 * @owner: pointer to the module that is to "own" this struct drm_sysfs_class
78 * @name: pointer to a string for the name of this class.
79 *
Jesse Barnese8b962b2007-11-22 14:02:38 +100080 * This is used to create DRM class pointer that can then be used
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 * in calls to drm_sysfs_device_add().
82 *
83 * Note, the pointer created here is to be destroyed when finished by making a
84 * call to drm_sysfs_destroy().
85 */
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -080086struct class *drm_sysfs_create(struct module *owner, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -080088 struct class *class;
Jeff Garzik24f73c92006-10-10 14:23:37 -070089 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -080091 class = class_create(owner, name);
Akinobu Mita94f060b2006-12-09 10:49:47 +110092 if (IS_ERR(class)) {
93 err = PTR_ERR(class);
Jeff Garzik24f73c92006-10-10 14:23:37 -070094 goto err_out;
95 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Jesse Barnese8b962b2007-11-22 14:02:38 +100097 class->suspend = drm_sysfs_suspend;
98 class->resume = drm_sysfs_resume;
99
Jeff Garzik24f73c92006-10-10 14:23:37 -0700100 err = class_create_file(class, &class_attr_version);
101 if (err)
102 goto err_out_class;
103
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -0800104 return class;
Jeff Garzik24f73c92006-10-10 14:23:37 -0700105
106err_out_class:
107 class_destroy(class);
108err_out:
109 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
112/**
Jesse Barnese8b962b2007-11-22 14:02:38 +1000113 * drm_sysfs_destroy - destroys DRM class
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 *
Jesse Barnese8b962b2007-11-22 14:02:38 +1000115 * Destroy the DRM device class.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 */
Jesse Barnese8b962b2007-11-22 14:02:38 +1000117void drm_sysfs_destroy(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Jesse Barnese8b962b2007-11-22 14:02:38 +1000119 if ((drm_class == NULL) || (IS_ERR(drm_class)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return;
Jesse Barnese8b962b2007-11-22 14:02:38 +1000121 class_remove_file(drm_class, &class_attr_version);
122 class_destroy(drm_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Jesse Barnese8b962b2007-11-22 14:02:38 +1000125static ssize_t show_dri(struct device *device, struct device_attribute *attr,
126 char *buf)
Dave Airlie732052e2005-11-11 22:07:35 +1100127{
Dave Airlie2c14f282008-04-21 16:47:32 +1000128 struct drm_minor *drm_minor = to_drm_minor(device);
129 struct drm_device *drm_dev = drm_minor->dev;
130 if (drm_dev->driver->dri_library_name)
131 return drm_dev->driver->dri_library_name(drm_dev, buf);
132 return snprintf(buf, PAGE_SIZE, "%s\n", drm_dev->driver->pci_driver.name);
Dave Airlie732052e2005-11-11 22:07:35 +1100133}
134
Jesse Barnese8b962b2007-11-22 14:02:38 +1000135static struct device_attribute device_attrs[] = {
Dave Airlie732052e2005-11-11 22:07:35 +1100136 __ATTR(dri_library_name, S_IRUGO, show_dri, NULL),
137};
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/**
Jesse Barnese8b962b2007-11-22 14:02:38 +1000140 * drm_sysfs_device_release - do nothing
141 * @dev: Linux device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 *
Jesse Barnese8b962b2007-11-22 14:02:38 +1000143 * Normally, this would free the DRM device associated with @dev, along
144 * with cleaning up any other stuff. But we do that in the DRM core, so
145 * this function can just return and hope that the core does its job.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 */
Jesse Barnese8b962b2007-11-22 14:02:38 +1000147static void drm_sysfs_device_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Jesse Barnese8b962b2007-11-22 14:02:38 +1000149 return;
150}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Dave Airlief453ba02008-11-07 14:05:41 -0800152/*
153 * Connector properties
154 */
155static ssize_t status_show(struct device *device,
156 struct device_attribute *attr,
157 char *buf)
158{
159 struct drm_connector *connector = to_drm_connector(device);
160 enum drm_connector_status status;
161
162 status = connector->funcs->detect(connector);
163 return snprintf(buf, PAGE_SIZE, "%s",
164 drm_get_connector_status_name(status));
165}
166
167static ssize_t dpms_show(struct device *device,
168 struct device_attribute *attr,
169 char *buf)
170{
171 struct drm_connector *connector = to_drm_connector(device);
172 struct drm_device *dev = connector->dev;
173 uint64_t dpms_status;
174 int ret;
175
176 ret = drm_connector_property_get_value(connector,
177 dev->mode_config.dpms_property,
178 &dpms_status);
179 if (ret)
180 return 0;
181
182 return snprintf(buf, PAGE_SIZE, "%s",
183 drm_get_dpms_name((int)dpms_status));
184}
185
186static ssize_t enabled_show(struct device *device,
187 struct device_attribute *attr,
188 char *buf)
189{
190 struct drm_connector *connector = to_drm_connector(device);
191
192 return snprintf(buf, PAGE_SIZE, connector->encoder ? "enabled" :
193 "disabled");
194}
195
196static ssize_t edid_show(struct kobject *kobj, struct bin_attribute *attr,
197 char *buf, loff_t off, size_t count)
198{
199 struct device *connector_dev = container_of(kobj, struct device, kobj);
200 struct drm_connector *connector = to_drm_connector(connector_dev);
201 unsigned char *edid;
202 size_t size;
203
204 if (!connector->edid_blob_ptr)
205 return 0;
206
207 edid = connector->edid_blob_ptr->data;
208 size = connector->edid_blob_ptr->length;
209 if (!edid)
210 return 0;
211
212 if (off >= size)
213 return 0;
214
215 if (off + count > size)
216 count = size - off;
217 memcpy(buf, edid + off, count);
218
219 return count;
220}
221
222static ssize_t modes_show(struct device *device,
223 struct device_attribute *attr,
224 char *buf)
225{
226 struct drm_connector *connector = to_drm_connector(device);
227 struct drm_display_mode *mode;
228 int written = 0;
229
230 list_for_each_entry(mode, &connector->modes, head) {
231 written += snprintf(buf + written, PAGE_SIZE - written, "%s\n",
232 mode->name);
233 }
234
235 return written;
236}
237
238static ssize_t subconnector_show(struct device *device,
239 struct device_attribute *attr,
240 char *buf)
241{
242 struct drm_connector *connector = to_drm_connector(device);
243 struct drm_device *dev = connector->dev;
244 struct drm_property *prop = NULL;
245 uint64_t subconnector;
246 int is_tv = 0;
247 int ret;
248
249 switch (connector->connector_type) {
250 case DRM_MODE_CONNECTOR_DVII:
251 prop = dev->mode_config.dvi_i_subconnector_property;
252 break;
253 case DRM_MODE_CONNECTOR_Composite:
254 case DRM_MODE_CONNECTOR_SVIDEO:
255 case DRM_MODE_CONNECTOR_Component:
256 prop = dev->mode_config.tv_subconnector_property;
257 is_tv = 1;
258 break;
259 default:
260 DRM_ERROR("Wrong connector type for this property\n");
261 return 0;
262 }
263
264 if (!prop) {
265 DRM_ERROR("Unable to find subconnector property\n");
266 return 0;
267 }
268
269 ret = drm_connector_property_get_value(connector, prop, &subconnector);
270 if (ret)
271 return 0;
272
273 return snprintf(buf, PAGE_SIZE, "%s", is_tv ?
274 drm_get_tv_subconnector_name((int)subconnector) :
275 drm_get_dvi_i_subconnector_name((int)subconnector));
276}
277
278static ssize_t select_subconnector_show(struct device *device,
279 struct device_attribute *attr,
280 char *buf)
281{
282 struct drm_connector *connector = to_drm_connector(device);
283 struct drm_device *dev = connector->dev;
284 struct drm_property *prop = NULL;
285 uint64_t subconnector;
286 int is_tv = 0;
287 int ret;
288
289 switch (connector->connector_type) {
290 case DRM_MODE_CONNECTOR_DVII:
291 prop = dev->mode_config.dvi_i_select_subconnector_property;
292 break;
293 case DRM_MODE_CONNECTOR_Composite:
294 case DRM_MODE_CONNECTOR_SVIDEO:
295 case DRM_MODE_CONNECTOR_Component:
296 prop = dev->mode_config.tv_select_subconnector_property;
297 is_tv = 1;
298 break;
299 default:
300 DRM_ERROR("Wrong connector type for this property\n");
301 return 0;
302 }
303
304 if (!prop) {
305 DRM_ERROR("Unable to find select subconnector property\n");
306 return 0;
307 }
308
309 ret = drm_connector_property_get_value(connector, prop, &subconnector);
310 if (ret)
311 return 0;
312
313 return snprintf(buf, PAGE_SIZE, "%s", is_tv ?
314 drm_get_tv_select_name((int)subconnector) :
315 drm_get_dvi_i_select_name((int)subconnector));
316}
317
318static struct device_attribute connector_attrs[] = {
319 __ATTR_RO(status),
320 __ATTR_RO(enabled),
321 __ATTR_RO(dpms),
322 __ATTR_RO(modes),
323};
324
325/* These attributes are for both DVI-I connectors and all types of tv-out. */
326static struct device_attribute connector_attrs_opt1[] = {
327 __ATTR_RO(subconnector),
328 __ATTR_RO(select_subconnector),
329};
330
331static struct bin_attribute edid_attr = {
332 .attr.name = "edid",
333 .size = 128,
334 .read = edid_show,
335};
336
337/**
338 * drm_sysfs_connector_add - add an connector to sysfs
339 * @connector: connector to add
340 *
341 * Create an connector device in sysfs, along with its associated connector
342 * properties (so far, connection status, dpms, mode list & edid) and
343 * generate a hotplug event so userspace knows there's a new connector
344 * available.
345 *
346 * Note:
347 * This routine should only be called *once* for each DRM minor registered.
348 * A second call for an already registered device will trigger the BUG_ON
349 * below.
350 */
351int drm_sysfs_connector_add(struct drm_connector *connector)
352{
353 struct drm_device *dev = connector->dev;
354 int ret = 0, i, j;
355
356 /* We shouldn't get called more than once for the same connector */
357 BUG_ON(device_is_registered(&connector->kdev));
358
359 connector->kdev.parent = &dev->primary->kdev;
360 connector->kdev.class = drm_class;
361 connector->kdev.release = drm_sysfs_device_release;
362
363 DRM_DEBUG("adding \"%s\" to sysfs\n",
364 drm_get_connector_name(connector));
365
366 snprintf(connector->kdev.bus_id, BUS_ID_SIZE, "card%d-%s",
367 dev->primary->index, drm_get_connector_name(connector));
368 ret = device_register(&connector->kdev);
369
370 if (ret) {
371 DRM_ERROR("failed to register connector device: %d\n", ret);
372 goto out;
373 }
374
375 /* Standard attributes */
376
377 for (i = 0; i < ARRAY_SIZE(connector_attrs); i++) {
378 ret = device_create_file(&connector->kdev, &connector_attrs[i]);
379 if (ret)
380 goto err_out_files;
381 }
382
383 /* Optional attributes */
384 /*
385 * In the long run it maybe a good idea to make one set of
386 * optionals per connector type.
387 */
388 switch (connector->connector_type) {
389 case DRM_MODE_CONNECTOR_DVII:
390 case DRM_MODE_CONNECTOR_Composite:
391 case DRM_MODE_CONNECTOR_SVIDEO:
392 case DRM_MODE_CONNECTOR_Component:
393 for (i = 0; i < ARRAY_SIZE(connector_attrs_opt1); i++) {
394 ret = device_create_file(&connector->kdev, &connector_attrs_opt1[i]);
395 if (ret)
396 goto err_out_files;
397 }
398 break;
399 default:
400 break;
401 }
402
403 ret = sysfs_create_bin_file(&connector->kdev.kobj, &edid_attr);
404 if (ret)
405 goto err_out_files;
406
407 /* Let userspace know we have a new connector */
408 drm_sysfs_hotplug_event(dev);
409
410 return 0;
411
412err_out_files:
413 if (i > 0)
414 for (j = 0; j < i; j++)
415 device_remove_file(&connector->kdev,
416 &connector_attrs[i]);
417 device_unregister(&connector->kdev);
418
419out:
420 return ret;
421}
422EXPORT_SYMBOL(drm_sysfs_connector_add);
423
424/**
425 * drm_sysfs_connector_remove - remove an connector device from sysfs
426 * @connector: connector to remove
427 *
428 * Remove @connector and its associated attributes from sysfs. Note that
429 * the device model core will take care of sending the "remove" uevent
430 * at this time, so we don't need to do it.
431 *
432 * Note:
433 * This routine should only be called if the connector was previously
434 * successfully registered. If @connector hasn't been registered yet,
435 * you'll likely see a panic somewhere deep in sysfs code when called.
436 */
437void drm_sysfs_connector_remove(struct drm_connector *connector)
438{
439 int i;
440
441 DRM_DEBUG("removing \"%s\" from sysfs\n",
442 drm_get_connector_name(connector));
443
444 for (i = 0; i < ARRAY_SIZE(connector_attrs); i++)
445 device_remove_file(&connector->kdev, &connector_attrs[i]);
446 sysfs_remove_bin_file(&connector->kdev.kobj, &edid_attr);
447 device_unregister(&connector->kdev);
448}
449EXPORT_SYMBOL(drm_sysfs_connector_remove);
450
451/**
452 * drm_sysfs_hotplug_event - generate a DRM uevent
453 * @dev: DRM device
454 *
455 * Send a uevent for the DRM device specified by @dev. Currently we only
456 * set HOTPLUG=1 in the uevent environment, but this could be expanded to
457 * deal with other types of events.
458 */
459void drm_sysfs_hotplug_event(struct drm_device *dev)
460{
461 char *event_string = "HOTPLUG=1";
462 char *envp[] = { event_string, NULL };
463
464 DRM_DEBUG("generating hotplug event\n");
465
466 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, envp);
467}
468
Jesse Barnese8b962b2007-11-22 14:02:38 +1000469/**
470 * drm_sysfs_device_add - adds a class device to sysfs for a character driver
471 * @dev: DRM device to be added
472 * @head: DRM head in question
473 *
474 * Add a DRM device to the DRM's device model class. We use @dev's PCI device
475 * as the parent for the Linux device, and make sure it has a file containing
476 * the driver we're using (for userspace compatibility).
477 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000478int drm_sysfs_device_add(struct drm_minor *minor)
Jesse Barnese8b962b2007-11-22 14:02:38 +1000479{
480 int err;
481 int i, j;
Dave Airlie2c14f282008-04-21 16:47:32 +1000482 char *minor_str;
Jesse Barnese8b962b2007-11-22 14:02:38 +1000483
Dave Airlie2c14f282008-04-21 16:47:32 +1000484 minor->kdev.parent = &minor->dev->pdev->dev;
485 minor->kdev.class = drm_class;
486 minor->kdev.release = drm_sysfs_device_release;
487 minor->kdev.devt = minor->device;
Dave Airlief453ba02008-11-07 14:05:41 -0800488 if (minor->type == DRM_MINOR_CONTROL)
489 minor_str = "controlD%d";
490 else if (minor->type == DRM_MINOR_RENDER)
491 minor_str = "renderD%d";
492 else
493 minor_str = "card%d";
Jesse Barnese8b962b2007-11-22 14:02:38 +1000494
Kay Sievers8f4bbd92009-01-06 10:44:41 -0800495 dev_set_name(&minor->kdev, minor_str, minor->index);
Dave Airlie2c14f282008-04-21 16:47:32 +1000496
497 err = device_register(&minor->kdev);
Jesse Barnese8b962b2007-11-22 14:02:38 +1000498 if (err) {
499 DRM_ERROR("device add failed: %d\n", err);
Jeff Garzik24f73c92006-10-10 14:23:37 -0700500 goto err_out;
501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Jesse Barnese8b962b2007-11-22 14:02:38 +1000503 for (i = 0; i < ARRAY_SIZE(device_attrs); i++) {
Dave Airlie2c14f282008-04-21 16:47:32 +1000504 err = device_create_file(&minor->kdev, &device_attrs[i]);
Jeff Garzik24f73c92006-10-10 14:23:37 -0700505 if (err)
506 goto err_out_files;
507 }
508
Jesse Barnese8b962b2007-11-22 14:02:38 +1000509 return 0;
Jeff Garzik24f73c92006-10-10 14:23:37 -0700510
511err_out_files:
512 if (i > 0)
513 for (j = 0; j < i; j++)
Dave Airlie38eda212008-09-02 10:06:06 +1000514 device_remove_file(&minor->kdev, &device_attrs[j]);
Dave Airlie2c14f282008-04-21 16:47:32 +1000515 device_unregister(&minor->kdev);
Jeff Garzik24f73c92006-10-10 14:23:37 -0700516err_out:
Jesse Barnese8b962b2007-11-22 14:02:38 +1000517
518 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
521/**
Jesse Barnese8b962b2007-11-22 14:02:38 +1000522 * drm_sysfs_device_remove - remove DRM device
523 * @dev: DRM device to remove
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 *
525 * This call unregisters and cleans up a class device that was created with a
526 * call to drm_sysfs_device_add()
527 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000528void drm_sysfs_device_remove(struct drm_minor *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Dave Airlie732052e2005-11-11 22:07:35 +1100530 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Jesse Barnese8b962b2007-11-22 14:02:38 +1000532 for (i = 0; i < ARRAY_SIZE(device_attrs); i++)
Dave Airlie2c14f282008-04-21 16:47:32 +1000533 device_remove_file(&minor->kdev, &device_attrs[i]);
534 device_unregister(&minor->kdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}