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