nouveau_notifier.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * Copyright (C) 2007 Ben Skeggs.
  3. *
  4. * All Rights Reserved.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining
  7. * a copy of this software and associated documentation files (the
  8. * "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sublicense, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * 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
  16. * portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  19. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  20. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  21. * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
  22. * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  23. * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  24. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. *
  26. */
  27. #include "drmP.h"
  28. #include "nouveau_drv.h"
  29. #include "nouveau_ramht.h"
  30. int
  31. nouveau_notifier_init_channel(struct nouveau_channel *chan)
  32. {
  33. struct drm_device *dev = chan->dev;
  34. struct drm_nouveau_private *dev_priv = dev->dev_private;
  35. struct nouveau_bo *ntfy = NULL;
  36. uint32_t flags, ttmpl;
  37. int ret;
  38. if (nouveau_vram_notify) {
  39. flags = NOUVEAU_GEM_DOMAIN_VRAM;
  40. ttmpl = TTM_PL_FLAG_VRAM;
  41. } else {
  42. flags = NOUVEAU_GEM_DOMAIN_GART;
  43. ttmpl = TTM_PL_FLAG_TT;
  44. }
  45. ret = nouveau_gem_new(dev, PAGE_SIZE, 0, flags, 0, 0, &ntfy);
  46. if (ret)
  47. return ret;
  48. ret = nouveau_bo_pin(ntfy, ttmpl);
  49. if (ret)
  50. goto out_err;
  51. ret = nouveau_bo_map(ntfy);
  52. if (ret)
  53. goto out_err;
  54. if (dev_priv->card_type >= NV_50) {
  55. ret = nouveau_bo_vma_add(ntfy, chan->vm, &chan->notifier_vma);
  56. if (ret)
  57. goto out_err;
  58. }
  59. ret = drm_mm_init(&chan->notifier_heap, 0, ntfy->bo.mem.size);
  60. if (ret)
  61. goto out_err;
  62. chan->notifier_bo = ntfy;
  63. out_err:
  64. if (ret) {
  65. nouveau_bo_vma_del(ntfy, &chan->notifier_vma);
  66. drm_gem_object_unreference_unlocked(ntfy->gem);
  67. }
  68. return ret;
  69. }
  70. void
  71. nouveau_notifier_takedown_channel(struct nouveau_channel *chan)
  72. {
  73. struct drm_device *dev = chan->dev;
  74. if (!chan->notifier_bo)
  75. return;
  76. nouveau_bo_vma_del(chan->notifier_bo, &chan->notifier_vma);
  77. nouveau_bo_unmap(chan->notifier_bo);
  78. mutex_lock(&dev->struct_mutex);
  79. nouveau_bo_unpin(chan->notifier_bo);
  80. mutex_unlock(&dev->struct_mutex);
  81. drm_gem_object_unreference_unlocked(chan->notifier_bo->gem);
  82. drm_mm_takedown(&chan->notifier_heap);
  83. }
  84. static void
  85. nouveau_notifier_gpuobj_dtor(struct drm_device *dev,
  86. struct nouveau_gpuobj *gpuobj)
  87. {
  88. NV_DEBUG(dev, "\n");
  89. if (gpuobj->priv)
  90. drm_mm_put_block(gpuobj->priv);
  91. }
  92. int
  93. nouveau_notifier_alloc(struct nouveau_channel *chan, uint32_t handle,
  94. int size, uint32_t start, uint32_t end,
  95. uint32_t *b_offset)
  96. {
  97. struct drm_device *dev = chan->dev;
  98. struct drm_nouveau_private *dev_priv = dev->dev_private;
  99. struct nouveau_gpuobj *nobj = NULL;
  100. struct drm_mm_node *mem;
  101. uint64_t offset;
  102. int target, ret;
  103. mem = drm_mm_search_free_in_range(&chan->notifier_heap, size, 0,
  104. start, end, 0);
  105. if (mem)
  106. mem = drm_mm_get_block_range(mem, size, 0, start, end);
  107. if (!mem) {
  108. NV_ERROR(dev, "Channel %d notifier block full\n", chan->id);
  109. return -ENOMEM;
  110. }
  111. if (dev_priv->card_type < NV_50) {
  112. if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_VRAM)
  113. target = NV_MEM_TARGET_VRAM;
  114. else
  115. target = NV_MEM_TARGET_GART;
  116. offset = chan->notifier_bo->bo.offset;
  117. } else {
  118. target = NV_MEM_TARGET_VM;
  119. offset = chan->notifier_vma.offset;
  120. }
  121. offset += mem->start;
  122. ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, offset,
  123. mem->size, NV_MEM_ACCESS_RW, target,
  124. &nobj);
  125. if (ret) {
  126. drm_mm_put_block(mem);
  127. NV_ERROR(dev, "Error creating notifier ctxdma: %d\n", ret);
  128. return ret;
  129. }
  130. nobj->dtor = nouveau_notifier_gpuobj_dtor;
  131. nobj->priv = mem;
  132. ret = nouveau_ramht_insert(chan, handle, nobj);
  133. nouveau_gpuobj_ref(NULL, &nobj);
  134. if (ret) {
  135. drm_mm_put_block(mem);
  136. NV_ERROR(dev, "Error adding notifier to ramht: %d\n", ret);
  137. return ret;
  138. }
  139. *b_offset = mem->start;
  140. return 0;
  141. }