radeon_prime.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /*
  2. * Copyright 2012 Advanced Micro Devices, Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. * based on nouveau_prime.c
  23. *
  24. * Authors: Alex Deucher
  25. */
  26. #include "drmP.h"
  27. #include "drm.h"
  28. #include "radeon.h"
  29. #include "radeon_drm.h"
  30. #include <linux/dma-buf.h>
  31. static struct sg_table *radeon_gem_map_dma_buf(struct dma_buf_attachment *attachment,
  32. enum dma_data_direction dir)
  33. {
  34. struct radeon_bo *bo = attachment->dmabuf->priv;
  35. struct drm_device *dev = bo->rdev->ddev;
  36. int npages = bo->tbo.num_pages;
  37. struct sg_table *sg;
  38. int nents;
  39. mutex_lock(&dev->struct_mutex);
  40. sg = drm_prime_pages_to_sg(bo->tbo.ttm->pages, npages);
  41. nents = dma_map_sg(attachment->dev, sg->sgl, sg->nents, dir);
  42. mutex_unlock(&dev->struct_mutex);
  43. return sg;
  44. }
  45. static void radeon_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
  46. struct sg_table *sg, enum dma_data_direction dir)
  47. {
  48. dma_unmap_sg(attachment->dev, sg->sgl, sg->nents, dir);
  49. sg_free_table(sg);
  50. kfree(sg);
  51. }
  52. static void radeon_gem_dmabuf_release(struct dma_buf *dma_buf)
  53. {
  54. struct radeon_bo *bo = dma_buf->priv;
  55. if (bo->gem_base.export_dma_buf == dma_buf) {
  56. DRM_ERROR("unreference dmabuf %p\n", &bo->gem_base);
  57. bo->gem_base.export_dma_buf = NULL;
  58. drm_gem_object_unreference_unlocked(&bo->gem_base);
  59. }
  60. }
  61. static void *radeon_gem_kmap_atomic(struct dma_buf *dma_buf, unsigned long page_num)
  62. {
  63. return NULL;
  64. }
  65. static void radeon_gem_kunmap_atomic(struct dma_buf *dma_buf, unsigned long page_num, void *addr)
  66. {
  67. }
  68. static void *radeon_gem_kmap(struct dma_buf *dma_buf, unsigned long page_num)
  69. {
  70. return NULL;
  71. }
  72. static void radeon_gem_kunmap(struct dma_buf *dma_buf, unsigned long page_num, void *addr)
  73. {
  74. }
  75. static int radeon_gem_prime_mmap(struct dma_buf *dma_buf, struct vm_area_struct *vma)
  76. {
  77. return -EINVAL;
  78. }
  79. const static struct dma_buf_ops radeon_dmabuf_ops = {
  80. .map_dma_buf = radeon_gem_map_dma_buf,
  81. .unmap_dma_buf = radeon_gem_unmap_dma_buf,
  82. .release = radeon_gem_dmabuf_release,
  83. .kmap = radeon_gem_kmap,
  84. .kmap_atomic = radeon_gem_kmap_atomic,
  85. .kunmap = radeon_gem_kunmap,
  86. .kunmap_atomic = radeon_gem_kunmap_atomic,
  87. .mmap = radeon_gem_prime_mmap,
  88. };
  89. static int radeon_prime_create(struct drm_device *dev,
  90. size_t size,
  91. struct sg_table *sg,
  92. struct radeon_bo **pbo)
  93. {
  94. struct radeon_device *rdev = dev->dev_private;
  95. struct radeon_bo *bo;
  96. int ret;
  97. ret = radeon_bo_create(rdev, size, PAGE_SIZE, false,
  98. RADEON_GEM_DOMAIN_GTT, sg, pbo);
  99. if (ret)
  100. return ret;
  101. bo = *pbo;
  102. bo->gem_base.driver_private = bo;
  103. mutex_lock(&rdev->gem.mutex);
  104. list_add_tail(&bo->list, &rdev->gem.objects);
  105. mutex_unlock(&rdev->gem.mutex);
  106. return 0;
  107. }
  108. struct dma_buf *radeon_gem_prime_export(struct drm_device *dev,
  109. struct drm_gem_object *obj,
  110. int flags)
  111. {
  112. struct radeon_bo *bo = gem_to_radeon_bo(obj);
  113. int ret = 0;
  114. /* pin buffer into GTT */
  115. ret = radeon_bo_pin(bo, RADEON_GEM_DOMAIN_GTT, NULL);
  116. if (ret)
  117. return ERR_PTR(ret);
  118. return dma_buf_export(bo, &radeon_dmabuf_ops, obj->size, flags);
  119. }
  120. struct drm_gem_object *radeon_gem_prime_import(struct drm_device *dev,
  121. struct dma_buf *dma_buf)
  122. {
  123. struct dma_buf_attachment *attach;
  124. struct sg_table *sg;
  125. struct radeon_bo *bo;
  126. int ret;
  127. if (dma_buf->ops == &radeon_dmabuf_ops) {
  128. bo = dma_buf->priv;
  129. if (bo->gem_base.dev == dev) {
  130. drm_gem_object_reference(&bo->gem_base);
  131. return &bo->gem_base;
  132. }
  133. }
  134. /* need to attach */
  135. attach = dma_buf_attach(dma_buf, dev->dev);
  136. if (IS_ERR(attach))
  137. return ERR_CAST(attach);
  138. sg = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL);
  139. if (IS_ERR(sg)) {
  140. ret = PTR_ERR(sg);
  141. goto fail_detach;
  142. }
  143. ret = radeon_prime_create(dev, dma_buf->size, sg, &bo);
  144. if (ret)
  145. goto fail_unmap;
  146. bo->gem_base.import_attach = attach;
  147. return &bo->gem_base;
  148. fail_unmap:
  149. dma_buf_unmap_attachment(attach, sg, DMA_BIDIRECTIONAL);
  150. fail_detach:
  151. dma_buf_detach(dma_buf, attach);
  152. return ERR_PTR(ret);
  153. }