32x: change ppc handling for better logging
[picodrive.git] / pico / 32x / memory.c
CommitLineData
be2c4208 1#include "../pico_int.h"
2#include "../memory.h"
3
4static const char str_mars[] = "MARS";
5
974fdb5b 6struct Pico32xMem *Pico32xMem;
7
5e49c3a8 8static void bank_switch(int b);
9
acd35d4c 10#define MSB8(x) ((x) >> 8)
11
266c6afa 12// poll detection
4ea707e1 13#define POLL_THRESHOLD 6
14
266c6afa 15struct poll_det {
b78efee2 16 int addr, pc, cnt, flag;
266c6afa 17};
b78efee2 18static struct poll_det m68k_poll, sh2_poll[2];
266c6afa 19
b78efee2 20static int p32x_poll_detect(struct poll_det *pd, u32 a, u32 pc, int is_vdp)
266c6afa 21{
b78efee2 22 int ret = 0, flag = pd->flag;
23
24 if (is_vdp)
25 flag <<= 3;
266c6afa 26
27 if (a - 2 <= pd->addr && pd->addr <= a + 2 && pd->pc == pc) {
28 pd->cnt++;
29 if (pd->cnt > POLL_THRESHOLD) {
30 if (!(Pico32x.emu_flags & flag)) {
31 elprintf(EL_32X, "%s poll addr %08x @ %06x",
32 flag == P32XF_68KPOLL ? "m68k" : (flag == P32XF_MSH2POLL ? "msh2" : "ssh2"), a, pc);
33 ret = 1;
34 }
35 Pico32x.emu_flags |= flag;
36 }
37 }
38 else
39 pd->cnt = 0;
40 pd->addr = a;
41 pd->pc = pc;
42
43 return ret;
44}
45
b78efee2 46static int p32x_poll_undetect(struct poll_det *pd, int is_vdp)
266c6afa 47{
b78efee2 48 int ret = 0, flag = pd->flag;
49 if (is_vdp)
50 flag <<= 3;
266c6afa 51 if (pd->cnt > POLL_THRESHOLD)
52 ret = 1;
53 pd->addr = pd->cnt = 0;
54 Pico32x.emu_flags &= ~flag;
55 return ret;
56}
57
4ea707e1 58void p32x_poll_event(int is_vdp)
59{
b78efee2 60 p32x_poll_undetect(&sh2_poll[0], is_vdp);
61 p32x_poll_undetect(&sh2_poll[1], is_vdp);
4ea707e1 62}
63
974fdb5b 64// SH2 faking
b78efee2 65//#define FAKE_SH2
acd35d4c 66int p32x_csum_faked;
67#ifdef FAKE_SH2
974fdb5b 68static const u16 comm_fakevals[] = {
69 0x4d5f, 0x4f4b, // M_OK
70 0x535f, 0x4f4b, // S_OK
5e49c3a8 71 0x4D41, 0x5346, // MASF - Brutal Unleashed
72 0x5331, 0x4d31, // Darxide
73 0x5332, 0x4d32,
74 0x5333, 0x4d33,
75 0x0000, 0x0000, // eq for doom
974fdb5b 76 0x0002, // Mortal Kombat
acd35d4c 77// 0, // pad
be2c4208 78};
acd35d4c 79
80static u32 sh2_comm_faker(u32 a)
81{
82 static int f = 0;
83 if (a == 0x28 && !p32x_csum_faked) {
84 p32x_csum_faked = 1;
85 return *(unsigned short *)(Pico.rom + 0x18e);
86 }
87 if (f >= sizeof(comm_fakevals) / sizeof(comm_fakevals[0]))
88 f = 0;
89 return comm_fakevals[f++];
90}
91#endif
be2c4208 92
4ea707e1 93// DMAC handling
94static struct {
95 unsigned int sar0, dar0, tcr0; // src addr, dst addr, transfer count
96 unsigned int chcr0; // chan ctl
97 unsigned int sar1, dar1, tcr1; // same for chan 1
98 unsigned int chcr1;
99 int pad[4];
100 unsigned int dmaor;
101} * dmac0;
102
103static void dma_68k2sh2_do(void)
104{
105 unsigned short *dreqlen = &Pico32x.regs[0x10 / 2];
106 int i;
107
108 if (dmac0->tcr0 != *dreqlen)
109 elprintf(EL_32X|EL_ANOMALY, "tcr0 and dreq len differ: %d != %d", dmac0->tcr0, *dreqlen);
110
111 for (i = 0; i < Pico32x.dmac_ptr && dmac0->tcr0 > 0; i++) {
b78efee2 112 extern void p32x_sh2_write16(u32 a, u32 d, int id);
4ea707e1 113 elprintf(EL_32X|EL_ANOMALY, "dmaw [%08x] %04x, left %d", dmac0->dar0, Pico32x.dmac_fifo[i], *dreqlen);
b78efee2 114 p32x_sh2_write16(dmac0->dar0, Pico32x.dmac_fifo[i], 0);
4ea707e1 115 dmac0->dar0 += 2;
116 dmac0->tcr0--;
117 (*dreqlen)--;
118 }
119
120 Pico32x.dmac_ptr = 0; // HACK
121 Pico32x.regs[6 / 2] &= ~P32XS_FULL;
122 if (*dreqlen == 0)
123 Pico32x.regs[6 / 2] &= ~P32XS_68S; // transfer complete
124 if (dmac0->tcr0 == 0)
125 dmac0->chcr0 |= 2; // DMA has ended normally
4ea707e1 126}
127
128// ------------------------------------------------------------------
b78efee2 129// 68k regs
4ea707e1 130
be2c4208 131static u32 p32x_reg_read16(u32 a)
132{
133 a &= 0x3e;
134
3cf9570b 135#if 0
974fdb5b 136 if ((a & 0x30) == 0x20)
acd35d4c 137 return sh2_comm_faker(a);
266c6afa 138#else
db1d3564 139 if ((a & 0x30) == 0x20 && p32x_poll_detect(&m68k_poll, a, SekPc, 0)) {
266c6afa 140 SekEndRun(16);
141 }
acd35d4c 142#endif
3cf9570b 143#ifdef FAKE_SH2
144 // fake only slave for now
145 if (a == 0x24 || a == 0x26)
146 return sh2_comm_faker(a);
147#endif
db1d3564 148 if ((a & 0x30) == 0x30)
149 return p32x_pwm_read16(a);
974fdb5b 150
be2c4208 151 return Pico32x.regs[a / 2];
152}
153
be2c4208 154static void p32x_reg_write8(u32 a, u32 d)
155{
acd35d4c 156 u16 *r = Pico32x.regs;
be2c4208 157 a &= 0x3f;
158
acd35d4c 159 if (a == 1 && !(r[0] & 1)) {
160 r[0] |= 1;
be2c4208 161 Pico32xStartup();
162 return;
163 }
5e49c3a8 164
acd35d4c 165 if (!(r[0] & 1))
5e49c3a8 166 return;
167
acd35d4c 168 switch (a) {
4ea707e1 169 case 0: // adapter ctl
acd35d4c 170 r[0] = (r[0] & 0x83) | ((d << 8) & P32XS_FM);
171 break;
4ea707e1 172 case 3: // irq ctl
173 if ((d & 1) && !(Pico32x.sh2irqi[0] & P32XI_CMD)) {
174 Pico32x.sh2irqi[0] |= P32XI_CMD;
175 p32x_update_irls();
176 }
b78efee2 177 if ((d & 2) && !(Pico32x.sh2irqi[1] & P32XI_CMD)) {
178 Pico32x.sh2irqi[1] |= P32XI_CMD;
179 p32x_update_irls();
180 }
4ea707e1 181 break;
182 case 5: // bank
acd35d4c 183 d &= 7;
4ea707e1 184 if (r[4 / 2] != d) {
185 r[4 / 2] = d;
acd35d4c 186 bank_switch(d);
187 }
188 break;
4ea707e1 189 case 7: // DREQ ctl
190 r[6 / 2] = (r[6 / 2] & P32XS_FULL) | (d & (P32XS_68S|P32XS_RV));
191 break;
5e49c3a8 192 }
193}
194
195static void p32x_reg_write16(u32 a, u32 d)
196{
acd35d4c 197 u16 *r = Pico32x.regs;
198 a &= 0x3e;
199
200 switch (a) {
4ea707e1 201 case 0x00: // adapter ctl
acd35d4c 202 r[0] = (r[0] & 0x83) | (d & P32XS_FM);
203 return;
4ea707e1 204 case 0x10: // DREQ len
205 r[a / 2] = d & ~3;
206 return;
207 case 0x12: // FIFO reg
208 if (!(r[6 / 2] & P32XS_68S)) {
209 elprintf(EL_32X|EL_ANOMALY, "DREQ FIFO w16 without 68S?");
210 return;
211 }
212 if (Pico32x.dmac_ptr < DMAC_FIFO_LEN) {
213 Pico32x.dmac_fifo[Pico32x.dmac_ptr++] = d;
214 if ((Pico32x.dmac_ptr & 3) == 0 && (dmac0->chcr0 & 3) == 1 && (dmac0->dmaor & 1))
215 dma_68k2sh2_do();
216 if (Pico32x.dmac_ptr == DMAC_FIFO_LEN)
217 r[6 / 2] |= P32XS_FULL;
218 }
219 break;
acd35d4c 220 }
221
4ea707e1 222 // DREQ src, dst
223 if ((a & 0x38) == 0x08) {
224 r[a / 2] = d;
225 return;
226 }
227 // comm port
228 else if ((a & 0x30) == 0x20 && r[a / 2] != d) {
acd35d4c 229 r[a / 2] = d;
b78efee2 230 if (p32x_poll_undetect(&sh2_poll[0], 0) || p32x_poll_undetect(&sh2_poll[1], 0))
231 // if some SH2 is busy waiting, it needs to see the result ASAP
3cf9570b 232 SekEndRun(16);
acd35d4c 233 return;
234 }
db1d3564 235 // PWM
236 else if ((a & 0x30) == 0x30) {
237 p32x_pwm_write16(a, d);
238 return;
239 }
acd35d4c 240
5e49c3a8 241 p32x_reg_write8(a + 1, d);
be2c4208 242}
243
4ea707e1 244// ------------------------------------------------------------------
be2c4208 245// VDP regs
246static u32 p32x_vdp_read16(u32 a)
247{
248 a &= 0x0e;
249
250 return Pico32x.vdp_regs[a / 2];
251}
252
be2c4208 253static void p32x_vdp_write8(u32 a, u32 d)
254{
974fdb5b 255 u16 *r = Pico32x.vdp_regs;
be2c4208 256 a &= 0x0f;
257
4ea707e1 258 // for FEN checks between writes
b78efee2 259 sh2_poll[0].cnt = 0;
4ea707e1 260
974fdb5b 261 // TODO: verify what's writeable
be2c4208 262 switch (a) {
974fdb5b 263 case 0x01:
5e49c3a8 264 // priority inversion is handled in palette
265 if ((r[0] ^ d) & P32XV_PRI)
266 Pico32x.dirty_pal = 1;
974fdb5b 267 r[0] = (r[0] & P32XV_nPAL) | (d & 0xff);
268 break;
be2c4208 269 case 0x0b:
974fdb5b 270 d &= 1;
271 Pico32x.pending_fb = d;
272 // if we are blanking and FS bit is changing
4ea707e1 273 if (((r[0x0a/2] & P32XV_VBLK) || (r[0] & P32XV_Mx) == 0) && ((r[0x0a/2] ^ d) & P32XV_FS)) {
974fdb5b 274 r[0x0a/2] ^= 1;
275 Pico32xSwapDRAM(d ^ 1);
266c6afa 276 elprintf(EL_32X, "VDP FS: %d", r[0x0a/2] & P32XV_FS);
be2c4208 277 }
278 break;
279 }
280}
281
974fdb5b 282static void p32x_vdp_write16(u32 a, u32 d)
283{
284 p32x_vdp_write8(a | 1, d);
285}
286
4ea707e1 287// ------------------------------------------------------------------
acd35d4c 288// SH2 regs
b78efee2 289
290static u32 p32x_sh2reg_read16(u32 a, int cpuid)
acd35d4c 291{
4ea707e1 292 u16 *r = Pico32x.regs;
293 a &= 0xfe; // ?
266c6afa 294
4ea707e1 295 switch (a) {
296 case 0x00: // adapter/irq ctl
b78efee2 297 return (r[0] & P32XS_FM) | P32XS2_ADEN | Pico32x.sh2irq_mask[cpuid];
4ea707e1 298 case 0x10: // DREQ len
299 return r[a / 2];
acd35d4c 300 }
4ea707e1 301
db1d3564 302 // DREQ src, dst
303 if ((a & 0x38) == 0x08)
4ea707e1 304 return r[a / 2];
db1d3564 305 // comm port
306 if ((a & 0x30) == 0x20) {
307 if (p32x_poll_detect(&sh2_poll[cpuid], a, sh2_pc(cpuid), 0))
308 ash2_end_run(8);
309 return r[a / 2];
310 }
311 if ((a & 0x30) == 0x30) {
312 sh2_poll[cpuid].cnt = 0;
313 return p32x_pwm_read16(a);
314 }
acd35d4c 315
316 return 0;
317}
318
b78efee2 319static void p32x_sh2reg_write8(u32 a, u32 d, int cpuid)
acd35d4c 320{
4ea707e1 321 a &= 0xff;
322 if (a == 1) {
b78efee2 323 Pico32x.sh2irq_mask[cpuid] = d & 0x0f;
4ea707e1 324 p32x_update_irls();
325 }
acd35d4c 326}
327
b78efee2 328static void p32x_sh2reg_write16(u32 a, u32 d, int cpuid)
acd35d4c 329{
4ea707e1 330 a &= 0xfe;
acd35d4c 331
db1d3564 332 // comm
4ea707e1 333 if ((a & 0x30) == 0x20 && Pico32x.regs[a/2] != d) {
b78efee2 334 Pico32x.regs[a / 2] = d;
335 p32x_poll_undetect(&m68k_poll, 0);
336 p32x_poll_undetect(&sh2_poll[cpuid ^ 1], 0);
acd35d4c 337 return;
338 }
db1d3564 339 // PWM
340 else if ((a & 0x30) == 0x30) {
341 p32x_pwm_write16(a, d);
342 return;
343 }
acd35d4c 344
4ea707e1 345 switch (a) {
346 case 0x14: Pico32x.sh2irqs &= ~P32XI_VRES; goto irls;
347 case 0x16: Pico32x.sh2irqs &= ~P32XI_VINT; goto irls;
348 case 0x18: Pico32x.sh2irqs &= ~P32XI_HINT; goto irls;
b78efee2 349 case 0x1a: Pico32x.sh2irqi[cpuid] &= ~P32XI_CMD; goto irls;
4ea707e1 350 case 0x1c: Pico32x.sh2irqs &= ~P32XI_PWM; goto irls;
351 }
352
b78efee2 353 p32x_sh2reg_write8(a | 1, d, cpuid);
4ea707e1 354 return;
355
356irls:
357 p32x_update_irls();
358}
359
b78efee2 360static u32 sh2_peripheral_read(u32 a, int id)
4ea707e1 361{
362 u32 d;
363 a &= 0x1fc;
364 d = Pico32xMem->sh2_peri_regs[0][a / 4];
365
b78efee2 366 elprintf(EL_32X, "%csh2 peri r32 [%08x] %08x @%06x", id ? 's' : 'm', a, d, sh2_pc(id));
4ea707e1 367 return d;
acd35d4c 368}
369
b78efee2 370static void sh2_peripheral_write(u32 a, u32 d, int id)
4ea707e1 371{
372 unsigned int *r = Pico32xMem->sh2_peri_regs[0];
b78efee2 373 elprintf(EL_32X, "%csh2 peri w32 [%08x] %08x @%06x", id ? 's' : 'm', a, d, sh2_pc(id));
4ea707e1 374
375 a &= 0x1fc;
376 r[a / 4] = d;
377
378 if ((a == 0x1b0 || a == 0x18c) && (dmac0->chcr0 & 3) == 1 && (dmac0->dmaor & 1)) {
379 elprintf(EL_32X, "sh2 DMA %08x -> %08x, cnt %d, chcr %04x @%06x",
b78efee2 380 dmac0->sar0, dmac0->dar0, dmac0->tcr0, dmac0->chcr0, sh2_pc(id));
4ea707e1 381 dmac0->tcr0 &= 0xffffff;
382 // DREQ is only sent after first 4 words are written.
383 // we do multiple of 4 words to avoid messing up alignment
384 if (dmac0->sar0 == 0x20004012 && Pico32x.dmac_ptr && (Pico32x.dmac_ptr & 3) == 0) {
385 elprintf(EL_32X, "68k -> sh2 DMA");
386 dma_68k2sh2_do();
387 }
388 }
389}
390
391// ------------------------------------------------------------------
be2c4208 392// default 32x handlers
393u32 PicoRead8_32x(u32 a)
394{
395 u32 d = 0;
396 if ((a & 0xffc0) == 0x5100) { // a15100
397 d = p32x_reg_read16(a);
398 goto out_16to8;
399 }
400
974fdb5b 401 if (!(Pico32x.regs[0] & 1))
402 goto no_vdp;
403
404 if ((a & 0xfff0) == 0x5180) { // a15180
be2c4208 405 d = p32x_vdp_read16(a);
406 goto out_16to8;
407 }
408
974fdb5b 409 if ((a & 0xfe00) == 0x5200) { // a15200
410 d = Pico32xMem->pal[(a & 0x1ff) / 2];
411 goto out_16to8;
412 }
413
414no_vdp:
be2c4208 415 if ((a & 0xfffc) == 0x30ec) { // a130ec
416 d = str_mars[a & 3];
417 goto out;
418 }
419
420 elprintf(EL_UIO, "m68k unmapped r8 [%06x] @%06x", a, SekPc);
421 return d;
422
423out_16to8:
424 if (a & 1)
425 d &= 0xff;
426 else
427 d >>= 8;
428
429out:
430 elprintf(EL_32X, "m68k 32x r8 [%06x] %02x @%06x", a, d, SekPc);
431 return d;
432}
433
434u32 PicoRead16_32x(u32 a)
435{
436 u32 d = 0;
437 if ((a & 0xffc0) == 0x5100) { // a15100
438 d = p32x_reg_read16(a);
439 goto out;
440 }
441
974fdb5b 442 if (!(Pico32x.regs[0] & 1))
443 goto no_vdp;
444
445 if ((a & 0xfff0) == 0x5180) { // a15180
be2c4208 446 d = p32x_vdp_read16(a);
447 goto out;
448 }
449
974fdb5b 450 if ((a & 0xfe00) == 0x5200) { // a15200
451 d = Pico32xMem->pal[(a & 0x1ff) / 2];
452 goto out;
453 }
454
455no_vdp:
be2c4208 456 if ((a & 0xfffc) == 0x30ec) { // a130ec
457 d = !(a & 2) ? ('M'<<8)|'A' : ('R'<<8)|'S';
458 goto out;
459 }
460
461 elprintf(EL_UIO, "m68k unmapped r16 [%06x] @%06x", a, SekPc);
462 return d;
463
464out:
465 elprintf(EL_32X, "m68k 32x r16 [%06x] %04x @%06x", a, d, SekPc);
466 return d;
467}
468
469void PicoWrite8_32x(u32 a, u32 d)
470{
471 if ((a & 0xfc00) == 0x5000)
472 elprintf(EL_32X, "m68k 32x w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
473
474 if ((a & 0xffc0) == 0x5100) { // a15100
475 p32x_reg_write8(a, d);
476 return;
477 }
478
974fdb5b 479 if (!(Pico32x.regs[0] & 1))
480 goto no_vdp;
481
482 if ((a & 0xfff0) == 0x5180) { // a15180
be2c4208 483 p32x_vdp_write8(a, d);
484 return;
485 }
486
974fdb5b 487 // TODO: verify
488 if ((a & 0xfe00) == 0x5200) { // a15200
489 elprintf(EL_32X|EL_ANOMALY, "m68k 32x PAL w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
490 ((u8 *)Pico32xMem->pal)[(a & 0x1ff) ^ 1] = d;
491 Pico32x.dirty_pal = 1;
492 return;
493 }
494
495no_vdp:
be2c4208 496 elprintf(EL_UIO, "m68k unmapped w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
497}
498
499void PicoWrite16_32x(u32 a, u32 d)
500{
501 if ((a & 0xfc00) == 0x5000)
502 elprintf(EL_UIO, "m68k 32x w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
503
504 if ((a & 0xffc0) == 0x5100) { // a15100
505 p32x_reg_write16(a, d);
506 return;
507 }
508
974fdb5b 509 if (!(Pico32x.regs[0] & 1))
510 goto no_vdp;
511
512 if ((a & 0xfff0) == 0x5180) { // a15180
be2c4208 513 p32x_vdp_write16(a, d);
514 return;
515 }
516
974fdb5b 517 if ((a & 0xfe00) == 0x5200) { // a15200
518 Pico32xMem->pal[(a & 0x1ff) / 2] = d;
519 Pico32x.dirty_pal = 1;
520 return;
521 }
522
523no_vdp:
be2c4208 524 elprintf(EL_UIO, "m68k unmapped w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
525}
526
527// hint vector is writeable
528static void PicoWrite8_hint(u32 a, u32 d)
529{
530 if ((a & 0xfffc) == 0x0070) {
531 Pico32xMem->m68k_rom[a ^ 1] = d;
532 return;
533 }
534
535 elprintf(EL_UIO, "m68k unmapped w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
536}
537
538static void PicoWrite16_hint(u32 a, u32 d)
539{
540 if ((a & 0xfffc) == 0x0070) {
541 ((u16 *)Pico32xMem->m68k_rom)[a/2] = d;
542 return;
543 }
544
545 elprintf(EL_UIO, "m68k unmapped w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
546}
547
974fdb5b 548void Pico32xSwapDRAM(int b)
549{
550 cpu68k_map_set(m68k_read8_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
551 cpu68k_map_set(m68k_read16_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
552 cpu68k_map_set(m68k_write8_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
553 cpu68k_map_set(m68k_write16_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
554}
555
5e49c3a8 556static void bank_switch(int b)
557{
558 unsigned int rs, bank;
559
560 bank = b << 20;
561 if (bank >= Pico.romsize) {
562 elprintf(EL_32X|EL_ANOMALY, "missing bank @ %06x", bank);
563 return;
564 }
565
566 // 32X ROM (unbanked, XXX: consider mirroring?)
567 rs = (Pico.romsize + M68K_BANK_MASK) & ~M68K_BANK_MASK;
568 rs -= bank;
569 if (rs > 0x100000)
570 rs = 0x100000;
571 cpu68k_map_set(m68k_read8_map, 0x900000, 0x900000 + rs - 1, Pico.rom + bank, 0);
572 cpu68k_map_set(m68k_read16_map, 0x900000, 0x900000 + rs - 1, Pico.rom + bank, 0);
573
574 elprintf(EL_32X, "bank %06x-%06x -> %06x", 0x900000, 0x900000 + rs - 1, bank);
575}
576
acd35d4c 577// -----------------------------------------------------------------
578// SH2
579// -----------------------------------------------------------------
580
b78efee2 581u32 p32x_sh2_read8(u32 a, int id)
acd35d4c 582{
583 u32 d = 0;
4ea707e1 584
b78efee2 585 if (id == 0 && a < sizeof(Pico32xMem->sh2_rom_m))
acd35d4c 586 return Pico32xMem->sh2_rom_m[a ^ 1];
b78efee2 587 if (id == 1 && a < sizeof(Pico32xMem->sh2_rom_s))
588 return Pico32xMem->sh2_rom_s[a ^ 1];
acd35d4c 589
590 if ((a & 0x0ffc0000) == 0x06000000)
591 return Pico32xMem->sdram[(a & 0x3ffff) ^ 1];
592
593 if ((a & 0x0fc00000) == 0x02000000)
594 if ((a & 0x003fffff) < Pico.romsize)
595 return Pico.rom[(a & 0x3fffff) ^ 1];
596
b78efee2 597 if ((a & ~0xfff) == 0xc0000000)
598 return Pico32xMem->data_array[id][(a & 0xfff) ^ 1];
599
acd35d4c 600 if ((a & 0x0fffff00) == 0x4000) {
b78efee2 601 d = p32x_sh2reg_read16(a, id);
db1d3564 602 goto out_16to8;
acd35d4c 603 }
604
605 if ((a & 0x0fffff00) == 0x4100) {
606 d = p32x_vdp_read16(a);
db1d3564 607 if (p32x_poll_detect(&sh2_poll[id], a, sh2_pc(id), 1))
608 ash2_end_run(8);
609 goto out_16to8;
acd35d4c 610 }
611
612 if ((a & 0x0fffff00) == 0x4200) {
613 d = Pico32xMem->pal[(a & 0x1ff) / 2];
614 goto out_16to8;
615 }
616
b78efee2 617 elprintf(EL_UIO, "%csh2 unmapped r8 [%08x] %02x @%06x",
618 id ? 's' : 'm', a, d, sh2_pc(id));
acd35d4c 619 return d;
620
621out_16to8:
622 if (a & 1)
623 d &= 0xff;
624 else
625 d >>= 8;
626
b78efee2 627 elprintf(EL_32X, "%csh2 r8 [%08x] %02x @%06x",
628 id ? 's' : 'm', a, d, sh2_pc(id));
acd35d4c 629 return d;
630}
631
b78efee2 632u32 p32x_sh2_read16(u32 a, int id)
acd35d4c 633{
634 u32 d = 0;
3cf9570b 635
b78efee2 636 if (id == 0 && a < sizeof(Pico32xMem->sh2_rom_m))
acd35d4c 637 return *(u16 *)(Pico32xMem->sh2_rom_m + a);
b78efee2 638 if (id == 1 && a < sizeof(Pico32xMem->sh2_rom_s))
639 return *(u16 *)(Pico32xMem->sh2_rom_s + a);
acd35d4c 640
641 if ((a & 0x0ffc0000) == 0x06000000)
642 return ((u16 *)Pico32xMem->sdram)[(a & 0x3ffff) / 2];
643
644 if ((a & 0x0fc00000) == 0x02000000)
645 if ((a & 0x003fffff) < Pico.romsize)
646 return ((u16 *)Pico.rom)[(a & 0x3fffff) / 2];
647
b78efee2 648 if ((a & ~0xfff) == 0xc0000000)
649 return ((u16 *)Pico32xMem->data_array[id])[(a & 0xfff) / 2];
650
acd35d4c 651 if ((a & 0x0fffff00) == 0x4000) {
b78efee2 652 d = p32x_sh2reg_read16(a, id);
db1d3564 653 goto out;
acd35d4c 654 }
655
656 if ((a & 0x0fffff00) == 0x4100) {
657 d = p32x_vdp_read16(a);
db1d3564 658 if (p32x_poll_detect(&sh2_poll[id], a, sh2_pc(id), 1))
659 ash2_end_run(8);
660 goto out;
acd35d4c 661 }
662
663 if ((a & 0x0fffff00) == 0x4200) {
664 d = Pico32xMem->pal[(a & 0x1ff) / 2];
665 goto out;
666 }
667
b78efee2 668 elprintf(EL_UIO, "%csh2 unmapped r16 [%08x] %04x @%06x",
669 id ? 's' : 'm', a, d, sh2_pc(id));
acd35d4c 670 return d;
671
672out:
b78efee2 673 elprintf(EL_32X, "%csh2 r16 [%08x] %04x @%06x",
674 id ? 's' : 'm', a, d, sh2_pc(id));
acd35d4c 675 return d;
676}
677
b78efee2 678u32 p32x_sh2_read32(u32 a, int id)
acd35d4c 679{
4ea707e1 680 if ((a & 0xfffffe00) == 0xfffffe00)
b78efee2 681 return sh2_peripheral_read(a, id);
4ea707e1 682
acd35d4c 683// elprintf(EL_UIO, "sh2 r32 [%08x] %08x @%06x", a, d, ash2_pc());
b78efee2 684 return (p32x_sh2_read16(a, id) << 16) | p32x_sh2_read16(a + 2, id);
acd35d4c 685}
686
b78efee2 687void p32x_sh2_write8(u32 a, u32 d, int id)
acd35d4c 688{
689 if ((a & 0x0ffffc00) == 0x4000)
b78efee2 690 elprintf(EL_32X, "%csh2 w8 [%08x] %02x @%06x",
691 id ? 's' : 'm', a, d & 0xff, sh2_pc(id));
acd35d4c 692
693 if ((a & 0x0ffc0000) == 0x06000000) {
694 Pico32xMem->sdram[(a & 0x3ffff) ^ 1] = d;
695 return;
696 }
697
266c6afa 698 if ((a & 0x0ffe0000) == 0x04000000) {
699 u8 *dram = (u8 *)Pico32xMem->dram[(Pico32x.vdp_regs[0x0a/2] & P32XV_FS) ^ 1];
700 dram[(a & 0x1ffff) ^ 1] = d;
701 return;
702 }
703
b78efee2 704 if ((a & ~0xfff) == 0xc0000000) {
705 Pico32xMem->data_array[id][(a & 0xfff) ^ 1] = d;
706 return;
707 }
708
acd35d4c 709 if ((a & 0x0fffff00) == 0x4100) {
710 p32x_vdp_write8(a, d);
711 return;
712 }
713
714 if ((a & 0x0fffff00) == 0x4000) {
b78efee2 715 p32x_sh2reg_write8(a, d, id);
acd35d4c 716 return;
717 }
718
b78efee2 719 elprintf(EL_UIO, "%csh2 unmapped w8 [%08x] %02x @%06x",
720 id ? 's' : 'm', a, d & 0xff, sh2_pc(id));
acd35d4c 721}
722
b78efee2 723void p32x_sh2_write16(u32 a, u32 d, int id)
acd35d4c 724{
725 if ((a & 0x0ffffc00) == 0x4000)
b78efee2 726 elprintf(EL_32X, "%csh2 w16 [%08x] %04x @%06x",
727 id ? 's' : 'm', a, d & 0xffff, sh2_pc(id));
acd35d4c 728
729 if ((a & 0x0ffc0000) == 0x06000000) {
730 ((u16 *)Pico32xMem->sdram)[(a & 0x3ffff) / 2] = d;
731 return;
732 }
733
b78efee2 734 if ((a & ~0xfff) == 0xc0000000) {
735 ((u16 *)Pico32xMem->data_array[id])[(a & 0xfff) / 2] = d;
736 return;
737 }
738
266c6afa 739 if ((a & 0x0ffe0000) == 0x04000000) {
740 Pico32xMem->dram[(Pico32x.vdp_regs[0x0a/2] & P32XV_FS) ^ 1][(a & 0x1ffff) / 2] = d;
741 return;
742 }
743
acd35d4c 744 if ((a & 0x0fffff00) == 0x4100) {
745 p32x_vdp_write16(a, d);
746 return;
747 }
748
749 if ((a & 0x0ffffe00) == 0x4200) {
750 Pico32xMem->pal[(a & 0x1ff) / 2] = d;
751 Pico32x.dirty_pal = 1;
752 return;
753 }
754
755 if ((a & 0x0fffff00) == 0x4000) {
b78efee2 756 p32x_sh2reg_write16(a, d, id);
acd35d4c 757 return;
758 }
759
b78efee2 760 elprintf(EL_UIO, "%csh2 unmapped w16 [%08x] %04x @%06x",
761 id ? 's' : 'm', a, d & 0xffff, sh2_pc(id));
acd35d4c 762}
763
b78efee2 764void p32x_sh2_write32(u32 a, u32 d, int id)
acd35d4c 765{
4ea707e1 766 if ((a & 0xfffffe00) == 0xfffffe00) {
b78efee2 767 sh2_peripheral_write(a, d, id);
4ea707e1 768 return;
769 }
770
b78efee2 771 p32x_sh2_write16(a, d >> 16, id);
772 p32x_sh2_write16(a + 2, d, id);
acd35d4c 773}
774
be2c4208 775#define HWSWAP(x) (((x) << 16) | ((x) >> 16))
776void PicoMemSetup32x(void)
777{
778 unsigned short *ps;
779 unsigned int *pl;
5e49c3a8 780 unsigned int rs;
be2c4208 781 int i;
782
783 Pico32xMem = calloc(1, sizeof(*Pico32xMem));
784 if (Pico32xMem == NULL) {
785 elprintf(EL_STATUS, "OOM");
786 return;
787 }
788
4ea707e1 789 dmac0 = (void *)&Pico32xMem->sh2_peri_regs[0][0x180 / 4];
790
be2c4208 791 // generate 68k ROM
792 ps = (unsigned short *)Pico32xMem->m68k_rom;
793 pl = (unsigned int *)Pico32xMem->m68k_rom;
794 for (i = 1; i < 0xc0/4; i++)
974fdb5b 795 pl[i] = HWSWAP(0x880200 + (i - 1) * 6);
be2c4208 796
797 // fill with nops
798 for (i = 0xc0/2; i < 0x100/2; i++)
799 ps[i] = 0x4e71;
800
5e49c3a8 801#if 0
be2c4208 802 ps[0xc0/2] = 0x46fc;
803 ps[0xc2/2] = 0x2700; // move #0x2700,sr
804 ps[0xfe/2] = 0x60fe; // jump to self
5e49c3a8 805#else
806 ps[0xfe/2] = 0x4e75; // rts
807#endif
be2c4208 808
809 // fill remaining mem with ROM
974fdb5b 810 memcpy(Pico32xMem->m68k_rom + 0x100, Pico.rom + 0x100, sizeof(Pico32xMem->m68k_rom) - 0x100);
be2c4208 811
acd35d4c 812 // 32X ROM
813 // TODO: move
814 {
815 FILE *f = fopen("32X_M_BIOS.BIN", "rb");
816 int i;
817 if (f == NULL) {
b78efee2 818 printf("missing 32X_M_BIOS.BIN\n");
acd35d4c 819 exit(1);
820 }
821 fread(Pico32xMem->sh2_rom_m, 1, sizeof(Pico32xMem->sh2_rom_m), f);
822 fclose(f);
b78efee2 823 f = fopen("32X_S_BIOS.BIN", "rb");
824 if (f == NULL) {
825 printf("missing 32X_S_BIOS.BIN\n");
826 exit(1);
827 }
828 fread(Pico32xMem->sh2_rom_s, 1, sizeof(Pico32xMem->sh2_rom_s), f);
829 fclose(f);
830 // byteswap
acd35d4c 831 for (i = 0; i < sizeof(Pico32xMem->sh2_rom_m); i += 2) {
832 int t = Pico32xMem->sh2_rom_m[i];
833 Pico32xMem->sh2_rom_m[i] = Pico32xMem->sh2_rom_m[i + 1];
834 Pico32xMem->sh2_rom_m[i + 1] = t;
835 }
b78efee2 836 for (i = 0; i < sizeof(Pico32xMem->sh2_rom_s); i += 2) {
837 int t = Pico32xMem->sh2_rom_s[i];
838 Pico32xMem->sh2_rom_s[i] = Pico32xMem->sh2_rom_s[i + 1];
839 Pico32xMem->sh2_rom_s[i + 1] = t;
840 }
acd35d4c 841 }
842
be2c4208 843 // cartridge area becomes unmapped
844 // XXX: we take the easy way and don't unmap ROM,
845 // so that we can avoid handling the RV bit.
846 // m68k_map_unmap(0x000000, 0x3fffff);
847
848 // MD ROM area
974fdb5b 849 rs = sizeof(Pico32xMem->m68k_rom);
850 cpu68k_map_set(m68k_read8_map, 0x000000, rs - 1, Pico32xMem->m68k_rom, 0);
851 cpu68k_map_set(m68k_read16_map, 0x000000, rs - 1, Pico32xMem->m68k_rom, 0);
852 cpu68k_map_set(m68k_write8_map, 0x000000, rs - 1, PicoWrite8_hint, 1); // TODO verify
853 cpu68k_map_set(m68k_write16_map, 0x000000, rs - 1, PicoWrite16_hint, 1);
854
855 // DRAM area
856 Pico32xSwapDRAM(1);
be2c4208 857
858 // 32X ROM (unbanked, XXX: consider mirroring?)
5e49c3a8 859 rs = (Pico.romsize + M68K_BANK_MASK) & ~M68K_BANK_MASK;
860 if (rs > 0x80000)
861 rs = 0x80000;
862 cpu68k_map_set(m68k_read8_map, 0x880000, 0x880000 + rs - 1, Pico.rom, 0);
863 cpu68k_map_set(m68k_read16_map, 0x880000, 0x880000 + rs - 1, Pico.rom, 0);
be2c4208 864
865 // 32X ROM (banked)
5e49c3a8 866 bank_switch(0);
b78efee2 867
868 // setup poll detector
869 m68k_poll.flag = P32XF_68KPOLL;
870 sh2_poll[0].flag = P32XF_MSH2POLL;
871 sh2_poll[1].flag = P32XF_SSH2POLL;
be2c4208 872}
873