nouveau_notifier.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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 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, NULL, 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. ret = drm_mm_init(&chan->notifier_heap, 0, ntfy->bo.mem.size);
  55. if (ret)
  56. goto out_err;
  57. chan->notifier_bo = ntfy;
  58. out_err:
  59. if (ret)
  60. drm_gem_object_unreference_unlocked(ntfy->gem);
  61. return ret;
  62. }
  63. void
  64. nouveau_notifier_takedown_channel(struct nouveau_channel *chan)
  65. {
  66. struct drm_device *dev = chan->dev;
  67. if (!chan->notifier_bo)
  68. return;
  69. nouveau_bo_unmap(chan->notifier_bo);
  70. mutex_lock(&dev->struct_mutex);
  71. nouveau_bo_unpin(chan->notifier_bo);
  72. mutex_unlock(&dev->struct_mutex);
  73. drm_gem_object_unreference_unlocked(chan->notifier_bo->gem);
  74. drm_mm_takedown(&chan->notifier_heap);
  75. }
  76. static void
  77. nouveau_notifier_gpuobj_dtor(struct drm_device *dev,
  78. struct nouveau_gpuobj *gpuobj)
  79. {
  80. NV_DEBUG(dev, "\n");
  81. if (gpuobj->priv)
  82. drm_mm_put_block(gpuobj->priv);
  83. }
  84. int
  85. nouveau_notifier_alloc(struct nouveau_channel *chan, uint32_t handle,
  86. int size, uint32_t start, uint32_t end,
  87. uint32_t *b_offset)
  88. {
  89. struct drm_device *dev = chan->dev;
  90. struct drm_nouveau_private *dev_priv = dev->dev_private;
  91. struct nouveau_gpuobj *nobj = NULL;
  92. struct drm_mm_node *mem;
  93. uint32_t offset;
  94. int target, ret;
  95. mem = drm_mm_search_free_in_range(&chan->notifier_heap, size, 0,
  96. start, end, 0);
  97. if (mem)
  98. mem = drm_mm_get_block_range(mem, size, 0, start, end);
  99. if (!mem) {
  100. NV_ERROR(dev, "Channel %d notifier block full\n", chan->id);
  101. return -ENOMEM;
  102. }
  103. if (dev_priv->card_type < NV_50) {
  104. if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_VRAM)
  105. target = NV_MEM_TARGET_VRAM;
  106. else
  107. target = NV_MEM_TARGET_GART;
  108. offset = chan->notifier_bo->bo.mem.start << PAGE_SHIFT;
  109. } else {
  110. target = NV_MEM_TARGET_VM;
  111. offset = chan->notifier_bo->vma.offset;
  112. }
  113. offset += mem->start;
  114. ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, offset,
  115. mem->size, NV_MEM_ACCESS_RW, target,
  116. &nobj);
  117. if (ret) {
  118. drm_mm_put_block(mem);
  119. NV_ERROR(dev, "Error creating notifier ctxdma: %d\n", ret);
  120. return ret;
  121. }
  122. nobj->dtor = nouveau_notifier_gpuobj_dtor;
  123. nobj->priv = mem;
  124. ret = nouveau_ramht_insert(chan, handle, nobj);
  125. nouveau_gpuobj_ref(NULL, &nobj);
  126. if (ret) {
  127. drm_mm_put_block(mem);
  128. NV_ERROR(dev, "Error adding notifier to ramht: %d\n", ret);
  129. return ret;
  130. }
  131. *b_offset = mem->start;
  132. return 0;
  133. }
  134. int
  135. nouveau_notifier_offset(struct nouveau_gpuobj *nobj, uint32_t *poffset)
  136. {
  137. if (!nobj || nobj->dtor != nouveau_notifier_gpuobj_dtor)
  138. return -EINVAL;
  139. if (poffset) {
  140. struct drm_mm_node *mem = nobj->priv;
  141. if (*poffset >= mem->size)
  142. return false;
  143. *poffset += mem->start;
  144. }
  145. return 0;
  146. }
  147. int
  148. nouveau_ioctl_notifier_alloc(struct drm_device *dev, void *data,
  149. struct drm_file *file_priv)
  150. {
  151. struct drm_nouveau_private *dev_priv = dev->dev_private;
  152. struct drm_nouveau_notifierobj_alloc *na = data;
  153. struct nouveau_channel *chan;
  154. int ret;
  155. /* completely unnecessary for these chipsets... */
  156. if (unlikely(dev_priv->card_type >= NV_C0))
  157. return -EINVAL;
  158. chan = nouveau_channel_get(dev, file_priv, na->channel);
  159. if (IS_ERR(chan))
  160. return PTR_ERR(chan);
  161. ret = nouveau_notifier_alloc(chan, na->handle, na->size, 0, 0x1000,
  162. &na->offset);
  163. nouveau_channel_put(&chan);
  164. return ret;
  165. }