nouveau_ttm.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. int
  29. nouveau_ttm_mmap(struct file *filp, struct vm_area_struct *vma)
  30. {
  31. struct drm_file *file_priv = filp->private_data;
  32. struct drm_nouveau_private *dev_priv =
  33. file_priv->minor->dev->dev_private;
  34. if (unlikely(vma->vm_pgoff < DRM_FILE_PAGE_OFFSET))
  35. return drm_mmap(filp, vma);
  36. return ttm_bo_mmap(filp, vma, &dev_priv->ttm.bdev);
  37. }
  38. static int
  39. nouveau_ttm_mem_global_init(struct ttm_global_reference *ref)
  40. {
  41. return ttm_mem_global_init(ref->object);
  42. }
  43. static void
  44. nouveau_ttm_mem_global_release(struct ttm_global_reference *ref)
  45. {
  46. ttm_mem_global_release(ref->object);
  47. }
  48. int
  49. nouveau_ttm_global_init(struct drm_nouveau_private *dev_priv)
  50. {
  51. struct ttm_global_reference *global_ref;
  52. int ret;
  53. global_ref = &dev_priv->ttm.mem_global_ref;
  54. global_ref->global_type = TTM_GLOBAL_TTM_MEM;
  55. global_ref->size = sizeof(struct ttm_mem_global);
  56. global_ref->init = &nouveau_ttm_mem_global_init;
  57. global_ref->release = &nouveau_ttm_mem_global_release;
  58. ret = ttm_global_item_ref(global_ref);
  59. if (unlikely(ret != 0)) {
  60. DRM_ERROR("Failed setting up TTM memory accounting\n");
  61. dev_priv->ttm.mem_global_ref.release = NULL;
  62. return ret;
  63. }
  64. dev_priv->ttm.bo_global_ref.mem_glob = global_ref->object;
  65. global_ref = &dev_priv->ttm.bo_global_ref.ref;
  66. global_ref->global_type = TTM_GLOBAL_TTM_BO;
  67. global_ref->size = sizeof(struct ttm_bo_global);
  68. global_ref->init = &ttm_bo_global_init;
  69. global_ref->release = &ttm_bo_global_release;
  70. ret = ttm_global_item_ref(global_ref);
  71. if (unlikely(ret != 0)) {
  72. DRM_ERROR("Failed setting up TTM BO subsystem\n");
  73. ttm_global_item_unref(&dev_priv->ttm.mem_global_ref);
  74. dev_priv->ttm.mem_global_ref.release = NULL;
  75. return ret;
  76. }
  77. return 0;
  78. }
  79. void
  80. nouveau_ttm_global_release(struct drm_nouveau_private *dev_priv)
  81. {
  82. if (dev_priv->ttm.mem_global_ref.release == NULL)
  83. return;
  84. ttm_global_item_unref(&dev_priv->ttm.bo_global_ref.ref);
  85. ttm_global_item_unref(&dev_priv->ttm.mem_global_ref);
  86. dev_priv->ttm.mem_global_ref.release = NULL;
  87. }