drm_platform.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. /*
  2. * Derived from drm_pci.c
  3. *
  4. * Copyright 2003 José Fonseca.
  5. * Copyright 2003 Leif Delgass.
  6. * Copyright (c) 2009, The Linux Foundation.
  7. * All Rights Reserved.
  8. *
  9. * Permission is hereby granted, free of charge, to any person obtaining a
  10. * copy of this software and associated documentation files (the "Software"),
  11. * to deal in the Software without restriction, including without limitation
  12. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  13. * and/or sell copies of the Software, and to permit persons to whom the
  14. * Software is furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice (including the next
  17. * paragraph) shall be included in all copies or substantial portions of the
  18. * Software.
  19. *
  20. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  21. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  22. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  23. * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  24. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  25. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  26. */
  27. #include <linux/export.h>
  28. #include "drmP.h"
  29. /**
  30. * Register.
  31. *
  32. * \param platdev - Platform device struture
  33. * \return zero on success or a negative number on failure.
  34. *
  35. * Attempt to gets inter module "drm" information. If we are first
  36. * then register the character device and inter module information.
  37. * Try and register, if we fail to register, backout previous work.
  38. */
  39. int drm_get_platform_dev(struct platform_device *platdev,
  40. struct drm_driver *driver)
  41. {
  42. struct drm_device *dev;
  43. int ret;
  44. DRM_DEBUG("\n");
  45. dev = kzalloc(sizeof(*dev), GFP_KERNEL);
  46. if (!dev)
  47. return -ENOMEM;
  48. dev->platformdev = platdev;
  49. dev->dev = &platdev->dev;
  50. mutex_lock(&drm_global_mutex);
  51. ret = drm_fill_in_dev(dev, NULL, driver);
  52. if (ret) {
  53. printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
  54. goto err_g1;
  55. }
  56. if (drm_core_check_feature(dev, DRIVER_MODESET)) {
  57. dev_set_drvdata(&platdev->dev, dev);
  58. ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL);
  59. if (ret)
  60. goto err_g1;
  61. }
  62. ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY);
  63. if (ret)
  64. goto err_g2;
  65. if (dev->driver->load) {
  66. ret = dev->driver->load(dev, 0);
  67. if (ret)
  68. goto err_g3;
  69. }
  70. /* setup the grouping for the legacy output */
  71. if (drm_core_check_feature(dev, DRIVER_MODESET)) {
  72. ret = drm_mode_group_init_legacy_group(dev,
  73. &dev->primary->mode_group);
  74. if (ret)
  75. goto err_g3;
  76. }
  77. list_add_tail(&dev->driver_item, &driver->device_list);
  78. mutex_unlock(&drm_global_mutex);
  79. DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
  80. driver->name, driver->major, driver->minor, driver->patchlevel,
  81. driver->date, dev->primary->index);
  82. return 0;
  83. err_g3:
  84. drm_put_minor(&dev->primary);
  85. err_g2:
  86. if (drm_core_check_feature(dev, DRIVER_MODESET))
  87. drm_put_minor(&dev->control);
  88. err_g1:
  89. kfree(dev);
  90. mutex_unlock(&drm_global_mutex);
  91. return ret;
  92. }
  93. EXPORT_SYMBOL(drm_get_platform_dev);
  94. static int drm_platform_get_irq(struct drm_device *dev)
  95. {
  96. return platform_get_irq(dev->platformdev, 0);
  97. }
  98. static const char *drm_platform_get_name(struct drm_device *dev)
  99. {
  100. return dev->platformdev->name;
  101. }
  102. static int drm_platform_set_busid(struct drm_device *dev, struct drm_master *master)
  103. {
  104. int len, ret, id;
  105. master->unique_len = 13 + strlen(dev->platformdev->name);
  106. master->unique_size = master->unique_len;
  107. master->unique = kmalloc(master->unique_len + 1, GFP_KERNEL);
  108. if (master->unique == NULL)
  109. return -ENOMEM;
  110. id = dev->platformdev->id;
  111. /* if only a single instance of the platform device, id will be
  112. * set to -1.. use 0 instead to avoid a funny looking bus-id:
  113. */
  114. if (id == -1)
  115. id = 0;
  116. len = snprintf(master->unique, master->unique_len,
  117. "platform:%s:%02d", dev->platformdev->name, id);
  118. if (len > master->unique_len) {
  119. DRM_ERROR("Unique buffer overflowed\n");
  120. ret = -EINVAL;
  121. goto err;
  122. }
  123. dev->devname =
  124. kmalloc(strlen(dev->platformdev->name) +
  125. master->unique_len + 2, GFP_KERNEL);
  126. if (dev->devname == NULL) {
  127. ret = -ENOMEM;
  128. goto err;
  129. }
  130. sprintf(dev->devname, "%s@%s", dev->platformdev->name,
  131. master->unique);
  132. return 0;
  133. err:
  134. return ret;
  135. }
  136. static struct drm_bus drm_platform_bus = {
  137. .bus_type = DRIVER_BUS_PLATFORM,
  138. .get_irq = drm_platform_get_irq,
  139. .get_name = drm_platform_get_name,
  140. .set_busid = drm_platform_set_busid,
  141. };
  142. /**
  143. * Platform device initialization. Called direct from modules.
  144. *
  145. * \return zero on success or a negative number on failure.
  146. *
  147. * Initializes a drm_device structures,registering the
  148. * stubs
  149. *
  150. * Expands the \c DRIVER_PREINIT and \c DRIVER_POST_INIT macros before and
  151. * after the initialization for driver customization.
  152. */
  153. int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device)
  154. {
  155. DRM_DEBUG("\n");
  156. driver->kdriver.platform_device = platform_device;
  157. driver->bus = &drm_platform_bus;
  158. INIT_LIST_HEAD(&driver->device_list);
  159. return drm_get_platform_dev(platform_device, driver);
  160. }
  161. EXPORT_SYMBOL(drm_platform_init);
  162. void drm_platform_exit(struct drm_driver *driver, struct platform_device *platform_device)
  163. {
  164. struct drm_device *dev, *tmp;
  165. DRM_DEBUG("\n");
  166. list_for_each_entry_safe(dev, tmp, &driver->device_list, driver_item)
  167. drm_put_dev(dev);
  168. DRM_INFO("Module unloaded\n");
  169. }
  170. EXPORT_SYMBOL(drm_platform_exit);