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