nv84_fence.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*
  2. * Copyright 2012 Red Hat Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. * Authors: Ben Skeggs
  23. */
  24. #include "drmP.h"
  25. #include "nouveau_drv.h"
  26. #include "nouveau_dma.h"
  27. #include <engine/fifo.h>
  28. #include <core/ramht.h>
  29. #include "nouveau_fence.h"
  30. #include "nv50_display.h"
  31. struct nv84_fence_chan {
  32. struct nouveau_fence_chan base;
  33. };
  34. struct nv84_fence_priv {
  35. struct nouveau_fence_priv base;
  36. struct nouveau_gpuobj *mem;
  37. };
  38. static int
  39. nv84_fence_emit(struct nouveau_fence *fence)
  40. {
  41. struct nouveau_channel *chan = fence->channel;
  42. int ret = RING_SPACE(chan, 7);
  43. if (ret == 0) {
  44. BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
  45. OUT_RING (chan, NvSema);
  46. BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
  47. OUT_RING (chan, upper_32_bits(chan->id * 16));
  48. OUT_RING (chan, lower_32_bits(chan->id * 16));
  49. OUT_RING (chan, fence->sequence);
  50. OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
  51. FIRE_RING (chan);
  52. }
  53. return ret;
  54. }
  55. static int
  56. nv84_fence_sync(struct nouveau_fence *fence,
  57. struct nouveau_channel *prev, struct nouveau_channel *chan)
  58. {
  59. int ret = RING_SPACE(chan, 7);
  60. if (ret == 0) {
  61. BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
  62. OUT_RING (chan, NvSema);
  63. BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
  64. OUT_RING (chan, upper_32_bits(prev->id * 16));
  65. OUT_RING (chan, lower_32_bits(prev->id * 16));
  66. OUT_RING (chan, fence->sequence);
  67. OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL);
  68. FIRE_RING (chan);
  69. }
  70. return ret;
  71. }
  72. static u32
  73. nv84_fence_read(struct nouveau_channel *chan)
  74. {
  75. struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
  76. struct nv84_fence_priv *priv = dev_priv->fence.func;
  77. return nv_ro32(priv->mem, chan->id * 16);
  78. }
  79. static void
  80. nv84_fence_context_del(struct nouveau_channel *chan)
  81. {
  82. struct nv84_fence_chan *fctx = chan->fence;
  83. nouveau_fence_context_del(&fctx->base);
  84. chan->fence = NULL;
  85. kfree(fctx);
  86. }
  87. static int
  88. nv84_fence_context_new(struct nouveau_channel *chan)
  89. {
  90. struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
  91. struct nv84_fence_priv *priv = dev_priv->fence.func;
  92. struct nv84_fence_chan *fctx;
  93. struct nouveau_gpuobj *obj;
  94. int ret, i;
  95. fctx = chan->fence = kzalloc(sizeof(*fctx), GFP_KERNEL);
  96. if (!fctx)
  97. return -ENOMEM;
  98. nouveau_fence_context_new(&fctx->base);
  99. ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_FROM_MEMORY,
  100. priv->mem->addr, priv->mem->size,
  101. NV_MEM_ACCESS_RW,
  102. NV_MEM_TARGET_VRAM, &obj);
  103. if (ret == 0) {
  104. ret = nouveau_ramht_insert(chan, NvSema, obj);
  105. nouveau_gpuobj_ref(NULL, &obj);
  106. nv_wo32(priv->mem, chan->id * 16, 0x00000000);
  107. }
  108. /* dma objects for display sync channel semaphore blocks */
  109. for (i = 0; i < chan->dev->mode_config.num_crtc; i++) {
  110. struct nv50_display *pdisp = nv50_display(chan->dev);
  111. struct nv50_display_crtc *dispc = &pdisp->crtc[i];
  112. struct nouveau_gpuobj *obj = NULL;
  113. ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY,
  114. dispc->sem.bo->bo.offset, 0x1000,
  115. NV_MEM_ACCESS_RW,
  116. NV_MEM_TARGET_VRAM, &obj);
  117. if (ret)
  118. break;
  119. ret = nouveau_ramht_insert(chan, NvEvoSema0 + i, obj);
  120. nouveau_gpuobj_ref(NULL, &obj);
  121. }
  122. if (ret)
  123. nv84_fence_context_del(chan);
  124. return ret;
  125. }
  126. static void
  127. nv84_fence_destroy(struct drm_device *dev)
  128. {
  129. struct drm_nouveau_private *dev_priv = dev->dev_private;
  130. struct nv84_fence_priv *priv = dev_priv->fence.func;
  131. nouveau_gpuobj_ref(NULL, &priv->mem);
  132. dev_priv->fence.func = NULL;
  133. kfree(priv);
  134. }
  135. int
  136. nv84_fence_create(struct drm_device *dev)
  137. {
  138. struct nouveau_fifo_priv *pfifo = nv_engine(dev, NVOBJ_ENGINE_FIFO);
  139. struct drm_nouveau_private *dev_priv = dev->dev_private;
  140. struct nv84_fence_priv *priv;
  141. int ret;
  142. priv = kzalloc(sizeof(*priv), GFP_KERNEL);
  143. if (!priv)
  144. return -ENOMEM;
  145. priv->base.dtor = nv84_fence_destroy;
  146. priv->base.context_new = nv84_fence_context_new;
  147. priv->base.context_del = nv84_fence_context_del;
  148. priv->base.emit = nv84_fence_emit;
  149. priv->base.sync = nv84_fence_sync;
  150. priv->base.read = nv84_fence_read;
  151. dev_priv->fence.func = priv;
  152. ret = nouveau_gpuobj_new(dev, NULL, 16 * pfifo->channels,
  153. 0x1000, 0, &priv->mem);
  154. if (ret)
  155. goto out;
  156. out:
  157. if (ret)
  158. nv84_fence_destroy(dev);
  159. return ret;
  160. }