nouveau_prime.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * Copyright 2011 Red Hat 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. * Authors: Dave Airlie
  23. */
  24. #include <drm/drmP.h>
  25. #include <linux/dma-buf.h>
  26. #include "nouveau_drm.h"
  27. #include "nouveau_gem.h"
  28. struct sg_table *nouveau_gem_prime_get_sg_table(struct drm_gem_object *obj)
  29. {
  30. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  31. int npages = nvbo->bo.num_pages;
  32. return drm_prime_pages_to_sg(nvbo->bo.ttm->pages, npages);
  33. }
  34. void *nouveau_gem_prime_vmap(struct drm_gem_object *obj)
  35. {
  36. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  37. int ret;
  38. ret = ttm_bo_kmap(&nvbo->bo, 0, nvbo->bo.num_pages,
  39. &nvbo->dma_buf_vmap);
  40. if (ret)
  41. return ERR_PTR(ret);
  42. return nvbo->dma_buf_vmap.virtual;
  43. }
  44. void nouveau_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr)
  45. {
  46. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  47. ttm_bo_kunmap(&nvbo->dma_buf_vmap);
  48. }
  49. struct drm_gem_object *nouveau_gem_prime_import_sg_table(struct drm_device *dev,
  50. struct dma_buf_attachment *attach,
  51. struct sg_table *sg)
  52. {
  53. struct nouveau_bo *nvbo;
  54. struct reservation_object *robj = attach->dmabuf->resv;
  55. u32 flags = 0;
  56. int ret;
  57. flags = TTM_PL_FLAG_TT;
  58. ww_mutex_lock(&robj->lock, NULL);
  59. ret = nouveau_bo_new(dev, attach->dmabuf->size, 0, flags, 0, 0,
  60. sg, robj, &nvbo);
  61. ww_mutex_unlock(&robj->lock);
  62. if (ret)
  63. return ERR_PTR(ret);
  64. nvbo->valid_domains = NOUVEAU_GEM_DOMAIN_GART;
  65. /* Initialize the embedded gem-object. We return a single gem-reference
  66. * to the caller, instead of a normal nouveau_bo ttm reference. */
  67. ret = drm_gem_object_init(dev, &nvbo->gem, nvbo->bo.mem.size);
  68. if (ret) {
  69. nouveau_bo_ref(NULL, &nvbo);
  70. return ERR_PTR(-ENOMEM);
  71. }
  72. return &nvbo->gem;
  73. }
  74. int nouveau_gem_prime_pin(struct drm_gem_object *obj)
  75. {
  76. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  77. int ret;
  78. /* pin buffer into GTT */
  79. ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_TT, false);
  80. if (ret)
  81. return -EINVAL;
  82. return 0;
  83. }
  84. void nouveau_gem_prime_unpin(struct drm_gem_object *obj)
  85. {
  86. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  87. nouveau_bo_unpin(nvbo);
  88. }
  89. struct reservation_object *nouveau_gem_prime_res_obj(struct drm_gem_object *obj)
  90. {
  91. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  92. return nvbo->bo.resv;
  93. }