nouveau_prime.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 "nouveau_drm.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. int npages = nvbo->bo.num_pages;
  31. return drm_prime_pages_to_sg(nvbo->bo.ttm->pages, npages);
  32. }
  33. void *nouveau_gem_prime_vmap(struct drm_gem_object *obj)
  34. {
  35. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  36. int ret;
  37. ret = ttm_bo_kmap(&nvbo->bo, 0, nvbo->bo.num_pages,
  38. &nvbo->dma_buf_vmap);
  39. if (ret)
  40. return ERR_PTR(ret);
  41. return nvbo->dma_buf_vmap.virtual;
  42. }
  43. void nouveau_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr)
  44. {
  45. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  46. ttm_bo_kunmap(&nvbo->dma_buf_vmap);
  47. }
  48. struct drm_gem_object *nouveau_gem_prime_import_sg_table(struct drm_device *dev,
  49. size_t size,
  50. struct sg_table *sg)
  51. {
  52. struct nouveau_bo *nvbo;
  53. u32 flags = 0;
  54. int ret;
  55. flags = TTM_PL_FLAG_TT;
  56. ret = nouveau_bo_new(dev, size, 0, flags, 0, 0,
  57. sg, &nvbo);
  58. if (ret)
  59. return ERR_PTR(ret);
  60. nvbo->valid_domains = NOUVEAU_GEM_DOMAIN_GART;
  61. nvbo->gem = drm_gem_object_alloc(dev, nvbo->bo.mem.size);
  62. if (!nvbo->gem) {
  63. nouveau_bo_ref(NULL, &nvbo);
  64. return ERR_PTR(-ENOMEM);
  65. }
  66. nvbo->gem->driver_private = nvbo;
  67. return nvbo->gem;
  68. }
  69. int nouveau_gem_prime_pin(struct drm_gem_object *obj)
  70. {
  71. struct nouveau_bo *nvbo = nouveau_gem_object(obj);
  72. int ret = 0;
  73. /* pin buffer into GTT */
  74. ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_TT);
  75. if (ret)
  76. return -EINVAL;
  77. return 0;
  78. }