blob: 20319e59d368ca1bf6b3e2368b97ccfd7e782f6b [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
2 * Copyright (C) 2007 Ben Skeggs.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 */
26
27#include "drmP.h"
28#include "drm.h"
29#include "nouveau_drv.h"
30
31MODULE_FIRMWARE("nouveau/nv50.ctxprog");
32MODULE_FIRMWARE("nouveau/nv50.ctxvals");
33MODULE_FIRMWARE("nouveau/nv84.ctxprog");
34MODULE_FIRMWARE("nouveau/nv84.ctxvals");
35MODULE_FIRMWARE("nouveau/nv86.ctxprog");
36MODULE_FIRMWARE("nouveau/nv86.ctxvals");
37MODULE_FIRMWARE("nouveau/nv92.ctxprog");
38MODULE_FIRMWARE("nouveau/nv92.ctxvals");
39MODULE_FIRMWARE("nouveau/nv94.ctxprog");
40MODULE_FIRMWARE("nouveau/nv94.ctxvals");
41MODULE_FIRMWARE("nouveau/nv96.ctxprog");
42MODULE_FIRMWARE("nouveau/nv96.ctxvals");
43MODULE_FIRMWARE("nouveau/nv98.ctxprog");
44MODULE_FIRMWARE("nouveau/nv98.ctxvals");
45MODULE_FIRMWARE("nouveau/nva0.ctxprog");
46MODULE_FIRMWARE("nouveau/nva0.ctxvals");
47MODULE_FIRMWARE("nouveau/nva5.ctxprog");
48MODULE_FIRMWARE("nouveau/nva5.ctxvals");
49MODULE_FIRMWARE("nouveau/nva8.ctxprog");
50MODULE_FIRMWARE("nouveau/nva8.ctxvals");
51MODULE_FIRMWARE("nouveau/nvaa.ctxprog");
52MODULE_FIRMWARE("nouveau/nvaa.ctxvals");
53MODULE_FIRMWARE("nouveau/nvac.ctxprog");
54MODULE_FIRMWARE("nouveau/nvac.ctxvals");
55
56#define IS_G80 ((dev_priv->chipset & 0xf0) == 0x50)
57
58static void
59nv50_graph_init_reset(struct drm_device *dev)
60{
61 uint32_t pmc_e = NV_PMC_ENABLE_PGRAPH | (1 << 21);
62
63 NV_DEBUG(dev, "\n");
64
65 nv_wr32(dev, NV03_PMC_ENABLE, nv_rd32(dev, NV03_PMC_ENABLE) & ~pmc_e);
66 nv_wr32(dev, NV03_PMC_ENABLE, nv_rd32(dev, NV03_PMC_ENABLE) | pmc_e);
67}
68
69static void
70nv50_graph_init_intr(struct drm_device *dev)
71{
72 NV_DEBUG(dev, "\n");
73
74 nv_wr32(dev, NV03_PGRAPH_INTR, 0xffffffff);
75 nv_wr32(dev, 0x400138, 0xffffffff);
76 nv_wr32(dev, NV40_PGRAPH_INTR_EN, 0xffffffff);
77}
78
79static void
80nv50_graph_init_regs__nv(struct drm_device *dev)
81{
82 NV_DEBUG(dev, "\n");
83
84 nv_wr32(dev, 0x400804, 0xc0000000);
85 nv_wr32(dev, 0x406800, 0xc0000000);
86 nv_wr32(dev, 0x400c04, 0xc0000000);
Marcin Koƛcielnicki716abaa2010-01-12 18:21:56 +000087 nv_wr32(dev, 0x401800, 0xc0000000);
Ben Skeggs6ee73862009-12-11 19:24:15 +100088 nv_wr32(dev, 0x405018, 0xc0000000);
89 nv_wr32(dev, 0x402000, 0xc0000000);
90
91 nv_wr32(dev, 0x400108, 0xffffffff);
92
93 nv_wr32(dev, 0x400824, 0x00004000);
94 nv_wr32(dev, 0x400500, 0x00010001);
95}
96
97static void
98nv50_graph_init_regs(struct drm_device *dev)
99{
100 NV_DEBUG(dev, "\n");
101
102 nv_wr32(dev, NV04_PGRAPH_DEBUG_3,
103 (1 << 2) /* HW_CONTEXT_SWITCH_ENABLED */);
104 nv_wr32(dev, 0x402ca8, 0x800);
105}
106
107static int
108nv50_graph_init_ctxctl(struct drm_device *dev)
109{
Ben Skeggs054b93e2009-12-15 22:02:47 +1000110 struct drm_nouveau_private *dev_priv = dev->dev_private;
111
Ben Skeggs6ee73862009-12-11 19:24:15 +1000112 NV_DEBUG(dev, "\n");
113
Ben Skeggs054b93e2009-12-15 22:02:47 +1000114 nouveau_grctx_prog_load(dev);
115 if (!dev_priv->engine.graph.ctxprog)
116 dev_priv->engine.graph.accel_blocked = true;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000117
118 nv_wr32(dev, 0x400320, 4);
119 nv_wr32(dev, NV40_PGRAPH_CTXCTL_CUR, 0);
120 nv_wr32(dev, NV20_PGRAPH_CHANNEL_CTX_POINTER, 0);
121 return 0;
122}
123
124int
125nv50_graph_init(struct drm_device *dev)
126{
127 int ret;
128
129 NV_DEBUG(dev, "\n");
130
131 nv50_graph_init_reset(dev);
132 nv50_graph_init_regs__nv(dev);
133 nv50_graph_init_regs(dev);
134 nv50_graph_init_intr(dev);
135
136 ret = nv50_graph_init_ctxctl(dev);
137 if (ret)
138 return ret;
139
140 return 0;
141}
142
143void
144nv50_graph_takedown(struct drm_device *dev)
145{
146 NV_DEBUG(dev, "\n");
Ben Skeggs054b93e2009-12-15 22:02:47 +1000147 nouveau_grctx_fini(dev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000148}
149
150void
151nv50_graph_fifo_access(struct drm_device *dev, bool enabled)
152{
153 const uint32_t mask = 0x00010001;
154
155 if (enabled)
156 nv_wr32(dev, 0x400500, nv_rd32(dev, 0x400500) | mask);
157 else
158 nv_wr32(dev, 0x400500, nv_rd32(dev, 0x400500) & ~mask);
159}
160
161struct nouveau_channel *
162nv50_graph_channel(struct drm_device *dev)
163{
164 struct drm_nouveau_private *dev_priv = dev->dev_private;
165 uint32_t inst;
166 int i;
167
168 inst = nv_rd32(dev, NV50_PGRAPH_CTXCTL_CUR);
169 if (!(inst & NV50_PGRAPH_CTXCTL_CUR_LOADED))
170 return NULL;
171 inst = (inst & NV50_PGRAPH_CTXCTL_CUR_INSTANCE) << 12;
172
173 for (i = 0; i < dev_priv->engine.fifo.channels; i++) {
174 struct nouveau_channel *chan = dev_priv->fifos[i];
175
176 if (chan && chan->ramin && chan->ramin->instance == inst)
177 return chan;
178 }
179
180 return NULL;
181}
182
183int
184nv50_graph_create_context(struct nouveau_channel *chan)
185{
186 struct drm_device *dev = chan->dev;
187 struct drm_nouveau_private *dev_priv = dev->dev_private;
188 struct nouveau_gpuobj *ramin = chan->ramin->gpuobj;
189 struct nouveau_gpuobj *ctx;
190 uint32_t grctx_size = 0x70000;
191 int hdr, ret;
192
193 NV_DEBUG(dev, "ch%d\n", chan->id);
194
195 ret = nouveau_gpuobj_new_ref(dev, chan, NULL, 0, grctx_size, 0x1000,
196 NVOBJ_FLAG_ZERO_ALLOC |
197 NVOBJ_FLAG_ZERO_FREE, &chan->ramin_grctx);
198 if (ret)
199 return ret;
200 ctx = chan->ramin_grctx->gpuobj;
201
202 hdr = IS_G80 ? 0x200 : 0x20;
203 dev_priv->engine.instmem.prepare_access(dev, true);
204 nv_wo32(dev, ramin, (hdr + 0x00)/4, 0x00190002);
205 nv_wo32(dev, ramin, (hdr + 0x04)/4, chan->ramin_grctx->instance +
206 grctx_size - 1);
207 nv_wo32(dev, ramin, (hdr + 0x08)/4, chan->ramin_grctx->instance);
208 nv_wo32(dev, ramin, (hdr + 0x0c)/4, 0);
209 nv_wo32(dev, ramin, (hdr + 0x10)/4, 0);
210 nv_wo32(dev, ramin, (hdr + 0x14)/4, 0x00010000);
211 dev_priv->engine.instmem.finish_access(dev);
212
213 dev_priv->engine.instmem.prepare_access(dev, true);
Ben Skeggs054b93e2009-12-15 22:02:47 +1000214 nouveau_grctx_vals_load(dev, ctx);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000215 nv_wo32(dev, ctx, 0x00000/4, chan->ramin->instance >> 12);
216 if ((dev_priv->chipset & 0xf0) == 0xa0)
217 nv_wo32(dev, ctx, 0x00004/4, 0x00000000);
218 else
219 nv_wo32(dev, ctx, 0x0011c/4, 0x00000000);
220 dev_priv->engine.instmem.finish_access(dev);
221
222 return 0;
223}
224
225void
226nv50_graph_destroy_context(struct nouveau_channel *chan)
227{
228 struct drm_device *dev = chan->dev;
229 struct drm_nouveau_private *dev_priv = dev->dev_private;
230 int i, hdr = IS_G80 ? 0x200 : 0x20;
231
232 NV_DEBUG(dev, "ch%d\n", chan->id);
233
234 if (!chan->ramin || !chan->ramin->gpuobj)
235 return;
236
237 dev_priv->engine.instmem.prepare_access(dev, true);
238 for (i = hdr; i < hdr + 24; i += 4)
239 nv_wo32(dev, chan->ramin->gpuobj, i/4, 0);
240 dev_priv->engine.instmem.finish_access(dev);
241
242 nouveau_gpuobj_ref_del(dev, &chan->ramin_grctx);
243}
244
245static int
246nv50_graph_do_load_context(struct drm_device *dev, uint32_t inst)
247{
248 uint32_t fifo = nv_rd32(dev, 0x400500);
249
250 nv_wr32(dev, 0x400500, fifo & ~1);
251 nv_wr32(dev, 0x400784, inst);
252 nv_wr32(dev, 0x400824, nv_rd32(dev, 0x400824) | 0x40);
253 nv_wr32(dev, 0x400320, nv_rd32(dev, 0x400320) | 0x11);
254 nv_wr32(dev, 0x400040, 0xffffffff);
255 (void)nv_rd32(dev, 0x400040);
256 nv_wr32(dev, 0x400040, 0x00000000);
257 nv_wr32(dev, 0x400304, nv_rd32(dev, 0x400304) | 1);
258
259 if (nouveau_wait_for_idle(dev))
260 nv_wr32(dev, 0x40032c, inst | (1<<31));
261 nv_wr32(dev, 0x400500, fifo);
262
263 return 0;
264}
265
266int
267nv50_graph_load_context(struct nouveau_channel *chan)
268{
269 uint32_t inst = chan->ramin->instance >> 12;
270
271 NV_DEBUG(chan->dev, "ch%d\n", chan->id);
272 return nv50_graph_do_load_context(chan->dev, inst);
273}
274
275int
276nv50_graph_unload_context(struct drm_device *dev)
277{
278 uint32_t inst, fifo = nv_rd32(dev, 0x400500);
279
280 inst = nv_rd32(dev, NV50_PGRAPH_CTXCTL_CUR);
281 if (!(inst & NV50_PGRAPH_CTXCTL_CUR_LOADED))
282 return 0;
283 inst &= NV50_PGRAPH_CTXCTL_CUR_INSTANCE;
284
Maarten Maathuis0a90dc512010-01-11 21:18:53 +0100285 nouveau_wait_for_idle(dev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000286 nv_wr32(dev, 0x400500, fifo & ~1);
287 nv_wr32(dev, 0x400784, inst);
288 nv_wr32(dev, 0x400824, nv_rd32(dev, 0x400824) | 0x20);
289 nv_wr32(dev, 0x400304, nv_rd32(dev, 0x400304) | 0x01);
290 nouveau_wait_for_idle(dev);
291 nv_wr32(dev, 0x400500, fifo);
292
293 nv_wr32(dev, NV50_PGRAPH_CTXCTL_CUR, inst);
294 return 0;
295}
296
297void
298nv50_graph_context_switch(struct drm_device *dev)
299{
300 uint32_t inst;
301
302 nv50_graph_unload_context(dev);
303
304 inst = nv_rd32(dev, NV50_PGRAPH_CTXCTL_NEXT);
305 inst &= NV50_PGRAPH_CTXCTL_NEXT_INSTANCE;
306 nv50_graph_do_load_context(dev, inst);
307
308 nv_wr32(dev, NV40_PGRAPH_INTR_EN, nv_rd32(dev,
309 NV40_PGRAPH_INTR_EN) | NV_PGRAPH_INTR_CONTEXT_SWITCH);
310}
311
312static int
313nv50_graph_nvsw_dma_vblsem(struct nouveau_channel *chan, int grclass,
314 int mthd, uint32_t data)
315{
316 struct nouveau_gpuobj_ref *ref = NULL;
317
318 if (nouveau_gpuobj_ref_find(chan, data, &ref))
319 return -ENOENT;
320
321 if (nouveau_notifier_offset(ref->gpuobj, NULL))
322 return -EINVAL;
323
324 chan->nvsw.vblsem = ref->gpuobj;
325 chan->nvsw.vblsem_offset = ~0;
326 return 0;
327}
328
329static int
330nv50_graph_nvsw_vblsem_offset(struct nouveau_channel *chan, int grclass,
331 int mthd, uint32_t data)
332{
333 if (nouveau_notifier_offset(chan->nvsw.vblsem, &data))
334 return -ERANGE;
335
336 chan->nvsw.vblsem_offset = data >> 2;
337 return 0;
338}
339
340static int
341nv50_graph_nvsw_vblsem_release_val(struct nouveau_channel *chan, int grclass,
342 int mthd, uint32_t data)
343{
344 chan->nvsw.vblsem_rval = data;
345 return 0;
346}
347
348static int
349nv50_graph_nvsw_vblsem_release(struct nouveau_channel *chan, int grclass,
350 int mthd, uint32_t data)
351{
352 struct drm_device *dev = chan->dev;
353 struct drm_nouveau_private *dev_priv = dev->dev_private;
354
355 if (!chan->nvsw.vblsem || chan->nvsw.vblsem_offset == ~0 || data > 1)
356 return -EINVAL;
357
358 if (!(nv_rd32(dev, NV50_PDISPLAY_INTR_EN) &
359 NV50_PDISPLAY_INTR_EN_VBLANK_CRTC_(data))) {
360 nv_wr32(dev, NV50_PDISPLAY_INTR_1,
361 NV50_PDISPLAY_INTR_1_VBLANK_CRTC_(data));
362 nv_wr32(dev, NV50_PDISPLAY_INTR_EN, nv_rd32(dev,
363 NV50_PDISPLAY_INTR_EN) |
364 NV50_PDISPLAY_INTR_EN_VBLANK_CRTC_(data));
365 }
366
367 list_add(&chan->nvsw.vbl_wait, &dev_priv->vbl_waiting);
368 return 0;
369}
370
371static struct nouveau_pgraph_object_method nv50_graph_nvsw_methods[] = {
372 { 0x018c, nv50_graph_nvsw_dma_vblsem },
373 { 0x0400, nv50_graph_nvsw_vblsem_offset },
374 { 0x0404, nv50_graph_nvsw_vblsem_release_val },
375 { 0x0408, nv50_graph_nvsw_vblsem_release },
376 {}
377};
378
379struct nouveau_pgraph_object_class nv50_graph_grclass[] = {
380 { 0x506e, true, nv50_graph_nvsw_methods }, /* nvsw */
381 { 0x0030, false, NULL }, /* null */
382 { 0x5039, false, NULL }, /* m2mf */
383 { 0x502d, false, NULL }, /* 2d */
384 { 0x50c0, false, NULL }, /* compute */
385 { 0x5097, false, NULL }, /* tesla (nv50) */
386 { 0x8297, false, NULL }, /* tesla (nv80/nv90) */
387 { 0x8397, false, NULL }, /* tesla (nva0) */
388 { 0x8597, false, NULL }, /* tesla (nva8) */
389 {}
390};