]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/nouveau/nv84_fence.c
drm/nouveau/pageflip: kick flip handling out of engsw and into fence
[mirror_ubuntu-bionic-kernel.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
25#include "drmP.h"
26#include "nouveau_drv.h"
27#include "nouveau_dma.h"
02a841d4
BS
28#include <engine/fifo.h>
29#include <core/ramht.h>
5e120f6e 30#include "nouveau_fence.h"
f589be88 31#include "nv50_display.h"
5e120f6e
BS
32
33struct nv84_fence_chan {
34 struct nouveau_fence_chan base;
35};
36
37struct nv84_fence_priv {
38 struct nouveau_fence_priv base;
39 struct nouveau_gpuobj *mem;
40};
41
42static int
43nv84_fence_emit(struct nouveau_fence *fence)
44{
45 struct nouveau_channel *chan = fence->channel;
46 int ret = RING_SPACE(chan, 7);
47 if (ret == 0) {
48 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
49 OUT_RING (chan, NvSema);
50 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
51 OUT_RING (chan, upper_32_bits(chan->id * 16));
52 OUT_RING (chan, lower_32_bits(chan->id * 16));
53 OUT_RING (chan, fence->sequence);
54 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
55 FIRE_RING (chan);
56 }
57 return ret;
58}
59
906c033e 60
5e120f6e 61static int
906c033e
BS
62nv84_fence_sync(struct nouveau_fence *fence,
63 struct nouveau_channel *prev, struct nouveau_channel *chan)
5e120f6e
BS
64{
65 int ret = RING_SPACE(chan, 7);
66 if (ret == 0) {
67 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
68 OUT_RING (chan, NvSema);
69 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
906c033e
BS
70 OUT_RING (chan, upper_32_bits(prev->id * 16));
71 OUT_RING (chan, lower_32_bits(prev->id * 16));
5e120f6e
BS
72 OUT_RING (chan, fence->sequence);
73 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL);
74 FIRE_RING (chan);
75 }
76 return ret;
77}
78
79static u32
80nv84_fence_read(struct nouveau_channel *chan)
81{
e193b1d4
BS
82 struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
83 struct nv84_fence_priv *priv = dev_priv->fence.func;
5e120f6e
BS
84 return nv_ro32(priv->mem, chan->id * 16);
85}
86
87static void
e193b1d4 88nv84_fence_context_del(struct nouveau_channel *chan)
5e120f6e 89{
e193b1d4 90 struct nv84_fence_chan *fctx = chan->fence;
5e120f6e 91 nouveau_fence_context_del(&fctx->base);
e193b1d4 92 chan->fence = NULL;
5e120f6e
BS
93 kfree(fctx);
94}
95
96static int
e193b1d4 97nv84_fence_context_new(struct nouveau_channel *chan)
5e120f6e 98{
e193b1d4
BS
99 struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
100 struct nv84_fence_priv *priv = dev_priv->fence.func;
5e120f6e
BS
101 struct nv84_fence_chan *fctx;
102 struct nouveau_gpuobj *obj;
f589be88 103 int ret, i;
5e120f6e 104
e193b1d4 105 fctx = chan->fence = kzalloc(sizeof(*fctx), GFP_KERNEL);
5e120f6e
BS
106 if (!fctx)
107 return -ENOMEM;
108
109 nouveau_fence_context_new(&fctx->base);
110
111 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_FROM_MEMORY,
3863c9bc 112 priv->mem->addr, priv->mem->size,
5e120f6e
BS
113 NV_MEM_ACCESS_RW,
114 NV_MEM_TARGET_VRAM, &obj);
115 if (ret == 0) {
116 ret = nouveau_ramht_insert(chan, NvSema, obj);
117 nouveau_gpuobj_ref(NULL, &obj);
118 nv_wo32(priv->mem, chan->id * 16, 0x00000000);
119 }
120
f589be88
BS
121 /* dma objects for display sync channel semaphore blocks */
122 for (i = 0; i < chan->dev->mode_config.num_crtc; i++) {
123 struct nv50_display *pdisp = nv50_display(chan->dev);
124 struct nv50_display_crtc *dispc = &pdisp->crtc[i];
125 struct nouveau_gpuobj *obj = NULL;
126
127 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY,
128 dispc->sem.bo->bo.offset, 0x1000,
129 NV_MEM_ACCESS_RW,
130 NV_MEM_TARGET_VRAM, &obj);
131 if (ret)
132 break;
133
134 ret = nouveau_ramht_insert(chan, NvEvoSema0 + i, obj);
135 nouveau_gpuobj_ref(NULL, &obj);
136 }
137
5e120f6e 138 if (ret)
e193b1d4 139 nv84_fence_context_del(chan);
5e120f6e
BS
140 return ret;
141}
142
5e120f6e 143static void
e193b1d4 144nv84_fence_destroy(struct drm_device *dev)
5e120f6e
BS
145{
146 struct drm_nouveau_private *dev_priv = dev->dev_private;
e193b1d4 147 struct nv84_fence_priv *priv = dev_priv->fence.func;
5e120f6e
BS
148
149 nouveau_gpuobj_ref(NULL, &priv->mem);
e193b1d4 150 dev_priv->fence.func = NULL;
5e120f6e
BS
151 kfree(priv);
152}
153
154int
155nv84_fence_create(struct drm_device *dev)
156{
c420b2dc 157 struct nouveau_fifo_priv *pfifo = nv_engine(dev, NVOBJ_ENGINE_FIFO);
5e120f6e 158 struct drm_nouveau_private *dev_priv = dev->dev_private;
5e120f6e
BS
159 struct nv84_fence_priv *priv;
160 int ret;
161
162 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
163 if (!priv)
164 return -ENOMEM;
165
e193b1d4
BS
166 priv->base.dtor = nv84_fence_destroy;
167 priv->base.context_new = nv84_fence_context_new;
168 priv->base.context_del = nv84_fence_context_del;
5e120f6e
BS
169 priv->base.emit = nv84_fence_emit;
170 priv->base.sync = nv84_fence_sync;
171 priv->base.read = nv84_fence_read;
e193b1d4 172 dev_priv->fence.func = priv;
5e120f6e
BS
173
174 ret = nouveau_gpuobj_new(dev, NULL, 16 * pfifo->channels,
175 0x1000, 0, &priv->mem);
176 if (ret)
177 goto out;
178
179out:
180 if (ret)
e193b1d4 181 nv84_fence_destroy(dev);
5e120f6e
BS
182 return ret;
183}