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