main.c
22.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
/**************************************************************************
* *
* Copyright (C) 1994, Silicon Graphics, Inc. *
* *
* These coded instructions, statements, and computer programs contain *
* unpublished proprietary information of Silicon Graphics, Inc., and *
* are protected by Federal copyright law. They may not be disclosed *
* to third parties or copied or duplicated in any form, in whole or *
* in part, without the prior written consent of Silicon Graphics, Inc. *
* *
*************************************************************************/
/*
* File: main.c
*
*
* This application is a test-bed of single frame tests for RDP
* verification. The idea is that each frame possibly uses a different
* dataset (see static.c) to render a particular test.
*
* Since this 'application' is not an animation, it is a sequence
* of single-frame tests, it is best to run it without double buffering (-s):
*
* emulate -s -a "-o 2" rdpverif rom
*
* Use the -a flag to emulate to pass arguments through to this app.
*
* NOTE:
* This test-bed is composed of some shared code, and test-specific
* code. To add or modify a test case, you should only touch the
* test-specific code. Modifying shared code might break other tests.
*
* FILES THAT ARE SHARED WITH OTHER TESTS: (don't modify)
*
* main.c
* init.c
* dynamic.c
* zbuffer.c
* spec
*
* FILES THAT ARE TEST-SPECIFIC: (may modify)
*
* static.c (holds static display list data for tests)
* rdpverif.h (exports info to main.c, etc.)
* rdpverif.c (holds test frame procedures, etc.)
* <any related include files> (textures, etc.)
* Makefile (make test rules)
*
*
* TO ADD A TEST CASE:
* New test cases require that you add:
*
* static.c - add static display list for the test.
* rdpverif.h - extern the static display list
* rdpverif.c - add the procedure to be called to
* perform the test case. (also put it
* in the testCaseProc table)
* - put the static display list pointer
* in the testList table.
*
* plus any new textures, include files, etc.
*
* All locations are marked with comments that say "ADD TEST CASE"
* and give some hints what you need to do there.
*
* ADVANCED USAGE:
* You could re-use test case procedures or data, as long as you
* coordinate with all the tests that share it. It is a bad idea
* to share data or procedures with a test that someone else may
* go in and modify.
*
* If your test case needs a command line argument, that isn't handled
* too cleanly. You would have to add it to main.c, and export the
* global variables, etc. (messy)
*
* This test suite favors single-frame tests. Animation support is clumsy.
*
* Fri Oct 14 11:18:33 PDT 1994
*
*/
#include <ultra64.h>
#ifdef _EMULATOR
# include <em.h> /* Only if using emulator */
# include <verify.h>
#endif
#include <ramrom.h>
#include "rdpverif.h"
#ifdef _EMULATOR
#define PRINTF emPrintf
#elif defined( _HW_VERSION_1 )
#define PRINTF rmonPrintf
#else
#define PRINTF osSyncPrintf
#endif
#ifndef _EMULATOR
#include "controller.h"
#endif
/*
* Symbol genererated by "makerom" to indicate the end of the code segment
* in virtual (and physical) memory
*/
extern char _codeSegmentEnd[];
/* these are fixed sizes: */
#define SP_UCODE_SIZE 4096
#define SP_UCODE_DATA_SIZE 2048
/*
* Symbols generated by "makerom" to tell us where the static segment is
* in ROM.
*/
extern char _staticSegmentRomStart[], _staticSegmentRomEnd[];
/*
* Stacks for the threads as well as message queues for synchronization
*/
u64 bootStack[STACKSIZE/sizeof(u64)];
static int uselines = 0;
static int useblack = 0;
static void idle(void *);
static void mainproc(void *);
static OSThread idleThread;
static u64 idleThreadStack[STACKSIZE/sizeof(u64)];
static OSThread mainThread;
static u64 mainThreadStack[STACKSIZE/sizeof(u64)];
static OSThread rmonThread;
static u64 rmonStack[RMON_STACKSIZE/sizeof(u64)];
/* this number (the depth of the message queue) needs to be equal
* to the maximum number of possible overlapping PI requests.
* For this app, 1 or 2 is probably plenty, other apps might
* require a lot more.
*/
#define NUM_PI_MSGS 8
static OSMesg PiMessages[NUM_PI_MSGS];
static OSMesgQueue PiMessageQ;
OSMesgQueue dmaMessageQ, rspMessageQ, rdpMessageQ, retraceMessageQ;
OSMesg dmaMessageBuf, rspMessageBuf, rdpMessageBuf, retraceMessageBuf;
OSMesg dummyMessage;
OSIoMesg dmaIOMessageBuf;
/*
* Dynamic segment in code space. Needs OS_K0_TO_PHYSICAL()...
*/
Dynamic dynamic;
/*
* necessary for RSP tasks:
*/
u64 dram_stack[SP_DRAM_STACK_SIZE64];
u64 dram_yield[OS_YIELD_DATA_SIZE];
u64 rdp_output_len;
u64 rdp_output[4096*16];
/*
* must be in BSS, not on the stack for this to work:
*/
OSTask tlist =
{
M_GFXTASK, /* task type */
OS_TASK_DP_WAIT, /* task flags */
NULL, /* boot ucode pointer (fill in later) */
0, /* boot ucode size (fill in later) */
NULL, /* task ucode pointer (fill in later) */
SP_UCODE_SIZE, /* task ucode size */
NULL, /* task ucode data pointer (fill in later) */
SP_UCODE_DATA_SIZE, /* task ucode data size */
&(dram_stack[0]), /* task dram stack pointer */
SP_DRAM_STACK_SIZE8, /* task dram stack size */
&(rdp_output[0]), /* task output buffer ptr (not always used) */
&rdp_output_len, /* task output buffer size ptr */
NULL, /* task data pointer (fill in later) */
0, /* task data size (fill in later) */
NULL, /* task yield buffer ptr (not used here) */
0 /* task yield buffer size (not used here) */
};
Gfx *glistp; /* global for test case procs */
/*
* global variables for arguments, to control test cases
*/
static int keep_mem = 0;
static int automated = 0;
static int frame_count = 0;
static int output_frame = -1;
static int ani_frame = -1;
static int ani_count = 0, ani_count_max = 0;
static char *output_prefix = "InData/rdpcov";
static int rdp_DRAM_io = 0;
static int rdp_regressionFlag = 0;
static int rdp_mspanFlushFlag = 0;
static int debugflag = 0;
static int draw_buffer = 0;
static int doyieldtest=0;
static int doChecksum=0; /* checksum */
static int printOnly=0; /* printing checksum values only */
static int sequenceTests=0; /* sequence thru all the tests */
static void *cfb_ptrs[2];
static u64 ramrombuf[RAMROM_MSG_SIZE/8];
int controlFrame = 0;
typedef union {
u32 word[2];
u64 force_alignment;
} scratch_t;
scratch_t scratch_buff[1024], *scrp;
#define PI_BASE ((u32)(0xb0700000))
static u32 *piAddr = (u32 *)(PI_BASE);
u32 dummy_val;
/*
* private routine used to parse args.
*/
static int
myatoi(char *str)
{
int log10[5], logn = 0, val = 0, i, pow10 = 1;
if (str == NULL || *str == '\0')
return(-1);
while (*str != '\0') {
if (!(*str == '0' ||
*str == '1' ||
*str == '2' ||
*str == '3' ||
*str == '4' ||
*str == '5' ||
*str == '6' ||
*str == '7' ||
*str == '8' ||
*str == '9')) {
logn = 0;
break;
}
log10[logn++] = *str - '0';
str++;
}
if (logn == 0)
return(-1);
for (i=logn-1; i>= 0; i--) {
val += log10[i] * pow10;
pow10 *= 10;
}
return (val);
}
/*
* private routine used to parse args.
*/
static void
parse_args(char *argstring)
{
int argc = 1, i;
char *arglist[32], **argv = arglist; /* max 32 args */
char *c, *ptr;
if (argstring == NULL || argstring[0] == '\0')
return;
/* re-organize argstring to be like main(argv,argc) */
ptr = argstring;
while (*ptr != '\0') {
while (*ptr != '\0' && (*ptr == ' ')) {
*ptr = '\0';
ptr++;
}
if (*ptr != '\0')
arglist[argc++] = ptr;
while (*ptr != '\0' && (*ptr != ' ')) {
ptr++;
}
}
/* ADD TEST CASE:
* might want to pick off special arguments here.
*/
/* process the arguments: */
while ((argc > 1) && (argv[1][0] == '-')) {
switch(argv[1][1]) {
case 'a':
automated = 1; /* exit after doing cases */
break;
case 'c':
doChecksum = 1;
break;
case 'd':
rdp_DRAM_io = 1; /* route RSP output for RDP back to DRAM */
break;
case 'f':
frame_count = myatoi(argv[2]); /* start frame */
if (frame_count < 0) {
frame_count = 0;
PRINTF("bad frame_count [-f]!\n");
}
controlFrame = frame_count;
argc--;
argv++;
break;
case 'g':
debugflag = 1;
break;
case 'F':
rdp_mspanFlushFlag = 1; /* flush mspan cache by enabling 1PRIM */
break;
case 'm':
keep_mem = 1; /* keep DRAM memory image */
break;
case 'n':
output_prefix = argv[2]; /* output name prefix */
argc--;
argv++;
break;
case 'o':
output_frame = myatoi(argv[2]); /* frame to output */
if (output_frame < 0) {
PRINTF("bad output_frame [-o]!\n");
}
argc--;
argv++;
break;
case 'p':
printOnly = 1;
break;
case 'r':
rdp_regressionFlag = 1; /* when set, shrink viewport for brevity */
break;
case 's':
ani_frame = myatoi(argv[2]); /* animation frame */
if (ani_frame < 0) {
PRINTF("bad frame_count [-s]!\n");
}
argc--;
argv++;
ani_count_max = myatoi(argv[2]); /* animation frame count */
if (ani_count_max < 0) {
ani_count_max = 0;
PRINTF("bad ani_count_max [-s]!\n");
}
argc--;
argv++;
break;
#if 0
case 't': /* "true color" ie 24 bit RGB */
cfb_size = G_IM_SIZ_32b;
break;
#endif
case 'S':
sequenceTests=1;
break;
case 'l':
uselines = 1;
break;
case 'b':
useblack = 1;
break;
case 'y':
doyieldtest = 1;
break;
default:
PRINTF("option [%s] not recognized.\n", argv[1]);
break;
}
argc--;
argv++;
}
}
void
computeChecksum( int testID,
int printOnly,
int avoidTest,
int pixSize,
int width,
int height,
unsigned long *fb,
unsigned long long oldchecksumValue)
{
unsigned long *longPixels;
unsigned long long checksumValue;
int row, column;
if (avoidTest && !printOnly)
return;
/*
* checksum calculates 32 bits, so if 16 bit fb, than 2 pixels at a time.
* if 8 bit fb, than 4 pixels at a time
*/
if ( pixSize == G_IM_SIZ_8b )
width >>= 2;
if ( pixSize == G_IM_SIZ_16b )
width >>= 1;
longPixels = (unsigned long *) (fb);
checksumValue = 0;
for (column = 0; column < height; column++)
for (row = 0; row < width; row++)
checksumValue += *longPixels++;
if (oldchecksumValue != checksumValue && !printOnly)
rmonPrintf("ERROR: (%d): exp 0x%llx, computed 0x%llx\n",
testID, oldchecksumValue, checksumValue);
else
rmonPrintf("\t0x%0llx,\n", checksumValue);
/* XXX do the hidden bits */
}
boot(void *arg)
{
int i, *pr;
char *ap;
u32 *argp;
u32 argbuf[16];
osInitialize();
#ifndef _EMULATOR
for (pr = (int *)0xb0700000; (u32)pr < 0xb0702000; pr++)
osPiRawWriteIo((u32)pr, 0x55555555);
#endif
argp = (u32 *)RAMROM_APP_WRITE_ADDR;
for (i=0; i<sizeof(argbuf)/4; i++, argp++) {
osPiRawReadIo((u32)argp, &argbuf[i]); /* Assume no DMA */
}
/* Parse the options */
parse_args((char *)argbuf);
osCreateThread(&idleThread, 1, idle, arg, idleThreadStack+STACKSIZE/sizeof(u64), 10);
osStartThread(&idleThread);
/* never reached */
}
static void
idle(void *arg)
{
/* Initialize video */
osCreateViManager(OS_PRIORITY_VIMGR);
osViSetMode(&osViModeTable[OS_VI_NTSC_LAN1]);
/*
* Start PI Mgr for access to cartridge
*/
osCreatePiManager((OSPri)OS_PRIORITY_PIMGR, &PiMessageQ, PiMessages,
NUM_PI_MSGS);
/*
* Start RMON for debugging & data xfer (make sure to start
* PI Mgr first)
*/
osCreateThread(&rmonThread, 0, rmonMain, (void *)0,
rmonStack+RMON_STACKSIZE/sizeof(u64), OS_PRIORITY_RMON);
osStartThread(&rmonThread);
/*
* Create main thread
*/
osCreateThread(&mainThread, 3, mainproc, arg,
mainThreadStack+STACKSIZE/sizeof(u64), 10);
if (!debugflag)
osStartThread(&mainThread);
/*
* Become the idle thread
*/
osSetThreadPri( 0, 0 );
for(;;);
}
static void
mainproc(void *arg)
{
int keep_going = 1;
OSTask *tlistp;
Dynamic *dynamicp;
char *staticSegment;
int testListCount;
int controllerSlot;
#ifdef _EMULATOR
MouseState ms;
/* this structure must be aligned to 64-bit boundary: */
VerifyInfo *info = (VerifyInfo *)osPhysicalToVirtual(VERIFY_INFO_PHYSADDR);
#endif
#ifdef _EMULATOR
/*
* This is how arguments are passed via emulator:
*
* emulate -a "<app args>" rdpverif_em rom_em
*/
parse_args(arg);
#endif
cfb_ptrs[0] = cfb_16_a;
cfb_ptrs[1] = cfb_16_b;
/*
* Setup the message queues
*/
osCreateMesgQueue(&dmaMessageQ, &dmaMessageBuf, 1);
osCreateMesgQueue(&rspMessageQ, &rspMessageBuf, 1);
osSetEventMesg(OS_EVENT_SP, &rspMessageQ, dummyMessage);
osCreateMesgQueue(&rdpMessageQ, &rdpMessageBuf, 1);
osSetEventMesg(OS_EVENT_DP, &rdpMessageQ, dummyMessage);
osCreateMesgQueue(&retraceMessageQ, &retraceMessageBuf, 1);
osViSetEvent(&retraceMessageQ, dummyMessage, 1);
/*
* Stick the static segment right after the code/data segment
*/
staticSegment = _codeSegmentEnd;
osPiStartDma(&dmaIOMessageBuf, OS_MESG_PRI_NORMAL, OS_READ,
(u32)_staticSegmentRomStart, staticSegment,
_staticSegmentRomEnd - _staticSegmentRomStart, &dmaMessageQ);
/*
* Wait for DMA to finish
*/
(void)osRecvMesg(&dmaMessageQ, &dummyMessage, OS_MESG_BLOCK);
/*
* Initialize controller
*/
#ifndef _EMULATOR
controllerSlot = initControllers();
#endif
/*
* count the test cases. Can't use sizeof(), do it
* here.
*/
testListCount = 0;
while (testList[testListCount] != (Gfx *) NULL)
testListCount++;
testListCount--;
#ifndef _EMULATOR
rmonPrintf("testListCount %d\n",testListCount);
#endif
/*
* Main game loop
*/
while (keep_going) {
/*
* this is only needed for regman freaks....
*/
piAddr = (u32 *)(PI_BASE);
/*
* Read controller
*/
#ifndef _EMULATOR
readController(controllerSlot);
#endif
/*
* pointers to build the display list.
*/
tlistp = &tlist;
dynamicp = &dynamic;
glistp = &(dynamicp->glist[0]);
/*
* Tell RCP where each segment is
*/
gSPSegment(glistp++, 0, 0x0); /* K0 (physical) address segment */
gSPSegment(glistp++, STATIC_SEGMENT,
osVirtualToPhysical(staticSegment));
if (rdp_mspanFlushFlag) {
/*
* Force the pipeline to empty after the rendering of each
* display list item, to avoid incurring span buffer cache
* coherency problems with DRAM r-m-w cycles.
*/
gDPPipelineMode(glistp++, G_PM_1PRIMITIVE);
}
gSPDisplayList(glistp++, rdpinit_dl);
gSPDisplayList(glistp++, rspinit_dl);
/*
* If the rdp_regressionFlag is set, apply a 1/4 shrink to the
* viewport so that the tests will render more quickly (because they
* won't be as fill limited). Do this after we invoke the display
* list pointed to by setup_rspstate.
*/
if (rdp_regressionFlag) {
gSPDisplayList(glistp++, regression_viewport);
}
/*
* Clear framebuffer
* doing this as a static display list is a little messier, due
* to cfb pointer conversion...
*/
gDPPipeSync(glistp++);
gDPSetCycleType(glistp++, G_CYC_FILL);
/*
* clear color, cvg = FULL or 1
*/
#ifdef _EMULATOR
gDPSetColorImage(glistp++, G_IM_FMT_RGBA, G_IM_SIZ_16b, SCREEN_WD,
osVirtualToPhysical(cfb_ptrs[draw_buffer]));
#else
gDPSetColorImage(glistp++, G_IM_FMT_RGBA, G_IM_SIZ_16b, SCREEN_WD,
OS_K0_TO_PHYSICAL(cfb_ptrs[draw_buffer]));
#endif
gDPSetFillColor(glistp++, GPACK_RGBA5551(0,0,0,1) << 16 |
GPACK_RGBA5551(0,0,0,1));
gDPPipeSync(glistp++);
gDPFillRectangle(glistp++, 0, 0, SCREEN_WD-1, SCREEN_HT-1);
gDPPipeSync(glistp++);
gDPSetCycleType(glistp++, G_CYC_1CYCLE);
/*
* Clear zbuffer
*/
gDPPipeSync(glistp++);
gDPSetCycleType(glistp++, G_CYC_FILL);
gDPSetDepthImage(glistp++, APP_ZBUFFER);
gDPSetColorImage(glistp++, G_IM_FMT_RGBA, G_IM_SIZ_16b, SCREEN_WD,
APP_ZBUFFER);
gDPSetFillColor(glistp++, GPACK_ZDZ(G_MAXFBZ, 0) << 16 |
GPACK_ZDZ(G_MAXFBZ, 0));
gDPPipeSync(glistp++);
gDPFillRectangle(glistp++, 0, 0, SCREEN_WD-1, SCREEN_HT-1);
gDPPipeSync(glistp++);
gDPSetCycleType(glistp++, G_CYC_1CYCLE);
#ifdef _EMULATOR
gDPSetColorImage(glistp++, G_IM_FMT_RGBA, G_IM_SIZ_16b, SCREEN_WD,
osVirtualToPhysical(cfb_ptrs[draw_buffer]));
#else
gDPSetColorImage(glistp++, G_IM_FMT_RGBA, G_IM_SIZ_16b, SCREEN_WD,
OS_K0_TO_PHYSICAL(cfb_ptrs[draw_buffer]));
#endif
/* end of standard display list part. */
/*
* Setup our dynamic segment, depending on which test:
*/
if (ani_frame < 0 || ani_frame > testListCount) {
if (frame_count > testListCount) {
frame_count = 0;
if (automated)
keep_going = 0;
}
(*testCaseProcs[frame_count])(dynamicp, frame_count);
} else {
if (automated && ani_count >= ani_count_max)
keep_going = 0;
(*testCaseProcs[ani_frame])(dynamicp, ani_frame);
}
/*
* Force top-level display list to have an END.
*/
gSPEndDisplayList(glistp++);
/*
* Build graphics task:
*
*/
tlistp->t.type = M_GFXTASK;
tlistp->t.flags = OS_TASK_DP_WAIT;
tlistp->t.ucode_boot = (u64 *) rspbootTextStart;
tlistp->t.ucode_boot_size = ((int)rspbootTextEnd -
(int)rspbootTextStart);
/*
* choose which ucode to run:
*/
if (rdp_DRAM_io) {
/* re-direct output to DRAM: */
if (uselines) {
tlistp->t.ucode = (u64 *) gspLine3D_dramTextStart;
tlistp->t.ucode_data = (u64 *) gspLine3D_dramDataStart;
} else {
tlistp->t.ucode = (u64 *) gspFast3D_dramTextStart;
tlistp->t.ucode_data = (u64 *) gspFast3D_dramDataStart;
}
} else {
/* RSP output over XBUS to RDP: */
if (uselines) {
tlistp->t.ucode = (u64 *) gspLine3DTextStart;
tlistp->t.ucode_data = (u64 *) gspLine3DDataStart;
} else {
tlistp->t.ucode = (u64 *) gspFast3DTextStart;
tlistp->t.ucode_data = (u64 *) gspFast3DDataStart;
}
}
tlistp->t.ucode_size = SP_UCODE_SIZE;
tlistp->t.ucode_data_size = SP_UCODE_DATA_SIZE;
tlistp->t.dram_stack = (u64 *) &(dram_stack[0]);
tlistp->t.dram_stack_size = SP_DRAM_STACK_SIZE8;
if (rdp_DRAM_io) {
tlistp->t.output_buff = (u64 *) &(rdp_output[0]);
#ifdef _EMULATOR
tlistp->t.output_buff_size = (u64 *) &(info->rdpListSize);
#else
tlistp->t.output_buff_size = (u64 *) &rdp_output_len;
#endif
} else {
tlistp->t.output_buff = (u64 *) 0x0;
tlistp->t.output_buff_size = (u64 *) 0x0;
}
/* initial display list: */
tlistp->t.data_ptr = (u64 *) dynamicp->glist;
tlistp->t.data_size = ((int)(glistp - dynamicp->glist) *
sizeof (Gfx));
tlistp->t.yield_data_ptr = (u64 *) NULL;
tlistp->t.yield_data_size = 0xDA0;
#ifdef _EMULATOR
/*
* Fill in verify info structure: (for verification ONLY)
*/
info->rspListAddr = (unsigned int) tlistp->t.data_ptr;
info->rspListSize = tlistp->t.data_size;
info->rspListType = ((4096-128) << 12) | tlistp->t.type;
info->ucodeTextAddr = (unsigned int) tlistp->t.ucode;
info->ucodeDataAddr = (unsigned int) tlistp->t.ucode_data;
info->ucodeDataSize = tlistp->t.ucode_data_size;
info->dramStackAddr = (unsigned int) tlistp->t.dram_stack;
info->dramStackSize = tlistp->t.dram_stack_size;
info->rdpListSize = 0;
info->rdpListAddr = (unsigned int) tlistp->t.output_buff;
info->bootUcodeAddr = (unsigned int) tlistp->t.ucode_boot;
info->width = SCREEN_WD;
info->height = SCREEN_HT;
info->frameBuffer0Addr = osVirtualToPhysical(cfb_16_a);
info->frameBuffer1Addr = osVirtualToPhysical(cfb_16_b);
info->zBufferAddr = osVirtualToPhysical(zbuffer);
info->magicNumber = MAGICNUMBER; /* Kaelyn's birthday: 0x102594 */
info->version = VERSION;
info->frameBufferFormat = G_IM_FMT_RGBA;
info->frameBufferSize = G_IM_SIZ_16b;
#endif
/*
* Can just flush 16KB and forget about each individual pieces
* of data to flush.
*/
osWritebackDCacheAll();
#ifdef _EMULATOR
/* possibly send display list to RSP simulator: */
if (ani_frame < 0 || ani_frame > testListCount) {
if (frame_count == output_frame) {
emRSPFrame(output_prefix, frame_count, keep_mem, rdp_DRAM_io, 0);
output_frame = -1; /* only output once... */
}
} else {
/*
* using the -s flag (ani_frame) will always cause
* the RSP to be invoked.
*
*/
emRSPFrame(output_prefix, ani_count++, keep_mem, rdp_DRAM_io, 0);
}
#endif
/* unwrap this macro for debugging:
*
* osSpTaskStart(tlistp);
*
*/
osSpTaskLoad(tlistp);
osSpTaskStartGo(tlistp);
#ifdef _EMULATOR
(void)osRecvMesg(&rspMessageQ, &dummyMessage, OS_MESG_BLOCK);
emDisplayBuffer(osVirtualToPhysical(cfb_ptrs[draw_buffer]));
(void)osRecvMesg(&retraceMessageQ, &dummyMessage, OS_MESG_BLOCK);
#else
if (rdp_DRAM_io)
/* wait for SP completion */
(void)osRecvMesg(&rspMessageQ, &dummyMessage, OS_MESG_BLOCK);
else
/* ignore SP completion */
(void)osRecvMesg(&rdpMessageQ, &dummyMessage, OS_MESG_BLOCK);
if (rdp_DRAM_io) {
/*
* Send the DP display list to the DP:
*/
guParseRdpDL(&(rdp_output[0]), (u32)rdp_output_len, 0);
dummy_val = osDpSetNextBuffer(&(rdp_output[0]),
rdp_output_len);
(void)osRecvMesg(&rdpMessageQ, &dummyMessage, OS_MESG_BLOCK);
}
/* setup to swap buffers */
osViSwapBuffer(cfb_ptrs[draw_buffer]);
/* Make sure there isn't an old retrace in queue
* (assumes queue has a depth of 1)
*/
if (MQ_IS_FULL(&retraceMessageQ))
(void)osRecvMesg(&retraceMessageQ, &dummyMessage, OS_MESG_BLOCK);
/* Wait for Vertical retrace to finish swap buffers */
(void)osRecvMesg(&retraceMessageQ, &dummyMessage, OS_MESG_BLOCK);
/*
* do the checksums
*/
if (doChecksum)
computeChecksum(
frame_count,
printOnly,
checksumAttrib[frame_count].avoidtest,
checksumAttrib[frame_count].pixtype,
checksumAttrib[frame_count].width,
checksumAttrib[frame_count].height,
(unsigned long *) cfb_ptrs[draw_buffer],
testChecksums[frame_count]);
draw_buffer ^= 1;
#endif
#ifdef _EMULATOR
if (automated) {
frame_count++;
} else {
emGetMouseState(&ms);
if (ms.buttons & BUTTON_LEFT) {
frame_count++;
while (ms.buttons & BUTTON_LEFT)/* de-bounce mouse state: */
emGetMouseState(&ms);
} else if (ms.buttons & BUTTON_MIDDLE) {
;
} else if (ms.buttons & BUTTON_RIGHT) {
;
}
}
#else
if (sequenceTests) {
controlFrame++;
if (controlFrame == testListCount)
if (doChecksum) osExit(); else while (1);
}
frame_count = controlFrame;
if ((frame_count < 0)||(frame_count > testListCount)) {
frame_count = 0;
controlFrame = 0;
}
#endif
}
#ifdef _EMULATOR
emRSPQuit();
#endif
for(;;);
}