nouveau_notifier.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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;
  37. int ret;
  38. if (nouveau_vram_notify)
  39. flags = TTM_PL_FLAG_VRAM;
  40. else
  41. flags = TTM_PL_FLAG_TT;
  42. ret = nouveau_gem_new(dev, NULL, PAGE_SIZE, 0, flags,
  43. 0, 0x0000, false, true, &ntfy);
  44. if (ret)
  45. return ret;
  46. ret = nouveau_bo_pin(ntfy, flags);
  47. if (ret)
  48. goto out_err;
  49. ret = nouveau_bo_map(ntfy);
  50. if (ret)
  51. goto out_err;
  52. ret = drm_mm_init(&chan->notifier_heap, 0, ntfy->bo.mem.size);
  53. if (ret)
  54. goto out_err;
  55. chan->notifier_bo = ntfy;
  56. out_err:
  57. if (ret)
  58. drm_gem_object_unreference_unlocked(ntfy->gem);
  59. return ret;
  60. }
  61. void
  62. nouveau_notifier_takedown_channel(struct nouveau_channel *chan)
  63. {
  64. struct drm_device *dev = chan->dev;
  65. if (!chan->notifier_bo)
  66. return;
  67. nouveau_bo_unmap(chan->notifier_bo);
  68. mutex_lock(&dev->struct_mutex);
  69. nouveau_bo_unpin(chan->notifier_bo);
  70. mutex_unlock(&dev->struct_mutex);
  71. drm_gem_object_handle_unreference_unlocked(chan->notifier_bo->gem);
  72. drm_gem_object_unreference_unlocked(chan->notifier_bo->gem);
  73. drm_mm_takedown(&chan->notifier_heap);
  74. }
  75. static void
  76. nouveau_notifier_gpuobj_dtor(struct drm_device *dev,
  77. struct nouveau_gpuobj *gpuobj)
  78. {
  79. NV_DEBUG(dev, "\n");
  80. if (gpuobj->priv)
  81. drm_mm_put_block(gpuobj->priv);
  82. }
  83. int
  84. nouveau_notifier_alloc(struct nouveau_channel *chan, uint32_t handle,
  85. int size, uint32_t *b_offset)
  86. {
  87. struct drm_device *dev = chan->dev;
  88. struct drm_nouveau_private *dev_priv = dev->dev_private;
  89. struct nouveau_gpuobj *nobj = NULL;
  90. struct drm_mm_node *mem;
  91. uint32_t offset;
  92. int target, ret;
  93. mem = drm_mm_search_free(&chan->notifier_heap, size, 0, 0);
  94. if (mem)
  95. mem = drm_mm_get_block(mem, size, 0);
  96. if (!mem) {
  97. NV_ERROR(dev, "Channel %d notifier block full\n", chan->id);
  98. return -ENOMEM;
  99. }
  100. offset = chan->notifier_bo->bo.mem.start << PAGE_SHIFT;
  101. if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_VRAM) {
  102. target = NV_DMA_TARGET_VIDMEM;
  103. } else
  104. if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_TT) {
  105. if (dev_priv->gart_info.type == NOUVEAU_GART_SGDMA &&
  106. dev_priv->card_type < NV_50) {
  107. ret = nouveau_sgdma_get_page(dev, offset, &offset);
  108. if (ret)
  109. return ret;
  110. target = NV_DMA_TARGET_PCI;
  111. } else {
  112. target = NV_DMA_TARGET_AGP;
  113. if (dev_priv->card_type >= NV_50)
  114. offset += dev_priv->vm_gart_base;
  115. }
  116. } else {
  117. NV_ERROR(dev, "Bad DMA target, mem_type %d!\n",
  118. chan->notifier_bo->bo.mem.mem_type);
  119. return -EINVAL;
  120. }
  121. offset += mem->start;
  122. ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, offset,
  123. mem->size, NV_DMA_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. }
  142. int
  143. nouveau_notifier_offset(struct nouveau_gpuobj *nobj, uint32_t *poffset)
  144. {
  145. if (!nobj || nobj->dtor != nouveau_notifier_gpuobj_dtor)
  146. return -EINVAL;
  147. if (poffset) {
  148. struct drm_mm_node *mem = nobj->priv;
  149. if (*poffset >= mem->size)
  150. return false;
  151. *poffset += mem->start;
  152. }
  153. return 0;
  154. }
  155. int
  156. nouveau_ioctl_notifier_alloc(struct drm_device *dev, void *data,
  157. struct drm_file *file_priv)
  158. {
  159. struct drm_nouveau_notifierobj_alloc *na = data;
  160. struct nouveau_channel *chan;
  161. int ret;
  162. NOUVEAU_GET_USER_CHANNEL_WITH_RETURN(na->channel, file_priv, chan);
  163. ret = nouveau_notifier_alloc(chan, na->handle, na->size, &na->offset);
  164. if (ret)
  165. return ret;
  166. return 0;
  167. }