radeon_prime.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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 <linux/dma-buf.h>
  27. #include <drm/drm_prime.h>
  28. #include <drm/radeon_drm.h>
  29. #include "radeon.h"
  30. #include "radeon_prime.h"
  31. struct sg_table *radeon_gem_prime_get_sg_table(struct drm_gem_object *obj)
  32. {
  33. struct radeon_bo *bo = gem_to_radeon_bo(obj);
  34. return drm_prime_pages_to_sg(obj->dev, bo->tbo.ttm->pages,
  35. bo->tbo.ttm->num_pages);
  36. }
  37. struct drm_gem_object *radeon_gem_prime_import_sg_table(struct drm_device *dev,
  38. struct dma_buf_attachment *attach,
  39. struct sg_table *sg)
  40. {
  41. struct dma_resv *resv = attach->dmabuf->resv;
  42. struct radeon_device *rdev = dev->dev_private;
  43. struct radeon_bo *bo;
  44. int ret;
  45. dma_resv_lock(resv, NULL);
  46. ret = radeon_bo_create(rdev, attach->dmabuf->size, PAGE_SIZE, false,
  47. RADEON_GEM_DOMAIN_GTT, 0, sg, resv, &bo);
  48. dma_resv_unlock(resv);
  49. if (ret)
  50. return ERR_PTR(ret);
  51. bo->tbo.base.funcs = &radeon_gem_object_funcs;
  52. mutex_lock(&rdev->gem.mutex);
  53. list_add_tail(&bo->list, &rdev->gem.objects);
  54. mutex_unlock(&rdev->gem.mutex);
  55. bo->prime_shared_count = 1;
  56. return &bo->tbo.base;
  57. }
  58. int radeon_gem_prime_pin(struct drm_gem_object *obj)
  59. {
  60. struct radeon_bo *bo = gem_to_radeon_bo(obj);
  61. int ret = 0;
  62. ret = radeon_bo_reserve(bo, false);
  63. if (unlikely(ret != 0))
  64. return ret;
  65. /* pin buffer into GTT */
  66. ret = radeon_bo_pin(bo, RADEON_GEM_DOMAIN_GTT, NULL);
  67. if (likely(ret == 0))
  68. bo->prime_shared_count++;
  69. radeon_bo_unreserve(bo);
  70. return ret;
  71. }
  72. void radeon_gem_prime_unpin(struct drm_gem_object *obj)
  73. {
  74. struct radeon_bo *bo = gem_to_radeon_bo(obj);
  75. int ret = 0;
  76. ret = radeon_bo_reserve(bo, false);
  77. if (unlikely(ret != 0))
  78. return;
  79. radeon_bo_unpin(bo);
  80. if (bo->prime_shared_count)
  81. bo->prime_shared_count--;
  82. radeon_bo_unreserve(bo);
  83. }
  84. struct dma_buf *radeon_gem_prime_export(struct drm_gem_object *gobj,
  85. int flags)
  86. {
  87. struct radeon_bo *bo = gem_to_radeon_bo(gobj);
  88. if (radeon_ttm_tt_has_userptr(bo->rdev, bo->tbo.ttm))
  89. return ERR_PTR(-EPERM);
  90. return drm_gem_prime_export(gobj, flags);
  91. }