summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300/radeon_span.c
blob: 8902c93e596928f4b08236d1d837539bc128c779 (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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
/*
Copyright (C) The Weather Channel, Inc.  2002.  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 THE COPYRIGHT OWNER(S) 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:
 *   Keith Whitwell <keith@tungstengraphics.com>
 */

#include "glheader.h"
#include "imports.h"
#include "swrast/swrast.h"
#include "colormac.h"

#include "r200_context.h"
#include "radeon_ioctl.h"
#include "r300_ioctl.h"
#include "radeon_span.h"

#define DBG 0

#define LOCAL_VARS							\
   radeonContextPtr radeon = RADEON_CONTEXT(ctx);			\
   driRenderbuffer* drb = (driRenderbuffer*)rb;				\
   __DRIscreenPrivate *sPriv = radeon->dri.screen;			\
   __DRIdrawablePrivate *dPriv = radeon->dri.drawable;			\
   GLuint pitch = drb->pitch * drb->cpp;				\
   GLuint height = dPriv->h;						\
   char *buf = (char *)(sPriv->pFB +					\
			drb->offset +					\
			(dPriv->x * drb->cpp) +				\
			(dPriv->y * pitch));				\
   GLuint p;								\
   (void) p

#define LOCAL_DEPTH_VARS						\
   radeonContextPtr radeon = RADEON_CONTEXT(ctx);			\
   driRenderbuffer* drb = (driRenderbuffer*)rb;				\
   __DRIscreenPrivate *sPriv = radeon->dri.screen;			\
   __DRIdrawablePrivate *dPriv = radeon->dri.drawable;			\
   GLuint pitch = drb->pitch;						\
   GLuint height = dPriv->h;						\
   GLuint xo = dPriv->x;						\
   GLuint yo = dPriv->y;						\
   char *buf = (char *)(sPriv->pFB + drb->offset);			\
   (void) buf; (void) pitch

#define LOCAL_STENCIL_VARS	LOCAL_DEPTH_VARS

#define CLIPPIXEL( _x, _y )						\
   ((_x >= minx) && (_x < maxx) && (_y >= miny) && (_y < maxy))

#define CLIPSPAN( _x, _y, _n, _x1, _n1, _i )				\
   if ( _y < miny || _y >= maxy ) {					\
      _n1 = 0, _x1 = x;							\
   } else {								\
      _n1 = _n;								\
      _x1 = _x;								\
      if ( _x1 < minx ) _i += (minx-_x1), _n1 -= (minx-_x1), _x1 = minx; \
      if ( _x1 + _n1 >= maxx ) n1 -= (_x1 + _n1 - maxx);		\
   }

#define Y_FLIP( _y )		(height - _y - 1)

#define HW_LOCK()

#define HW_CLIPLOOP()							\
   do {									\
      int _nc = dPriv->numClipRects;					\
									\
      while ( _nc-- ) {							\
	 int minx = dPriv->pClipRects[_nc].x1 - dPriv->x;		\
	 int miny = dPriv->pClipRects[_nc].y1 - dPriv->y;		\
	 int maxx = dPriv->pClipRects[_nc].x2 - dPriv->x;		\
	 int maxy = dPriv->pClipRects[_nc].y2 - dPriv->y;

#define HW_ENDCLIPLOOP()						\
      }									\
   } while (0)

#define HW_UNLOCK()

/* ================================================================
 * Color buffer
 */

/* 16 bit, RGB565 color spanline and pixel functions
 */
#define INIT_MONO_PIXEL(p, color) \
  p = PACK_COLOR_565( color[0], color[1], color[2] )

#define WRITE_RGBA( _x, _y, r, g, b, a )				\
   *(GLushort *)(buf + _x*2 + _y*pitch) = ((((int)r & 0xf8) << 8) |	\
					   (((int)g & 0xfc) << 3) |	\
					   (((int)b & 0xf8) >> 3))

#define WRITE_PIXEL( _x, _y, p )					\
   *(GLushort *)(buf + _x*2 + _y*pitch) = p

#define READ_RGBA( rgba, _x, _y )					\
   do {									\
      GLushort p = *(GLushort *)(buf + _x*2 + _y*pitch);		\
      rgba[0] = ((p >> 8) & 0xf8) * 255 / 0xf8;				\
      rgba[1] = ((p >> 3) & 0xfc) * 255 / 0xfc;				\
      rgba[2] = ((p << 3) & 0xf8) * 255 / 0xf8;				\
      rgba[3] = 0xff;							\
   } while (0)

#define TAG(x) radeon##x##_RGB565
#include "spantmp.h"

/* 32 bit, ARGB8888 color spanline and pixel functions
 */
#undef INIT_MONO_PIXEL
#define INIT_MONO_PIXEL(p, color) \
  p = PACK_COLOR_8888( color[3], color[0], color[1], color[2] )

#define WRITE_RGBA( _x, _y, r, g, b, a )			\
do {								\
   *(GLuint *)(buf + _x*4 + _y*pitch) = ((b <<  0) |		\
					 (g <<  8) |		\
					 (r << 16) |		\
					 (a << 24) );		\
} while (0)

#define WRITE_PIXEL( _x, _y, p ) 			\
do {							\
   *(GLuint *)(buf + _x*4 + _y*pitch) = p;		\
} while (0)

#define READ_RGBA( rgba, _x, _y )				\
do {								\
   volatile GLuint *ptr = (volatile GLuint *)(buf + _x*4 + _y*pitch); \
   GLuint p = *ptr;					\
   rgba[0] = (p >> 16) & 0xff;					\
   rgba[1] = (p >>  8) & 0xff;					\
   rgba[2] = (p >>  0) & 0xff;					\
   rgba[3] = (p >> 24) & 0xff;					\
} while (0)

#define TAG(x) radeon##x##_ARGB8888
#include "spantmp.h"

/* ================================================================
 * Depth buffer
 */

/* 16-bit depth buffer functions
 */
#define WRITE_DEPTH( _x, _y, d )					\
   *(GLushort *)(buf + (_x + xo + (_y + yo)*pitch)*2 ) = d;

#define READ_DEPTH( d, _x, _y )						\
   d = *(GLushort *)(buf + (_x + xo + (_y + yo)*pitch)*2 );

#define TAG(x) radeon##x##_16_LINEAR
#include "depthtmp.h"

/* 24 bit depth, 8 bit stencil depthbuffer functions
 *
 * Careful: It looks like the R300 uses ZZZS byte order while the R200
 * uses SZZZ for 24 bit depth, 8 bit stencil mode.
 */
#define WRITE_DEPTH( _x, _y, d )					\
do {									\
   GLuint offset = ((_x) + xo + ((_y) + yo)*pitch)*4;			\
   GLuint tmp = *(GLuint *)(buf + offset);				\
   tmp &= 0x000000ff;							\
   tmp |= ((d << 8) & 0xffffff00);					\
   *(GLuint *)(buf + offset) = tmp;					\
} while (0)

#define READ_DEPTH( d, _x, _y )						\
do { \
   d = (*(GLuint *)(buf + ((_x) + xo + ((_y) + yo)*pitch)*4) & 0xffffff00) >> 8; \
} while(0)

#define TAG(x) radeon##x##_24_8_LINEAR
#include "depthtmp.h"

/* ================================================================
 * Stencil buffer
 */

/* 24 bit depth, 8 bit stencil depthbuffer functions
 */
#define WRITE_STENCIL( _x, _y, d )					\
do {									\
   GLuint offset = (_x + xo + (_y + yo)*pitch)*4;			\
   GLuint tmp = *(GLuint *)(buf + offset);				\
   tmp &= 0xffffff00;							\
   tmp |= (d) & 0xff;							\
   *(GLuint *)(buf + offset) = tmp;					\
} while (0)

#define READ_STENCIL( d, _x, _y )					\
do {									\
   GLuint offset = (_x + xo + (_y + yo)*pitch)*4;			\
   GLuint tmp = *(GLuint *)(buf + offset);				\
   d = tmp & 0x000000ff;						\
} while (0)

#define TAG(x) radeon##x##_24_8_LINEAR
#include "stenciltmp.h"

/*
 * This function is called to specify which buffer to read and write
 * for software rasterization (swrast) fallbacks.  This doesn't necessarily
 * correspond to glDrawBuffer() or glReadBuffer() calls.
 */
static void radeonSetBuffer(GLcontext * ctx,
			  GLframebuffer * colorBuffer, GLuint bufferBit)
{
	radeonContextPtr radeon = RADEON_CONTEXT(ctx);
	int buffer;

	switch (bufferBit) {
	case BUFFER_BIT_FRONT_LEFT:
		buffer = 0;
		break;

	case BUFFER_BIT_BACK_LEFT:
		buffer = 1;
		break;

	default:
		_mesa_problem(ctx, "Bad bufferBit in %s", __FUNCTION__);
		return;
	}

	if (radeon->doPageFlip && radeon->sarea->pfCurrentPage == 1)
		buffer ^= 1;

#if 0
	fprintf(stderr, "%s: using %s buffer\n", __FUNCTION__,
		buffer ? "back" : "front");
#endif

	if (buffer) {
		radeon->state.pixel.readOffset =
			radeon->radeonScreen->backOffset;
		radeon->state.pixel.readPitch =
			radeon->radeonScreen->backPitch;
		radeon->state.color.drawOffset =
			radeon->radeonScreen->backOffset;
		radeon->state.color.drawPitch =
			radeon->radeonScreen->backPitch;
	} else {
		radeon->state.pixel.readOffset =
			radeon->radeonScreen->frontOffset;
		radeon->state.pixel.readPitch =
			radeon->radeonScreen->frontPitch;
		radeon->state.color.drawOffset =
			radeon->radeonScreen->frontOffset;
		radeon->state.color.drawPitch =
			radeon->radeonScreen->frontPitch;
	}
}

/* Move locking out to get reasonable span performance (10x better
 * than doing this in HW_LOCK above).  WaitForIdle() is the main
 * culprit.
 */

static void radeonSpanRenderStart(GLcontext * ctx)
{
	radeonContextPtr radeon = RADEON_CONTEXT(ctx);

	if (IS_FAMILY_R200(radeon))
		R200_FIREVERTICES((r200ContextPtr)radeon);
	else
		r300Flush(ctx);

	LOCK_HARDWARE(radeon);
	radeonWaitForIdleLocked(radeon);

	/* Read & rewrite the first pixel in the frame buffer.  This should
	 * be a noop, right?  In fact without this conform fails as reading
	 * from the framebuffer sometimes produces old results -- the
	 * on-card read cache gets mixed up and doesn't notice that the
	 * framebuffer has been updated.
	 *
	 * In the worst case this is buggy too as p might get the wrong
	 * value first time, so really need a hidden pixel somewhere for this.
	 */
	{
		int p;
		volatile int *read_buf =
		    (volatile int *)(radeon->dri.screen->pFB +
				     radeon->state.pixel.readOffset);
		p = *read_buf;
		*read_buf = p;
	}
}

static void radeonSpanRenderFinish(GLcontext * ctx)
{
	radeonContextPtr radeon = RADEON_CONTEXT(ctx);

	_swrast_flush(ctx);
	UNLOCK_HARDWARE(radeon);
}

void radeonInitSpanFuncs(GLcontext * ctx)
{
	radeonContextPtr radeon = RADEON_CONTEXT(ctx);
	struct swrast_device_driver *swdd =
	    _swrast_GetDeviceDriverReference(ctx);

	swdd->SetBuffer = radeonSetBuffer;

	swdd->SpanRenderStart = radeonSpanRenderStart;
	swdd->SpanRenderFinish = radeonSpanRenderFinish;
}

/**
 * Plug in the Get/Put routines for the given driRenderbuffer.
 */
void radeonSetSpanFunctions(driRenderbuffer *drb, const GLvisual *vis)
{
	if (drb->Base.InternalFormat == GL_RGBA) {
		if (vis->redBits == 5 && vis->greenBits == 6 && vis->blueBits == 5) {
			drb->Base.GetRow        = radeonReadRGBASpan_RGB565;
			drb->Base.GetValues     = radeonReadRGBAPixels_RGB565;
			drb->Base.PutRow        = radeonWriteRGBASpan_RGB565;
			drb->Base.PutRowRGB     = radeonWriteRGBSpan_RGB565;
			drb->Base.PutMonoRow    = radeonWriteMonoRGBASpan_RGB565;
			drb->Base.PutValues     = radeonWriteRGBAPixels_RGB565;
			drb->Base.PutMonoValues = radeonWriteMonoRGBAPixels_RGB565;
		}
		else {
			drb->Base.GetRow        = radeonReadRGBASpan_ARGB8888;
			drb->Base.GetValues     = radeonReadRGBAPixels_ARGB8888;
			drb->Base.PutRow        = radeonWriteRGBASpan_ARGB8888;
			drb->Base.PutRowRGB     = radeonWriteRGBSpan_ARGB8888;
			drb->Base.PutMonoRow    = radeonWriteMonoRGBASpan_ARGB8888;
			drb->Base.PutValues     = radeonWriteRGBAPixels_ARGB8888;
			drb->Base.PutMonoValues = radeonWriteMonoRGBAPixels_ARGB8888;
		}
	}
	else if (drb->Base.InternalFormat == GL_DEPTH_COMPONENT16) {
		drb->Base.GetRow        = radeonReadDepthSpan_16_LINEAR;
		drb->Base.GetValues     = radeonReadDepthPixels_16_LINEAR;
		drb->Base.PutRow        = radeonWriteDepthSpan_16_LINEAR;
		drb->Base.PutMonoRow    = radeonWriteMonoDepthSpan_16_LINEAR;
		drb->Base.PutValues     = radeonWriteDepthPixels_16_LINEAR;
		drb->Base.PutMonoValues = NULL;
	}
	else if (drb->Base.InternalFormat == GL_DEPTH_COMPONENT24) {
		drb->Base.GetRow        = radeonReadDepthSpan_24_8_LINEAR;
		drb->Base.GetValues     = radeonReadDepthPixels_24_8_LINEAR;
		drb->Base.PutRow        = radeonWriteDepthSpan_24_8_LINEAR;
		drb->Base.PutMonoRow    = radeonWriteMonoDepthSpan_24_8_LINEAR;
		drb->Base.PutValues     = radeonWriteDepthPixels_24_8_LINEAR;
		drb->Base.PutMonoValues = NULL;
	}
	else if (drb->Base.InternalFormat == GL_STENCIL_INDEX8_EXT) {
		drb->Base.GetRow        = radeonReadStencilSpan_24_8_LINEAR;
		drb->Base.GetValues     = radeonReadStencilPixels_24_8_LINEAR;
		drb->Base.PutRow        = radeonWriteStencilSpan_24_8_LINEAR;
		drb->Base.PutMonoRow    = radeonWriteMonoStencilSpan_24_8_LINEAR;
		drb->Base.PutValues     = radeonWriteStencilPixels_24_8_LINEAR;
		drb->Base.PutMonoValues = NULL;
	}
}