nv84_fence.c 6.88 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright 2012 Red Hat Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors: Ben Skeggs
 */

25
#include "nouveau_drv.h"
26
#include "nouveau_dma.h"
27 28
#include "nouveau_fence.h"

29 30
#include "nv50_display.h"

31
static int
32
nv84_fence_emit32(struct nouveau_channel *chan, u64 virtual, u32 sequence)
33
{
34
	int ret = RING_SPACE(chan, 8);
35 36
	if (ret == 0) {
		BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
37
		OUT_RING  (chan, chan->vram.handle);
38
		BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 5);
39 40 41
		OUT_RING  (chan, upper_32_bits(virtual));
		OUT_RING  (chan, lower_32_bits(virtual));
		OUT_RING  (chan, sequence);
42
		OUT_RING  (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
43
		OUT_RING  (chan, 0x00000000);
44 45 46 47 48 49
		FIRE_RING (chan);
	}
	return ret;
}

static int
50
nv84_fence_sync32(struct nouveau_channel *chan, u64 virtual, u32 sequence)
51
{
52
	int ret = RING_SPACE(chan, 7);
53 54
	if (ret == 0) {
		BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
55
		OUT_RING  (chan, chan->vram.handle);
56
		BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
57 58 59
		OUT_RING  (chan, upper_32_bits(virtual));
		OUT_RING  (chan, lower_32_bits(virtual));
		OUT_RING  (chan, sequence);
60 61 62 63 64 65
		OUT_RING  (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL);
		FIRE_RING (chan);
	}
	return ret;
}

66
static int
67 68 69 70
nv84_fence_emit(struct nouveau_fence *fence)
{
	struct nouveau_channel *chan = fence->channel;
	struct nv84_fence_chan *fctx = chan->fence;
71
	u64 addr = chan->chid * 16;
72 73 74 75 76 77

	if (fence->sysmem)
		addr += fctx->vma_gart.offset;
	else
		addr += fctx->vma.offset;

78
	return fctx->base.emit32(chan, addr, fence->base.seqno);
79 80
}

81
static int
82 83 84 85
nv84_fence_sync(struct nouveau_fence *fence,
		struct nouveau_channel *prev, struct nouveau_channel *chan)
{
	struct nv84_fence_chan *fctx = chan->fence;
86
	u64 addr = prev->chid * 16;
87 88 89 90 91 92

	if (fence->sysmem)
		addr += fctx->vma_gart.offset;
	else
		addr += fctx->vma.offset;

93
	return fctx->base.sync32(chan, addr, fence->base.seqno);
94 95
}

96
static u32
97 98
nv84_fence_read(struct nouveau_channel *chan)
{
99
	struct nv84_fence_priv *priv = chan->drm->fence;
100
	return nouveau_bo_rd32(priv->bo, chan->chid * 16/4);
101 102
}

103
static void
104
nv84_fence_context_del(struct nouveau_channel *chan)
105
{
106
	struct nv84_fence_priv *priv = chan->drm->fence;
107
	struct nv84_fence_chan *fctx = chan->fence;
108

109
	nouveau_bo_wr32(priv->bo, chan->chid * 16 / 4, fctx->base.sequence);
110
	nouveau_bo_vma_del(priv->bo, &fctx->vma_gart);
111
	nouveau_bo_vma_del(priv->bo, &fctx->vma);
112
	nouveau_fence_context_del(&fctx->base);
113
	chan->fence = NULL;
114
	nouveau_fence_context_free(&fctx->base);
115 116
}

117
int
118
nv84_fence_context_new(struct nouveau_channel *chan)
119
{
120
	struct nouveau_cli *cli = (void *)chan->user.client;
121
	struct nv84_fence_priv *priv = chan->drm->fence;
122
	struct nv84_fence_chan *fctx;
123
	int ret;
124

125
	fctx = chan->fence = kzalloc(sizeof(*fctx), GFP_KERNEL);
126 127 128
	if (!fctx)
		return -ENOMEM;

129
	nouveau_fence_context_new(chan, &fctx->base);
130 131 132 133 134
	fctx->base.emit = nv84_fence_emit;
	fctx->base.sync = nv84_fence_sync;
	fctx->base.read = nv84_fence_read;
	fctx->base.emit32 = nv84_fence_emit32;
	fctx->base.sync32 = nv84_fence_sync32;
135
	fctx->base.sequence = nv84_fence_read(chan);
136

137
	ret = nouveau_bo_vma_add(priv->bo, cli->vm, &fctx->vma);
138
	if (ret == 0) {
139
		ret = nouveau_bo_vma_add(priv->bo_gart, cli->vm,
140 141
					&fctx->vma_gart);
	}
142

143 144
	if (ret)
		nv84_fence_context_del(chan);
145 146 147
	return ret;
}

148
static bool
149 150 151 152 153
nv84_fence_suspend(struct nouveau_drm *drm)
{
	struct nv84_fence_priv *priv = drm->fence;
	int i;

154
	priv->suspend = vmalloc(priv->base.contexts * sizeof(u32));
155
	if (priv->suspend) {
156
		for (i = 0; i < priv->base.contexts; i++)
157 158 159 160 161 162
			priv->suspend[i] = nouveau_bo_rd32(priv->bo, i*4);
	}

	return priv->suspend != NULL;
}

163
static void
164 165 166 167 168 169
nv84_fence_resume(struct nouveau_drm *drm)
{
	struct nv84_fence_priv *priv = drm->fence;
	int i;

	if (priv->suspend) {
170
		for (i = 0; i < priv->base.contexts; i++)
171 172 173 174 175 176
			nouveau_bo_wr32(priv->bo, i*4, priv->suspend[i]);
		vfree(priv->suspend);
		priv->suspend = NULL;
	}
}

177
static void
178
nv84_fence_destroy(struct nouveau_drm *drm)
179
{
180
	struct nv84_fence_priv *priv = drm->fence;
181 182 183 184
	nouveau_bo_unmap(priv->bo_gart);
	if (priv->bo_gart)
		nouveau_bo_unpin(priv->bo_gart);
	nouveau_bo_ref(NULL, &priv->bo_gart);
185 186 187 188
	nouveau_bo_unmap(priv->bo);
	if (priv->bo)
		nouveau_bo_unpin(priv->bo);
	nouveau_bo_ref(NULL, &priv->bo);
189
	drm->fence = NULL;
190 191 192 193
	kfree(priv);
}

int
194
nv84_fence_create(struct nouveau_drm *drm)
195
{
196
	struct nvkm_fifo *fifo = nvxx_fifo(&drm->device);
197
	struct nv84_fence_priv *priv;
198
	u32 domain;
199 200
	int ret;

201
	priv = drm->fence = kzalloc(sizeof(*priv), GFP_KERNEL);
202 203 204
	if (!priv)
		return -ENOMEM;

205
	priv->base.dtor = nv84_fence_destroy;
206 207
	priv->base.suspend = nv84_fence_suspend;
	priv->base.resume = nv84_fence_resume;
208 209
	priv->base.context_new = nv84_fence_context_new;
	priv->base.context_del = nv84_fence_context_del;
210

211
	priv->base.contexts = fifo->nr;
212
	priv->base.context_base = dma_fence_context_alloc(priv->base.contexts);
213 214
	priv->base.uevent = true;

215 216 217 218 219 220 221
	/* Use VRAM if there is any ; otherwise fallback to system memory */
	domain = drm->device.info.ram_size != 0 ? TTM_PL_FLAG_VRAM :
			 /*
			  * fences created in sysmem must be non-cached or we
			  * will lose CPU/GPU coherency!
			  */
			 TTM_PL_FLAG_TT | TTM_PL_FLAG_UNCACHED;
222 223
	ret = nouveau_bo_new(&drm->client, 16 * priv->base.contexts, 0,
			     domain, 0, 0, NULL, NULL, &priv->bo);
224
	if (ret == 0) {
225
		ret = nouveau_bo_pin(priv->bo, domain, false);
226 227 228 229 230 231 232 233 234
		if (ret == 0) {
			ret = nouveau_bo_map(priv->bo);
			if (ret)
				nouveau_bo_unpin(priv->bo);
		}
		if (ret)
			nouveau_bo_ref(NULL, &priv->bo);
	}

235
	if (ret == 0)
236
		ret = nouveau_bo_new(&drm->client, 16 * priv->base.contexts, 0,
237 238
				     TTM_PL_FLAG_TT | TTM_PL_FLAG_UNCACHED, 0,
				     0, NULL, NULL, &priv->bo_gart);
239
	if (ret == 0) {
240
		ret = nouveau_bo_pin(priv->bo_gart, TTM_PL_FLAG_TT, false);
241 242 243 244 245 246 247 248 249
		if (ret == 0) {
			ret = nouveau_bo_map(priv->bo_gart);
			if (ret)
				nouveau_bo_unpin(priv->bo_gart);
		}
		if (ret)
			nouveau_bo_ref(NULL, &priv->bo_gart);
	}

250
	if (ret)
251
		nv84_fence_destroy(drm);
252 253
	return ret;
}