nouveau_ttm.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * Copyright (c) 2007-2008 Tungsten Graphics, Inc., Cedar Park, TX., USA,
  3. * All Rights Reserved.
  4. * Copyright (c) 2009 VMware, Inc., Palo Alto, CA., USA,
  5. * All Rights Reserved.
  6. *
  7. * Permission is hereby granted, free of charge, to any person obtaining a
  8. * copy of this software and associated documentation files (the "Software"),
  9. * to deal in the Software without restriction, including without limitation
  10. * the rights to use, copy, modify, merge, publish, distribute, sub license,
  11. * and/or sell copies of the Software, and to permit persons to whom the
  12. * Software is furnished to do so, subject to the following conditions:
  13. *
  14. * The above copyright notice and this permission notice (including the
  15. * next paragraph) shall be included in all copies or substantial portions
  16. * of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
  21. * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
  22. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  23. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  24. * USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. */
  26. #include "drmP.h"
  27. #include "nouveau_drv.h"
  28. static struct vm_operations_struct nouveau_ttm_vm_ops;
  29. static const struct vm_operations_struct *ttm_vm_ops;
  30. static int
  31. nouveau_ttm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
  32. {
  33. struct ttm_buffer_object *bo = vma->vm_private_data;
  34. int ret;
  35. if (unlikely(bo == NULL))
  36. return VM_FAULT_NOPAGE;
  37. ret = ttm_vm_ops->fault(vma, vmf);
  38. return ret;
  39. }
  40. int
  41. nouveau_ttm_mmap(struct file *filp, struct vm_area_struct *vma)
  42. {
  43. struct drm_file *file_priv = filp->private_data;
  44. struct drm_nouveau_private *dev_priv =
  45. file_priv->minor->dev->dev_private;
  46. int ret;
  47. if (unlikely(vma->vm_pgoff < DRM_FILE_PAGE_OFFSET))
  48. return drm_mmap(filp, vma);
  49. ret = ttm_bo_mmap(filp, vma, &dev_priv->ttm.bdev);
  50. if (unlikely(ret != 0))
  51. return ret;
  52. if (unlikely(ttm_vm_ops == NULL)) {
  53. ttm_vm_ops = vma->vm_ops;
  54. nouveau_ttm_vm_ops = *ttm_vm_ops;
  55. nouveau_ttm_vm_ops.fault = &nouveau_ttm_fault;
  56. }
  57. vma->vm_ops = &nouveau_ttm_vm_ops;
  58. return 0;
  59. }
  60. static int
  61. nouveau_ttm_mem_global_init(struct ttm_global_reference *ref)
  62. {
  63. return ttm_mem_global_init(ref->object);
  64. }
  65. static void
  66. nouveau_ttm_mem_global_release(struct ttm_global_reference *ref)
  67. {
  68. ttm_mem_global_release(ref->object);
  69. }
  70. int
  71. nouveau_ttm_global_init(struct drm_nouveau_private *dev_priv)
  72. {
  73. struct ttm_global_reference *global_ref;
  74. int ret;
  75. global_ref = &dev_priv->ttm.mem_global_ref;
  76. global_ref->global_type = TTM_GLOBAL_TTM_MEM;
  77. global_ref->size = sizeof(struct ttm_mem_global);
  78. global_ref->init = &nouveau_ttm_mem_global_init;
  79. global_ref->release = &nouveau_ttm_mem_global_release;
  80. ret = ttm_global_item_ref(global_ref);
  81. if (unlikely(ret != 0)) {
  82. DRM_ERROR("Failed setting up TTM memory accounting\n");
  83. dev_priv->ttm.mem_global_ref.release = NULL;
  84. return ret;
  85. }
  86. dev_priv->ttm.bo_global_ref.mem_glob = global_ref->object;
  87. global_ref = &dev_priv->ttm.bo_global_ref.ref;
  88. global_ref->global_type = TTM_GLOBAL_TTM_BO;
  89. global_ref->size = sizeof(struct ttm_bo_global);
  90. global_ref->init = &ttm_bo_global_init;
  91. global_ref->release = &ttm_bo_global_release;
  92. ret = ttm_global_item_ref(global_ref);
  93. if (unlikely(ret != 0)) {
  94. DRM_ERROR("Failed setting up TTM BO subsystem\n");
  95. ttm_global_item_unref(&dev_priv->ttm.mem_global_ref);
  96. dev_priv->ttm.mem_global_ref.release = NULL;
  97. return ret;
  98. }
  99. return 0;
  100. }
  101. void
  102. nouveau_ttm_global_release(struct drm_nouveau_private *dev_priv)
  103. {
  104. if (dev_priv->ttm.mem_global_ref.release == NULL)
  105. return;
  106. ttm_global_item_unref(&dev_priv->ttm.bo_global_ref.ref);
  107. ttm_global_item_unref(&dev_priv->ttm.mem_global_ref);
  108. dev_priv->ttm.mem_global_ref.release = NULL;
  109. }