32x: implement more sh2 peripherals
[picodrive.git] / pico / pico.c
1 /*\r
2  * PicoDrive\r
3  * (c) Copyright Dave, 2004\r
4  * (C) notaz, 2006-2010\r
5  *\r
6  * This work is licensed under the terms of MAME license.\r
7  * See COPYING file in the top-level directory.\r
8  */\r
9 \r
10 #include "pico_int.h"\r
11 #include "sound/ym2612.h"\r
12 \r
13 struct Pico Pico;\r
14 int PicoOpt;     \r
15 int PicoSkipFrame;     // skip rendering frame?\r
16 int PicoPad[2];        // Joypads, format is MXYZ SACB RLDU\r
17 int PicoPadInt[2];     // internal copy\r
18 int PicoAHW;           // active addon hardware: PAHW_*\r
19 int PicoRegionOverride; // override the region detection 0: Auto, 1: Japan NTSC, 2: Japan PAL, 4: US, 8: Europe\r
20 int PicoAutoRgnOrder;\r
21 \r
22 struct PicoSRAM SRam;\r
23 int emustatus;         // rapid_ym2612, multi_ym_updates\r
24 int scanlines_total;\r
25 \r
26 void (*PicoWriteSound)(int len) = NULL; // called at the best time to send sound buffer (PsndOut) to hardware\r
27 void (*PicoResetHook)(void) = NULL;\r
28 void (*PicoLineHook)(void) = NULL;\r
29 \r
30 // to be called once on emu init\r
31 void PicoInit(void)\r
32 {\r
33   // Blank space for state:\r
34   memset(&Pico,0,sizeof(Pico));\r
35   memset(&PicoPad,0,sizeof(PicoPad));\r
36   memset(&PicoPadInt,0,sizeof(PicoPadInt));\r
37 \r
38   // Init CPUs:\r
39   SekInit();\r
40   z80_init(); // init even if we aren't going to use it\r
41 \r
42   PicoInitMCD();\r
43   PicoSVPInit();\r
44   Pico32xInit();\r
45 }\r
46 \r
47 // to be called once on emu exit\r
48 void PicoExit(void)\r
49 {\r
50   if (PicoAHW & PAHW_MCD)\r
51     PicoExitMCD();\r
52   PicoCartUnload();\r
53   z80_exit();\r
54 \r
55   if (SRam.data)\r
56     free(SRam.data);\r
57   pevt_dump();\r
58 }\r
59 \r
60 void PicoPower(void)\r
61 {\r
62   Pico.m.frame_count = 0;\r
63 \r
64   // clear all memory of the emulated machine\r
65   memset(&Pico.ram,0,(unsigned char *)&Pico.rom - Pico.ram);\r
66 \r
67   memset(&Pico.video,0,sizeof(Pico.video));\r
68   memset(&Pico.m,0,sizeof(Pico.m));\r
69 \r
70   Pico.video.pending_ints=0;\r
71   z80_reset();\r
72 \r
73   // default VDP register values (based on Fusion)\r
74   Pico.video.reg[0] = Pico.video.reg[1] = 0x04;\r
75   Pico.video.reg[0xc] = 0x81;\r
76   Pico.video.reg[0xf] = 0x02;\r
77 \r
78   if (PicoAHW & PAHW_MCD)\r
79     PicoPowerMCD();\r
80 \r
81   if (PicoOpt & POPT_EN_32X)\r
82     PicoPower32x();\r
83 \r
84   PicoReset();\r
85 }\r
86 \r
87 PICO_INTERNAL void PicoDetectRegion(void)\r
88 {\r
89   int support=0, hw=0, i;\r
90   unsigned char pal=0;\r
91 \r
92   if (PicoRegionOverride)\r
93   {\r
94     support = PicoRegionOverride;\r
95   }\r
96   else\r
97   {\r
98     // Read cartridge region data:\r
99     unsigned short *rd = (unsigned short *)(Pico.rom + 0x1f0);\r
100     int region = (rd[0] << 16) | rd[1];\r
101 \r
102     for (i = 0; i < 4; i++)\r
103     {\r
104       int c;\r
105 \r
106       c = region >> (i<<3);\r
107       c &= 0xff;\r
108       if (c <= ' ') continue;\r
109 \r
110            if (c=='J')  support|=1;\r
111       else if (c=='U')  support|=4;\r
112       else if (c=='E')  support|=8;\r
113       else if (c=='j') {support|=1; break; }\r
114       else if (c=='u') {support|=4; break; }\r
115       else if (c=='e') {support|=8; break; }\r
116       else\r
117       {\r
118         // New style code:\r
119         char s[2]={0,0};\r
120         s[0]=(char)c;\r
121         support|=strtol(s,NULL,16);\r
122       }\r
123     }\r
124   }\r
125 \r
126   // auto detection order override\r
127   if (PicoAutoRgnOrder) {\r
128          if (((PicoAutoRgnOrder>>0)&0xf) & support) support = (PicoAutoRgnOrder>>0)&0xf;\r
129     else if (((PicoAutoRgnOrder>>4)&0xf) & support) support = (PicoAutoRgnOrder>>4)&0xf;\r
130     else if (((PicoAutoRgnOrder>>8)&0xf) & support) support = (PicoAutoRgnOrder>>8)&0xf;\r
131   }\r
132 \r
133   // Try to pick the best hardware value for English/50hz:\r
134        if (support&8) { hw=0xc0; pal=1; } // Europe\r
135   else if (support&4)   hw=0x80;          // USA\r
136   else if (support&2) { hw=0x40; pal=1; } // Japan PAL\r
137   else if (support&1)   hw=0x00;          // Japan NTSC\r
138   else hw=0x80; // USA\r
139 \r
140   Pico.m.hardware=(unsigned char)(hw|0x20); // No disk attached\r
141   Pico.m.pal=pal;\r
142 }\r
143 \r
144 int PicoReset(void)\r
145 {\r
146   if (Pico.romsize <= 0)\r
147     return 1;\r
148 \r
149 #if defined(CPU_CMP_R) || defined(CPU_CMP_W) || defined(DRC_CMP)\r
150   PicoOpt |= POPT_DIS_VDP_FIFO|POPT_DIS_IDLE_DET;\r
151 #endif\r
152 \r
153   /* must call now, so that banking is reset, and correct vectors get fetched */\r
154   if (PicoResetHook)\r
155     PicoResetHook();\r
156 \r
157   memset(&PicoPadInt,0,sizeof(PicoPadInt));\r
158   emustatus = 0;\r
159 \r
160   if (PicoAHW & PAHW_SMS) {\r
161     PicoResetMS();\r
162     return 0;\r
163   }\r
164 \r
165   SekReset();\r
166   // s68k doesn't have the TAS quirk, so we just globally set normal TAS handler in MCD mode (used by Batman games).\r
167   SekSetRealTAS(PicoAHW & PAHW_MCD);\r
168   SekCycleCntT = SekCycleCnt = SekCycleAim = 0;\r
169 \r
170   if (PicoAHW & PAHW_MCD)\r
171     // needed for MCD to reset properly, probably some bug hides behind this..\r
172     memset(Pico.ioports,0,sizeof(Pico.ioports));\r
173 \r
174   Pico.m.dirtyPal = 1;\r
175 \r
176   Pico.m.z80_bank68k = 0;\r
177   Pico.m.z80_reset = 1;\r
178   memset(Pico.zram, 0, sizeof(Pico.zram)); // ??\r
179 \r
180   PicoDetectRegion();\r
181   Pico.video.status = 0x3428 | Pico.m.pal; // 'always set' bits | vblank | collision | pal\r
182 \r
183   PsndReset(); // pal must be known here\r
184 \r
185   // create an empty "dma" to cause 68k exec start at random frame location\r
186   if (Pico.m.dma_xfers == 0 && !(PicoOpt & POPT_DIS_VDP_FIFO))\r
187     Pico.m.dma_xfers = rand() & 0x1fff;\r
188 \r
189   SekFinishIdleDet();\r
190 \r
191   if (PicoAHW & PAHW_MCD) {\r
192     PicoResetMCD();\r
193     return 0;\r
194   }\r
195 \r
196   // reinit, so that checksum checks pass\r
197   if (!(PicoOpt & POPT_DIS_IDLE_DET))\r
198     SekInitIdleDet();\r
199 \r
200   if (PicoOpt & POPT_EN_32X)\r
201     PicoReset32x();\r
202 \r
203   // reset sram state; enable sram access by default if it doesn't overlap with ROM\r
204   Pico.m.sram_reg = 0;\r
205   if ((SRam.flags & SRF_EEPROM) || Pico.romsize <= SRam.start)\r
206     Pico.m.sram_reg |= SRR_MAPPED;\r
207 \r
208   if (SRam.flags & SRF_ENABLED)\r
209     elprintf(EL_STATUS, "sram: %06x - %06x; eeprom: %i", SRam.start, SRam.end,\r
210       !!(SRam.flags & SRF_EEPROM));\r
211 \r
212   return 0;\r
213 }\r
214 \r
215 // flush config changes before emu loop starts\r
216 void PicoLoopPrepare(void)\r
217 {\r
218   if (PicoRegionOverride)\r
219     // force setting possibly changed..\r
220     Pico.m.pal = (PicoRegionOverride == 2 || PicoRegionOverride == 8) ? 1 : 0;\r
221 \r
222   // FIXME: PAL has 313 scanlines..\r
223   scanlines_total = Pico.m.pal ? 312 : 262;\r
224 \r
225   Pico.m.dirtyPal = 1;\r
226   rendstatus_old = -1;\r
227 }\r
228 \r
229 \r
230 // dma2vram settings are just hacks to unglitch Legend of Galahad (needs <= 104 to work)\r
231 // same for Outrunners (92-121, when active is set to 24)\r
232 // 96 is VR hack\r
233 static const int dma_timings[] = {\r
234   96,  167, 166,  83, // vblank: 32cell: dma2vram dma2[vs|c]ram vram_fill vram_copy\r
235   102, 205, 204, 102, // vblank: 40cell:\r
236   16,   16,  15,   8, // active: 32cell:\r
237   24,   18,  17,   9  // ...\r
238 };\r
239 \r
240 static const int dma_bsycles[] = {\r
241   (488<<8)/96,  (488<<8)/167, (488<<8)/166, (488<<8)/83,\r
242   (488<<8)/102, (488<<8)/205, (488<<8)/204, (488<<8)/102,\r
243   (488<<8)/16,  (488<<8)/16,  (488<<8)/15,  (488<<8)/8,\r
244   (488<<8)/24,  (488<<8)/18,  (488<<8)/17,  (488<<8)/9\r
245 };\r
246 \r
247 PICO_INTERNAL int CheckDMA(void)\r
248 {\r
249   int burn = 0, xfers_can, dma_op = Pico.video.reg[0x17]>>6; // see gens for 00 and 01 modes\r
250   int xfers = Pico.m.dma_xfers;\r
251   int dma_op1;\r
252 \r
253   if(!(dma_op&2)) dma_op = (Pico.video.type==1) ? 0 : 1; // setting dma_timings offset here according to Gens\r
254   dma_op1 = dma_op;\r
255   if(Pico.video.reg[12] & 1) dma_op |= 4; // 40 cell mode?\r
256   if(!(Pico.video.status&8)&&(Pico.video.reg[1]&0x40)) dma_op|=8; // active display?\r
257   xfers_can = dma_timings[dma_op];\r
258   if(xfers <= xfers_can)\r
259   {\r
260     if(dma_op&2) Pico.video.status&=~2; // dma no longer busy\r
261     else {\r
262       burn = xfers * dma_bsycles[dma_op] >> 8; // have to be approximate because can't afford division..\r
263     }\r
264     Pico.m.dma_xfers = 0;\r
265   } else {\r
266     if(!(dma_op&2)) burn = 488;\r
267     Pico.m.dma_xfers -= xfers_can;\r
268   }\r
269 \r
270   elprintf(EL_VDPDMA, "~Dma %i op=%i can=%i burn=%i [%i]", Pico.m.dma_xfers, dma_op1, xfers_can, burn, SekCyclesDone());\r
271   //dprintf("~aim: %i, cnt: %i", SekCycleAim, SekCycleCnt);\r
272   return burn;\r
273 }\r
274 \r
275 #include "pico_cmn.c"\r
276 \r
277 int z80stopCycle;\r
278 int z80_cycle_cnt;        /* 'done' z80 cycles before z80_run() */\r
279 int z80_cycle_aim;\r
280 int z80_scanline;\r
281 int z80_scanline_cycles;  /* cycles done until z80_scanline */\r
282 \r
283 /* sync z80 to 68k */\r
284 PICO_INTERNAL void PicoSyncZ80(int m68k_cycles_done)\r
285 {\r
286   int cnt;\r
287   z80_cycle_aim = cycles_68k_to_z80(m68k_cycles_done);\r
288   cnt = z80_cycle_aim - z80_cycle_cnt;\r
289 \r
290   pprof_start(z80);\r
291 \r
292   elprintf(EL_BUSREQ, "z80 sync %i (%i|%i -> %i|%i)", cnt, z80_cycle_cnt, z80_cycle_cnt / 228,\r
293     z80_cycle_aim, z80_cycle_aim / 228);\r
294 \r
295   if (cnt > 0)\r
296     z80_cycle_cnt += z80_run(cnt);\r
297 \r
298   pprof_end(z80);\r
299 }\r
300 \r
301 \r
302 void PicoFrame(void)\r
303 {\r
304   pprof_start(frame);\r
305 \r
306   Pico.m.frame_count++;\r
307 \r
308   if (PicoAHW & PAHW_SMS) {\r
309     PicoFrameMS();\r
310     goto end;\r
311   }\r
312 \r
313   // TODO: MCD+32X\r
314   if (PicoAHW & PAHW_MCD) {\r
315     PicoFrameMCD();\r
316     goto end;\r
317   }\r
318 \r
319   if (PicoAHW & PAHW_32X) {\r
320     PicoFrame32x();\r
321     goto end;\r
322   }\r
323 \r
324   //if(Pico.video.reg[12]&0x2) Pico.video.status ^= 0x10; // change odd bit in interlace mode\r
325 \r
326   PicoFrameStart();\r
327   PicoFrameHints();\r
328 \r
329 end:\r
330   pprof_end(frame);\r
331 }\r
332 \r
333 void PicoFrameDrawOnly(void)\r
334 {\r
335   if (!(PicoAHW & PAHW_SMS)) {\r
336     PicoFrameStart();\r
337     PicoDrawSync(223, 0);\r
338   } else {\r
339     PicoFrameDrawOnlyMS();\r
340   }\r
341 }\r
342 \r
343 void PicoGetInternal(pint_t which, pint_ret_t *r)\r
344 {\r
345   switch (which)\r
346   {\r
347     case PI_ROM:         r->vptr = Pico.rom; break;\r
348     case PI_ISPAL:       r->vint = Pico.m.pal; break;\r
349     case PI_IS40_CELL:   r->vint = Pico.video.reg[12]&1; break;\r
350     case PI_IS240_LINES: r->vint = Pico.m.pal && (Pico.video.reg[1]&8); break;\r
351   }\r
352 }\r
353 \r
354 // callback to output message from emu\r
355 void (*PicoMessage)(const char *msg)=NULL;\r
356 \r