Search
lxdream.org :: lxdream/src/pvr2/pvr2.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/pvr2/pvr2.h
changeset 861:4cd3a1e0f569
prev856:02ac5f37bfc9
next864:a90f3d5e57e1
author nkeynes
date Sun Sep 28 00:30:45 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Add missing declaration for pvr2_finish_render_buffer
view annotate diff log raw
     1 /**
     2  * $Id$
     3  *
     4  * PVR2 (video chip) functions and macros.
     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  */
    19 #ifndef lxdream_pvr2_H
    20 #define lxdream_pvr2_H 1
    22 #include <stdio.h>
    23 #include "lxdream.h"
    24 #include "mem.h"
    25 #include "display.h"
    27 #ifdef __cplusplus
    28 extern "C" {
    29 #endif
    31 typedef unsigned int pvraddr_t;
    32 typedef unsigned int pvr64addr_t;
    34 #define DISPMODE_ENABLE      0x00000001 /* Display enable */
    35 #define DISPMODE_LINEDOUBLE  0x00000002 /* scanline double */
    36 #define DISPMODE_COLFMT      0x0000000C /* Colour mode */
    37 #define DISPMODE_CLOCKDIV    0x08000000 /* Clock divide-by-2 */
    39 #define DISPSIZE_MODULO 0x3FF00000 /* line skip +1 (32-bit words)*/
    40 #define DISPSIZE_LPF    0x000FFC00 /* lines per field */
    41 #define DISPSIZE_PPL    0x000003FF /* pixel words (32 bit) per line */
    43 #define DISPCFG_VP 0x00000001 /* V-sync polarity */
    44 #define DISPCFG_HP 0x00000002 /* H-sync polarity */
    45 #define DISPCFG_I  0x00000010 /* Interlace enable */
    46 #define DISPCFG_BS 0x000000C0 /* Broadcast standard */
    47 #define DISPCFG_VO 0x00000100 /* Video output enable */
    49 #define DISPSYNC_LINE_MASK  0x000003FF
    50 #define DISPSYNC_EVEN_FIELD 0x00000000
    51 #define DISPSYNC_ODD_FIELD  0x00000400
    52 #define DISPSYNC_ACTIVE     0x00000800
    53 #define DISPSYNC_HSYNC      0x00001000
    54 #define DISPSYNC_VSYNC      0x00002000
    56 #define BS_NTSC 0x00000000
    57 #define BS_PAL  0x00000040
    58 #define BS_PALM 0x00000080 /* ? */
    59 #define BS_PALN 0x000000C0 /* ? */
    61 #define SCALER_HSCALE 0x00010000
    63 #define PVR2_RAM_BASE 0x05000000
    64 #define PVR2_RAM_BASE_INT 0x04000000
    65 #define PVR2_RAM_SIZE (8 * 1024 * 1024)
    66 #define PVR2_RAM_PAGES (PVR2_RAM_SIZE>>12)
    67 #define PVR2_RAM_MASK 0x7FFFFF
    69 #define RENDER_ZONLY  0
    70 #define RENDER_NORMAL 1     /* Render non-modified polygons */
    71 #define RENDER_CHEAPMOD 2   /* Render cheap-modified polygons */
    72 #define RENDER_FULLMOD 3    /* Render the fully-modified version of the polygons */
    74 void pvr2_next_frame( void );
    75 void pvr2_set_base_address( uint32_t );
    76 int pvr2_get_frame_count( void );
    77 void pvr2_redraw_display();
    78 gboolean pvr2_save_next_scene( const gchar *filename );
    80 #define PVR2_CMD_END_OF_LIST 0x00
    81 #define PVR2_CMD_USER_CLIP   0x20
    82 #define PVR2_CMD_POLY_OPAQUE 0x80
    83 #define PVR2_CMD_MOD_OPAQUE  0x81
    84 #define PVR2_CMD_POLY_TRANS  0x82
    85 #define PVR2_CMD_MOD_TRANS   0x83
    86 #define PVR2_CMD_POLY_PUNCHOUT 0x84
    87 #define PVR2_CMD_VERTEX      0xE0
    88 #define PVR2_CMD_VERTEX_LAST 0xF0
    90 #define PVR2_POLY_TEXTURED 0x00000008
    91 #define PVR2_POLY_SPECULAR 0x00000004
    92 #define PVR2_POLY_SHADED   0x00000002
    93 #define PVR2_POLY_UV_16BIT 0x00000001
    95 #define PVR2_POLY_MODE_CLAMP_RGB 0x00200000
    96 #define PVR2_POLY_MODE_ALPHA    0x00100000
    97 #define PVR2_POLY_MODE_TEXALPHA 0x00080000
    98 #define PVR2_POLY_MODE_FLIP_S   0x00040000
    99 #define PVR2_POLY_MODE_FLIP_T   0x00020000
   100 #define PVR2_POLY_MODE_CLAMP_S  0x00010000
   101 #define PVR2_POLY_MODE_CLAMP_T  0x00008000
   103 #define PVR2_POLY_FOG_LOOKUP    0x00000000
   104 #define PVR2_POLY_FOG_VERTEX    0x00400000
   105 #define PVR2_POLY_FOG_DISABLED  0x00800000
   106 #define PVR2_POLY_FOG_LOOKUP2   0x00C00000
   109 #define PVR2_TEX_FORMAT_ARGB1555 0x00000000
   110 #define PVR2_TEX_FORMAT_RGB565   0x08000000
   111 #define PVR2_TEX_FORMAT_ARGB4444 0x10000000
   112 #define PVR2_TEX_FORMAT_YUV422   0x18000000
   113 #define PVR2_TEX_FORMAT_BUMPMAP  0x20000000
   114 #define PVR2_TEX_FORMAT_IDX4     0x28000000
   115 #define PVR2_TEX_FORMAT_IDX8     0x30000000
   117 #define PVR2_TEX_MIPMAP      0x80000000
   118 #define PVR2_TEX_COMPRESSED  0x40000000
   119 #define PVR2_TEX_FORMAT_MASK 0x38000000
   120 #define PVR2_TEX_UNTWIDDLED  0x04000000
   121 #define PVR2_TEX_STRIDE      0x02000000
   122 #define PVR2_TEX_IS_PALETTE(mode) ( (mode & PVR2_TEX_FORMAT_MASK) == PVR2_TEX_FORMAT_IDX4 || (mode&PVR2_TEX_FORMAT_MASK) == PVR2_TEX_FORMAT_IDX8 )
   125 #define PVR2_TEX_ADDR(x) ( ((x)&0x01FFFFF)<<3 );
   126 #define PVR2_TEX_IS_MIPMAPPED(x) ( ((x) & 0x84000000) == 0x80000000 )
   127 #define PVR2_TEX_IS_COMPRESSED(x) ( (x) & PVR2_TEX_COMPRESSED )
   128 #define PVR2_TEX_IS_TWIDDLED(x) (((x) & PVR2_TEX_UNTWIDDLED) == 0)
   129 #define PVR2_TEX_IS_STRIDE(x) (((x) & 0x06000000) == 0x06000000)
   131 /****************************** Frame Buffer *****************************/
   133 /**
   134  * Write a block of data to an address in the DMA range (0x10000000 -
   135  * 0x13FFFFFF), ie TA, YUV, or texture ram.
   136  */
   137 void pvr2_dma_write( sh4addr_t dest, unsigned char *src, uint32_t length );
   139 /**
   140  * Write to the interleaved memory address space (aka 64-bit address space).
   141  */
   142 void pvr2_vram64_write( sh4addr_t dest, unsigned char *src, uint32_t length );
   144 /**
   145  * Write to the interleaved memory address space (aka 64-bit address space),
   146  * using a line length and stride.
   147  */
   148 void pvr2_vram64_write_stride( sh4addr_t dest, unsigned char *src, uint32_t line_bytes,
   149                                uint32_t line_stride_bytes, uint32_t line_count );
   151 /**
   152  * Read from the interleaved memory address space (aka 64-bit address space)
   153  */
   154 void pvr2_vram64_read( unsigned char *dest, sh4addr_t src, uint32_t length );
   156 /**
   157  * Read a twiddled image from interleaved memory address space (aka 64-bit address
   158  * space), writing the image to the destination buffer in detwiddled format.
   159  * Width and height must be powers of 2
   160  * This version reads 4-bit pixels.
   161  */
   162 void pvr2_vram64_read_twiddled_4( unsigned char *dest, sh4addr_t src, uint32_t width, uint32_t height );
   165 /**
   166  * Read a twiddled image from interleaved memory address space (aka 64-bit address
   167  * space), writing the image to the destination buffer in detwiddled format.
   168  * Width and height must be powers of 2
   169  * This version reads 8-bit pixels.
   170  */
   171 void pvr2_vram64_read_twiddled_8( unsigned char *dest, sh4addr_t src, uint32_t width, uint32_t height );
   173 /**
   174  * Read a twiddled image from interleaved memory address space (aka 64-bit address
   175  * space), writing the image to the destination buffer in detwiddled format.
   176  * Width and height must be powers of 2, and src must be 16-bit aligned.
   177  * This version reads 16-bit pixels.
   178  */
   179 void pvr2_vram64_read_twiddled_16( unsigned char *dest, sh4addr_t src, uint32_t width, uint32_t height );
   181 /**
   182  * Read an image from the interleaved memory address space (aka 64-bit address space)
   183  * where the source and destination line sizes may differ. Note that both byte
   184  * counts must be a multiple of 4, and the src address must be 32-bit aligned.
   185  */
   186 void pvr2_vram64_read_stride( unsigned char *dest, uint32_t dest_line_bytes, sh4addr_t srcaddr,
   187                               uint32_t src_line_bytes, uint32_t line_count );
   188 /**
   189  * Dump a portion of vram to a stream from the interleaved memory address
   190  * space.
   191  */
   192 void pvr2_vram64_dump( sh4addr_t addr, uint32_t length, FILE *f );
   194 /**
   195  * Flush the indicated render buffer back to PVR. Caller is responsible for
   196  * tracking whether there is actually anything in the buffer.
   197  *
   198  * @param buffer A render buffer indicating the address to store to, and the
   199  * format the data needs to be in.
   200  * @param backBuffer TRUE to flush the back buffer, FALSE for
   201  * the front buffer.
   202  */
   203 void pvr2_render_buffer_copy_to_sh4( render_buffer_t buffer );
   205 /**
   206  * Invalidate any caching on the supplied SH4 address
   207  */
   208 gboolean pvr2_render_buffer_invalidate( sh4addr_t addr, gboolean isWrite );
   211 /**************************** Tile Accelerator ***************************/
   212 /**
   213  * Process the data in the supplied buffer as an array of TA command lists.
   214  * Any excess bytes are held pending until a complete list is sent
   215  */
   216 void pvr2_ta_write( unsigned char *buf, uint32_t length );
   218 /**
   219  * Find the first polygon or sprite context in the supplied buffer of TA
   220  * data.
   221  * @return A pointer to the context, or NULL if it cannot be found
   222  */
   223 uint32_t *pvr2_ta_find_polygon_context( uint32_t *buf, uint32_t length );
   225 /**
   226  * (Re)initialize the tile accelerator in preparation for the next scene.
   227  * Normally called immediately before commencing polygon transmission.
   228  */
   229 void pvr2_ta_init( void );
   231 void pvr2_ta_reset( void );
   233 void pvr2_ta_save_state( FILE *f );
   235 int pvr2_ta_load_state( FILE *f );
   237 /****************************** YUV Converter ****************************/
   239 /**
   240  * Process a block of YUV data.
   241  */
   242 void pvr2_yuv_write( unsigned char *buf, uint32_t length );
   244 /**
   245  * Initialize the YUV converter.
   246  */
   247 void pvr2_yuv_init( uint32_t target_addr );
   249 void pvr2_yuv_set_config( uint32_t config );
   251 void pvr2_yuv_save_state( FILE *f );
   253 int pvr2_yuv_load_state( FILE *f );
   255 /********************************* Renderer ******************************/
   257 /**
   258  * Render the current scene stored in PVR ram to the GL back buffer.
   259  */
   260 void pvr2_scene_render( render_buffer_t buffer );
   262 /**
   263  * Perform the initial once-off GL setup, usually immediately after the GL
   264  * context is first bound.
   265  */
   266 void pvr2_setup_gl_context();
   268 void render_backplane( uint32_t *polygon, uint32_t width, uint32_t height, uint32_t mode );
   270 void render_autosort_tile( pvraddr_t tile_entry, int render_mode );
   272 void render_set_context( uint32_t *context, int render_mode );
   274 void gl_render_tilelist( pvraddr_t tile_entry );
   276 render_buffer_t pvr2_create_render_buffer( sh4addr_t addr, int width, int height, GLuint tex_id );
   278 void pvr2_finish_render_buffer( render_buffer_t buffer );
   280 void pvr2_destroy_render_buffer( render_buffer_t buffer );
   283 /**
   284  * Structure to hold a complete unpacked vertex (excluding modifier
   285  * volume parameters - generate separate vertexes in that case).
   286  */
   287 struct vertex_unpacked {
   288     float x,y,z;
   289     float u,v;            /* Texture coordinates */
   290     float rgba[4];        /* Fragment colour (RGBA order) */
   291     float offset_rgba[4]; /* Offset color (RGBA order) */
   292 };
   294 /****************************** Texture Cache ****************************/
   296 /**
   297  * Initialize the texture cache.
   298  */
   299 void texcache_init( void );
   301 /**
   302  * Initialize the GL side of the texture cache (texture ids and such).
   303  */
   304 void texcache_gl_init( void );
   306 /**
   307  * Flush all textures and delete. The cache will be non-functional until
   308  * the next call to texcache_init(). This would typically be done if
   309  * switching GL targets.
   310  */
   311 void texcache_shutdown( void );
   313 /**
   314  * Flush (ie free) all textures.
   315  */
   316 void texcache_flush( void );
   318 /**
   319  * Flush all palette-based textures (if any)
   320  */
   321 void texcache_invalidate_palette(void);
   323 /**
   324  * Evict all textures contained in the page identified by a texture address.
   325  */
   326 void texcache_invalidate_page( uint32_t texture_addr );
   328 /**
   329  * Return a texture ID for the texture specified at the supplied address
   330  * and given parameters (the same sequence of bytes could in theory have
   331  * multiple interpretations). We use the texture address as the primary
   332  * index, but allow for multiple instances at each address. The texture
   333  * will be bound to the GL_TEXTURE_2D target before being returned.
   334  *
   335  * If the texture has already been bound, return the ID to which it was
   336  * bound. Otherwise obtain an unused texture ID and set it up appropriately.
   337  */
   338 GLuint texcache_get_texture( uint32_t texture_word, int width, int height );
   340 render_buffer_t texcache_get_render_buffer( uint32_t texture_addr, int mode, int width, int height );
   342 void pvr2_check_palette_changed(void);
   344 int pvr2_render_save_scene( const gchar *filename );
   346 /**
   347  * Queue a gun position event to occur at the specified position. Unless
   348  * cancelled, when the display reaches the position:
   349  *   GUNPOS is updated with the position, and
   350  *   EVENT_MAPLE_DMA is fired.
   351  */
   352 void pvr2_queue_gun_event( int xpos, int ypos );
   354 /************************* Rendering support macros **************************/
   355 #define POLY1_DEPTH_MODE(poly1) ( pvr2_poly_depthmode[(poly1)>>29] )
   356 #define POLY1_DEPTH_WRITE(poly1) (((poly1)&0x04000000) == 0 )
   357 #define POLY1_CULL_MODE(poly1) (((poly1)>>27)&0x03)
   358 #define POLY1_CULL_ENABLE(poly1) (((poly1)>>28)&0x01)
   359 #define POLY1_TEXTURED(poly1) (((poly1)&0x02000000))
   360 #define POLY1_SPECULAR(poly1) (((poly1)&0x01000000))
   361 #define POLY1_GOURAUD_SHADED(poly1) ((poly1)&0x00800000)
   362 #define POLY1_SHADE_MODEL(poly1) (((poly1)&0x00800000) ? GL_SMOOTH : GL_FLAT)
   363 #define POLY1_UV16(poly1)   (((poly1)&0x00400000))
   364 #define POLY1_SINGLE_TILE(poly1) (((poly1)&0x00200000))
   366 #define POLY2_SRC_BLEND(poly2) ( pvr2_poly_srcblend[(poly2) >> 29] )
   367 #define POLY2_DEST_BLEND(poly2) ( pvr2_poly_dstblend[((poly2)>>26)&0x07] )
   368 #define POLY2_SRC_BLEND_TARGET(poly2)    ((poly2)&0x02000000)
   369 #define POLY2_DEST_BLEND_TARGET(poly2)   ((poly2)&0x01000000)
   370 #define POLY2_FOG_MODE(poly2)            ((poly2)&0x00C00000)
   371 #define POLY2_COLOUR_CLAMP_ENABLE(poly2) ((poly2)&0x00200000)
   372 #define POLY2_ALPHA_ENABLE(poly2)        ((poly2)&0x00100000)
   373 #define POLY2_TEX_ALPHA_ENABLE(poly2)   (((poly2)&0x00080000) == 0 )
   374 #define POLY2_TEX_MIRROR_U(poly2)        ((poly2)&0x00040000)
   375 #define POLY2_TEX_MIRROR_V(poly2)        ((poly2)&0x00020000)
   376 #define POLY2_TEX_CLAMP_U(poly2)         ((poly2)&0x00010000)
   377 #define POLY2_TEX_CLAMP_V(poly2)         ((poly2)&0x00008000)
   378 #define POLY2_TEX_WIDTH(poly2) ( 1<< ((((poly2) >> 3) & 0x07 ) + 3) )
   379 #define POLY2_TEX_HEIGHT(poly2) ( 1<< (((poly2) & 0x07 ) + 3) )
   380 #define POLY2_TEX_BLEND(poly2) (((poly2) >> 6)&0x03)
   381 extern int pvr2_poly_depthmode[8];
   382 extern int pvr2_poly_srcblend[8];
   383 extern int pvr2_poly_dstblend[8];
   384 extern int pvr2_poly_texblend[4];
   385 extern int pvr2_render_colour_format[8];
   387 #define CULL_NONE 0
   388 #define CULL_SMALL 1
   389 #define CULL_CCW 2
   390 #define CULL_CW 3
   392 #define SEGMENT_END         0x80000000
   393 #define SEGMENT_ZCLEAR      0x40000000
   394 #define SEGMENT_SORT_TRANS  0x20000000
   395 #define SEGMENT_START       0x10000000
   396 #define SEGMENT_X(c)        (((c) >> 2) & 0x3F)
   397 #define SEGMENT_Y(c)        (((c) >> 8) & 0x3F)
   398 #define NO_POINTER          0x80000000
   399 #define IS_TILE_PTR(p)      ( ((p)&NO_POINTER) == 0 )
   400 #define IS_LAST_SEGMENT(s)  (((s)->control) & SEGMENT_END)
   402 struct tile_segment {
   403     uint32_t control;
   404     pvraddr_t opaque_ptr;
   405     pvraddr_t opaquemod_ptr;
   406     pvraddr_t trans_ptr;
   407     pvraddr_t transmod_ptr;
   408     pvraddr_t punchout_ptr;
   409 };
   411 #ifdef __cplusplus
   412 }
   413 #endif
   415 #endif /* !lxdream_pvr2_H */
.