2005-08-16 12:43:16 +02:00
|
|
|
/* r300_cmdbuf.c -- Command buffer emission for R300 -*- linux-c -*-
|
|
|
|
*
|
|
|
|
* Copyright (C) The Weather Channel, Inc. 2002.
|
|
|
|
* Copyright (C) 2004 Nicolai Haehnle.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* The Weather Channel (TM) funded Tungsten Graphics to develop the
|
|
|
|
* initial release of the Radeon 8500 driver under the XFree86 license.
|
|
|
|
* This notice must be preserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Nicolai Haehnle <prefect_@gmx.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "drmP.h"
|
|
|
|
#include "drm.h"
|
|
|
|
#include "radeon_drm.h"
|
|
|
|
#include "radeon_drv.h"
|
|
|
|
#include "r300_reg.h"
|
|
|
|
|
|
|
|
#define R300_SIMULTANEOUS_CLIPRECTS 4
|
|
|
|
|
|
|
|
/* Values for R300_RE_CLIPRECT_CNTL depending on the number of cliprects
|
|
|
|
*/
|
|
|
|
static const int r300_cliprect_cntl[4] = {
|
|
|
|
0xAAAA,
|
|
|
|
0xEEEE,
|
|
|
|
0xFEFE,
|
|
|
|
0xFFFE
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Emit up to R300_SIMULTANEOUS_CLIPRECTS cliprects from the given command
|
|
|
|
* buffer, starting with index n.
|
|
|
|
*/
|
2006-01-02 11:32:48 +01:00
|
|
|
static int r300_emit_cliprects(drm_radeon_private_t *dev_priv,
|
|
|
|
drm_radeon_kcmd_buffer_t *cmdbuf, int n)
|
2005-08-16 12:43:16 +02:00
|
|
|
{
|
2007-07-11 07:27:12 +02:00
|
|
|
struct drm_clip_rect box;
|
2005-08-16 12:43:16 +02:00
|
|
|
int nr;
|
|
|
|
int i;
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
nr = cmdbuf->nbox - n;
|
|
|
|
if (nr > R300_SIMULTANEOUS_CLIPRECTS)
|
|
|
|
nr = R300_SIMULTANEOUS_CLIPRECTS;
|
|
|
|
|
|
|
|
DRM_DEBUG("%i cliprects\n", nr);
|
|
|
|
|
|
|
|
if (nr) {
|
2005-09-25 06:28:13 +02:00
|
|
|
BEGIN_RING(6 + nr * 2);
|
|
|
|
OUT_RING(CP_PACKET0(R300_RE_CLIPRECT_TL_0, nr * 2 - 1));
|
2005-08-16 12:43:16 +02:00
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
for (i = 0; i < nr; ++i) {
|
|
|
|
if (DRM_COPY_FROM_USER_UNCHECKED
|
|
|
|
(&box, &cmdbuf->boxes[n + i], sizeof(box))) {
|
2005-08-16 12:43:16 +02:00
|
|
|
DRM_ERROR("copy cliprect faulted\n");
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EFAULT;
|
2005-08-16 12:43:16 +02:00
|
|
|
}
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
box.x1 =
|
|
|
|
(box.x1 +
|
|
|
|
R300_CLIPRECT_OFFSET) & R300_CLIPRECT_MASK;
|
|
|
|
box.y1 =
|
|
|
|
(box.y1 +
|
|
|
|
R300_CLIPRECT_OFFSET) & R300_CLIPRECT_MASK;
|
|
|
|
box.x2 =
|
|
|
|
(box.x2 +
|
|
|
|
R300_CLIPRECT_OFFSET) & R300_CLIPRECT_MASK;
|
|
|
|
box.y2 =
|
|
|
|
(box.y2 +
|
|
|
|
R300_CLIPRECT_OFFSET) & R300_CLIPRECT_MASK;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
OUT_RING((box.x1 << R300_CLIPRECT_X_SHIFT) |
|
2005-09-25 06:28:13 +02:00
|
|
|
(box.y1 << R300_CLIPRECT_Y_SHIFT));
|
2005-08-16 12:43:16 +02:00
|
|
|
OUT_RING((box.x2 << R300_CLIPRECT_X_SHIFT) |
|
2005-09-25 06:28:13 +02:00
|
|
|
(box.y2 << R300_CLIPRECT_Y_SHIFT));
|
2005-08-16 12:43:16 +02:00
|
|
|
}
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
OUT_RING_REG(R300_RE_CLIPRECT_CNTL, r300_cliprect_cntl[nr - 1]);
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
/* TODO/SECURITY: Force scissors to a safe value, otherwise the
|
2005-09-25 06:28:13 +02:00
|
|
|
* client might be able to trample over memory.
|
|
|
|
* The impact should be very limited, but I'd rather be safe than
|
|
|
|
* sorry.
|
|
|
|
*/
|
|
|
|
OUT_RING(CP_PACKET0(R300_RE_SCISSORS_TL, 1));
|
|
|
|
OUT_RING(0);
|
|
|
|
OUT_RING(R300_SCISSORS_X_MASK | R300_SCISSORS_Y_MASK);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADVANCE_RING();
|
2005-09-25 06:28:13 +02:00
|
|
|
} else {
|
2005-08-16 12:43:16 +02:00
|
|
|
/* Why we allow zero cliprect rendering:
|
|
|
|
* There are some commands in a command buffer that must be submitted
|
|
|
|
* even when there are no cliprects, e.g. DMA buffer discard
|
|
|
|
* or state setting (though state setting could be avoided by
|
|
|
|
* simulating a loss of context).
|
|
|
|
*
|
|
|
|
* Now since the cmdbuf interface is so chaotic right now (and is
|
|
|
|
* bound to remain that way for a bit until things settle down),
|
|
|
|
* it is basically impossible to filter out the commands that are
|
|
|
|
* necessary and those that aren't.
|
|
|
|
*
|
|
|
|
* So I choose the safe way and don't do any filtering at all;
|
|
|
|
* instead, I simply set up the engine so that all rendering
|
|
|
|
* can't produce any fragments.
|
|
|
|
*/
|
|
|
|
BEGIN_RING(2);
|
2005-09-25 06:28:13 +02:00
|
|
|
OUT_RING_REG(R300_RE_CLIPRECT_CNTL, 0);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADVANCE_RING();
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-30 10:37:36 +02:00
|
|
|
static u8 r300_reg_flags[0x10000 >> 2];
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
void r300_init_reg_flags(void)
|
|
|
|
{
|
|
|
|
int i;
|
2005-09-25 06:28:13 +02:00
|
|
|
memset(r300_reg_flags, 0, 0x10000 >> 2);
|
|
|
|
#define ADD_RANGE_MARK(reg, count,mark) \
|
2005-08-16 12:43:16 +02:00
|
|
|
for(i=((reg)>>2);i<((reg)>>2)+(count);i++)\
|
|
|
|
r300_reg_flags[i]|=(mark);
|
2005-09-25 06:28:13 +02:00
|
|
|
|
|
|
|
#define MARK_SAFE 1
|
|
|
|
#define MARK_CHECK_OFFSET 2
|
|
|
|
|
|
|
|
#define ADD_RANGE(reg, count) ADD_RANGE_MARK(reg, count, MARK_SAFE)
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
/* these match cmducs() command in r300_driver/r300/r300_cmdbuf.c */
|
|
|
|
ADD_RANGE(R300_SE_VPORT_XSCALE, 6);
|
2007-07-11 04:24:10 +02:00
|
|
|
ADD_RANGE(R300_VAP_CNTL, 1);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(R300_SE_VTE_CNTL, 2);
|
|
|
|
ADD_RANGE(0x2134, 2);
|
2007-07-11 04:24:10 +02:00
|
|
|
ADD_RANGE(R300_VAP_CNTL_STATUS, 1);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(R300_VAP_INPUT_CNTL_0, 2);
|
|
|
|
ADD_RANGE(0x21DC, 1);
|
2007-07-11 04:24:10 +02:00
|
|
|
ADD_RANGE(R300_VAP_UNKNOWN_221C, 1);
|
|
|
|
ADD_RANGE(R300_VAP_CLIP_X_0, 4);
|
|
|
|
ADD_RANGE(R300_VAP_PVS_WAITIDLE, 1);
|
|
|
|
ADD_RANGE(R300_VAP_UNKNOWN_2288, 1);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(R300_VAP_OUTPUT_VTX_FMT_0, 2);
|
|
|
|
ADD_RANGE(R300_VAP_PVS_CNTL_1, 3);
|
|
|
|
ADD_RANGE(R300_GB_ENABLE, 1);
|
|
|
|
ADD_RANGE(R300_GB_MSPOS0, 5);
|
2006-02-18 05:51:35 +01:00
|
|
|
ADD_RANGE(R300_TX_CNTL, 1);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(R300_TX_ENABLE, 1);
|
|
|
|
ADD_RANGE(0x4200, 4);
|
|
|
|
ADD_RANGE(0x4214, 1);
|
|
|
|
ADD_RANGE(R300_RE_POINTSIZE, 1);
|
|
|
|
ADD_RANGE(0x4230, 3);
|
|
|
|
ADD_RANGE(R300_RE_LINE_CNT, 1);
|
2007-07-11 04:24:10 +02:00
|
|
|
ADD_RANGE(R300_RE_UNK4238, 1);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(0x4260, 3);
|
2007-07-11 04:24:10 +02:00
|
|
|
ADD_RANGE(R300_RE_SHADE, 4);
|
|
|
|
ADD_RANGE(R300_RE_POLYGON_MODE, 5);
|
|
|
|
ADD_RANGE(R300_RE_ZBIAS_CNTL, 1);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(R300_RE_ZBIAS_T_FACTOR, 4);
|
2007-07-11 04:24:10 +02:00
|
|
|
ADD_RANGE(R300_RE_OCCLUSION_CNTL, 1);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(R300_RE_CULL_CNTL, 1);
|
|
|
|
ADD_RANGE(0x42C0, 2);
|
|
|
|
ADD_RANGE(R300_RS_CNTL_0, 2);
|
|
|
|
ADD_RANGE(R300_RS_INTERP_0, 8);
|
|
|
|
ADD_RANGE(R300_RS_ROUTE_0, 8);
|
|
|
|
ADD_RANGE(0x43A4, 2);
|
|
|
|
ADD_RANGE(0x43E8, 1);
|
|
|
|
ADD_RANGE(R300_PFS_CNTL_0, 3);
|
|
|
|
ADD_RANGE(R300_PFS_NODE_0, 4);
|
|
|
|
ADD_RANGE(R300_PFS_TEXI_0, 64);
|
|
|
|
ADD_RANGE(0x46A4, 5);
|
|
|
|
ADD_RANGE(R300_PFS_INSTR0_0, 64);
|
|
|
|
ADD_RANGE(R300_PFS_INSTR1_0, 64);
|
|
|
|
ADD_RANGE(R300_PFS_INSTR2_0, 64);
|
|
|
|
ADD_RANGE(R300_PFS_INSTR3_0, 64);
|
2007-07-11 04:24:10 +02:00
|
|
|
ADD_RANGE(R300_RE_FOG_STATE, 1);
|
|
|
|
ADD_RANGE(R300_FOG_COLOR_R, 3);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(R300_PP_ALPHA_TEST, 2);
|
|
|
|
ADD_RANGE(0x4BD8, 1);
|
|
|
|
ADD_RANGE(R300_PFS_PARAM_0_X, 64);
|
|
|
|
ADD_RANGE(0x4E00, 1);
|
|
|
|
ADD_RANGE(R300_RB3D_CBLEND, 2);
|
|
|
|
ADD_RANGE(R300_RB3D_COLORMASK, 1);
|
2007-07-11 04:24:10 +02:00
|
|
|
ADD_RANGE(R300_RB3D_BLEND_COLOR, 3);
|
2005-09-25 06:28:13 +02:00
|
|
|
ADD_RANGE_MARK(R300_RB3D_COLOROFFSET0, 1, MARK_CHECK_OFFSET); /* check offset */
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(R300_RB3D_COLORPITCH0, 1);
|
|
|
|
ADD_RANGE(0x4E50, 9);
|
|
|
|
ADD_RANGE(0x4E88, 1);
|
|
|
|
ADD_RANGE(0x4EA0, 2);
|
|
|
|
ADD_RANGE(R300_RB3D_ZSTENCIL_CNTL_0, 3);
|
2007-07-11 04:24:10 +02:00
|
|
|
ADD_RANGE(R300_RB3D_ZSTENCIL_FORMAT, 4);
|
2005-09-25 06:28:13 +02:00
|
|
|
ADD_RANGE_MARK(R300_RB3D_DEPTHOFFSET, 1, MARK_CHECK_OFFSET); /* check offset */
|
|
|
|
ADD_RANGE(R300_RB3D_DEPTHPITCH, 1);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(0x4F28, 1);
|
|
|
|
ADD_RANGE(0x4F30, 2);
|
|
|
|
ADD_RANGE(0x4F44, 1);
|
|
|
|
ADD_RANGE(0x4F54, 1);
|
|
|
|
|
|
|
|
ADD_RANGE(R300_TX_FILTER_0, 16);
|
2006-03-19 09:12:10 +01:00
|
|
|
ADD_RANGE(R300_TX_FILTER1_0, 16);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(R300_TX_SIZE_0, 16);
|
|
|
|
ADD_RANGE(R300_TX_FORMAT_0, 16);
|
2006-01-02 11:32:48 +01:00
|
|
|
ADD_RANGE(R300_TX_PITCH_0, 16);
|
2005-09-25 06:28:13 +02:00
|
|
|
/* Texture offset is dangerous and needs more checking */
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE_MARK(R300_TX_OFFSET_0, 16, MARK_CHECK_OFFSET);
|
2006-03-19 09:12:10 +01:00
|
|
|
ADD_RANGE(R300_TX_CHROMA_KEY_0, 16);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(R300_TX_BORDER_COLOR_0, 16);
|
|
|
|
|
|
|
|
/* Sporadic registers used as primitives are emitted */
|
2007-07-11 04:24:10 +02:00
|
|
|
ADD_RANGE(R300_RB3D_ZCACHE_CTLSTAT, 1);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADD_RANGE(R300_RB3D_DSTCACHE_CTLSTAT, 1);
|
|
|
|
ADD_RANGE(R300_VAP_INPUT_ROUTE_0_0, 8);
|
|
|
|
ADD_RANGE(R300_VAP_INPUT_ROUTE_1_0, 8);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
static __inline__ int r300_check_range(unsigned reg, int count)
|
2005-08-16 12:43:16 +02:00
|
|
|
{
|
|
|
|
int i;
|
2005-09-25 06:28:13 +02:00
|
|
|
if (reg & ~0xffff)
|
|
|
|
return -1;
|
|
|
|
for (i = (reg >> 2); i < (reg >> 2) + count; i++)
|
|
|
|
if (r300_reg_flags[i] != MARK_SAFE)
|
|
|
|
return 1;
|
2005-08-16 12:43:16 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
static __inline__ int r300_emit_carefully_checked_packet0(drm_radeon_private_t *
|
|
|
|
dev_priv,
|
2005-09-30 10:37:36 +02:00
|
|
|
drm_radeon_kcmd_buffer_t
|
2005-09-25 06:28:13 +02:00
|
|
|
* cmdbuf,
|
|
|
|
drm_r300_cmd_header_t
|
|
|
|
header)
|
2005-08-16 12:43:16 +02:00
|
|
|
{
|
|
|
|
int reg;
|
|
|
|
int sz;
|
|
|
|
int i;
|
|
|
|
int values[64];
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
sz = header.packet0.count;
|
|
|
|
reg = (header.packet0.reghi << 8) | header.packet0.reglo;
|
2005-09-25 06:28:13 +02:00
|
|
|
|
|
|
|
if ((sz > 64) || (sz < 0)) {
|
|
|
|
DRM_ERROR
|
|
|
|
("Cannot emit more than 64 values at a time (reg=%04x sz=%d)\n",
|
|
|
|
reg, sz);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
|
|
|
for (i = 0; i < sz; i++) {
|
2005-09-30 10:37:36 +02:00
|
|
|
values[i] = ((int *)cmdbuf->buf)[i];
|
2005-09-25 06:28:13 +02:00
|
|
|
switch (r300_reg_flags[(reg >> 2) + i]) {
|
2005-08-16 12:43:16 +02:00
|
|
|
case MARK_SAFE:
|
|
|
|
break;
|
|
|
|
case MARK_CHECK_OFFSET:
|
2006-12-15 08:54:35 +01:00
|
|
|
if (!radeon_check_offset(dev_priv, (u32) values[i])) {
|
2005-09-25 06:28:13 +02:00
|
|
|
DRM_ERROR
|
|
|
|
("Offset failed range check (reg=%04x sz=%d)\n",
|
|
|
|
reg, sz);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
break;
|
|
|
|
default:
|
2005-09-25 06:28:13 +02:00
|
|
|
DRM_ERROR("Register %04x failed check as flag=%02x\n",
|
|
|
|
reg + i * 4, r300_reg_flags[(reg >> 2) + i]);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-08-16 12:43:16 +02:00
|
|
|
}
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BEGIN_RING(1 + sz);
|
|
|
|
OUT_RING(CP_PACKET0(reg, sz - 1));
|
|
|
|
OUT_RING_TABLE(values, sz);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADVANCE_RING();
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
cmdbuf->buf += sz * 4;
|
|
|
|
cmdbuf->bufsz -= sz * 4;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Emits a packet0 setting arbitrary registers.
|
|
|
|
* Called by r300_do_cp_cmdbuf.
|
|
|
|
*
|
|
|
|
* Note that checks are performed on contents and addresses of the registers
|
|
|
|
*/
|
2006-01-02 11:32:48 +01:00
|
|
|
static __inline__ int r300_emit_packet0(drm_radeon_private_t *dev_priv,
|
|
|
|
drm_radeon_kcmd_buffer_t *cmdbuf,
|
2005-09-25 06:28:13 +02:00
|
|
|
drm_r300_cmd_header_t header)
|
2005-08-16 12:43:16 +02:00
|
|
|
{
|
|
|
|
int reg;
|
|
|
|
int sz;
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
sz = header.packet0.count;
|
|
|
|
reg = (header.packet0.reghi << 8) | header.packet0.reglo;
|
|
|
|
|
|
|
|
if (!sz)
|
|
|
|
return 0;
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
if (sz * 4 > cmdbuf->bufsz)
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
|
|
|
|
if (reg + sz * 4 >= 0x10000) {
|
|
|
|
DRM_ERROR("No such registers in hardware reg=%04x sz=%d\n", reg,
|
|
|
|
sz);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
if (r300_check_range(reg, sz)) {
|
2005-08-16 12:43:16 +02:00
|
|
|
/* go and check everything */
|
2005-09-25 06:28:13 +02:00
|
|
|
return r300_emit_carefully_checked_packet0(dev_priv, cmdbuf,
|
|
|
|
header);
|
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
/* the rest of the data is safe to emit, whatever the values the user passed */
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
BEGIN_RING(1 + sz);
|
|
|
|
OUT_RING(CP_PACKET0(reg, sz - 1));
|
2005-09-30 10:37:36 +02:00
|
|
|
OUT_RING_TABLE((int *)cmdbuf->buf, sz);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADVANCE_RING();
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
cmdbuf->buf += sz * 4;
|
|
|
|
cmdbuf->bufsz -= sz * 4;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Uploads user-supplied vertex program instructions or parameters onto
|
|
|
|
* the graphics card.
|
|
|
|
* Called by r300_do_cp_cmdbuf.
|
|
|
|
*/
|
2006-01-02 11:32:48 +01:00
|
|
|
static __inline__ int r300_emit_vpu(drm_radeon_private_t *dev_priv,
|
|
|
|
drm_radeon_kcmd_buffer_t *cmdbuf,
|
2005-08-16 12:43:16 +02:00
|
|
|
drm_r300_cmd_header_t header)
|
|
|
|
{
|
|
|
|
int sz;
|
|
|
|
int addr;
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
sz = header.vpu.count;
|
|
|
|
addr = (header.vpu.adrhi << 8) | header.vpu.adrlo;
|
|
|
|
|
|
|
|
if (!sz)
|
|
|
|
return 0;
|
2005-09-25 06:28:13 +02:00
|
|
|
if (sz * 16 > cmdbuf->bufsz)
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
BEGIN_RING(5 + sz * 4);
|
2005-08-16 12:43:16 +02:00
|
|
|
/* Wait for VAP to come to senses.. */
|
|
|
|
/* there is no need to emit it multiple times, (only once before VAP is programmed,
|
|
|
|
but this optimization is for later */
|
2005-09-25 06:28:13 +02:00
|
|
|
OUT_RING_REG(R300_VAP_PVS_WAITIDLE, 0);
|
|
|
|
OUT_RING_REG(R300_VAP_PVS_UPLOAD_ADDRESS, addr);
|
|
|
|
OUT_RING(CP_PACKET0_TABLE(R300_VAP_PVS_UPLOAD_DATA, sz * 4 - 1));
|
2005-09-30 10:37:36 +02:00
|
|
|
OUT_RING_TABLE((int *)cmdbuf->buf, sz * 4);
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
ADVANCE_RING();
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
cmdbuf->buf += sz * 16;
|
|
|
|
cmdbuf->bufsz -= sz * 16;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Emit a clear packet from userspace.
|
|
|
|
* Called by r300_emit_packet3.
|
|
|
|
*/
|
2006-01-02 11:32:48 +01:00
|
|
|
static __inline__ int r300_emit_clear(drm_radeon_private_t *dev_priv,
|
|
|
|
drm_radeon_kcmd_buffer_t *cmdbuf)
|
2005-08-16 12:43:16 +02:00
|
|
|
{
|
|
|
|
RING_LOCALS;
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
if (8 * 4 > cmdbuf->bufsz)
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
BEGIN_RING(10);
|
2005-09-25 06:28:13 +02:00
|
|
|
OUT_RING(CP_PACKET3(R200_3D_DRAW_IMMD_2, 8));
|
|
|
|
OUT_RING(R300_PRIM_TYPE_POINT | R300_PRIM_WALK_RING |
|
|
|
|
(1 << R300_PRIM_NUM_VERTICES_SHIFT));
|
2005-09-30 10:37:36 +02:00
|
|
|
OUT_RING_TABLE((int *)cmdbuf->buf, 8);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADVANCE_RING();
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
cmdbuf->buf += 8 * 4;
|
|
|
|
cmdbuf->bufsz -= 8 * 4;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-01-02 11:32:48 +01:00
|
|
|
static __inline__ int r300_emit_3d_load_vbpntr(drm_radeon_private_t *dev_priv,
|
|
|
|
drm_radeon_kcmd_buffer_t *cmdbuf,
|
2005-09-25 06:28:13 +02:00
|
|
|
u32 header)
|
2005-08-16 12:43:16 +02:00
|
|
|
{
|
2005-09-25 06:28:13 +02:00
|
|
|
int count, i, k;
|
|
|
|
#define MAX_ARRAY_PACKET 64
|
2005-08-16 12:43:16 +02:00
|
|
|
u32 payload[MAX_ARRAY_PACKET];
|
|
|
|
u32 narrays;
|
|
|
|
RING_LOCALS;
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
count = (header >> 16) & 0x3fff;
|
|
|
|
|
|
|
|
if ((count + 1) > MAX_ARRAY_PACKET) {
|
|
|
|
DRM_ERROR("Too large payload in 3D_LOAD_VBPNTR (count=%d)\n",
|
|
|
|
count);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
|
|
|
memset(payload, 0, MAX_ARRAY_PACKET * 4);
|
|
|
|
memcpy(payload, cmdbuf->buf + 4, (count + 1) * 4);
|
|
|
|
|
2005-08-16 12:43:16 +02:00
|
|
|
/* carefully check packet contents */
|
2005-09-25 06:28:13 +02:00
|
|
|
|
|
|
|
narrays = payload[0];
|
|
|
|
k = 0;
|
|
|
|
i = 1;
|
|
|
|
while ((k < narrays) && (i < (count + 1))) {
|
|
|
|
i++; /* skip attribute field */
|
2006-12-15 08:54:35 +01:00
|
|
|
if (!radeon_check_offset(dev_priv, payload[i])) {
|
2005-09-25 06:28:13 +02:00
|
|
|
DRM_ERROR
|
|
|
|
("Offset failed range check (k=%d i=%d) while processing 3D_LOAD_VBPNTR packet.\n",
|
|
|
|
k, i);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
k++;
|
|
|
|
i++;
|
2005-09-25 06:28:13 +02:00
|
|
|
if (k == narrays)
|
|
|
|
break;
|
2005-08-16 12:43:16 +02:00
|
|
|
/* have one more to process, they come in pairs */
|
2006-12-15 08:54:35 +01:00
|
|
|
if (!radeon_check_offset(dev_priv, payload[i])) {
|
2005-09-25 06:28:13 +02:00
|
|
|
DRM_ERROR
|
|
|
|
("Offset failed range check (k=%d i=%d) while processing 3D_LOAD_VBPNTR packet.\n",
|
|
|
|
k, i);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-08-16 12:43:16 +02:00
|
|
|
}
|
2005-09-25 06:28:13 +02:00
|
|
|
k++;
|
|
|
|
i++;
|
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
/* do the counts match what we expect ? */
|
2005-09-25 06:28:13 +02:00
|
|
|
if ((k != narrays) || (i != (count + 1))) {
|
|
|
|
DRM_ERROR
|
|
|
|
("Malformed 3D_LOAD_VBPNTR packet (k=%d i=%d narrays=%d count+1=%d).\n",
|
|
|
|
k, i, narrays, count + 1);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
/* all clear, output packet */
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
BEGIN_RING(count + 2);
|
2005-08-16 12:43:16 +02:00
|
|
|
OUT_RING(header);
|
2005-09-25 06:28:13 +02:00
|
|
|
OUT_RING_TABLE(payload, count + 1);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADVANCE_RING();
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
cmdbuf->buf += (count + 2) * 4;
|
|
|
|
cmdbuf->bufsz -= (count + 2) * 4;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2006-03-19 09:37:55 +01:00
|
|
|
|
2006-02-18 05:51:35 +01:00
|
|
|
static __inline__ int r300_emit_bitblt_multi(drm_radeon_private_t *dev_priv,
|
|
|
|
drm_radeon_kcmd_buffer_t *cmdbuf)
|
|
|
|
{
|
|
|
|
u32 *cmd = (u32 *) cmdbuf->buf;
|
|
|
|
int count, ret;
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
count=(cmd[0]>>16) & 0x3fff;
|
|
|
|
|
|
|
|
if (cmd[0] & 0x8000) {
|
|
|
|
u32 offset;
|
|
|
|
|
|
|
|
if (cmd[1] & (RADEON_GMC_SRC_PITCH_OFFSET_CNTL
|
|
|
|
| RADEON_GMC_DST_PITCH_OFFSET_CNTL)) {
|
|
|
|
offset = cmd[2] << 10;
|
2006-12-15 08:54:35 +01:00
|
|
|
ret = !radeon_check_offset(dev_priv, offset);
|
2006-02-18 06:30:54 +01:00
|
|
|
if (ret) {
|
2006-02-18 05:51:35 +01:00
|
|
|
DRM_ERROR("Invalid bitblt first offset is %08X\n", offset);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2006-02-18 05:51:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((cmd[1] & RADEON_GMC_SRC_PITCH_OFFSET_CNTL) &&
|
|
|
|
(cmd[1] & RADEON_GMC_DST_PITCH_OFFSET_CNTL)) {
|
|
|
|
offset = cmd[3] << 10;
|
2006-12-15 08:54:35 +01:00
|
|
|
ret = !radeon_check_offset(dev_priv, offset);
|
2006-02-18 06:30:54 +01:00
|
|
|
if (ret) {
|
2006-02-18 05:51:35 +01:00
|
|
|
DRM_ERROR("Invalid bitblt second offset is %08X\n", offset);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2006-02-18 05:51:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BEGIN_RING(count+2);
|
|
|
|
OUT_RING(cmd[0]);
|
|
|
|
OUT_RING_TABLE((int *)(cmdbuf->buf + 4), count + 1);
|
|
|
|
ADVANCE_RING();
|
|
|
|
|
|
|
|
cmdbuf->buf += (count+2)*4;
|
|
|
|
cmdbuf->bufsz -= (count+2)*4;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
2006-10-24 13:45:00 +02:00
|
|
|
static __inline__ int r300_emit_indx_buffer(drm_radeon_private_t *dev_priv,
|
|
|
|
drm_radeon_kcmd_buffer_t *cmdbuf)
|
|
|
|
{
|
|
|
|
u32 *cmd = (u32 *) cmdbuf->buf;
|
|
|
|
int count, ret;
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
count=(cmd[0]>>16) & 0x3fff;
|
|
|
|
|
|
|
|
if ((cmd[1] & 0x8000ffff) != 0x80000810) {
|
|
|
|
DRM_ERROR("Invalid indx_buffer reg address %08X\n", cmd[1]);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2006-10-24 13:45:00 +02:00
|
|
|
}
|
2006-12-15 08:54:35 +01:00
|
|
|
ret = !radeon_check_offset(dev_priv, cmd[2]);
|
2006-10-24 13:45:00 +02:00
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("Invalid indx_buffer offset is %08X\n", cmd[2]);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2006-10-24 13:45:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BEGIN_RING(count+2);
|
|
|
|
OUT_RING(cmd[0]);
|
|
|
|
OUT_RING_TABLE((int *)(cmdbuf->buf + 4), count + 1);
|
|
|
|
ADVANCE_RING();
|
|
|
|
|
|
|
|
cmdbuf->buf += (count+2)*4;
|
|
|
|
cmdbuf->bufsz -= (count+2)*4;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-01-02 11:32:48 +01:00
|
|
|
static __inline__ int r300_emit_raw_packet3(drm_radeon_private_t *dev_priv,
|
|
|
|
drm_radeon_kcmd_buffer_t *cmdbuf)
|
2005-08-16 12:43:16 +02:00
|
|
|
{
|
|
|
|
u32 header;
|
|
|
|
int count;
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
if (4 > cmdbuf->bufsz)
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
/* Fixme !! This simply emits a packet without much checking.
|
2005-08-16 12:43:16 +02:00
|
|
|
We need to be smarter. */
|
|
|
|
|
|
|
|
/* obtain first word - actual packet3 header */
|
2005-09-30 10:37:36 +02:00
|
|
|
header = *(u32 *) cmdbuf->buf;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
/* Is it packet 3 ? */
|
2005-09-25 06:28:13 +02:00
|
|
|
if ((header >> 30) != 0x3) {
|
2005-08-16 12:43:16 +02:00
|
|
|
DRM_ERROR("Not a packet3 header (0x%08x)\n", header);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
count = (header >> 16) & 0x3fff;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
/* Check again now that we know how much data to expect */
|
2005-09-25 06:28:13 +02:00
|
|
|
if ((count + 2) * 4 > cmdbuf->bufsz) {
|
|
|
|
DRM_ERROR
|
|
|
|
("Expected packet3 of length %d but have only %d bytes left\n",
|
|
|
|
(count + 2) * 4, cmdbuf->bufsz);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
/* Is it a packet type we know about ? */
|
2005-09-25 06:28:13 +02:00
|
|
|
switch (header & 0xff00) {
|
|
|
|
case RADEON_3D_LOAD_VBPNTR: /* load vertex array pointers */
|
2005-08-16 12:43:16 +02:00
|
|
|
return r300_emit_3d_load_vbpntr(dev_priv, cmdbuf, header);
|
|
|
|
|
2006-02-18 05:51:35 +01:00
|
|
|
case RADEON_CNTL_BITBLT_MULTI:
|
|
|
|
return r300_emit_bitblt_multi(dev_priv, cmdbuf);
|
|
|
|
|
2006-10-24 13:45:00 +02:00
|
|
|
case RADEON_CP_INDX_BUFFER: /* DRAW_INDX_2 without INDX_BUFFER seems to lock up the gpu */
|
|
|
|
return r300_emit_indx_buffer(dev_priv, cmdbuf);
|
2005-09-25 06:28:13 +02:00
|
|
|
case RADEON_CP_3D_DRAW_IMMD_2: /* triggers drawing using in-packet vertex data */
|
|
|
|
case RADEON_CP_3D_DRAW_VBUF_2: /* triggers drawing of vertex buffers setup elsewhere */
|
|
|
|
case RADEON_CP_3D_DRAW_INDX_2: /* triggers drawing using indices to vertex buffer */
|
2005-08-16 12:43:16 +02:00
|
|
|
case RADEON_WAIT_FOR_IDLE:
|
|
|
|
case RADEON_CP_NOP:
|
|
|
|
/* these packets are safe */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
DRM_ERROR("Unknown packet3 header (0x%08x)\n", header);
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
BEGIN_RING(count + 2);
|
2005-08-16 12:43:16 +02:00
|
|
|
OUT_RING(header);
|
2005-09-30 10:37:36 +02:00
|
|
|
OUT_RING_TABLE((int *)(cmdbuf->buf + 4), count + 1);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADVANCE_RING();
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
cmdbuf->buf += (count + 2) * 4;
|
|
|
|
cmdbuf->bufsz -= (count + 2) * 4;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Emit a rendering packet3 from userspace.
|
|
|
|
* Called by r300_do_cp_cmdbuf.
|
|
|
|
*/
|
2006-01-02 11:32:48 +01:00
|
|
|
static __inline__ int r300_emit_packet3(drm_radeon_private_t *dev_priv,
|
|
|
|
drm_radeon_kcmd_buffer_t *cmdbuf,
|
2005-08-16 12:43:16 +02:00
|
|
|
drm_r300_cmd_header_t header)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
int ret;
|
2005-09-30 10:37:36 +02:00
|
|
|
char *orig_buf = cmdbuf->buf;
|
2005-08-16 12:43:16 +02:00
|
|
|
int orig_bufsz = cmdbuf->bufsz;
|
|
|
|
|
|
|
|
/* This is a do-while-loop so that we run the interior at least once,
|
|
|
|
* even if cmdbuf->nbox is 0. Compare r300_emit_cliprects for rationale.
|
|
|
|
*/
|
|
|
|
n = 0;
|
|
|
|
do {
|
|
|
|
if (cmdbuf->nbox > R300_SIMULTANEOUS_CLIPRECTS) {
|
|
|
|
ret = r300_emit_cliprects(dev_priv, cmdbuf, n);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
cmdbuf->buf = orig_buf;
|
|
|
|
cmdbuf->bufsz = orig_bufsz;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
switch (header.packet3.packet) {
|
2005-08-16 12:43:16 +02:00
|
|
|
case R300_CMD_PACKET3_CLEAR:
|
|
|
|
DRM_DEBUG("R300_CMD_PACKET3_CLEAR\n");
|
|
|
|
ret = r300_emit_clear(dev_priv, cmdbuf);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("r300_emit_clear failed\n");
|
|
|
|
return ret;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case R300_CMD_PACKET3_RAW:
|
|
|
|
DRM_DEBUG("R300_CMD_PACKET3_RAW\n");
|
|
|
|
ret = r300_emit_raw_packet3(dev_priv, cmdbuf);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("r300_emit_raw_packet3 failed\n");
|
|
|
|
return ret;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DRM_ERROR("bad packet3 type %i at %p\n",
|
2005-09-25 06:28:13 +02:00
|
|
|
header.packet3.packet,
|
|
|
|
cmdbuf->buf - sizeof(header));
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
n += R300_SIMULTANEOUS_CLIPRECTS;
|
2005-09-25 06:28:13 +02:00
|
|
|
} while (n < cmdbuf->nbox);
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Some of the R300 chips seem to be extremely touchy about the two registers
|
|
|
|
* that are configured in r300_pacify.
|
|
|
|
* Among the worst offenders seems to be the R300 ND (0x4E44): When userspace
|
|
|
|
* sends a command buffer that contains only state setting commands and a
|
|
|
|
* vertex program/parameter upload sequence, this will eventually lead to a
|
|
|
|
* lockup, unless the sequence is bracketed by calls to r300_pacify.
|
|
|
|
* So we should take great care to *always* call r300_pacify before
|
|
|
|
* *anything* 3D related, and again afterwards. This is what the
|
|
|
|
* call bracket in r300_do_cp_cmdbuf is for.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Emit the sequence to pacify R300.
|
|
|
|
*/
|
2006-01-02 11:32:48 +01:00
|
|
|
static __inline__ void r300_pacify(drm_radeon_private_t *dev_priv)
|
2005-08-16 12:43:16 +02:00
|
|
|
{
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
BEGIN_RING(6);
|
2005-09-25 06:28:13 +02:00
|
|
|
OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0));
|
2007-07-11 04:24:10 +02:00
|
|
|
OUT_RING(R300_RB3D_DSTCACHE_UNKNOWN_0A);
|
|
|
|
OUT_RING(CP_PACKET0(R300_RB3D_ZCACHE_CTLSTAT, 0));
|
|
|
|
OUT_RING(R300_RB3D_ZCACHE_UNKNOWN_03);
|
2005-09-25 06:28:13 +02:00
|
|
|
OUT_RING(CP_PACKET3(RADEON_CP_NOP, 0));
|
|
|
|
OUT_RING(0x0);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADVANCE_RING();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called by r300_do_cp_cmdbuf to update the internal buffer age and state.
|
|
|
|
* The actual age emit is done by r300_do_cp_cmdbuf, which is why you must
|
|
|
|
* be careful about how this function is called.
|
|
|
|
*/
|
2007-07-11 08:17:42 +02:00
|
|
|
static void r300_discard_buffer(struct drm_device * dev, struct drm_buf * buf)
|
2005-08-16 12:43:16 +02:00
|
|
|
{
|
|
|
|
drm_radeon_private_t *dev_priv = dev->dev_private;
|
|
|
|
drm_radeon_buf_priv_t *buf_priv = buf->dev_private;
|
|
|
|
|
|
|
|
buf_priv->age = ++dev_priv->sarea_priv->last_dispatch;
|
|
|
|
buf->pending = 1;
|
|
|
|
buf->used = 0;
|
|
|
|
}
|
|
|
|
|
2006-03-19 09:45:26 +01:00
|
|
|
static int r300_scratch(drm_radeon_private_t *dev_priv,
|
|
|
|
drm_radeon_kcmd_buffer_t *cmdbuf,
|
|
|
|
drm_r300_cmd_header_t header)
|
|
|
|
{
|
|
|
|
u32 *ref_age_base;
|
|
|
|
u32 i, buf_idx, h_pending;
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
if (cmdbuf->bufsz <
|
|
|
|
(sizeof(u64) + header.scratch.n_bufs * sizeof(buf_idx))) {
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2006-03-19 09:45:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (header.scratch.reg >= 5) {
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2006-03-19 09:45:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dev_priv->scratch_ages[header.scratch.reg]++;
|
|
|
|
|
2006-04-23 10:14:00 +02:00
|
|
|
ref_age_base = (u32 *)(unsigned long)*((uint64_t *)cmdbuf->buf);
|
2006-03-19 09:45:26 +01:00
|
|
|
|
|
|
|
cmdbuf->buf += sizeof(u64);
|
|
|
|
cmdbuf->bufsz -= sizeof(u64);
|
|
|
|
|
|
|
|
for (i=0; i < header.scratch.n_bufs; i++) {
|
|
|
|
buf_idx = *(u32 *)cmdbuf->buf;
|
|
|
|
buf_idx *= 2; /* 8 bytes per buf */
|
|
|
|
|
|
|
|
if (DRM_COPY_TO_USER(ref_age_base + buf_idx, &dev_priv->scratch_ages[header.scratch.reg], sizeof(u32))) {
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2006-03-19 09:45:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (DRM_COPY_FROM_USER(&h_pending, ref_age_base + buf_idx + 1, sizeof(u32))) {
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2006-03-19 09:45:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (h_pending == 0) {
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2006-03-19 09:45:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h_pending--;
|
|
|
|
|
|
|
|
if (DRM_COPY_TO_USER(ref_age_base + buf_idx + 1, &h_pending, sizeof(u32))) {
|
2007-08-25 11:22:43 +02:00
|
|
|
return -EINVAL;
|
2006-03-19 09:45:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cmdbuf->buf += sizeof(buf_idx);
|
|
|
|
cmdbuf->bufsz -= sizeof(buf_idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
BEGIN_RING(2);
|
2007-07-11 04:24:10 +02:00
|
|
|
OUT_RING( CP_PACKET0( RADEON_SCRATCH_REG0 + header.scratch.reg * 4, 0 ) );
|
|
|
|
OUT_RING( dev_priv->scratch_ages[header.scratch.reg] );
|
2006-03-19 09:45:26 +01:00
|
|
|
ADVANCE_RING();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-08-16 12:43:16 +02:00
|
|
|
/**
|
|
|
|
* Parses and validates a user-supplied command buffer and emits appropriate
|
|
|
|
* commands on the DMA ring buffer.
|
|
|
|
* Called by the ioctl handler function radeon_cp_cmdbuf.
|
|
|
|
*/
|
2007-07-11 07:53:27 +02:00
|
|
|
int r300_do_cp_cmdbuf(struct drm_device *dev,
|
2007-08-25 12:23:09 +02:00
|
|
|
struct drm_file *file_priv,
|
2006-01-02 11:32:48 +01:00
|
|
|
drm_radeon_kcmd_buffer_t *cmdbuf)
|
2005-08-16 12:43:16 +02:00
|
|
|
{
|
|
|
|
drm_radeon_private_t *dev_priv = dev->dev_private;
|
2007-07-11 08:32:08 +02:00
|
|
|
struct drm_device_dma *dma = dev->dma;
|
2007-07-11 08:17:42 +02:00
|
|
|
struct drm_buf *buf = NULL;
|
2005-08-16 12:43:16 +02:00
|
|
|
int emit_dispatch_age = 0;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
DRM_DEBUG("\n");
|
|
|
|
|
|
|
|
/* See the comment above r300_emit_begin3d for why this call must be here,
|
|
|
|
* and what the cleanup gotos are for. */
|
|
|
|
r300_pacify(dev_priv);
|
|
|
|
|
|
|
|
if (cmdbuf->nbox <= R300_SIMULTANEOUS_CLIPRECTS) {
|
|
|
|
ret = r300_emit_cliprects(dev_priv, cmdbuf, 0);
|
|
|
|
if (ret)
|
|
|
|
goto cleanup;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
while (cmdbuf->bufsz >= sizeof(drm_r300_cmd_header_t)) {
|
2005-08-16 12:43:16 +02:00
|
|
|
int idx;
|
|
|
|
drm_r300_cmd_header_t header;
|
|
|
|
|
|
|
|
header.u = *(unsigned int *)cmdbuf->buf;
|
|
|
|
|
|
|
|
cmdbuf->buf += sizeof(header);
|
|
|
|
cmdbuf->bufsz -= sizeof(header);
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
switch (header.header.cmd_type) {
|
|
|
|
case R300_CMD_PACKET0:
|
2005-08-16 12:43:16 +02:00
|
|
|
DRM_DEBUG("R300_CMD_PACKET0\n");
|
|
|
|
ret = r300_emit_packet0(dev_priv, cmdbuf, header);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("r300_emit_packet0 failed\n");
|
|
|
|
goto cleanup;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case R300_CMD_VPU:
|
|
|
|
DRM_DEBUG("R300_CMD_VPU\n");
|
|
|
|
ret = r300_emit_vpu(dev_priv, cmdbuf, header);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("r300_emit_vpu failed\n");
|
|
|
|
goto cleanup;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case R300_CMD_PACKET3:
|
|
|
|
DRM_DEBUG("R300_CMD_PACKET3\n");
|
|
|
|
ret = r300_emit_packet3(dev_priv, cmdbuf, header);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("r300_emit_packet3 failed\n");
|
|
|
|
goto cleanup;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case R300_CMD_END3D:
|
|
|
|
DRM_DEBUG("R300_CMD_END3D\n");
|
2005-09-25 06:28:13 +02:00
|
|
|
/* TODO:
|
|
|
|
Ideally userspace driver should not need to issue this call,
|
|
|
|
i.e. the drm driver should issue it automatically and prevent
|
|
|
|
lockups.
|
|
|
|
|
|
|
|
In practice, we do not understand why this call is needed and what
|
|
|
|
it does (except for some vague guesses that it has to do with cache
|
|
|
|
coherence) and so the user space driver does it.
|
|
|
|
|
|
|
|
Once we are sure which uses prevent lockups the code could be moved
|
|
|
|
into the kernel and the userspace driver will not
|
|
|
|
need to use this command.
|
|
|
|
|
|
|
|
Note that issuing this command does not hurt anything
|
|
|
|
except, possibly, performance */
|
2005-08-16 12:43:16 +02:00
|
|
|
r300_pacify(dev_priv);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R300_CMD_CP_DELAY:
|
|
|
|
/* simple enough, we can do it here */
|
|
|
|
DRM_DEBUG("R300_CMD_CP_DELAY\n");
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
BEGIN_RING(header.delay.count);
|
2005-09-25 06:28:13 +02:00
|
|
|
for (i = 0; i < header.delay.count; i++)
|
2005-08-16 12:43:16 +02:00
|
|
|
OUT_RING(RADEON_CP_PACKET2);
|
|
|
|
ADVANCE_RING();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R300_CMD_DMA_DISCARD:
|
|
|
|
DRM_DEBUG("RADEON_CMD_DMA_DISCARD\n");
|
2005-09-25 06:28:13 +02:00
|
|
|
idx = header.dma.buf_idx;
|
|
|
|
if (idx < 0 || idx >= dma->buf_count) {
|
|
|
|
DRM_ERROR("buffer index %d (of %d max)\n",
|
|
|
|
idx, dma->buf_count - 1);
|
2007-08-25 11:22:43 +02:00
|
|
|
ret = -EINVAL;
|
2005-08-16 12:43:16 +02:00
|
|
|
goto cleanup;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buf = dma->buflist[idx];
|
2007-08-25 12:23:09 +02:00
|
|
|
if (buf->file_priv != file_priv || buf->pending) {
|
2005-09-25 06:28:13 +02:00
|
|
|
DRM_ERROR("bad buffer %p %p %d\n",
|
2007-08-25 12:23:09 +02:00
|
|
|
buf->file_priv, file_priv,
|
|
|
|
buf->pending);
|
2007-08-25 11:22:43 +02:00
|
|
|
ret = -EINVAL;
|
2005-09-25 06:28:13 +02:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
emit_dispatch_age = 1;
|
|
|
|
r300_discard_buffer(dev, buf);
|
2005-09-25 06:28:13 +02:00
|
|
|
break;
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
case R300_CMD_WAIT:
|
|
|
|
/* simple enough, we can do it here */
|
|
|
|
DRM_DEBUG("R300_CMD_WAIT\n");
|
2005-09-25 06:28:13 +02:00
|
|
|
if (header.wait.flags == 0)
|
|
|
|
break; /* nothing to do */
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
BEGIN_RING(2);
|
2005-09-25 06:28:13 +02:00
|
|
|
OUT_RING(CP_PACKET0(RADEON_WAIT_UNTIL, 0));
|
|
|
|
OUT_RING((header.wait.flags & 0xf) << 14);
|
2005-08-16 12:43:16 +02:00
|
|
|
ADVANCE_RING();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2006-03-19 09:45:26 +01:00
|
|
|
case R300_CMD_SCRATCH:
|
|
|
|
DRM_DEBUG("R300_CMD_SCRATCH\n");
|
|
|
|
ret = r300_scratch(dev_priv, cmdbuf, header);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("r300_scratch failed\n");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2005-08-16 12:43:16 +02:00
|
|
|
default:
|
|
|
|
DRM_ERROR("bad cmd_type %i at %p\n",
|
2005-09-25 06:28:13 +02:00
|
|
|
header.header.cmd_type,
|
2005-08-16 12:43:16 +02:00
|
|
|
cmdbuf->buf - sizeof(header));
|
2007-08-25 11:22:43 +02:00
|
|
|
ret = -EINVAL;
|
2005-08-16 12:43:16 +02:00
|
|
|
goto cleanup;
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DRM_DEBUG("END\n");
|
|
|
|
|
2005-09-25 06:28:13 +02:00
|
|
|
cleanup:
|
2005-08-16 12:43:16 +02:00
|
|
|
r300_pacify(dev_priv);
|
|
|
|
|
|
|
|
/* We emit the vertex buffer age here, outside the pacifier "brackets"
|
|
|
|
* for two reasons:
|
|
|
|
* (1) This may coalesce multiple age emissions into a single one and
|
|
|
|
* (2) more importantly, some chips lock up hard when scratch registers
|
|
|
|
* are written inside the pacifier bracket.
|
|
|
|
*/
|
|
|
|
if (emit_dispatch_age) {
|
|
|
|
RING_LOCALS;
|
|
|
|
|
|
|
|
/* Emit the vertex buffer age */
|
|
|
|
BEGIN_RING(2);
|
|
|
|
RADEON_DISPATCH_AGE(dev_priv->sarea_priv->last_dispatch);
|
|
|
|
ADVANCE_RING();
|
2005-09-25 06:28:13 +02:00
|
|
|
}
|
2005-08-16 12:43:16 +02:00
|
|
|
|
|
|
|
COMMIT_RING();
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|