2 * $Id: pvr2mem.c,v 1.3 2007-01-21 11:29:17 nkeynes Exp $
4 * PVR2 (Video) VRAM handling routines (mainly for the 64-bit region)
6 * Copyright (c) 2005 Nathan Keynes.
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.
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.
22 extern char *video_base;
24 void pvr2_vram64_write( sh4addr_t destaddr, char *src, uint32_t length )
26 int bank_flag = (destaddr & 0x04) >> 2;
31 destaddr = destaddr & 0x7FFFFF;
32 if( destaddr + length > 0x800000 ) {
33 length = 0x800000 - destaddr;
36 for( i=destaddr & 0xFFFFF000; i < destaddr + length; i+= PAGE_SIZE ) {
37 texcache_invalidate_page( i );
40 banks[0] = ((uint32_t *)(video_base + ((destaddr & 0x007FFFF8) >>1)));
41 banks[1] = banks[0] + 0x100000;
45 /* Handle non-aligned start of source */
46 if( destaddr & 0x03 ) {
47 char *dest = ((char *)banks[bank_flag]) + (destaddr & 0x03);
48 for( i= destaddr & 0x03; i < 4 && length > 0; i++, length-- ) {
51 bank_flag = !bank_flag;
54 dwsrc = (uint32_t *)src;
55 while( length >= 4 ) {
56 *banks[bank_flag]++ = *dwsrc++;
57 bank_flag = !bank_flag;
61 /* Handle non-aligned end of source */
64 char *dest = (char *)banks[bank_flag];
65 while( length-- > 0 ) {
72 * Write an image to 64-bit vram, with a line-stride different from the line-size.
73 * The destaddr must be 32-bit aligned, and both line_bytes and line_stride_bytes
74 * must be multiples of 4.
76 void pvr2_vram64_write_stride( sh4addr_t destaddr, char *src, uint32_t line_bytes,
77 uint32_t line_stride_bytes, uint32_t line_count )
79 int bank_flag = (destaddr & 0x04) >> 2;
86 destaddr = destaddr & 0x7FFFF8;
87 i = line_stride_bytes - line_bytes;
88 line_gap_flag = i & 0x04;
92 for( i=destaddr & 0xFFFFF000; i < destaddr + line_stride_bytes*line_count; i+= PAGE_SIZE ) {
93 texcache_invalidate_page( i );
96 banks[0] = (uint32_t *)(video_base + (destaddr >>1));
97 banks[1] = banks[0] + 0x100000;
101 dwsrc = (uint32_t *)src;
102 for( i=0; i<line_count; i++ ) {
103 for( j=0; j<line_bytes; j++ ) {
104 *banks[bank_flag]++ = *dwsrc++;
105 bank_flag = !bank_flag;
107 banks[0] += line_gap;
108 banks[1] += line_gap;
109 if( line_gap_flag ) {
111 bank_flag = !bank_flag;
117 * Read an image from 64-bit vram, with a destination line-stride different from the line-size.
118 * The srcaddr must be 32-bit aligned, and both line_bytes and line_stride_bytes
119 * must be multiples of 4. line_stride_bytes must be >= line_bytes.
120 * This method is used to extract a "stride" texture from vram.
122 void pvr2_vram64_read_stride( char *dest, uint32_t dest_line_bytes, sh4addr_t srcaddr,
123 uint32_t src_line_bytes, uint32_t line_count )
125 int bank_flag = (srcaddr & 0x04) >> 2;
128 uint32_t dest_line_gap;
129 uint32_t src_line_gap;
131 int src_line_gap_flag;
134 srcaddr = srcaddr & 0x7FFFF8;
135 if( src_line_bytes <= dest_line_bytes ) {
136 dest_line_gap = (dest_line_bytes - src_line_bytes) >> 2;
138 src_line_gap_flag = 0;
139 line_bytes = src_line_bytes >> 2;
141 i = (src_line_bytes - dest_line_bytes);
142 src_line_gap_flag = i & 0x04;
143 src_line_gap = i >> 3;
144 line_bytes = dest_line_bytes >> 2;
147 banks[0] = (uint32_t *)(video_base + (srcaddr>>1));
148 banks[1] = banks[0] + 0x100000;
152 dwdest = (uint32_t *)dest;
153 for( i=0; i<line_count; i++ ) {
154 for( j=0; j<line_bytes; j++ ) {
155 *dwdest++ = *banks[bank_flag]++;
156 bank_flag = !bank_flag;
158 dwdest += dest_line_gap;
159 banks[0] += src_line_gap;
160 banks[1] += src_line_gap;
161 if( src_line_gap_flag ) {
163 bank_flag = !bank_flag;
169 void pvr2_vram_write_invert( sh4addr_t destaddr, char *src, uint32_t length, uint32_t line_length )
171 char *dest = video_base + (destaddr & 0x007FFFFF);
172 char *p = src + length - line_length;
174 memcpy( dest, p, line_length );
180 void pvr2_vram64_read( char *dest, sh4addr_t srcaddr, uint32_t length )
182 int bank_flag = (srcaddr & 0x04) >> 2;
187 srcaddr = srcaddr & 0x7FFFFF;
188 if( srcaddr + length > 0x800000 )
189 length = 0x800000 - srcaddr;
191 banks[0] = ((uint32_t *)(video_base + ((srcaddr&0x007FFFF8)>>1)));
192 banks[1] = banks[0] + 0x100000;
196 /* Handle non-aligned start of source */
197 if( srcaddr & 0x03 ) {
198 char *src = ((char *)banks[bank_flag]) + (srcaddr & 0x03);
199 for( i= srcaddr & 0x03; i < 4 && length > 0; i++, length-- ) {
202 bank_flag = !bank_flag;
205 dwdest = (uint32_t *)dest;
206 while( length >= 4 ) {
207 *dwdest++ = *banks[bank_flag]++;
208 bank_flag = !bank_flag;
212 /* Handle non-aligned end of source */
214 dest = (char *)dwdest;
215 char *src = (char *)banks[bank_flag];
216 while( length-- > 0 ) {
222 void pvr2_vram64_dump_file( sh4addr_t addr, uint32_t length, gchar *filename )
224 uint32_t tmp[length>>2];
225 FILE *f = fopen(filename, "wo");
229 ERROR( "Unable to write to dump file '%s' (%s)", filename, strerror(errno) );
232 pvr2_vram64_read( tmp, addr, length );
233 fprintf( f, "%08X\n", addr );
234 for( i =0; i<length>>2; i+=8 ) {
235 for( j=i; j<i+8; j++ ) {
237 fprintf( f, " %08X", tmp[j] );
246 void pvr2_vram64_dump( sh4addr_t addr, uint32_t length, FILE *f )
249 pvr2_vram64_read( tmp, addr, length );
250 fwrite_dump( tmp, length, f );
.