drm_platform.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 <linux/export.h>
  28. #include <drm/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. static 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 = drm_dev_alloc(driver, &platdev->dev);
  46. if (!dev)
  47. return -ENOMEM;
  48. dev->platformdev = platdev;
  49. ret = drm_dev_register(dev, 0);
  50. if (ret)
  51. goto err_free;
  52. DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
  53. driver->name, driver->major, driver->minor, driver->patchlevel,
  54. driver->date, dev->primary->index);
  55. return 0;
  56. err_free:
  57. drm_dev_unref(dev);
  58. return ret;
  59. }
  60. int drm_platform_set_busid(struct drm_device *dev, struct drm_master *master)
  61. {
  62. int id;
  63. id = dev->platformdev->id;
  64. if (id < 0)
  65. id = 0;
  66. master->unique = kasprintf(GFP_KERNEL, "platform:%s:%02d",
  67. dev->platformdev->name, id);
  68. if (!master->unique)
  69. return -ENOMEM;
  70. master->unique_len = strlen(master->unique);
  71. return 0;
  72. }
  73. EXPORT_SYMBOL(drm_platform_set_busid);
  74. /**
  75. * drm_platform_init - Register a platform device with the DRM subsystem
  76. * @driver: DRM device driver
  77. * @platform_device: platform device to register
  78. *
  79. * Registers the specified DRM device driver and platform device with the DRM
  80. * subsystem, initializing a drm_device structure and calling the driver's
  81. * .load() function.
  82. *
  83. * NOTE: This function is deprecated, please use drm_dev_alloc() and
  84. * drm_dev_register() instead and remove your ->load() callback.
  85. *
  86. * Return: 0 on success or a negative error code on failure.
  87. */
  88. int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device)
  89. {
  90. DRM_DEBUG("\n");
  91. return drm_get_platform_dev(platform_device, driver);
  92. }
  93. EXPORT_SYMBOL(drm_platform_init);