summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/radeon/radeon_compat.c
blob: 1cbe3407ba97327c01b188065b17a381029386b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/* $XFree86$ */
/**************************************************************************

Copyright 2002 ATI Technologies Inc., Ontario, Canada, and
               Tungsten Graphics Inc., Austin, Texas.

All Rights Reserved.

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
on the rights to use, copy, modify, merge, publish, distribute, sub
license, 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 NON-INFRINGEMENT. IN NO EVENT SHALL
ATI, TUNGSTEN GRAPHICS AND/OR THEIR 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:
 *   Keith Whitwell <keith@tungstengraphics.com>
 *
 */

#include "glheader.h"
#include "imports.h"

#include "radeon_context.h"
#include "radeon_state.h"
#include "radeon_ioctl.h"


static struct { 
	int start; 
	int len; 
	const char *name;
} packet[RADEON_MAX_STATE_PACKETS] = {
	{ RADEON_PP_MISC,7,"RADEON_PP_MISC" },
	{ RADEON_PP_CNTL,3,"RADEON_PP_CNTL" },
	{ RADEON_RB3D_COLORPITCH,1,"RADEON_RB3D_COLORPITCH" },
	{ RADEON_RE_LINE_PATTERN,2,"RADEON_RE_LINE_PATTERN" },
	{ RADEON_SE_LINE_WIDTH,1,"RADEON_SE_LINE_WIDTH" },
	{ RADEON_PP_LUM_MATRIX,1,"RADEON_PP_LUM_MATRIX" },
	{ RADEON_PP_ROT_MATRIX_0,2,"RADEON_PP_ROT_MATRIX_0" },
	{ RADEON_RB3D_STENCILREFMASK,3,"RADEON_RB3D_STENCILREFMASK" },
	{ RADEON_SE_VPORT_XSCALE,6,"RADEON_SE_VPORT_XSCALE" },
	{ RADEON_SE_CNTL,2,"RADEON_SE_CNTL" },
	{ RADEON_SE_CNTL_STATUS,1,"RADEON_SE_CNTL_STATUS" },
	{ RADEON_RE_MISC,1,"RADEON_RE_MISC" },
	{ RADEON_PP_TXFILTER_0,6,"RADEON_PP_TXFILTER_0" },
	{ RADEON_PP_BORDER_COLOR_0,1,"RADEON_PP_BORDER_COLOR_0" },
	{ RADEON_PP_TXFILTER_1,6,"RADEON_PP_TXFILTER_1" },
	{ RADEON_PP_BORDER_COLOR_1,1,"RADEON_PP_BORDER_COLOR_1" },
	{ RADEON_PP_TXFILTER_2,6,"RADEON_PP_TXFILTER_2" },
	{ RADEON_PP_BORDER_COLOR_2,1,"RADEON_PP_BORDER_COLOR_2" },
	{ RADEON_SE_ZBIAS_FACTOR,2,"RADEON_SE_ZBIAS_FACTOR" },
	{ RADEON_SE_TCL_OUTPUT_VTX_FMT,11,"RADEON_SE_TCL_OUTPUT_VTX_FMT" },
	{ RADEON_SE_TCL_MATERIAL_EMMISSIVE_RED,17,"RADEON_SE_TCL_MATERIAL_EMMISSIVE_RED" },
};


static void radeonCompatEmitPacket( radeonContextPtr rmesa, 
				    struct radeon_state_atom *state )
{
   drm_radeon_sarea_t *sarea = rmesa->sarea;
   drm_radeon_context_regs_t *ctx = &sarea->context_state;
   drm_radeon_texture_regs_t *tex0 = &sarea->tex_state[0];
   drm_radeon_texture_regs_t *tex1 = &sarea->tex_state[1];
   int i;
   int *buf = state->cmd;

   for ( i = 0 ; i < state->cmd_size ; ) {
      drm_radeon_cmd_header_t *header = (drm_radeon_cmd_header_t *)&buf[i++];

      if (RADEON_DEBUG & DEBUG_STATE)
	 fprintf(stderr, "%s %d: %s\n", __FUNCTION__, header->packet.packet_id,
		 packet[(int)header->packet.packet_id].name);

      switch (header->packet.packet_id) {
      case RADEON_EMIT_PP_MISC:
	 ctx->pp_misc = buf[i++]; 
	 ctx->pp_fog_color = buf[i++];
	 ctx->re_solid_color = buf[i++];
	 ctx->rb3d_blendcntl = buf[i++];
	 ctx->rb3d_depthoffset = buf[i++];
	 ctx->rb3d_depthpitch = buf[i++];
	 ctx->rb3d_zstencilcntl = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_CONTEXT;
	 break;
      case RADEON_EMIT_PP_CNTL:
	 ctx->pp_cntl = buf[i++];
	 ctx->rb3d_cntl = buf[i++];
	 ctx->rb3d_coloroffset = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_CONTEXT;
	 break;
      case RADEON_EMIT_RB3D_COLORPITCH:
	 ctx->rb3d_colorpitch = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_CONTEXT;
	 break;
      case RADEON_EMIT_RE_LINE_PATTERN:
	 ctx->re_line_pattern = buf[i++];
	 ctx->re_line_state = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_LINE;
	 break;
      case RADEON_EMIT_SE_LINE_WIDTH:
	 ctx->se_line_width = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_LINE;
	 break;
      case RADEON_EMIT_PP_LUM_MATRIX:
	 ctx->pp_lum_matrix = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_BUMPMAP;
	 break;
      case RADEON_EMIT_PP_ROT_MATRIX_0:
	 ctx->pp_rot_matrix_0 = buf[i++];
	 ctx->pp_rot_matrix_1 = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_BUMPMAP;
	 break;
      case RADEON_EMIT_RB3D_STENCILREFMASK:
	 ctx->rb3d_stencilrefmask = buf[i++];
	 ctx->rb3d_ropcntl = buf[i++];
	 ctx->rb3d_planemask = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_MASKS;
	 break;
      case RADEON_EMIT_SE_VPORT_XSCALE:
	 ctx->se_vport_xscale = buf[i++];
	 ctx->se_vport_xoffset = buf[i++];
	 ctx->se_vport_yscale = buf[i++];
	 ctx->se_vport_yoffset = buf[i++];
	 ctx->se_vport_zscale = buf[i++];
	 ctx->se_vport_zoffset = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_VIEWPORT;
	 break;
      case RADEON_EMIT_SE_CNTL:
	 ctx->se_cntl = buf[i++];
	 ctx->se_coord_fmt = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_CONTEXT | RADEON_UPLOAD_VERTFMT;
	 break;
      case RADEON_EMIT_SE_CNTL_STATUS:
	 ctx->se_cntl_status = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_SETUP;
	 break;
      case RADEON_EMIT_RE_MISC:
	 ctx->re_misc = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_MISC;
	 break;
      case RADEON_EMIT_PP_TXFILTER_0:
	 tex0->pp_txfilter = buf[i++];
	 tex0->pp_txformat = buf[i++];
	 tex0->pp_txoffset = buf[i++];
	 tex0->pp_txcblend = buf[i++];
	 tex0->pp_txablend = buf[i++];
	 tex0->pp_tfactor = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_TEX0;
	 break;
      case RADEON_EMIT_PP_BORDER_COLOR_0:
	 tex0->pp_border_color = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_TEX0;
	 break;
      case RADEON_EMIT_PP_TXFILTER_1:
	 tex1->pp_txfilter = buf[i++];
	 tex1->pp_txformat = buf[i++];
	 tex1->pp_txoffset = buf[i++];
	 tex1->pp_txcblend = buf[i++];
	 tex1->pp_txablend = buf[i++];
	 tex1->pp_tfactor = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_TEX1;
	 break;
      case RADEON_EMIT_PP_BORDER_COLOR_1:
	 tex1->pp_border_color = buf[i++];
	 sarea->dirty |= RADEON_UPLOAD_TEX1;
	 break;

      case RADEON_EMIT_SE_ZBIAS_FACTOR:
	 i++;
	 i++;
	 break;

      case RADEON_EMIT_PP_TXFILTER_2:
      case RADEON_EMIT_PP_BORDER_COLOR_2:
      case RADEON_EMIT_SE_TCL_OUTPUT_VTX_FMT:
      case RADEON_EMIT_SE_TCL_MATERIAL_EMMISSIVE_RED:
      default:
	 /* These states aren't understood by radeon drm 1.1 */
	 fprintf(stderr, "Tried to emit unsupported state\n");
	 return;
      }
   }
}



static void radeonCompatEmitStateLocked( radeonContextPtr rmesa )
{
   struct radeon_state_atom *atom;

   if (RADEON_DEBUG & (DEBUG_STATE|DEBUG_PRIMS))
      fprintf(stderr, "%s\n", __FUNCTION__);

   if (!rmesa->hw.is_dirty && !rmesa->hw.all_dirty)
      return;

   foreach(atom, &rmesa->hw.atomlist) {
      if (rmesa->hw.all_dirty)
	 atom->dirty = GL_TRUE;
      if (atom->is_tcl)
	 atom->dirty = GL_FALSE;
      if (atom->dirty)
	 radeonCompatEmitPacket(rmesa, atom);
   }
 
   rmesa->hw.is_dirty = GL_FALSE;
   rmesa->hw.all_dirty = GL_FALSE;
}


static void radeonCompatEmitPrimitiveLocked( radeonContextPtr rmesa,
					     GLuint hw_primitive,
					     GLuint nverts,
					     drm_clip_rect_t *pbox,
					     GLuint nbox )
{
   int i;

   for ( i = 0 ; i < nbox ; ) {
      int nr = MIN2( i + RADEON_NR_SAREA_CLIPRECTS, nbox );
      drm_clip_rect_t *b = rmesa->sarea->boxes;
      drm_radeon_vertex_t vtx;
      
      rmesa->sarea->dirty |= RADEON_UPLOAD_CLIPRECTS;
      rmesa->sarea->nbox = nr - i;

      for ( ; i < nr ; i++) 
	 *b++ = pbox[i];
      
      if (RADEON_DEBUG & DEBUG_IOCTL)
	 fprintf(stderr, 
		 "RadeonFlushVertexBuffer: prim %x buf %d verts %d "
		 "disc %d nbox %d\n",
		 hw_primitive, 
		 rmesa->dma.current.buf->buf->idx, 
		 nverts, 
		 nr == nbox,
		 rmesa->sarea->nbox );

      vtx.prim = hw_primitive;
      vtx.idx = rmesa->dma.current.buf->buf->idx;
      vtx.count = nverts;
      vtx.discard = (nr == nbox);      

      drmCommandWrite( rmesa->dri.fd, 
		       DRM_RADEON_VERTEX,
		       &vtx, sizeof(vtx));
   }
}



/* No 'start' for 1.1 vertices ioctl: only one vertex prim/buffer!  
 */
void radeonCompatEmitPrimitive( radeonContextPtr rmesa,
				GLuint vertex_format,
				GLuint hw_primitive,
				GLuint nrverts )
{
   if (RADEON_DEBUG & DEBUG_IOCTL)
      fprintf(stderr, "%s\n", __FUNCTION__);

   LOCK_HARDWARE( rmesa );

   radeonCompatEmitStateLocked( rmesa );
   rmesa->sarea->vc_format = vertex_format;
   
   if (rmesa->state.scissor.enabled) {
      radeonCompatEmitPrimitiveLocked( rmesa, 
				       hw_primitive,
				       nrverts,
				       rmesa->state.scissor.pClipRects,
				       rmesa->state.scissor.numClipRects );
   }
   else {
      radeonCompatEmitPrimitiveLocked( rmesa, 
				       hw_primitive,
				       nrverts,
				       rmesa->pClipRects,
				       rmesa->numClipRects );
   }


   UNLOCK_HARDWARE( rmesa );
}