nouveau_prime.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 <linux/dma-buf.h>
  25. #include "nouveau_drv.h"
  26. #include "nouveau_gem.h"
  27. struct sg_table *nouveau_gem_prime_get_sg_table(struct drm_gem_object *obj)
  28. {
  29. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  30. return drm_prime_pages_to_sg(obj->dev, nvbo->bo.ttm->pages,
  31. nvbo->bo.ttm->num_pages);
  32. }
  33. struct drm_gem_object *nouveau_gem_prime_import_sg_table(struct drm_device *dev,
  34. struct dma_buf_attachment *attach,
  35. struct sg_table *sg)
  36. {
  37. struct nouveau_drm *drm = nouveau_drm(dev);
  38. struct drm_gem_object *obj;
  39. struct nouveau_bo *nvbo;
  40. struct dma_resv *robj = attach->dmabuf->resv;
  41. u64 size = attach->dmabuf->size;
  42. int align = 0;
  43. int ret;
  44. dma_resv_lock(robj, NULL);
  45. nvbo = nouveau_bo_alloc(&drm->client, &size, &align,
  46. NOUVEAU_GEM_DOMAIN_GART, 0, 0);
  47. if (IS_ERR(nvbo)) {
  48. obj = ERR_CAST(nvbo);
  49. goto unlock;
  50. }
  51. nvbo->valid_domains = NOUVEAU_GEM_DOMAIN_GART;
  52. nvbo->bo.base.funcs = &nouveau_gem_object_funcs;
  53. /* Initialize the embedded gem-object. We return a single gem-reference
  54. * to the caller, instead of a normal nouveau_bo ttm reference. */
  55. ret = drm_gem_object_init(dev, &nvbo->bo.base, size);
  56. if (ret) {
  57. nouveau_bo_ref(NULL, &nvbo);
  58. obj = ERR_PTR(-ENOMEM);
  59. goto unlock;
  60. }
  61. ret = nouveau_bo_init(nvbo, size, align, NOUVEAU_GEM_DOMAIN_GART,
  62. sg, robj);
  63. if (ret) {
  64. obj = ERR_PTR(ret);
  65. goto unlock;
  66. }
  67. obj = &nvbo->bo.base;
  68. unlock:
  69. dma_resv_unlock(robj);
  70. return obj;
  71. }
  72. int nouveau_gem_prime_pin(struct drm_gem_object *obj)
  73. {
  74. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  75. int ret;
  76. /* pin buffer into GTT */
  77. ret = nouveau_bo_pin(nvbo, NOUVEAU_GEM_DOMAIN_GART, false);
  78. if (ret)
  79. return -EINVAL;
  80. return 0;
  81. }
  82. void nouveau_gem_prime_unpin(struct drm_gem_object *obj)
  83. {
  84. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  85. nouveau_bo_unpin(nvbo);
  86. }