drm_platform.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * Derived from drm_pci.c
  3. *
  4. * Copyright 2003 José Fonseca.
  5. * Copyright 2003 Leif Delgass.
  6. * Copyright (c) 2009, Code Aurora Forum.
  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 "drmP.h"
  28. /**
  29. * Register.
  30. *
  31. * \param platdev - Platform device struture
  32. * \return zero on success or a negative number on failure.
  33. *
  34. * Attempt to gets inter module "drm" information. If we are first
  35. * then register the character device and inter module information.
  36. * Try and register, if we fail to register, backout previous work.
  37. */
  38. int drm_get_platform_dev(struct platform_device *platdev,
  39. struct drm_driver *driver)
  40. {
  41. struct drm_device *dev;
  42. int ret;
  43. DRM_DEBUG("\n");
  44. dev = kzalloc(sizeof(*dev), GFP_KERNEL);
  45. if (!dev)
  46. return -ENOMEM;
  47. dev->platformdev = platdev;
  48. dev->dev = &platdev->dev;
  49. mutex_lock(&drm_global_mutex);
  50. ret = drm_fill_in_dev(dev, NULL, driver);
  51. if (ret) {
  52. printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
  53. goto err_g1;
  54. }
  55. if (drm_core_check_feature(dev, DRIVER_MODESET)) {
  56. dev_set_drvdata(&platdev->dev, dev);
  57. ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL);
  58. if (ret)
  59. goto err_g1;
  60. }
  61. ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY);
  62. if (ret)
  63. goto err_g2;
  64. if (dev->driver->load) {
  65. ret = dev->driver->load(dev, 0);
  66. if (ret)
  67. goto err_g3;
  68. }
  69. /* setup the grouping for the legacy output */
  70. if (drm_core_check_feature(dev, DRIVER_MODESET)) {
  71. ret = drm_mode_group_init_legacy_group(dev,
  72. &dev->primary->mode_group);
  73. if (ret)
  74. goto err_g3;
  75. }
  76. list_add_tail(&dev->driver_item, &driver->device_list);
  77. mutex_unlock(&drm_global_mutex);
  78. DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
  79. driver->name, driver->major, driver->minor, driver->patchlevel,
  80. driver->date, dev->primary->index);
  81. return 0;
  82. err_g3:
  83. drm_put_minor(&dev->primary);
  84. err_g2:
  85. if (drm_core_check_feature(dev, DRIVER_MODESET))
  86. drm_put_minor(&dev->control);
  87. err_g1:
  88. kfree(dev);
  89. mutex_unlock(&drm_global_mutex);
  90. return ret;
  91. }
  92. EXPORT_SYMBOL(drm_get_platform_dev);
  93. static int drm_platform_get_irq(struct drm_device *dev)
  94. {
  95. return platform_get_irq(dev->platformdev, 0);
  96. }
  97. static const char *drm_platform_get_name(struct drm_device *dev)
  98. {
  99. return dev->platformdev->name;
  100. }
  101. static int drm_platform_set_busid(struct drm_device *dev, struct drm_master *master)
  102. {
  103. int len, ret;
  104. master->unique_len = 10 + strlen(dev->platformdev->name);
  105. master->unique = kmalloc(master->unique_len + 1, GFP_KERNEL);
  106. if (master->unique == NULL)
  107. return -ENOMEM;
  108. len = snprintf(master->unique, master->unique_len,
  109. "platform:%s", dev->platformdev->name);
  110. if (len > master->unique_len) {
  111. DRM_ERROR("Unique buffer overflowed\n");
  112. ret = -EINVAL;
  113. goto err;
  114. }
  115. dev->devname =
  116. kmalloc(strlen(dev->platformdev->name) +
  117. master->unique_len + 2, GFP_KERNEL);
  118. if (dev->devname == NULL) {
  119. ret = -ENOMEM;
  120. goto err;
  121. }
  122. sprintf(dev->devname, "%s@%s", dev->platformdev->name,
  123. master->unique);
  124. return 0;
  125. err:
  126. return ret;
  127. }
  128. static struct drm_bus drm_platform_bus = {
  129. .bus_type = DRIVER_BUS_PLATFORM,
  130. .get_irq = drm_platform_get_irq,
  131. .get_name = drm_platform_get_name,
  132. .set_busid = drm_platform_set_busid,
  133. };
  134. /**
  135. * Platform device initialization. Called direct from modules.
  136. *
  137. * \return zero on success or a negative number on failure.
  138. *
  139. * Initializes a drm_device structures,registering the
  140. * stubs
  141. *
  142. * Expands the \c DRIVER_PREINIT and \c DRIVER_POST_INIT macros before and
  143. * after the initialization for driver customization.
  144. */
  145. int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device)
  146. {
  147. DRM_DEBUG("\n");
  148. driver->kdriver.platform_device = platform_device;
  149. driver->bus = &drm_platform_bus;
  150. INIT_LIST_HEAD(&driver->device_list);
  151. return drm_get_platform_dev(platform_device, driver);
  152. }
  153. EXPORT_SYMBOL(drm_platform_init);
  154. void drm_platform_exit(struct drm_driver *driver, struct platform_device *platform_device)
  155. {
  156. struct drm_device *dev, *tmp;
  157. DRM_DEBUG("\n");
  158. list_for_each_entry_safe(dev, tmp, &driver->device_list, driver_item)
  159. drm_put_dev(dev);
  160. DRM_INFO("Module unloaded\n");
  161. }
  162. EXPORT_SYMBOL(drm_platform_exit);