based on hw tests busreq is affected by reset. Remove old hack too
[picodrive.git] / pico / cd / pico.c
CommitLineData
672ad671 1// (c) Copyright 2007 notaz, All rights reserved.
cc68a136 2
3
efcba75f 4#include "../pico_int.h"
43e6eaad 5#include "../sound/ym2612.h"
cc68a136 6
76276b0b 7extern unsigned char formatted_bram[4*0x10];
89fa852d 8extern unsigned int s68k_poll_adclk;
9
721cd396 10void (*PicoMCDopenTray)(void) = NULL;
d687ef50 11void (*PicoMCDcloseTray)(void) = NULL;
89fa852d 12
cc68a136 13
2aa27095 14PICO_INTERNAL void PicoInitMCD(void)
cc68a136 15{
16 SekInitS68k();
17 Init_CD_Driver();
cc68a136 18}
19
eff55556 20PICO_INTERNAL void PicoExitMCD(void)
cc68a136 21{
22 End_CD_Driver();
23}
24
1cb1584b 25PICO_INTERNAL void PicoPowerMCD(void)
26{
27 int fmt_size = sizeof(formatted_bram);
28 memset(Pico_mcd->prg_ram, 0, sizeof(Pico_mcd->prg_ram));
29 memset(Pico_mcd->word_ram2M, 0, sizeof(Pico_mcd->word_ram2M));
30 memset(Pico_mcd->pcm_ram, 0, sizeof(Pico_mcd->pcm_ram));
31 memset(Pico_mcd->bram, 0, sizeof(Pico_mcd->bram));
32 memcpy(Pico_mcd->bram + sizeof(Pico_mcd->bram) - fmt_size, formatted_bram, fmt_size);
33}
34
35PICO_INTERNAL int PicoResetMCD(void)
cc68a136 36{
51a902ae 37 memset(Pico_mcd->s68k_regs, 0, sizeof(Pico_mcd->s68k_regs));
4f265db7 38 memset(&Pico_mcd->pcm, 0, sizeof(Pico_mcd->pcm));
5c69a605 39 memset(&Pico_mcd->m, 0, sizeof(Pico_mcd->m));
51a902ae 40
d1df8786 41 *(unsigned int *)(Pico_mcd->bios + 0x70) = 0xffffffff; // reset hint vector (simplest way to implement reg6)
c008977e 42 Pico_mcd->m.state_flags |= 1; // s68k reset pending
672ad671 43 Pico_mcd->s68k_regs[3] = 1; // 2M word RAM mode with m68k access after reset
cc68a136 44
cc68a136 45 Reset_CD();
5c69a605 46 LC89510_Reset();
51a902ae 47 gfx_cd_reset();
4ff2d527 48 PicoMemResetCD(1);
3aa1e148 49#ifdef _ASM_CD_MEMORY_C
00bd648e 50 //PicoMemResetCDdecode(1); // don't have to call this in 2M mode
4ff2d527 51#endif
cc68a136 52
6cadc2da 53 // use SRam.data for RAM cart
602133e1 54 if (PicoOpt&POPT_EN_MCD_RAMCART) {
d6114368 55 if (SRam.data == NULL)
56 SRam.data = calloc(1, 0x12000);
57 }
58 else if (SRam.data != NULL) {
59 free(SRam.data);
60 SRam.data = NULL;
61 }
b542be46 62 SRam.start = SRam.end = 0; // unused
6cadc2da 63
cc68a136 64 return 0;
65}
66
eff55556 67static __inline void SekRunM68k(int cyc)
cc68a136 68{
69 int cyc_do;
70 SekCycleAim+=cyc;
3ec29f01 71 if ((cyc_do=SekCycleAim-SekCycleCnt) <= 0) return;
b5e5172d 72#if defined(EMU_CORE_DEBUG)
73 SekCycleCnt+=CM_compareRun(cyc_do, 0);
74#elif defined(EMU_C68K)
3aa1e148 75 PicoCpuCM68k.cycles=cyc_do;
76 CycloneRun(&PicoCpuCM68k);
77 SekCycleCnt+=cyc_do-PicoCpuCM68k.cycles;
b837b69b 78#elif defined(EMU_M68K)
3aa1e148 79 m68k_set_context(&PicoCpuMM68k);
cc68a136 80 SekCycleCnt+=m68k_execute(cyc_do);
3aa1e148 81#elif defined(EMU_F68K)
82 g_m68kcontext=&PicoCpuFM68k;
c060a9ab 83 SekCycleCnt+=fm68k_emulate(cyc_do, 0, 0);
cc68a136 84#endif
85}
86
87static __inline void SekRunS68k(int cyc)
88{
89 int cyc_do;
90 SekCycleAimS68k+=cyc;
3ec29f01 91 if ((cyc_do=SekCycleAimS68k-SekCycleCntS68k) <= 0) return;
b5e5172d 92#if defined(EMU_CORE_DEBUG)
93 SekCycleCntS68k+=CM_compareRun(cyc_do, 1);
94#elif defined(EMU_C68K)
3aa1e148 95 PicoCpuCS68k.cycles=cyc_do;
96 CycloneRun(&PicoCpuCS68k);
97 SekCycleCntS68k+=cyc_do-PicoCpuCS68k.cycles;
b837b69b 98#elif defined(EMU_M68K)
3aa1e148 99 m68k_set_context(&PicoCpuMS68k);
cc68a136 100 SekCycleCntS68k+=m68k_execute(cyc_do);
3aa1e148 101#elif defined(EMU_F68K)
102 g_m68kcontext=&PicoCpuFS68k;
c060a9ab 103 SekCycleCntS68k+=fm68k_emulate(cyc_do, 0, 0);
cc68a136 104#endif
105}
106
7336a99a 107#define PS_STEP_M68K ((488<<16)/20) // ~24
108//#define PS_STEP_S68K 13
68cba51e 109
8022f53d 110#if defined(_ASM_CD_PICO_C)
111extern void SekRunPS(int cyc_m68k, int cyc_s68k);
112#elif defined(EMU_F68K)
113static __inline void SekRunPS(int cyc_m68k, int cyc_s68k)
114{
115 SekCycleAim+=cyc_m68k;
116 SekCycleAimS68k+=cyc_s68k;
c060a9ab 117 fm68k_emulate(0, 1, 0);
8022f53d 118}
a4030801 119#else
68cba51e 120static __inline void SekRunPS(int cyc_m68k, int cyc_s68k)
121{
7336a99a 122 int cycn, cycn_s68k, cyc_do;
68cba51e 123 SekCycleAim+=cyc_m68k;
124 SekCycleAimS68k+=cyc_s68k;
7336a99a 125
126// fprintf(stderr, "=== start %3i/%3i [%3i/%3i] {%05i.%i} ===\n", cyc_m68k, cyc_s68k,
127// SekCycleAim-SekCycleCnt, SekCycleAimS68k-SekCycleCntS68k, Pico.m.frame_count, Pico.m.scanline);
128
129 /* loop 488 downto 0 in steps of PS_STEP */
130 for (cycn = (488<<16)-PS_STEP_M68K; cycn >= 0; cycn -= PS_STEP_M68K)
131 {
7336a99a 132 cycn_s68k = (cycn + cycn/2 + cycn/8) >> 16;
7336a99a 133 if ((cyc_do = SekCycleAim-SekCycleCnt-(cycn>>16)) > 0) {
68cba51e 134#if defined(EMU_C68K)
3aa1e148 135 PicoCpuCM68k.cycles = cyc_do;
136 CycloneRun(&PicoCpuCM68k);
137 SekCycleCnt += cyc_do - PicoCpuCM68k.cycles;
68cba51e 138#elif defined(EMU_M68K)
3aa1e148 139 m68k_set_context(&PicoCpuMM68k);
140 SekCycleCnt += m68k_execute(cyc_do);
141#elif defined(EMU_F68K)
142 g_m68kcontext = &PicoCpuFM68k;
c060a9ab 143 SekCycleCnt += fm68k_emulate(cyc_do, 0, 0);
68cba51e 144#endif
7336a99a 145 }
7336a99a 146 if ((cyc_do = SekCycleAimS68k-SekCycleCntS68k-cycn_s68k) > 0) {
68cba51e 147#if defined(EMU_C68K)
3aa1e148 148 PicoCpuCS68k.cycles = cyc_do;
149 CycloneRun(&PicoCpuCS68k);
150 SekCycleCntS68k += cyc_do - PicoCpuCS68k.cycles;
68cba51e 151#elif defined(EMU_M68K)
3aa1e148 152 m68k_set_context(&PicoCpuMS68k);
153 SekCycleCntS68k += m68k_execute(cyc_do);
154#elif defined(EMU_F68K)
155 g_m68kcontext = &PicoCpuFS68k;
c060a9ab 156 SekCycleCntS68k += fm68k_emulate(cyc_do, 0, 0);
68cba51e 157#endif
7336a99a 158 }
68cba51e 159 }
68cba51e 160}
7336a99a 161#endif
68cba51e 162
163
bf098bc5 164static __inline void check_cd_dma(void)
165{
166 int ddx;
167
c459aefd 168 if (!(Pico_mcd->scd.Status_CDC & 0x08)) return;
bf098bc5 169
170 ddx = Pico_mcd->s68k_regs[4] & 7;
171 if (ddx < 2) return; // invalid
c459aefd 172 if (ddx < 4) {
173 Pico_mcd->s68k_regs[4] |= 0x40; // Data set ready in host port
174 return;
175 }
bf098bc5 176 if (ddx == 6) return; // invalid
177
178 Update_CDC_TRansfer(ddx); // now go and do the actual transfer
179}
180
4f265db7 181static __inline void update_chips(void)
182{
183 int counter_timer, int3_set;
184 int counter75hz_lim = Pico.m.pal ? 2080 : 2096;
185
186 // 75Hz CDC update
187 if ((Pico_mcd->m.counter75hz+=10) >= counter75hz_lim) {
188 Pico_mcd->m.counter75hz -= counter75hz_lim;
189 Check_CD_Command();
190 }
191
192 // update timers
193 counter_timer = Pico.m.pal ? 0x21630 : 0x2121c; // 136752 : 135708;
194 Pico_mcd->m.timer_stopwatch += counter_timer;
195 if ((int3_set = Pico_mcd->s68k_regs[0x31])) {
196 Pico_mcd->m.timer_int3 -= counter_timer;
197 if (Pico_mcd->m.timer_int3 < 0) {
198 if (Pico_mcd->s68k_regs[0x33] & (1<<3)) {
69996cb7 199 elprintf(EL_INTS, "s68k: timer irq 3");
4f265db7 200 SekInterruptS68k(3);
201 Pico_mcd->m.timer_int3 += int3_set << 16;
202 }
203 // is this really what happens if irq3 is masked out?
204 Pico_mcd->m.timer_int3 &= 0xffffff;
205 }
206 }
207
208 // update gfx chip
209 if (Pico_mcd->rot_comp.Reg_58 & 0x8000)
210 gfx_cd_update();
211}
212
b837b69b 213
bf5fbbb4 214#define PICO_CD
efcba75f 215#include "../pico_cmn.c"
cc68a136 216
217
2aa27095 218PICO_INTERNAL void PicoFrameMCD(void)
cc68a136 219{
602133e1 220 if (!(PicoOpt&POPT_ALT_RENDERER))
cc68a136 221 PicoFrameStart();
222
bf5fbbb4 223 PicoFrameHints();
cc68a136 224}
225
226