Merge branch 'drm-next' of git://people.freedesktop.org/~airlied/linux
[GitHub/exynos8895/android_kernel_samsung_universal8895.git] / drivers / gpu / drm / nouveau / nv84_fence.c
CommitLineData
5e120f6e
BS
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
ebb945a9
BS
25#include <core/object.h>
26#include <core/class.h>
27
02a841d4 28#include <engine/fifo.h>
ebb945a9
BS
29
30#include "nouveau_drm.h"
31#include "nouveau_dma.h"
5e120f6e
BS
32#include "nouveau_fence.h"
33
77145f1c
BS
34#include "nv50_display.h"
35
5e120f6e
BS
36struct nv84_fence_chan {
37 struct nouveau_fence_chan base;
38};
39
40struct nv84_fence_priv {
41 struct nouveau_fence_priv base;
42 struct nouveau_gpuobj *mem;
43};
44
45static int
46nv84_fence_emit(struct nouveau_fence *fence)
47{
48 struct nouveau_channel *chan = fence->channel;
ebb945a9 49 struct nouveau_fifo_chan *fifo = (void *)chan->object;
5e120f6e
BS
50 int ret = RING_SPACE(chan, 7);
51 if (ret == 0) {
52 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
53 OUT_RING (chan, NvSema);
54 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
ebb945a9
BS
55 OUT_RING (chan, upper_32_bits(fifo->chid * 16));
56 OUT_RING (chan, lower_32_bits(fifo->chid * 16));
5e120f6e
BS
57 OUT_RING (chan, fence->sequence);
58 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
59 FIRE_RING (chan);
60 }
61 return ret;
62}
63
906c033e 64
5e120f6e 65static int
906c033e
BS
66nv84_fence_sync(struct nouveau_fence *fence,
67 struct nouveau_channel *prev, struct nouveau_channel *chan)
5e120f6e 68{
ebb945a9 69 struct nouveau_fifo_chan *fifo = (void *)prev->object;
5e120f6e
BS
70 int ret = RING_SPACE(chan, 7);
71 if (ret == 0) {
72 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
73 OUT_RING (chan, NvSema);
74 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
ebb945a9
BS
75 OUT_RING (chan, upper_32_bits(fifo->chid * 16));
76 OUT_RING (chan, lower_32_bits(fifo->chid * 16));
5e120f6e
BS
77 OUT_RING (chan, fence->sequence);
78 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL);
79 FIRE_RING (chan);
80 }
81 return ret;
82}
83
84static u32
85nv84_fence_read(struct nouveau_channel *chan)
86{
ebb945a9
BS
87 struct nouveau_fifo_chan *fifo = (void *)chan->object;
88 struct nv84_fence_priv *priv = chan->drm->fence;
89 return nv_ro32(priv->mem, fifo->chid * 16);
5e120f6e
BS
90}
91
92static void
e193b1d4 93nv84_fence_context_del(struct nouveau_channel *chan)
5e120f6e 94{
e193b1d4 95 struct nv84_fence_chan *fctx = chan->fence;
5e120f6e 96 nouveau_fence_context_del(&fctx->base);
e193b1d4 97 chan->fence = NULL;
5e120f6e
BS
98 kfree(fctx);
99}
100
101static int
e193b1d4 102nv84_fence_context_new(struct nouveau_channel *chan)
5e120f6e 103{
77145f1c 104 struct drm_device *dev = chan->drm->dev;
ebb945a9
BS
105 struct nouveau_fifo_chan *fifo = (void *)chan->object;
106 struct nv84_fence_priv *priv = chan->drm->fence;
5e120f6e 107 struct nv84_fence_chan *fctx;
ebb945a9 108 struct nouveau_object *object;
f589be88 109 int ret, i;
5e120f6e 110
e193b1d4 111 fctx = chan->fence = kzalloc(sizeof(*fctx), GFP_KERNEL);
5e120f6e
BS
112 if (!fctx)
113 return -ENOMEM;
114
115 nouveau_fence_context_new(&fctx->base);
116
ebb945a9
BS
117 ret = nouveau_object_new(nv_object(chan->cli), chan->handle,
118 NvSema, 0x0002,
119 &(struct nv_dma_class) {
120 .flags = NV_DMA_TARGET_VRAM |
121 NV_DMA_ACCESS_RDWR,
122 .start = priv->mem->addr,
123 .limit = priv->mem->addr +
124 priv->mem->size - 1,
125 }, sizeof(struct nv_dma_class),
126 &object);
5e120f6e 127
f589be88 128 /* dma objects for display sync channel semaphore blocks */
77145f1c
BS
129 for (i = 0; !ret && i < dev->mode_config.num_crtc; i++) {
130 struct nouveau_bo *bo = nv50_display_crtc_sema(dev, i);
ebb945a9
BS
131
132 ret = nouveau_object_new(nv_object(chan->cli), chan->handle,
133 NvEvoSema0 + i, 0x003d,
134 &(struct nv_dma_class) {
135 .flags = NV_DMA_TARGET_VRAM |
136 NV_DMA_ACCESS_RDWR,
137 .start = bo->bo.offset,
138 .limit = bo->bo.offset + 0xfff,
139 }, sizeof(struct nv_dma_class),
140 &object);
f589be88
BS
141 }
142
5e120f6e 143 if (ret)
e193b1d4 144 nv84_fence_context_del(chan);
ebb945a9 145 nv_wo32(priv->mem, fifo->chid * 16, 0x00000000);
5e120f6e
BS
146 return ret;
147}
148
5e120f6e 149static void
ebb945a9 150nv84_fence_destroy(struct nouveau_drm *drm)
5e120f6e 151{
ebb945a9 152 struct nv84_fence_priv *priv = drm->fence;
5e120f6e 153 nouveau_gpuobj_ref(NULL, &priv->mem);
ebb945a9 154 drm->fence = NULL;
5e120f6e
BS
155 kfree(priv);
156}
157
158int
ebb945a9 159nv84_fence_create(struct nouveau_drm *drm)
5e120f6e 160{
ebb945a9 161 struct nouveau_fifo *pfifo = nouveau_fifo(drm->device);
5e120f6e 162 struct nv84_fence_priv *priv;
ebb945a9 163 u32 chan = pfifo->max + 1;
5e120f6e
BS
164 int ret;
165
ebb945a9 166 priv = drm->fence = kzalloc(sizeof(*priv), GFP_KERNEL);
5e120f6e
BS
167 if (!priv)
168 return -ENOMEM;
169
e193b1d4
BS
170 priv->base.dtor = nv84_fence_destroy;
171 priv->base.context_new = nv84_fence_context_new;
172 priv->base.context_del = nv84_fence_context_del;
5e120f6e
BS
173 priv->base.emit = nv84_fence_emit;
174 priv->base.sync = nv84_fence_sync;
175 priv->base.read = nv84_fence_read;
5e120f6e 176
ebb945a9
BS
177 ret = nouveau_gpuobj_new(drm->device, NULL, chan * 16, 0x1000, 0,
178 &priv->mem);
5e120f6e 179 if (ret)
ebb945a9 180 nv84_fence_destroy(drm);
5e120f6e
BS
181 return ret;
182}