nv84_fence.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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_ramht.h"
  28. #include "nouveau_fence.h"
  29. struct nv84_fence_chan {
  30. struct nouveau_fence_chan base;
  31. };
  32. struct nv84_fence_priv {
  33. struct nouveau_fence_priv base;
  34. struct nouveau_gpuobj *mem;
  35. };
  36. static int
  37. nv84_fence_emit(struct nouveau_fence *fence)
  38. {
  39. struct nouveau_channel *chan = fence->channel;
  40. int ret = RING_SPACE(chan, 7);
  41. if (ret == 0) {
  42. BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
  43. OUT_RING (chan, NvSema);
  44. BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
  45. OUT_RING (chan, upper_32_bits(chan->id * 16));
  46. OUT_RING (chan, lower_32_bits(chan->id * 16));
  47. OUT_RING (chan, fence->sequence);
  48. OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
  49. FIRE_RING (chan);
  50. }
  51. return ret;
  52. }
  53. static int
  54. nv84_fence_sync(struct nouveau_fence *fence,
  55. struct nouveau_channel *prev, struct nouveau_channel *chan)
  56. {
  57. int ret = RING_SPACE(chan, 7);
  58. if (ret == 0) {
  59. BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
  60. OUT_RING (chan, NvSema);
  61. BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
  62. OUT_RING (chan, upper_32_bits(prev->id * 16));
  63. OUT_RING (chan, lower_32_bits(prev->id * 16));
  64. OUT_RING (chan, fence->sequence);
  65. OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL);
  66. FIRE_RING (chan);
  67. }
  68. return ret;
  69. }
  70. static u32
  71. nv84_fence_read(struct nouveau_channel *chan)
  72. {
  73. struct nv84_fence_priv *priv = nv_engine(chan->dev, NVOBJ_ENGINE_FENCE);
  74. return nv_ro32(priv->mem, chan->id * 16);
  75. }
  76. static void
  77. nv84_fence_context_del(struct nouveau_channel *chan, int engine)
  78. {
  79. struct nv84_fence_chan *fctx = chan->engctx[engine];
  80. nouveau_fence_context_del(&fctx->base);
  81. chan->engctx[engine] = NULL;
  82. kfree(fctx);
  83. }
  84. static int
  85. nv84_fence_context_new(struct nouveau_channel *chan, int engine)
  86. {
  87. struct nv84_fence_priv *priv = nv_engine(chan->dev, engine);
  88. struct nv84_fence_chan *fctx;
  89. struct nouveau_gpuobj *obj;
  90. int ret;
  91. fctx = chan->engctx[engine] = kzalloc(sizeof(*fctx), GFP_KERNEL);
  92. if (!fctx)
  93. return -ENOMEM;
  94. nouveau_fence_context_new(&fctx->base);
  95. ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_FROM_MEMORY,
  96. priv->mem->vinst, priv->mem->size,
  97. NV_MEM_ACCESS_RW,
  98. NV_MEM_TARGET_VRAM, &obj);
  99. if (ret == 0) {
  100. ret = nouveau_ramht_insert(chan, NvSema, obj);
  101. nouveau_gpuobj_ref(NULL, &obj);
  102. nv_wo32(priv->mem, chan->id * 16, 0x00000000);
  103. }
  104. if (ret)
  105. nv84_fence_context_del(chan, engine);
  106. return ret;
  107. }
  108. static int
  109. nv84_fence_fini(struct drm_device *dev, int engine, bool suspend)
  110. {
  111. return 0;
  112. }
  113. static int
  114. nv84_fence_init(struct drm_device *dev, int engine)
  115. {
  116. return 0;
  117. }
  118. static void
  119. nv84_fence_destroy(struct drm_device *dev, int engine)
  120. {
  121. struct drm_nouveau_private *dev_priv = dev->dev_private;
  122. struct nv84_fence_priv *priv = nv_engine(dev, engine);
  123. nouveau_gpuobj_ref(NULL, &priv->mem);
  124. dev_priv->eng[engine] = NULL;
  125. kfree(priv);
  126. }
  127. int
  128. nv84_fence_create(struct drm_device *dev)
  129. {
  130. struct drm_nouveau_private *dev_priv = dev->dev_private;
  131. struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo;
  132. struct nv84_fence_priv *priv;
  133. int ret;
  134. priv = kzalloc(sizeof(*priv), GFP_KERNEL);
  135. if (!priv)
  136. return -ENOMEM;
  137. priv->base.engine.destroy = nv84_fence_destroy;
  138. priv->base.engine.init = nv84_fence_init;
  139. priv->base.engine.fini = nv84_fence_fini;
  140. priv->base.engine.context_new = nv84_fence_context_new;
  141. priv->base.engine.context_del = nv84_fence_context_del;
  142. priv->base.emit = nv84_fence_emit;
  143. priv->base.sync = nv84_fence_sync;
  144. priv->base.read = nv84_fence_read;
  145. dev_priv->eng[NVOBJ_ENGINE_FENCE] = &priv->base.engine;
  146. ret = nouveau_gpuobj_new(dev, NULL, 16 * pfifo->channels,
  147. 0x1000, 0, &priv->mem);
  148. if (ret)
  149. goto out;
  150. out:
  151. if (ret)
  152. nv84_fence_destroy(dev, NVOBJ_ENGINE_FENCE);
  153. return ret;
  154. }