let's try alternative vsync timing
[pcsx_rearmed.git] / libpcsxcore / psxcounters.c
CommitLineData
ef79bbde
P
1/***************************************************************************
2 * Copyright (C) 2010 by Blade_Arma *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307 USA. *
18 ***************************************************************************/
19
20/*
21 * Internal PSX counters.
22 */
23
24#include "psxcounters.h"
ddbaf678 25#include "gpu.h"
fc8145b7 26#include "debug.h"
ef79bbde
P
27
28/******************************************************************************/
29
ef79bbde
P
30enum
31{
32 Rc0Gate = 0x0001, // 0 not implemented
33 Rc1Gate = 0x0001, // 0 not implemented
34 Rc2Disable = 0x0001, // 0 partially implemented
35 RcUnknown1 = 0x0002, // 1 ?
36 RcUnknown2 = 0x0004, // 2 ?
37 RcCountToTarget = 0x0008, // 3
38 RcIrqOnTarget = 0x0010, // 4
39 RcIrqOnOverflow = 0x0020, // 5
40 RcIrqRegenerate = 0x0040, // 6
41 RcUnknown7 = 0x0080, // 7 ?
42 Rc0PixelClock = 0x0100, // 8 fake implementation
43 Rc1HSyncClock = 0x0100, // 8
44 Rc2Unknown8 = 0x0100, // 8 ?
45 Rc0Unknown9 = 0x0200, // 9 ?
46 Rc1Unknown9 = 0x0200, // 9 ?
47 Rc2OneEighthClock = 0x0200, // 9
48 RcUnknown10 = 0x0400, // 10 ?
49 RcCountEqTarget = 0x0800, // 11
50 RcOverflow = 0x1000, // 12
51 RcUnknown13 = 0x2000, // 13 ? (always zero)
52 RcUnknown14 = 0x4000, // 14 ? (always zero)
53 RcUnknown15 = 0x8000, // 15 ? (always zero)
54};
55
56#define CounterQuantity ( 4 )
57//static const u32 CounterQuantity = 4;
58
59static const u32 CountToOverflow = 0;
60static const u32 CountToTarget = 1;
61
62static const u32 FrameRate[] = { 60, 50 };
63static const u32 VBlankStart[] = { 240, 256 };
aecf98c5 64static const u32 HSyncTotal[] = { 263, 313 };
554a2220 65static const u32 SpuUpdInterval[] = { 32, 32 };
ef79bbde 66
9f7ee52e 67#define VERBOSE_LEVEL 0
68static const s32 VerboseLevel = VERBOSE_LEVEL;
ef79bbde
P
69
70/******************************************************************************/
71
b1be1eee 72Rcnt rcnts[ CounterQuantity ];
ef79bbde 73
24de2dd4 74u32 hSyncCount = 0;
75u32 frame_counter = 0;
ef79bbde 76static u32 spuSyncCount = 0;
61ef5cf4 77static u32 hsync_steps = 0;
4f55097d 78static u32 base_cycle = 0;
ef79bbde
P
79
80u32 psxNextCounter = 0, psxNextsCounter = 0;
81
82/******************************************************************************/
83
84static inline
85void setIrq( u32 irq )
86{
87 psxHu32ref(0x1070) |= SWAPu32(irq);
88}
89
90static
9f7ee52e 91void verboseLog( u32 level, const char *str, ... )
ef79bbde 92{
9f7ee52e 93#if VERBOSE_LEVEL > 0
ef79bbde
P
94 if( level <= VerboseLevel )
95 {
96 va_list va;
97 char buf[ 4096 ];
98
99 va_start( va, str );
100 vsprintf( buf, str, va );
101 va_end( va );
102
ab948f7e 103 printf( "%s", buf );
ef79bbde
P
104 fflush( stdout );
105 }
9f7ee52e 106#endif
ef79bbde
P
107}
108
109/******************************************************************************/
110
111static inline
112void _psxRcntWcount( u32 index, u32 value )
113{
114 if( value > 0xffff )
115 {
116 verboseLog( 1, "[RCNT %i] wcount > 0xffff: %x\n", index, value );
117 value &= 0xffff;
118 }
119
120 rcnts[index].cycleStart = psxRegs.cycle;
121 rcnts[index].cycleStart -= value * rcnts[index].rate;
122
123 // TODO: <=.
124 if( value < rcnts[index].target )
125 {
126 rcnts[index].cycle = rcnts[index].target * rcnts[index].rate;
127 rcnts[index].counterState = CountToTarget;
128 }
129 else
130 {
131 rcnts[index].cycle = 0xffff * rcnts[index].rate;
132 rcnts[index].counterState = CountToOverflow;
133 }
134}
135
136static inline
137u32 _psxRcntRcount( u32 index )
138{
139 u32 count;
140
141 count = psxRegs.cycle;
142 count -= rcnts[index].cycleStart;
61ef5cf4 143 if (rcnts[index].rate > 1)
144 count /= rcnts[index].rate;
ef79bbde
P
145
146 if( count > 0xffff )
147 {
148 verboseLog( 1, "[RCNT %i] rcount > 0xffff: %x\n", index, count );
149 count &= 0xffff;
150 }
151
152 return count;
153}
154
155/******************************************************************************/
156
157static
158void psxRcntSet()
159{
160 s32 countToUpdate;
161 u32 i;
162
163 psxNextsCounter = psxRegs.cycle;
164 psxNextCounter = 0x7fffffff;
165
166 for( i = 0; i < CounterQuantity; ++i )
167 {
168 countToUpdate = rcnts[i].cycle - (psxNextsCounter - rcnts[i].cycleStart);
169
170 if( countToUpdate < 0 )
171 {
172 psxNextCounter = 0;
173 break;
174 }
175
176 if( countToUpdate < (s32)psxNextCounter )
177 {
178 psxNextCounter = countToUpdate;
179 }
180 }
5b8c000f 181
182 psxRegs.interrupt |= (1 << PSXINT_RCNT);
183 new_dyna_set_event(PSXINT_RCNT, psxNextCounter);
ef79bbde
P
184}
185
186/******************************************************************************/
187
188static
189void psxRcntReset( u32 index )
190{
191 u32 count;
192
193 if( rcnts[index].counterState == CountToTarget )
194 {
195 if( rcnts[index].mode & RcCountToTarget )
196 {
197 count = psxRegs.cycle;
198 count -= rcnts[index].cycleStart;
61ef5cf4 199 if (rcnts[index].rate > 1)
200 count /= rcnts[index].rate;
ef79bbde
P
201 count -= rcnts[index].target;
202 }
203 else
204 {
205 count = _psxRcntRcount( index );
206 }
207
208 _psxRcntWcount( index, count );
209
210 if( rcnts[index].mode & RcIrqOnTarget )
211 {
212 if( (rcnts[index].mode & RcIrqRegenerate) || (!rcnts[index].irqState) )
213 {
214 verboseLog( 3, "[RCNT %i] irq: %x\n", index, count );
215 setIrq( rcnts[index].irq );
216 rcnts[index].irqState = 1;
217 }
218 }
219
220 rcnts[index].mode |= RcCountEqTarget;
221 }
222 else if( rcnts[index].counterState == CountToOverflow )
223 {
224 count = psxRegs.cycle;
225 count -= rcnts[index].cycleStart;
61ef5cf4 226 if (rcnts[index].rate > 1)
227 count /= rcnts[index].rate;
ef79bbde
P
228 count -= 0xffff;
229
230 _psxRcntWcount( index, count );
231
232 if( rcnts[index].mode & RcIrqOnOverflow )
233 {
234 if( (rcnts[index].mode & RcIrqRegenerate) || (!rcnts[index].irqState) )
235 {
236 verboseLog( 3, "[RCNT %i] irq: %x\n", index, count );
237 setIrq( rcnts[index].irq );
238 rcnts[index].irqState = 1;
239 }
240 }
241
242 rcnts[index].mode |= RcOverflow;
243 }
244
245 rcnts[index].mode |= RcUnknown10;
246
247 psxRcntSet();
248}
249
250void psxRcntUpdate()
251{
252 u32 cycle;
253
254 cycle = psxRegs.cycle;
255
256 // rcnt 0.
257 if( cycle - rcnts[0].cycleStart >= rcnts[0].cycle )
258 {
259 psxRcntReset( 0 );
260 }
261
262 // rcnt 1.
263 if( cycle - rcnts[1].cycleStart >= rcnts[1].cycle )
264 {
265 psxRcntReset( 1 );
266 }
267
268 // rcnt 2.
269 if( cycle - rcnts[2].cycleStart >= rcnts[2].cycle )
270 {
271 psxRcntReset( 2 );
272 }
273
274 // rcnt base.
275 if( cycle - rcnts[3].cycleStart >= rcnts[3].cycle )
276 {
61ef5cf4 277 u32 leftover_cycles = cycle - rcnts[3].cycleStart - rcnts[3].cycle;
278 u32 next_vsync, next_lace;
ef79bbde 279
61ef5cf4 280 spuSyncCount += hsync_steps;
281 hSyncCount += hsync_steps;
ef79bbde
P
282
283 // Update spu.
284 if( spuSyncCount >= SpuUpdInterval[Config.PsxType] )
285 {
286 spuSyncCount = 0;
287
288 if( SPU_async )
289 {
290 SPU_async( SpuUpdInterval[Config.PsxType] * rcnts[3].target );
291 }
292 }
293
294 // VSync irq.
295 if( hSyncCount == VBlankStart[Config.PsxType] )
296 {
8bbbd091 297 if( !(HW_GPU_STATUS & PSXGPU_ILACE) )
ddbaf678 298 HW_GPU_STATUS |= PSXGPU_LCF;
299
8bbbd091 300 setIrq( 0x01 );
301
302 EmuUpdate();
303 GPU_updateLace();
ef79bbde
P
304 }
305
306 // Update lace. (with InuYasha fix)
307 if( hSyncCount >= (Config.VSyncWA ? HSyncTotal[Config.PsxType] / BIAS : HSyncTotal[Config.PsxType]) )
308 {
309 hSyncCount = 0;
ddbaf678 310 frame_counter++;
ef79bbde 311
ddbaf678 312 HW_GPU_STATUS &= ~PSXGPU_LCF;
313 if( HW_GPU_STATUS & PSXGPU_ILACE )
314 HW_GPU_STATUS |= frame_counter << 31;
ef79bbde 315 }
61ef5cf4 316
317 // Schedule next call, in hsyncs
318 hsync_steps = SpuUpdInterval[Config.PsxType] - spuSyncCount;
319 next_vsync = VBlankStart[Config.PsxType] - hSyncCount; // ok to overflow
320 next_lace = HSyncTotal[Config.PsxType] - hSyncCount;
321 if( next_vsync && next_vsync < hsync_steps )
322 hsync_steps = next_vsync;
323 if( next_lace && next_lace < hsync_steps )
324 hsync_steps = next_lace;
61ef5cf4 325
326 rcnts[3].cycleStart = cycle - leftover_cycles;
4f55097d 327 if (Config.PsxType)
328 // 20.12 precision, clk / 50 / 313 ~= 2164.14
329 base_cycle += hsync_steps * 8864320;
330 else
331 // clk / 60 / 263 ~= 2146.31
332 base_cycle += hsync_steps * 8791293;
333 rcnts[3].cycle = base_cycle >> 12;
334 base_cycle &= 0xfff;
61ef5cf4 335 psxRcntSet();
ef79bbde
P
336 }
337
61ef5cf4 338#ifndef NDEBUG
ef79bbde 339 DebugVSync();
61ef5cf4 340#endif
ef79bbde
P
341}
342
343/******************************************************************************/
344
345void psxRcntWcount( u32 index, u32 value )
346{
347 verboseLog( 2, "[RCNT %i] wcount: %x\n", index, value );
348
ef79bbde
P
349 _psxRcntWcount( index, value );
350 psxRcntSet();
351}
352
353void psxRcntWmode( u32 index, u32 value )
354{
355 verboseLog( 1, "[RCNT %i] wmode: %x\n", index, value );
356
ef79bbde
P
357 rcnts[index].mode = value;
358 rcnts[index].irqState = 0;
359
360 switch( index )
361 {
362 case 0:
363 if( value & Rc0PixelClock )
364 {
365 rcnts[index].rate = 5;
366 }
367 else
368 {
369 rcnts[index].rate = 1;
370 }
371 break;
372 case 1:
373 if( value & Rc1HSyncClock )
374 {
375 rcnts[index].rate = (PSXCLK / (FrameRate[Config.PsxType] * HSyncTotal[Config.PsxType]));
376 }
377 else
378 {
379 rcnts[index].rate = 1;
380 }
381 break;
382 case 2:
383 if( value & Rc2OneEighthClock )
384 {
385 rcnts[index].rate = 8;
386 }
387 else
388 {
389 rcnts[index].rate = 1;
390 }
391
392 // TODO: wcount must work.
393 if( value & Rc2Disable )
394 {
395 rcnts[index].rate = 0xffffffff;
396 }
397 break;
398 }
399
400 _psxRcntWcount( index, 0 );
401 psxRcntSet();
402}
403
404void psxRcntWtarget( u32 index, u32 value )
405{
406 verboseLog( 1, "[RCNT %i] wtarget: %x\n", index, value );
407
ef79bbde
P
408 rcnts[index].target = value;
409
410 _psxRcntWcount( index, _psxRcntRcount( index ) );
411 psxRcntSet();
412}
413
414/******************************************************************************/
415
416u32 psxRcntRcount( u32 index )
417{
418 u32 count;
419
ef79bbde
P
420 count = _psxRcntRcount( index );
421
422 // Parasite Eve 2 fix.
423 if( Config.RCntFix )
424 {
425 if( index == 2 )
426 {
427 if( rcnts[index].counterState == CountToTarget )
428 {
429 count /= BIAS;
430 }
431 }
432 }
433
434 verboseLog( 2, "[RCNT %i] rcount: %x\n", index, count );
435
436 return count;
437}
438
439u32 psxRcntRmode( u32 index )
440{
441 u16 mode;
442
ef79bbde
P
443 mode = rcnts[index].mode;
444 rcnts[index].mode &= 0xe7ff;
445
446 verboseLog( 2, "[RCNT %i] rmode: %x\n", index, mode );
447
448 return mode;
449}
450
451u32 psxRcntRtarget( u32 index )
452{
453 verboseLog( 2, "[RCNT %i] rtarget: %x\n", index, rcnts[index].target );
454
455 return rcnts[index].target;
456}
457
458/******************************************************************************/
459
460void psxRcntInit()
461{
462 s32 i;
463
464 // rcnt 0.
465 rcnts[0].rate = 1;
466 rcnts[0].irq = 0x10;
467
468 // rcnt 1.
469 rcnts[1].rate = 1;
470 rcnts[1].irq = 0x20;
471
472 // rcnt 2.
473 rcnts[2].rate = 1;
474 rcnts[2].irq = 0x40;
475
476 // rcnt base.
477 rcnts[3].rate = 1;
478 rcnts[3].mode = RcCountToTarget;
479 rcnts[3].target = (PSXCLK / (FrameRate[Config.PsxType] * HSyncTotal[Config.PsxType]));
480
481 for( i = 0; i < CounterQuantity; ++i )
482 {
483 _psxRcntWcount( i, 0 );
484 }
485
c62b43c9 486 hSyncCount = 0;
487 spuSyncCount = 0;
61ef5cf4 488 hsync_steps = 1;
c62b43c9 489
ef79bbde
P
490 psxRcntSet();
491}
492
493/******************************************************************************/
494
495s32 psxRcntFreeze( gzFile f, s32 Mode )
496{
497 gzfreeze( &rcnts, sizeof(rcnts) );
498 gzfreeze( &hSyncCount, sizeof(hSyncCount) );
499 gzfreeze( &spuSyncCount, sizeof(spuSyncCount) );
500 gzfreeze( &psxNextCounter, sizeof(psxNextCounter) );
501 gzfreeze( &psxNextsCounter, sizeof(psxNextsCounter) );
502
61ef5cf4 503 if (Mode == 0)
504 hsync_steps = (psxRegs.cycle - rcnts[3].cycleStart) / rcnts[3].target;
505
4f55097d 506 base_cycle = 0;
507
ef79bbde
P
508 return 0;
509}
510
511/******************************************************************************/