nvc0_fence.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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 "nouveau_fifo.h"
  28. #include "nouveau_ramht.h"
  29. #include "nouveau_fence.h"
  30. struct nvc0_fence_priv {
  31. struct nouveau_fence_priv base;
  32. struct nouveau_bo *bo;
  33. };
  34. struct nvc0_fence_chan {
  35. struct nouveau_fence_chan base;
  36. struct nouveau_vma vma;
  37. };
  38. static int
  39. nvc0_fence_emit(struct nouveau_fence *fence)
  40. {
  41. struct nouveau_channel *chan = fence->channel;
  42. struct nvc0_fence_chan *fctx = chan->engctx[NVOBJ_ENGINE_FENCE];
  43. u64 addr = fctx->vma.offset + chan->id * 16;
  44. int ret;
  45. ret = RING_SPACE(chan, 5);
  46. if (ret == 0) {
  47. BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
  48. OUT_RING (chan, upper_32_bits(addr));
  49. OUT_RING (chan, lower_32_bits(addr));
  50. OUT_RING (chan, fence->sequence);
  51. OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
  52. FIRE_RING (chan);
  53. }
  54. return ret;
  55. }
  56. static int
  57. nvc0_fence_sync(struct nouveau_fence *fence,
  58. struct nouveau_channel *prev, struct nouveau_channel *chan)
  59. {
  60. struct nvc0_fence_chan *fctx = chan->engctx[NVOBJ_ENGINE_FENCE];
  61. u64 addr = fctx->vma.offset + prev->id * 16;
  62. int ret;
  63. ret = RING_SPACE(chan, 5);
  64. if (ret == 0) {
  65. BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
  66. OUT_RING (chan, upper_32_bits(addr));
  67. OUT_RING (chan, lower_32_bits(addr));
  68. OUT_RING (chan, fence->sequence);
  69. OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL |
  70. NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD);
  71. FIRE_RING (chan);
  72. }
  73. return ret;
  74. }
  75. static u32
  76. nvc0_fence_read(struct nouveau_channel *chan)
  77. {
  78. struct nvc0_fence_priv *priv = nv_engine(chan->dev, NVOBJ_ENGINE_FENCE);
  79. return nouveau_bo_rd32(priv->bo, chan->id * 16/4);
  80. }
  81. static void
  82. nvc0_fence_context_del(struct nouveau_channel *chan, int engine)
  83. {
  84. struct nvc0_fence_priv *priv = nv_engine(chan->dev, engine);
  85. struct nvc0_fence_chan *fctx = chan->engctx[engine];
  86. nouveau_bo_vma_del(priv->bo, &fctx->vma);
  87. nouveau_fence_context_del(&fctx->base);
  88. chan->engctx[engine] = NULL;
  89. kfree(fctx);
  90. }
  91. static int
  92. nvc0_fence_context_new(struct nouveau_channel *chan, int engine)
  93. {
  94. struct nvc0_fence_priv *priv = nv_engine(chan->dev, engine);
  95. struct nvc0_fence_chan *fctx;
  96. int ret;
  97. fctx = chan->engctx[engine] = kzalloc(sizeof(*fctx), GFP_KERNEL);
  98. if (!fctx)
  99. return -ENOMEM;
  100. nouveau_fence_context_new(&fctx->base);
  101. ret = nouveau_bo_vma_add(priv->bo, chan->vm, &fctx->vma);
  102. if (ret)
  103. nvc0_fence_context_del(chan, engine);
  104. nouveau_bo_wr32(priv->bo, chan->id * 16/4, 0x00000000);
  105. return ret;
  106. }
  107. static int
  108. nvc0_fence_fini(struct drm_device *dev, int engine, bool suspend)
  109. {
  110. return 0;
  111. }
  112. static int
  113. nvc0_fence_init(struct drm_device *dev, int engine)
  114. {
  115. return 0;
  116. }
  117. static void
  118. nvc0_fence_destroy(struct drm_device *dev, int engine)
  119. {
  120. struct drm_nouveau_private *dev_priv = dev->dev_private;
  121. struct nvc0_fence_priv *priv = nv_engine(dev, engine);
  122. nouveau_bo_unmap(priv->bo);
  123. nouveau_bo_ref(NULL, &priv->bo);
  124. dev_priv->eng[engine] = NULL;
  125. kfree(priv);
  126. }
  127. int
  128. nvc0_fence_create(struct drm_device *dev)
  129. {
  130. struct nouveau_fifo_priv *pfifo = nv_engine(dev, NVOBJ_ENGINE_FIFO);
  131. struct drm_nouveau_private *dev_priv = dev->dev_private;
  132. struct nvc0_fence_priv *priv;
  133. int ret;
  134. priv = kzalloc(sizeof(*priv), GFP_KERNEL);
  135. if (!priv)
  136. return -ENOMEM;
  137. priv->base.engine.destroy = nvc0_fence_destroy;
  138. priv->base.engine.init = nvc0_fence_init;
  139. priv->base.engine.fini = nvc0_fence_fini;
  140. priv->base.engine.context_new = nvc0_fence_context_new;
  141. priv->base.engine.context_del = nvc0_fence_context_del;
  142. priv->base.emit = nvc0_fence_emit;
  143. priv->base.sync = nvc0_fence_sync;
  144. priv->base.read = nvc0_fence_read;
  145. dev_priv->eng[NVOBJ_ENGINE_FENCE] = &priv->base.engine;
  146. ret = nouveau_bo_new(dev, 16 * pfifo->channels, 0, TTM_PL_FLAG_VRAM,
  147. 0, 0, NULL, &priv->bo);
  148. if (ret == 0) {
  149. ret = nouveau_bo_pin(priv->bo, TTM_PL_FLAG_VRAM);
  150. if (ret == 0)
  151. ret = nouveau_bo_map(priv->bo);
  152. if (ret)
  153. nouveau_bo_ref(NULL, &priv->bo);
  154. }
  155. if (ret)
  156. nvc0_fence_destroy(dev, NVOBJ_ENGINE_FENCE);
  157. return ret;
  158. }