blob: 0ac98c0efc71967a18f507c1036b4a535bfd449d [file] [log] [blame]
Ben Skeggs5e120f62012-04-30 13:55:29 +10001/*
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
25#include "drmP.h"
26#include "nouveau_drv.h"
27#include "nouveau_dma.h"
28#include "nouveau_ramht.h"
29#include "nouveau_fence.h"
30
31struct nv84_fence_chan {
32 struct nouveau_fence_chan base;
33};
34
35struct nv84_fence_priv {
36 struct nouveau_fence_priv base;
37 struct nouveau_gpuobj *mem;
38};
39
40static int
41nv84_fence_emit(struct nouveau_fence *fence)
42{
43 struct nouveau_channel *chan = fence->channel;
44 int ret = RING_SPACE(chan, 7);
45 if (ret == 0) {
46 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
47 OUT_RING (chan, NvSema);
48 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
49 OUT_RING (chan, upper_32_bits(chan->id * 16));
50 OUT_RING (chan, lower_32_bits(chan->id * 16));
51 OUT_RING (chan, fence->sequence);
52 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
53 FIRE_RING (chan);
54 }
55 return ret;
56}
57
Ben Skeggs906c0332012-05-04 16:25:47 +100058
Ben Skeggs5e120f62012-04-30 13:55:29 +100059static int
Ben Skeggs906c0332012-05-04 16:25:47 +100060nv84_fence_sync(struct nouveau_fence *fence,
61 struct nouveau_channel *prev, struct nouveau_channel *chan)
Ben Skeggs5e120f62012-04-30 13:55:29 +100062{
63 int ret = RING_SPACE(chan, 7);
64 if (ret == 0) {
65 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
66 OUT_RING (chan, NvSema);
67 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
Ben Skeggs906c0332012-05-04 16:25:47 +100068 OUT_RING (chan, upper_32_bits(prev->id * 16));
69 OUT_RING (chan, lower_32_bits(prev->id * 16));
Ben Skeggs5e120f62012-04-30 13:55:29 +100070 OUT_RING (chan, fence->sequence);
71 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL);
72 FIRE_RING (chan);
73 }
74 return ret;
75}
76
77static u32
78nv84_fence_read(struct nouveau_channel *chan)
79{
80 struct nv84_fence_priv *priv = nv_engine(chan->dev, NVOBJ_ENGINE_FENCE);
81 return nv_ro32(priv->mem, chan->id * 16);
82}
83
84static void
85nv84_fence_context_del(struct nouveau_channel *chan, int engine)
86{
87 struct nv84_fence_chan *fctx = chan->engctx[engine];
88 nouveau_fence_context_del(&fctx->base);
89 chan->engctx[engine] = NULL;
90 kfree(fctx);
91}
92
93static int
94nv84_fence_context_new(struct nouveau_channel *chan, int engine)
95{
96 struct nv84_fence_priv *priv = nv_engine(chan->dev, engine);
97 struct nv84_fence_chan *fctx;
98 struct nouveau_gpuobj *obj;
99 int ret;
100
101 fctx = chan->engctx[engine] = kzalloc(sizeof(*fctx), GFP_KERNEL);
102 if (!fctx)
103 return -ENOMEM;
104
105 nouveau_fence_context_new(&fctx->base);
106
107 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_FROM_MEMORY,
108 priv->mem->vinst, priv->mem->size,
109 NV_MEM_ACCESS_RW,
110 NV_MEM_TARGET_VRAM, &obj);
111 if (ret == 0) {
112 ret = nouveau_ramht_insert(chan, NvSema, obj);
113 nouveau_gpuobj_ref(NULL, &obj);
114 nv_wo32(priv->mem, chan->id * 16, 0x00000000);
115 }
116
117 if (ret)
118 nv84_fence_context_del(chan, engine);
119 return ret;
120}
121
122static int
123nv84_fence_fini(struct drm_device *dev, int engine, bool suspend)
124{
125 return 0;
126}
127
128static int
129nv84_fence_init(struct drm_device *dev, int engine)
130{
131 return 0;
132}
133
134static void
135nv84_fence_destroy(struct drm_device *dev, int engine)
136{
137 struct drm_nouveau_private *dev_priv = dev->dev_private;
138 struct nv84_fence_priv *priv = nv_engine(dev, engine);
139
140 nouveau_gpuobj_ref(NULL, &priv->mem);
141 dev_priv->eng[engine] = NULL;
142 kfree(priv);
143}
144
145int
146nv84_fence_create(struct drm_device *dev)
147{
148 struct drm_nouveau_private *dev_priv = dev->dev_private;
149 struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo;
150 struct nv84_fence_priv *priv;
151 int ret;
152
153 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
154 if (!priv)
155 return -ENOMEM;
156
157 priv->base.engine.destroy = nv84_fence_destroy;
158 priv->base.engine.init = nv84_fence_init;
159 priv->base.engine.fini = nv84_fence_fini;
160 priv->base.engine.context_new = nv84_fence_context_new;
161 priv->base.engine.context_del = nv84_fence_context_del;
162 priv->base.emit = nv84_fence_emit;
163 priv->base.sync = nv84_fence_sync;
164 priv->base.read = nv84_fence_read;
165 dev_priv->eng[NVOBJ_ENGINE_FENCE] = &priv->base.engine;
166
167 ret = nouveau_gpuobj_new(dev, NULL, 16 * pfifo->channels,
168 0x1000, 0, &priv->mem);
169 if (ret)
170 goto out;
171
172out:
173 if (ret)
174 nv84_fence_destroy(dev, NVOBJ_ENGINE_FENCE);
175 return ret;
176}