Search
lxdream.org :: lxdream/src/pvr2/tacore.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/pvr2/tacore.c
changeset 305:1191085c5988
prev215:f432833e8303
next340:5ae1c80a68fb
author nkeynes
date Mon Jan 22 11:45:37 2007 +0000 (17 years ago)
permissions -rw-r--r--
last change Add methods to detwiddle directly out of vram64
view annotate diff log raw
     1 /**
     2  * $Id: tacore.c,v 1.10 2007-01-18 11:14:01 nkeynes Exp $
     3  *
     4  * PVR2 Tile Accelerator implementation
     5  *
     6  * Copyright (c) 2005 Nathan Keynes.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    18 #include "pvr2.h"
    19 #include "asic.h"
    21 #define STATE_IDLE                 0
    22 #define STATE_IN_LIST              1
    23 #define STATE_IN_POLYGON           2
    24 #define STATE_EXPECT_POLY_BLOCK2   3
    25 #define STATE_EXPECT_VERTEX_BLOCK2 4
    26 #define STATE_ERROR                5
    27 #define STATE_EXPECT_END_VERTEX_BLOCK2 7
    29 #define TA_CMD(i) ( (i) >> 29 )
    30 #define TA_CMD_END_LIST 0
    31 #define TA_CMD_CLIP 1
    32 #define TA_CMD_POLYGON_CONTEXT 4
    33 #define TA_CMD_SPRITE_CONTEXT 5
    34 #define TA_CMD_VERTEX 7
    36 #define TA_LIST_NONE -1
    37 #define TA_LIST_OPAQUE 0
    38 #define TA_LIST_OPAQUE_MOD 1
    39 #define TA_LIST_TRANS 2
    40 #define TA_LIST_TRANS_MOD 3
    41 #define TA_LIST_PUNCH_OUT 4
    42 #define TA_IS_MODIFIER_LIST(list) (list == TA_LIST_OPAQUE_MOD || list == TA_LIST_TRANS_MOD)
    44 #define TA_GROW_UP 0
    45 #define TA_GROW_DOWN 1
    47 #define TA_VERTEX_NONE                        -1
    48 #define TA_VERTEX_PACKED                      0x00
    49 #define TA_VERTEX_TEX_PACKED                  0x08
    50 #define TA_VERTEX_TEX_SPEC_PACKED             0x0C
    51 #define TA_VERTEX_TEX_UV16_PACKED             0x09
    52 #define TA_VERTEX_TEX_UV16_SPEC_PACKED        0x0D
    53 #define TA_VERTEX_FLOAT                       0x10
    54 #define TA_VERTEX_TEX_FLOAT                   0x18
    55 #define TA_VERTEX_TEX_SPEC_FLOAT              0x1C
    56 #define TA_VERTEX_TEX_UV16_FLOAT              0x19
    57 #define TA_VERTEX_TEX_UV16_SPEC_FLOAT         0x1D
    58 #define TA_VERTEX_INTENSITY                   0x20
    59 #define TA_VERTEX_TEX_INTENSITY               0x28
    60 #define TA_VERTEX_TEX_SPEC_INTENSITY          0x2C
    61 #define TA_VERTEX_TEX_UV16_INTENSITY          0x29
    62 #define TA_VERTEX_TEX_UV16_SPEC_INTENSITY     0x2D
    63 #define TA_VERTEX_PACKED_MOD                  0x40
    64 #define TA_VERTEX_TEX_PACKED_MOD              0x48
    65 #define TA_VERTEX_TEX_SPEC_PACKED_MOD         0x4C
    66 #define TA_VERTEX_TEX_UV16_PACKED_MOD         0x49
    67 #define TA_VERTEX_TEX_UV16_SPEC_PACKED_MOD    0x4D
    68 #define TA_VERTEX_INTENSITY_MOD               0x60
    69 #define TA_VERTEX_TEX_INTENSITY_MOD           0x68
    70 #define TA_VERTEX_TEX_SPEC_INTENSITY_MOD      0x6C
    71 #define TA_VERTEX_TEX_UV16_INTENSITY_MOD      0x69
    72 #define TA_VERTEX_TEX_UV16_SPEC_INTENSITY_MOD 0x6D
    73 #define TA_VERTEX_SPRITE                      0x80
    74 #define TA_VERTEX_TEX_SPRITE                  0x88
    75 #define TA_VERTEX_MOD_VOLUME                  0x81
    76 #define TA_VERTEX_LISTLESS                    0xFF
    78 #define TA_IS_NORMAL_POLY() (ta_status.current_vertex_type < TA_VERTEX_SPRITE)
    80 static int strip_lengths[4] = {3,4,6,8}; /* in vertexes */
    81 #define TA_POLYCMD_LISTTYPE(i) ( ((i) >> 24) & 0x0F )
    82 #define TA_POLYCMD_USELENGTH(i) ( i & 0x00800000 )
    83 #define TA_POLYCMD_LENGTH(i)  strip_lengths[((i >> 18) & 0x03)]
    84 #define TA_POLYCMD_CLIP(i)  ((i>>16)&0x03)
    85 #define TA_POLYCMD_CLIP_NONE 0
    86 #define TA_POLYCMD_CLIP_INSIDE 2
    87 #define TA_POLYCMD_CLIP_OUTSIDE 3
    88 #define TA_POLYCMD_COLOURFMT(i)  (i & 0x00000030)
    89 #define TA_POLYCMD_COLOURFMT_ARGB32 0x00000000
    90 #define TA_POLYCMD_COLOURFMT_FLOAT 0x00000010
    91 #define TA_POLYCMD_COLOURFMT_INTENSITY 0x00000020
    92 #define TA_POLYCMD_COLOURFMT_LASTINT 0x00000030
    94 #define TA_POLYCMD_MODIFIED 0x00000080
    95 #define TA_POLYCMD_FULLMOD  0x00000040
    96 #define TA_POLYCMD_TEXTURED 0x00000008
    97 #define TA_POLYCMD_SPECULAR 0x00000004
    98 #define TA_POLYCMD_SHADED 0x00000002
    99 #define TA_POLYCMD_UV16 0x00000001
   101 #define TA_POLYCMD_IS_SPECULAR(i) ((i & 0x0000000C)==0x0000000C) /* Only applies to textured polys */
   102 #define TA_POLYCMD_IS_FULLMOD(i) ((i & 0x000000C0)==0x000000C0)
   105 #define TA_IS_END_VERTEX(i) (i & 0x10000000)
   107 /** Note these are not the IEEE 754 definitions - the TA treats NANs
   108  * as if they were INFs of the appropriate sign.
   109  */
   110 #define TA_IS_INF(f) (((*((uint32_t *)&f)) & 0xFF800000) == 0x7F800000)
   111 #define TA_IS_NINF(f) (((*((uint32_t *)&f)) & 0xFF800000) == 0xFF800000)
   113 #define MIN3( x1, x2, x3 ) ( (x1)<(x2)? ((x1)<(x3)?(x1):(x3)) : ((x2)<(x3)?(x2):(x3)) )
   114 #define MAX3( x1, x2, x3 ) ( (x1)>(x2)? ((x1)>(x3)?(x1):(x3)) : ((x2)>(x3)?(x2):(x3)) )
   116 #define TILESLOT( x, y ) (ta_status.current_tile_matrix + (ta_status.current_tile_size * (y * ta_status.width+ x) << 2))
   118 extern char *video_base;
   119 #define PVRRAM(addr) (*(uint32_t *)(video_base + ((addr)&PVR2_RAM_MASK)))
   121 struct pvr2_ta_vertex {
   122     float x,y,z;
   123     uint32_t detail[8]; /* 0-8 detail words */
   124 };
   126 struct tile_bounds {
   127     int x1, y1, x2, y2;
   128 };
   130 struct pvr2_ta_status {
   131     int state;
   132     int width, height; /* Tile resolution, ie 20x15 */
   133     int tilelist_dir; /* Growth direction of the tilelist, 0 = up, 1 = down */
   134     uint32_t tilelist_size; /* Size of the tilelist segments */
   135     uint32_t tilelist_start; /* Initial address of the tilelist */
   136     int polybuf_start; /* Initial bank address of the polygon buffer (ie &0x00F00000) */
   137     int current_vertex_type;
   138     gboolean accept_vertexes;
   139     int vertex_count; /* index of last start-vertex seen, or -1 if no vertexes 
   140 			 * are present
   141 			 */
   142     int max_vertex;     /* Maximum number of vertexes in the current polygon (3/4/6/8) */
   143     int current_list_type;
   144     uint32_t current_tile_matrix; /* Memory location of the first tile for the current list. */
   145     uint32_t current_tile_size; /* Size of the tile matrix space  in 32-bit words (0/8/16/32)*/
   146     uint32_t intensity1, intensity2;
   147     struct tile_bounds clip;
   148     int clip_mode;
   149     /**
   150      * Current working object
   151      */
   152     int poly_context_size;
   153     int poly_vertex_size;
   154     int poly_parity;
   155     uint32_t poly_context[5];
   156     uint32_t poly_pointer;
   157     struct tile_bounds last_triangle_bounds;
   158     struct pvr2_ta_vertex poly_vertex[8];
   159     int debug_output;
   160 };
   162 static struct pvr2_ta_status ta_status;
   164 static int tilematrix_sizes[4] = {0,8,16,32};
   166 /**
   167  * Convenience union - ta data is either 32-bit integer or 32-bit float.
   168  */
   169 union ta_data {
   170     unsigned int i;
   171     float f;
   172 };
   175 void pvr2_ta_reset() {
   176     ta_status.state = STATE_ERROR; /* State not valid until initialized */
   177     ta_status.debug_output = 0;
   178 }
   180 void pvr2_ta_save_state( FILE *f )
   181 {
   182     fwrite( &ta_status, sizeof(ta_status), 1, f );
   183 }
   185 int pvr2_ta_load_state( FILE *f )
   186 {
   187     if( fread( &ta_status, sizeof(ta_status), 1, f ) != 1 )
   188 	return 1;
   189     return 0;
   190 }
   192 void pvr2_ta_init() {
   193     ta_status.state = STATE_IDLE;
   194     ta_status.current_list_type = -1;
   195     ta_status.current_vertex_type = -1;
   196     ta_status.poly_parity = 0;
   197     ta_status.vertex_count = 0;
   198     ta_status.max_vertex = 3;
   199     ta_status.current_vertex_type = TA_VERTEX_LISTLESS;
   200     ta_status.poly_vertex_size = 0;
   201     memset(&ta_status.poly_context[1], 0, 4);
   202     ta_status.last_triangle_bounds.x1 = -1;
   203     ta_status.accept_vertexes = TRUE;
   204     ta_status.clip.x1 = 0;
   205     ta_status.clip.y1 = 0;
   206     ta_status.clip_mode = TA_POLYCMD_CLIP_NONE;
   208     uint32_t size = MMIO_READ( PVR2, TA_TILESIZE );
   209     ta_status.width = (size & 0xFFFF) + 1;
   210     ta_status.height = (size >> 16) + 1;
   211     ta_status.clip.x2 = ta_status.width-1;
   212     ta_status.clip.y2 = ta_status.height-1;
   213     uint32_t control = MMIO_READ( PVR2, TA_TILECFG );
   214     ta_status.tilelist_dir = (control >> 20) & 0x01;
   215     ta_status.tilelist_size = tilematrix_sizes[ (control & 0x03) ];
   216     MMIO_WRITE( PVR2, TA_POLYPOS, MMIO_READ( PVR2, TA_POLYBASE ) );
   217     uint32_t plistpos = MMIO_READ( PVR2, TA_LISTBASE ) >> 2;
   218     if( ta_status.tilelist_dir == TA_GROW_DOWN ) {
   219 	plistpos -= ta_status.tilelist_size;
   220     }
   221     MMIO_WRITE( PVR2, TA_LISTPOS, plistpos );
   222     ta_status.tilelist_start = plistpos;
   223     ta_status.polybuf_start = MMIO_READ( PVR2, TA_POLYBASE ) & 0x00F00000;
   224 }
   226 static uint32_t parse_float_colour( float a, float r, float g, float b ) {
   227     int ai,ri,gi,bi;
   229     if( TA_IS_INF(a) ) {
   230 	ai = 255;
   231     } else {
   232 	ai = 256 * CLAMP(a,0.0,1.0) - 1;
   233 	if( ai < 0 ) ai = 0;
   234     }
   235     if( TA_IS_INF(r) ) {
   236 	ri = 255;
   237     } else {
   238 	ri = 256 * CLAMP(r,0.0,1.0) - 1;
   239 	if( ri < 0 ) ri = 0;
   240     }
   241     if( TA_IS_INF(g) ) {
   242 	gi = 255;
   243     } else {
   244 	gi = 256 * CLAMP(g,0.0,1.0) - 1;
   245 	if( gi < 0 ) gi = 0;
   246     }
   247     if( TA_IS_INF(b) ) {
   248 	bi = 255;
   249     } else {
   250 	bi = 256 * CLAMP(b,0.0,1.0) - 1;
   251 	if( bi < 0 ) bi = 0;
   252     }
   253     return (ai << 24) | (ri << 16) | (gi << 8) | bi;
   254 }
   256 static uint32_t parse_intensity_colour( uint32_t base, float intensity )
   257 {
   258     unsigned int i = (unsigned int)(256 * CLAMP(intensity, 0.0,1.0));
   260     return
   261 	(((((base & 0xFF) * i) & 0xFF00) |
   262 	  (((base & 0xFF00) * i) & 0xFF0000) |
   263 	  (((base & 0xFF0000) * i) & 0xFF000000)) >> 8) |
   264 	base & 0xFF000000;
   265 }
   267 /**
   268  * Initialize the specified TA list.
   269  */
   270 static void ta_init_list( unsigned int listtype ) {
   271     int config = MMIO_READ( PVR2, TA_TILECFG );
   272     int tile_matrix = MMIO_READ( PVR2, TA_TILEBASE );
   273     int list_end = MMIO_READ( PVR2, TA_LISTEND );
   275     ta_status.current_tile_matrix = tile_matrix;
   277     /* If the list grows down, the end must be < tile matrix start. 
   278      * If it grows up, the end must be > tile matrix start.
   279      * Don't ask me why, it just does...
   280      */
   281     if( ((ta_status.tilelist_dir == TA_GROW_DOWN && list_end <= tile_matrix) ||
   282 	 (ta_status.tilelist_dir == TA_GROW_UP && list_end >= tile_matrix )) &&
   283 	listtype <= TA_LIST_PUNCH_OUT ) {
   284 	int i;
   285 	uint32_t *p;
   286 	for( i=0; i < listtype; i++ ) {
   287 	    int size = tilematrix_sizes[(config & 0x03)] << 2;
   288 	    ta_status.current_tile_matrix += ta_status.width * ta_status.height * size;
   289 	    config >>= 4;
   290 	}
   291 	ta_status.current_tile_size = tilematrix_sizes[(config & 0x03)];
   293 	/* Initialize each tile to 0xF0000000 */
   294 	if( ta_status.current_tile_size != 0 ) {
   295 	    p = (uint32_t *)(video_base + ta_status.current_tile_matrix);
   296 	    for( i=0; i< ta_status.width * ta_status.height; i++ ) {
   297 		*p = 0xF0000000;
   298 		p += ta_status.current_tile_size;
   299 	    }
   300 	}
   301     } else {
   302 	ta_status.current_tile_size = 0;
   303     }
   305     if( tile_matrix == list_end ) {
   306 	ta_status.current_tile_size = 0;
   307     }
   309     ta_status.state = STATE_IN_LIST;
   310     ta_status.current_list_type = listtype;
   311     ta_status.last_triangle_bounds.x1 = -1;
   312 }
   314 static int list_events[5] = {EVENT_PVR_OPAQUE_DONE, EVENT_PVR_OPAQUEMOD_DONE, 
   315 			     EVENT_PVR_TRANS_DONE, EVENT_PVR_TRANSMOD_DONE,
   316 			     EVENT_PVR_PUNCHOUT_DONE };
   318 static void ta_end_list() {
   319     if( ta_status.current_list_type != TA_LIST_NONE ) {
   320 	asic_event( list_events[ta_status.current_list_type] );
   321     }
   322     ta_status.current_list_type = TA_LIST_NONE;
   323     ta_status.current_vertex_type = TA_VERTEX_LISTLESS;
   324     ta_status.poly_vertex_size = 0;
   325     memset(&ta_status.poly_context[1], 0, 4);
   326     ta_status.state = STATE_IDLE;
   327 }
   329 static void ta_bad_input_error() {
   330     asic_event( EVENT_PVR_BAD_INPUT );
   331 }
   333 /**
   334  * Write data out to the polygon buffer.
   335  * If the end-of-buffer is reached, asserts EVENT_PVR_PRIM_ALLOC_FAIL
   336  * @param data to be written
   337  * @param length Number of 32-bit words to write.
   338  * @return number of words actually written
   339  */
   340 static int ta_write_polygon_buffer( uint32_t *data, int length )
   341 {
   342     int rv;
   343     int posn = MMIO_READ( PVR2, TA_POLYPOS );
   344     int end = MMIO_READ( PVR2, TA_POLYEND );
   345     uint32_t *target = (uint32_t *)(video_base + posn);
   346     for( rv=0; rv < length; rv++ ) {
   347 	if( posn == end ) {
   348 	    asic_event( EVENT_PVR_PRIM_ALLOC_FAIL );
   349 	    //	    ta_status.state = STATE_ERROR;
   350 	    break;
   351 	}
   352 	if( posn < PVR2_RAM_SIZE ) {
   353 	    *target++ = *data++;
   354 	}
   355 	posn += 4;
   356     }
   358     MMIO_WRITE( PVR2, TA_POLYPOS, posn );
   359     return rv;
   360 }
   362 #define TA_NO_ALLOC 0xFFFFFFFF
   364 /**
   365  * Allocate a new tile list block from the grow space and update the
   366  * word at reference to be a link to the new block.
   367  */
   368 static uint32_t ta_alloc_tilelist( uint32_t reference ) {
   369     uint32_t posn = MMIO_READ( PVR2, TA_LISTPOS );
   370     uint32_t limit = MMIO_READ( PVR2, TA_LISTEND ) >> 2;
   371     uint32_t newposn;
   372     uint32_t result;
   373     if( ta_status.tilelist_dir == TA_GROW_DOWN ) {
   374 	newposn = posn - ta_status.tilelist_size;
   375 	if( posn == limit ) {
   376 	    PVRRAM(posn<<2) = 0xF0000000;
   377 	    PVRRAM(reference) = 0xE0000000 | (posn<<2);
   378 	    return TA_NO_ALLOC;
   379 	} else if( posn < limit ) {
   380 	    PVRRAM(reference) = 0xE0000000 | (posn<<2);
   381 	    return TA_NO_ALLOC;
   382 	} else if( newposn <= limit ) {
   383 	} else if( newposn <= (limit + ta_status.tilelist_size) ) {
   384 	    asic_event( EVENT_PVR_MATRIX_ALLOC_FAIL );
   385 	    MMIO_WRITE( PVR2, TA_LISTPOS, newposn );
   386 	} else {
   387 	    MMIO_WRITE( PVR2, TA_LISTPOS, newposn );
   388 	}
   389 	PVRRAM(reference) = 0xE0000000 | (posn<<2);
   390 	return posn << 2;
   391     } else {
   392 	newposn = posn + ta_status.tilelist_size;
   393 	if( posn == limit ) {
   394 	    PVRRAM(posn<<2) = 0xF0000000;
   395 	    PVRRAM(reference) = 0xE0000000 | (posn<<2);
   396 	    return TA_NO_ALLOC;
   397 	} else if ( posn > limit ) {
   398 	    PVRRAM(reference) = 0xE0000000 | (posn<<2);
   399 	    return TA_NO_ALLOC;
   400 	} else if( newposn >= limit ) {
   401 	} else if( newposn >= (limit - ta_status.tilelist_size) ) {
   402 	    asic_event( EVENT_PVR_MATRIX_ALLOC_FAIL );
   403 	    MMIO_WRITE( PVR2, TA_LISTPOS, newposn );
   404 	} else {
   405 	    MMIO_WRITE( PVR2, TA_LISTPOS, newposn );
   406 	}	    
   407 	PVRRAM(reference) = 0xE0000000 | (posn<<2);
   408 	return posn << 2;
   409     }
   410 }
   412 /**
   413  * Write a tile entry out to the matrix.
   414  */
   415 static int ta_write_tile_entry( int x, int y, uint32_t tile_entry ) {
   416     uint32_t tile = TILESLOT(x,y);
   417     uint32_t tilestart = tile;
   418     uint32_t value;
   419     uint32_t lasttri = 0;
   420     int i,l;
   422     if( ta_status.clip_mode == TA_POLYCMD_CLIP_OUTSIDE &&
   423 	x >= ta_status.clip.x1 && x <= ta_status.clip.x2 &&
   424 	y >= ta_status.clip.y1 && y <= ta_status.clip.y2 ) {
   425 	/* Tile clipped out */
   426 	return 0;
   427     }
   429     if( (tile_entry & 0x80000000) && 
   430 	ta_status.last_triangle_bounds.x1 != -1 &&
   431 	ta_status.last_triangle_bounds.x1 <= x &&
   432 	ta_status.last_triangle_bounds.x2 >= x &&
   433 	ta_status.last_triangle_bounds.y1 <= y &&
   434 	ta_status.last_triangle_bounds.y2 >= y ) {
   435 	/* potential for triangle stacking */
   436 	lasttri = tile_entry & 0xE1E00000;
   437     }
   440     if( PVRRAM(tile) == 0xF0000000 ) {
   441 	PVRRAM(tile) = tile_entry;
   442 	PVRRAM(tile+4) = 0xF0000000;
   443 	return;
   444     }
   446     while(1) {
   447 	value = PVRRAM(tile);
   448 	for( i=1; i<ta_status.current_tile_size; i++ ) {
   449 	    tile += 4;
   450 	    uint32_t nextval = PVRRAM(tile);
   451 	    if( nextval == 0xF0000000 ) {
   452 		if( lasttri != 0 && lasttri == (value&0xE1E00000) ) {
   453 		    int count = (value & 0x1E000000) + 0x02000000;
   454 		    if( count < 0x20000000 ) {
   455 			PVRRAM(tile-4) = (value & 0xE1FFFFFF) | count;
   456 			return;
   457 		    }
   458 		}
   459 		if( i < ta_status.current_tile_size-1 ) {
   460 		    PVRRAM(tile) = tile_entry;
   461 		    PVRRAM(tile+4) = 0xF0000000;
   462 		    return;
   463 		}
   464 	    }
   465 	    value = nextval;
   466 	}
   468 	if( value == 0xF0000000 ) {
   469 	    tile = ta_alloc_tilelist(tile);
   470 	    if( tile != TA_NO_ALLOC ) {
   471 		PVRRAM(tile) = tile_entry;
   472 		PVRRAM(tile+4) = 0xF0000000;
   473 	    }
   474 	    return;
   475 	} else if( (value & 0xFF000000) == 0xE0000000 ) {
   476 	    value &= 0x00FFFFFF;
   477 	    if( value == tilestart )
   478 		return 0; /* Loop */
   479 	    tilestart = tile = value;
   480 	} else {
   481 	    /* This should never happen */
   482 	    return 0;
   483 	}
   484     }
   485 }
   487 /**
   488  * Write a completed polygon out to the memory buffers 
   489  * OPTIMIZEME: This is not terribly efficient at the moment.
   490  */
   491 static void ta_commit_polygon( ) {
   492     int i, x, y;
   493     int tx[ta_status.vertex_count], ty[ta_status.vertex_count];
   494     struct tile_bounds triangle_bound[ta_status.vertex_count - 2];
   495     struct tile_bounds polygon_bound;
   496     uint32_t poly_context[5];
   498     memcpy( poly_context, ta_status.poly_context, ta_status.poly_context_size * 4 );
   500     /* Compute the tile coordinates for each vertex (need to be careful with
   501      * clamping here)
   502      */
   503     for( i=0; i<ta_status.vertex_count; i++ ) {
   504 	if( ta_status.poly_vertex[i].x < 0.0 || TA_IS_NINF(ta_status.poly_vertex[i].x) ) {
   505 	    tx[i] = -1;
   506 	} else if( ta_status.poly_vertex[i].x > (float)INT_MAX || TA_IS_INF(ta_status.poly_vertex[i].x) ) {
   507 	    tx[i] = INT_MAX/32;
   508 	} else {
   509 	    tx[i] = (int)(ta_status.poly_vertex[i].x / 32.0);
   510 	}
   511 	if( ta_status.poly_vertex[i].y < 0.0 || TA_IS_NINF(ta_status.poly_vertex[i].y)) {
   512 	    ty[i] = -1;
   513 	} else if( ta_status.poly_vertex[i].y > (float)INT_MAX || TA_IS_INF(ta_status.poly_vertex[i].y) ) {
   514 	    ty[i] = INT_MAX/32;
   515 	} else {
   516 	    ty[i] = (int)(ta_status.poly_vertex[i].y / 32.0);
   517 	}
   519     }
   521     /* Compute bounding box for each triangle individually, as well
   522      * as the overall polygon.
   523      */
   525     for( i=0; i<ta_status.vertex_count-2; i++ ) {
   526 	triangle_bound[i].x1 = MIN3(tx[i],tx[i+1],tx[i+2]);
   527 	triangle_bound[i].x2 = MAX3(tx[i],tx[i+1],tx[i+2]);
   528 	triangle_bound[i].y1 = MIN3(ty[i],ty[i+1],ty[i+2]);
   529 	triangle_bound[i].y2 = MAX3(ty[i],ty[i+1],ty[i+2]);
   530 	if( i == 0 ) {
   531 	    polygon_bound.x1 = triangle_bound[0].x1;
   532 	    polygon_bound.y1 = triangle_bound[0].y1;
   533 	    polygon_bound.x2 = triangle_bound[0].x2;
   534 	    polygon_bound.y2 = triangle_bound[0].y2;
   535 	} else {
   536 	    polygon_bound.x1 = MIN(polygon_bound.x1, triangle_bound[i].x1);
   537 	    polygon_bound.x2 = MAX(polygon_bound.x2, triangle_bound[i].x2);
   538 	    polygon_bound.y1 = MIN(polygon_bound.y1, triangle_bound[i].y1);
   539 	    polygon_bound.y2 = MAX(polygon_bound.y2, triangle_bound[i].y2);
   540 	}
   541     }
   543     /* Clamp the polygon bounds to the frustum */
   544     if( polygon_bound.x1 < 0 ) polygon_bound.x1 = 0;
   545     if( polygon_bound.x2 >= ta_status.width ) polygon_bound.x2 = ta_status.width-1;
   546     if( polygon_bound.y1 < 0 ) polygon_bound.y1 = 0;
   547     if( polygon_bound.y2 >= ta_status.width ) polygon_bound.y2 = ta_status.height-1;
   549     /* Set the "single tile" flag if it's entirely contained in 1 tile */
   550     if( polygon_bound.x1 == polygon_bound.x2 &&
   551 	polygon_bound.y1 == polygon_bound.y2 ) {
   552 	poly_context[0] |= 0x00200000;
   553     }
   555     /* If the polygon is entirely clipped, don't even write the polygon data */
   556     switch( ta_status.clip_mode ) {
   557     case TA_POLYCMD_CLIP_NONE:
   558 	if( polygon_bound.x2 < 0 || polygon_bound.x1 >= ta_status.width ||
   559 	    polygon_bound.y2 < 0 || polygon_bound.y1 >= ta_status.height ) {
   560 	    return;
   561 	}
   562 	break;
   563     case TA_POLYCMD_CLIP_INSIDE:
   564 	if( polygon_bound.x2 < ta_status.clip.x1 || polygon_bound.x1 > ta_status.clip.x2 ||
   565 	    polygon_bound.y2 < ta_status.clip.y1 || polygon_bound.y1 > ta_status.clip.y1 ) {
   566 	    return;
   567 	} else {
   568 	    /* Clamp to clip bounds */
   569 	    if( polygon_bound.x1 < ta_status.clip.x1 ) polygon_bound.x1 = ta_status.clip.x1;
   570 	    if( polygon_bound.x2 > ta_status.clip.x2 ) polygon_bound.x2 = ta_status.clip.x2;
   571 	    if( polygon_bound.y1 < ta_status.clip.y1 ) polygon_bound.y1 = ta_status.clip.y1;
   572 	    if( polygon_bound.y2 > ta_status.clip.y2 ) polygon_bound.y2 = ta_status.clip.y2;
   573 	}
   574 	break;
   575     case TA_POLYCMD_CLIP_OUTSIDE:
   576 	if( polygon_bound.x1 >= ta_status.clip.x1 && polygon_bound.x2 <= ta_status.clip.x2 &&
   577 	    polygon_bound.y1 >= ta_status.clip.y1 && polygon_bound.y2 <= ta_status.clip.y2 ) {
   578 	    return;
   579 	}
   580 	break;
   581     }
   583     /* Ok, we're good to go - write out the polygon first */
   584     uint32_t tile_entry = (MMIO_READ( PVR2, TA_POLYPOS ) - ta_status.polybuf_start) >> 2 | 
   585 	ta_status.poly_pointer;
   587     int status = ta_write_polygon_buffer( poly_context, ta_status.poly_context_size );
   588     if( status == 0 ) {
   589 	/* No memory available - abort */
   590 	return;
   591     } else {
   592 	for( i=0; i<ta_status.vertex_count && status != 0; i++ ) {
   593 	    status = ta_write_polygon_buffer( (uint32_t *)(&ta_status.poly_vertex[i]), 3 + ta_status.poly_vertex_size );
   594 	}
   595     }
   597     if( ta_status.current_tile_size == 0 ) {
   598 	/* No memory for tile entry, so don't write anything */
   599 	return;
   600     }
   602     /* And now the tile entries. Triangles are different from everything else */
   603     if( ta_status.vertex_count == 3 ) {
   604 	tile_entry |= 0x80000000;
   605 	for( y=polygon_bound.y1; y<=polygon_bound.y2; y++ ) {
   606 	    for( x=polygon_bound.x1; x<=polygon_bound.x2; x++ ) {
   607 		ta_write_tile_entry( x,y,tile_entry );
   608 	    }
   609 	}
   610 	ta_status.last_triangle_bounds.x1 = polygon_bound.x1;
   611 	ta_status.last_triangle_bounds.y1 = polygon_bound.y1;
   612 	ta_status.last_triangle_bounds.x2 = polygon_bound.x2;
   613 	ta_status.last_triangle_bounds.y2 = polygon_bound.y2;
   614     } else if( ta_status.current_vertex_type == TA_VERTEX_SPRITE ||
   615 	       ta_status.current_vertex_type == TA_VERTEX_TEX_SPRITE ) {
   616 	tile_entry |= 0xA0000000;
   617 	for( y=polygon_bound.y1; y<=polygon_bound.y2; y++ ) {
   618 	    for( x=polygon_bound.x1; x<=polygon_bound.x2; x++ ) {
   619 		ta_write_tile_entry( x,y,tile_entry );
   620 	    }
   621 	}
   622 	ta_status.last_triangle_bounds.x1 = polygon_bound.x1;
   623 	ta_status.last_triangle_bounds.y1 = polygon_bound.y1;
   624 	ta_status.last_triangle_bounds.x2 = polygon_bound.x2;
   625 	ta_status.last_triangle_bounds.y2 = polygon_bound.y2;
   626     } else {
   627 	for( y=polygon_bound.y1; y<=polygon_bound.y2; y++ ) {
   628 	    for( x=polygon_bound.x1; x<=polygon_bound.x2; x++ ) {
   629 		uint32_t entry = tile_entry;
   630 		for( i=0; i<ta_status.vertex_count-2; i++ ) {
   631 		    if( triangle_bound[i].x1 <= x && triangle_bound[i].x2 >= x &&
   632 			triangle_bound[i].y1 <= y && triangle_bound[i].y2 >= y ) {
   633 			entry |= (0x40000000>>i);
   634 		    }
   635 		}
   636 		ta_write_tile_entry( x, y, entry );
   637 	    }
   638 	}
   639 	ta_status.last_triangle_bounds.x1 = -1;
   640     }
   641 }
   643 /**
   644  * Variant of ta_split_polygon called when vertex_count == max_vertex, but 
   645  * the client hasn't sent the LAST VERTEX flag. Commit the poly as normal
   646  * first, then start a new poly with the first 2 vertexes taken from the 
   647  * current one.
   648  */
   649 static void ta_split_polygon() {
   650     ta_commit_polygon();
   651     if( TA_IS_NORMAL_POLY() ) { 
   652 	/* This only applies to ordinary polys - Sprites + modifier lists are
   653 	 * handled differently
   654 	 */
   655 	if( ta_status.vertex_count == 3 ) {
   656 	    /* Triangles use an odd/even scheme */
   657 	    if( ta_status.poly_parity == 0 ) {
   658 		memcpy( &ta_status.poly_vertex[0], &ta_status.poly_vertex[2], 
   659 			sizeof(struct pvr2_ta_vertex) );
   660 		ta_status.poly_parity = 1;
   661 	    } else {
   662 		memcpy( &ta_status.poly_vertex[1], &ta_status.poly_vertex[2],
   663 			sizeof(struct pvr2_ta_vertex) );
   664 		ta_status.poly_parity = 0;
   665 	    }
   666 	} else {
   667 	    /* Everything else just uses the last 2 vertexes in order */
   668 	    memcpy( &ta_status.poly_vertex[0], &ta_status.poly_vertex[ta_status.vertex_count-2], 
   669 		    sizeof(struct pvr2_ta_vertex)*2 );
   670 	    ta_status.poly_parity = 0;
   671 	}
   672 	ta_status.vertex_count = 2;
   673     } else {
   674 	ta_status.vertex_count = 0;
   675     }
   676 }
   678 /**
   679  * Parse the polygon context block and setup the internal state to receive
   680  * vertexes.
   681  * @param data 32 bytes of parameter data.
   682  */
   683 static void ta_parse_polygon_context( union ta_data *data ) {
   684     int colourfmt = TA_POLYCMD_COLOURFMT(data[0].i);
   685     if( TA_POLYCMD_USELENGTH(data[0].i) ) {
   686 	ta_status.max_vertex = TA_POLYCMD_LENGTH(data[0].i);
   687     }
   688     ta_status.clip_mode = TA_POLYCMD_CLIP(data[0].i);
   689     if( ta_status.clip_mode == 1 ) { /* Reserved - treat as CLIP_INSIDE */
   690 	ta_status.clip_mode = TA_POLYCMD_CLIP_INSIDE;
   691     }
   692     ta_status.vertex_count = 0;
   693     ta_status.poly_context[0] = 
   694 	(data[1].i & 0xFC1FFFFF) | ((data[0].i & 0x0B) << 22);
   695     ta_status.poly_context[1] = data[2].i;
   696     ta_status.poly_context[3] = data[4].i;
   697     ta_status.poly_parity = 0;
   698     if( data[0].i & TA_POLYCMD_TEXTURED ) {
   699 	ta_status.current_vertex_type = data[0].i & 0x0D;
   700 	ta_status.poly_context[2] = data[3].i;
   701 	ta_status.poly_context[4] = data[5].i;
   702 	if( data[0].i & TA_POLYCMD_SPECULAR ) {
   703 	    ta_status.poly_context[0] |= 0x01000000;
   704 	    ta_status.poly_vertex_size = 4;
   705 	} else {
   706 	    ta_status.poly_vertex_size = 3;
   707 	}
   708 	if( data[0].i & TA_POLYCMD_UV16 ) {
   709 	    ta_status.poly_vertex_size--;
   710 	}
   711     } else {
   712 	ta_status.current_vertex_type = 0;
   713 	ta_status.poly_vertex_size = 1;
   714 	ta_status.poly_context[2] = 0;
   715 	ta_status.poly_context[4] = 0;
   716     }
   718     ta_status.poly_pointer = (ta_status.poly_vertex_size << 21);
   719     ta_status.poly_context_size = 3;
   720     if( data[0].i & TA_POLYCMD_MODIFIED ) {
   721 	ta_status.poly_pointer |= 0x01000000;
   722 	if( data[0].i & TA_POLYCMD_FULLMOD ) {
   723 	    ta_status.poly_context_size = 5;
   724 	    ta_status.poly_vertex_size <<= 1;
   725 	    ta_status.current_vertex_type |= 0x40;
   726 	    /* Modified/float not supported - behaves as per last intensity */
   727 	    if( colourfmt == TA_POLYCMD_COLOURFMT_FLOAT ) {
   728 		colourfmt = TA_POLYCMD_COLOURFMT_LASTINT;
   729 	    }
   730 	}
   731     }
   733     if( colourfmt == TA_POLYCMD_COLOURFMT_INTENSITY ) {
   734 	if( TA_POLYCMD_IS_FULLMOD(data[0].i) ||
   735 	    TA_POLYCMD_IS_SPECULAR(data[0].i) ) {
   736 	    ta_status.state = STATE_EXPECT_POLY_BLOCK2;
   737 	} else {
   738 	    ta_status.intensity1 = 
   739 		parse_float_colour( data[4].f, data[5].f, data[6].f, data[7].f );
   740 	}
   741     } else if( colourfmt == TA_POLYCMD_COLOURFMT_LASTINT ) {
   742 	colourfmt = TA_POLYCMD_COLOURFMT_INTENSITY;
   743     }
   745     ta_status.current_vertex_type |= colourfmt;
   746 }
   748 /**
   749  * Parse the modifier volume context block and setup the internal state to 
   750  * receive modifier vertexes.
   751  * @param data 32 bytes of parameter data.
   752  */
   753 static void ta_parse_modifier_context( union ta_data *data ) {
   754     ta_status.current_vertex_type = TA_VERTEX_MOD_VOLUME;
   755     ta_status.poly_vertex_size = 0;
   756     ta_status.clip_mode = TA_POLYCMD_CLIP(data[0].i);
   757     if( ta_status.clip_mode == 1 ) { /* Reserved - treat as CLIP_INSIDE */
   758 	ta_status.clip_mode = TA_POLYCMD_CLIP_INSIDE;
   759     }
   760     ta_status.poly_context_size = 3;
   761     ta_status.poly_context[0] = (data[1].i & 0xFC1FFFFF) |
   762 	((data[0].i & 0x0B)<<22);
   763     if( TA_POLYCMD_IS_SPECULAR(data[0].i) ) {
   764 	ta_status.poly_context[0] |= 0x01000000;
   765     }
   766     ta_status.poly_context[1] = 0;
   767     ta_status.poly_context[2] = 0;
   768     ta_status.vertex_count = 0;
   769     ta_status.max_vertex = 3;
   770     ta_status.poly_pointer = 0;
   771 }
   773 /**
   774  * Parse the sprite context block and setup the internal state to receive
   775  * vertexes.
   776  * @param data 32 bytes of parameter data.
   777  */
   778 static void ta_parse_sprite_context( union ta_data *data ) {
   779     ta_status.poly_context_size = 3;
   780     ta_status.poly_context[0] = (data[1].i & 0xFC1FFFFF) |
   781 	((data[0].i & 0x0B)<<22) | 0x00400000;
   782     if( TA_POLYCMD_IS_SPECULAR(data[0].i) ) {
   783 	ta_status.poly_context[0] |= 0x01000000;
   784     }
   785     ta_status.poly_context[1] = data[2].i;
   786     ta_status.poly_context[2] = data[3].i;
   787     if( data[0].i & TA_POLYCMD_TEXTURED ) {
   788 	ta_status.poly_vertex_size = 2;
   789 	ta_status.poly_vertex[2].detail[1] = data[4].i;
   790 	ta_status.current_vertex_type = TA_VERTEX_TEX_SPRITE;
   791     } else {
   792 	ta_status.poly_vertex_size = 1;
   793 	ta_status.poly_vertex[2].detail[0] = data[4].i;
   794 	ta_status.current_vertex_type = TA_VERTEX_SPRITE;
   795     }
   796     ta_status.vertex_count = 0;
   797     ta_status.max_vertex = 4;
   798     ta_status.poly_pointer = (ta_status.poly_vertex_size << 21);
   799 }
   801 /**
   802  * Copy the last read vertex into all vertexes up to max_vertex. Used for
   803  * Aborted polygons under some circumstances.
   804  */
   805 static void ta_fill_vertexes( ) {
   806     int i;
   807     for( i=ta_status.vertex_count; i<ta_status.max_vertex; i++ ) {
   808 	memcpy( &ta_status.poly_vertex[i], &ta_status.poly_vertex[ta_status.vertex_count-1],
   809 		sizeof( struct pvr2_ta_vertex ) );
   810     }
   811 }
   813 static void ta_parse_vertex( union ta_data *data ) {
   814     struct pvr2_ta_vertex *vertex = &ta_status.poly_vertex[ta_status.vertex_count];
   815     vertex->x = data[1].f;
   816     vertex->y = data[2].f;
   817     vertex->z = data[3].f;
   819     switch( ta_status.current_vertex_type ) {
   820     case TA_VERTEX_PACKED:
   821 	vertex->detail[0] = data[6].i;
   822 	break;
   823     case TA_VERTEX_FLOAT:
   824 	vertex->detail[0] = parse_float_colour( data[4].f, data[5].f, data[6].f, data[7].f );
   825 	break;
   826     case TA_VERTEX_INTENSITY:
   827 	vertex->detail[0] = parse_intensity_colour( ta_status.intensity1, data[6].f );
   828 	break;
   830     case TA_VERTEX_TEX_SPEC_PACKED:
   831 	vertex->detail[3] = data[7].i; /* ARGB */
   832 	/* Fallthrough */
   833     case TA_VERTEX_TEX_PACKED:
   834 	vertex->detail[0] = data[4].i; /* U */
   835 	vertex->detail[1] = data[5].i; /* V */
   836 	vertex->detail[2] = data[6].i; /* ARGB */
   837 	break;
   838     case TA_VERTEX_TEX_UV16_SPEC_PACKED:
   839 	vertex->detail[2] = data[7].i; /* ARGB */
   840 	/* Fallthrough */
   841     case TA_VERTEX_TEX_UV16_PACKED:
   842 	vertex->detail[0] = data[4].i; /* UV */
   843 	vertex->detail[1] = data[6].i; /* ARGB */
   844 	break;
   846     case TA_VERTEX_TEX_FLOAT:
   847     case TA_VERTEX_TEX_SPEC_FLOAT:
   848 	vertex->detail[0] = data[4].i; /* U */
   849 	vertex->detail[1] = data[5].i; /* UV */
   850 	ta_status.state = STATE_EXPECT_VERTEX_BLOCK2;
   851 	break;
   852     case TA_VERTEX_TEX_UV16_FLOAT:
   853     case TA_VERTEX_TEX_UV16_SPEC_FLOAT:
   854 	vertex->detail[0] = data[4].i; /* UV */
   855 	ta_status.state = STATE_EXPECT_VERTEX_BLOCK2;
   856 	break;
   858     case TA_VERTEX_TEX_SPEC_INTENSITY:
   859 	vertex->detail[3] = parse_intensity_colour( ta_status.intensity2, data[7].f );
   860 	/* Fallthrough */
   861     case TA_VERTEX_TEX_INTENSITY:
   862 	vertex->detail[0] = data[4].i; /* U */
   863 	vertex->detail[1] = data[5].i; /* V */
   864 	vertex->detail[2] = parse_intensity_colour( ta_status.intensity1, data[6].f );
   865 	break;
   866     case TA_VERTEX_TEX_UV16_SPEC_INTENSITY:
   867 	vertex->detail[2] = parse_intensity_colour( ta_status.intensity2, data[7].f );
   868 	/* Fallthrough */
   869     case TA_VERTEX_TEX_UV16_INTENSITY:
   870 	vertex->detail[0] = data[4].i; /* UV */
   871 	vertex->detail[1] = parse_intensity_colour( ta_status.intensity1, data[6].f );
   872 	break;
   874     case TA_VERTEX_PACKED_MOD:
   875 	vertex->detail[0] = data[4].i; /* ARGB */
   876 	vertex->detail[1] = data[5].i; /* ARGB */
   877 	break;
   878     case TA_VERTEX_INTENSITY_MOD:
   879 	vertex->detail[0] = parse_intensity_colour( ta_status.intensity1, data[4].f );
   880 	vertex->detail[1] = parse_intensity_colour( ta_status.intensity2, data[5].f );
   881 	break;
   883     case TA_VERTEX_TEX_SPEC_PACKED_MOD:
   884 	vertex->detail[3] = data[7].i; /* ARGB0 */
   885 	/* Fallthrough */
   886     case TA_VERTEX_TEX_PACKED_MOD:
   887 	vertex->detail[0] = data[4].i; /* U0 */
   888 	vertex->detail[1] = data[5].i; /* V0 */
   889 	vertex->detail[2] = data[6].i; /* ARGB0 */
   890 	ta_status.state = STATE_EXPECT_VERTEX_BLOCK2;
   891 	break;
   892     case TA_VERTEX_TEX_UV16_SPEC_PACKED_MOD:
   893 	vertex->detail[2] = data[7].i; /* ARGB0 */
   894 	/* Fallthrough */
   895     case TA_VERTEX_TEX_UV16_PACKED_MOD:
   896 	vertex->detail[0] = data[4].i; /* UV0 */
   897 	vertex->detail[1] = data[6].i; /* ARGB0 */
   898 	ta_status.state = STATE_EXPECT_VERTEX_BLOCK2;
   899 	break;
   901     case TA_VERTEX_TEX_SPEC_INTENSITY_MOD:
   902 	vertex->detail[3] = parse_intensity_colour( ta_status.intensity1, data[7].f );
   903 	/* Fallthrough */
   904     case TA_VERTEX_TEX_INTENSITY_MOD:
   905 	vertex->detail[0] = data[4].i; /* U0 */
   906 	vertex->detail[1] = data[5].i; /* V0 */
   907 	vertex->detail[2] = parse_intensity_colour( ta_status.intensity1, data[6].f );
   908 	ta_status.state = STATE_EXPECT_VERTEX_BLOCK2;
   909 	break;
   910     case TA_VERTEX_TEX_UV16_SPEC_INTENSITY_MOD:
   911 	vertex->detail[2] = parse_intensity_colour( ta_status.intensity1, data[7].f );
   912 	/* Fallthrough */
   913     case TA_VERTEX_TEX_UV16_INTENSITY_MOD:
   914 	vertex->detail[0] = data[4].i; /* UV0 */
   915 	vertex->detail[1] = parse_intensity_colour( ta_status.intensity1, data[6].f );
   916 	ta_status.state = STATE_EXPECT_VERTEX_BLOCK2;
   917 	break;
   919     case TA_VERTEX_SPRITE:
   920     case TA_VERTEX_TEX_SPRITE:
   921     case TA_VERTEX_MOD_VOLUME:
   922     case TA_VERTEX_LISTLESS:
   923 	vertex++;
   924 	vertex->x = data[4].f;
   925 	vertex->y = data[5].f;
   926 	vertex->z = data[6].f;
   927 	vertex++;
   928 	vertex->x = data[7].f;
   929 	ta_status.vertex_count += 2;
   930 	ta_status.state = STATE_EXPECT_VERTEX_BLOCK2;
   931 	break;
   932     }
   933     ta_status.vertex_count++;
   934 }
   936 static void ta_parse_vertex_block2( union ta_data *data ) {
   937     struct pvr2_ta_vertex *vertex = &ta_status.poly_vertex[ta_status.vertex_count-1];
   939     switch( ta_status.current_vertex_type ) {
   940     case TA_VERTEX_TEX_SPEC_FLOAT:
   941 	vertex->detail[3] = parse_float_colour( data[4].f, data[5].f, data[6].f, data[7].f );
   942 	/* Fallthrough */
   943     case TA_VERTEX_TEX_FLOAT:
   944 	vertex->detail[2] = parse_float_colour( data[0].f, data[1].f, data[2].f, data[3].f );
   945 	break;
   946     case TA_VERTEX_TEX_UV16_SPEC_FLOAT:
   947 	vertex->detail[2] = parse_float_colour( data[4].f, data[5].f, data[6].f, data[7].f );
   948 	/* Fallthrough */
   949     case TA_VERTEX_TEX_UV16_FLOAT:
   950 	vertex->detail[1] = parse_float_colour( data[0].f, data[1].f, data[2].f, data[3].f );
   951 	break;
   952     case TA_VERTEX_TEX_PACKED_MOD:
   953 	vertex->detail[3] = data[0].i; /* U1 */
   954 	vertex->detail[4] = data[1].i; /* V1 */
   955 	vertex->detail[5] = data[2].i; /* ARGB1 */
   956 	break;
   957     case TA_VERTEX_TEX_SPEC_PACKED_MOD:
   958 	vertex->detail[4] = data[0].i; /* U1 */
   959 	vertex->detail[5] = data[1].i; /* V1 */
   960 	vertex->detail[6] = data[2].i; /* ARGB1 */
   961 	vertex->detail[7] = data[3].i; /* ARGB1 */
   962 	break;
   963     case TA_VERTEX_TEX_UV16_PACKED_MOD:
   964 	vertex->detail[2] = data[0].i; /* UV1 */
   965 	vertex->detail[3] = data[2].i; /* ARGB1 */
   966 	break;
   967     case TA_VERTEX_TEX_UV16_SPEC_PACKED_MOD:
   968 	vertex->detail[3] = data[0].i; /* UV1 */
   969 	vertex->detail[4] = data[2].i; /* ARGB1 */
   970 	vertex->detail[5] = data[3].i; /* ARGB1 */
   971 	break;
   973     case TA_VERTEX_TEX_INTENSITY_MOD:
   974 	vertex->detail[3] = data[0].i; /* U1 */
   975 	vertex->detail[4] = data[1].i; /* V1 */
   976 	vertex->detail[5] = parse_intensity_colour( ta_status.intensity2, data[2].f ); /* ARGB1 */
   977 	break;
   978     case TA_VERTEX_TEX_SPEC_INTENSITY_MOD:
   979 	vertex->detail[4] = data[0].i; /* U1 */
   980 	vertex->detail[5] = data[1].i; /* V1 */
   981 	vertex->detail[6] = parse_intensity_colour( ta_status.intensity2, data[2].f ); /* ARGB1 */
   982 	vertex->detail[7] = parse_intensity_colour( ta_status.intensity2, data[3].f ); /* ARGB1 */
   983 	break;
   984     case TA_VERTEX_TEX_UV16_INTENSITY_MOD:
   985 	vertex->detail[2] = data[0].i; /* UV1 */
   986 	vertex->detail[3] = parse_intensity_colour( ta_status.intensity2, data[2].f ); /* ARGB1 */
   987 	break;
   988     case TA_VERTEX_TEX_UV16_SPEC_INTENSITY_MOD:
   989 	vertex->detail[3] = data[0].i; /* UV1 */
   990 	vertex->detail[4] = parse_intensity_colour( ta_status.intensity2, data[2].f ); /* ARGB1 */
   991 	vertex->detail[5] = parse_intensity_colour( ta_status.intensity2, data[3].f ); /* ARGB1 */
   992 	break;
   994     case TA_VERTEX_SPRITE:
   995 	vertex->y = data[0].f;
   996 	vertex->z = data[1].f;
   997 	vertex++;
   998 	ta_status.vertex_count++;
   999 	vertex->x = data[2].f;
  1000 	vertex->y = data[3].f;
  1001 	vertex->z = 0;
  1002 	vertex->detail[0] = 0;
  1003 	ta_status.poly_vertex[0].detail[0] = 0;
  1004 	ta_status.poly_vertex[1].detail[0] = 0;
  1005 	break;
  1006     case TA_VERTEX_TEX_SPRITE:
  1007 	vertex->y = data[0].f;
  1008 	vertex->z = data[1].f;
  1009 	vertex++;
  1010 	ta_status.vertex_count++;
  1011 	vertex->x = data[2].f;
  1012 	vertex->y = data[3].f;
  1013 	vertex->z = 0;
  1014 	vertex->detail[0] = 0;
  1015 	vertex->detail[1] = 0;
  1016 	ta_status.poly_vertex[0].detail[0] = data[5].i;
  1017 	ta_status.poly_vertex[0].detail[1] = 0;
  1018 	ta_status.poly_vertex[1].detail[0] = data[6].i;
  1019 	ta_status.poly_vertex[1].detail[1] = 0;
  1020 	ta_status.poly_vertex[2].detail[0] = data[7].i;
  1021 	break;
  1022     case TA_VERTEX_MOD_VOLUME:
  1023     case TA_VERTEX_LISTLESS:
  1024 	vertex->y = data[0].f;
  1025 	vertex->z = data[1].f;
  1026 	break;
  1028     ta_status.state = STATE_IN_POLYGON;
  1031 /**
  1032  * Process 1 32-byte block of ta data
  1033  */
  1034 void pvr2_ta_process_block( char *input ) {
  1035     union ta_data *data = (union ta_data *)input;
  1037     switch( ta_status.state ) {
  1038     case STATE_ERROR:
  1039 	/* Fatal error raised - stop processing until reset */
  1040 	return;
  1042     case STATE_EXPECT_POLY_BLOCK2:
  1043 	/* This is always a pair of floating-point colours */
  1044 	ta_status.intensity1 = 
  1045 	    parse_float_colour( data[0].f, data[1].f, data[2].f, data[3].f );
  1046 	ta_status.intensity2 =
  1047 	    parse_float_colour( data[4].f, data[5].f, data[6].f, data[7].f );
  1048 	ta_status.state = STATE_IN_LIST;
  1049 	break;
  1051     case STATE_EXPECT_VERTEX_BLOCK2:
  1052 	ta_parse_vertex_block2( data );
  1053 	if( ta_status.vertex_count == ta_status.max_vertex ) {
  1054 	    ta_split_polygon();
  1056 	break;
  1058     case STATE_EXPECT_END_VERTEX_BLOCK2:
  1059 	ta_parse_vertex_block2( data );
  1060 	if( ta_status.vertex_count < 3 ) {
  1061 	    ta_bad_input_error();
  1062 	} else {
  1063 	    ta_commit_polygon();
  1065 	ta_status.vertex_count = 0;
  1066 	ta_status.poly_parity = 0;
  1067 	ta_status.state = STATE_IN_LIST;
  1068 	break;
  1069     case STATE_IN_LIST:
  1070     case STATE_IN_POLYGON:
  1071     case STATE_IDLE:
  1072 	switch( TA_CMD( data->i ) ) {
  1073 	case TA_CMD_END_LIST:
  1074 	    if( ta_status.state == STATE_IN_POLYGON ) {
  1075 		ta_bad_input_error();
  1076 		ta_end_list();
  1077 		ta_status.state = STATE_ERROR; /* Abort further processing */
  1078 	    } else {
  1079 		ta_end_list();
  1081 	    break;
  1082 	case TA_CMD_CLIP:
  1083 	    if( ta_status.state == STATE_IN_POLYGON ) {
  1084 		ta_bad_input_error();
  1085 		ta_status.accept_vertexes = FALSE;
  1086 		/* Enter stuffed up mode */
  1088 	    ta_status.clip.x1 = data[4].i & 0x3F;
  1089 	    ta_status.clip.y1 = data[5].i & 0x0F;
  1090 	    ta_status.clip.x2 = data[6].i & 0x3F;
  1091 	    ta_status.clip.y2 = data[7].i & 0x0F;
  1092 	    if( ta_status.clip.x2 >= ta_status.width )
  1093 		ta_status.clip.x2 = ta_status.width - 1;
  1094 	    if( ta_status.clip.y2 >= ta_status.height )
  1095 		ta_status.clip.y2 = ta_status.height - 1;
  1096 	    break;
  1097 	case TA_CMD_POLYGON_CONTEXT:
  1098 	    if( ta_status.state == STATE_IDLE ) {
  1099 		ta_init_list( TA_POLYCMD_LISTTYPE( data->i ) );
  1102 	    if( ta_status.vertex_count != 0 ) {
  1103 		/* Error, and not a very well handled one either */
  1104 		ta_bad_input_error();
  1105 		ta_status.accept_vertexes = FALSE;
  1106 	    } else {
  1107 		if( TA_IS_MODIFIER_LIST( ta_status.current_list_type ) ) {
  1108 		    ta_parse_modifier_context(data);
  1109 		} else {
  1110 		    ta_parse_polygon_context(data);
  1113 	    break;
  1114 	case TA_CMD_SPRITE_CONTEXT:
  1115 	    if( ta_status.state == STATE_IDLE ) {
  1116 		ta_init_list( TA_POLYCMD_LISTTYPE( data->i ) );
  1119 	    if( ta_status.vertex_count != 0 ) {
  1120 		ta_fill_vertexes();
  1121 		ta_commit_polygon();
  1124 	    ta_parse_sprite_context(data);
  1125 	    break;
  1126 	case TA_CMD_VERTEX:
  1127 	    ta_status.state = STATE_IN_POLYGON;
  1128 	    ta_parse_vertex(data);
  1130 	    if( ta_status.state == STATE_EXPECT_VERTEX_BLOCK2 ) {
  1131 		if( TA_IS_END_VERTEX(data[0].i) ) {
  1132 		    ta_status.state = STATE_EXPECT_END_VERTEX_BLOCK2;
  1134 	    } else if( TA_IS_END_VERTEX(data->i) ) {
  1135 		if( ta_status.vertex_count < 3 ) {
  1136 		    ta_bad_input_error();
  1137 		} else {
  1138 		    ta_commit_polygon();
  1140 		ta_status.vertex_count = 0;
  1141 		ta_status.poly_parity = 0;
  1142 		ta_status.state = STATE_IN_LIST;
  1143 	    } else if( ta_status.vertex_count == ta_status.max_vertex ) {
  1144 		ta_split_polygon();
  1146 	    break;
  1147 	default:
  1148 	    if( ta_status.state == STATE_IN_POLYGON ) {
  1149 		ta_bad_input_error();
  1152 	break;
  1159 /**
  1160  * Write a block of data to the tile accelerator, adding the data to the 
  1161  * current scene. We don't make any particular attempt to interpret the data
  1162  * at this stage, deferring that until render time.
  1164  * Currently copies the data verbatim to the vertex buffer, processing only
  1165  * far enough to generate the correct end-of-list events. Tile buffer is
  1166  * entirely ignored.
  1167  */
  1168 void pvr2_ta_write( char *buf, uint32_t length )
  1170     if( ta_status.debug_output ) {
  1171 	fwrite_dump32( (uint32_t *)buf, length, stderr );
  1174     for( ; length >=32; length -= 32 ) {
  1175 	pvr2_ta_process_block( buf );
  1176 	buf += 32;
.