nouveau_notifier.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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 "drm.h"
  29. #include "nouveau_drv.h"
  30. #include "nouveau_ramht.h"
  31. int
  32. nouveau_notifier_init_channel(struct nouveau_channel *chan)
  33. {
  34. struct drm_device *dev = chan->dev;
  35. struct drm_nouveau_private *dev_priv = dev->dev_private;
  36. struct nouveau_bo *ntfy = NULL;
  37. uint32_t flags, ttmpl;
  38. int ret;
  39. if (nouveau_vram_notify) {
  40. flags = NOUVEAU_GEM_DOMAIN_VRAM;
  41. ttmpl = TTM_PL_FLAG_VRAM;
  42. } else {
  43. flags = NOUVEAU_GEM_DOMAIN_GART;
  44. ttmpl = TTM_PL_FLAG_TT;
  45. }
  46. ret = nouveau_gem_new(dev, PAGE_SIZE, 0, flags, 0, 0, &ntfy);
  47. if (ret)
  48. return ret;
  49. ret = nouveau_bo_pin(ntfy, ttmpl);
  50. if (ret)
  51. goto out_err;
  52. ret = nouveau_bo_map(ntfy);
  53. if (ret)
  54. goto out_err;
  55. if (dev_priv->card_type >= NV_50) {
  56. ret = nouveau_bo_vma_add(ntfy, chan->vm, &chan->notifier_vma);
  57. if (ret)
  58. goto out_err;
  59. }
  60. ret = drm_mm_init(&chan->notifier_heap, 0, ntfy->bo.mem.size);
  61. if (ret)
  62. goto out_err;
  63. chan->notifier_bo = ntfy;
  64. out_err:
  65. if (ret) {
  66. nouveau_bo_vma_del(ntfy, &chan->notifier_vma);
  67. drm_gem_object_unreference_unlocked(ntfy->gem);
  68. }
  69. return ret;
  70. }
  71. void
  72. nouveau_notifier_takedown_channel(struct nouveau_channel *chan)
  73. {
  74. struct drm_device *dev = chan->dev;
  75. if (!chan->notifier_bo)
  76. return;
  77. nouveau_bo_vma_del(chan->notifier_bo, &chan->notifier_vma);
  78. nouveau_bo_unmap(chan->notifier_bo);
  79. mutex_lock(&dev->struct_mutex);
  80. nouveau_bo_unpin(chan->notifier_bo);
  81. mutex_unlock(&dev->struct_mutex);
  82. drm_gem_object_unreference_unlocked(chan->notifier_bo->gem);
  83. drm_mm_takedown(&chan->notifier_heap);
  84. }
  85. static void
  86. nouveau_notifier_gpuobj_dtor(struct drm_device *dev,
  87. struct nouveau_gpuobj *gpuobj)
  88. {
  89. NV_DEBUG(dev, "\n");
  90. if (gpuobj->priv)
  91. drm_mm_put_block(gpuobj->priv);
  92. }
  93. int
  94. nouveau_notifier_alloc(struct nouveau_channel *chan, uint32_t handle,
  95. int size, uint32_t start, uint32_t end,
  96. uint32_t *b_offset)
  97. {
  98. struct drm_device *dev = chan->dev;
  99. struct drm_nouveau_private *dev_priv = dev->dev_private;
  100. struct nouveau_gpuobj *nobj = NULL;
  101. struct drm_mm_node *mem;
  102. uint32_t offset;
  103. int target, ret;
  104. mem = drm_mm_search_free_in_range(&chan->notifier_heap, size, 0,
  105. start, end, 0);
  106. if (mem)
  107. mem = drm_mm_get_block_range(mem, size, 0, start, end);
  108. if (!mem) {
  109. NV_ERROR(dev, "Channel %d notifier block full\n", chan->id);
  110. return -ENOMEM;
  111. }
  112. if (dev_priv->card_type < NV_50) {
  113. if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_VRAM)
  114. target = NV_MEM_TARGET_VRAM;
  115. else
  116. target = NV_MEM_TARGET_GART;
  117. offset = chan->notifier_bo->bo.offset;
  118. } else {
  119. target = NV_MEM_TARGET_VM;
  120. offset = chan->notifier_vma.offset;
  121. }
  122. offset += mem->start;
  123. ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, offset,
  124. mem->size, NV_MEM_ACCESS_RW, target,
  125. &nobj);
  126. if (ret) {
  127. drm_mm_put_block(mem);
  128. NV_ERROR(dev, "Error creating notifier ctxdma: %d\n", ret);
  129. return ret;
  130. }
  131. nobj->dtor = nouveau_notifier_gpuobj_dtor;
  132. nobj->priv = mem;
  133. ret = nouveau_ramht_insert(chan, handle, nobj);
  134. nouveau_gpuobj_ref(NULL, &nobj);
  135. if (ret) {
  136. drm_mm_put_block(mem);
  137. NV_ERROR(dev, "Error adding notifier to ramht: %d\n", ret);
  138. return ret;
  139. }
  140. *b_offset = mem->start;
  141. return 0;
  142. }
  143. int
  144. nouveau_notifier_offset(struct nouveau_gpuobj *nobj, uint32_t *poffset)
  145. {
  146. if (!nobj || nobj->dtor != nouveau_notifier_gpuobj_dtor)
  147. return -EINVAL;
  148. if (poffset) {
  149. struct drm_mm_node *mem = nobj->priv;
  150. if (*poffset >= mem->size)
  151. return false;
  152. *poffset += mem->start;
  153. }
  154. return 0;
  155. }
  156. int
  157. nouveau_ioctl_notifier_alloc(struct drm_device *dev, void *data,
  158. struct drm_file *file_priv)
  159. {
  160. struct drm_nouveau_private *dev_priv = dev->dev_private;
  161. struct drm_nouveau_notifierobj_alloc *na = data;
  162. struct nouveau_channel *chan;
  163. int ret;
  164. /* completely unnecessary for these chipsets... */
  165. if (unlikely(dev_priv->card_type >= NV_C0))
  166. return -EINVAL;
  167. chan = nouveau_channel_get(file_priv, na->channel);
  168. if (IS_ERR(chan))
  169. return PTR_ERR(chan);
  170. ret = nouveau_notifier_alloc(chan, na->handle, na->size, 0, 0x1000,
  171. &na->offset);
  172. nouveau_channel_put(&chan);
  173. return ret;
  174. }