nvc0_fence.c 6.2 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 26 27 28
#include <core/object.h>
#include <core/client.h>
#include <core/class.h>

29
#include <engine/fifo.h>
30 31 32

#include "nouveau_drm.h"
#include "nouveau_dma.h"
33 34
#include "nouveau_fence.h"

35 36
#include "nv50_display.h"

37 38 39
struct nvc0_fence_priv {
	struct nouveau_fence_priv base;
	struct nouveau_bo *bo;
40
	u32 *suspend;
41 42 43 44 45
};

struct nvc0_fence_chan {
	struct nouveau_fence_chan base;
	struct nouveau_vma vma;
46
	struct nouveau_vma dispc_vma[4];
47 48
};

49 50 51 52 53 54 55
u64
nvc0_fence_crtc(struct nouveau_channel *chan, int crtc)
{
	struct nvc0_fence_chan *fctx = chan->fence;
	return fctx->dispc_vma[crtc].offset;
}

56 57 58 59
static int
nvc0_fence_emit(struct nouveau_fence *fence)
{
	struct nouveau_channel *chan = fence->channel;
60
	struct nvc0_fence_chan *fctx = chan->fence;
61 62
	struct nouveau_fifo_chan *fifo = (void *)chan->object;
	u64 addr = fctx->vma.offset + fifo->chid * 16;
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
	int ret;

	ret = RING_SPACE(chan, 5);
	if (ret == 0) {
		BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
		OUT_RING  (chan, upper_32_bits(addr));
		OUT_RING  (chan, lower_32_bits(addr));
		OUT_RING  (chan, fence->sequence);
		OUT_RING  (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
		FIRE_RING (chan);
	}

	return ret;
}

static int
79 80
nvc0_fence_sync(struct nouveau_fence *fence,
		struct nouveau_channel *prev, struct nouveau_channel *chan)
81
{
82
	struct nvc0_fence_chan *fctx = chan->fence;
83 84
	struct nouveau_fifo_chan *fifo = (void *)prev->object;
	u64 addr = fctx->vma.offset + fifo->chid * 16;
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	int ret;

	ret = RING_SPACE(chan, 5);
	if (ret == 0) {
		BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
		OUT_RING  (chan, upper_32_bits(addr));
		OUT_RING  (chan, lower_32_bits(addr));
		OUT_RING  (chan, fence->sequence);
		OUT_RING  (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL |
				 NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD);
		FIRE_RING (chan);
	}

	return ret;
}

static u32
nvc0_fence_read(struct nouveau_channel *chan)
{
104 105 106
	struct nouveau_fifo_chan *fifo = (void *)chan->object;
	struct nvc0_fence_priv *priv = chan->drm->fence;
	return nouveau_bo_rd32(priv->bo, fifo->chid * 16/4);
107 108 109
}

static void
110
nvc0_fence_context_del(struct nouveau_channel *chan)
111
{
112 113
	struct drm_device *dev = chan->drm->dev;
	struct nvc0_fence_priv *priv = chan->drm->fence;
114
	struct nvc0_fence_chan *fctx = chan->fence;
115 116
	int i;

117
	for (i = 0; i < dev->mode_config.num_crtc; i++) {
118
		struct nouveau_bo *bo = nv50_display_crtc_sema(dev, i);
119
		nouveau_bo_vma_del(bo, &fctx->dispc_vma[i]);
120
	}
121 122 123

	nouveau_bo_vma_del(priv->bo, &fctx->vma);
	nouveau_fence_context_del(&fctx->base);
124
	chan->fence = NULL;
125 126 127 128
	kfree(fctx);
}

static int
129
nvc0_fence_context_new(struct nouveau_channel *chan)
130
{
131 132 133
	struct nouveau_fifo_chan *fifo = (void *)chan->object;
	struct nouveau_client *client = nouveau_client(fifo);
	struct nvc0_fence_priv *priv = chan->drm->fence;
134
	struct nvc0_fence_chan *fctx;
135
	int ret, i;
136

137
	fctx = chan->fence = kzalloc(sizeof(*fctx), GFP_KERNEL);
138 139 140 141 142
	if (!fctx)
		return -ENOMEM;

	nouveau_fence_context_new(&fctx->base);

143
	ret = nouveau_bo_vma_add(priv->bo, client->vm, &fctx->vma);
144
	if (ret)
145
		nvc0_fence_context_del(chan);
146

147
	/* map display semaphore buffers into channel's vm */
148
	for (i = 0; !ret && i < chan->drm->dev->mode_config.num_crtc; i++) {
149
		struct nouveau_bo *bo = nv50_display_crtc_sema(chan->drm->dev, i);
150
		ret = nouveau_bo_vma_add(bo, client->vm, &fctx->dispc_vma[i]);
151 152
	}

153
	nouveau_bo_wr32(priv->bo, fifo->chid * 16/4, 0x00000000);
154 155 156
	return ret;
}

157
static bool
158
nvc0_fence_suspend(struct nouveau_drm *drm)
159
{
160 161
	struct nouveau_fifo *pfifo = nouveau_fifo(drm->device);
	struct nvc0_fence_priv *priv = drm->fence;
162 163
	int i;

164
	priv->suspend = vmalloc((pfifo->max + 1) * sizeof(u32));
165
	if (priv->suspend) {
166
		for (i = 0; i <= pfifo->max; i++)
167 168 169
			priv->suspend[i] = nouveau_bo_rd32(priv->bo, i);
	}

170
	return priv->suspend != NULL;
171 172
}

173
static void
174
nvc0_fence_resume(struct nouveau_drm *drm)
175
{
176 177
	struct nouveau_fifo *pfifo = nouveau_fifo(drm->device);
	struct nvc0_fence_priv *priv = drm->fence;
178 179 180
	int i;

	if (priv->suspend) {
181
		for (i = 0; i <= pfifo->max; i++)
182 183 184 185
			nouveau_bo_wr32(priv->bo, i, priv->suspend[i]);
		vfree(priv->suspend);
		priv->suspend = NULL;
	}
186 187 188
}

static void
189
nvc0_fence_destroy(struct nouveau_drm *drm)
190
{
191
	struct nvc0_fence_priv *priv = drm->fence;
192 193
	nouveau_bo_unmap(priv->bo);
	nouveau_bo_ref(NULL, &priv->bo);
194
	drm->fence = NULL;
195 196 197 198
	kfree(priv);
}

int
199
nvc0_fence_create(struct nouveau_drm *drm)
200
{
201
	struct nouveau_fifo *pfifo = nouveau_fifo(drm->device);
202 203 204
	struct nvc0_fence_priv *priv;
	int ret;

205
	priv = drm->fence = kzalloc(sizeof(*priv), GFP_KERNEL);
206 207 208
	if (!priv)
		return -ENOMEM;

209 210 211 212 213
	priv->base.dtor = nvc0_fence_destroy;
	priv->base.suspend = nvc0_fence_suspend;
	priv->base.resume = nvc0_fence_resume;
	priv->base.context_new = nvc0_fence_context_new;
	priv->base.context_del = nvc0_fence_context_del;
214 215 216 217
	priv->base.emit = nvc0_fence_emit;
	priv->base.sync = nvc0_fence_sync;
	priv->base.read = nvc0_fence_read;

218 219
	ret = nouveau_bo_new(drm->dev, 16 * (pfifo->max + 1), 0,
			     TTM_PL_FLAG_VRAM, 0, 0, NULL, &priv->bo);
220 221 222 223 224 225 226 227 228
	if (ret == 0) {
		ret = nouveau_bo_pin(priv->bo, TTM_PL_FLAG_VRAM);
		if (ret == 0)
			ret = nouveau_bo_map(priv->bo);
		if (ret)
			nouveau_bo_ref(NULL, &priv->bo);
	}

	if (ret)
229
		nvc0_fence_destroy(drm);
230 231
	return ret;
}