9c07110576b0a6bdcabfbbe7be0443a9c7ac9cba
[megadrive.git] / testpico / main.c
1 /*
2  * This software is released into the public domain.
3  * See UNLICENSE file in top level directory.
4  */
5 #include <stdlib.h>
6 #include <stdarg.h>
7 #include "common.h"
8 #include "asmtools.h"
9
10 #define VDP_DATA_PORT    0xC00000
11 #define VDP_CTRL_PORT    0xC00004
12 #define VDP_HV_COUNTER   0xC00008
13
14 #define TILE_MEM_END     0xB000
15
16 #define FONT_LEN         128
17 #define TILE_FONT_BASE   (TILE_MEM_END - FONT_LEN * 32)
18
19 /* note: using ED menu's layout here.. */
20 #define WPLANE           (TILE_MEM_END + 0x0000)
21 #define HSCRL            (TILE_MEM_END + 0x0800)
22 #define SLIST            (TILE_MEM_END + 0x0C00)
23 #define APLANE           (TILE_MEM_END + 0x1000)
24 #define BPLANE           (TILE_MEM_END + 0x3000)
25
26 #define write16_z80le(a, d) \
27     ((volatile u8 *)(a))[0] = (u8)(d), \
28     ((volatile u8 *)(a))[1] = ((d) >> 8)
29
30 static inline u16 read16_z80le(const void *a_)
31 {
32     volatile const u8 *a = (volatile const u8 *)a_;
33     return a[0] | ((u16)a[1] << 8);
34 }
35
36 #define CTL_WRITE_VRAM(adr) \
37     (((0x4000 | ((adr) & 0x3FFF)) << 16) | ((adr) >> 14) | 0x00)
38 #define CTL_WRITE_VSRAM(adr) \
39     (((0x4000 | ((adr) & 0x3FFF)) << 16) | ((adr) >> 14) | 0x10)
40 #define CTL_WRITE_CRAM(adr) \
41     (((0xC000 | ((adr) & 0x3FFF)) << 16) | ((adr) >> 14) | 0x00)
42 #define CTL_READ_VRAM(adr) \
43     (((0x0000 | ((adr) & 0x3FFF)) << 16) | ((adr) >> 14) | 0x00)
44 #define CTL_READ_VSRAM(adr) \
45     (((0x0000 | ((adr) & 0x3FFF)) << 16) | ((adr) >> 14) | 0x10)
46 #define CTL_READ_CRAM(adr) \
47     (((0x0000 | ((adr) & 0x3FFF)) << 16) | ((adr) >> 14) | 0x20)
48
49 #define CTL_WRITE_DMA 0x80
50
51 #define VDP_setReg(r, v) \
52     write16(VDP_CTRL_PORT, 0x8000 | ((r) << 8) | ((v) & 0xff))
53
54 enum {
55     VDP_MODE1 = 0x00,
56     VDP_MODE2 = 0x01,
57     VDP_NT_SCROLLA = 0x02,
58     VDP_NT_WIN = 0x03,
59     VDP_NT_SCROLLB = 0x04,
60     VDP_SAT_BASE = 0x05,
61     VDP_BACKDROP = 0x07,
62     VDP_MODE3 = 0x0b,
63     VDP_MODE4 = 0x0c,
64     VDP_HSCROLL = 0x0d,
65     VDP_AUTOINC = 0x0f,
66     VDP_SCROLLSZ = 0x10,
67     VDP_DMA_LEN0 = 0x13,
68     VDP_DMA_LEN1 = 0x14,
69     VDP_DMA_SRC0 = 0x15,
70     VDP_DMA_SRC1 = 0x16,
71     VDP_DMA_SRC2 = 0x17,
72 };
73
74 #define VDP_MODE1_PS   0x04
75 #define VDP_MODE1_IE1  0x10 // h int
76 #define VDP_MODE2_MD   0x04
77 #define VDP_MODE2_PAL  0x08 // 30 col
78 #define VDP_MODE2_DMA  0x10
79 #define VDP_MODE2_IE0  0x20 // v int
80 #define VDP_MODE2_DISP 0x40
81 #define VDP_MODE2_128K 0x80
82
83 #define SR_PAL        (1 << 0)
84 #define SR_DMA        (1 << 1)
85 #define SR_HB         (1 << 2)
86 #define SR_VB         (1 << 3)
87 #define SR_ODD        (1 << 4)
88 #define SR_C          (1 << 5)
89 #define SR_SOVR       (1 << 6)
90 #define SR_F          (1 << 7)
91 #define SR_FULL       (1 << 8)
92 #define SR_EMPT       (1 << 9)
93
94 /* cell counts */
95 #define LEFT_BORDER 1   /* lame TV */
96 #define PLANE_W 64
97 #define PLANE_H 32
98 #define CSCREEN_H 28
99
100 /* data.s */
101 extern const u32 font_base[];
102 extern const u8 z80_test[];
103 extern const u8 z80_test_end[];
104
105 static int text_pal;
106
107 static noinline void VDP_drawTextML(const char *str, u16 plane_base,
108     u16 x, u16 y)
109 {
110     const u8 *src = (const u8 *)str;
111     u16 basetile = text_pal << 13;
112     int max_len = 40 - LEFT_BORDER;
113     int len;
114     u32 addr;
115
116     x += LEFT_BORDER;
117
118     for (len = 0; str[len] && len < max_len; len++)
119         ;
120     if (len > (PLANE_W - x))
121         len = PLANE_W - x;
122
123     addr = plane_base + ((x + (PLANE_W * y)) << 1);
124     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(addr));
125
126     while (len-- > 0) {
127         write16(VDP_DATA_PORT,
128             basetile | ((*src++) - 32 + TILE_FONT_BASE / 32));
129     }
130 }
131
132 static int printf_ypos;
133
134 static void printf_line(int x, const char *buf)
135 {
136     u32 addr;
137     int i;
138
139     VDP_drawTextML(buf, APLANE, x, printf_ypos++ & (PLANE_H - 1));
140
141     if (printf_ypos >= CSCREEN_H) {
142         /* clear next line */
143         addr = APLANE;
144         addr += (PLANE_W * (printf_ypos & (PLANE_H - 1))) << 1;
145         write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(addr));
146         for (i = 0; i < 40 / 2; i++)
147             write32(VDP_DATA_PORT, 0);
148
149         /* scroll plane */
150         write32(VDP_CTRL_PORT, CTL_WRITE_VSRAM(0));
151         write16(VDP_DATA_PORT, (printf_ypos - CSCREEN_H + 1) * 8);
152     }
153 }
154
155 #define PRINTF_LEN 40
156
157 static int printf_xpos;
158
159 static noinline int printf(const char *fmt, ...)
160 {
161     static const char hexchars[] = "0123456789abcdef";
162     char c, buf[PRINTF_LEN + 11 + 1];
163     const char *s;
164     va_list ap;
165     int ival;
166     u32 uval;
167     int d = 0;
168     int i, j;
169
170     va_start(ap, fmt);
171     for (d = 0; *fmt; ) {
172         int prefix0 = 0;
173         int fwidth = 0;
174
175         c = *fmt++;
176         if (d < PRINTF_LEN)
177             buf[d] = c;
178
179         if (c != '%') {
180             if (c == '\n') {
181                 buf[d] = 0;
182                 printf_line(printf_xpos, buf);
183                 d = 0;
184                 printf_xpos = 0;
185                 continue;
186             }
187             d++;
188             continue;
189         }
190         if (d >= PRINTF_LEN)
191             continue;
192
193         if (*fmt == '0') {
194             prefix0 = 1;
195             fmt++;
196         }
197
198         while ('1' <= *fmt && *fmt <= '9') {
199             fwidth = fwidth * 10 + *fmt - '0';
200             fmt++;
201         }
202
203         switch (*fmt++) {
204         case '%':
205             d++;
206             break;
207         case 'd':
208         case 'i':
209             ival = va_arg(ap, int);
210             if (ival < 0) {
211                 buf[d++] = '-';
212                 ival = -ival;
213             }
214             for (i = 1000000000; i >= 10; i /= 10)
215                 if (ival >= i)
216                     break;
217             for (; i >= 10; i /= 10) {
218                 buf[d++] = '0' + ival / i;
219                 ival %= i;
220             }
221             buf[d++] = '0' + ival;
222             break;
223         case 'x':
224             uval = va_arg(ap, int);
225             while (fwidth > 1 && uval < (1 << (fwidth - 1) * 4)) {
226                 buf[d++] = prefix0 ? '0' : ' ';
227                 fwidth--;
228             }
229             for (j = 1; j < 8 && uval >= (1 << j * 4); j++)
230                 ;
231             for (j--; j >= 0; j--)
232                 buf[d++] = hexchars[(uval >> j * 4) & 0x0f];
233             break;
234         case 's':
235             s = va_arg(ap, char *);
236             while (*s && d < PRINTF_LEN)
237                 buf[d++] = *s++;
238             break;
239         default:
240             // don't handle, for now
241             d++;
242             va_arg(ap, void *);
243             break;
244         }
245     }
246     buf[d] = 0;
247     va_end(ap);
248
249     if (d != 0) {
250         // line without \n
251         VDP_drawTextML(buf, APLANE, printf_xpos,
252             printf_ypos & (PLANE_H - 1));
253         printf_xpos += d;
254     }
255
256     return d; // wrong..
257 }
258
259 static const char *exc_names[] = {
260     NULL,
261     NULL,
262     "Bus Error",
263     "Address Error",
264     "Illegal Instruction",
265     "Zero Divide",
266     "CHK Instruction",
267     "TRAPV Instruction",
268     "Privilege Violation",  /*  8  8 */
269     "Trace",
270     "Line 1010 Emulator",
271     "Line 1111 Emulator",
272     NULL,
273     NULL,
274     NULL,
275     "Uninitialized Interrupt",
276     NULL,                   /* 10 16 */
277     NULL,
278     NULL,
279     NULL,
280     NULL,
281     NULL,
282     NULL,
283     NULL,
284     "Spurious Interrupt",   /* 18 24 */
285     "l1 irq",
286     "l2 irq",
287     "l3 irq",
288     "l4 irq",
289     "l5 irq",
290     "l6 irq",
291     "l7 irq",
292 };
293
294 struct exc_frame {
295     u32 dr[8];
296     u32 ar[8];
297     u16 ecxnum; // from handler
298     union {
299         struct {
300             u16 sr;
301             u32 pc;
302         } g _packed;
303         struct {
304             u16 fc;
305             u32 addr;
306             u16 ir;
307             u16 sr;
308             u32 pc;
309         } bae _packed; // bus/address error frame
310     };
311 } _packed;
312
313 void exception(const struct exc_frame *f)
314 {
315     u32 *sp, sp_add;
316     int i;
317
318     while (read16(VDP_CTRL_PORT) & 2)
319         ;
320     VDP_setReg(VDP_MODE1, VDP_MODE1_PS);
321     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DISP);
322     /* adjust scroll */
323     write32(VDP_CTRL_PORT, CTL_WRITE_VSRAM(0));
324     write16(VDP_DATA_PORT,
325       printf_ypos >= CSCREEN_H ?
326         (printf_ypos - CSCREEN_H + 1) * 8 : 0);
327
328     printf("exception %i ", f->ecxnum);
329     if (f->ecxnum < ARRAY_SIZE(exc_names) && exc_names[f->ecxnum] != NULL)
330         printf("(%s)", exc_names[f->ecxnum]);
331     if (f->ecxnum < 4)
332         printf(" (%s)", (f->bae.fc & 0x10) ? "r" : "w");
333     printf("    \n");
334
335     if (f->ecxnum < 4) {
336         printf("  PC: %08x SR: %04x            \n", f->bae.pc, f->bae.sr);
337         printf("addr: %08x IR: %04x FC: %02x   \n",
338                f->bae.addr, f->bae.ir, f->bae.fc);
339         sp_add = 14;
340     }
341     else {
342         printf("  PC: %08x SR: %04x            \n", f->g.pc, f->g.sr);
343         sp_add = 6;
344     }
345     for (i = 0; i < 8; i++)
346         printf("  D%d: %08x A%d: %08x    \n", i, f->dr[i], i, f->ar[i]);
347     printf("                               \n");
348     sp = (u32 *)(f->ar[7] + sp_add);
349     printf(" %08x %08x %08x %08x\n", sp[0], sp[1], sp[2], sp[3]);
350     printf(" %08x %08x %08x %08x\n", sp[4], sp[5], sp[6], sp[7]);
351 }
352
353 // ---
354
355 static void setup_default_palette(void)
356 {
357     write32(VDP_CTRL_PORT, CTL_WRITE_CRAM(0));
358     write32(VDP_DATA_PORT, 0);
359     write32(VDP_CTRL_PORT, CTL_WRITE_CRAM(15 * 2)); // font normal
360     write16(VDP_DATA_PORT, 0xeee);
361     write32(VDP_CTRL_PORT, CTL_WRITE_CRAM(31 * 2)); // green
362     write16(VDP_DATA_PORT, 0x0e0);
363     write32(VDP_CTRL_PORT, CTL_WRITE_CRAM(47 * 2)); // red
364     write16(VDP_DATA_PORT, 0x00e);
365 }
366
367 static void do_setup_dma(const void *src_, u16 words)
368 {
369     u32 src = (u32)src_;
370     // VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA);
371     VDP_setReg(VDP_DMA_LEN0, words);
372     VDP_setReg(VDP_DMA_LEN1, words >> 8);
373     VDP_setReg(VDP_DMA_SRC0, src >> 1);
374     VDP_setReg(VDP_DMA_SRC1, src >> 9);
375     VDP_setReg(VDP_DMA_SRC2, src >> 17);
376     // write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(addr) | CTL_WRITE_DMA);
377 }
378
379 static void vdp_wait_for_fifo_empty(void)
380 {
381     while (!(read16(VDP_CTRL_PORT) & 0x200))
382         /* fifo not empty */;
383 }
384
385 static void vdp_wait_for_dma_idle(void)
386 {
387     while (read16(VDP_CTRL_PORT) & 2)
388         /* dma busy */;
389 }
390
391 static void vdp_wait_for_line_0(void)
392 {
393     // in PAL vcounter reports 0 twice in a frame,
394     // so wait for vblank to clear first
395     while (!(read16(VDP_CTRL_PORT) & 8))
396         /* not blanking */;
397     while (read16(VDP_CTRL_PORT) & 8)
398         /* blanking */;
399     while (read8(VDP_HV_COUNTER) != 0)
400         ;
401 }
402
403 static void t_dma_zero_wrap_early(void)
404 {
405     const u32 *src = (const u32 *)0x3c0000;
406     u32 *ram = (u32 *)0xff0000;
407
408     do_setup_dma(src + 4, 2);
409     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0) | CTL_WRITE_DMA);
410     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0) | CTL_WRITE_DMA);
411
412     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0));
413     ram[0] = read32(VDP_DATA_PORT);
414     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0xfffc));
415     ram[1] = read32(VDP_DATA_PORT);
416 }
417
418 static void t_dma_zero_fill_early(void)
419 {
420     u32 *ram = (u32 *)0xff0000;
421
422     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0));
423     write32(VDP_DATA_PORT, 0);
424     write32(VDP_DATA_PORT, 0);
425     write32(VDP_DATA_PORT, 0);
426     write32(VDP_DATA_PORT, 0);
427
428     VDP_setReg(VDP_AUTOINC, 1);
429     VDP_setReg(VDP_DMA_SRC2, 0x80);
430     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(1) | CTL_WRITE_DMA);
431     write16(VDP_DATA_PORT, 0x1122);
432     ram[2] = read16(VDP_CTRL_PORT);
433     vdp_wait_for_dma_idle();
434
435     VDP_setReg(VDP_AUTOINC, 2);
436     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0));
437     ram[3] = read32(VDP_DATA_PORT);
438 }
439
440 #define expect(ok_, v0_, v1_) \
441 do { if ((v0_) != (v1_)) { \
442     printf("%s: %08x %08x\n", #v0_, v0_, v1_); \
443     ok_ = 0; \
444 }} while (0)
445
446 #define expect_range(ok_, v0_, vmin_, vmax_) \
447 do { if ((v0_) < (vmin_) || (v0_) > (vmax_)) { \
448     printf("%s: %02x /%02x-%02x\n", #v0_, v0_, vmin_, vmax_); \
449     ok_ = 0; \
450 }} while (0)
451
452 #define expect_bits(ok_, v0_, val_, mask_) \
453 do { if (((v0_) & (mask_)) != (val_)) { \
454     printf("%s: %04x & %04x != %04x\n", #v0_, v0_, mask_, val_); \
455     ok_ = 0; \
456 }} while (0)
457
458 static int t_dma_zero_wrap(void)
459 {
460     const u32 *src = (const u32 *)0x3c0000;
461     const u32 *ram = (const u32 *)0xff0000;
462     int ok = 1;
463
464     expect(ok, ram[0], src[5 + 0x10000/4]);
465     expect(ok, ram[1], src[4]);
466     return ok;
467 }
468
469 static int t_dma_zero_fill(void)
470 {
471     const u32 *ram = (const u32 *)0xff0000;
472     u32 v0 = ram[2] & 2;
473     int ok = 1;
474
475     expect(ok, v0, 2);
476     expect(ok, ram[3], 0x11111111);
477     return ok;
478 }
479
480 static int t_dma_ram_wrap(void)
481 {
482     u32 *ram = (u32 *)0xff0000;
483     u32 saved, v0, v1;
484     int ok = 1;
485
486     saved = read32(&ram[0x10000/4 - 1]);
487     ram[0x10000/4 - 1] = 0x01020304;
488     ram[0] = 0x05060708;
489     do_setup_dma(&ram[0x10000/4 - 1], 4);
490     mem_barrier();
491     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100) | CTL_WRITE_DMA);
492
493     mem_barrier();
494     write32(&ram[0x10000/4 - 1], saved);
495
496     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x100));
497     v0 = read32(VDP_DATA_PORT);
498     v1 = read32(VDP_DATA_PORT);
499
500     expect(ok, v0, 0x01020304);
501     expect(ok, v1, 0x05060708);
502     return ok;
503 }
504
505 // test no src reprogram, only len0
506 static int t_dma_multi(void)
507 {
508     const u32 *src = (const u32 *)0x3c0000;
509     u32 v0, v1;
510     int ok = 1;
511
512     do_setup_dma(src, 2);
513     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100) | CTL_WRITE_DMA);
514     VDP_setReg(VDP_DMA_LEN0, 2);
515     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x104) | CTL_WRITE_DMA);
516
517     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x100));
518     v0 = read32(VDP_DATA_PORT);
519     v1 = read32(VDP_DATA_PORT);
520
521     expect(ok, v0, src[0]);
522     expect(ok, v1, src[1]);
523     return ok;
524 }
525
526 static int t_dma_cram_wrap(void)
527 {
528     u32 *ram = (u32 *)0xff0000;
529     u32 v0, v1;
530     int ok = 1;
531
532     write32(VDP_CTRL_PORT, CTL_WRITE_CRAM(0));
533     write32(VDP_DATA_PORT, 0);
534
535     ram[0] = 0x0ec20ec4;
536     ram[1] = 0x0ec60ec8;
537     mem_barrier();
538     do_setup_dma(ram, 4);
539     write32(VDP_CTRL_PORT, CTL_WRITE_CRAM(0x7c | 0xff81) | CTL_WRITE_DMA);
540
541     write32(VDP_CTRL_PORT, CTL_READ_CRAM(0x7c));
542     v0 = read32(VDP_DATA_PORT) & 0x0eee0eee;
543     write32(VDP_CTRL_PORT, CTL_READ_CRAM(0));
544     v1 = read32(VDP_DATA_PORT) & 0x0eee0eee;
545
546     setup_default_palette();
547
548     expect(ok, v0, ram[0]);
549     expect(ok, v1, ram[1]);
550     return ok;
551 }
552
553 static int t_dma_vsram_wrap(void)
554 {
555     u32 *ram32 = (u32 *)0xff0000;
556     u16 *ram16 = (u16 *)0xff0000;
557     u32 v0, v1;
558     int ok = 1;
559     int i;
560
561     write32(VDP_CTRL_PORT, CTL_WRITE_VSRAM(0));
562     write32(VDP_DATA_PORT, 0);
563
564     for (i = 0; i < 0x48/2; i++)
565         ram16[i] = i + 1;
566     mem_barrier();
567     do_setup_dma(ram16, 0x48/2);
568     write32(VDP_CTRL_PORT, CTL_WRITE_VSRAM(0x3c | 0xff81) | CTL_WRITE_DMA);
569
570     write32(VDP_CTRL_PORT, CTL_READ_VSRAM(0x3c));
571     v0 = read32(VDP_DATA_PORT) & 0x03ff03ff;
572     write32(VDP_CTRL_PORT, CTL_READ_VSRAM(0));
573     v1 = read32(VDP_DATA_PORT) & 0x03ff03ff;
574
575     write32(VDP_CTRL_PORT, CTL_WRITE_VSRAM(0));
576     write32(VDP_DATA_PORT, 0);
577
578     expect(ok, v0, ram32[0]);
579     expect(ok, v1, ram32[0x48/4 - 1]);
580     return ok;
581 }
582
583 static int t_dma_and_data(void)
584 {
585     const u32 *src = (const u32 *)0x3c0000;
586     u32 v0, v1;
587     int ok = 1;
588
589     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100));
590     write32(VDP_DATA_PORT, 0);
591
592     do_setup_dma(src, 2);
593     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0xfc) | CTL_WRITE_DMA);
594     write32(VDP_DATA_PORT, 0x5ec8a248);
595
596     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0xfc));
597     v0 = read32(VDP_DATA_PORT);
598     v1 = read32(VDP_DATA_PORT);
599
600     expect(ok, v0, src[0]);
601     expect(ok, v1, 0x5ec8a248);
602     return ok;
603 }
604
605 static int t_dma_short_cmd(void)
606 {
607     const u32 *src = (const u32 *)0x3c0000;
608     u32 v0, v1, v2;
609     int ok = 1;
610
611     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x3ff4));
612     write32(VDP_DATA_PORT, 0x10111213);
613     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0xfff0));
614     write32(VDP_DATA_PORT, 0x20212223);
615     write32(VDP_DATA_PORT, 0x30313233);
616     vdp_wait_for_fifo_empty();
617
618     do_setup_dma(src, 2);
619     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0xfff0) | CTL_WRITE_DMA);
620     write16(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x3ff4) >> 16);
621     write32(VDP_DATA_PORT, 0x40414243);
622
623     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x3ff4));
624     v0 = read32(VDP_DATA_PORT);
625     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0xfff0));
626     v1 = read32(VDP_DATA_PORT);
627     v2 = read32(VDP_DATA_PORT);
628
629     expect(ok, v0, 0x10111213);
630     expect(ok, v1, src[0]);
631     expect(ok, v2, 0x40414243);
632     return ok;
633 }
634
635 static int t_dma_fill3_odd(void)
636 {
637     u32 v0, v1, v2;
638     int ok = 1;
639
640     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100));
641     write32(VDP_DATA_PORT, 0);
642     write32(VDP_DATA_PORT, 0);
643     write32(VDP_DATA_PORT, 0);
644     vdp_wait_for_fifo_empty();
645
646     VDP_setReg(VDP_AUTOINC, 3);
647     VDP_setReg(VDP_DMA_LEN0, 3);
648     VDP_setReg(VDP_DMA_SRC2, 0x80);
649     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x101) | CTL_WRITE_DMA);
650     write16(VDP_DATA_PORT, 0x1122);
651     vdp_wait_for_dma_idle();
652
653     VDP_setReg(VDP_AUTOINC, 2);
654     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x100));
655     v0 = read32(VDP_DATA_PORT);
656     v1 = read32(VDP_DATA_PORT);
657     v2 = read32(VDP_DATA_PORT);
658
659     expect(ok, v0, 0x22110000);
660     expect(ok, v1, 0x00111100);
661     expect(ok, v2, 0x00000011);
662     return ok;
663 }
664
665 static int t_dma_fill3_even(void)
666 {
667     u32 v0, v1, v2;
668     int ok = 1;
669
670     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100));
671     write32(VDP_DATA_PORT, 0);
672     write32(VDP_DATA_PORT, 0);
673     write32(VDP_DATA_PORT, 0);
674     vdp_wait_for_fifo_empty();
675
676     VDP_setReg(VDP_AUTOINC, 3);
677     VDP_setReg(VDP_DMA_LEN0, 3);
678     VDP_setReg(VDP_DMA_SRC2, 0x80);
679     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100) | CTL_WRITE_DMA);
680     write16(VDP_DATA_PORT, 0x1122);
681     vdp_wait_for_dma_idle();
682
683     VDP_setReg(VDP_AUTOINC, 2);
684     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x100));
685     v0 = read32(VDP_DATA_PORT);
686     v1 = read32(VDP_DATA_PORT);
687     v2 = read32(VDP_DATA_PORT);
688
689     expect(ok, v0, 0x11221100);
690     expect(ok, v1, 0x00000011);
691     expect(ok, v2, 0x11000000);
692     return ok;
693 }
694
695 static unused int t_dma_fill3_vsram(void)
696 {
697     u32 v0, v1, v2;
698     int ok = 1;
699
700     write32(VDP_CTRL_PORT, CTL_WRITE_VSRAM(0));
701     write32(VDP_DATA_PORT, 0);
702     write32(VDP_DATA_PORT, 0);
703     write32(VDP_DATA_PORT, 0);
704
705     write16(VDP_DATA_PORT, 0x0111);
706     write16(VDP_DATA_PORT, 0x0222);
707     write16(VDP_DATA_PORT, 0x0333);
708     vdp_wait_for_fifo_empty();
709
710     VDP_setReg(VDP_AUTOINC, 3);
711     VDP_setReg(VDP_DMA_LEN0, 3);
712     VDP_setReg(VDP_DMA_SRC2, 0x80);
713     write32(VDP_CTRL_PORT, CTL_WRITE_VSRAM(1) | CTL_WRITE_DMA);
714     write16(VDP_DATA_PORT, 0x0102);
715     vdp_wait_for_dma_idle();
716
717     VDP_setReg(VDP_AUTOINC, 2);
718     write32(VDP_CTRL_PORT, CTL_READ_VSRAM(0));
719     v0 = read32(VDP_DATA_PORT);
720     v1 = read32(VDP_DATA_PORT);
721     v2 = read32(VDP_DATA_PORT);
722
723     write32(VDP_CTRL_PORT, CTL_WRITE_VSRAM(0));
724     write32(VDP_DATA_PORT, 0);
725
726     expect(ok, v0, 0x01020000);
727     expect(ok, v1, 0x01110111);
728     expect(ok, v2, 0x00000111);
729     return ok;
730 }
731
732 static int t_dma_fill_dis(void)
733 {
734     u32 v0, v1;
735     int ok = 1;
736
737     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100));
738     write32(VDP_DATA_PORT, 0);
739     write32(VDP_DATA_PORT, 0);
740
741     VDP_setReg(VDP_DMA_LEN0, 1);
742     VDP_setReg(VDP_DMA_SRC2, 0x80);
743     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100) | CTL_WRITE_DMA);
744     VDP_setReg(VDP_MODE2, VDP_MODE2_MD);
745     write16(VDP_DATA_PORT, 0x1122);
746     vdp_wait_for_dma_idle();
747
748     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
749     write16(VDP_DATA_PORT, 0x3344);
750     vdp_wait_for_dma_idle();
751
752     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x100));
753     v0 = read32(VDP_DATA_PORT);
754     v1 = read32(VDP_DATA_PORT);
755
756     expect(ok, v0, 0);
757     expect(ok, v1, 0);
758     return ok;
759 }
760
761 static int t_dma_fill_src(void)
762 {
763     const u32 *src = (const u32 *)0x3c0000;
764     u32 v0, v1;
765     int ok = 1;
766
767     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100));
768     write32(VDP_DATA_PORT, 0);
769
770     // do_setup_dma(src, 2); // hang, can't write src2 twice
771     VDP_setReg(VDP_DMA_LEN0, 2);
772     VDP_setReg(VDP_DMA_SRC0, (u32)src >> 1);
773     VDP_setReg(VDP_DMA_SRC1, (u32)src >> 9);
774     VDP_setReg(VDP_DMA_SRC2, 0x80);
775     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100) | CTL_WRITE_DMA);
776     write16(VDP_DATA_PORT, 0x1122);
777     vdp_wait_for_dma_idle();
778
779     VDP_setReg(VDP_DMA_LEN0, 2);
780     VDP_setReg(VDP_DMA_SRC2, (u32)src >> 17);
781     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x104) | CTL_WRITE_DMA);
782
783     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x100));
784     v0 = read32(VDP_DATA_PORT);
785     v1 = read32(VDP_DATA_PORT);
786
787     expect(ok, v0, 0x11220011);
788     expect(ok, v1, src[1]);
789     return ok;
790 }
791
792 // (((a & 2) >> 1) ^ 1) | ((a & $400) >> 9) | (a & $3FC) | ((a & $1F800) >> 1)
793 static int t_dma_128k(void)
794 {
795     u16 *ram = (u16 *)0xff0000;
796     u32 v0, v1;
797     int ok = 1;
798
799     ram[0] = 0x5a11;
800     ram[1] = 0x5a22;
801     ram[2] = 0x5a33;
802
803     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100));
804     write32(VDP_DATA_PORT, 0x01020304);
805     write32(VDP_DATA_PORT, 0x05060708);
806     vdp_wait_for_fifo_empty();
807
808     mem_barrier();
809     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_128K);
810     do_setup_dma(ram, 3);
811     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100) | CTL_WRITE_DMA);
812     vdp_wait_for_fifo_empty();
813
814     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
815     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x100));
816     v0 = read32(VDP_DATA_PORT);
817     v1 = read32(VDP_DATA_PORT);
818
819     expect(ok, v0, 0x22110304);
820     expect(ok, v1, 0x05330708);
821     return ok;
822 }
823
824 static int t_vdp_128k_b16(void)
825 {
826     u32 v0, v1;
827     int ok = 1;
828
829     VDP_setReg(VDP_AUTOINC, 0);
830     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x8100));
831     write32(VDP_DATA_PORT, 0x01020304);
832     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x10100));
833     write32(VDP_DATA_PORT, 0x05060708);
834     vdp_wait_for_fifo_empty();
835
836     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_128K);
837     write16(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100) >> 16); // note: upper cmd
838     write32(VDP_DATA_PORT, 0x11223344);
839     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x10102));
840     write32(VDP_DATA_PORT, 0x55667788);
841     vdp_wait_for_fifo_empty();
842
843     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
844     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x8100));
845     v0 = read16(VDP_DATA_PORT);
846     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x0100));
847     v1 = read16(VDP_DATA_PORT);
848
849     VDP_setReg(VDP_AUTOINC, 2);
850
851     expect(ok, v0, 0x8844);
852     expect(ok, v1, 0x0708);
853     return ok;
854 }
855
856 static unused int t_vdp_128k_b16_inc(void)
857 {
858     u32 v0, v1;
859     int ok = 1;
860
861     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0));
862     write32(VDP_DATA_PORT, 0x01020304);
863     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x8000));
864     write32(VDP_DATA_PORT, 0x05060708);
865     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0xfffe));
866     write32(VDP_DATA_PORT, 0x090a0b0c);
867     vdp_wait_for_fifo_empty();
868
869     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_128K);
870     write16(VDP_CTRL_PORT, CTL_WRITE_VRAM(0) >> 16); // note: upper cmd
871     write16(VDP_DATA_PORT, 0x1122);
872     vdp_wait_for_fifo_empty();
873
874     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
875     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0));
876     v0 = read32(VDP_DATA_PORT);
877     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x8000));
878     v1 = read32(VDP_DATA_PORT);
879     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0));
880     write32(VDP_DATA_PORT, 0);
881     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x8000));
882     write32(VDP_DATA_PORT, 0);
883
884     expect(ok, v0, 0x0b0c0304); // XXX: no 22 anywhere?
885     expect(ok, v1, 0x05060708);
886     return ok;
887 }
888
889 static int t_vdp_reg_cmd(void)
890 {
891     u32 v0;
892     int ok = 1;
893
894     VDP_setReg(VDP_AUTOINC, 0);
895     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100));
896     write32(VDP_DATA_PORT, 0x01020304);
897     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
898     write32(VDP_DATA_PORT, 0x05060708);
899
900     VDP_setReg(VDP_AUTOINC, 2);
901     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x0100));
902     v0 = read16(VDP_DATA_PORT);
903
904     expect(ok, v0, 0x0304);
905     return ok;
906 }
907
908 static int t_vdp_sr_vb(void)
909 {
910     u16 sr[4];
911     int ok = 1;
912
913     while (read8(VDP_HV_COUNTER) != 242)
914         ;
915     sr[0] = read16(VDP_CTRL_PORT);
916     VDP_setReg(VDP_MODE2, VDP_MODE2_MD);
917     sr[1] = read16(VDP_CTRL_PORT);
918     while (read8(VDP_HV_COUNTER) != 4)
919         ;
920     sr[2] = read16(VDP_CTRL_PORT);
921     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
922     sr[3] = read16(VDP_CTRL_PORT);
923
924     expect_bits(ok, sr[0], SR_VB, SR_VB);
925     expect_bits(ok, sr[1], SR_VB, SR_VB);
926     expect_bits(ok, sr[2], SR_VB, SR_VB);
927     expect_bits(ok, sr[3], 0, SR_VB);
928     return ok;
929 }
930
931 /* z80 tests assume busreq state */
932 static int t_z80mem_long_mirror(void)
933 {
934     u8 *zram = (u8 *)0xa00000;
935     int ok = 1;
936
937     write8(&zram[0x1100], 0x11);
938     write8(&zram[0x1101], 0x22);
939     write8(&zram[0x1102], 0x33);
940     write8(&zram[0x1103], 0x44);
941     mem_barrier();
942     write32(&zram[0x3100], 0x55667788);
943     mem_barrier();
944
945     expect(ok, zram[0x1100], 0x55);
946     expect(ok, zram[0x1101], 0x22);
947     expect(ok, zram[0x1102], 0x77);
948     expect(ok, zram[0x1103], 0x44);
949     return ok;
950 }
951
952 static int t_z80mem_noreq_w(void)
953 {
954     u8 *zram = (u8 *)0xa00000;
955     int ok = 1;
956
957     write8(&zram[0x1100], 0x11);
958     mem_barrier();
959     write16(0xa11100, 0x000);
960     write8(&zram[0x1100], 0x22);
961     mem_barrier();
962
963     write16(0xa11100, 0x100);
964     while (read16(0xa11100) & 0x100)
965         ;
966
967     expect(ok, zram[0x1100], 0x11);
968     return ok;
969 }
970
971 #define Z80_C_DISPATCH 113  // see z80_test.s80
972 #define Z80_C_END       17
973 #define Z80_C_END_VCNT  67
974
975 #define Z80_CYLES_TEST1(b) (Z80_C_DISPATCH + ((b) - 1) * 21 + 26 + Z80_C_END)
976
977 static int t_z80mem_vdp_r(void)
978 {
979     u8 *zram = (u8 *)0xa00000;
980     int ok = 1;
981
982     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100));
983     write32(VDP_DATA_PORT, 0x11223344);
984     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x100));
985
986     zram[0x1000] = 1; // cp
987     write16_z80le(&zram[0x1002], 0x7f00); // src
988     write16_z80le(&zram[0x1004], 0x1100); // dst
989     write16_z80le(&zram[0x1006], 2); // len
990     zram[0x1100] = zram[0x1101] = zram[0x1102] = 0x5a;
991     mem_barrier();
992     write16(0xa11100, 0x000);
993     burn10(Z80_CYLES_TEST1(2) * 15 / 7 / 10);
994
995     write16(0xa11100, 0x100);
996     while (read16(0xa11100) & 0x100)
997         ;
998
999     expect(ok, zram[0x1000], 0);
1000     expect(ok, zram[0x1100], 0x11);
1001     expect(ok, zram[0x1101], 0x44);
1002     expect(ok, zram[0x1102], 0x5a);
1003     return ok;
1004 }
1005
1006 static unused int t_z80mem_vdp_w(void)
1007 {
1008     u8 *zram = (u8 *)0xa00000;
1009     u32 v0;
1010     int ok = 1;
1011
1012     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100));
1013     write32(VDP_DATA_PORT, 0x11223344);
1014     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100));
1015     vdp_wait_for_fifo_empty();
1016
1017     zram[0x1000] = 1; // cp
1018     write16_z80le(&zram[0x1002], 0x1100); // src
1019     write16_z80le(&zram[0x1004], 0x7f00); // dst
1020     write16_z80le(&zram[0x1006], 2); // len
1021     zram[0x1100] = 0x55;
1022     zram[0x1101] = 0x66;
1023     mem_barrier();
1024     write16(0xa11100, 0x000);
1025     burn10(Z80_CYLES_TEST1(2) * 15 / 7 / 10);
1026
1027     write16(0xa11100, 0x100);
1028     while (read16(0xa11100) & 0x100)
1029         ;
1030
1031     write32(VDP_CTRL_PORT, CTL_READ_VRAM(0x100));
1032     v0 = read32(VDP_DATA_PORT);
1033
1034     expect(ok, zram[0x1000], 0);
1035     expect(ok, v0, 0x55556666);
1036     return ok;
1037 }
1038
1039 static int t_tim_loop(void)
1040 {
1041     u8 vcnt;
1042     int ok = 1;
1043
1044     vdp_wait_for_line_0();
1045     burn10(488*220/10);
1046     vcnt = read8(VDP_HV_COUNTER);
1047     mem_barrier();
1048
1049     //expect_range(ok, vcnt, 0x80, 0x80);
1050     expect(ok, vcnt, 223);
1051     return ok;
1052 }
1053
1054 static int t_tim_z80_loop(void)
1055 {
1056     u8 pal = read8(0xa10001) & 0x40;
1057     u8 *zram = (u8 *)0xa00000;
1058     u16 z80_loops  = pal ? 3420*(313*2+1)/15/100 : 3420*(262*2+1)/15/100; // 2fr + 1ln
1059     u16 _68k_loops = pal ? 3420*(313*2+1)/7/10   : 3420*(262*2+1)/7/10;
1060     int ok = 1;
1061
1062     zram[0x1000] = 3; // idle loop, save vcnt
1063     write16_z80le(&zram[0x1002], 0); // src (unused)
1064     write16_z80le(&zram[0x1004], 0x1100); // vcnt dst
1065     write16_z80le(&zram[0x1006], z80_loops); // x100 cycles
1066     zram[0x1100] = 0;
1067     mem_barrier();
1068
1069     vdp_wait_for_line_0();
1070     write16(0xa11100, 0x000);
1071     burn10(_68k_loops + (Z80_C_DISPATCH + Z80_C_END_VCNT) * 15 / 7 / 10);
1072
1073     write16(0xa11100, 0x100);
1074     while (read16(0xa11100) & 0x100)
1075         ;
1076     expect(ok, zram[0x1000], 0);
1077     expect(ok, zram[0x1100], 1);
1078     return ok;
1079 }
1080
1081 #define Z80_CYCLES_TEST2(b) (Z80_C_DISPATCH + (b) * 38 + Z80_C_END_VCNT)
1082
1083 // 80 80 91 95-96
1084 static void z80_read_loop(u8 *zram, u16 src)
1085 {
1086     const int pairs = 512 + 256;
1087
1088     zram[0x1000] = 2; // read loop, save vcnt
1089     write16_z80le(&zram[0x1002], src); // src
1090     write16_z80le(&zram[0x1004], 0x1100); // vcnt dst
1091     write16_z80le(&zram[0x1006], pairs); // reads/2
1092     zram[0x1100] = 0;
1093     mem_barrier();
1094
1095     vdp_wait_for_line_0();
1096     write16(0xa11100, 0x000);
1097     burn10(Z80_CYCLES_TEST2(pairs) * 15 / 7 * 2 / 10);
1098
1099     write16(0xa11100, 0x100);
1100     while (read16(0xa11100) & 0x100)
1101         ;
1102 }
1103
1104 static int t_tim_z80_ram(void)
1105 {
1106     u8 *zram = (u8 *)0xa00000;
1107     int ok = 1;
1108
1109     z80_read_loop(zram, 0);
1110
1111     expect(ok, zram[0x1000], 0);
1112     expect_range(ok, zram[0x1100], 0x80, 0x80);
1113     return ok;
1114 }
1115
1116 static int t_tim_z80_ym(void)
1117 {
1118     u8 *zram = (u8 *)0xa00000;
1119     int ok = 1;
1120
1121     z80_read_loop(zram, 0x4000);
1122
1123     expect(ok, zram[0x1000], 0);
1124     expect_range(ok, zram[0x1100], 0x80, 0x80);
1125     return ok;
1126 }
1127
1128 static int t_tim_z80_vdp(void)
1129 {
1130     u8 *zram = (u8 *)0xa00000;
1131     int ok = 1;
1132
1133     z80_read_loop(zram, 0x7f08);
1134
1135     expect(ok, zram[0x1000], 0);
1136     expect_range(ok, zram[0x1100], 0x91, 0x91);
1137     return ok;
1138 }
1139
1140 static int t_tim_z80_bank_rom(void)
1141 {
1142     u8 *zram = (u8 *)0xa00000;
1143     int i, ok = 1;
1144
1145     for (i = 0; i < 17; i++)
1146         write8(0xa06000, 0); // bank 0
1147
1148     z80_read_loop(zram, 0x8000);
1149
1150     expect(ok, zram[0x1000], 0);
1151     expect_range(ok, zram[0x1100], 0x95, 0x96);
1152     return ok;
1153 }
1154
1155 /* borderline too slow */
1156 #if 0
1157 static void test_vcnt_vb(void)
1158 {
1159     const u32 *srhv = (u32 *)0xc00006; // to read SR and HV counter
1160     u32 *ram = (u32 *)0xff0000;
1161     u16 vcnt, vcnt_expect = 0;
1162     u16 sr, count = 0;
1163     u32 val, old;
1164
1165     vdp_wait_for_line_0();
1166     old = read32(srhv);
1167     *ram++ = old;
1168     for (;;) {
1169         val = read32(srhv);
1170         vcnt = val & 0xff00;
1171         if (vcnt == vcnt_expect)
1172             continue;
1173         sr = val >> 16;
1174         if (vcnt == 0 && !(sr & SR_VB)) // not VB
1175             break; // wrapped to start of frame
1176 //        count++;
1177         vcnt_expect += 0x100;
1178         if (vcnt == vcnt_expect && !((sr ^ (old >> 16)) & SR_VB)) {
1179             old = val;
1180             continue;
1181         }
1182         // should have a vcnt jump here
1183         *ram++ = old;
1184         *ram++ = val;
1185         vcnt_expect = vcnt;
1186         old = val;
1187     }
1188     *ram++ = val;
1189     *ram = count;
1190     mem_barrier();
1191 }
1192 #endif
1193
1194 static int t_tim_vcnt(void)
1195 {
1196     const u32 *ram32 = (u32 *)0xff0000;
1197     const u8 *ram = (u8 *)0xff0000;
1198     u8 pal = read8(0xa10001) & 0x40;
1199     u8 vc_jmp_b = pal ? 0x02 : 0xea;
1200     u8 vc_jmp_a = pal ? 0xca : 0xe5;
1201     u16 lines = pal ? 313 : 262;
1202     int ok = 1;
1203
1204     test_vcnt_vb();
1205     expect(ok, ram[0*4+2], 0); // line 0
1206     expect_bits(ok, ram[0*4+1], 0, SR_VB);
1207     expect(ok, ram[1*4+2], 223); // last no blank
1208     expect_bits(ok, ram[1*4+1], 0, SR_VB);
1209     expect(ok, ram[2*4+2], 224); // 1st blank
1210     expect_bits(ok, ram[2*4+1], SR_VB, SR_VB);
1211     expect(ok, ram[3*4+2], vc_jmp_b); // before jump
1212     expect_bits(ok, ram[3*4+1], SR_VB, SR_VB);
1213     expect(ok, ram[4*4+2], vc_jmp_a); // after jump
1214     expect_bits(ok, ram[4*4+1], SR_VB, SR_VB);
1215     expect(ok, ram[5*4+2], 0xfe); // before vb clear
1216     expect_bits(ok, ram[5*4+1], SR_VB, SR_VB);
1217     expect(ok, ram[6*4+2], 0xff); // after vb clear
1218     expect_bits(ok, ram[6*4+1], 0, SR_VB);
1219     expect(ok, ram[7*4+2], 0); // next line 0
1220     expect_bits(ok, ram[7*4+1], 0, SR_VB);
1221     expect(ok, ram32[8], lines - 1);
1222     return ok;
1223 }
1224
1225 static int t_tim_vcnt_loops(void)
1226 {
1227     const u16 *ram16 = (u16 *)0xfff004;
1228     u8 pal = read8(0xa10001) & 0x40;
1229     u16 i, lines = pal ? 313 : 262;
1230     int ok = 1;
1231
1232     test_vcnt_loops();
1233     expect(ok, ram16[-1*2+0], 0xff);
1234     expect_range(ok, ram16[-1*2+1], 21, 22);
1235     for (i = 0; i < lines; i++)
1236         expect_range(ok, ram16[i*2+1], 19, 21);
1237     expect(ok, ram16[lines*2+0], 0);
1238     expect_range(ok, ram16[lines*2+1], 19, 21);
1239     return ok;
1240 }
1241
1242 static int t_tim_hblank_h40(void)
1243 {
1244     const u8 *r = (u8 *)0xff0000;
1245     int ok = 1;
1246
1247     test_hb();
1248
1249     // set: 0-2
1250     expect_bits(ok, r[2], SR_HB, SR_HB);
1251     expect_bits(ok, r[5], SR_HB, SR_HB);
1252     // <wait>
1253     expect_bits(ok, r[7], SR_HB, SR_HB);
1254     // clear: 8-11
1255     expect_bits(ok, r[12], 0, SR_HB);
1256     return ok;
1257 }
1258
1259 static int t_tim_hblank_h32(void)
1260 {
1261     const u8 *r = (u8 *)0xff0000;
1262     int ok = 1;
1263
1264     VDP_setReg(VDP_MODE4, 0x00);
1265     test_hb();
1266     VDP_setReg(VDP_MODE4, 0x81);
1267
1268     expect_bits(ok, r[0], 0, SR_HB);
1269     // set: 1-4
1270     expect_bits(ok, r[4], SR_HB, SR_HB);
1271     expect_bits(ok, r[5], SR_HB, SR_HB);
1272     // <wait>
1273     expect_bits(ok, r[8], SR_HB, SR_HB);
1274     // clear: 9-11
1275     expect_bits(ok, r[12], 0, SR_HB);
1276     return ok;
1277 }
1278
1279 static int t_tim_vdp_as_vram_w(void)
1280 {
1281     int ok = 1;
1282     u8 vcnt;
1283
1284     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0x100));
1285     vdp_wait_for_line_0();
1286     write16_x16(VDP_DATA_PORT, 112*18 / 16, 0);
1287     vcnt = read8(VDP_HV_COUNTER);
1288     mem_barrier();
1289
1290     expect(ok, vcnt, 112*2-1);
1291     return ok;
1292 }
1293
1294 static int t_tim_vdp_as_cram_w(void)
1295 {
1296     int ok = 1;
1297     u8 vcnt;
1298
1299     write32(VDP_CTRL_PORT, CTL_WRITE_CRAM(0));
1300     vdp_wait_for_line_0();
1301     write16_x16(VDP_DATA_PORT, 112*18 / 16, 0);
1302     vcnt = read8(VDP_HV_COUNTER);
1303     mem_barrier();
1304
1305     setup_default_palette();
1306
1307     expect(ok, vcnt, 112);
1308     return ok;
1309 }
1310
1311 static const u8 hcnt2tm[] =
1312 {
1313     0x0a, 0x1d, 0x31, 0x44, 0x58, 0x6b, 0x7f, 0x92,
1314     0xa6, 0xb9, 0xcc, 0x00, 0x00, 0x00, 0xe2, 0xf6
1315 };
1316
1317 static int t_tim_ym_timer_z80(int is_b)
1318 {
1319     u8 pal = read8(0xa10001) & 0x40;
1320     u8 *zram = (u8 *)0xa00000;
1321     u8 *z80 = zram;
1322     u16 _68k_loops = 3420*(302+5+1)/7/10; // ~ (72*1024*2)/(3420./7)
1323     u16 start, end, diff;
1324     int ok = 1;
1325
1326     zram[0x1000] = 4 + is_b; // ym2612 timer a/b test
1327     zram[0x1100] = zram[0x1101] = zram[0x1102] = zram[0x1103] = 0;
1328     mem_barrier();
1329
1330     vdp_wait_for_line_0();
1331     write16(0xa11100, 0x000);
1332
1333     burn10(_68k_loops + (Z80_C_DISPATCH + Z80_C_END_VCNT) * 15 / 7 / 10);
1334
1335     write16(0xa11100, 0x100);
1336     while (read16(0xa11100) & 0x100)
1337         ;
1338     mem_barrier();
1339     expect(ok, zram[0x1000], 0);
1340     (void)hcnt2tm;
1341     //start = ((u16)zram[0x1102] << 8) | hcnt2tm[zram[0x1103] >> 4];
1342     //end   = ((u16)zram[0x1100] << 8) | hcnt2tm[zram[0x1101] >> 4];
1343     start = zram[0x1102];
1344     end   = zram[0x1100];
1345     diff = end - start;
1346     if (pal)
1347       expect_range(ok, diff, 0xf4, 0xf6);
1348     else
1349       expect_range(ok, diff, 0x27, 0x29);
1350     write8(&z80[0x4001], 0); // stop, but should keep the flag
1351     mem_barrier();
1352     burn10(32*6/10); // busy bit, 32 FM ticks (M/7/6)
1353     if (is_b) {
1354       expect(ok, z80[0x4000], 2);
1355       write8(&z80[0x4001], 0x20); // reset flag (reg 0x27, set up by z80)
1356     }
1357     else {
1358       expect(ok, z80[0x4000], 1);
1359       write8(&z80[0x4001], 0x10);
1360     }
1361     mem_barrier();
1362     burn10(32*6/10);
1363     expect(ok, z80[0x4000], 0);
1364     return ok;
1365 }
1366
1367 static int t_tim_ym_timera_z80(void)
1368 {
1369     return t_tim_ym_timer_z80(0);
1370 }
1371
1372 static int t_tim_ym_timerb_z80(void)
1373 {
1374     return t_tim_ym_timer_z80(1);
1375 }
1376
1377 static int t_tim_ym_timerb_stop(void)
1378 {
1379     const struct {
1380         //u8 vcnt_start;
1381         //u8 hcnt_start;
1382         u16 vcnt_start;
1383         u16 stat0;
1384         //u8 vcnt_end;
1385         //u8 hcnt_end;
1386         u16 vcnt_end;
1387         u16 stat1;
1388     } *t = (void *)0xfff000;
1389     u8 *z80 = (u8 *)0xa00000;
1390     u16 diff;
1391     int ok = 1;
1392     write16(0xa11100, 0x100);
1393     while (read16(0xa11100) & 0x100)
1394         ;
1395     test_ym_stopped_tick();
1396     mem_barrier();
1397     //start = ((u16)t->vcnt_start << 8) | hcnt2tm[t->hcnt_start >> 4];
1398     //end   = ((u16)t->vcnt_end   << 8) | hcnt2tm[t->hcnt_end   >> 4];
1399     //diff = end - start;
1400     diff = t->vcnt_end - t->vcnt_start;
1401     //expect_range(ok, diff, 0x492, 0x5c2); // why so much variation?
1402     expect_range(ok, diff, 4, 5);
1403     expect(ok, t->stat0, 0);
1404     expect(ok, t->stat1, 2);
1405     expect(ok, z80[0x4000], 2);
1406     write8(&z80[0x4001], 0x30);
1407     return ok;
1408 }
1409
1410 static int t_tim_ym_timer_ab_sync(void)
1411 {
1412     u16 v1, v2, v3, start, line_diff;
1413     int ok = 1;
1414     v1 = test_ym_ab_sync();
1415     start = get_line();
1416     write8(0xa04001, 0x3f);   // clear
1417     burn10(3420*11/7/10);     // ~11 scanlines
1418     v2 = read8(0xa04000);
1419     v3 = test_ym_ab_sync2();
1420     line_diff = get_line() - start;
1421     expect(ok, v1, 3);
1422     expect(ok, v2, 0);
1423     expect(ok, v3, 3);
1424     expect_range(ok, line_diff, 18, 19);
1425     return ok;
1426 }
1427
1428 struct irq_test {
1429     u16 cnt;
1430     union {
1431         u16 hv;
1432         u8 v;
1433     } first, last;
1434     u16 pad;
1435 };
1436
1437 // broken on fresh boot due to uknown reasons
1438 static int t_irq_hint(void)
1439 {
1440     struct irq_test *it = (void *)0xfff000;
1441     struct irq_test *itv = it + 1;
1442     int ok = 1;
1443
1444     memset_(it, 0, sizeof(*it) * 2);
1445     memcpy_((void *)0xff0100, test_hint, test_hint_end - test_hint);
1446     memcpy_((void *)0xff0140, test_vint, test_vint_end - test_vint);
1447
1448     // without this, tests fail after cold boot
1449     while (!(read16(VDP_CTRL_PORT) & 8))
1450         /* not blanking */;
1451
1452     // for more fun, disable the display
1453     VDP_setReg(VDP_MODE2, VDP_MODE2_MD);
1454
1455     VDP_setReg(10, 0);
1456     while (read8(VDP_HV_COUNTER) != 100)
1457         ;
1458     while (read8(VDP_HV_COUNTER) != 229)
1459         ;
1460     // take the pending irq
1461     VDP_setReg(VDP_MODE1, VDP_MODE1_PS | VDP_MODE1_IE1);
1462     move_sr(0x2000);
1463     burn10(488 * 2 / 10);
1464     move_sr(0x2700);
1465     expect(ok, it->first.v, 229);      // pending irq trigger
1466     expect(ok, it->cnt, 1);
1467     expect(ok, itv->cnt, 0);
1468
1469     // count irqs
1470     it->cnt = it->first.hv = it->last.hv = 0;
1471     move_sr(0x2000);
1472     while (read8(VDP_HV_COUNTER) != 4)
1473         ;
1474     while (read8(VDP_HV_COUNTER) != 228)
1475         ;
1476     move_sr(0x2700);
1477     expect(ok, it->cnt, 225);
1478     expect(ok, it->first.v, 0);
1479     expect(ok, it->last.v, 224);
1480
1481     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
1482
1483     // detect reload line
1484     it->cnt = it->first.hv = it->last.hv = 0;
1485     VDP_setReg(10, 17);
1486     move_sr(0x2000);
1487     while (read16(VDP_CTRL_PORT) & 8)
1488         /* blanking */;
1489     VDP_setReg(10, 255);
1490     while (read8(VDP_HV_COUNTER) != 228)
1491         ;
1492     move_sr(0x2700);
1493     expect(ok, it->cnt, 1);
1494     expect(ok, it->first.v, 17);
1495     expect(ok, it->last.v, 17);
1496
1497     VDP_setReg(VDP_MODE1, VDP_MODE1_PS);
1498
1499     return ok;
1500 }
1501
1502 static int t_irq_both_cpu_unmask(void)
1503 {
1504     struct irq_test *ith = (void *)0xfff000;
1505     struct irq_test *itv = ith + 1;
1506     u16 s0, s1;
1507     int ok = 1;
1508
1509     memset_(ith, 0, sizeof(*ith) * 2);
1510     memcpy_((void *)0xff0100, test_hint, test_hint_end - test_hint);
1511     memcpy_((void *)0xff0140, test_vint, test_vint_end - test_vint);
1512     VDP_setReg(10, 0);
1513     while (read8(VDP_HV_COUNTER) != 100)
1514         ;
1515     while (read8(VDP_HV_COUNTER) != 226)
1516         ;
1517     VDP_setReg(10, 99);
1518     VDP_setReg(VDP_MODE1, VDP_MODE1_PS | VDP_MODE1_IE1);
1519     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_IE0 | VDP_MODE2_DISP);
1520     /* go to active display line 100 */
1521     while (read8(VDP_HV_COUNTER) != 100)
1522         ;
1523     s0 = read16(VDP_CTRL_PORT);
1524     s1 = move_sr_and_read(0x2000, VDP_CTRL_PORT);
1525     move_sr(0x2700);
1526     VDP_setReg(VDP_MODE1, VDP_MODE1_PS);
1527     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
1528
1529     expect(ok, itv->cnt, 1);       // vint count
1530     expect(ok, itv->first.v, 100); // vint line
1531     expect(ok, ith->cnt, 1);       // hint count
1532     expect(ok, ith->first.v, 100); // hint line
1533     expect_bits(ok, s0, SR_F, SR_F);
1534     expect_bits(ok, s1, 0, SR_F);
1535     return ok;
1536 }
1537
1538 static int t_irq_ack_v_h(void)
1539 {
1540     struct irq_test *ith = (void *)0xfff000;
1541     struct irq_test *itv = ith + 1;
1542     u16 s0, s1, s2;
1543     int ok = 1;
1544
1545     memset_(ith, 0, sizeof(*ith) * 2);
1546     memcpy_((void *)0xff0100, test_hint, test_hint_end - test_hint);
1547     memcpy_((void *)0xff0140, test_vint, test_vint_end - test_vint);
1548     VDP_setReg(10, 0);
1549     /* ensure hcnt reload */
1550     while (!(read16(VDP_CTRL_PORT) & 8))
1551         /* not blanking */;
1552     while (read16(VDP_CTRL_PORT) & 8)
1553         /* blanking */;
1554     VDP_setReg(VDP_MODE1, VDP_MODE1_PS | VDP_MODE1_IE1);
1555     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_IE0);
1556     while (read8(VDP_HV_COUNTER) != 100)
1557         ;
1558     while (read8(VDP_HV_COUNTER) != 226)
1559         ;
1560     s0 = read16(VDP_CTRL_PORT);
1561     s1 = move_sr_and_read(0x2500, VDP_CTRL_PORT);
1562     burn10(666 / 10);
1563     s2 = move_sr_and_read(0x2000, VDP_CTRL_PORT);
1564     burn10(488 / 10);
1565     move_sr(0x2700);
1566     VDP_setReg(VDP_MODE1, VDP_MODE1_PS);
1567     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
1568
1569     expect(ok, itv->cnt, 1);       // vint count
1570     expect(ok, itv->first.v, 226); // vint line
1571     expect(ok, ith->cnt, 1);       // hint count
1572     expect(ok, ith->first.v, 228); // hint line
1573     expect_bits(ok, s0, SR_F, SR_F);
1574     expect_bits(ok, s1, 0, SR_F);
1575     expect_bits(ok, s2, 0, SR_F);
1576     return ok;
1577 }
1578
1579 static int t_irq_ack_v_h_2(void)
1580 {
1581     struct irq_test *ith = (void *)0xfff000;
1582     struct irq_test *itv = ith + 1;
1583     u16 s0, s1;
1584     int ok = 1;
1585
1586     memset_(ith, 0, sizeof(*ith) * 2);
1587     memcpy_((void *)0xff0100, test_hint, test_hint_end - test_hint);
1588     memcpy_((void *)0xff0140, test_vint, test_vint_end - test_vint);
1589     VDP_setReg(10, 0);
1590     while (read8(VDP_HV_COUNTER) != 100)
1591         ;
1592     while (read8(VDP_HV_COUNTER) != 226)
1593         ;
1594     s0 = read16(VDP_CTRL_PORT);
1595     test_v_h_2();
1596     s1 = read16(VDP_CTRL_PORT);
1597     VDP_setReg(VDP_MODE1, VDP_MODE1_PS);
1598     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
1599
1600     expect(ok, itv->cnt, 2);       // vint count
1601     expect(ok, itv->first.v, 226); // vint line
1602     expect(ok, ith->cnt, 1);       // hint count
1603     expect(ok, ith->first.v, 227); // hint line
1604     expect_bits(ok, s0, SR_F, SR_F);
1605     expect_bits(ok, s1, 0, SR_F);
1606     return ok;
1607 }
1608
1609 static int t_irq_ack_h_v(void)
1610 {
1611     u16 *ram = (u16 *)0xfff000;
1612     u8 *ram8 = (u8 *)0xfff000;
1613     u16 s0, s1, s[4];
1614     int ok = 1;
1615
1616     ram[0] = ram[1] = ram[2] =
1617     ram[4] = ram[5] = ram[6] = 0;
1618     memcpy_((void *)0xff0100, test_hint, test_hint_end - test_hint);
1619     memcpy_((void *)0xff0140, test_vint, test_vint_end - test_vint);
1620     VDP_setReg(10, 0);
1621     while (read8(VDP_HV_COUNTER) != 100)
1622         ;
1623     while (read8(VDP_HV_COUNTER) != 226)
1624         ;
1625     s0 = read16(VDP_CTRL_PORT);
1626     VDP_setReg(VDP_MODE1, VDP_MODE1_PS | VDP_MODE1_IE1);
1627     move_sr(0x2000);
1628     burn10(666 / 10);
1629     s1 = read16(VDP_CTRL_PORT);
1630     write_and_read1(VDP_CTRL_PORT, 0x8000 | (VDP_MODE2 << 8)
1631                      | VDP_MODE2_MD | VDP_MODE2_IE0, s);
1632     move_sr(0x2700);
1633     VDP_setReg(VDP_MODE1, VDP_MODE1_PS);
1634     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
1635
1636     expect(ok, ram[0], 1);     // hint count
1637     expect(ok, ram8[2], 226);  // hint line
1638     expect(ok, ram[4], 1);     // vint count
1639     expect(ok, ram8[10], 228); // vint line
1640     expect_bits(ok, s0, SR_F, SR_F);
1641     expect_bits(ok, s1, SR_F, SR_F);
1642     expect_bits(ok, s[0], SR_F, SR_F);
1643     expect_bits(ok, s[1], SR_F, SR_F);
1644     expect_bits(ok, s[2], 0, SR_F);
1645     expect_bits(ok, s[3], 0, SR_F);
1646     return ok;
1647 }
1648
1649 static int t_irq_ack_h_v_2(void)
1650 {
1651     u16 *ram = (u16 *)0xfff000;
1652     u8 *ram8 = (u8 *)0xfff000;
1653     u16 s0, s1;
1654     int ok = 1;
1655
1656     ram[0] = ram[1] = ram[2] =
1657     ram[4] = ram[5] = ram[6] = 0;
1658     memcpy_((void *)0xff0100, test_hint, test_hint_end - test_hint);
1659     memcpy_((void *)0xff0140, test_vint, test_vint_end - test_vint);
1660     VDP_setReg(10, 0);
1661     while (read8(VDP_HV_COUNTER) != 100)
1662         ;
1663     while (read8(VDP_HV_COUNTER) != 226)
1664         ;
1665     s0 = read16(VDP_CTRL_PORT);
1666     test_h_v_2();
1667     s1 = read16(VDP_CTRL_PORT);
1668     VDP_setReg(VDP_MODE1, VDP_MODE1_PS);
1669     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
1670
1671     expect(ok, ram[0], 2);     // hint count
1672     expect(ok, ram8[2], 226);  // hint first line
1673     expect(ok, ram8[4], 226);  // hint last line
1674     expect(ok, ram[4], 0);     // vint count
1675     expect(ok, ram8[10], 0);   // vint line
1676     expect_bits(ok, s0, SR_F, SR_F);
1677     expect_bits(ok, s1, 0, SR_F);
1678     return ok;
1679 }
1680
1681 static void t_irq_f_flag(void)
1682 {
1683     memcpy_((void *)0xff0140, test_f_vint, test_f_vint_end - test_f_vint);
1684     memset_((void *)0xff0000, 0, 10);
1685     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_IE0 | VDP_MODE2_DISP);
1686     test_f();
1687     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
1688 }
1689
1690 static int t_irq_f_flag_h40(void)
1691 {
1692     u8 f, *r = (u8 *)0xff0000;
1693     int ok = 1;
1694
1695     t_irq_f_flag();
1696
1697     expect_bits(ok, r[0], 0, SR_F);
1698     expect_bits(ok, r[1], 0, SR_F);
1699     expect_bits(ok, r[2], 0, SR_F);
1700     // hits 1-3 times in range 3-9, usually ~5
1701     f = r[3] | r[4] | r[5] | r[6] | r[7];
1702
1703     expect_bits(ok, r[10], 0, SR_F);
1704     expect_bits(ok, r[11], 0, SR_F);
1705     expect_bits(ok, f, SR_F, SR_F);
1706     return ok;
1707 }
1708
1709 static int t_irq_f_flag_h32(void)
1710 {
1711     u8 f, *r = (u8 *)0xff0000;
1712     int ok = 1;
1713
1714     VDP_setReg(VDP_MODE4, 0x00);
1715     t_irq_f_flag();
1716     VDP_setReg(VDP_MODE4, 0x81);
1717
1718     expect_bits(ok, r[0], 0, SR_F);
1719     expect_bits(ok, r[1], 0, SR_F);
1720     // hits 1-3 times in range 2-7, usually 3
1721     f = r[2] | r[3] | r[4] | r[5] | r[6] | r[7];
1722
1723     expect_bits(ok, r[8], 0, SR_F);
1724     expect_bits(ok, r[9], 0, SR_F);
1725     expect_bits(ok, r[10], 0, SR_F);
1726     expect_bits(ok, r[11], 0, SR_F);
1727     expect_bits(ok, f, SR_F, SR_F);
1728     return ok;
1729 }
1730
1731 // 32X
1732
1733 static int t_32x_init(void)
1734 {
1735     void (*do_32x_enable)(void) = (void *)0xff0040;
1736     u32 M_OK = MKLONG('M','_','O','K');
1737     u32 S_OK = MKLONG('S','_','O','K');
1738     u32 *r = (u32 *)0xa15100;
1739     u16 *r16 = (u16 *)r;
1740     int i, ok = 1;
1741
1742     //v1070 = read32(0x1070);
1743
1744     /* what does REN mean exactly?
1745      * Seems to be sometimes clear after reset */
1746     for (i = 0; i < 1000000; i++)
1747         if (read16(r16) & 0x80)
1748             break;
1749     expect(ok, r16[0x00/2], 0x82);
1750     expect(ok, r16[0x02/2], 0);
1751     expect(ok, r16[0x04/2], 0);
1752     expect(ok, r16[0x06/2], 0);
1753     expect(ok, r[0x14/4], 0);
1754     expect(ok, r[0x18/4], 0);
1755     expect(ok, r[0x1c/4], 0);
1756     write32(&r[0x20/4], 0); // master resp
1757     write32(&r[0x24/4], 0); // slave resp
1758     write32(&r[0x28/4], 0);
1759     write32(&r[0x2c/4], 0);
1760
1761     // could just set RV, but BIOS reads ROM, so can't
1762     memcpy_(do_32x_enable, x32x_enable,
1763             x32x_enable_end - x32x_enable);
1764     do_32x_enable();
1765
1766     expect(ok, r16[0x00/2], 0x83);
1767     expect(ok, r16[0x02/2], 0);
1768     expect(ok, r16[0x04/2], 0);
1769     expect(ok, r16[0x06/2], 1); // RV
1770     expect(ok, r[0x14/4], 0);
1771     expect(ok, r[0x18/4], 0);
1772     expect(ok, r[0x1c/4], 0);
1773     expect(ok, r[0x20/4], M_OK);
1774     while (!read16(&r16[0x24/2]))
1775         ;
1776     expect(ok, r[0x24/4], S_OK);
1777     write32(&r[0x20/4], 0);
1778     return ok;
1779 }
1780
1781 static void x32_cmd(enum x32x_cmd cmd, u32 a0, u32 a1, u16 is_slave)
1782 {
1783     u16 v, *r = (u16 *)0xa15120;
1784     u16 cmd_s = cmd | (is_slave << 15);
1785     int i;
1786
1787     write32(&r[4/2], a0);
1788     write32(&r[8/2], a1);
1789     mem_barrier();
1790     write16(r, cmd_s);
1791     mem_barrier();
1792     for (i = 0; i < 10000 && (v = read16(r)) == cmd_s; i++)
1793         burn10(1);
1794     if (v != 0) {
1795         printf("cmd clr: %x\n", v);
1796         mem_barrier();
1797         printf("c, e: %02x %02x\n", r[0x0c/2],  r[0x0e/2]);
1798         write16(r, 0);
1799     }
1800     v = read16(&r[1]);
1801     if (v != 0) {
1802         printf("cmd err: %x\n", v);
1803         write16(&r[1], 0);
1804     }
1805 }
1806
1807 static int t_32x_echo(void)
1808 {
1809     u16 *r = (u16 *)0xa15120;
1810     int ok = 1;
1811
1812     x32_cmd(CMD_ECHO, 0x12340000, 0, 0);
1813     expect(ok, r[0x06/2], 0x1234);
1814     x32_cmd(CMD_ECHO, 0x23450000, 0, 1);
1815     expect(ok, r[0x06/2], 0xa345);
1816     return ok;
1817 }
1818
1819 static int t_32x_md_bios(void)
1820 {
1821     void (*do_call_c0)(int a, int d) = (void *)0xff0040;
1822     u8 *rmb = (u8 *)0xff0000;
1823     u32 *rl = (u32 *)0;
1824     int ok = 1;
1825
1826     memcpy_(do_call_c0, test_32x_b_c0,
1827             test_32x_b_c0_end - test_32x_b_c0);
1828     write8(rmb, 0);
1829     do_call_c0(0xff0000, 0x5a);
1830
1831     expect(ok, rmb[0], 0x5a);
1832     expect(ok, rl[0x04/4], 0x880200);
1833     expect(ok, rl[0x10/4], 0x880212);
1834     expect(ok, rl[0x94/4], 0x8802d8);
1835     return ok;
1836 }
1837
1838 static int t_32x_md_rom(void)
1839 {
1840     u32 *rl = (u32 *)0;
1841     int ok = 1;
1842
1843     expect(ok, rl[0x004/4], 0x880200);
1844     expect(ok, rl[0x100/4], 0x53454741);
1845     expect(ok, rl[0x70/4], 0);
1846     write32(&rl[0x70/4], 0xa5123456);
1847     write32(&rl[0x78/4], ~0);
1848     mem_barrier();
1849     expect(ok, rl[0x78/4], 0x8802ae);
1850     expect(ok, rl[0x70/4], 0xa5123456);
1851     //expect(ok, rl[0x1070/4], v1070);
1852     write32(&rl[0x70/4], 0);
1853     // with RV 0x880000/0x900000 hangs, can't test
1854     return ok;
1855 }
1856
1857 static int t_32x_md_fb(void)
1858 {
1859     u8  *fbb = (u8 *)0x840000;
1860     u16 *fbw = (u16 *)fbb;
1861     u32 *fbl = (u32 *)fbb;
1862     u8  *fob = (u8 *)0x860000;
1863     u16 *fow = (u16 *)fob;
1864     u32 *fol = (u32 *)fob;
1865     int ok = 1;
1866
1867     fbl[0] = 0x12345678;
1868     fol[1] = 0x89abcdef;
1869     mem_barrier();
1870     expect(ok, fbw[1], 0x5678);
1871     expect(ok, fow[2], 0x89ab);
1872     fbb[0] = 0;
1873     fob[1] = 0;
1874     fbw[1] = 0;
1875     fow[2] = 0;
1876     fow[3] = 1;
1877     mem_barrier();
1878     fow[3] = 0x200;
1879     mem_barrier();
1880     expect(ok, fol[0], 0x12340000);
1881     expect(ok, fbl[1], 0x89ab0201);
1882     return ok;
1883 }
1884
1885 static int t_32x_sh_fb(void)
1886 {
1887     u32 *fbl = (u32 *)0x840000;
1888     int ok = 1;
1889
1890     fbl[0] = 0x12345678;
1891     fbl[1] = 0x89abcdef;
1892     mem_barrier();
1893     write8(0xa15100, 0x80); // FM=1
1894     x32_cmd(CMD_WRITE8,  0x24000000, 0, 0);
1895     x32_cmd(CMD_WRITE8,  0x24020001, 0, 0);
1896     x32_cmd(CMD_WRITE16, 0x24000002, 0, 0);
1897     x32_cmd(CMD_WRITE16, 0x24020000, 0, 0);
1898     x32_cmd(CMD_WRITE32, 0x24020004, 0x5a0000a5, 1);
1899     write8(0xa15100, 0x00); // FM=0
1900     mem_barrier();
1901     expect(ok, fbl[0], 0x12340000);
1902     expect(ok, fbl[1], 0x5aabcda5);
1903     return ok;
1904 }
1905
1906 static int t_32x_disable(void)
1907 {
1908     void (*do_32x_disable)(void) = (void *)0xff0040;
1909     u32 *r = (u32 *)0xa15100;
1910     u16 *r16 = (u16 *)r;
1911     u32 *rl = (u32 *)0;
1912     int ok = 1;
1913
1914     expect(ok, r16[0x00/2], 0x83);
1915
1916     memcpy_(do_32x_disable, x32x_disable,
1917             x32x_disable_end - x32x_disable);
1918     do_32x_disable();
1919
1920     expect(ok, r16[0x00/2], 0x82);
1921     expect(ok, r16[0x02/2], 0);
1922     expect(ok, r16[0x04/2], 0);
1923     expect(ok, r16[0x06/2], 1); // RV
1924     expect(ok, r[0x14/4], 0);
1925     expect(ok, r[0x18/4], 0);
1926     expect(ok, r[0x1c/4], 0);
1927     expect(ok, rl[0x04/4], 0x000800);
1928
1929     write16(&r16[0x06/2], 0);   // can just set without ADEN
1930     mem_barrier();
1931     expect(ok, r16[0x06/2], 0); // RV
1932     return ok;
1933 }
1934
1935 enum {
1936     T_MD = 0,
1937     T_32 = 1, // 32X
1938 };
1939
1940 static const struct {
1941     u8 type;
1942     int (*test)(void);
1943     const char *name;
1944 } g_tests[] = {
1945     { T_MD, t_dma_zero_wrap,       "dma zero len + wrap" },
1946     { T_MD, t_dma_zero_fill,       "dma zero len + fill" },
1947     { T_MD, t_dma_ram_wrap,        "dma ram wrap" },
1948     { T_MD, t_dma_multi,           "dma multi" },
1949     { T_MD, t_dma_cram_wrap,       "dma cram wrap" },
1950     { T_MD, t_dma_vsram_wrap,      "dma vsram wrap" },
1951     { T_MD, t_dma_and_data,        "dma and data" },
1952     { T_MD, t_dma_short_cmd,       "dma short cmd" },
1953     { T_MD, t_dma_fill3_odd,       "dma fill3 odd" },
1954     { T_MD, t_dma_fill3_even,      "dma fill3 even" },
1955     { T_MD, t_dma_fill3_vsram,     "dma fill3 vsram" },
1956     { T_MD, t_dma_fill_dis,        "dma fill disabled" },
1957     { T_MD, t_dma_fill_src,        "dma fill src incr" },
1958     { T_MD, t_dma_128k,            "dma 128k mode" },
1959     { T_MD, t_vdp_128k_b16,        "vdp 128k addr bit16" },
1960     // { t_vdp_128k_b16_inc,    "vdp 128k bit16 inc" }, // mystery
1961     { T_MD, t_vdp_reg_cmd,         "vdp reg w cmd reset" },
1962     { T_MD, t_vdp_sr_vb,           "vdp status reg vb" },
1963     { T_MD, t_z80mem_long_mirror,  "z80 ram long mirror" },
1964     { T_MD, t_z80mem_noreq_w,      "z80 ram noreq write" },
1965     { T_MD, t_z80mem_vdp_r,        "z80 vdp read" },
1966     // { t_z80mem_vdp_w,        "z80 vdp write" }, // hang
1967     { T_MD, t_tim_loop,            "time loop" },
1968     { T_MD, t_tim_z80_loop,        "time z80 loop" },
1969     { T_MD, t_tim_z80_ram,         "time z80 ram" },
1970     { T_MD, t_tim_z80_ym,          "time z80 ym2612" },
1971     { T_MD, t_tim_z80_vdp,         "time z80 vdp" },
1972     { T_MD, t_tim_z80_bank_rom,    "time z80 bank rom" },
1973     { T_MD, t_tim_vcnt,            "time V counter" },
1974     { T_MD, t_tim_vcnt_loops,      "time vcnt loops" },
1975     { T_MD, t_tim_hblank_h40,      "time hblank h40" },
1976     { T_MD, t_tim_hblank_h32,      "time hblank h32" },
1977     { T_MD, t_tim_vdp_as_vram_w,   "time vdp vram w" },
1978     { T_MD, t_tim_vdp_as_cram_w,   "time vdp cram w" },
1979     { T_MD, t_tim_ym_timera_z80,   "time timer a z80" },
1980     { T_MD, t_tim_ym_timerb_z80,   "time timer b z80" },
1981     { T_MD, t_tim_ym_timerb_stop,  "timer b stop" },
1982     { T_MD, t_tim_ym_timer_ab_sync,"timer ab sync" },
1983     { T_MD, t_irq_hint,            "irq4 / line" },
1984     { T_MD, t_irq_both_cpu_unmask, "irq both umask" },
1985     { T_MD, t_irq_ack_v_h,         "irq ack v-h" },
1986     { T_MD, t_irq_ack_v_h_2,       "irq ack v-h 2" },
1987     { T_MD, t_irq_ack_h_v,         "irq ack h-v" },
1988     { T_MD, t_irq_ack_h_v_2,       "irq ack h-v 2" },
1989     { T_MD, t_irq_f_flag_h40,      "irq f flag h40" },
1990     { T_MD, t_irq_f_flag_h32,      "irq f flag h32" },
1991
1992     // the first one enables 32X, so must be kept
1993     // all tests assume RV=1 FM=0
1994     { T_32, t_32x_init,            "32x init" },
1995     { T_32, t_32x_echo,            "32x echo" },
1996     { T_32, t_32x_md_bios,         "32x md bios" },
1997     { T_32, t_32x_md_rom,          "32x md rom" },
1998     { T_32, t_32x_md_fb,           "32x md fb" },
1999     { T_32, t_32x_sh_fb,           "32x sh fb" },
2000     { T_32, t_32x_disable,         "32x disable" }, // must be last 32x
2001 };
2002
2003 static void setup_z80(void)
2004 {
2005     u8 *zram = (u8 *)0xa00000;
2006     int i, len;
2007
2008     /* z80 */
2009     write16(0xa11100, 0x100);
2010     write16(0xa11200, 0x100);
2011
2012     while (read16(0xa11100) & 0x100)
2013         ;
2014
2015     // load the default test program, clear it's data
2016     len = z80_test_end - z80_test;
2017     for (i = 0; i < len; i++)
2018         write8(&zram[i], z80_test[i]);
2019     for (i = 0x1000; i < 0x1007; i++)
2020         write8(&zram[i], 0);
2021
2022     // reset
2023     write16(0xa11200, 0x000);
2024     write16(0xa11100, 0x000);
2025     burn10(1);
2026     write16(0xa11200, 0x100);
2027
2028     burn10(50 * 15 / 7 / 10);  // see z80_test.s80
2029
2030     // take back the bus
2031     write16(0xa11100, 0x100);
2032     while (read16(0xa11100) & 0x100)
2033         ;
2034 }
2035
2036 static void wait_next_vsync(void)
2037 {
2038     while (read16(VDP_CTRL_PORT) & SR_VB)
2039         /* blanking */;
2040     while (!(read16(VDP_CTRL_PORT) & SR_VB))
2041         /* not blanking */;
2042 }
2043
2044 static unused int hexinc(char *c)
2045 {
2046     (*c)++;
2047     if (*c > 'f') {
2048         *c = '0';
2049         return 1;
2050     }
2051     if (*c == '9' + 1)
2052         *c = 'a';
2053     return 0;
2054 }
2055
2056 int main()
2057 {
2058     int passed = 0;
2059     int skipped = 0;
2060     int have_32x;
2061     int en_32x;
2062     int ret;
2063     u8 v8;
2064     int i;
2065
2066     setup_z80();
2067
2068     /* io */
2069     write8(0xa10009, 0x40);
2070
2071     /* setup VDP */
2072     while (read16(VDP_CTRL_PORT) & 2)
2073         ;
2074
2075     VDP_setReg(VDP_MODE1, VDP_MODE1_PS);
2076     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA);
2077     VDP_setReg(VDP_MODE3, 0x00);
2078     VDP_setReg(VDP_MODE4, 0x81);
2079     VDP_setReg(VDP_NT_SCROLLA, APLANE >> 10);
2080     VDP_setReg(VDP_NT_SCROLLB, BPLANE >> 13);
2081     VDP_setReg(VDP_SAT_BASE, SLIST >> 9);
2082     VDP_setReg(VDP_HSCROLL, HSCRL >> 10);
2083     VDP_setReg(VDP_AUTOINC, 2);
2084     VDP_setReg(VDP_SCROLLSZ, 0x01);
2085     VDP_setReg(VDP_BACKDROP, 0);
2086
2087     // early tests
2088     t_dma_zero_wrap_early();
2089     t_dma_zero_fill_early();
2090
2091     /* pattern 0 */
2092     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(0));
2093     for (i = 0; i < 32 / 4; i++)
2094         write32(VDP_DATA_PORT, 0);
2095
2096     /* clear name tables */
2097     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(APLANE));
2098     for (i = 0; i < PLANE_W * PLANE_H / 2; i++)
2099         write32(VDP_DATA_PORT, 0);
2100
2101     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(BPLANE));
2102     for (i = 0; i < PLANE_W * PLANE_H / 2; i++)
2103         write32(VDP_DATA_PORT, 0);
2104
2105     /* SAT, h. scroll */
2106     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(SLIST));
2107     write32(VDP_DATA_PORT, 0);
2108
2109     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(HSCRL));
2110     write32(VDP_DATA_PORT, 0);
2111
2112     /* scroll plane vscroll */
2113     write32(VDP_CTRL_PORT, CTL_WRITE_VSRAM(0));
2114     write32(VDP_DATA_PORT, 0);
2115     printf_ypos = 1;
2116
2117     /* load font */
2118     write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(TILE_FONT_BASE));
2119     for (i = 0; i < FONT_LEN * 32 / 4; i++)
2120         write32(VDP_DATA_PORT, font_base[i]);
2121
2122     /* set colors */
2123     setup_default_palette();
2124
2125     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
2126
2127     have_32x = read32(0xa130ec) == MKLONG('M','A','R','S');
2128     en_32x = have_32x && (read32(0xa15100) & 1);
2129     v8 = read8(0xa10001);
2130     printf("MD version: %02x %s %s %s%s\n", v8,
2131         (v8 & 0x80) ? "world" : "jap",
2132         (v8 & 0x40) ? "pal" : "ntsc",
2133         have_32x ? "32X" : "",
2134         en_32x ? "+" : "");
2135
2136     for (i = 0; i < ARRAY_SIZE(g_tests); i++) {
2137         // print test number if we haven't scrolled away
2138         if (printf_ypos < CSCREEN_H) {
2139             int old_ypos = printf_ypos;
2140             printf_ypos = 0;
2141             printf("%02d/%02d", i, ARRAY_SIZE(g_tests));
2142             printf_ypos = old_ypos;
2143             printf_xpos = 0;
2144         }
2145         if ((g_tests[i].type & T_32) && !have_32x) {
2146             skipped++;
2147             continue;
2148         }
2149         ret = g_tests[i].test();
2150         if (ret != 1) {
2151             text_pal = 2;
2152             printf("failed %d: %s\n", i, g_tests[i].name);
2153             text_pal = 0;
2154         }
2155         else
2156             passed++;
2157     }
2158
2159     text_pal = 0;
2160     printf("%d/%d passed, %d skipped.\n",
2161            passed, ARRAY_SIZE(g_tests), skipped);
2162
2163     printf_ypos = 0;
2164     printf("     ");
2165
2166     for (i = 0; i < 60*60 && !(get_input() & BTNM_A); i++)
2167         wait_next_vsync();
2168 #ifndef PICO
2169     // blank due to my lame tv being burn-in prone
2170     VDP_setReg(VDP_MODE2, VDP_MODE2_MD);
2171 #endif
2172     while (!(get_input() & BTNM_A))
2173         burn10(488*100/10);
2174     VDP_setReg(VDP_MODE2, VDP_MODE2_MD | VDP_MODE2_DMA | VDP_MODE2_DISP);
2175
2176
2177     {
2178         char c[3] = { '0', '0', '0' };
2179         short hscroll = 0, vscroll = 0;
2180         short hsz = 1, vsz = 0;
2181         short cellmode = 0;
2182
2183         write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(APLANE));
2184
2185 #if 0
2186         for (i = 0, c[0] = 'a'; i < 8 * 1024 / 2; i++) {
2187             write16(VDP_DATA_PORT, (u16)c[0] - 32 + TILE_FONT_BASE / 32);
2188             c[0]++;
2189             if (c[0] == 'z' + 1)
2190                 c[0] = 'a';
2191         }
2192 #else
2193         for (i = 0; i < 8 * 1024 / 2 / 4; i++) {
2194             write16(VDP_DATA_PORT, (u16)'.'  - 32 + TILE_FONT_BASE / 32);
2195             write16(VDP_DATA_PORT, (u16)c[2] - 32 + TILE_FONT_BASE / 32);
2196             write16(VDP_DATA_PORT, (u16)c[1] - 32 + TILE_FONT_BASE / 32);
2197             write16(VDP_DATA_PORT, (u16)c[0] - 32 + TILE_FONT_BASE / 32);
2198             if (hexinc(&c[0]))
2199                 if (hexinc(&c[1]))
2200                     hexinc(&c[2]);
2201         }
2202 #endif
2203         while (get_input() & BTNM_A)
2204             wait_next_vsync();
2205
2206         wait_next_vsync();
2207         for (;;) {
2208             int b = get_input();
2209
2210             if (b & BTNM_C) {
2211                 hscroll = 1, vscroll = -1;
2212                 do {
2213                     wait_next_vsync();
2214                 } while (get_input() & BTNM_C);
2215                 cellmode ^= 1;
2216             }
2217             if (b & (BTNM_L | BTNM_R | BTNM_C)) {
2218                 hscroll += (b & BTNM_L) ? 1 : -1;
2219                 write32(VDP_CTRL_PORT, CTL_WRITE_VRAM(HSCRL));
2220                 write16(VDP_DATA_PORT, hscroll);
2221             }
2222             if (b & (BTNM_U | BTNM_D | BTNM_C)) {
2223                 vscroll += (b & BTNM_U) ? -1 : 1;
2224                 write32(VDP_CTRL_PORT, CTL_WRITE_VSRAM(0));
2225                 if (cellmode) {
2226                     int end = (int)vscroll + 21;
2227                     for (i = vscroll; i < end; i++)
2228                         write32(VDP_DATA_PORT, i << 17);
2229                     VDP_setReg(VDP_MODE3, 0x04);
2230                 }
2231                 else {
2232                     write16(VDP_DATA_PORT, vscroll);
2233                     VDP_setReg(VDP_MODE3, 0x00);
2234                 }
2235             }
2236             if (b & BTNM_A) {
2237                 hsz = (hsz + 1) & 3;
2238                 do {
2239                     wait_next_vsync();
2240                 } while (get_input() & BTNM_A);
2241             }
2242             if (b & BTNM_B) {
2243                 vsz = (vsz + 1) & 3;
2244                 do {
2245                     wait_next_vsync();
2246                 } while (get_input() & BTNM_B);
2247             }
2248             VDP_setReg(VDP_SCROLLSZ, (vsz << 4) | hsz);
2249
2250             printf_xpos = 1;
2251             printf_ypos = 0;
2252             text_pal = 1;
2253             printf(" %d %d ", hsz, vsz);
2254
2255             wait_next_vsync();
2256         }
2257     }
2258
2259     for (;;)
2260         ;
2261
2262     return 0;
2263 }
2264
2265 // vim:ts=4:sw=4:expandtab