Search
lxdream.org :: lxdream/src/pvr2/texcache.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/pvr2/texcache.c
changeset 113:ce4eb7959d56
prev108:565de331ccec
next126:988003554ab5
author nkeynes
date Thu Mar 16 12:42:39 2006 +0000 (18 years ago)
permissions -rw-r--r--
last change Various fixes to make tatest work
view annotate diff log raw
     1 /**
     2  * $Id: texcache.c,v 1.4 2006-03-16 12:42:39 nkeynes Exp $
     3  *
     4  * Texture cache. Responsible for maintaining a working set of OpenGL 
     5  * textures. 
     6  *
     7  *
     8  * Copyright (c) 2005 Nathan Keynes.
     9  *
    10  * This program is free software; you can redistribute it and/or modify
    11  * it under the terms of the GNU General Public License as published by
    12  * the Free Software Foundation; either version 2 of the License, or
    13  * (at your option) any later version.
    14  *
    15  * This program is distributed in the hope that it will be useful,
    16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    18  * GNU General Public License for more details.
    19  */
    21 #include <assert.h>
    22 #include "pvr2/pvr2.h"
    24 /** Specifies the maximum number of OpenGL
    25  * textures we're willing to have open at a time. If more are
    26  * needed, textures will be evicted in LRU order.
    27  */
    28 #define MAX_TEXTURES 64
    30 /**
    31  * Data structure:
    32  *
    33  * Main operations:
    34  *    find entry by texture_addr
    35  *    add new entry
    36  *    move entry to tail of lru list
    37  *    remove entry
    38  */
    40 typedef signed short texcache_entry_index;
    41 #define EMPTY_ENTRY 0xFF
    43 static texcache_entry_index texcache_free_ptr = 0;
    44 static GLuint texcache_free_list[MAX_TEXTURES];
    46 typedef struct texcache_entry {
    47     uint32_t texture_addr;
    48     int width, height, mode;
    49     GLuint texture_id;
    50     texcache_entry_index next;
    51     uint32_t lru_count;
    52 } *texcache_entry_t;
    54 static uint8_t texcache_page_lookup[PVR2_RAM_PAGES];
    55 static uint32_t texcache_ref_counter;
    56 static struct texcache_entry texcache_active_list[MAX_TEXTURES];
    58 /**
    59  * Initialize the texture cache.
    60  */
    61 void texcache_init( )
    62 {
    63     int i;
    64     for( i=0; i<PVR2_RAM_PAGES; i++ ) {
    65 	texcache_page_lookup[i] = EMPTY_ENTRY;
    66     }
    67     for( i=0; i<MAX_TEXTURES; i++ ) {
    68 	texcache_free_list[i] = i;
    69     }
    70     texcache_free_ptr = 0;
    71     texcache_ref_counter = 0;
    72 }
    74 /**
    75  * Setup the initial texture ids (must be called after the GL context is
    76  * prepared)
    77  */
    78 void texcache_gl_init( )
    79 {
    80     int i;
    81     GLuint texids[MAX_TEXTURES];
    83     glGenTextures( MAX_TEXTURES, texids );
    84     for( i=0; i<MAX_TEXTURES; i++ ) {
    85 	texcache_active_list[i].texture_id = texids[i];
    86     }
    87 }
    89 /**
    90  * Flush all textures from the cache, returning them to the free list.
    91  */
    92 void texcache_flush( )
    93 {
    94     int i;
    95     /* clear structures */
    96     for( i=0; i<PVR2_RAM_PAGES; i++ ) {
    97 	texcache_page_lookup[i] = EMPTY_ENTRY;
    98     }
    99     for( i=0; i<MAX_TEXTURES; i++ ) {
   100 	texcache_free_list[i] = i;
   101     }
   102     texcache_free_ptr = 0;
   103     texcache_ref_counter = 0;
   104 }
   106 /**
   107  * Flush all textures and delete. The cache will be non-functional until
   108  * the next call to texcache_init(). This would typically be done if
   109  * switching GL targets.
   110  */    
   111 void texcache_shutdown( )
   112 {
   113     GLuint texids[MAX_TEXTURES];
   114     int i;
   115     texcache_flush();
   117     for( i=0; i<MAX_TEXTURES; i++ ) {
   118 	texids[i] = texcache_active_list[i].texture_id;
   119     }
   120     glDeleteTextures( MAX_TEXTURES, texids );
   121 }
   123 /**
   124  * Evict all textures contained in the page identified by a texture address.
   125  */
   126 void texcache_invalidate_page( uint32_t texture_addr ) {
   127     uint32_t texture_page = texture_addr >> 12;
   128     texcache_entry_index idx = texcache_page_lookup[texture_page];
   129     if( idx == EMPTY_ENTRY )
   130 	return;
   131     assert( texcache_free_ptr >= 0 );
   132     do {
   133 	texcache_entry_t entry = &texcache_active_list[idx];	
   134 	/* release entry */
   135 	texcache_free_ptr--;
   136 	texcache_free_list[texcache_free_ptr] = idx;
   137 	idx = entry->next;
   138 	entry->next = EMPTY_ENTRY;
   139     } while( idx != EMPTY_ENTRY );
   140     texcache_page_lookup[texture_page] = EMPTY_ENTRY;
   141 }
   143 /**
   144  * Evict a single texture from the cache.
   145  * @return the slot of the evicted texture.
   146  */
   147 static texcache_entry_index texcache_evict( void )
   148 {
   149     /* Full table scan - take over the entry with the lowest lru value */
   150     texcache_entry_index slot = 0;
   151     int lru_value = texcache_active_list[0].lru_count;
   152     int i;
   153     for( i=1; i<MAX_TEXTURES; i++ ) {
   154 	/* FIXME: account for rollover */
   155 	if( texcache_active_list[i].lru_count < lru_value ) {
   156 	    slot = i;
   157 	    lru_value = texcache_active_list[i].lru_count;
   158 	}
   159     }
   161     /* Remove the selected slot from the lookup table */
   162     uint32_t evict_page = texcache_active_list[slot].texture_addr;
   163     texcache_entry_index replace_next = texcache_active_list[slot].next;
   164     texcache_active_list[slot].next = EMPTY_ENTRY; /* Just for safety */
   165     if( texcache_page_lookup[evict_page] == slot ) {
   166 	texcache_page_lookup[evict_page] = replace_next;
   167     } else {
   168 	texcache_entry_index idx = texcache_page_lookup[evict_page];
   169 	texcache_entry_index next;
   170 	do {
   171 	    next = texcache_active_list[idx].next;
   172 	    if( next == slot ) {
   173 		texcache_active_list[idx].next = replace_next;
   174 		break;
   175 	    }
   176 	    idx = next;
   177 	} while( next != EMPTY_ENTRY );
   178     }
   179     return slot;
   180 }
   182 static void detwiddle_pal8_to_24(int x1, int y1, int size, int totsize,
   183 				 char **in, uint32_t *out, uint32_t *pal) {
   184     if (size == 1) {
   185 	out[y1 * totsize + x1] = pal[**in];
   186 	(*in)++;
   187     } else {
   188 	int ns = size>>1;
   189 	detwiddle_pal8_to_24(x1, y1, ns, totsize, in, out, pal);
   190 	detwiddle_pal8_to_24(x1, y1+ns, ns, totsize, in, out, pal);
   191 	detwiddle_pal8_to_24(x1+ns, y1, ns, totsize, in, out, pal);
   192 	detwiddle_pal8_to_24(x1+ns, y1+ns, ns, totsize, in, out, pal);
   193     }
   194 }
   197 /**
   198  * Load texture data from the given address and parameters into the currently
   199  * bound OpenGL texture.
   200  */
   201 static texcache_load_texture( uint32_t texture_addr, int width, int height,
   202 			      int mode ) {
   203     uint32_t bytes = width * height;
   204     int shift = 1;
   205     GLint intFormat, format, type;
   206     int tex_format = mode & PVR2_TEX_FORMAT_MASK;
   208     if( tex_format == PVR2_TEX_FORMAT_IDX8 ||
   209 	tex_format == PVR2_TEX_FORMAT_IDX4 ) {
   210 	switch( MMIO_READ( PVR2, PALETTECFG ) & 0x03 ) {
   211 	case 0: /* ARGB1555 */
   212 	    intFormat = GL_RGB5_A1;
   213 	    format = GL_RGBA;
   214 	    type = GL_UNSIGNED_SHORT_5_5_5_1;
   215 	    break;
   216 	case 1: 
   217 	    intFormat = GL_RGB;
   218 	    format = GL_RGB;
   219 	    type = GL_UNSIGNED_SHORT_5_6_5;
   220 	    break;
   221 	case 2:
   222 	    intFormat = GL_RGBA4;
   223 	    format = GL_RGBA;
   224 	    type = GL_UNSIGNED_SHORT_4_4_4_4;
   225 	    break;
   226 	case 3:
   227 	    intFormat = GL_RGBA8;
   228 	    format = GL_BGRA;
   229 	    type = GL_UNSIGNED_INT_8_8_8_8_REV;
   230 	    shift = 2;
   231 	    break;
   232 	}
   234 	if( tex_format == PVR2_TEX_FORMAT_IDX8 ) {
   235 	    unsigned char data[bytes<<shift];
   236 	    int bank = (mode >> 25) &0x03;
   237 	    char *palette = mmio_region_PVR2PAL.mem + (bank * (256 << shift));
   238 	    int i;
   239 	    if( shift == 2 ) {
   240 		char tmp[bytes];
   241 	        char *p = tmp;
   242 		pvr2_vram64_read( tmp, texture_addr, bytes );
   243 		detwiddle_pal8_to_24( 0, 0, width, width, &p, 
   244 				      (uint32_t *)data, (uint32_t *)palette );
   245 	    } else {
   246 		pvr2_vram64_read( &data, texture_addr, bytes );
   247 		for( i=bytes-1; i>=0; i-- ) {
   248 		    char ch = data[i];
   249 		    ((uint16_t *)data)[i] = ((uint16_t *)palette)[ch];
   250 		}
   251 	    }
   252 	    /* TODO: Detwiddle */
   253 	    glTexImage2D( GL_TEXTURE_2D, 0, intFormat, width, height, 0, format, type,
   254 			  data );
   256 	}
   257     } else {
   258 	switch( tex_format ) {
   259 	case PVR2_TEX_FORMAT_ARGB1555:
   260 	    bytes <<= 1;
   261 	    intFormat = GL_RGB5_A1;
   262 	    format = GL_RGBA;
   263 	    type = GL_UNSIGNED_SHORT_5_5_5_1;
   264 	    break;
   265 	case PVR2_TEX_FORMAT_RGB565:
   266 	    bytes <<= 1;
   267 	    intFormat = GL_RGBA;
   268 	    format = GL_RGBA;
   269 	    type = GL_UNSIGNED_SHORT_5_6_5;
   270 	    break;
   271 	case PVR2_TEX_FORMAT_ARGB4444:
   272 	    bytes <<= 1;
   273 	    intFormat = GL_RGBA4;
   274 	    format = GL_RGBA;
   275 	    type = GL_UNSIGNED_SHORT_4_4_4_4;
   276 	    break;
   277 	case PVR2_TEX_FORMAT_YUV422:
   278 	    ERROR( "YUV textures not supported" );
   279 	    break;
   280 	case PVR2_TEX_FORMAT_BUMPMAP:
   281 	    ERROR( "Bumpmap not supported" );
   282 	    break;
   283 	case PVR2_TEX_FORMAT_IDX4:
   284 	    /* Supported? */
   285 	    bytes >>= 1;
   286 	    intFormat = GL_INTENSITY4;
   287 	    format = GL_COLOR_INDEX;
   288 	    type = GL_UNSIGNED_BYTE;
   289 	    shift = 0;
   290 	    break;
   291 	case PVR2_TEX_FORMAT_IDX8:
   292 	    intFormat = GL_INTENSITY8;
   293 	    format = GL_COLOR_INDEX;
   294 	    type = GL_UNSIGNED_BYTE;
   295 	    shift = 0;
   296 	    break;
   297 	}
   299 	unsigned char data[bytes];
   300 	/* load data from image, detwiddling/uncompressing as required */
   301 	if( PVR2_TEX_IS_COMPRESSED(mode) ) {
   302 	    ERROR( "VQ Compression not supported" );
   303 	} else {
   304 	    pvr2_vram64_read( &data, texture_addr, bytes );
   305 	    if( PVR2_TEX_IS_TWIDDLED(mode) ) {
   306 		/* Untwiddle */
   307 	    }
   308 	}
   310 	/* Pass to GL */
   311 	glTexImage2D( GL_TEXTURE_2D, 0, intFormat, width, height, 0, format, type,
   312 		      data );
   313     }
   314     glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
   315     glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
   316 }
   318 /**
   319  * Return a texture ID for the texture specified at the supplied address
   320  * and given parameters (the same sequence of bytes could in theory have
   321  * multiple interpretations). We use the texture address as the primary
   322  * index, but allow for multiple instances at each address. The texture
   323  * will be bound to the GL_TEXTURE_2D target before being returned.
   324  * 
   325  * If the texture has already been bound, return the ID to which it was
   326  * bound. Otherwise obtain an unused texture ID and set it up appropriately.
   327  */
   328 GLuint texcache_get_texture( uint32_t texture_addr, int width, int height,
   329 			     int mode )
   330 {
   331     uint32_t texture_page = texture_addr >> 12;
   332     texcache_entry_index idx = texcache_page_lookup[texture_page];
   333     while( idx != EMPTY_ENTRY ) {
   334 	texcache_entry_t entry = &texcache_active_list[idx];
   335 	if( entry->texture_addr == texture_addr &&
   336 	    entry->mode == mode &&
   337 	    entry->width == width &&
   338 	    entry->height == height ) {
   339 	    entry->lru_count = texcache_ref_counter++;
   340 	    glBindTexture( GL_TEXTURE_2D, entry->texture_id );
   341 	    return entry->texture_id;
   342 	}
   343         idx = entry->next;
   344     }
   346     /* Not found - check the free list */
   347     int slot = 0;
   349     if( texcache_free_ptr < MAX_TEXTURES ) {
   350 	slot = texcache_free_list[texcache_free_ptr++];
   351     } else {
   352 	slot = texcache_evict();
   353     }
   355     /* Construct new entry */
   356     texcache_active_list[slot].texture_addr = texture_addr;
   357     texcache_active_list[slot].width = width;
   358     texcache_active_list[slot].height = height;
   359     texcache_active_list[slot].mode = mode;
   360     texcache_active_list[slot].lru_count = texcache_ref_counter++;
   362     /* Add entry to the lookup table */
   363     texcache_active_list[slot].next = texcache_page_lookup[texture_page];
   364     texcache_page_lookup[texture_page] = slot;
   366     /* Construct the GL texture */
   367     glBindTexture( GL_TEXTURE_2D, texcache_active_list[slot].texture_id );
   368     texcache_load_texture( texture_addr, width, height, mode );
   370     return texcache_active_list[slot].texture_id;
   371 }
.