nouveau_notifier.c 5.0 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. int
  31. nouveau_notifier_init_channel(struct nouveau_channel *chan)
  32. {
  33. struct drm_device *dev = chan->dev;
  34. struct nouveau_bo *ntfy = NULL;
  35. int ret;
  36. ret = nouveau_gem_new(dev, NULL, PAGE_SIZE, 0, nouveau_vram_notify ?
  37. TTM_PL_FLAG_VRAM : TTM_PL_FLAG_TT,
  38. 0, 0x0000, false, true, &ntfy);
  39. if (ret)
  40. return ret;
  41. ret = nouveau_bo_pin(ntfy, TTM_PL_FLAG_VRAM);
  42. if (ret)
  43. goto out_err;
  44. ret = nouveau_bo_map(ntfy);
  45. if (ret)
  46. goto out_err;
  47. ret = nouveau_mem_init_heap(&chan->notifier_heap, 0, ntfy->bo.mem.size);
  48. if (ret)
  49. goto out_err;
  50. chan->notifier_bo = ntfy;
  51. out_err:
  52. if (ret) {
  53. mutex_lock(&dev->struct_mutex);
  54. drm_gem_object_unreference(ntfy->gem);
  55. mutex_unlock(&dev->struct_mutex);
  56. }
  57. return ret;
  58. }
  59. void
  60. nouveau_notifier_takedown_channel(struct nouveau_channel *chan)
  61. {
  62. struct drm_device *dev = chan->dev;
  63. if (!chan->notifier_bo)
  64. return;
  65. nouveau_bo_unmap(chan->notifier_bo);
  66. mutex_lock(&dev->struct_mutex);
  67. nouveau_bo_unpin(chan->notifier_bo);
  68. drm_gem_object_unreference(chan->notifier_bo->gem);
  69. mutex_unlock(&dev->struct_mutex);
  70. nouveau_mem_takedown(&chan->notifier_heap);
  71. }
  72. static void
  73. nouveau_notifier_gpuobj_dtor(struct drm_device *dev,
  74. struct nouveau_gpuobj *gpuobj)
  75. {
  76. NV_DEBUG(dev, "\n");
  77. if (gpuobj->priv)
  78. nouveau_mem_free_block(gpuobj->priv);
  79. }
  80. int
  81. nouveau_notifier_alloc(struct nouveau_channel *chan, uint32_t handle,
  82. int size, uint32_t *b_offset)
  83. {
  84. struct drm_device *dev = chan->dev;
  85. struct drm_nouveau_private *dev_priv = dev->dev_private;
  86. struct nouveau_gpuobj *nobj = NULL;
  87. struct mem_block *mem;
  88. uint32_t offset;
  89. int target, ret;
  90. if (!chan->notifier_heap) {
  91. NV_ERROR(dev, "Channel %d doesn't have a notifier heap!\n",
  92. chan->id);
  93. return -EINVAL;
  94. }
  95. mem = nouveau_mem_alloc_block(chan->notifier_heap, size, 0,
  96. (struct drm_file *)-2, 0);
  97. if (!mem) {
  98. NV_ERROR(dev, "Channel %d notifier block full\n", chan->id);
  99. return -ENOMEM;
  100. }
  101. offset = chan->notifier_bo->bo.mem.mm_node->start << PAGE_SHIFT;
  102. if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_VRAM) {
  103. target = NV_DMA_TARGET_VIDMEM;
  104. } else
  105. if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_TT) {
  106. if (dev_priv->gart_info.type == NOUVEAU_GART_SGDMA &&
  107. dev_priv->card_type < NV_50) {
  108. ret = nouveau_sgdma_get_page(dev, offset, &offset);
  109. if (ret)
  110. return ret;
  111. target = NV_DMA_TARGET_PCI;
  112. } else {
  113. target = NV_DMA_TARGET_AGP;
  114. }
  115. } else {
  116. NV_ERROR(dev, "Bad DMA target, mem_type %d!\n",
  117. chan->notifier_bo->bo.mem.mem_type);
  118. return -EINVAL;
  119. }
  120. offset += mem->start;
  121. ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, offset,
  122. mem->size, NV_DMA_ACCESS_RW, target,
  123. &nobj);
  124. if (ret) {
  125. nouveau_mem_free_block(mem);
  126. NV_ERROR(dev, "Error creating notifier ctxdma: %d\n", ret);
  127. return ret;
  128. }
  129. nobj->dtor = nouveau_notifier_gpuobj_dtor;
  130. nobj->priv = mem;
  131. ret = nouveau_gpuobj_ref_add(dev, chan, handle, nobj, NULL);
  132. if (ret) {
  133. nouveau_gpuobj_del(dev, &nobj);
  134. nouveau_mem_free_block(mem);
  135. NV_ERROR(dev, "Error referencing notifier ctxdma: %d\n", ret);
  136. return ret;
  137. }
  138. *b_offset = mem->start;
  139. return 0;
  140. }
  141. int
  142. nouveau_notifier_offset(struct nouveau_gpuobj *nobj, uint32_t *poffset)
  143. {
  144. if (!nobj || nobj->dtor != nouveau_notifier_gpuobj_dtor)
  145. return -EINVAL;
  146. if (poffset) {
  147. struct mem_block *mem = nobj->priv;
  148. if (*poffset >= mem->size)
  149. return false;
  150. *poffset += mem->start;
  151. }
  152. return 0;
  153. }
  154. int
  155. nouveau_ioctl_notifier_alloc(struct drm_device *dev, void *data,
  156. struct drm_file *file_priv)
  157. {
  158. struct drm_nouveau_notifierobj_alloc *na = data;
  159. struct nouveau_channel *chan;
  160. int ret;
  161. NOUVEAU_CHECK_INITIALISED_WITH_RETURN;
  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. }