blob: 59b2944811c50c7c9e0269585ba525ce88a49a4e [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{
Dave Airliec60ce622007-07-11 15:27:12 +100058 struct drm_clip_rect box;
Dave Airlie414ed532005-08-16 20:43:16 +100059 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");
Eric Anholt20caafa2007-08-25 19:22:43 +100077 return -EFAULT;
Dave Airlie414ed532005-08-16 20:43:16 +100078 }
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);
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000151 ADD_RANGE(R300_VAP_CNTL, 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000152 ADD_RANGE(R300_SE_VTE_CNTL, 2);
153 ADD_RANGE(0x2134, 2);
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000154 ADD_RANGE(R300_VAP_CNTL_STATUS, 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000155 ADD_RANGE(R300_VAP_INPUT_CNTL_0, 2);
156 ADD_RANGE(0x21DC, 1);
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000157 ADD_RANGE(R300_VAP_UNKNOWN_221C, 1);
158 ADD_RANGE(R300_VAP_CLIP_X_0, 4);
159 ADD_RANGE(R300_VAP_PVS_WAITIDLE, 1);
160 ADD_RANGE(R300_VAP_UNKNOWN_2288, 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000161 ADD_RANGE(R300_VAP_OUTPUT_VTX_FMT_0, 2);
162 ADD_RANGE(R300_VAP_PVS_CNTL_1, 3);
163 ADD_RANGE(R300_GB_ENABLE, 1);
164 ADD_RANGE(R300_GB_MSPOS0, 5);
Dave Airlie4e5e2e22006-02-18 15:51:35 +1100165 ADD_RANGE(R300_TX_CNTL, 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000166 ADD_RANGE(R300_TX_ENABLE, 1);
167 ADD_RANGE(0x4200, 4);
168 ADD_RANGE(0x4214, 1);
169 ADD_RANGE(R300_RE_POINTSIZE, 1);
170 ADD_RANGE(0x4230, 3);
171 ADD_RANGE(R300_RE_LINE_CNT, 1);
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000172 ADD_RANGE(R300_RE_UNK4238, 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000173 ADD_RANGE(0x4260, 3);
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000174 ADD_RANGE(R300_RE_SHADE, 4);
175 ADD_RANGE(R300_RE_POLYGON_MODE, 5);
176 ADD_RANGE(R300_RE_ZBIAS_CNTL, 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000177 ADD_RANGE(R300_RE_ZBIAS_T_FACTOR, 4);
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000178 ADD_RANGE(R300_RE_OCCLUSION_CNTL, 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000179 ADD_RANGE(R300_RE_CULL_CNTL, 1);
180 ADD_RANGE(0x42C0, 2);
181 ADD_RANGE(R300_RS_CNTL_0, 2);
182 ADD_RANGE(R300_RS_INTERP_0, 8);
183 ADD_RANGE(R300_RS_ROUTE_0, 8);
184 ADD_RANGE(0x43A4, 2);
185 ADD_RANGE(0x43E8, 1);
186 ADD_RANGE(R300_PFS_CNTL_0, 3);
187 ADD_RANGE(R300_PFS_NODE_0, 4);
188 ADD_RANGE(R300_PFS_TEXI_0, 64);
189 ADD_RANGE(0x46A4, 5);
190 ADD_RANGE(R300_PFS_INSTR0_0, 64);
191 ADD_RANGE(R300_PFS_INSTR1_0, 64);
192 ADD_RANGE(R300_PFS_INSTR2_0, 64);
193 ADD_RANGE(R300_PFS_INSTR3_0, 64);
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000194 ADD_RANGE(R300_RE_FOG_STATE, 1);
195 ADD_RANGE(R300_FOG_COLOR_R, 3);
Dave Airlie414ed532005-08-16 20:43:16 +1000196 ADD_RANGE(R300_PP_ALPHA_TEST, 2);
197 ADD_RANGE(0x4BD8, 1);
198 ADD_RANGE(R300_PFS_PARAM_0_X, 64);
199 ADD_RANGE(0x4E00, 1);
200 ADD_RANGE(R300_RB3D_CBLEND, 2);
201 ADD_RANGE(R300_RB3D_COLORMASK, 1);
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000202 ADD_RANGE(R300_RB3D_BLEND_COLOR, 3);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000203 ADD_RANGE_MARK(R300_RB3D_COLOROFFSET0, 1, MARK_CHECK_OFFSET); /* check offset */
Dave Airlie414ed532005-08-16 20:43:16 +1000204 ADD_RANGE(R300_RB3D_COLORPITCH0, 1);
205 ADD_RANGE(0x4E50, 9);
206 ADD_RANGE(0x4E88, 1);
207 ADD_RANGE(0x4EA0, 2);
208 ADD_RANGE(R300_RB3D_ZSTENCIL_CNTL_0, 3);
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000209 ADD_RANGE(R300_RB3D_ZSTENCIL_FORMAT, 4);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000210 ADD_RANGE_MARK(R300_RB3D_DEPTHOFFSET, 1, MARK_CHECK_OFFSET); /* check offset */
211 ADD_RANGE(R300_RB3D_DEPTHPITCH, 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000212 ADD_RANGE(0x4F28, 1);
213 ADD_RANGE(0x4F30, 2);
214 ADD_RANGE(0x4F44, 1);
215 ADD_RANGE(0x4F54, 1);
216
217 ADD_RANGE(R300_TX_FILTER_0, 16);
Dave Airlie45f17102006-03-19 19:12:10 +1100218 ADD_RANGE(R300_TX_FILTER1_0, 16);
Dave Airlie414ed532005-08-16 20:43:16 +1000219 ADD_RANGE(R300_TX_SIZE_0, 16);
220 ADD_RANGE(R300_TX_FORMAT_0, 16);
Dave Airlied985c102006-01-02 21:32:48 +1100221 ADD_RANGE(R300_TX_PITCH_0, 16);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000222 /* Texture offset is dangerous and needs more checking */
Dave Airlie414ed532005-08-16 20:43:16 +1000223 ADD_RANGE_MARK(R300_TX_OFFSET_0, 16, MARK_CHECK_OFFSET);
Dave Airlie45f17102006-03-19 19:12:10 +1100224 ADD_RANGE(R300_TX_CHROMA_KEY_0, 16);
Dave Airlie414ed532005-08-16 20:43:16 +1000225 ADD_RANGE(R300_TX_BORDER_COLOR_0, 16);
226
227 /* Sporadic registers used as primitives are emitted */
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000228 ADD_RANGE(R300_RB3D_ZCACHE_CTLSTAT, 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000229 ADD_RANGE(R300_RB3D_DSTCACHE_CTLSTAT, 1);
230 ADD_RANGE(R300_VAP_INPUT_ROUTE_0_0, 8);
231 ADD_RANGE(R300_VAP_INPUT_ROUTE_1_0, 8);
232
233}
234
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000235static __inline__ int r300_check_range(unsigned reg, int count)
Dave Airlie414ed532005-08-16 20:43:16 +1000236{
237 int i;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000238 if (reg & ~0xffff)
239 return -1;
240 for (i = (reg >> 2); i < (reg >> 2) + count; i++)
241 if (r300_reg_flags[i] != MARK_SAFE)
242 return 1;
Dave Airlie414ed532005-08-16 20:43:16 +1000243 return 0;
244}
245
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000246static __inline__ int r300_emit_carefully_checked_packet0(drm_radeon_private_t *
247 dev_priv,
Dave Airlieb3a83632005-09-30 18:37:36 +1000248 drm_radeon_kcmd_buffer_t
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000249 * cmdbuf,
250 drm_r300_cmd_header_t
251 header)
Dave Airlie414ed532005-08-16 20:43:16 +1000252{
253 int reg;
254 int sz;
255 int i;
256 int values[64];
257 RING_LOCALS;
258
259 sz = header.packet0.count;
260 reg = (header.packet0.reghi << 8) | header.packet0.reglo;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000261
262 if ((sz > 64) || (sz < 0)) {
263 DRM_ERROR
264 ("Cannot emit more than 64 values at a time (reg=%04x sz=%d)\n",
265 reg, sz);
Eric Anholt20caafa2007-08-25 19:22:43 +1000266 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000267 }
268 for (i = 0; i < sz; i++) {
Dave Airlieb3a83632005-09-30 18:37:36 +1000269 values[i] = ((int *)cmdbuf->buf)[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000270 switch (r300_reg_flags[(reg >> 2) + i]) {
Dave Airlie414ed532005-08-16 20:43:16 +1000271 case MARK_SAFE:
272 break;
273 case MARK_CHECK_OFFSET:
=?utf-8?q?Michel_D=C3=A4nzer?=1d6bb8e2006-12-15 18:54:35 +1100274 if (!radeon_check_offset(dev_priv, (u32) values[i])) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000275 DRM_ERROR
276 ("Offset failed range check (reg=%04x sz=%d)\n",
277 reg, sz);
Eric Anholt20caafa2007-08-25 19:22:43 +1000278 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000279 }
Dave Airlie414ed532005-08-16 20:43:16 +1000280 break;
281 default:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000282 DRM_ERROR("Register %04x failed check as flag=%02x\n",
283 reg + i * 4, r300_reg_flags[(reg >> 2) + i]);
Eric Anholt20caafa2007-08-25 19:22:43 +1000284 return -EINVAL;
Dave Airlie414ed532005-08-16 20:43:16 +1000285 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000286 }
287
288 BEGIN_RING(1 + sz);
289 OUT_RING(CP_PACKET0(reg, sz - 1));
290 OUT_RING_TABLE(values, sz);
Dave Airlie414ed532005-08-16 20:43:16 +1000291 ADVANCE_RING();
292
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000293 cmdbuf->buf += sz * 4;
294 cmdbuf->bufsz -= sz * 4;
Dave Airlie414ed532005-08-16 20:43:16 +1000295
296 return 0;
297}
298
299/**
300 * Emits a packet0 setting arbitrary registers.
301 * Called by r300_do_cp_cmdbuf.
302 *
303 * Note that checks are performed on contents and addresses of the registers
304 */
Dave Airlied985c102006-01-02 21:32:48 +1100305static __inline__ int r300_emit_packet0(drm_radeon_private_t *dev_priv,
306 drm_radeon_kcmd_buffer_t *cmdbuf,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000307 drm_r300_cmd_header_t header)
Dave Airlie414ed532005-08-16 20:43:16 +1000308{
309 int reg;
310 int sz;
311 RING_LOCALS;
312
313 sz = header.packet0.count;
314 reg = (header.packet0.reghi << 8) | header.packet0.reglo;
315
316 if (!sz)
317 return 0;
318
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000319 if (sz * 4 > cmdbuf->bufsz)
Eric Anholt20caafa2007-08-25 19:22:43 +1000320 return -EINVAL;
Dave Airlie414ed532005-08-16 20:43:16 +1000321
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000322 if (reg + sz * 4 >= 0x10000) {
323 DRM_ERROR("No such registers in hardware reg=%04x sz=%d\n", reg,
324 sz);
Eric Anholt20caafa2007-08-25 19:22:43 +1000325 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000326 }
327
328 if (r300_check_range(reg, sz)) {
Dave Airlie414ed532005-08-16 20:43:16 +1000329 /* go and check everything */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000330 return r300_emit_carefully_checked_packet0(dev_priv, cmdbuf,
331 header);
332 }
Dave Airlie414ed532005-08-16 20:43:16 +1000333 /* the rest of the data is safe to emit, whatever the values the user passed */
334
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000335 BEGIN_RING(1 + sz);
336 OUT_RING(CP_PACKET0(reg, sz - 1));
Dave Airlieb3a83632005-09-30 18:37:36 +1000337 OUT_RING_TABLE((int *)cmdbuf->buf, sz);
Dave Airlie414ed532005-08-16 20:43:16 +1000338 ADVANCE_RING();
339
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000340 cmdbuf->buf += sz * 4;
341 cmdbuf->bufsz -= sz * 4;
Dave Airlie414ed532005-08-16 20:43:16 +1000342
343 return 0;
344}
345
Dave Airlie414ed532005-08-16 20:43:16 +1000346/**
347 * Uploads user-supplied vertex program instructions or parameters onto
348 * the graphics card.
349 * Called by r300_do_cp_cmdbuf.
350 */
Dave Airlied985c102006-01-02 21:32:48 +1100351static __inline__ int r300_emit_vpu(drm_radeon_private_t *dev_priv,
352 drm_radeon_kcmd_buffer_t *cmdbuf,
Dave Airlie414ed532005-08-16 20:43:16 +1000353 drm_r300_cmd_header_t header)
354{
355 int sz;
356 int addr;
357 RING_LOCALS;
358
359 sz = header.vpu.count;
360 addr = (header.vpu.adrhi << 8) | header.vpu.adrlo;
361
362 if (!sz)
363 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000364 if (sz * 16 > cmdbuf->bufsz)
Eric Anholt20caafa2007-08-25 19:22:43 +1000365 return -EINVAL;
Dave Airlie414ed532005-08-16 20:43:16 +1000366
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000367 BEGIN_RING(5 + sz * 4);
Dave Airlie414ed532005-08-16 20:43:16 +1000368 /* Wait for VAP to come to senses.. */
369 /* there is no need to emit it multiple times, (only once before VAP is programmed,
370 but this optimization is for later */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000371 OUT_RING_REG(R300_VAP_PVS_WAITIDLE, 0);
372 OUT_RING_REG(R300_VAP_PVS_UPLOAD_ADDRESS, addr);
373 OUT_RING(CP_PACKET0_TABLE(R300_VAP_PVS_UPLOAD_DATA, sz * 4 - 1));
Dave Airlieb3a83632005-09-30 18:37:36 +1000374 OUT_RING_TABLE((int *)cmdbuf->buf, sz * 4);
Dave Airlie414ed532005-08-16 20:43:16 +1000375
376 ADVANCE_RING();
377
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000378 cmdbuf->buf += sz * 16;
379 cmdbuf->bufsz -= sz * 16;
Dave Airlie414ed532005-08-16 20:43:16 +1000380
381 return 0;
382}
383
Dave Airlie414ed532005-08-16 20:43:16 +1000384/**
385 * Emit a clear packet from userspace.
386 * Called by r300_emit_packet3.
387 */
Dave Airlied985c102006-01-02 21:32:48 +1100388static __inline__ int r300_emit_clear(drm_radeon_private_t *dev_priv,
389 drm_radeon_kcmd_buffer_t *cmdbuf)
Dave Airlie414ed532005-08-16 20:43:16 +1000390{
391 RING_LOCALS;
392
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000393 if (8 * 4 > cmdbuf->bufsz)
Eric Anholt20caafa2007-08-25 19:22:43 +1000394 return -EINVAL;
Dave Airlie414ed532005-08-16 20:43:16 +1000395
396 BEGIN_RING(10);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000397 OUT_RING(CP_PACKET3(R200_3D_DRAW_IMMD_2, 8));
398 OUT_RING(R300_PRIM_TYPE_POINT | R300_PRIM_WALK_RING |
399 (1 << R300_PRIM_NUM_VERTICES_SHIFT));
Dave Airlieb3a83632005-09-30 18:37:36 +1000400 OUT_RING_TABLE((int *)cmdbuf->buf, 8);
Dave Airlie414ed532005-08-16 20:43:16 +1000401 ADVANCE_RING();
402
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000403 cmdbuf->buf += 8 * 4;
404 cmdbuf->bufsz -= 8 * 4;
Dave Airlie414ed532005-08-16 20:43:16 +1000405
406 return 0;
407}
408
Dave Airlied985c102006-01-02 21:32:48 +1100409static __inline__ int r300_emit_3d_load_vbpntr(drm_radeon_private_t *dev_priv,
410 drm_radeon_kcmd_buffer_t *cmdbuf,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000411 u32 header)
Dave Airlie414ed532005-08-16 20:43:16 +1000412{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000413 int count, i, k;
414#define MAX_ARRAY_PACKET 64
Dave Airlie414ed532005-08-16 20:43:16 +1000415 u32 payload[MAX_ARRAY_PACKET];
416 u32 narrays;
417 RING_LOCALS;
418
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000419 count = (header >> 16) & 0x3fff;
420
421 if ((count + 1) > MAX_ARRAY_PACKET) {
422 DRM_ERROR("Too large payload in 3D_LOAD_VBPNTR (count=%d)\n",
423 count);
Eric Anholt20caafa2007-08-25 19:22:43 +1000424 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000425 }
426 memset(payload, 0, MAX_ARRAY_PACKET * 4);
427 memcpy(payload, cmdbuf->buf + 4, (count + 1) * 4);
428
Dave Airlie414ed532005-08-16 20:43:16 +1000429 /* carefully check packet contents */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000430
431 narrays = payload[0];
432 k = 0;
433 i = 1;
434 while ((k < narrays) && (i < (count + 1))) {
435 i++; /* skip attribute field */
=?utf-8?q?Michel_D=C3=A4nzer?=1d6bb8e2006-12-15 18:54:35 +1100436 if (!radeon_check_offset(dev_priv, payload[i])) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000437 DRM_ERROR
438 ("Offset failed range check (k=%d i=%d) while processing 3D_LOAD_VBPNTR packet.\n",
439 k, i);
Eric Anholt20caafa2007-08-25 19:22:43 +1000440 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000441 }
Dave Airlie414ed532005-08-16 20:43:16 +1000442 k++;
443 i++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000444 if (k == narrays)
445 break;
Dave Airlie414ed532005-08-16 20:43:16 +1000446 /* have one more to process, they come in pairs */
=?utf-8?q?Michel_D=C3=A4nzer?=1d6bb8e2006-12-15 18:54:35 +1100447 if (!radeon_check_offset(dev_priv, payload[i])) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000448 DRM_ERROR
449 ("Offset failed range check (k=%d i=%d) while processing 3D_LOAD_VBPNTR packet.\n",
450 k, i);
Eric Anholt20caafa2007-08-25 19:22:43 +1000451 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000452 }
Dave Airlie414ed532005-08-16 20:43:16 +1000453 k++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000454 i++;
455 }
Dave Airlie414ed532005-08-16 20:43:16 +1000456 /* do the counts match what we expect ? */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000457 if ((k != narrays) || (i != (count + 1))) {
458 DRM_ERROR
459 ("Malformed 3D_LOAD_VBPNTR packet (k=%d i=%d narrays=%d count+1=%d).\n",
460 k, i, narrays, count + 1);
Eric Anholt20caafa2007-08-25 19:22:43 +1000461 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000462 }
Dave Airlie414ed532005-08-16 20:43:16 +1000463
464 /* all clear, output packet */
465
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000466 BEGIN_RING(count + 2);
Dave Airlie414ed532005-08-16 20:43:16 +1000467 OUT_RING(header);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000468 OUT_RING_TABLE(payload, count + 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000469 ADVANCE_RING();
470
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000471 cmdbuf->buf += (count + 2) * 4;
472 cmdbuf->bufsz -= (count + 2) * 4;
Dave Airlie414ed532005-08-16 20:43:16 +1000473
474 return 0;
475}
Dave Airlied5ea7022006-03-19 19:37:55 +1100476
Dave Airlie4e5e2e22006-02-18 15:51:35 +1100477static __inline__ int r300_emit_bitblt_multi(drm_radeon_private_t *dev_priv,
478 drm_radeon_kcmd_buffer_t *cmdbuf)
479{
480 u32 *cmd = (u32 *) cmdbuf->buf;
481 int count, ret;
482 RING_LOCALS;
483
484 count=(cmd[0]>>16) & 0x3fff;
485
486 if (cmd[0] & 0x8000) {
487 u32 offset;
488
489 if (cmd[1] & (RADEON_GMC_SRC_PITCH_OFFSET_CNTL
490 | RADEON_GMC_DST_PITCH_OFFSET_CNTL)) {
491 offset = cmd[2] << 10;
=?utf-8?q?Michel_D=C3=A4nzer?=1d6bb8e2006-12-15 18:54:35 +1100492 ret = !radeon_check_offset(dev_priv, offset);
Dave Airlie73d72cf2006-02-18 16:30:54 +1100493 if (ret) {
Dave Airlie4e5e2e22006-02-18 15:51:35 +1100494 DRM_ERROR("Invalid bitblt first offset is %08X\n", offset);
Eric Anholt20caafa2007-08-25 19:22:43 +1000495 return -EINVAL;
Dave Airlie4e5e2e22006-02-18 15:51:35 +1100496 }
497 }
498
499 if ((cmd[1] & RADEON_GMC_SRC_PITCH_OFFSET_CNTL) &&
500 (cmd[1] & RADEON_GMC_DST_PITCH_OFFSET_CNTL)) {
501 offset = cmd[3] << 10;
=?utf-8?q?Michel_D=C3=A4nzer?=1d6bb8e2006-12-15 18:54:35 +1100502 ret = !radeon_check_offset(dev_priv, offset);
Dave Airlie73d72cf2006-02-18 16:30:54 +1100503 if (ret) {
Dave Airlie4e5e2e22006-02-18 15:51:35 +1100504 DRM_ERROR("Invalid bitblt second offset is %08X\n", offset);
Eric Anholt20caafa2007-08-25 19:22:43 +1000505 return -EINVAL;
Dave Airlie4e5e2e22006-02-18 15:51:35 +1100506 }
507
508 }
509 }
510
511 BEGIN_RING(count+2);
512 OUT_RING(cmd[0]);
513 OUT_RING_TABLE((int *)(cmdbuf->buf + 4), count + 1);
514 ADVANCE_RING();
515
516 cmdbuf->buf += (count+2)*4;
517 cmdbuf->bufsz -= (count+2)*4;
518
519 return 0;
520}
Dave Airlie414ed532005-08-16 20:43:16 +1000521
Roland Scheideggera1aa28972006-10-24 21:45:00 +1000522static __inline__ int r300_emit_indx_buffer(drm_radeon_private_t *dev_priv,
523 drm_radeon_kcmd_buffer_t *cmdbuf)
524{
525 u32 *cmd = (u32 *) cmdbuf->buf;
526 int count, ret;
527 RING_LOCALS;
528
529 count=(cmd[0]>>16) & 0x3fff;
530
531 if ((cmd[1] & 0x8000ffff) != 0x80000810) {
532 DRM_ERROR("Invalid indx_buffer reg address %08X\n", cmd[1]);
Eric Anholt20caafa2007-08-25 19:22:43 +1000533 return -EINVAL;
Roland Scheideggera1aa28972006-10-24 21:45:00 +1000534 }
=?utf-8?q?Michel_D=C3=A4nzer?=1d6bb8e2006-12-15 18:54:35 +1100535 ret = !radeon_check_offset(dev_priv, cmd[2]);
Roland Scheideggera1aa28972006-10-24 21:45:00 +1000536 if (ret) {
537 DRM_ERROR("Invalid indx_buffer offset is %08X\n", cmd[2]);
Eric Anholt20caafa2007-08-25 19:22:43 +1000538 return -EINVAL;
Roland Scheideggera1aa28972006-10-24 21:45:00 +1000539 }
540
541 BEGIN_RING(count+2);
542 OUT_RING(cmd[0]);
543 OUT_RING_TABLE((int *)(cmdbuf->buf + 4), count + 1);
544 ADVANCE_RING();
545
546 cmdbuf->buf += (count+2)*4;
547 cmdbuf->bufsz -= (count+2)*4;
548
549 return 0;
550}
551
Dave Airlied985c102006-01-02 21:32:48 +1100552static __inline__ int r300_emit_raw_packet3(drm_radeon_private_t *dev_priv,
553 drm_radeon_kcmd_buffer_t *cmdbuf)
Dave Airlie414ed532005-08-16 20:43:16 +1000554{
555 u32 header;
556 int count;
557 RING_LOCALS;
558
559 if (4 > cmdbuf->bufsz)
Eric Anholt20caafa2007-08-25 19:22:43 +1000560 return -EINVAL;
Dave Airlie414ed532005-08-16 20:43:16 +1000561
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000562 /* Fixme !! This simply emits a packet without much checking.
Dave Airlie414ed532005-08-16 20:43:16 +1000563 We need to be smarter. */
564
565 /* obtain first word - actual packet3 header */
Dave Airlieb3a83632005-09-30 18:37:36 +1000566 header = *(u32 *) cmdbuf->buf;
Dave Airlie414ed532005-08-16 20:43:16 +1000567
568 /* Is it packet 3 ? */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000569 if ((header >> 30) != 0x3) {
Dave Airlie414ed532005-08-16 20:43:16 +1000570 DRM_ERROR("Not a packet3 header (0x%08x)\n", header);
Eric Anholt20caafa2007-08-25 19:22:43 +1000571 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000572 }
Dave Airlie414ed532005-08-16 20:43:16 +1000573
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000574 count = (header >> 16) & 0x3fff;
Dave Airlie414ed532005-08-16 20:43:16 +1000575
576 /* Check again now that we know how much data to expect */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000577 if ((count + 2) * 4 > cmdbuf->bufsz) {
578 DRM_ERROR
579 ("Expected packet3 of length %d but have only %d bytes left\n",
580 (count + 2) * 4, cmdbuf->bufsz);
Eric Anholt20caafa2007-08-25 19:22:43 +1000581 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000582 }
Dave Airlie414ed532005-08-16 20:43:16 +1000583
584 /* Is it a packet type we know about ? */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000585 switch (header & 0xff00) {
586 case RADEON_3D_LOAD_VBPNTR: /* load vertex array pointers */
Dave Airlie414ed532005-08-16 20:43:16 +1000587 return r300_emit_3d_load_vbpntr(dev_priv, cmdbuf, header);
588
Dave Airlie4e5e2e22006-02-18 15:51:35 +1100589 case RADEON_CNTL_BITBLT_MULTI:
590 return r300_emit_bitblt_multi(dev_priv, cmdbuf);
591
Roland Scheideggera1aa28972006-10-24 21:45:00 +1000592 case RADEON_CP_INDX_BUFFER: /* DRAW_INDX_2 without INDX_BUFFER seems to lock up the gpu */
593 return r300_emit_indx_buffer(dev_priv, cmdbuf);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000594 case RADEON_CP_3D_DRAW_IMMD_2: /* triggers drawing using in-packet vertex data */
595 case RADEON_CP_3D_DRAW_VBUF_2: /* triggers drawing of vertex buffers setup elsewhere */
596 case RADEON_CP_3D_DRAW_INDX_2: /* triggers drawing using indices to vertex buffer */
Dave Airlie414ed532005-08-16 20:43:16 +1000597 case RADEON_WAIT_FOR_IDLE:
598 case RADEON_CP_NOP:
599 /* these packets are safe */
600 break;
601 default:
602 DRM_ERROR("Unknown packet3 header (0x%08x)\n", header);
Eric Anholt20caafa2007-08-25 19:22:43 +1000603 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000604 }
Dave Airlie414ed532005-08-16 20:43:16 +1000605
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000606 BEGIN_RING(count + 2);
Dave Airlie414ed532005-08-16 20:43:16 +1000607 OUT_RING(header);
Dave Airlieb3a83632005-09-30 18:37:36 +1000608 OUT_RING_TABLE((int *)(cmdbuf->buf + 4), count + 1);
Dave Airlie414ed532005-08-16 20:43:16 +1000609 ADVANCE_RING();
610
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000611 cmdbuf->buf += (count + 2) * 4;
612 cmdbuf->bufsz -= (count + 2) * 4;
Dave Airlie414ed532005-08-16 20:43:16 +1000613
614 return 0;
615}
616
Dave Airlie414ed532005-08-16 20:43:16 +1000617/**
618 * Emit a rendering packet3 from userspace.
619 * Called by r300_do_cp_cmdbuf.
620 */
Dave Airlied985c102006-01-02 21:32:48 +1100621static __inline__ int r300_emit_packet3(drm_radeon_private_t *dev_priv,
622 drm_radeon_kcmd_buffer_t *cmdbuf,
Dave Airlie414ed532005-08-16 20:43:16 +1000623 drm_r300_cmd_header_t header)
624{
625 int n;
626 int ret;
Dave Airlieb3a83632005-09-30 18:37:36 +1000627 char *orig_buf = cmdbuf->buf;
Dave Airlie414ed532005-08-16 20:43:16 +1000628 int orig_bufsz = cmdbuf->bufsz;
629
630 /* This is a do-while-loop so that we run the interior at least once,
631 * even if cmdbuf->nbox is 0. Compare r300_emit_cliprects for rationale.
632 */
633 n = 0;
634 do {
635 if (cmdbuf->nbox > R300_SIMULTANEOUS_CLIPRECTS) {
636 ret = r300_emit_cliprects(dev_priv, cmdbuf, n);
637 if (ret)
638 return ret;
639
640 cmdbuf->buf = orig_buf;
641 cmdbuf->bufsz = orig_bufsz;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000642 }
Dave Airlie414ed532005-08-16 20:43:16 +1000643
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000644 switch (header.packet3.packet) {
Dave Airlie414ed532005-08-16 20:43:16 +1000645 case R300_CMD_PACKET3_CLEAR:
646 DRM_DEBUG("R300_CMD_PACKET3_CLEAR\n");
647 ret = r300_emit_clear(dev_priv, cmdbuf);
648 if (ret) {
649 DRM_ERROR("r300_emit_clear failed\n");
650 return ret;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000651 }
Dave Airlie414ed532005-08-16 20:43:16 +1000652 break;
653
654 case R300_CMD_PACKET3_RAW:
655 DRM_DEBUG("R300_CMD_PACKET3_RAW\n");
656 ret = r300_emit_raw_packet3(dev_priv, cmdbuf);
657 if (ret) {
658 DRM_ERROR("r300_emit_raw_packet3 failed\n");
659 return ret;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000660 }
Dave Airlie414ed532005-08-16 20:43:16 +1000661 break;
662
663 default:
664 DRM_ERROR("bad packet3 type %i at %p\n",
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000665 header.packet3.packet,
666 cmdbuf->buf - sizeof(header));
Eric Anholt20caafa2007-08-25 19:22:43 +1000667 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000668 }
Dave Airlie414ed532005-08-16 20:43:16 +1000669
670 n += R300_SIMULTANEOUS_CLIPRECTS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000671 } while (n < cmdbuf->nbox);
Dave Airlie414ed532005-08-16 20:43:16 +1000672
673 return 0;
674}
675
676/* Some of the R300 chips seem to be extremely touchy about the two registers
677 * that are configured in r300_pacify.
678 * Among the worst offenders seems to be the R300 ND (0x4E44): When userspace
679 * sends a command buffer that contains only state setting commands and a
680 * vertex program/parameter upload sequence, this will eventually lead to a
681 * lockup, unless the sequence is bracketed by calls to r300_pacify.
682 * So we should take great care to *always* call r300_pacify before
683 * *anything* 3D related, and again afterwards. This is what the
684 * call bracket in r300_do_cp_cmdbuf is for.
685 */
686
687/**
688 * Emit the sequence to pacify R300.
689 */
Dave Airlied985c102006-01-02 21:32:48 +1100690static __inline__ void r300_pacify(drm_radeon_private_t *dev_priv)
Dave Airlie414ed532005-08-16 20:43:16 +1000691{
692 RING_LOCALS;
693
694 BEGIN_RING(6);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000695 OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0));
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000696 OUT_RING(R300_RB3D_DSTCACHE_UNKNOWN_0A);
697 OUT_RING(CP_PACKET0(R300_RB3D_ZCACHE_CTLSTAT, 0));
698 OUT_RING(R300_RB3D_ZCACHE_UNKNOWN_03);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000699 OUT_RING(CP_PACKET3(RADEON_CP_NOP, 0));
700 OUT_RING(0x0);
Dave Airlie414ed532005-08-16 20:43:16 +1000701 ADVANCE_RING();
702}
703
Dave Airlie414ed532005-08-16 20:43:16 +1000704/**
705 * Called by r300_do_cp_cmdbuf to update the internal buffer age and state.
706 * The actual age emit is done by r300_do_cp_cmdbuf, which is why you must
707 * be careful about how this function is called.
708 */
Dave Airlie056219e2007-07-11 16:17:42 +1000709static void r300_discard_buffer(struct drm_device * dev, struct drm_buf * buf)
Dave Airlie414ed532005-08-16 20:43:16 +1000710{
711 drm_radeon_private_t *dev_priv = dev->dev_private;
712 drm_radeon_buf_priv_t *buf_priv = buf->dev_private;
713
714 buf_priv->age = ++dev_priv->sarea_priv->last_dispatch;
715 buf->pending = 1;
716 buf->used = 0;
717}
718
Dave Airlieee4621f2006-03-19 19:45:26 +1100719static int r300_scratch(drm_radeon_private_t *dev_priv,
720 drm_radeon_kcmd_buffer_t *cmdbuf,
721 drm_r300_cmd_header_t header)
722{
723 u32 *ref_age_base;
724 u32 i, buf_idx, h_pending;
725 RING_LOCALS;
726
727 if (cmdbuf->bufsz <
728 (sizeof(u64) + header.scratch.n_bufs * sizeof(buf_idx))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000729 return -EINVAL;
Dave Airlieee4621f2006-03-19 19:45:26 +1100730 }
731
732 if (header.scratch.reg >= 5) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000733 return -EINVAL;
Dave Airlieee4621f2006-03-19 19:45:26 +1100734 }
735
736 dev_priv->scratch_ages[header.scratch.reg]++;
737
Dave Airliecaa98c42006-04-23 18:14:00 +1000738 ref_age_base = (u32 *)(unsigned long)*((uint64_t *)cmdbuf->buf);
Dave Airlieee4621f2006-03-19 19:45:26 +1100739
740 cmdbuf->buf += sizeof(u64);
741 cmdbuf->bufsz -= sizeof(u64);
742
743 for (i=0; i < header.scratch.n_bufs; i++) {
744 buf_idx = *(u32 *)cmdbuf->buf;
745 buf_idx *= 2; /* 8 bytes per buf */
746
747 if (DRM_COPY_TO_USER(ref_age_base + buf_idx, &dev_priv->scratch_ages[header.scratch.reg], sizeof(u32))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000748 return -EINVAL;
Dave Airlieee4621f2006-03-19 19:45:26 +1100749 }
750
751 if (DRM_COPY_FROM_USER(&h_pending, ref_age_base + buf_idx + 1, sizeof(u32))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000752 return -EINVAL;
Dave Airlieee4621f2006-03-19 19:45:26 +1100753 }
754
755 if (h_pending == 0) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000756 return -EINVAL;
Dave Airlieee4621f2006-03-19 19:45:26 +1100757 }
758
759 h_pending--;
760
761 if (DRM_COPY_TO_USER(ref_age_base + buf_idx + 1, &h_pending, sizeof(u32))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000762 return -EINVAL;
Dave Airlieee4621f2006-03-19 19:45:26 +1100763 }
764
765 cmdbuf->buf += sizeof(buf_idx);
766 cmdbuf->bufsz -= sizeof(buf_idx);
767 }
768
769 BEGIN_RING(2);
Oliver McFaddenc6c656b2007-07-11 12:24:10 +1000770 OUT_RING( CP_PACKET0( RADEON_SCRATCH_REG0 + header.scratch.reg * 4, 0 ) );
771 OUT_RING( dev_priv->scratch_ages[header.scratch.reg] );
Dave Airlieee4621f2006-03-19 19:45:26 +1100772 ADVANCE_RING();
773
774 return 0;
775}
776
Dave Airlie414ed532005-08-16 20:43:16 +1000777/**
778 * Parses and validates a user-supplied command buffer and emits appropriate
779 * commands on the DMA ring buffer.
780 * Called by the ioctl handler function radeon_cp_cmdbuf.
781 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000782int r300_do_cp_cmdbuf(struct drm_device *dev,
Eric Anholt6c340ea2007-08-25 20:23:09 +1000783 struct drm_file *file_priv,
Dave Airlied985c102006-01-02 21:32:48 +1100784 drm_radeon_kcmd_buffer_t *cmdbuf)
Dave Airlie414ed532005-08-16 20:43:16 +1000785{
786 drm_radeon_private_t *dev_priv = dev->dev_private;
Dave Airliecdd55a22007-07-11 16:32:08 +1000787 struct drm_device_dma *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +1000788 struct drm_buf *buf = NULL;
Dave Airlie414ed532005-08-16 20:43:16 +1000789 int emit_dispatch_age = 0;
790 int ret = 0;
791
792 DRM_DEBUG("\n");
793
794 /* See the comment above r300_emit_begin3d for why this call must be here,
795 * and what the cleanup gotos are for. */
796 r300_pacify(dev_priv);
797
798 if (cmdbuf->nbox <= R300_SIMULTANEOUS_CLIPRECTS) {
799 ret = r300_emit_cliprects(dev_priv, cmdbuf, 0);
800 if (ret)
801 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000802 }
Dave Airlie414ed532005-08-16 20:43:16 +1000803
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000804 while (cmdbuf->bufsz >= sizeof(drm_r300_cmd_header_t)) {
Dave Airlie414ed532005-08-16 20:43:16 +1000805 int idx;
806 drm_r300_cmd_header_t header;
807
808 header.u = *(unsigned int *)cmdbuf->buf;
809
810 cmdbuf->buf += sizeof(header);
811 cmdbuf->bufsz -= sizeof(header);
812
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000813 switch (header.header.cmd_type) {
814 case R300_CMD_PACKET0:
Dave Airlie414ed532005-08-16 20:43:16 +1000815 DRM_DEBUG("R300_CMD_PACKET0\n");
816 ret = r300_emit_packet0(dev_priv, cmdbuf, header);
817 if (ret) {
818 DRM_ERROR("r300_emit_packet0 failed\n");
819 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000820 }
Dave Airlie414ed532005-08-16 20:43:16 +1000821 break;
822
823 case R300_CMD_VPU:
824 DRM_DEBUG("R300_CMD_VPU\n");
825 ret = r300_emit_vpu(dev_priv, cmdbuf, header);
826 if (ret) {
827 DRM_ERROR("r300_emit_vpu failed\n");
828 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000829 }
Dave Airlie414ed532005-08-16 20:43:16 +1000830 break;
831
832 case R300_CMD_PACKET3:
833 DRM_DEBUG("R300_CMD_PACKET3\n");
834 ret = r300_emit_packet3(dev_priv, cmdbuf, header);
835 if (ret) {
836 DRM_ERROR("r300_emit_packet3 failed\n");
837 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000838 }
Dave Airlie414ed532005-08-16 20:43:16 +1000839 break;
840
841 case R300_CMD_END3D:
842 DRM_DEBUG("R300_CMD_END3D\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000843 /* TODO:
844 Ideally userspace driver should not need to issue this call,
845 i.e. the drm driver should issue it automatically and prevent
846 lockups.
Dave Airlie414ed532005-08-16 20:43:16 +1000847
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000848 In practice, we do not understand why this call is needed and what
849 it does (except for some vague guesses that it has to do with cache
850 coherence) and so the user space driver does it.
851
852 Once we are sure which uses prevent lockups the code could be moved
853 into the kernel and the userspace driver will not
854 need to use this command.
855
856 Note that issuing this command does not hurt anything
857 except, possibly, performance */
Dave Airlie414ed532005-08-16 20:43:16 +1000858 r300_pacify(dev_priv);
859 break;
860
861 case R300_CMD_CP_DELAY:
862 /* simple enough, we can do it here */
863 DRM_DEBUG("R300_CMD_CP_DELAY\n");
864 {
865 int i;
866 RING_LOCALS;
867
868 BEGIN_RING(header.delay.count);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000869 for (i = 0; i < header.delay.count; i++)
Dave Airlie414ed532005-08-16 20:43:16 +1000870 OUT_RING(RADEON_CP_PACKET2);
871 ADVANCE_RING();
872 }
873 break;
874
875 case R300_CMD_DMA_DISCARD:
876 DRM_DEBUG("RADEON_CMD_DMA_DISCARD\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000877 idx = header.dma.buf_idx;
878 if (idx < 0 || idx >= dma->buf_count) {
879 DRM_ERROR("buffer index %d (of %d max)\n",
880 idx, dma->buf_count - 1);
Eric Anholt20caafa2007-08-25 19:22:43 +1000881 ret = -EINVAL;
Dave Airlie414ed532005-08-16 20:43:16 +1000882 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000883 }
884
885 buf = dma->buflist[idx];
Eric Anholt6c340ea2007-08-25 20:23:09 +1000886 if (buf->file_priv != file_priv || buf->pending) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000887 DRM_ERROR("bad buffer %p %p %d\n",
Eric Anholt6c340ea2007-08-25 20:23:09 +1000888 buf->file_priv, file_priv,
889 buf->pending);
Eric Anholt20caafa2007-08-25 19:22:43 +1000890 ret = -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000891 goto cleanup;
892 }
Dave Airlie414ed532005-08-16 20:43:16 +1000893
894 emit_dispatch_age = 1;
895 r300_discard_buffer(dev, buf);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000896 break;
Dave Airlie414ed532005-08-16 20:43:16 +1000897
898 case R300_CMD_WAIT:
899 /* simple enough, we can do it here */
900 DRM_DEBUG("R300_CMD_WAIT\n");
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000901 if (header.wait.flags == 0)
902 break; /* nothing to do */
Dave Airlie414ed532005-08-16 20:43:16 +1000903
904 {
905 RING_LOCALS;
906
907 BEGIN_RING(2);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000908 OUT_RING(CP_PACKET0(RADEON_WAIT_UNTIL, 0));
909 OUT_RING((header.wait.flags & 0xf) << 14);
Dave Airlie414ed532005-08-16 20:43:16 +1000910 ADVANCE_RING();
911 }
912 break;
913
Dave Airlieee4621f2006-03-19 19:45:26 +1100914 case R300_CMD_SCRATCH:
915 DRM_DEBUG("R300_CMD_SCRATCH\n");
916 ret = r300_scratch(dev_priv, cmdbuf, header);
917 if (ret) {
918 DRM_ERROR("r300_scratch failed\n");
919 goto cleanup;
920 }
921 break;
922
Dave Airlie414ed532005-08-16 20:43:16 +1000923 default:
924 DRM_ERROR("bad cmd_type %i at %p\n",
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000925 header.header.cmd_type,
Dave Airlie414ed532005-08-16 20:43:16 +1000926 cmdbuf->buf - sizeof(header));
Eric Anholt20caafa2007-08-25 19:22:43 +1000927 ret = -EINVAL;
Dave Airlie414ed532005-08-16 20:43:16 +1000928 goto cleanup;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000929 }
Dave Airlie414ed532005-08-16 20:43:16 +1000930 }
931
932 DRM_DEBUG("END\n");
933
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000934 cleanup:
Dave Airlie414ed532005-08-16 20:43:16 +1000935 r300_pacify(dev_priv);
936
937 /* We emit the vertex buffer age here, outside the pacifier "brackets"
938 * for two reasons:
939 * (1) This may coalesce multiple age emissions into a single one and
940 * (2) more importantly, some chips lock up hard when scratch registers
941 * are written inside the pacifier bracket.
942 */
943 if (emit_dispatch_age) {
944 RING_LOCALS;
945
946 /* Emit the vertex buffer age */
947 BEGIN_RING(2);
948 RADEON_DISPATCH_AGE(dev_priv->sarea_priv->last_dispatch);
949 ADVANCE_RING();
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000950 }
Dave Airlie414ed532005-08-16 20:43:16 +1000951
952 COMMIT_RING();
953
954 return ret;
955}