minor drawing code cleanup
[picodrive.git] / pico / 32x / memory.c
CommitLineData
83ff19ec 1/*
cff531af 2 * PicoDrive
65514d85 3 * (C) notaz, 2009,2010,2013
cff531af 4 *
5 * This work is licensed under the terms of MAME license.
6 * See COPYING file in the top-level directory.
7 *
83ff19ec 8 * Register map:
9 * a15100 F....... R.....EA F.....AC N...VHMP 4000 // Fm Ren nrEs Aden Cart heN V H cMd Pwm
10 * a15102 ........ ......SM ? 4002 // intS intM
11 * a15104 ........ ......10 ........ hhhhhhhh 4004 // bk1 bk0 Hint
12 * a15106 F....... .....SDR UE...... .....SDR 4006 // Full 68S Dma Rv fUll[fb] Empt[fb]
13 * a15108 (32bit DREQ src) 4008
14 * a1510c (32bit DREQ dst) 400c
15 * a15110 llllllll llllll00 4010 // DREQ Len
16 * a15112 (16bit FIFO reg) 4012
17 * a15114 ? (16bit VRES clr) 4014
18 * a15116 ? (16bit Vint clr) 4016
19 * a15118 ? (16bit Hint clr) 4018
20 * a1511a ........ .......C (16bit CMD clr) 401a // Cm
21 * a1511c ? (16bit PWM clr) 401c
22 * a1511e ? ? 401e
23 * a15120 (16 bytes comm) 2020
24 * a15130 (PWM) 2030
65514d85 25 *
26 * SH2 addr lines:
27 * iii. .cc. ..xx * // Internal, Cs, x
28 *
29 * sh2 map, wait/bus cycles (from docs):
30 * r w
31 * rom 0000000-0003fff 1 -
32 * sys reg 0004000-00040ff 1 1
33 * vdp reg 0004100-00041ff 5 5
34 * vdp pal 0004200-00043ff 5 5
35 * rom 2000000-23fffff 6-15
36 * dram/fb 4000000-401ffff 5-12 1-3
37 * fb ovr 4020000-403ffff
38 * sdram 6000000-603ffff 12 2 (cycles)
39 * d.a. c0000000-?
83ff19ec 40 */
be2c4208 41#include "../pico_int.h"
42#include "../memory.h"
f4bb5d6b 43#include "../../cpu/sh2/compiler.h"
be2c4208 44
45static const char str_mars[] = "MARS";
46
83ff19ec 47void *p32x_bios_g, *p32x_bios_m, *p32x_bios_s;
974fdb5b 48struct Pico32xMem *Pico32xMem;
49
5e49c3a8 50static void bank_switch(int b);
51
266c6afa 52// poll detection
19886062 53#define POLL_THRESHOLD 3
4ea707e1 54
19886062 55static struct {
56 u32 addr, cycles;
57 int cnt;
58} m68k_poll;
266c6afa 59
19886062 60static int m68k_poll_detect(u32 a, u32 cycles, u32 flags)
266c6afa 61{
19886062 62 int ret = 0;
63
64 if (a - 2 <= m68k_poll.addr && m68k_poll.addr <= a + 2
65 && cycles - m68k_poll.cycles <= 64)
66 {
67 if (m68k_poll.cnt++ > POLL_THRESHOLD) {
68 if (!(Pico32x.emu_flags & flags)) {
69 elprintf(EL_32X, "m68k poll addr %08x, cyc %u",
70 a, cycles - m68k_poll.cycles);
266c6afa 71 ret = 1;
72 }
19886062 73 Pico32x.emu_flags |= flags;
266c6afa 74 }
75 }
c987bb5c 76 else {
19886062 77 m68k_poll.cnt = 0;
78 m68k_poll.addr = a;
c987bb5c 79 }
19886062 80 m68k_poll.cycles = cycles;
266c6afa 81
82 return ret;
83}
84
19886062 85void p32x_m68k_poll_event(u32 flags)
86{
87 if (Pico32x.emu_flags & flags) {
88 elprintf(EL_32X, "m68k poll %02x -> %02x", Pico32x.emu_flags,
89 Pico32x.emu_flags & ~flags);
90 Pico32x.emu_flags &= ~flags;
91 SekSetStop(0);
92 }
93 m68k_poll.addr = m68k_poll.cnt = 0;
94}
95
96static void sh2_poll_detect(SH2 *sh2, u32 a, u32 flags)
266c6afa 97{
19886062 98 int cycles_left = sh2_cycles_left(sh2);
99
100 if (a == sh2->poll_addr && sh2->poll_cycles - cycles_left <= 10) {
101 if (sh2->poll_cnt++ > 3) {
102 if (!(sh2->state & flags))
103 elprintf(EL_32X, "%csh2 state: %02x->%02x", sh2->is_slave?'s':'m',
104 sh2->state, sh2->state | flags);
105
106 sh2->state |= flags;
107 sh2_end_run(sh2, 1);
108 pevt_log_sh2(sh2, EVT_POLL_START);
109 return;
110 }
111 }
be20816c 112 else
19886062 113 sh2->poll_cnt = 0;
114 sh2->poll_addr = a;
115 sh2->poll_cycles = cycles_left;
116}
117
118void p32x_sh2_poll_event(SH2 *sh2, u32 flags, u32 m68k_cycles)
119{
120 if (sh2->state & flags) {
121 elprintf(EL_32X, "%csh2 state: %02x->%02x", sh2->is_slave?'s':'m',
122 sh2->state, sh2->state & ~flags);
123
124 if (sh2->m68krcycles_done < m68k_cycles)
125 sh2->m68krcycles_done = m68k_cycles;
126
127 pevt_log_sh2_o(sh2, EVT_POLL_END);
be20816c 128 }
19886062 129
130 sh2->state &= ~flags;
131 sh2->poll_addr = sh2->poll_cycles = sh2->poll_cnt = 0;
266c6afa 132}
133
19886062 134static void sh2s_sync_on_read(SH2 *sh2)
4ea707e1 135{
19886062 136 int cycles;
137 if (sh2->poll_cnt != 0)
138 return;
139
140 cycles = sh2_cycles_done(sh2);
141 if (cycles > 600)
142 p32x_sync_other_sh2(sh2, sh2->m68krcycles_done + cycles / 3);
4ea707e1 143}
144
974fdb5b 145// SH2 faking
b78efee2 146//#define FAKE_SH2
acd35d4c 147#ifdef FAKE_SH2
27e26273 148static int p32x_csum_faked;
974fdb5b 149static const u16 comm_fakevals[] = {
150 0x4d5f, 0x4f4b, // M_OK
151 0x535f, 0x4f4b, // S_OK
5e49c3a8 152 0x4D41, 0x5346, // MASF - Brutal Unleashed
153 0x5331, 0x4d31, // Darxide
154 0x5332, 0x4d32,
155 0x5333, 0x4d33,
156 0x0000, 0x0000, // eq for doom
974fdb5b 157 0x0002, // Mortal Kombat
acd35d4c 158// 0, // pad
be2c4208 159};
acd35d4c 160
161static u32 sh2_comm_faker(u32 a)
162{
163 static int f = 0;
164 if (a == 0x28 && !p32x_csum_faked) {
165 p32x_csum_faked = 1;
166 return *(unsigned short *)(Pico.rom + 0x18e);
167 }
168 if (f >= sizeof(comm_fakevals) / sizeof(comm_fakevals[0]))
169 f = 0;
170 return comm_fakevals[f++];
171}
172#endif
be2c4208 173
4ea707e1 174// DMAC handling
175static struct {
176 unsigned int sar0, dar0, tcr0; // src addr, dst addr, transfer count
177 unsigned int chcr0; // chan ctl
178 unsigned int sar1, dar1, tcr1; // same for chan 1
179 unsigned int chcr1;
180 int pad[4];
181 unsigned int dmaor;
182} * dmac0;
183
184static void dma_68k2sh2_do(void)
185{
186 unsigned short *dreqlen = &Pico32x.regs[0x10 / 2];
187 int i;
188
189 if (dmac0->tcr0 != *dreqlen)
190 elprintf(EL_32X|EL_ANOMALY, "tcr0 and dreq len differ: %d != %d", dmac0->tcr0, *dreqlen);
191
1b3f5844 192 // HACK: assume bus is busy and SH2 is halted
19886062 193 msh2.state |= SH2_STATE_SLEEP;
1b3f5844 194
4ea707e1 195 for (i = 0; i < Pico32x.dmac_ptr && dmac0->tcr0 > 0; i++) {
bcf65fd6 196 elprintf(EL_32X, "dmaw [%08x] %04x, left %d", dmac0->dar0, Pico32x.dmac_fifo[i], *dreqlen);
197 p32x_sh2_write16(dmac0->dar0, Pico32x.dmac_fifo[i], &msh2);
4ea707e1 198 dmac0->dar0 += 2;
199 dmac0->tcr0--;
200 (*dreqlen)--;
201 }
202
203 Pico32x.dmac_ptr = 0; // HACK
204 Pico32x.regs[6 / 2] &= ~P32XS_FULL;
205 if (*dreqlen == 0)
206 Pico32x.regs[6 / 2] &= ~P32XS_68S; // transfer complete
be20816c 207 if (dmac0->tcr0 == 0) {
4ea707e1 208 dmac0->chcr0 |= 2; // DMA has ended normally
19886062 209 p32x_sh2_poll_event(&sh2s[0], SH2_STATE_SLEEP, SekCyclesDoneT());
be20816c 210 }
4ea707e1 211}
212
213// ------------------------------------------------------------------
b78efee2 214// 68k regs
4ea707e1 215
be2c4208 216static u32 p32x_reg_read16(u32 a)
217{
218 a &= 0x3e;
219
3cf9570b 220#if 0
974fdb5b 221 if ((a & 0x30) == 0x20)
acd35d4c 222 return sh2_comm_faker(a);
266c6afa 223#else
5fadfb1c 224 if ((a & 0x30) == 0x20) {
5fadfb1c 225 static u32 dr2 = 0;
a8fd6e37 226 unsigned int cycles = SekCyclesDoneT();
227 int comreg = 1 << (a & 0x0f) / 2;
228
229 // evil X-Men proto polls in a dbra loop and expects it to expire..
5fadfb1c 230 if (SekDar(2) != dr2)
231 m68k_poll.cnt = 0;
232 dr2 = SekDar(2);
233
a8fd6e37 234 if (cycles - msh2.m68krcycles_done > 500)
235 p32x_sync_sh2s(cycles);
236 if (Pico32x.comm_dirty_sh2 & comreg)
237 Pico32x.comm_dirty_sh2 &= ~comreg;
19886062 238 else if (m68k_poll_detect(a, cycles, P32XF_68KCPOLL)) {
5fadfb1c 239 SekSetStop(1);
240 SekEndTimeslice(16);
241 }
242 dr2 = SekDar(2);
a8fd6e37 243 goto out;
266c6afa 244 }
acd35d4c 245#endif
87accdf7 246
a8fd6e37 247 if (a == 2) { // INTM, INTS
248 unsigned int cycles = SekCyclesDoneT();
249 if (cycles - msh2.m68krcycles_done > 64)
250 p32x_sync_sh2s(cycles);
251 return ((Pico32x.sh2irqi[0] & P32XI_CMD) >> 4) | ((Pico32x.sh2irqi[1] & P32XI_CMD) >> 3);
252 }
253
db1d3564 254 if ((a & 0x30) == 0x30)
255 return p32x_pwm_read16(a);
974fdb5b 256
a8fd6e37 257out:
be2c4208 258 return Pico32x.regs[a / 2];
259}
260
be2c4208 261static void p32x_reg_write8(u32 a, u32 d)
262{
acd35d4c 263 u16 *r = Pico32x.regs;
be2c4208 264 a &= 0x3f;
265
97d3f47f 266 // for things like bset on comm port
267 m68k_poll.cnt = 0;
268
acd35d4c 269 switch (a) {
4ea707e1 270 case 0: // adapter ctl
83ff19ec 271 r[0] = (r[0] & ~P32XS_FM) | ((d << 8) & P32XS_FM);
272 return;
273 case 1: // adapter ctl, RES bit writeable
274 if ((d ^ r[0]) & d & P32XS_nRES)
275 p32x_reset_sh2s();
276 r[0] = (r[0] & ~P32XS_nRES) | (d & P32XS_nRES);
1b3f5844 277 return;
4ea707e1 278 case 3: // irq ctl
279 if ((d & 1) && !(Pico32x.sh2irqi[0] & P32XI_CMD)) {
a8fd6e37 280 p32x_sync_sh2s(SekCyclesDoneT());
4ea707e1 281 Pico32x.sh2irqi[0] |= P32XI_CMD;
19886062 282 p32x_update_irls(NULL);
4ea707e1 283 }
b78efee2 284 if ((d & 2) && !(Pico32x.sh2irqi[1] & P32XI_CMD)) {
a8fd6e37 285 p32x_sync_sh2s(SekCyclesDoneT());
b78efee2 286 Pico32x.sh2irqi[1] |= P32XI_CMD;
19886062 287 p32x_update_irls(NULL);
b78efee2 288 }
1b3f5844 289 return;
4ea707e1 290 case 5: // bank
acd35d4c 291 d &= 7;
4ea707e1 292 if (r[4 / 2] != d) {
293 r[4 / 2] = d;
acd35d4c 294 bank_switch(d);
295 }
1b3f5844 296 return;
4ea707e1 297 case 7: // DREQ ctl
97d3f47f 298 r[6 / 2] = (r[6 / 2] & P32XS_FULL) | (d & (P32XS_68S|P32XS_DMA|P32XS_RV));
1b3f5844 299 return;
87accdf7 300 case 0x1b: // TV
301 r[0x1a / 2] = d;
1b3f5844 302 return;
303 }
304
305 if ((a & 0x30) == 0x20) {
306 u8 *r8 = (u8 *)r;
a8fd6e37 307 int cycles = SekCyclesDoneT();
308 int comreg;
309
310 if (r8[a ^ 1] == d)
311 return;
19886062 312
a8fd6e37 313 comreg = 1 << (a & 0x0f) / 2;
314 if (Pico32x.comm_dirty_68k & comreg)
315 p32x_sync_sh2s(cycles);
316
1b3f5844 317 r8[a ^ 1] = d;
19886062 318 p32x_sh2_poll_event(&sh2s[0], SH2_STATE_CPOLL, cycles);
319 p32x_sh2_poll_event(&sh2s[1], SH2_STATE_CPOLL, cycles);
a8fd6e37 320 Pico32x.comm_dirty_68k |= comreg;
321
322 if (cycles - (int)msh2.m68krcycles_done > 120)
323 p32x_sync_sh2s(cycles);
1b3f5844 324 return;
5e49c3a8 325 }
326}
327
328static void p32x_reg_write16(u32 a, u32 d)
329{
acd35d4c 330 u16 *r = Pico32x.regs;
331 a &= 0x3e;
332
97d3f47f 333 // for things like bset on comm port
334 m68k_poll.cnt = 0;
335
acd35d4c 336 switch (a) {
4ea707e1 337 case 0x00: // adapter ctl
83ff19ec 338 if ((d ^ r[0]) & d & P32XS_nRES)
339 p32x_reset_sh2s();
340 r[0] = (r[0] & ~(P32XS_FM|P32XS_nRES)) | (d & (P32XS_FM|P32XS_nRES));
acd35d4c 341 return;
4ea707e1 342 case 0x10: // DREQ len
343 r[a / 2] = d & ~3;
344 return;
345 case 0x12: // FIFO reg
346 if (!(r[6 / 2] & P32XS_68S)) {
347 elprintf(EL_32X|EL_ANOMALY, "DREQ FIFO w16 without 68S?");
348 return;
349 }
350 if (Pico32x.dmac_ptr < DMAC_FIFO_LEN) {
351 Pico32x.dmac_fifo[Pico32x.dmac_ptr++] = d;
352 if ((Pico32x.dmac_ptr & 3) == 0 && (dmac0->chcr0 & 3) == 1 && (dmac0->dmaor & 1))
353 dma_68k2sh2_do();
354 if (Pico32x.dmac_ptr == DMAC_FIFO_LEN)
355 r[6 / 2] |= P32XS_FULL;
356 }
357 break;
acd35d4c 358 }
359
4ea707e1 360 // DREQ src, dst
361 if ((a & 0x38) == 0x08) {
362 r[a / 2] = d;
363 return;
364 }
365 // comm port
a8fd6e37 366 else if ((a & 0x30) == 0x20) {
367 int cycles = SekCyclesDoneT();
368 int comreg;
369
370 if (r[a / 2] == d)
371 return;
372
373 comreg = 1 << (a & 0x0f) / 2;
374 if (Pico32x.comm_dirty_68k & comreg)
375 p32x_sync_sh2s(cycles);
376
acd35d4c 377 r[a / 2] = d;
19886062 378 p32x_sh2_poll_event(&sh2s[0], SH2_STATE_CPOLL, cycles);
379 p32x_sh2_poll_event(&sh2s[1], SH2_STATE_CPOLL, cycles);
a8fd6e37 380 Pico32x.comm_dirty_68k |= comreg;
381
382 if (cycles - (int)msh2.m68krcycles_done > 120)
383 p32x_sync_sh2s(cycles);
acd35d4c 384 return;
385 }
db1d3564 386 // PWM
387 else if ((a & 0x30) == 0x30) {
388 p32x_pwm_write16(a, d);
389 return;
390 }
acd35d4c 391
5e49c3a8 392 p32x_reg_write8(a + 1, d);
be2c4208 393}
394
4ea707e1 395// ------------------------------------------------------------------
be2c4208 396// VDP regs
397static u32 p32x_vdp_read16(u32 a)
398{
399 a &= 0x0e;
400
401 return Pico32x.vdp_regs[a / 2];
402}
403
be2c4208 404static void p32x_vdp_write8(u32 a, u32 d)
405{
974fdb5b 406 u16 *r = Pico32x.vdp_regs;
be2c4208 407 a &= 0x0f;
408
974fdb5b 409 // TODO: verify what's writeable
be2c4208 410 switch (a) {
974fdb5b 411 case 0x01:
5e49c3a8 412 // priority inversion is handled in palette
413 if ((r[0] ^ d) & P32XV_PRI)
414 Pico32x.dirty_pal = 1;
974fdb5b 415 r[0] = (r[0] & P32XV_nPAL) | (d & 0xff);
be20816c 416 break;
e51e5983 417 case 0x03: // shift (for pp mode)
418 r[2 / 2] = d & 1;
419 break;
be20816c 420 case 0x05: // fill len
421 r[4 / 2] = d & 0xff;
974fdb5b 422 break;
be2c4208 423 case 0x0b:
974fdb5b 424 d &= 1;
425 Pico32x.pending_fb = d;
426 // if we are blanking and FS bit is changing
4ea707e1 427 if (((r[0x0a/2] & P32XV_VBLK) || (r[0] & P32XV_Mx) == 0) && ((r[0x0a/2] ^ d) & P32XV_FS)) {
b4db550e 428 r[0x0a/2] ^= P32XV_FS;
974fdb5b 429 Pico32xSwapDRAM(d ^ 1);
266c6afa 430 elprintf(EL_32X, "VDP FS: %d", r[0x0a/2] & P32XV_FS);
be2c4208 431 }
432 break;
433 }
434}
435
19886062 436static void p32x_vdp_write16(u32 a, u32 d, SH2 *sh2)
974fdb5b 437{
be20816c 438 a &= 0x0e;
439 if (a == 6) { // fill start
440 Pico32x.vdp_regs[6 / 2] = d;
441 return;
442 }
443 if (a == 8) { // fill data
444 u16 *dram = Pico32xMem->dram[(Pico32x.vdp_regs[0x0a/2] & P32XV_FS) ^ 1];
1b3f5844 445 int len = Pico32x.vdp_regs[4 / 2] + 1;
a8fd6e37 446 int len1 = len;
be20816c 447 a = Pico32x.vdp_regs[6 / 2];
a8fd6e37 448 while (len1--) {
be20816c 449 dram[a] = d;
450 a = (a & 0xff00) | ((a + 1) & 0xff);
451 }
a8fd6e37 452 Pico32x.vdp_regs[0x06 / 2] = a;
453 Pico32x.vdp_regs[0x08 / 2] = d;
19886062 454 if (sh2 != NULL && len > 4) {
a8fd6e37 455 Pico32x.vdp_regs[0x0a / 2] |= P32XV_nFEN;
19886062 456 // supposedly takes 3 bus/6 sh2 cycles? or 3 sh2 cycles?
457 p32x_event_schedule_sh2(sh2, P32X_EVENT_FILLEND, 3 + len);
a8fd6e37 458 }
be20816c 459 return;
460 }
461
974fdb5b 462 p32x_vdp_write8(a | 1, d);
463}
464
4ea707e1 465// ------------------------------------------------------------------
acd35d4c 466// SH2 regs
b78efee2 467
468static u32 p32x_sh2reg_read16(u32 a, int cpuid)
acd35d4c 469{
4ea707e1 470 u16 *r = Pico32x.regs;
471 a &= 0xfe; // ?
266c6afa 472
4ea707e1 473 switch (a) {
474 case 0x00: // adapter/irq ctl
87accdf7 475 return (r[0] & P32XS_FM) | Pico32x.sh2_regs[0] | Pico32x.sh2irq_mask[cpuid];
c987bb5c 476 case 0x04: // H count (often as comm too)
19886062 477 sh2_poll_detect(&sh2s[cpuid], a, SH2_STATE_CPOLL);
478 sh2s_sync_on_read(&sh2s[cpuid]);
87accdf7 479 return Pico32x.sh2_regs[4 / 2];
4ea707e1 480 case 0x10: // DREQ len
481 return r[a / 2];
acd35d4c 482 }
4ea707e1 483
db1d3564 484 // DREQ src, dst
485 if ((a & 0x38) == 0x08)
4ea707e1 486 return r[a / 2];
db1d3564 487 // comm port
488 if ((a & 0x30) == 0x20) {
a8fd6e37 489 int comreg = 1 << (a & 0x0f) / 2;
490 if (Pico32x.comm_dirty_68k & comreg)
491 Pico32x.comm_dirty_68k &= ~comreg;
19886062 492 else
493 sh2_poll_detect(&sh2s[cpuid], a, SH2_STATE_CPOLL);
494 sh2s_sync_on_read(&sh2s[cpuid]);
db1d3564 495 return r[a / 2];
496 }
497 if ((a & 0x30) == 0x30) {
db1d3564 498 return p32x_pwm_read16(a);
499 }
acd35d4c 500
501 return 0;
502}
503
b78efee2 504static void p32x_sh2reg_write8(u32 a, u32 d, int cpuid)
acd35d4c 505{
4ea707e1 506 a &= 0xff;
19886062 507
508 sh2s[cpuid].poll_addr = 0;
509
87accdf7 510 switch (a) {
511 case 0: // FM
512 Pico32x.regs[0] &= ~P32XS_FM;
513 Pico32x.regs[0] |= (d << 8) & P32XS_FM;
1b3f5844 514 return;
19886062 515 case 1: // HEN/irq masks
516 if ((d ^ Pico32x.sh2_regs[0]) & 0x80)
517 elprintf(EL_ANOMALY|EL_32X, "HEN");
87accdf7 518 Pico32x.sh2irq_mask[cpuid] = d & 0x8f;
519 Pico32x.sh2_regs[0] &= ~0x80;
520 Pico32x.sh2_regs[0] |= d & 0x80;
a8fd6e37 521 if (d & 1)
19886062 522 p32x_pwm_schedule_sh2(&sh2s[cpuid]);
523 p32x_update_irls(&sh2s[cpuid]);
1b3f5844 524 return;
87accdf7 525 case 5: // H count
19886062 526 d &= 0xff;
527 if (Pico32x.sh2_regs[4 / 2] != d) {
528 Pico32x.sh2_regs[4 / 2] = d;
529 p32x_sh2_poll_event(&sh2s[cpuid ^ 1], SH2_STATE_CPOLL,
530 sh2_cycles_done_m68k(&sh2s[cpuid]));
531 sh2_end_run(&sh2s[cpuid], 4);
532 }
1b3f5844 533 return;
534 }
535
536 if ((a & 0x30) == 0x20) {
537 u8 *r8 = (u8 *)Pico32x.regs;
a8fd6e37 538 int comreg;
539 if (r8[a ^ 1] == d)
540 return;
541
1b3f5844 542 r8[a ^ 1] = d;
19886062 543 p32x_m68k_poll_event(P32XF_68KCPOLL);
544 p32x_sh2_poll_event(&sh2s[cpuid ^ 1], SH2_STATE_CPOLL,
545 sh2_cycles_done_m68k(&sh2s[cpuid]));
a8fd6e37 546 comreg = 1 << (a & 0x0f) / 2;
547 Pico32x.comm_dirty_sh2 |= comreg;
1b3f5844 548 return;
4ea707e1 549 }
acd35d4c 550}
551
b78efee2 552static void p32x_sh2reg_write16(u32 a, u32 d, int cpuid)
acd35d4c 553{
4ea707e1 554 a &= 0xfe;
acd35d4c 555
19886062 556 sh2s[cpuid].poll_addr = 0;
557
db1d3564 558 // comm
a8fd6e37 559 if ((a & 0x30) == 0x20) {
560 int comreg;
561 if (Pico32x.regs[a / 2] == d)
562 return;
563
b78efee2 564 Pico32x.regs[a / 2] = d;
19886062 565 p32x_m68k_poll_event(P32XF_68KCPOLL);
566 p32x_sh2_poll_event(&sh2s[cpuid ^ 1], SH2_STATE_CPOLL,
567 sh2_cycles_done_m68k(&sh2s[cpuid]));
a8fd6e37 568 comreg = 1 << (a & 0x0f) / 2;
569 Pico32x.comm_dirty_sh2 |= comreg;
acd35d4c 570 return;
571 }
db1d3564 572 // PWM
573 else if ((a & 0x30) == 0x30) {
574 p32x_pwm_write16(a, d);
575 return;
576 }
acd35d4c 577
4ea707e1 578 switch (a) {
87accdf7 579 case 0: // FM
580 Pico32x.regs[0] &= ~P32XS_FM;
581 Pico32x.regs[0] |= d & P32XS_FM;
582 break;
4ea707e1 583 case 0x14: Pico32x.sh2irqs &= ~P32XI_VRES; goto irls;
584 case 0x16: Pico32x.sh2irqs &= ~P32XI_VINT; goto irls;
585 case 0x18: Pico32x.sh2irqs &= ~P32XI_HINT; goto irls;
b78efee2 586 case 0x1a: Pico32x.sh2irqi[cpuid] &= ~P32XI_CMD; goto irls;
be20816c 587 case 0x1c:
588 Pico32x.sh2irqs &= ~P32XI_PWM;
a8fd6e37 589 if (!(Pico32x.emu_flags & P32XF_PWM_PEND))
19886062 590 p32x_pwm_schedule_sh2(&sh2s[cpuid]);
be20816c 591 goto irls;
4ea707e1 592 }
593
b78efee2 594 p32x_sh2reg_write8(a | 1, d, cpuid);
4ea707e1 595 return;
596
597irls:
19886062 598 p32x_update_irls(&sh2s[cpuid]);
4ea707e1 599}
600
87accdf7 601// ------------------------------------------------------------------
602// SH2 internal peripherals
1d7a28a7 603// we keep them in little endian format
87accdf7 604static u32 sh2_peripheral_read8(u32 a, int id)
605{
606 u8 *r = (void *)Pico32xMem->sh2_peri_regs[id];
607 u32 d;
608
609 a &= 0x1ff;
1d7a28a7 610 d = PREG8(r, a);
87accdf7 611
612 elprintf(EL_32X, "%csh2 peri r8 [%08x] %02x @%06x", id ? 's' : 'm', a | ~0x1ff, d, sh2_pc(id));
613 return d;
614}
615
1d7a28a7 616static u32 sh2_peripheral_read16(u32 a, int id)
617{
618 u16 *r = (void *)Pico32xMem->sh2_peri_regs[id];
619 u32 d;
620
621 a &= 0x1ff;
622 d = r[(a / 2) ^ 1];
623
624 elprintf(EL_32X, "%csh2 peri r16 [%08x] %04x @%06x", id ? 's' : 'm', a | ~0x1ff, d, sh2_pc(id));
625 return d;
626}
627
87accdf7 628static u32 sh2_peripheral_read32(u32 a, int id)
4ea707e1 629{
630 u32 d;
631 a &= 0x1fc;
97d3f47f 632 d = Pico32xMem->sh2_peri_regs[id][a / 4];
4ea707e1 633
97d3f47f 634 elprintf(EL_32X, "%csh2 peri r32 [%08x] %08x @%06x", id ? 's' : 'm', a | ~0x1ff, d, sh2_pc(id));
4ea707e1 635 return d;
acd35d4c 636}
637
e05b81fc 638static int REGPARM(3) sh2_peripheral_write8(u32 a, u32 d, int id)
87accdf7 639{
640 u8 *r = (void *)Pico32xMem->sh2_peri_regs[id];
641 elprintf(EL_32X, "%csh2 peri w8 [%08x] %02x @%06x", id ? 's' : 'm', a, d, sh2_pc(id));
642
643 a &= 0x1ff;
1d7a28a7 644 PREG8(r, a) = d;
645
646 // X-men SCI hack
647 if ((a == 2 && (d & 0x20)) || // transmiter enabled
648 (a == 4 && !(d & 0x80))) { // valid data in TDR
649 void *oregs = Pico32xMem->sh2_peri_regs[id ^ 1];
650 if ((PREG8(oregs, 2) & 0x50) == 0x50) { // receiver + irq enabled
651 int level = PREG8(oregs, 0x60) >> 4;
652 int vector = PREG8(oregs, 0x63) & 0x7f;
653 elprintf(EL_32X, "%csh2 SCI recv irq (%d, %d)", (id ^ 1) ? 's' : 'm', level, vector);
654 sh2_internal_irq(&sh2s[id ^ 1], level, vector);
e05b81fc 655 return 1;
1d7a28a7 656 }
657 }
e05b81fc 658 return 0;
1d7a28a7 659}
660
e05b81fc 661static int REGPARM(3) sh2_peripheral_write16(u32 a, u32 d, int id)
1d7a28a7 662{
663 u16 *r = (void *)Pico32xMem->sh2_peri_regs[id];
664 elprintf(EL_32X, "%csh2 peri w16 [%08x] %04x @%06x", id ? 's' : 'm', a, d, sh2_pc(id));
665
666 a &= 0x1ff;
667
668 // evil WDT
669 if (a == 0x80) {
670 if ((d & 0xff00) == 0xa500) { // WTCSR
671 PREG8(r, 0x80) = d;
672 p32x_timers_recalc();
673 }
674 if ((d & 0xff00) == 0x5a00) // WTCNT
675 PREG8(r, 0x81) = d;
e05b81fc 676 return 0;
1d7a28a7 677 }
678
679 r[(a / 2) ^ 1] = d;
e05b81fc 680 return 0;
87accdf7 681}
682
683static void sh2_peripheral_write32(u32 a, u32 d, int id)
4ea707e1 684{
be20816c 685 u32 *r = Pico32xMem->sh2_peri_regs[id];
b78efee2 686 elprintf(EL_32X, "%csh2 peri w32 [%08x] %08x @%06x", id ? 's' : 'm', a, d, sh2_pc(id));
4ea707e1 687
688 a &= 0x1fc;
689 r[a / 4] = d;
690
97d3f47f 691 switch (a) {
be20816c 692 // division unit (TODO: verify):
97d3f47f 693 case 0x104: // DVDNT: divident L, starts divide
694 elprintf(EL_32X, "%csh2 divide %08x / %08x", id ? 's' : 'm', d, r[0x100 / 4]);
695 if (r[0x100 / 4]) {
be20816c 696 signed int divisor = r[0x100 / 4];
697 r[0x118 / 4] = r[0x110 / 4] = (signed int)d % divisor;
698 r[0x104 / 4] = r[0x11c / 4] = r[0x114 / 4] = (signed int)d / divisor;
97d3f47f 699 }
1625ed01 700 else
701 r[0x110 / 4] = r[0x114 / 4] = r[0x118 / 4] = r[0x11c / 4] = 0; // ?
97d3f47f 702 break;
703 case 0x114:
704 elprintf(EL_32X, "%csh2 divide %08x%08x / %08x @%08x",
705 id ? 's' : 'm', r[0x110 / 4], d, r[0x100 / 4], sh2_pc(id));
706 if (r[0x100 / 4]) {
be20816c 707 signed long long divident = (signed long long)r[0x110 / 4] << 32 | d;
708 signed int divisor = r[0x100 / 4];
97d3f47f 709 // XXX: undocumented mirroring to 0x118,0x11c?
be20816c 710 r[0x118 / 4] = r[0x110 / 4] = divident % divisor;
1625ed01 711 divident /= divisor;
712 r[0x11c / 4] = r[0x114 / 4] = divident;
713 divident >>= 31;
714 if ((unsigned long long)divident + 1 > 1) {
715 //elprintf(EL_32X, "%csh2 divide overflow! @%08x", id ? 's' : 'm', sh2_pc(id));
716 r[0x11c / 4] = r[0x114 / 4] = divident > 0 ? 0x7fffffff : 0x80000000; // overflow
717 }
97d3f47f 718 }
1625ed01 719 else
720 r[0x110 / 4] = r[0x114 / 4] = r[0x118 / 4] = r[0x11c / 4] = 0; // ?
97d3f47f 721 break;
722 }
723
4ea707e1 724 if ((a == 0x1b0 || a == 0x18c) && (dmac0->chcr0 & 3) == 1 && (dmac0->dmaor & 1)) {
725 elprintf(EL_32X, "sh2 DMA %08x -> %08x, cnt %d, chcr %04x @%06x",
b78efee2 726 dmac0->sar0, dmac0->dar0, dmac0->tcr0, dmac0->chcr0, sh2_pc(id));
4ea707e1 727 dmac0->tcr0 &= 0xffffff;
be20816c 728
1b3f5844 729 // HACK: assume 68k starts writing soon and end the timeslice
19886062 730 sh2_end_run(&sh2s[id], 16);
be20816c 731
4ea707e1 732 // DREQ is only sent after first 4 words are written.
733 // we do multiple of 4 words to avoid messing up alignment
734 if (dmac0->sar0 == 0x20004012 && Pico32x.dmac_ptr && (Pico32x.dmac_ptr & 3) == 0) {
735 elprintf(EL_32X, "68k -> sh2 DMA");
736 dma_68k2sh2_do();
737 }
738 }
739}
740
741// ------------------------------------------------------------------
83ff19ec 742// 32x handlers
743
744// after ADEN
745static u32 PicoRead8_32x_on(u32 a)
be2c4208 746{
747 u32 d = 0;
748 if ((a & 0xffc0) == 0x5100) { // a15100
749 d = p32x_reg_read16(a);
750 goto out_16to8;
751 }
752
83ff19ec 753 if ((a & 0xfc00) != 0x5000)
754 return PicoRead8_io(a);
974fdb5b 755
756 if ((a & 0xfff0) == 0x5180) { // a15180
be2c4208 757 d = p32x_vdp_read16(a);
758 goto out_16to8;
759 }
760
974fdb5b 761 if ((a & 0xfe00) == 0x5200) { // a15200
762 d = Pico32xMem->pal[(a & 0x1ff) / 2];
763 goto out_16to8;
764 }
765
be2c4208 766 if ((a & 0xfffc) == 0x30ec) { // a130ec
767 d = str_mars[a & 3];
768 goto out;
769 }
770
771 elprintf(EL_UIO, "m68k unmapped r8 [%06x] @%06x", a, SekPc);
772 return d;
773
774out_16to8:
775 if (a & 1)
776 d &= 0xff;
777 else
778 d >>= 8;
779
780out:
781 elprintf(EL_32X, "m68k 32x r8 [%06x] %02x @%06x", a, d, SekPc);
782 return d;
783}
784
83ff19ec 785static u32 PicoRead16_32x_on(u32 a)
be2c4208 786{
787 u32 d = 0;
788 if ((a & 0xffc0) == 0x5100) { // a15100
789 d = p32x_reg_read16(a);
790 goto out;
791 }
792
83ff19ec 793 if ((a & 0xfc00) != 0x5000)
794 return PicoRead16_io(a);
974fdb5b 795
796 if ((a & 0xfff0) == 0x5180) { // a15180
be2c4208 797 d = p32x_vdp_read16(a);
798 goto out;
799 }
800
974fdb5b 801 if ((a & 0xfe00) == 0x5200) { // a15200
802 d = Pico32xMem->pal[(a & 0x1ff) / 2];
803 goto out;
804 }
805
be2c4208 806 if ((a & 0xfffc) == 0x30ec) { // a130ec
807 d = !(a & 2) ? ('M'<<8)|'A' : ('R'<<8)|'S';
808 goto out;
809 }
810
811 elprintf(EL_UIO, "m68k unmapped r16 [%06x] @%06x", a, SekPc);
812 return d;
813
814out:
815 elprintf(EL_32X, "m68k 32x r16 [%06x] %04x @%06x", a, d, SekPc);
816 return d;
817}
818
83ff19ec 819static void PicoWrite8_32x_on(u32 a, u32 d)
be2c4208 820{
821 if ((a & 0xfc00) == 0x5000)
822 elprintf(EL_32X, "m68k 32x w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
823
824 if ((a & 0xffc0) == 0x5100) { // a15100
825 p32x_reg_write8(a, d);
826 return;
827 }
828
83ff19ec 829 if ((a & 0xfc00) != 0x5000) {
830 PicoWrite8_io(a, d);
831 return;
832 }
974fdb5b 833
834 if ((a & 0xfff0) == 0x5180) { // a15180
be2c4208 835 p32x_vdp_write8(a, d);
836 return;
837 }
838
974fdb5b 839 // TODO: verify
840 if ((a & 0xfe00) == 0x5200) { // a15200
841 elprintf(EL_32X|EL_ANOMALY, "m68k 32x PAL w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
842 ((u8 *)Pico32xMem->pal)[(a & 0x1ff) ^ 1] = d;
843 Pico32x.dirty_pal = 1;
844 return;
845 }
846
be2c4208 847 elprintf(EL_UIO, "m68k unmapped w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
848}
849
83ff19ec 850static void PicoWrite16_32x_on(u32 a, u32 d)
be2c4208 851{
852 if ((a & 0xfc00) == 0x5000)
553c3eaa 853 elprintf(EL_32X, "m68k 32x w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
be2c4208 854
855 if ((a & 0xffc0) == 0x5100) { // a15100
856 p32x_reg_write16(a, d);
857 return;
858 }
859
83ff19ec 860 if ((a & 0xfc00) != 0x5000) {
861 PicoWrite16_io(a, d);
862 return;
863 }
974fdb5b 864
865 if ((a & 0xfff0) == 0x5180) { // a15180
19886062 866 p32x_vdp_write16(a, d, NULL); // FIXME?
be2c4208 867 return;
868 }
869
974fdb5b 870 if ((a & 0xfe00) == 0x5200) { // a15200
871 Pico32xMem->pal[(a & 0x1ff) / 2] = d;
872 Pico32x.dirty_pal = 1;
873 return;
874 }
875
be2c4208 876 elprintf(EL_UIO, "m68k unmapped w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
877}
878
83ff19ec 879// before ADEN
880u32 PicoRead8_32x(u32 a)
881{
882 u32 d = 0;
883 if ((a & 0xffc0) == 0x5100) { // a15100
884 // regs are always readable
885 d = ((u8 *)Pico32x.regs)[(a & 0x3f) ^ 1];
886 goto out;
887 }
888
889 if ((a & 0xfffc) == 0x30ec) { // a130ec
890 d = str_mars[a & 3];
891 goto out;
892 }
893
894 elprintf(EL_UIO, "m68k unmapped r8 [%06x] @%06x", a, SekPc);
895 return d;
896
897out:
898 elprintf(EL_32X, "m68k 32x r8 [%06x] %02x @%06x", a, d, SekPc);
899 return d;
900}
901
902u32 PicoRead16_32x(u32 a)
903{
904 u32 d = 0;
905 if ((a & 0xffc0) == 0x5100) { // a15100
906 d = Pico32x.regs[(a & 0x3f) / 2];
907 goto out;
908 }
909
910 if ((a & 0xfffc) == 0x30ec) { // a130ec
911 d = !(a & 2) ? ('M'<<8)|'A' : ('R'<<8)|'S';
912 goto out;
913 }
914
915 elprintf(EL_UIO, "m68k unmapped r16 [%06x] @%06x", a, SekPc);
916 return d;
917
918out:
919 elprintf(EL_32X, "m68k 32x r16 [%06x] %04x @%06x", a, d, SekPc);
920 return d;
921}
922
923void PicoWrite8_32x(u32 a, u32 d)
924{
925 if ((a & 0xffc0) == 0x5100) { // a15100
926 u16 *r = Pico32x.regs;
927
928 elprintf(EL_32X, "m68k 32x w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
929 a &= 0x3f;
930 if (a == 1) {
931 if ((d ^ r[0]) & d & P32XS_ADEN) {
932 Pico32xStartup();
933 r[0] &= ~P32XS_nRES; // causes reset if specified by this write
934 r[0] |= P32XS_ADEN;
935 p32x_reg_write8(a, d); // forward for reset processing
936 }
937 return;
938 }
939
940 // allow only COMM for now
941 if ((a & 0x30) == 0x20) {
942 u8 *r8 = (u8 *)r;
943 r8[a ^ 1] = d;
944 }
945 return;
946 }
947
948 elprintf(EL_UIO, "m68k unmapped w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
949}
950
951void PicoWrite16_32x(u32 a, u32 d)
952{
953 if ((a & 0xffc0) == 0x5100) { // a15100
954 u16 *r = Pico32x.regs;
955
956 elprintf(EL_UIO, "m68k 32x w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
957 a &= 0x3e;
958 if (a == 0) {
959 if ((d ^ r[0]) & d & P32XS_ADEN) {
960 Pico32xStartup();
961 r[0] &= ~P32XS_nRES; // causes reset if specified by this write
962 r[0] |= P32XS_ADEN;
963 p32x_reg_write16(a, d); // forward for reset processing
964 }
965 return;
966 }
967
968 // allow only COMM for now
969 if ((a & 0x30) == 0x20)
970 r[a / 2] = d;
971 return;
972 }
973
974 elprintf(EL_UIO, "m68k unmapped w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
975}
976
977// -----------------------------------------------------------------
978
be2c4208 979// hint vector is writeable
980static void PicoWrite8_hint(u32 a, u32 d)
981{
982 if ((a & 0xfffc) == 0x0070) {
983 Pico32xMem->m68k_rom[a ^ 1] = d;
984 return;
985 }
986
987 elprintf(EL_UIO, "m68k unmapped w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
988}
989
990static void PicoWrite16_hint(u32 a, u32 d)
991{
992 if ((a & 0xfffc) == 0x0070) {
993 ((u16 *)Pico32xMem->m68k_rom)[a/2] = d;
994 return;
995 }
996
997 elprintf(EL_UIO, "m68k unmapped w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
998}
999
5e49c3a8 1000static void bank_switch(int b)
1001{
1002 unsigned int rs, bank;
1003
1004 bank = b << 20;
1005 if (bank >= Pico.romsize) {
1006 elprintf(EL_32X|EL_ANOMALY, "missing bank @ %06x", bank);
1007 return;
1008 }
1009
1010 // 32X ROM (unbanked, XXX: consider mirroring?)
1011 rs = (Pico.romsize + M68K_BANK_MASK) & ~M68K_BANK_MASK;
1012 rs -= bank;
1013 if (rs > 0x100000)
1014 rs = 0x100000;
1015 cpu68k_map_set(m68k_read8_map, 0x900000, 0x900000 + rs - 1, Pico.rom + bank, 0);
1016 cpu68k_map_set(m68k_read16_map, 0x900000, 0x900000 + rs - 1, Pico.rom + bank, 0);
1017
1018 elprintf(EL_32X, "bank %06x-%06x -> %06x", 0x900000, 0x900000 + rs - 1, bank);
602c28ca 1019
1020#ifdef EMU_F68K
1021 // setup FAME fetchmap
1022 for (rs = 0x90; rs < 0xa0; rs++)
be26eb23 1023 PicoCpuFM68k.Fetch[rs] = (unsigned long)Pico.rom + bank - 0x900000;
602c28ca 1024#endif
5e49c3a8 1025}
1026
acd35d4c 1027// -----------------------------------------------------------------
1028// SH2
1029// -----------------------------------------------------------------
1030
bcf65fd6 1031// read8
1032static u32 sh2_read8_unmapped(u32 a, int id)
acd35d4c 1033{
bcf65fd6 1034 elprintf(EL_UIO, "%csh2 unmapped r8 [%08x] %02x @%06x",
1035 id ? 's' : 'm', a, 0, sh2_pc(id));
1036 return 0;
1037}
b78efee2 1038
bcf65fd6 1039static u32 sh2_read8_cs0(u32 a, int id)
1040{
1041 u32 d = 0;
97d3f47f 1042
bcf65fd6 1043 // 0x3ff00 is veridied
1044 if ((a & 0x3ff00) == 0x4000) {
b78efee2 1045 d = p32x_sh2reg_read16(a, id);
db1d3564 1046 goto out_16to8;
acd35d4c 1047 }
1048
bcf65fd6 1049 if ((a & 0x3ff00) == 0x4100) {
acd35d4c 1050 d = p32x_vdp_read16(a);
19886062 1051 sh2_poll_detect(&sh2s[id], a, SH2_STATE_VPOLL);
db1d3564 1052 goto out_16to8;
acd35d4c 1053 }
1054
bcf65fd6 1055 // TODO: mirroring?
1056 if (id == 0 && a < sizeof(Pico32xMem->sh2_rom_m))
1057 return Pico32xMem->sh2_rom_m[a ^ 1];
1058 if (id == 1 && a < sizeof(Pico32xMem->sh2_rom_s))
1059 return Pico32xMem->sh2_rom_s[a ^ 1];
1060
1f1ff763 1061 if ((a & 0x3fe00) == 0x4200) {
acd35d4c 1062 d = Pico32xMem->pal[(a & 0x1ff) / 2];
1063 goto out_16to8;
1064 }
1065
bcf65fd6 1066 return sh2_read8_unmapped(a, id);
acd35d4c 1067
1068out_16to8:
1069 if (a & 1)
1070 d &= 0xff;
1071 else
1072 d >>= 8;
1073
b78efee2 1074 elprintf(EL_32X, "%csh2 r8 [%08x] %02x @%06x",
1075 id ? 's' : 'm', a, d, sh2_pc(id));
acd35d4c 1076 return d;
1077}
1078
bcf65fd6 1079static u32 sh2_read8_da(u32 a, int id)
acd35d4c 1080{
bcf65fd6 1081 return Pico32xMem->data_array[id][(a & 0xfff) ^ 1];
1082}
acd35d4c 1083
bcf65fd6 1084// read16
1085static u32 sh2_read16_unmapped(u32 a, int id)
1086{
1087 elprintf(EL_UIO, "%csh2 unmapped r16 [%08x] %04x @%06x",
1088 id ? 's' : 'm', a, 0, sh2_pc(id));
1089 return 0;
1090}
b78efee2 1091
bcf65fd6 1092static u32 sh2_read16_cs0(u32 a, int id)
1093{
1094 u32 d = 0;
97d3f47f 1095
bcf65fd6 1096 if ((a & 0x3ff00) == 0x4000) {
b78efee2 1097 d = p32x_sh2reg_read16(a, id);
1b3f5844 1098 if (!(EL_LOGMASK & EL_PWM) && (a & 0x30) == 0x30) // hide PWM
1099 return d;
db1d3564 1100 goto out;
acd35d4c 1101 }
1102
bcf65fd6 1103 if ((a & 0x3ff00) == 0x4100) {
acd35d4c 1104 d = p32x_vdp_read16(a);
19886062 1105 sh2_poll_detect(&sh2s[id], a, SH2_STATE_VPOLL);
db1d3564 1106 goto out;
acd35d4c 1107 }
1108
bcf65fd6 1109 if (id == 0 && a < sizeof(Pico32xMem->sh2_rom_m))
1110 return *(u16 *)(Pico32xMem->sh2_rom_m + a);
1111 if (id == 1 && a < sizeof(Pico32xMem->sh2_rom_s))
1112 return *(u16 *)(Pico32xMem->sh2_rom_s + a);
1113
1f1ff763 1114 if ((a & 0x3fe00) == 0x4200) {
acd35d4c 1115 d = Pico32xMem->pal[(a & 0x1ff) / 2];
1116 goto out;
1117 }
1118
bcf65fd6 1119 return sh2_read16_unmapped(a, id);
acd35d4c 1120
1121out:
b78efee2 1122 elprintf(EL_32X, "%csh2 r16 [%08x] %04x @%06x",
1123 id ? 's' : 'm', a, d, sh2_pc(id));
acd35d4c 1124 return d;
1125}
1126
bcf65fd6 1127static u32 sh2_read16_da(u32 a, int id)
acd35d4c 1128{
bcf65fd6 1129 return ((u16 *)Pico32xMem->data_array[id])[(a & 0xfff) / 2];
acd35d4c 1130}
1131
e05b81fc 1132static int REGPARM(3) sh2_write_ignore(u32 a, u32 d, int id)
4b315c21 1133{
e05b81fc 1134 return 0;
4b315c21 1135}
1136
bcf65fd6 1137// write8
e05b81fc 1138static int REGPARM(3) sh2_write8_unmapped(u32 a, u32 d, int id)
acd35d4c 1139{
bcf65fd6 1140 elprintf(EL_UIO, "%csh2 unmapped w8 [%08x] %02x @%06x",
1141 id ? 's' : 'm', a, d & 0xff, sh2_pc(id));
e05b81fc 1142 return 0;
bcf65fd6 1143}
266c6afa 1144
e05b81fc 1145static int REGPARM(3) sh2_write8_cs0(u32 a, u32 d, int id)
bcf65fd6 1146{
1147 elprintf(EL_32X, "%csh2 w8 [%08x] %02x @%06x",
1148 id ? 's' : 'm', a, d & 0xff, sh2_pc(id));
b78efee2 1149
bcf65fd6 1150 if ((a & 0x3ff00) == 0x4100) {
19886062 1151 sh2s[id].poll_addr = 0;
acd35d4c 1152 p32x_vdp_write8(a, d);
e05b81fc 1153 return 0;
acd35d4c 1154 }
1155
bcf65fd6 1156 if ((a & 0x3ff00) == 0x4000) {
b78efee2 1157 p32x_sh2reg_write8(a, d, id);
e05b81fc 1158 return 1;
acd35d4c 1159 }
1160
e05b81fc 1161 return sh2_write8_unmapped(a, d, id);
bcf65fd6 1162}
1163
e51e5983 1164/* quirk: in both normal and overwrite areas only nonzero values go through */
bcf65fd6 1165#define sh2_write8_dramN(n) \
e51e5983 1166 if ((d & 0xff) != 0) { \
bcf65fd6 1167 u8 *dram = (u8 *)Pico32xMem->dram[n]; \
1168 dram[(a & 0x1ffff) ^ 1] = d; \
e05b81fc 1169 } \
1170 return 0;
87accdf7 1171
e05b81fc 1172static int REGPARM(3) sh2_write8_dram0(u32 a, u32 d, int id)
bcf65fd6 1173{
1174 sh2_write8_dramN(0);
acd35d4c 1175}
1176
e05b81fc 1177static int REGPARM(3) sh2_write8_dram1(u32 a, u32 d, int id)
acd35d4c 1178{
bcf65fd6 1179 sh2_write8_dramN(1);
1180}
87accdf7 1181
e05b81fc 1182static int REGPARM(3) sh2_write8_sdram(u32 a, u32 d, int id)
f4bb5d6b 1183{
1184 u32 a1 = a & 0x3ffff;
1185#ifdef DRC_SH2
1186 int t = Pico32xMem->drcblk_ram[a1 >> SH2_DRCBLK_RAM_SHIFT];
1187 if (t)
1188 sh2_drc_wcheck_ram(a, t, id);
1189#endif
1190 Pico32xMem->sdram[a1 ^ 1] = d;
e05b81fc 1191 return 0;
f4bb5d6b 1192}
1193
e05b81fc 1194static int REGPARM(3) sh2_write8_da(u32 a, u32 d, int id)
bcf65fd6 1195{
f4bb5d6b 1196 u32 a1 = a & 0xfff;
1197#ifdef DRC_SH2
1198 int t = Pico32xMem->drcblk_da[id][a1 >> SH2_DRCBLK_DA_SHIFT];
1199 if (t)
1200 sh2_drc_wcheck_da(a, t, id);
1201#endif
1202 Pico32xMem->data_array[id][a1 ^ 1] = d;
e05b81fc 1203 return 0;
bcf65fd6 1204}
acd35d4c 1205
bcf65fd6 1206// write16
e05b81fc 1207static int REGPARM(3) sh2_write16_unmapped(u32 a, u32 d, int id)
bcf65fd6 1208{
1209 elprintf(EL_UIO, "%csh2 unmapped w16 [%08x] %04x @%06x",
1210 id ? 's' : 'm', a, d & 0xffff, sh2_pc(id));
e05b81fc 1211 return 0;
bcf65fd6 1212}
b78efee2 1213
e05b81fc 1214static int REGPARM(3) sh2_write16_cs0(u32 a, u32 d, int id)
bcf65fd6 1215{
1216 if (((EL_LOGMASK & EL_PWM) || (a & 0x30) != 0x30)) // hide PWM
1217 elprintf(EL_32X, "%csh2 w16 [%08x] %04x @%06x",
1218 id ? 's' : 'm', a, d & 0xffff, sh2_pc(id));
266c6afa 1219
bcf65fd6 1220 if ((a & 0x3ff00) == 0x4100) {
19886062 1221 sh2s[id].poll_addr = 0;
1222 p32x_vdp_write16(a, d, &sh2s[id]);
e05b81fc 1223 return 0;
acd35d4c 1224 }
1225
bcf65fd6 1226 if ((a & 0x3fe00) == 0x4200) {
acd35d4c 1227 Pico32xMem->pal[(a & 0x1ff) / 2] = d;
1228 Pico32x.dirty_pal = 1;
e05b81fc 1229 return 0;
acd35d4c 1230 }
1231
bcf65fd6 1232 if ((a & 0x3ff00) == 0x4000) {
b78efee2 1233 p32x_sh2reg_write16(a, d, id);
e05b81fc 1234 return 1;
acd35d4c 1235 }
1236
e05b81fc 1237 return sh2_write16_unmapped(a, d, id);
bcf65fd6 1238}
1239
1240#define sh2_write16_dramN(n) \
1241 u16 *pd = &Pico32xMem->dram[n][(a & 0x1ffff) / 2]; \
1242 if (!(a & 0x20000)) { \
1243 *pd = d; \
e05b81fc 1244 return 0; \
bcf65fd6 1245 } \
1246 /* overwrite */ \
1247 if (!(d & 0xff00)) d |= *pd & 0xff00; \
1248 if (!(d & 0x00ff)) d |= *pd & 0x00ff; \
e05b81fc 1249 *pd = d; \
1250 return 0
bcf65fd6 1251
e05b81fc 1252static int REGPARM(3) sh2_write16_dram0(u32 a, u32 d, int id)
bcf65fd6 1253{
1254 sh2_write16_dramN(0);
1255}
1256
e05b81fc 1257static int REGPARM(3) sh2_write16_dram1(u32 a, u32 d, int id)
bcf65fd6 1258{
1259 sh2_write16_dramN(1);
1260}
1261
e05b81fc 1262static int REGPARM(3) sh2_write16_sdram(u32 a, u32 d, int id)
f4bb5d6b 1263{
1264 u32 a1 = a & 0x3ffff;
1265#ifdef DRC_SH2
1266 int t = Pico32xMem->drcblk_ram[a1 >> SH2_DRCBLK_RAM_SHIFT];
1267 if (t)
1268 sh2_drc_wcheck_ram(a, t, id);
1269#endif
1270 ((u16 *)Pico32xMem->sdram)[a1 / 2] = d;
e05b81fc 1271 return 0;
f4bb5d6b 1272}
1273
e05b81fc 1274static int REGPARM(3) sh2_write16_da(u32 a, u32 d, int id)
bcf65fd6 1275{
f4bb5d6b 1276 u32 a1 = a & 0xfff;
1277#ifdef DRC_SH2
1278 int t = Pico32xMem->drcblk_da[id][a1 >> SH2_DRCBLK_DA_SHIFT];
1279 if (t)
1280 sh2_drc_wcheck_da(a, t, id);
1281#endif
1282 ((u16 *)Pico32xMem->data_array[id])[a1 / 2] = d;
e05b81fc 1283 return 0;
bcf65fd6 1284}
1285
1286
e05b81fc 1287typedef u32 (sh2_read_handler)(u32 a, int id);
1288typedef int REGPARM(3) (sh2_write_handler)(u32 a, u32 d, int id);
bcf65fd6 1289
e05b81fc 1290#define SH2MAP_ADDR2OFFS_R(a) \
1291 ((((a) >> 25) & 3) | (((a) >> 27) & 0x1c))
1292
1293#define SH2MAP_ADDR2OFFS_W(a) \
1294 ((u32)(a) >> SH2_WRITE_SHIFT)
bcf65fd6 1295
80599a42 1296u32 REGPARM(2) p32x_sh2_read8(u32 a, SH2 *sh2)
bcf65fd6 1297{
1298 const sh2_memmap *sh2_map = sh2->read8_map;
1299 uptr p;
1300
e05b81fc 1301 sh2_map += SH2MAP_ADDR2OFFS_R(a);
bcf65fd6 1302 p = sh2_map->addr;
b8a1c09a 1303 if (map_flag_set(p))
bcf65fd6 1304 return ((sh2_read_handler *)(p << 1))(a, sh2->is_slave);
1305 else
1306 return *(u8 *)((p << 1) + ((a & sh2_map->mask) ^ 1));
1307}
1308
80599a42 1309u32 REGPARM(2) p32x_sh2_read16(u32 a, SH2 *sh2)
bcf65fd6 1310{
1311 const sh2_memmap *sh2_map = sh2->read16_map;
1312 uptr p;
1313
e05b81fc 1314 sh2_map += SH2MAP_ADDR2OFFS_R(a);
bcf65fd6 1315 p = sh2_map->addr;
b8a1c09a 1316 if (map_flag_set(p))
bcf65fd6 1317 return ((sh2_read_handler *)(p << 1))(a, sh2->is_slave);
1318 else
1319 return *(u16 *)((p << 1) + ((a & sh2_map->mask) & ~1));
1320}
1321
80599a42 1322u32 REGPARM(2) p32x_sh2_read32(u32 a, SH2 *sh2)
bcf65fd6 1323{
1324 const sh2_memmap *sh2_map = sh2->read16_map;
1325 sh2_read_handler *handler;
1326 u32 offs;
1327 uptr p;
1328
e05b81fc 1329 offs = SH2MAP_ADDR2OFFS_R(a);
bcf65fd6 1330 sh2_map += offs;
1331 p = sh2_map->addr;
b8a1c09a 1332 if (!map_flag_set(p)) {
bcf65fd6 1333 // XXX: maybe 32bit access instead with ror?
1334 u16 *pd = (u16 *)((p << 1) + ((a & sh2_map->mask) & ~1));
1335 return (pd[0] << 16) | pd[1];
1d7a28a7 1336 }
1337
bcf65fd6 1338 if (offs == 0x1f)
1339 return sh2_peripheral_read32(a, sh2->is_slave);
1340
1341 handler = (sh2_read_handler *)(p << 1);
1342 return (handler(a, sh2->is_slave) << 16) | handler(a + 2, sh2->is_slave);
1343}
1344
e05b81fc 1345// return nonzero if write potentially causes an interrupt (used by drc)
1346int REGPARM(3) p32x_sh2_write8(u32 a, u32 d, SH2 *sh2)
bcf65fd6 1347{
f4bb5d6b 1348 const void **sh2_wmap = sh2->write8_tab;
1349 sh2_write_handler *wh;
bcf65fd6 1350
e05b81fc 1351 wh = sh2_wmap[SH2MAP_ADDR2OFFS_W(a)];
1352 return wh(a, d, sh2->is_slave);
bcf65fd6 1353}
1354
e05b81fc 1355int REGPARM(3) p32x_sh2_write16(u32 a, u32 d, SH2 *sh2)
bcf65fd6 1356{
f4bb5d6b 1357 const void **sh2_wmap = sh2->write16_tab;
1358 sh2_write_handler *wh;
bcf65fd6 1359
e05b81fc 1360 wh = sh2_wmap[SH2MAP_ADDR2OFFS_W(a)];
1361 return wh(a, d, sh2->is_slave);
acd35d4c 1362}
1363
e05b81fc 1364int REGPARM(3) p32x_sh2_write32(u32 a, u32 d, SH2 *sh2)
acd35d4c 1365{
f4bb5d6b 1366 const void **sh2_wmap = sh2->write16_tab;
bcf65fd6 1367 sh2_write_handler *handler;
1368 u32 offs;
bcf65fd6 1369
e05b81fc 1370 offs = SH2MAP_ADDR2OFFS_W(a);
bcf65fd6 1371
e05b81fc 1372 if (offs == SH2MAP_ADDR2OFFS_W(0xffffc000)) {
bcf65fd6 1373 sh2_peripheral_write32(a, d, sh2->is_slave);
e05b81fc 1374 return 0;
4ea707e1 1375 }
1376
f4bb5d6b 1377 handler = sh2_wmap[offs];
bcf65fd6 1378 handler(a, d >> 16, sh2->is_slave);
1379 handler(a + 2, d, sh2->is_slave);
e05b81fc 1380 return 0;
acd35d4c 1381}
1382
bcf65fd6 1383// -----------------------------------------------------------------
1384
83ff19ec 1385static const u16 msh2_code[] = {
1386 // trap instructions
1387 0xaffe, // bra <self>
1388 0x0009, // nop
1389 // have to wait a bit until m68k initial program finishes clearing stuff
1390 // to avoid races with game SH2 code, like in Tempo
1391 0xd004, // mov.l @(_m_ok,pc), r0
1392 0xd105, // mov.l @(_cnt,pc), r1
1393 0xd205, // mov.l @(_start,pc), r2
1394 0x71ff, // add #-1, r1
1395 0x4115, // cmp/pl r1
1396 0x89fc, // bt -2
1397 0xc208, // mov.l r0, @(h'20,gbr)
1398 0x6822, // mov.l @r2, r8
1399 0x482b, // jmp @r8
1400 0x0009, // nop
1401 ('M'<<8)|'_', ('O'<<8)|'K',
1402 0x0001, 0x0000,
1403 0x2200, 0x03e0 // master start pointer in ROM
1404};
1405
1406static const u16 ssh2_code[] = {
1407 0xaffe, // bra <self>
1408 0x0009, // nop
1409 // code to wait for master, in case authentic master BIOS is used
1410 0xd104, // mov.l @(_m_ok,pc), r1
1411 0xd206, // mov.l @(_start,pc), r2
1412 0xc608, // mov.l @(h'20,gbr), r0
1413 0x3100, // cmp/eq r0, r1
1414 0x8bfc, // bf #-2
1415 0xd003, // mov.l @(_s_ok,pc), r0
1416 0xc209, // mov.l r0, @(h'24,gbr)
1417 0x6822, // mov.l @r2, r8
1418 0x482b, // jmp @r8
1419 0x0009, // nop
1420 ('M'<<8)|'_', ('O'<<8)|'K',
1421 ('S'<<8)|'_', ('O'<<8)|'K',
1422 0x2200, 0x03e4 // slave start pointer in ROM
1423};
1424
be2c4208 1425#define HWSWAP(x) (((x) << 16) | ((x) >> 16))
83ff19ec 1426static void get_bios(void)
be2c4208 1427{
83ff19ec 1428 u16 *ps;
1429 u32 *pl;
be2c4208 1430 int i;
1431
83ff19ec 1432 // M68K ROM
1433 if (p32x_bios_g != NULL) {
1434 elprintf(EL_STATUS|EL_32X, "32x: using supplied 68k BIOS");
b4db550e 1435 Byteswap(Pico32xMem->m68k_rom, p32x_bios_g, sizeof(Pico32xMem->m68k_rom));
be2c4208 1436 }
83ff19ec 1437 else {
1438 // generate 68k ROM
1439 ps = (u16 *)Pico32xMem->m68k_rom;
1440 pl = (u32 *)ps;
1441 for (i = 1; i < 0xc0/4; i++)
1442 pl[i] = HWSWAP(0x880200 + (i - 1) * 6);
be2c4208 1443
83ff19ec 1444 // fill with nops
1445 for (i = 0xc0/2; i < 0x100/2; i++)
1446 ps[i] = 0x4e71;
be2c4208 1447
5e49c3a8 1448#if 0
83ff19ec 1449 ps[0xc0/2] = 0x46fc;
1450 ps[0xc2/2] = 0x2700; // move #0x2700,sr
1451 ps[0xfe/2] = 0x60fe; // jump to self
5e49c3a8 1452#else
83ff19ec 1453 ps[0xfe/2] = 0x4e75; // rts
5e49c3a8 1454#endif
83ff19ec 1455 }
1456 // fill remaining m68k_rom page with game ROM
b4db550e 1457 memcpy(Pico32xMem->m68k_rom_bank + sizeof(Pico32xMem->m68k_rom),
1458 Pico.rom + sizeof(Pico32xMem->m68k_rom),
1459 sizeof(Pico32xMem->m68k_rom_bank) - sizeof(Pico32xMem->m68k_rom));
be2c4208 1460
83ff19ec 1461 // MSH2
1462 if (p32x_bios_m != NULL) {
1463 elprintf(EL_STATUS|EL_32X, "32x: using supplied master SH2 BIOS");
1464 Byteswap(Pico32xMem->sh2_rom_m, p32x_bios_m, sizeof(Pico32xMem->sh2_rom_m));
acd35d4c 1465 }
83ff19ec 1466 else {
1467 pl = (u32 *)Pico32xMem->sh2_rom_m;
1468
1469 // fill exception vector table to our trap address
1470 for (i = 0; i < 128; i++)
1471 pl[i] = HWSWAP(0x200);
1472
1473 // startup code
1474 memcpy(Pico32xMem->sh2_rom_m + 0x200, msh2_code, sizeof(msh2_code));
1475
1476 // reset SP
1477 pl[1] = pl[3] = HWSWAP(0x6040000);
1478 // start
1479 pl[0] = pl[2] = HWSWAP(0x204);
1480 }
1481
1482 // SSH2
1483 if (p32x_bios_s != NULL) {
1484 elprintf(EL_STATUS|EL_32X, "32x: using supplied slave SH2 BIOS");
1485 Byteswap(Pico32xMem->sh2_rom_s, p32x_bios_s, sizeof(Pico32xMem->sh2_rom_s));
1486 }
1487 else {
1488 pl = (u32 *)Pico32xMem->sh2_rom_s;
1489
1490 // fill exception vector table to our trap address
1491 for (i = 0; i < 128; i++)
1492 pl[i] = HWSWAP(0x200);
1493
1494 // startup code
1495 memcpy(Pico32xMem->sh2_rom_s + 0x200, ssh2_code, sizeof(ssh2_code));
1496
1497 // reset SP
1498 pl[1] = pl[3] = HWSWAP(0x603f800);
1499 // start
1500 pl[0] = pl[2] = HWSWAP(0x204);
1501 }
1502}
1503
bcf65fd6 1504#define MAP_MEMORY(m) ((uptr)(m) >> 1)
b8a1c09a 1505#define MAP_HANDLER(h) ( ((uptr)(h) >> 1) | ((uptr)1 << (sizeof(uptr) * 8 - 1)) )
bcf65fd6 1506
1507static sh2_memmap sh2_read8_map[0x20], sh2_read16_map[0x20];
f4bb5d6b 1508// for writes we are using handlers only
e05b81fc 1509static sh2_write_handler *sh2_write8_map[0x80], *sh2_write16_map[0x80];
bcf65fd6 1510
1511void Pico32xSwapDRAM(int b)
1512{
1513 cpu68k_map_set(m68k_read8_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
1514 cpu68k_map_set(m68k_read16_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
1515 cpu68k_map_set(m68k_write8_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
1516 cpu68k_map_set(m68k_write16_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
1517
1518 // SH2
1519 sh2_read8_map[2].addr = sh2_read8_map[6].addr =
1520 sh2_read16_map[2].addr = sh2_read16_map[6].addr = MAP_MEMORY(Pico32xMem->dram[b]);
1521
e05b81fc 1522 sh2_write8_map[0x04/2] = sh2_write8_map[0x24/2] = b ? sh2_write8_dram1 : sh2_write8_dram0;
1523 sh2_write16_map[0x04/2] = sh2_write16_map[0x24/2] = b ? sh2_write16_dram1 : sh2_write16_dram0;
bcf65fd6 1524}
1525
83ff19ec 1526void PicoMemSetup32x(void)
1527{
1528 unsigned int rs;
bcf65fd6 1529 int i;
83ff19ec 1530
e743be20 1531 Pico32xMem = plat_mmap(0x06000000, sizeof(*Pico32xMem), 0, 0);
83ff19ec 1532 if (Pico32xMem == NULL) {
1533 elprintf(EL_STATUS, "OOM");
1534 return;
1535 }
1536
1537 dmac0 = (void *)&Pico32xMem->sh2_peri_regs[0][0x180 / 4];
1538
1539 get_bios();
acd35d4c 1540
be2c4208 1541 // cartridge area becomes unmapped
1542 // XXX: we take the easy way and don't unmap ROM,
1543 // so that we can avoid handling the RV bit.
1544 // m68k_map_unmap(0x000000, 0x3fffff);
1545
1546 // MD ROM area
b4db550e 1547 rs = sizeof(Pico32xMem->m68k_rom_bank);
1548 cpu68k_map_set(m68k_read8_map, 0x000000, rs - 1, Pico32xMem->m68k_rom_bank, 0);
1549 cpu68k_map_set(m68k_read16_map, 0x000000, rs - 1, Pico32xMem->m68k_rom_bank, 0);
974fdb5b 1550 cpu68k_map_set(m68k_write8_map, 0x000000, rs - 1, PicoWrite8_hint, 1); // TODO verify
1551 cpu68k_map_set(m68k_write16_map, 0x000000, rs - 1, PicoWrite16_hint, 1);
1552
be2c4208 1553 // 32X ROM (unbanked, XXX: consider mirroring?)
5e49c3a8 1554 rs = (Pico.romsize + M68K_BANK_MASK) & ~M68K_BANK_MASK;
1555 if (rs > 0x80000)
1556 rs = 0x80000;
1557 cpu68k_map_set(m68k_read8_map, 0x880000, 0x880000 + rs - 1, Pico.rom, 0);
1558 cpu68k_map_set(m68k_read16_map, 0x880000, 0x880000 + rs - 1, Pico.rom, 0);
602c28ca 1559#ifdef EMU_F68K
1560 // setup FAME fetchmap
be26eb23 1561 PicoCpuFM68k.Fetch[0] = (unsigned long)Pico32xMem->m68k_rom;
602c28ca 1562 for (rs = 0x88; rs < 0x90; rs++)
be26eb23 1563 PicoCpuFM68k.Fetch[rs] = (unsigned long)Pico.rom - 0x880000;
602c28ca 1564#endif
be2c4208 1565
1566 // 32X ROM (banked)
5e49c3a8 1567 bank_switch(0);
b78efee2 1568
83ff19ec 1569 // SYS regs
1570 cpu68k_map_set(m68k_read8_map, 0xa10000, 0xa1ffff, PicoRead8_32x_on, 1);
1571 cpu68k_map_set(m68k_read16_map, 0xa10000, 0xa1ffff, PicoRead16_32x_on, 1);
1572 cpu68k_map_set(m68k_write8_map, 0xa10000, 0xa1ffff, PicoWrite8_32x_on, 1);
1573 cpu68k_map_set(m68k_write16_map, 0xa10000, 0xa1ffff, PicoWrite16_32x_on, 1);
1574
bcf65fd6 1575 // SH2 maps: A31,A30,A29,CS1,CS0
1576 // all unmapped by default
e05b81fc 1577 for (i = 0; i < ARRAY_SIZE(sh2_read8_map); i++) {
bcf65fd6 1578 sh2_read8_map[i].addr = MAP_HANDLER(sh2_read8_unmapped);
1579 sh2_read16_map[i].addr = MAP_HANDLER(sh2_read16_unmapped);
e05b81fc 1580 }
1581
1582 for (i = 0; i < ARRAY_SIZE(sh2_write8_map); i++) {
f4bb5d6b 1583 sh2_write8_map[i] = sh2_write8_unmapped;
1584 sh2_write16_map[i] = sh2_write16_unmapped;
bcf65fd6 1585 }
1586
4b315c21 1587 // "purge area"
e05b81fc 1588 for (i = 0x40; i <= 0x5f; i++) {
1589 sh2_write8_map[i >> 1] =
1590 sh2_write16_map[i >> 1] = sh2_write_ignore;
4b315c21 1591 }
1592
bcf65fd6 1593 // CS0
1594 sh2_read8_map[0].addr = sh2_read8_map[4].addr = MAP_HANDLER(sh2_read8_cs0);
1595 sh2_read16_map[0].addr = sh2_read16_map[4].addr = MAP_HANDLER(sh2_read16_cs0);
e05b81fc 1596 sh2_write8_map[0x00/2] = sh2_write8_map[0x20/2] = sh2_write8_cs0;
1597 sh2_write16_map[0x00/2] = sh2_write16_map[0x20/2] = sh2_write16_cs0;
bcf65fd6 1598 // CS1 - ROM
1599 sh2_read8_map[1].addr = sh2_read8_map[5].addr =
1600 sh2_read16_map[1].addr = sh2_read16_map[5].addr = MAP_MEMORY(Pico.rom);
1601 sh2_read8_map[1].mask = sh2_read8_map[5].mask =
1602 sh2_read16_map[1].mask = sh2_read16_map[5].mask = 0x3fffff; // FIXME
1603 // CS2 - DRAM - done by Pico32xSwapDRAM()
1604 sh2_read8_map[2].mask = sh2_read8_map[6].mask =
1605 sh2_read16_map[2].mask = sh2_read16_map[6].mask = 0x01ffff;
1606 // CS3 - SDRAM
1607 sh2_read8_map[3].addr = sh2_read8_map[7].addr =
f4bb5d6b 1608 sh2_read16_map[3].addr = sh2_read16_map[7].addr = MAP_MEMORY(Pico32xMem->sdram);
e05b81fc 1609 sh2_write8_map[0x06/2] = sh2_write8_map[0x26/2] = sh2_write8_sdram;
1610 sh2_write16_map[0x06/2] = sh2_write16_map[0x26/2] = sh2_write16_sdram;
bcf65fd6 1611 sh2_read8_map[3].mask = sh2_read8_map[7].mask =
f4bb5d6b 1612 sh2_read16_map[3].mask = sh2_read16_map[7].mask = 0x03ffff;
bcf65fd6 1613 // SH2 data array
1614 sh2_read8_map[0x18].addr = MAP_HANDLER(sh2_read8_da);
1615 sh2_read16_map[0x18].addr = MAP_HANDLER(sh2_read16_da);
e05b81fc 1616 sh2_write8_map[0xc0/2] = sh2_write8_da;
1617 sh2_write16_map[0xc0/2] = sh2_write16_da;
bcf65fd6 1618 // SH2 IO
1619 sh2_read8_map[0x1f].addr = MAP_HANDLER(sh2_peripheral_read8);
1620 sh2_read16_map[0x1f].addr = MAP_HANDLER(sh2_peripheral_read16);
e05b81fc 1621 sh2_write8_map[0xff/2] = sh2_peripheral_write8;
1622 sh2_write16_map[0xff/2] = sh2_peripheral_write16;
bcf65fd6 1623
1624 // map DRAM area, both 68k and SH2
1625 Pico32xSwapDRAM(1);
1626
1627 msh2.read8_map = ssh2.read8_map = sh2_read8_map;
1628 msh2.read16_map = ssh2.read16_map = sh2_read16_map;
23686515 1629 msh2.write8_tab = ssh2.write8_tab = (const void **)(void *)sh2_write8_map;
1630 msh2.write16_tab = ssh2.write16_tab = (const void **)(void *)sh2_write16_map;
bcf65fd6 1631
23686515 1632 sh2_drc_mem_setup(&msh2);
1633 sh2_drc_mem_setup(&ssh2);
be2c4208 1634}
1635
27e26273 1636void Pico32xMemStateLoaded(void)
b4db550e 1637{
1638 bank_switch(Pico32x.regs[4 / 2]);
1639 Pico32xSwapDRAM((Pico32x.vdp_regs[0x0a / 2] & P32XV_FS) ^ P32XV_FS);
b4db550e 1640 memset(Pico32xMem->pwm, 0, sizeof(Pico32xMem->pwm));
27e26273 1641 Pico32x.dirty_pal = 1;
51d86e55 1642
19886062 1643 Pico32x.emu_flags &= ~(P32XF_68KCPOLL | P32XF_68KVPOLL);
1644 memset(&m68k_poll, 0, sizeof(m68k_poll));
1645 msh2.state = 0;
1646 msh2.poll_addr = msh2.poll_cycles = msh2.poll_cnt = 0;
1647 ssh2.state = 0;
1648 ssh2.poll_addr = ssh2.poll_cycles = ssh2.poll_cnt = 0;
1649
b4db550e 1650 sh2_drc_flush_all();
b4db550e 1651}
1652
ed4402a7 1653// vim:shiftwidth=2:ts=2:expandtab