nouveau_prime.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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 "drmP.h"
  25. #include "drm.h"
  26. #include "nouveau_drv.h"
  27. #include "nouveau_drm.h"
  28. #include "nouveau_dma.h"
  29. #include <linux/dma-buf.h>
  30. static struct sg_table *nouveau_gem_map_dma_buf(struct dma_buf_attachment *attachment,
  31. enum dma_data_direction dir)
  32. {
  33. struct nouveau_bo *nvbo = attachment->dmabuf->priv;
  34. struct drm_device *dev = nvbo->gem->dev;
  35. int npages = nvbo->bo.num_pages;
  36. struct sg_table *sg;
  37. int nents;
  38. mutex_lock(&dev->struct_mutex);
  39. sg = drm_prime_pages_to_sg(nvbo->bo.ttm->pages, npages);
  40. nents = dma_map_sg(attachment->dev, sg->sgl, sg->nents, dir);
  41. mutex_unlock(&dev->struct_mutex);
  42. return sg;
  43. }
  44. static void nouveau_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
  45. struct sg_table *sg, enum dma_data_direction dir)
  46. {
  47. dma_unmap_sg(attachment->dev, sg->sgl, sg->nents, dir);
  48. sg_free_table(sg);
  49. kfree(sg);
  50. }
  51. static void nouveau_gem_dmabuf_release(struct dma_buf *dma_buf)
  52. {
  53. struct nouveau_bo *nvbo = dma_buf->priv;
  54. if (nvbo->gem->export_dma_buf == dma_buf) {
  55. nvbo->gem->export_dma_buf = NULL;
  56. drm_gem_object_unreference_unlocked(nvbo->gem);
  57. }
  58. }
  59. static void *nouveau_gem_kmap_atomic(struct dma_buf *dma_buf, unsigned long page_num)
  60. {
  61. return NULL;
  62. }
  63. static void nouveau_gem_kunmap_atomic(struct dma_buf *dma_buf, unsigned long page_num, void *addr)
  64. {
  65. }
  66. static void *nouveau_gem_kmap(struct dma_buf *dma_buf, unsigned long page_num)
  67. {
  68. return NULL;
  69. }
  70. static void nouveau_gem_kunmap(struct dma_buf *dma_buf, unsigned long page_num, void *addr)
  71. {
  72. }
  73. static int nouveau_gem_prime_mmap(struct dma_buf *dma_buf, struct vm_area_struct *vma)
  74. {
  75. return -EINVAL;
  76. }
  77. static void *nouveau_gem_prime_vmap(struct dma_buf *dma_buf)
  78. {
  79. struct nouveau_bo *nvbo = dma_buf->priv;
  80. struct drm_device *dev = nvbo->gem->dev;
  81. int ret;
  82. mutex_lock(&dev->struct_mutex);
  83. if (nvbo->vmapping_count) {
  84. nvbo->vmapping_count++;
  85. goto out_unlock;
  86. }
  87. ret = ttm_bo_kmap(&nvbo->bo, 0, nvbo->bo.num_pages,
  88. &nvbo->dma_buf_vmap);
  89. if (ret) {
  90. mutex_unlock(&dev->struct_mutex);
  91. return ERR_PTR(ret);
  92. }
  93. nvbo->vmapping_count = 1;
  94. out_unlock:
  95. mutex_unlock(&dev->struct_mutex);
  96. return nvbo->dma_buf_vmap.virtual;
  97. }
  98. static void nouveau_gem_prime_vunmap(struct dma_buf *dma_buf, void *vaddr)
  99. {
  100. struct nouveau_bo *nvbo = dma_buf->priv;
  101. struct drm_device *dev = nvbo->gem->dev;
  102. mutex_lock(&dev->struct_mutex);
  103. nvbo->vmapping_count--;
  104. if (nvbo->vmapping_count == 0) {
  105. ttm_bo_kunmap(&nvbo->dma_buf_vmap);
  106. }
  107. mutex_unlock(&dev->struct_mutex);
  108. }
  109. static const struct dma_buf_ops nouveau_dmabuf_ops = {
  110. .map_dma_buf = nouveau_gem_map_dma_buf,
  111. .unmap_dma_buf = nouveau_gem_unmap_dma_buf,
  112. .release = nouveau_gem_dmabuf_release,
  113. .kmap = nouveau_gem_kmap,
  114. .kmap_atomic = nouveau_gem_kmap_atomic,
  115. .kunmap = nouveau_gem_kunmap,
  116. .kunmap_atomic = nouveau_gem_kunmap_atomic,
  117. .mmap = nouveau_gem_prime_mmap,
  118. .vmap = nouveau_gem_prime_vmap,
  119. .vunmap = nouveau_gem_prime_vunmap,
  120. };
  121. static int
  122. nouveau_prime_new(struct drm_device *dev,
  123. size_t size,
  124. struct sg_table *sg,
  125. struct nouveau_bo **pnvbo)
  126. {
  127. struct nouveau_bo *nvbo;
  128. u32 flags = 0;
  129. int ret;
  130. flags = TTM_PL_FLAG_TT;
  131. ret = nouveau_bo_new(dev, size, 0, flags, 0, 0,
  132. sg, pnvbo);
  133. if (ret)
  134. return ret;
  135. nvbo = *pnvbo;
  136. /* we restrict allowed domains on nv50+ to only the types
  137. * that were requested at creation time. not possibly on
  138. * earlier chips without busting the ABI.
  139. */
  140. nvbo->valid_domains = NOUVEAU_GEM_DOMAIN_GART;
  141. nvbo->gem = drm_gem_object_alloc(dev, nvbo->bo.mem.size);
  142. if (!nvbo->gem) {
  143. nouveau_bo_ref(NULL, pnvbo);
  144. return -ENOMEM;
  145. }
  146. nvbo->gem->driver_private = nvbo;
  147. return 0;
  148. }
  149. struct dma_buf *nouveau_gem_prime_export(struct drm_device *dev,
  150. struct drm_gem_object *obj, int flags)
  151. {
  152. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  153. int ret = 0;
  154. /* pin buffer into GTT */
  155. ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_TT);
  156. if (ret)
  157. return ERR_PTR(-EINVAL);
  158. return dma_buf_export(nvbo, &nouveau_dmabuf_ops, obj->size, flags);
  159. }
  160. struct drm_gem_object *nouveau_gem_prime_import(struct drm_device *dev,
  161. struct dma_buf *dma_buf)
  162. {
  163. struct dma_buf_attachment *attach;
  164. struct sg_table *sg;
  165. struct nouveau_bo *nvbo;
  166. int ret;
  167. if (dma_buf->ops == &nouveau_dmabuf_ops) {
  168. nvbo = dma_buf->priv;
  169. if (nvbo->gem) {
  170. if (nvbo->gem->dev == dev) {
  171. drm_gem_object_reference(nvbo->gem);
  172. return nvbo->gem;
  173. }
  174. }
  175. }
  176. /* need to attach */
  177. attach = dma_buf_attach(dma_buf, dev->dev);
  178. if (IS_ERR(attach))
  179. return ERR_PTR(PTR_ERR(attach));
  180. sg = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL);
  181. if (IS_ERR(sg)) {
  182. ret = PTR_ERR(sg);
  183. goto fail_detach;
  184. }
  185. ret = nouveau_prime_new(dev, dma_buf->size, sg, &nvbo);
  186. if (ret)
  187. goto fail_unmap;
  188. nvbo->gem->import_attach = attach;
  189. return nvbo->gem;
  190. fail_unmap:
  191. dma_buf_unmap_attachment(attach, sg, DMA_BIDIRECTIONAL);
  192. fail_detach:
  193. dma_buf_detach(dma_buf, attach);
  194. return ERR_PTR(ret);
  195. }