nv17_fence.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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 <[email protected]>
  23. */
  24. #include "nouveau_drv.h"
  25. #include "nouveau_dma.h"
  26. #include "nv10_fence.h"
  27. #include <nvif/push006c.h>
  28. #include <nvif/class.h>
  29. #include <nvif/cl0002.h>
  30. #include <nvhw/class/cl176e.h>
  31. int
  32. nv17_fence_sync(struct nouveau_fence *fence,
  33. struct nouveau_channel *prev, struct nouveau_channel *chan)
  34. {
  35. struct nouveau_cli *cli = (void *)prev->user.client;
  36. struct nv10_fence_priv *priv = chan->drm->fence;
  37. struct nv10_fence_chan *fctx = chan->fence;
  38. struct nvif_push *ppush = prev->chan.push;
  39. struct nvif_push *npush = chan->chan.push;
  40. u32 value;
  41. int ret;
  42. if (!mutex_trylock(&cli->mutex))
  43. return -EBUSY;
  44. spin_lock(&priv->lock);
  45. value = priv->sequence;
  46. priv->sequence += 2;
  47. spin_unlock(&priv->lock);
  48. ret = PUSH_WAIT(ppush, 5);
  49. if (!ret) {
  50. PUSH_MTHD(ppush, NV176E, SET_CONTEXT_DMA_SEMAPHORE, fctx->sema.handle,
  51. SEMAPHORE_OFFSET, 0,
  52. SEMAPHORE_ACQUIRE, value + 0,
  53. SEMAPHORE_RELEASE, value + 1);
  54. PUSH_KICK(ppush);
  55. }
  56. if (!ret && !(ret = PUSH_WAIT(npush, 5))) {
  57. PUSH_MTHD(npush, NV176E, SET_CONTEXT_DMA_SEMAPHORE, fctx->sema.handle,
  58. SEMAPHORE_OFFSET, 0,
  59. SEMAPHORE_ACQUIRE, value + 1,
  60. SEMAPHORE_RELEASE, value + 2);
  61. PUSH_KICK(npush);
  62. }
  63. mutex_unlock(&cli->mutex);
  64. return 0;
  65. }
  66. static int
  67. nv17_fence_context_new(struct nouveau_channel *chan)
  68. {
  69. struct nv10_fence_priv *priv = chan->drm->fence;
  70. struct ttm_resource *reg = priv->bo->bo.resource;
  71. struct nv10_fence_chan *fctx;
  72. u32 start = reg->start * PAGE_SIZE;
  73. u32 limit = start + priv->bo->bo.base.size - 1;
  74. int ret = 0;
  75. fctx = chan->fence = kzalloc(sizeof(*fctx), GFP_KERNEL);
  76. if (!fctx)
  77. return -ENOMEM;
  78. nouveau_fence_context_new(chan, &fctx->base);
  79. fctx->base.emit = nv10_fence_emit;
  80. fctx->base.read = nv10_fence_read;
  81. fctx->base.sync = nv17_fence_sync;
  82. ret = nvif_object_ctor(&chan->user, "fenceCtxDma", NvSema,
  83. NV_DMA_FROM_MEMORY,
  84. &(struct nv_dma_v0) {
  85. .target = NV_DMA_V0_TARGET_VRAM,
  86. .access = NV_DMA_V0_ACCESS_RDWR,
  87. .start = start,
  88. .limit = limit,
  89. }, sizeof(struct nv_dma_v0),
  90. &fctx->sema);
  91. if (ret)
  92. nv10_fence_context_del(chan);
  93. return ret;
  94. }
  95. void
  96. nv17_fence_resume(struct nouveau_drm *drm)
  97. {
  98. struct nv10_fence_priv *priv = drm->fence;
  99. nouveau_bo_wr32(priv->bo, 0, priv->sequence);
  100. }
  101. int
  102. nv17_fence_create(struct nouveau_drm *drm)
  103. {
  104. struct nv10_fence_priv *priv;
  105. int ret = 0;
  106. priv = drm->fence = kzalloc(sizeof(*priv), GFP_KERNEL);
  107. if (!priv)
  108. return -ENOMEM;
  109. priv->base.dtor = nv10_fence_destroy;
  110. priv->base.resume = nv17_fence_resume;
  111. priv->base.context_new = nv17_fence_context_new;
  112. priv->base.context_del = nv10_fence_context_del;
  113. spin_lock_init(&priv->lock);
  114. ret = nouveau_bo_new(&drm->client, 4096, 0x1000,
  115. NOUVEAU_GEM_DOMAIN_VRAM,
  116. 0, 0x0000, NULL, NULL, &priv->bo);
  117. if (!ret) {
  118. ret = nouveau_bo_pin(priv->bo, NOUVEAU_GEM_DOMAIN_VRAM, false);
  119. if (!ret) {
  120. ret = nouveau_bo_map(priv->bo);
  121. if (ret)
  122. nouveau_bo_unpin(priv->bo);
  123. }
  124. if (ret)
  125. nouveau_bo_ref(NULL, &priv->bo);
  126. }
  127. if (ret) {
  128. nv10_fence_destroy(drm);
  129. return ret;
  130. }
  131. nouveau_bo_wr32(priv->bo, 0x000, 0x00000000);
  132. return ret;
  133. }