drm_sysfs.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * drm_sysfs.c - Modifications to drm_sysfs_class.c to support
  3. * extra sysfs attribute from DRM. Normal drm_sysfs_class
  4. * does not allow adding attributes.
  5. *
  6. * Copyright (c) 2004 Jon Smirl <jonsmirl@gmail.com>
  7. * Copyright (c) 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
  8. * Copyright (c) 2003-2004 IBM Corp.
  9. *
  10. * This file is released under the GPLv2
  11. *
  12. */
  13. #include <linux/device.h>
  14. #include <linux/kdev_t.h>
  15. #include <linux/err.h>
  16. #include "drm_core.h"
  17. #include "drmP.h"
  18. /* Display the version of drm_core. This doesn't work right in current design */
  19. static ssize_t version_show(struct class *dev, char *buf)
  20. {
  21. return sprintf(buf, "%s %d.%d.%d %s\n", CORE_NAME, CORE_MAJOR,
  22. CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
  23. }
  24. static CLASS_ATTR(version, S_IRUGO, version_show, NULL);
  25. /**
  26. * drm_sysfs_create - create a struct drm_sysfs_class structure
  27. * @owner: pointer to the module that is to "own" this struct drm_sysfs_class
  28. * @name: pointer to a string for the name of this class.
  29. *
  30. * This is used to create a struct drm_sysfs_class pointer that can then be used
  31. * in calls to drm_sysfs_device_add().
  32. *
  33. * Note, the pointer created here is to be destroyed when finished by making a
  34. * call to drm_sysfs_destroy().
  35. */
  36. struct class *drm_sysfs_create(struct module *owner, char *name)
  37. {
  38. struct class *class;
  39. int err;
  40. class = class_create(owner, name);
  41. if (IS_ERR(class)) {
  42. err = PTR_ERR(class);
  43. goto err_out;
  44. }
  45. err = class_create_file(class, &class_attr_version);
  46. if (err)
  47. goto err_out_class;
  48. return class;
  49. err_out_class:
  50. class_destroy(class);
  51. err_out:
  52. return ERR_PTR(err);
  53. }
  54. /**
  55. * drm_sysfs_destroy - destroys a struct drm_sysfs_class structure
  56. * @cs: pointer to the struct drm_sysfs_class that is to be destroyed
  57. *
  58. * Note, the pointer to be destroyed must have been created with a call to
  59. * drm_sysfs_create().
  60. */
  61. void drm_sysfs_destroy(struct class *class)
  62. {
  63. if ((class == NULL) || (IS_ERR(class)))
  64. return;
  65. class_remove_file(class, &class_attr_version);
  66. class_destroy(class);
  67. }
  68. static ssize_t show_dri(struct class_device *class_device, char *buf)
  69. {
  70. struct drm_device * dev = ((struct drm_head *)class_get_devdata(class_device))->dev;
  71. if (dev->driver->dri_library_name)
  72. return dev->driver->dri_library_name(dev, buf);
  73. return snprintf(buf, PAGE_SIZE, "%s\n", dev->driver->pci_driver.name);
  74. }
  75. static struct class_device_attribute class_device_attrs[] = {
  76. __ATTR(dri_library_name, S_IRUGO, show_dri, NULL),
  77. };
  78. /**
  79. * drm_sysfs_device_add - adds a class device to sysfs for a character driver
  80. * @cs: pointer to the struct class that this device should be registered to.
  81. * @dev: the dev_t for the device to be added.
  82. * @device: a pointer to a struct device that is assiociated with this class device.
  83. * @fmt: string for the class device's name
  84. *
  85. * A struct class_device will be created in sysfs, registered to the specified
  86. * class. A "dev" file will be created, showing the dev_t for the device. The
  87. * pointer to the struct class_device will be returned from the call. Any further
  88. * sysfs files that might be required can be created using this pointer.
  89. * Note: the struct class passed to this function must have previously been
  90. * created with a call to drm_sysfs_create().
  91. */
  92. struct class_device *drm_sysfs_device_add(struct class *cs, struct drm_head *head)
  93. {
  94. struct class_device *class_dev;
  95. int i, j, err;
  96. class_dev = class_device_create(cs, NULL,
  97. MKDEV(DRM_MAJOR, head->minor),
  98. &(head->dev->pdev)->dev,
  99. "card%d", head->minor);
  100. if (IS_ERR(class_dev)) {
  101. err = PTR_ERR(class_dev);
  102. goto err_out;
  103. }
  104. class_set_devdata(class_dev, head);
  105. for (i = 0; i < ARRAY_SIZE(class_device_attrs); i++) {
  106. err = class_device_create_file(class_dev,
  107. &class_device_attrs[i]);
  108. if (err)
  109. goto err_out_files;
  110. }
  111. return class_dev;
  112. err_out_files:
  113. if (i > 0)
  114. for (j = 0; j < i; j++)
  115. class_device_remove_file(class_dev,
  116. &class_device_attrs[i]);
  117. class_device_unregister(class_dev);
  118. err_out:
  119. return ERR_PTR(err);
  120. }
  121. /**
  122. * drm_sysfs_device_remove - removes a class device that was created with drm_sysfs_device_add()
  123. * @dev: the dev_t of the device that was previously registered.
  124. *
  125. * This call unregisters and cleans up a class device that was created with a
  126. * call to drm_sysfs_device_add()
  127. */
  128. void drm_sysfs_device_remove(struct class_device *class_dev)
  129. {
  130. int i;
  131. for (i = 0; i < ARRAY_SIZE(class_device_attrs); i++)
  132. class_device_remove_file(class_dev, &class_device_attrs[i]);
  133. class_device_unregister(class_dev);
  134. }