Commit 2f5bfd1c authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/fence: convert sync() to new push macros

Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
Reviewed-by: default avatarLyude Paul <lyude@redhat.com>
parent 7aa638cf
...@@ -74,18 +74,6 @@ OUT_RING(struct nouveau_channel *chan, int data) ...@@ -74,18 +74,6 @@ OUT_RING(struct nouveau_channel *chan, int data)
nouveau_bo_wr32(chan->push.buffer, chan->dma.cur++, data); nouveau_bo_wr32(chan->push.buffer, chan->dma.cur++, data);
} }
static inline void
BEGIN_NV04(struct nouveau_channel *chan, int subc, int mthd, int size)
{
OUT_RING(chan, 0x00000000 | (subc << 13) | (size << 18) | mthd);
}
static inline void
BEGIN_NVC0(struct nouveau_channel *chan, int subc, int mthd, int size)
{
OUT_RING(chan, 0x20000000 | (size << 16) | (subc << 13) | (mthd >> 2));
}
#define WRITE_PUT(val) do { \ #define WRITE_PUT(val) do { \
mb(); \ mb(); \
nouveau_bo_rd32(chan->push.buffer, 0); \ nouveau_bo_rd32(chan->push.buffer, 0); \
......
...@@ -21,15 +21,15 @@ ...@@ -21,15 +21,15 @@
* *
* Authors: Ben Skeggs <bskeggs@redhat.com> * Authors: Ben Skeggs <bskeggs@redhat.com>
*/ */
#include <nvif/os.h>
#include <nvif/class.h>
#include <nvif/cl0002.h>
#include "nouveau_drv.h" #include "nouveau_drv.h"
#include "nouveau_dma.h" #include "nouveau_dma.h"
#include "nv10_fence.h" #include "nv10_fence.h"
#include <nvif/push006c.h>
#include <nvif/class.h>
#include <nvif/cl0002.h>
int int
nv17_fence_sync(struct nouveau_fence *fence, nv17_fence_sync(struct nouveau_fence *fence,
struct nouveau_channel *prev, struct nouveau_channel *chan) struct nouveau_channel *prev, struct nouveau_channel *chan)
...@@ -37,6 +37,8 @@ nv17_fence_sync(struct nouveau_fence *fence, ...@@ -37,6 +37,8 @@ nv17_fence_sync(struct nouveau_fence *fence,
struct nouveau_cli *cli = (void *)prev->user.client; struct nouveau_cli *cli = (void *)prev->user.client;
struct nv10_fence_priv *priv = chan->drm->fence; struct nv10_fence_priv *priv = chan->drm->fence;
struct nv10_fence_chan *fctx = chan->fence; struct nv10_fence_chan *fctx = chan->fence;
struct nvif_push *ppush = prev->chan.push;
struct nvif_push *npush = chan->chan.push;
u32 value; u32 value;
int ret; int ret;
...@@ -48,23 +50,21 @@ nv17_fence_sync(struct nouveau_fence *fence, ...@@ -48,23 +50,21 @@ nv17_fence_sync(struct nouveau_fence *fence,
priv->sequence += 2; priv->sequence += 2;
spin_unlock(&priv->lock); spin_unlock(&priv->lock);
ret = RING_SPACE(prev, 5); ret = PUSH_WAIT(ppush, 5);
if (!ret) { if (!ret) {
BEGIN_NV04(prev, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 4); PUSH_NVSQ(ppush, NV176E, NV11_SUBCHAN_DMA_SEMAPHORE, fctx->sema.handle,
OUT_RING (prev, fctx->sema.handle); NV11_SUBCHAN_SEMAPHORE_OFFSET, 0,
OUT_RING (prev, 0); NV11_SUBCHAN_SEMAPHORE_ACQUIRE, value + 0,
OUT_RING (prev, value + 0); NV11_SUBCHAN_SEMAPHORE_RELEASE, value + 1);
OUT_RING (prev, value + 1); PUSH_KICK(ppush);
FIRE_RING (prev);
} }
if (!ret && !(ret = RING_SPACE(chan, 5))) { if (!ret && !(ret = PUSH_WAIT(npush, 5))) {
BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 4); PUSH_NVSQ(npush, NV176E, NV11_SUBCHAN_DMA_SEMAPHORE, fctx->sema.handle,
OUT_RING (chan, fctx->sema.handle); NV11_SUBCHAN_SEMAPHORE_OFFSET, 0,
OUT_RING (chan, 0); NV11_SUBCHAN_SEMAPHORE_ACQUIRE, value + 1,
OUT_RING (chan, value + 1); NV11_SUBCHAN_SEMAPHORE_RELEASE, value + 2);
OUT_RING (chan, value + 2); PUSH_KICK(npush);
FIRE_RING (chan);
} }
mutex_unlock(&cli->mutex); mutex_unlock(&cli->mutex);
......
...@@ -52,16 +52,17 @@ nv84_fence_emit32(struct nouveau_channel *chan, u64 virtual, u32 sequence) ...@@ -52,16 +52,17 @@ nv84_fence_emit32(struct nouveau_channel *chan, u64 virtual, u32 sequence)
static int static int
nv84_fence_sync32(struct nouveau_channel *chan, u64 virtual, u32 sequence) nv84_fence_sync32(struct nouveau_channel *chan, u64 virtual, u32 sequence)
{ {
int ret = RING_SPACE(chan, 7); struct nvif_push *push = chan->chan.push;
int ret = PUSH_WAIT(push, 7);
if (ret == 0) { if (ret == 0) {
BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1); PUSH_NVSQ(push, NV826F, NV11_SUBCHAN_DMA_SEMAPHORE, chan->vram.handle);
OUT_RING (chan, chan->vram.handle); PUSH_NVSQ(push, NV826F,
BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4); NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, upper_32_bits(virtual),
OUT_RING (chan, upper_32_bits(virtual)); NV84_SUBCHAN_SEMAPHORE_ADDRESS_LOW, lower_32_bits(virtual),
OUT_RING (chan, lower_32_bits(virtual)); NV84_SUBCHAN_SEMAPHORE_SEQUENCE, sequence,
OUT_RING (chan, sequence); NV84_SUBCHAN_SEMAPHORE_TRIGGER,
OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL); NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL);
FIRE_RING (chan); PUSH_KICK(push);
} }
return ret; return ret;
} }
......
...@@ -50,15 +50,17 @@ nvc0_fence_emit32(struct nouveau_channel *chan, u64 virtual, u32 sequence) ...@@ -50,15 +50,17 @@ nvc0_fence_emit32(struct nouveau_channel *chan, u64 virtual, u32 sequence)
static int static int
nvc0_fence_sync32(struct nouveau_channel *chan, u64 virtual, u32 sequence) nvc0_fence_sync32(struct nouveau_channel *chan, u64 virtual, u32 sequence)
{ {
int ret = RING_SPACE(chan, 5); struct nvif_push *push = chan->chan.push;
int ret = PUSH_WAIT(push, 5);
if (ret == 0) { if (ret == 0) {
BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4); PUSH_NVSQ(push, NV906F,
OUT_RING (chan, upper_32_bits(virtual)); NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, upper_32_bits(virtual),
OUT_RING (chan, lower_32_bits(virtual)); NV84_SUBCHAN_SEMAPHORE_ADDRESS_LOW, lower_32_bits(virtual),
OUT_RING (chan, sequence); NV84_SUBCHAN_SEMAPHORE_SEQUENCE, sequence,
OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL | NV84_SUBCHAN_SEMAPHORE_TRIGGER,
NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD); NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL |
FIRE_RING (chan); NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD);
PUSH_KICK(push);
} }
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment