blob: 6dd21754ba671986f93476edbfd6b2cc764ba583 [file] [log] [blame]
Dave Airlie414ed532005-08-16 20:43:16 +10001/* r300_cmdbuf.c -- Command buffer emission for R300 -*- linux-c -*-
2 *
3 * Copyright (C) The Weather Channel, Inc. 2002.
4 * Copyright (C) 2004 Nicolai Haehnle.
5 * All Rights Reserved.
6 *
7 * The Weather Channel (TM) funded Tungsten Graphics to develop the
8 * initial release of the Radeon 8500 driver under the XFree86 license.
9 * This notice must be preserved.
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice (including the next
19 * paragraph) shall be included in all copies or substantial portions of the
20 * Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
26 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28 * DEALINGS IN THE SOFTWARE.
29 *
30 * Authors:
31 * Nicolai Haehnle <prefect_@gmx.net>
32 */
33
34#include "drmP.h"
35#include "drm.h"
36#include "radeon_drm.h"
37#include "radeon_drv.h"
38#include "r300_reg.h"
39
Dave Airlie414ed532005-08-16 20:43:16 +100040#define R300_SIMULTANEOUS_CLIPRECTS 4
41
42/* Values for R300_RE_CLIPRECT_CNTL depending on the number of cliprects
43 */
44static const int r300_cliprect_cntl[4] = {
45 0xAAAA,
46 0xEEEE,
47 0xFEFE,
48 0xFFFE
49};
50
Dave Airlie414ed532005-08-16 20:43:16 +100051/**
52 * Emit up to R300_SIMULTANEOUS_CLIPRECTS cliprects from the given command
53 * buffer, starting with index n.
54 */
Dave Airlied985c102006-01-02 21:32:48 +110055static int r300_emit_cliprects(drm_radeon_private_t *dev_priv,
56 drm_radeon_kcmd_buffer_t *cmdbuf, int n)
Dave Airlie414ed532005-08-16 20:43:16 +100057{
58 drm_clip_rect_t box;
59 int nr;
60 int i;
61 RING_LOCALS;
62
63 nr = cmdbuf->nbox - n;
64 if (nr > R300_SIMULTANEOUS_CLIPRECTS)
65 nr = R300_SIMULTANEOUS_CLIPRECTS;
66
67 DRM_DEBUG("%i cliprects\n", nr);
68
69 if (nr) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +100070 BEGIN_RING(6 + nr * 2);
71 OUT_RING(CP_PACKET0(R300_RE_CLIPRECT_TL_0, nr * 2 - 1));
Dave Airlie414ed532005-08-16 20:43:16 +100072
Dave Airlieb5e89ed2005-09-25 14:28:13 +100073 for (i = 0; i < nr; ++i) {
74 if (DRM_COPY_FROM_USER_UNCHECKED
75 (&box, &cmdbuf->boxes[n + i], sizeof(box))) {
Dave Airlie414ed532005-08-16 20:43:16 +100076 DRM_ERROR("copy cliprect faulted\n");
77 return DRM_ERR(EFAULT);
78 }
79
Dave Airlieb5e89ed2005-09-25 14:28:13 +100080 box.x1 =
81 (box.x1 +
82 R300_CLIPRECT_OFFSET) & R300_CLIPRECT_MASK;
83 box.y1 =
84 (box.y1 +
85 R300_CLIPRECT_OFFSET) & R300_CLIPRECT_MASK;
86 box.x2 =
87 (box.x2 +
88 R300_CLIPRECT_OFFSET) & R300_CLIPRECT_MASK;
89 box.y2 =
90 (box.y2 +
91 R300_CLIPRECT_OFFSET) & R300_CLIPRECT_MASK;
Dave Airlie414ed532005-08-16 20:43:16 +100092
93 OUT_RING((box.x1 << R300_CLIPRECT_X_SHIFT) |
Dave Airlieb5e89ed2005-09-25 14:28:13 +100094 (box.y1 << R300_CLIPRECT_Y_SHIFT));
Dave Airlie414ed532005-08-16 20:43:16 +100095 OUT_RING((box.x2 << R300_CLIPRECT_X_SHIFT) |
Dave Airlieb5e89ed2005-09-25 14:28:13 +100096 (box.y2 << R300_CLIPRECT_Y_SHIFT));
Dave Airlie414ed532005-08-16 20:43:16 +100097 }
98
Dave Airlieb5e89ed2005-09-25 14:28:13 +100099 OUT_RING_REG(R300_RE_CLIPRECT_CNTL, r300_cliprect_cntl[nr - 1]);
Dave Airlie414ed532005-08-16 20:43:16 +1000100
101 /* TODO/SECURITY: Force scissors to a safe value, otherwise the
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000102 * client might be able to trample over memory.
103 * The impact should be very limited, but I'd rather be safe than
104 * sorry.
105 */
106 OUT_RING(CP_PACKET0(R300_RE_SCISSORS_TL, 1));
107 OUT_RING(0);
108 OUT_RING(R300_SCISSORS_X_MASK | R300_SCISSORS_Y_MASK);
Dave Airlie414ed532005-08-16 20:43:16 +1000109 ADVANCE_RING();
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000110 } else {
Dave Airlie414ed532005-08-16 20:43:16 +1000111 /* Why we allow zero cliprect rendering:
112 * There are some commands in a command buffer that must be submitted
113 * even when there are no cliprects, e.g. DMA buffer discard
114 * or state setting (though state setting could be avoided by
115 * simulating a loss of context).
116 *
117 * Now since the cmdbuf interface is so chaotic right now (and is
118 * bound to remain that way for a bit until things settle down),
119 * it is basically impossible to filter out the commands that are
120 * necessary and those that aren't.
121 *
122 * So I choose the safe way and don't do any filtering at all;
123 * instead, I simply set up the engine so that all rendering
124 * can't produce any fragments.
125 */
126 BEGIN_RING(2);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000127 OUT_RING_REG(R300_RE_CLIPRECT_CNTL, 0);
Dave Airlie414ed532005-08-16 20:43:16 +1000128 ADVANCE_RING();
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000129 }
Dave Airlie414ed532005-08-16 20:43:16 +1000130
131 return 0;
132}
133
Dave Airlieb3a83632005-09-30 18:37:36 +1000134static u8 r300_reg_flags[0x10000 >> 2];
Dave Airlie414ed532005-08-16 20:43:16 +1000135
136void r300_init_reg_flags(void)
137{
138 int i;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000139 memset(r300_reg_flags, 0, 0x10000 >> 2);
140#define ADD_RANGE_MARK(reg, count,mark) \
Dave Airlie414ed532005-08-16 20:43:16 +1000141 for(i=((reg)>>2);i<((reg)>>2)+(count);i++)\
142 r300_reg_flags[i]|=(mark);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000143
144#define MARK_SAFE 1
145#define MARK_CHECK_OFFSET 2
146
147#define ADD_RANGE(reg, count) ADD_RANGE_MARK(reg, count, MARK_SAFE)
Dave Airlie414ed532005-08-16 20:43:16 +1000148
149 /* these match cmducs() command in r300_driver/r300/r300_cmdbuf.c */
150 ADD_RANGE(R300_SE_VPORT_XSCALE, 6);
151 ADD_RANGE(0x2080, 1);
152 ADD_RANGE(R300_SE_VTE_CNTL, 2);
153 ADD_RANGE(0x2134, 2);
154 ADD_RANGE(0x2140, 1);
155 ADD_RANGE(R300_VAP_INPUT_CNTL_0, 2);
156 ADD_RANGE(0x21DC, 1);
157 ADD_RANGE(0x221C, 1);
158 ADD_RANGE(0x2220, 4);
159 ADD_RANGE(0x2288, 1);
160 ADD_RANGE(R300_VAP_OUTPUT_VTX_FMT_0, 2);
161 ADD_RANGE(R300_VAP_PVS_CNTL_1, 3);
162 ADD_RANGE(R300_GB_ENABLE, 1);
163 ADD_RANGE(R300_GB_MSPOS0, 5);
Dave Airlie4e5e2e22006-02-18 15:51:35 +1100164 ADD_RANGE(R300_TX_CNTL, 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000165 ADD_RANGE(R300_TX_ENABLE, 1);
166 ADD_RANGE(0x4200, 4);
167 ADD_RANGE(0x4214, 1);
168 ADD_RANGE(R300_RE_POINTSIZE, 1);
169 ADD_RANGE(0x4230, 3);
170 ADD_RANGE(R300_RE_LINE_CNT, 1);
171 ADD_RANGE(0x4238, 1);
172 ADD_RANGE(0x4260, 3);
173 ADD_RANGE(0x4274, 4);
174 ADD_RANGE(0x4288, 5);
175 ADD_RANGE(0x42A0, 1);
176 ADD_RANGE(R300_RE_ZBIAS_T_FACTOR, 4);
177 ADD_RANGE(0x42B4, 1);
178 ADD_RANGE(R300_RE_CULL_CNTL, 1);
179 ADD_RANGE(0x42C0, 2);
180 ADD_RANGE(R300_RS_CNTL_0, 2);
181 ADD_RANGE(R300_RS_INTERP_0, 8);
182 ADD_RANGE(R300_RS_ROUTE_0, 8);
183 ADD_RANGE(0x43A4, 2);
184 ADD_RANGE(0x43E8, 1);
185 ADD_RANGE(R300_PFS_CNTL_0, 3);
186 ADD_RANGE(R300_PFS_NODE_0, 4);
187 ADD_RANGE(R300_PFS_TEXI_0, 64);
188 ADD_RANGE(0x46A4, 5);
189 ADD_RANGE(R300_PFS_INSTR0_0, 64);
190 ADD_RANGE(R300_PFS_INSTR1_0, 64);
191 ADD_RANGE(R300_PFS_INSTR2_0, 64);
192 ADD_RANGE(R300_PFS_INSTR3_0, 64);
193 ADD_RANGE(0x4BC0, 1);
194 ADD_RANGE(0x4BC8, 3);
195 ADD_RANGE(R300_PP_ALPHA_TEST, 2);
196 ADD_RANGE(0x4BD8, 1);
197 ADD_RANGE(R300_PFS_PARAM_0_X, 64);
198 ADD_RANGE(0x4E00, 1);
199 ADD_RANGE(R300_RB3D_CBLEND, 2);
200 ADD_RANGE(R300_RB3D_COLORMASK, 1);
201 ADD_RANGE(0x4E10, 3);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000202 ADD_RANGE_MARK(R300_RB3D_COLOROFFSET0, 1, MARK_CHECK_OFFSET); /* check offset */
Dave Airlie414ed532005-08-16 20:43:16 +1000203 ADD_RANGE(R300_RB3D_COLORPITCH0, 1);
204 ADD_RANGE(0x4E50, 9);
205 ADD_RANGE(0x4E88, 1);
206 ADD_RANGE(0x4EA0, 2);
207 ADD_RANGE(R300_RB3D_ZSTENCIL_CNTL_0, 3);
208 ADD_RANGE(0x4F10, 4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000209 ADD_RANGE_MARK(R300_RB3D_DEPTHOFFSET, 1, MARK_CHECK_OFFSET); /* check offset */
210 ADD_RANGE(R300_RB3D_DEPTHPITCH, 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000211 ADD_RANGE(0x4F28, 1);
212 ADD_RANGE(0x4F30, 2);
213 ADD_RANGE(0x4F44, 1);
214 ADD_RANGE(0x4F54, 1);
215
216 ADD_RANGE(R300_TX_FILTER_0, 16);
217 ADD_RANGE(R300_TX_UNK1_0, 16);
218 ADD_RANGE(R300_TX_SIZE_0, 16);
219 ADD_RANGE(R300_TX_FORMAT_0, 16);
Dave Airlied985c102006-01-02 21:32:48 +1100220 ADD_RANGE(R300_TX_PITCH_0, 16);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000221 /* Texture offset is dangerous and needs more checking */
Dave Airlie414ed532005-08-16 20:43:16 +1000222 ADD_RANGE_MARK(R300_TX_OFFSET_0, 16, MARK_CHECK_OFFSET);
223 ADD_RANGE(R300_TX_UNK4_0, 16);
224 ADD_RANGE(R300_TX_BORDER_COLOR_0, 16);
225
226 /* Sporadic registers used as primitives are emitted */
227 ADD_RANGE(0x4f18, 1);
228 ADD_RANGE(R300_RB3D_DSTCACHE_CTLSTAT, 1);
229 ADD_RANGE(R300_VAP_INPUT_ROUTE_0_0, 8);
230 ADD_RANGE(R300_VAP_INPUT_ROUTE_1_0, 8);
231
232}
233
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000234static __inline__ int r300_check_range(unsigned reg, int count)
Dave Airlie414ed532005-08-16 20:43:16 +1000235{
236 int i;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000237 if (reg & ~0xffff)
238 return -1;
239 for (i = (reg >> 2); i < (reg >> 2) + count; i++)
240 if (r300_reg_flags[i] != MARK_SAFE)
241 return 1;
Dave Airlie414ed532005-08-16 20:43:16 +1000242 return 0;
243}
244
245 /* we expect offsets passed to the framebuffer to be either within video memory or
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000246 within AGP space */
Dave Airlied985c102006-01-02 21:32:48 +1100247static __inline__ int r300_check_offset(drm_radeon_private_t *dev_priv,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000248 u32 offset)
Dave Airlie414ed532005-08-16 20:43:16 +1000249{
250 /* we realy want to check against end of video aperture
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000251 but this value is not being kept.
252 This code is correct for now (does the same thing as the
253 code that sets MC_FB_LOCATION) in radeon_cp.c */
254 if ((offset >= dev_priv->fb_location) &&
255 (offset < dev_priv->gart_vm_start))
256 return 0;
257 if ((offset >= dev_priv->gart_vm_start) &&
258 (offset < dev_priv->gart_vm_start + dev_priv->gart_size))
259 return 0;
Dave Airlie414ed532005-08-16 20:43:16 +1000260 return 1;
261}
262
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000263static __inline__ int r300_emit_carefully_checked_packet0(drm_radeon_private_t *
264 dev_priv,
Dave Airlieb3a83632005-09-30 18:37:36 +1000265 drm_radeon_kcmd_buffer_t
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000266 * cmdbuf,
267 drm_r300_cmd_header_t
268 header)
Dave Airlie414ed532005-08-16 20:43:16 +1000269{
270 int reg;
271 int sz;
272 int i;
273 int values[64];
274 RING_LOCALS;
275
276 sz = header.packet0.count;
277 reg = (header.packet0.reghi << 8) | header.packet0.reglo;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000278
279 if ((sz > 64) || (sz < 0)) {
280 DRM_ERROR
281 ("Cannot emit more than 64 values at a time (reg=%04x sz=%d)\n",
282 reg, sz);
Dave Airlie414ed532005-08-16 20:43:16 +1000283 return DRM_ERR(EINVAL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000284 }
285 for (i = 0; i < sz; i++) {
Dave Airlieb3a83632005-09-30 18:37:36 +1000286 values[i] = ((int *)cmdbuf->buf)[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000287 switch (r300_reg_flags[(reg >> 2) + i]) {
Dave Airlie414ed532005-08-16 20:43:16 +1000288 case MARK_SAFE:
289 break;
290 case MARK_CHECK_OFFSET:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000291 if (r300_check_offset(dev_priv, (u32) values[i])) {
292 DRM_ERROR
293 ("Offset failed range check (reg=%04x sz=%d)\n",
294 reg, sz);
Dave Airlie414ed532005-08-16 20:43:16 +1000295 return DRM_ERR(EINVAL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000296 }
Dave Airlie414ed532005-08-16 20:43:16 +1000297 break;
298 default:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000299 DRM_ERROR("Register %04x failed check as flag=%02x\n",
300 reg + i * 4, r300_reg_flags[(reg >> 2) + i]);
Dave Airlie414ed532005-08-16 20:43:16 +1000301 return DRM_ERR(EINVAL);
Dave Airlie414ed532005-08-16 20:43:16 +1000302 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000303 }
304
305 BEGIN_RING(1 + sz);
306 OUT_RING(CP_PACKET0(reg, sz - 1));
307 OUT_RING_TABLE(values, sz);
Dave Airlie414ed532005-08-16 20:43:16 +1000308 ADVANCE_RING();
309
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000310 cmdbuf->buf += sz * 4;
311 cmdbuf->bufsz -= sz * 4;
Dave Airlie414ed532005-08-16 20:43:16 +1000312
313 return 0;
314}
315
316/**
317 * Emits a packet0 setting arbitrary registers.
318 * Called by r300_do_cp_cmdbuf.
319 *
320 * Note that checks are performed on contents and addresses of the registers
321 */
Dave Airlied985c102006-01-02 21:32:48 +1100322static __inline__ int r300_emit_packet0(drm_radeon_private_t *dev_priv,
323 drm_radeon_kcmd_buffer_t *cmdbuf,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000324 drm_r300_cmd_header_t header)
Dave Airlie414ed532005-08-16 20:43:16 +1000325{
326 int reg;
327 int sz;
328 RING_LOCALS;
329
330 sz = header.packet0.count;
331 reg = (header.packet0.reghi << 8) | header.packet0.reglo;
332
333 if (!sz)
334 return 0;
335
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000336 if (sz * 4 > cmdbuf->bufsz)
Dave Airlie414ed532005-08-16 20:43:16 +1000337 return DRM_ERR(EINVAL);
Dave Airlie414ed532005-08-16 20:43:16 +1000338
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000339 if (reg + sz * 4 >= 0x10000) {
340 DRM_ERROR("No such registers in hardware reg=%04x sz=%d\n", reg,
341 sz);
342 return DRM_ERR(EINVAL);
343 }
344
345 if (r300_check_range(reg, sz)) {
Dave Airlie414ed532005-08-16 20:43:16 +1000346 /* go and check everything */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000347 return r300_emit_carefully_checked_packet0(dev_priv, cmdbuf,
348 header);
349 }
Dave Airlie414ed532005-08-16 20:43:16 +1000350 /* the rest of the data is safe to emit, whatever the values the user passed */
351
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000352 BEGIN_RING(1 + sz);
353 OUT_RING(CP_PACKET0(reg, sz - 1));
Dave Airlieb3a83632005-09-30 18:37:36 +1000354 OUT_RING_TABLE((int *)cmdbuf->buf, sz);
Dave Airlie414ed532005-08-16 20:43:16 +1000355 ADVANCE_RING();
356
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000357 cmdbuf->buf += sz * 4;
358 cmdbuf->bufsz -= sz * 4;
Dave Airlie414ed532005-08-16 20:43:16 +1000359
360 return 0;
361}
362
Dave Airlie414ed532005-08-16 20:43:16 +1000363/**
364 * Uploads user-supplied vertex program instructions or parameters onto
365 * the graphics card.
366 * Called by r300_do_cp_cmdbuf.
367 */
Dave Airlied985c102006-01-02 21:32:48 +1100368static __inline__ int r300_emit_vpu(drm_radeon_private_t *dev_priv,
369 drm_radeon_kcmd_buffer_t *cmdbuf,
Dave Airlie414ed532005-08-16 20:43:16 +1000370 drm_r300_cmd_header_t header)
371{
372 int sz;
373 int addr;
374 RING_LOCALS;
375
376 sz = header.vpu.count;
377 addr = (header.vpu.adrhi << 8) | header.vpu.adrlo;
378
379 if (!sz)
380 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000381 if (sz * 16 > cmdbuf->bufsz)
Dave Airlie414ed532005-08-16 20:43:16 +1000382 return DRM_ERR(EINVAL);
383
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000384 BEGIN_RING(5 + sz * 4);
Dave Airlie414ed532005-08-16 20:43:16 +1000385 /* Wait for VAP to come to senses.. */
386 /* there is no need to emit it multiple times, (only once before VAP is programmed,
387 but this optimization is for later */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000388 OUT_RING_REG(R300_VAP_PVS_WAITIDLE, 0);
389 OUT_RING_REG(R300_VAP_PVS_UPLOAD_ADDRESS, addr);
390 OUT_RING(CP_PACKET0_TABLE(R300_VAP_PVS_UPLOAD_DATA, sz * 4 - 1));
Dave Airlieb3a83632005-09-30 18:37:36 +1000391 OUT_RING_TABLE((int *)cmdbuf->buf, sz * 4);
Dave Airlie414ed532005-08-16 20:43:16 +1000392
393 ADVANCE_RING();
394
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000395 cmdbuf->buf += sz * 16;
396 cmdbuf->bufsz -= sz * 16;
Dave Airlie414ed532005-08-16 20:43:16 +1000397
398 return 0;
399}
400
Dave Airlie414ed532005-08-16 20:43:16 +1000401/**
402 * Emit a clear packet from userspace.
403 * Called by r300_emit_packet3.
404 */
Dave Airlied985c102006-01-02 21:32:48 +1100405static __inline__ int r300_emit_clear(drm_radeon_private_t *dev_priv,
406 drm_radeon_kcmd_buffer_t *cmdbuf)
Dave Airlie414ed532005-08-16 20:43:16 +1000407{
408 RING_LOCALS;
409
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000410 if (8 * 4 > cmdbuf->bufsz)
Dave Airlie414ed532005-08-16 20:43:16 +1000411 return DRM_ERR(EINVAL);
412
413 BEGIN_RING(10);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000414 OUT_RING(CP_PACKET3(R200_3D_DRAW_IMMD_2, 8));
415 OUT_RING(R300_PRIM_TYPE_POINT | R300_PRIM_WALK_RING |
416 (1 << R300_PRIM_NUM_VERTICES_SHIFT));
Dave Airlieb3a83632005-09-30 18:37:36 +1000417 OUT_RING_TABLE((int *)cmdbuf->buf, 8);
Dave Airlie414ed532005-08-16 20:43:16 +1000418 ADVANCE_RING();
419
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000420 cmdbuf->buf += 8 * 4;
421 cmdbuf->bufsz -= 8 * 4;
Dave Airlie414ed532005-08-16 20:43:16 +1000422
423 return 0;
424}
425
Dave Airlied985c102006-01-02 21:32:48 +1100426static __inline__ int r300_emit_3d_load_vbpntr(drm_radeon_private_t *dev_priv,
427 drm_radeon_kcmd_buffer_t *cmdbuf,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000428 u32 header)
Dave Airlie414ed532005-08-16 20:43:16 +1000429{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000430 int count, i, k;
431#define MAX_ARRAY_PACKET 64
Dave Airlie414ed532005-08-16 20:43:16 +1000432 u32 payload[MAX_ARRAY_PACKET];
433 u32 narrays;
434 RING_LOCALS;
435
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000436 count = (header >> 16) & 0x3fff;
437
438 if ((count + 1) > MAX_ARRAY_PACKET) {
439 DRM_ERROR("Too large payload in 3D_LOAD_VBPNTR (count=%d)\n",
440 count);
Dave Airlie414ed532005-08-16 20:43:16 +1000441 return DRM_ERR(EINVAL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000442 }
443 memset(payload, 0, MAX_ARRAY_PACKET * 4);
444 memcpy(payload, cmdbuf->buf + 4, (count + 1) * 4);
445
Dave Airlie414ed532005-08-16 20:43:16 +1000446 /* carefully check packet contents */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000447
448 narrays = payload[0];
449 k = 0;
450 i = 1;
451 while ((k < narrays) && (i < (count + 1))) {
452 i++; /* skip attribute field */
453 if (r300_check_offset(dev_priv, payload[i])) {
454 DRM_ERROR
455 ("Offset failed range check (k=%d i=%d) while processing 3D_LOAD_VBPNTR packet.\n",
456 k, i);
Dave Airlie414ed532005-08-16 20:43:16 +1000457 return DRM_ERR(EINVAL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000458 }
Dave Airlie414ed532005-08-16 20:43:16 +1000459 k++;
460 i++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000461 if (k == narrays)
462 break;
Dave Airlie414ed532005-08-16 20:43:16 +1000463 /* have one more to process, they come in pairs */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000464 if (r300_check_offset(dev_priv, payload[i])) {
465 DRM_ERROR
466 ("Offset failed range check (k=%d i=%d) while processing 3D_LOAD_VBPNTR packet.\n",
467 k, i);
Dave Airlie414ed532005-08-16 20:43:16 +1000468 return DRM_ERR(EINVAL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000469 }
Dave Airlie414ed532005-08-16 20:43:16 +1000470 k++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000471 i++;
472 }
Dave Airlie414ed532005-08-16 20:43:16 +1000473 /* do the counts match what we expect ? */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000474 if ((k != narrays) || (i != (count + 1))) {
475 DRM_ERROR
476 ("Malformed 3D_LOAD_VBPNTR packet (k=%d i=%d narrays=%d count+1=%d).\n",
477 k, i, narrays, count + 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000478 return DRM_ERR(EINVAL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000479 }
Dave Airlie414ed532005-08-16 20:43:16 +1000480
481 /* all clear, output packet */
482
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000483 BEGIN_RING(count + 2);
Dave Airlie414ed532005-08-16 20:43:16 +1000484 OUT_RING(header);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000485 OUT_RING_TABLE(payload, count + 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000486 ADVANCE_RING();
487
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000488 cmdbuf->buf += (count + 2) * 4;
489 cmdbuf->bufsz -= (count + 2) * 4;
Dave Airlie414ed532005-08-16 20:43:16 +1000490
491 return 0;
492}
Dave Airlie4e5e2e22006-02-18 15:51:35 +1100493static __inline__ int r300_emit_bitblt_multi(drm_radeon_private_t *dev_priv,
494 drm_radeon_kcmd_buffer_t *cmdbuf)
495{
496 u32 *cmd = (u32 *) cmdbuf->buf;
497 int count, ret;
498 RING_LOCALS;
499
500 count=(cmd[0]>>16) & 0x3fff;
501
502 if (cmd[0] & 0x8000) {
503 u32 offset;
504
505 if (cmd[1] & (RADEON_GMC_SRC_PITCH_OFFSET_CNTL
506 | RADEON_GMC_DST_PITCH_OFFSET_CNTL)) {
507 offset = cmd[2] << 10;
508 ret = r300_check_offset(dev_priv, offset);
509 if (ret)
510 {
511 DRM_ERROR("Invalid bitblt first offset is %08X\n", offset);
512 return DRM_ERR(EINVAL);
513 }
514 }
515
516 if ((cmd[1] & RADEON_GMC_SRC_PITCH_OFFSET_CNTL) &&
517 (cmd[1] & RADEON_GMC_DST_PITCH_OFFSET_CNTL)) {
518 offset = cmd[3] << 10;
519 ret = r300_check_offset(dev_priv, offset);
520 if (ret)
521 {
522 DRM_ERROR("Invalid bitblt second offset is %08X\n", offset);
523 return DRM_ERR(EINVAL);
524 }
525
526 }
527 }
528
529 BEGIN_RING(count+2);
530 OUT_RING(cmd[0]);
531 OUT_RING_TABLE((int *)(cmdbuf->buf + 4), count + 1);
532 ADVANCE_RING();
533
534 cmdbuf->buf += (count+2)*4;
535 cmdbuf->bufsz -= (count+2)*4;
536
537 return 0;
538}
Dave Airlie414ed532005-08-16 20:43:16 +1000539
Dave Airlied985c102006-01-02 21:32:48 +1100540static __inline__ int r300_emit_raw_packet3(drm_radeon_private_t *dev_priv,
541 drm_radeon_kcmd_buffer_t *cmdbuf)
Dave Airlie414ed532005-08-16 20:43:16 +1000542{
543 u32 header;
544 int count;
545 RING_LOCALS;
546
547 if (4 > cmdbuf->bufsz)
548 return DRM_ERR(EINVAL);
549
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000550 /* Fixme !! This simply emits a packet without much checking.
Dave Airlie414ed532005-08-16 20:43:16 +1000551 We need to be smarter. */
552
553 /* obtain first word - actual packet3 header */
Dave Airlieb3a83632005-09-30 18:37:36 +1000554 header = *(u32 *) cmdbuf->buf;
Dave Airlie414ed532005-08-16 20:43:16 +1000555
556 /* Is it packet 3 ? */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000557 if ((header >> 30) != 0x3) {
Dave Airlie414ed532005-08-16 20:43:16 +1000558 DRM_ERROR("Not a packet3 header (0x%08x)\n", header);
559 return DRM_ERR(EINVAL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000560 }
Dave Airlie414ed532005-08-16 20:43:16 +1000561
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000562 count = (header >> 16) & 0x3fff;
Dave Airlie414ed532005-08-16 20:43:16 +1000563
564 /* Check again now that we know how much data to expect */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000565 if ((count + 2) * 4 > cmdbuf->bufsz) {
566 DRM_ERROR
567 ("Expected packet3 of length %d but have only %d bytes left\n",
568 (count + 2) * 4, cmdbuf->bufsz);
Dave Airlie414ed532005-08-16 20:43:16 +1000569 return DRM_ERR(EINVAL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000570 }
Dave Airlie414ed532005-08-16 20:43:16 +1000571
572 /* Is it a packet type we know about ? */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000573 switch (header & 0xff00) {
574 case RADEON_3D_LOAD_VBPNTR: /* load vertex array pointers */
Dave Airlie414ed532005-08-16 20:43:16 +1000575 return r300_emit_3d_load_vbpntr(dev_priv, cmdbuf, header);
576
Dave Airlie4e5e2e22006-02-18 15:51:35 +1100577 case RADEON_CNTL_BITBLT_MULTI:
578 return r300_emit_bitblt_multi(dev_priv, cmdbuf);
579
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000580 case RADEON_CP_3D_DRAW_IMMD_2: /* triggers drawing using in-packet vertex data */
581 case RADEON_CP_3D_DRAW_VBUF_2: /* triggers drawing of vertex buffers setup elsewhere */
582 case RADEON_CP_3D_DRAW_INDX_2: /* triggers drawing using indices to vertex buffer */
583 case RADEON_CP_INDX_BUFFER: /* DRAW_INDX_2 without INDX_BUFFER seems to lock up the gpu */
Dave Airlie414ed532005-08-16 20:43:16 +1000584 case RADEON_WAIT_FOR_IDLE:
585 case RADEON_CP_NOP:
586 /* these packets are safe */
587 break;
588 default:
589 DRM_ERROR("Unknown packet3 header (0x%08x)\n", header);
590 return DRM_ERR(EINVAL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000591 }
Dave Airlie414ed532005-08-16 20:43:16 +1000592
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000593 BEGIN_RING(count + 2);
Dave Airlie414ed532005-08-16 20:43:16 +1000594 OUT_RING(header);
Dave Airlieb3a83632005-09-30 18:37:36 +1000595 OUT_RING_TABLE((int *)(cmdbuf->buf + 4), count + 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000596 ADVANCE_RING();
597
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000598 cmdbuf->buf += (count + 2) * 4;
599 cmdbuf->bufsz -= (count + 2) * 4;
Dave Airlie414ed532005-08-16 20:43:16 +1000600
601 return 0;
602}
603
Dave Airlie414ed532005-08-16 20:43:16 +1000604/**
605 * Emit a rendering packet3 from userspace.
606 * Called by r300_do_cp_cmdbuf.
607 */
Dave Airlied985c102006-01-02 21:32:48 +1100608static __inline__ int r300_emit_packet3(drm_radeon_private_t *dev_priv,
609 drm_radeon_kcmd_buffer_t *cmdbuf,
Dave Airlie414ed532005-08-16 20:43:16 +1000610 drm_r300_cmd_header_t header)
611{
612 int n;
613 int ret;
Dave Airlieb3a83632005-09-30 18:37:36 +1000614 char *orig_buf = cmdbuf->buf;
Dave Airlie414ed532005-08-16 20:43:16 +1000615 int orig_bufsz = cmdbuf->bufsz;
616
617 /* This is a do-while-loop so that we run the interior at least once,
618 * even if cmdbuf->nbox is 0. Compare r300_emit_cliprects for rationale.
619 */
620 n = 0;
621 do {
622 if (cmdbuf->nbox > R300_SIMULTANEOUS_CLIPRECTS) {
623 ret = r300_emit_cliprects(dev_priv, cmdbuf, n);
624 if (ret)
625 return ret;
626
627 cmdbuf->buf = orig_buf;
628 cmdbuf->bufsz = orig_bufsz;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000629 }
Dave Airlie414ed532005-08-16 20:43:16 +1000630
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000631 switch (header.packet3.packet) {
Dave Airlie414ed532005-08-16 20:43:16 +1000632 case R300_CMD_PACKET3_CLEAR:
633 DRM_DEBUG("R300_CMD_PACKET3_CLEAR\n");
634 ret = r300_emit_clear(dev_priv, cmdbuf);
635 if (ret) {
636 DRM_ERROR("r300_emit_clear failed\n");
637 return ret;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000638 }
Dave Airlie414ed532005-08-16 20:43:16 +1000639 break;
640
641 case R300_CMD_PACKET3_RAW:
642 DRM_DEBUG("R300_CMD_PACKET3_RAW\n");
643 ret = r300_emit_raw_packet3(dev_priv, cmdbuf);
644 if (ret) {
645 DRM_ERROR("r300_emit_raw_packet3 failed\n");
646 return ret;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000647 }
Dave Airlie414ed532005-08-16 20:43:16 +1000648 break;
649
650 default:
651 DRM_ERROR("bad packet3 type %i at %p\n",
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000652 header.packet3.packet,
653 cmdbuf->buf - sizeof(header));
Dave Airlie414ed532005-08-16 20:43:16 +1000654 return DRM_ERR(EINVAL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000655 }
Dave Airlie414ed532005-08-16 20:43:16 +1000656
657 n += R300_SIMULTANEOUS_CLIPRECTS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000658 } while (n < cmdbuf->nbox);
Dave Airlie414ed532005-08-16 20:43:16 +1000659
660 return 0;
661}
662
663/* Some of the R300 chips seem to be extremely touchy about the two registers
664 * that are configured in r300_pacify.
665 * Among the worst offenders seems to be the R300 ND (0x4E44): When userspace
666 * sends a command buffer that contains only state setting commands and a
667 * vertex program/parameter upload sequence, this will eventually lead to a
668 * lockup, unless the sequence is bracketed by calls to r300_pacify.
669 * So we should take great care to *always* call r300_pacify before
670 * *anything* 3D related, and again afterwards. This is what the
671 * call bracket in r300_do_cp_cmdbuf is for.
672 */
673
674/**
675 * Emit the sequence to pacify R300.
676 */
Dave Airlied985c102006-01-02 21:32:48 +1100677static __inline__ void r300_pacify(drm_radeon_private_t *dev_priv)
Dave Airlie414ed532005-08-16 20:43:16 +1000678{
679 RING_LOCALS;
680
681 BEGIN_RING(6);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000682 OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0));
683 OUT_RING(0xa);
684 OUT_RING(CP_PACKET0(0x4f18, 0));
685 OUT_RING(0x3);
686 OUT_RING(CP_PACKET3(RADEON_CP_NOP, 0));
687 OUT_RING(0x0);
Dave Airlie414ed532005-08-16 20:43:16 +1000688 ADVANCE_RING();
689}
690
Dave Airlie414ed532005-08-16 20:43:16 +1000691/**
692 * Called by r300_do_cp_cmdbuf to update the internal buffer age and state.
693 * The actual age emit is done by r300_do_cp_cmdbuf, which is why you must
694 * be careful about how this function is called.
695 */
696static void r300_discard_buffer(drm_device_t * dev, drm_buf_t * buf)
697{
698 drm_radeon_private_t *dev_priv = dev->dev_private;
699 drm_radeon_buf_priv_t *buf_priv = buf->dev_private;
700
701 buf_priv->age = ++dev_priv->sarea_priv->last_dispatch;
702 buf->pending = 1;
703 buf->used = 0;
704}
705
Dave Airlie414ed532005-08-16 20:43:16 +1000706/**
707 * Parses and validates a user-supplied command buffer and emits appropriate
708 * commands on the DMA ring buffer.
709 * Called by the ioctl handler function radeon_cp_cmdbuf.
710 */
Dave Airlied985c102006-01-02 21:32:48 +1100711int r300_do_cp_cmdbuf(drm_device_t *dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000712 DRMFILE filp,
Dave Airlied985c102006-01-02 21:32:48 +1100713 drm_file_t *filp_priv,
714 drm_radeon_kcmd_buffer_t *cmdbuf)
Dave Airlie414ed532005-08-16 20:43:16 +1000715{
716 drm_radeon_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000717 drm_device_dma_t *dma = dev->dma;
718 drm_buf_t *buf = NULL;
Dave Airlie414ed532005-08-16 20:43:16 +1000719 int emit_dispatch_age = 0;
720 int ret = 0;
721
722 DRM_DEBUG("\n");
723
724 /* See the comment above r300_emit_begin3d for why this call must be here,
725 * and what the cleanup gotos are for. */
726 r300_pacify(dev_priv);
727
728 if (cmdbuf->nbox <= R300_SIMULTANEOUS_CLIPRECTS) {
729 ret = r300_emit_cliprects(dev_priv, cmdbuf, 0);
730 if (ret)
731 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000732 }
Dave Airlie414ed532005-08-16 20:43:16 +1000733
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000734 while (cmdbuf->bufsz >= sizeof(drm_r300_cmd_header_t)) {
Dave Airlie414ed532005-08-16 20:43:16 +1000735 int idx;
736 drm_r300_cmd_header_t header;
737
738 header.u = *(unsigned int *)cmdbuf->buf;
739
740 cmdbuf->buf += sizeof(header);
741 cmdbuf->bufsz -= sizeof(header);
742
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000743 switch (header.header.cmd_type) {
744 case R300_CMD_PACKET0:
Dave Airlie414ed532005-08-16 20:43:16 +1000745 DRM_DEBUG("R300_CMD_PACKET0\n");
746 ret = r300_emit_packet0(dev_priv, cmdbuf, header);
747 if (ret) {
748 DRM_ERROR("r300_emit_packet0 failed\n");
749 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000750 }
Dave Airlie414ed532005-08-16 20:43:16 +1000751 break;
752
753 case R300_CMD_VPU:
754 DRM_DEBUG("R300_CMD_VPU\n");
755 ret = r300_emit_vpu(dev_priv, cmdbuf, header);
756 if (ret) {
757 DRM_ERROR("r300_emit_vpu failed\n");
758 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000759 }
Dave Airlie414ed532005-08-16 20:43:16 +1000760 break;
761
762 case R300_CMD_PACKET3:
763 DRM_DEBUG("R300_CMD_PACKET3\n");
764 ret = r300_emit_packet3(dev_priv, cmdbuf, header);
765 if (ret) {
766 DRM_ERROR("r300_emit_packet3 failed\n");
767 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000768 }
Dave Airlie414ed532005-08-16 20:43:16 +1000769 break;
770
771 case R300_CMD_END3D:
772 DRM_DEBUG("R300_CMD_END3D\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000773 /* TODO:
774 Ideally userspace driver should not need to issue this call,
775 i.e. the drm driver should issue it automatically and prevent
776 lockups.
Dave Airlie414ed532005-08-16 20:43:16 +1000777
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000778 In practice, we do not understand why this call is needed and what
779 it does (except for some vague guesses that it has to do with cache
780 coherence) and so the user space driver does it.
781
782 Once we are sure which uses prevent lockups the code could be moved
783 into the kernel and the userspace driver will not
784 need to use this command.
785
786 Note that issuing this command does not hurt anything
787 except, possibly, performance */
Dave Airlie414ed532005-08-16 20:43:16 +1000788 r300_pacify(dev_priv);
789 break;
790
791 case R300_CMD_CP_DELAY:
792 /* simple enough, we can do it here */
793 DRM_DEBUG("R300_CMD_CP_DELAY\n");
794 {
795 int i;
796 RING_LOCALS;
797
798 BEGIN_RING(header.delay.count);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000799 for (i = 0; i < header.delay.count; i++)
Dave Airlie414ed532005-08-16 20:43:16 +1000800 OUT_RING(RADEON_CP_PACKET2);
801 ADVANCE_RING();
802 }
803 break;
804
805 case R300_CMD_DMA_DISCARD:
806 DRM_DEBUG("RADEON_CMD_DMA_DISCARD\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000807 idx = header.dma.buf_idx;
808 if (idx < 0 || idx >= dma->buf_count) {
809 DRM_ERROR("buffer index %d (of %d max)\n",
810 idx, dma->buf_count - 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000811 ret = DRM_ERR(EINVAL);
Dave Airlie414ed532005-08-16 20:43:16 +1000812 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000813 }
814
815 buf = dma->buflist[idx];
816 if (buf->filp != filp || buf->pending) {
817 DRM_ERROR("bad buffer %p %p %d\n",
818 buf->filp, filp, buf->pending);
819 ret = DRM_ERR(EINVAL);
820 goto cleanup;
821 }
Dave Airlie414ed532005-08-16 20:43:16 +1000822
823 emit_dispatch_age = 1;
824 r300_discard_buffer(dev, buf);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000825 break;
Dave Airlie414ed532005-08-16 20:43:16 +1000826
827 case R300_CMD_WAIT:
828 /* simple enough, we can do it here */
829 DRM_DEBUG("R300_CMD_WAIT\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000830 if (header.wait.flags == 0)
831 break; /* nothing to do */
Dave Airlie414ed532005-08-16 20:43:16 +1000832
833 {
834 RING_LOCALS;
835
836 BEGIN_RING(2);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000837 OUT_RING(CP_PACKET0(RADEON_WAIT_UNTIL, 0));
838 OUT_RING((header.wait.flags & 0xf) << 14);
Dave Airlie414ed532005-08-16 20:43:16 +1000839 ADVANCE_RING();
840 }
841 break;
842
843 default:
844 DRM_ERROR("bad cmd_type %i at %p\n",
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000845 header.header.cmd_type,
Dave Airlie414ed532005-08-16 20:43:16 +1000846 cmdbuf->buf - sizeof(header));
847 ret = DRM_ERR(EINVAL);
848 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000849 }
Dave Airlie414ed532005-08-16 20:43:16 +1000850 }
851
852 DRM_DEBUG("END\n");
853
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000854 cleanup:
Dave Airlie414ed532005-08-16 20:43:16 +1000855 r300_pacify(dev_priv);
856
857 /* We emit the vertex buffer age here, outside the pacifier "brackets"
858 * for two reasons:
859 * (1) This may coalesce multiple age emissions into a single one and
860 * (2) more importantly, some chips lock up hard when scratch registers
861 * are written inside the pacifier bracket.
862 */
863 if (emit_dispatch_age) {
864 RING_LOCALS;
865
866 /* Emit the vertex buffer age */
867 BEGIN_RING(2);
868 RADEON_DISPATCH_AGE(dev_priv->sarea_priv->last_dispatch);
869 ADVANCE_RING();
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000870 }
Dave Airlie414ed532005-08-16 20:43:16 +1000871
872 COMMIT_RING();
873
874 return ret;
875}