1 #include "../pico_int.h"
2 #include "../sound/ym2612.h"
4 struct Pico32x Pico32x;
7 static int REGPARM(2) sh2_irq_cb(SH2 *sh2, int level)
9 if (sh2->pending_irl > sh2->pending_int_irq) {
10 elprintf(EL_32X, "%csh2 ack/irl %d @ %08x",
11 sh2->is_slave ? 's' : 'm', level, sh2->pc);
12 return 64 + sh2->pending_irl / 2;
14 elprintf(EL_32X, "%csh2 ack/int %d/%d @ %08x",
15 sh2->is_slave ? 's' : 'm', level, sh2->pending_int_vector, sh2->pc);
16 sh2->pending_int_irq = 0; // auto-clear
17 sh2->pending_level = sh2->pending_irl;
18 return sh2->pending_int_vector;
22 void p32x_update_irls(void)
24 int irqs, mlvl = 0, slvl = 0;
27 irqs = (Pico32x.sh2irqs | Pico32x.sh2irqi[0]) & ((Pico32x.sh2irq_mask[0] << 3) | P32XI_VRES);
33 irqs = (Pico32x.sh2irqs | Pico32x.sh2irqi[1]) & ((Pico32x.sh2irq_mask[1] << 3) | P32XI_VRES);
38 elprintf(EL_32X, "update_irls: m %d, s %d", mlvl, slvl);
39 sh2_irl_irq(&msh2, mlvl);
40 sh2_irl_irq(&ssh2, slvl);
43 p32x_poll_event(mlvl | (slvl << 1), 0);
46 void Pico32xStartup(void)
48 elprintf(EL_STATUS|EL_32X, "32X startup");
53 msh2.irq_callback = sh2_irq_cb;
55 ssh2.irq_callback = sh2_irq_cb;
60 Pico32x.vdp_regs[0] |= P32XV_nPAL;
62 PREG8(Pico32xMem->sh2_peri_regs[0], 4) =
63 PREG8(Pico32xMem->sh2_peri_regs[1], 4) = 0x84; // SCI SSR
68 #define HWSWAP(x) (((x) << 16) | ((x) >> 16))
69 void p32x_reset_sh2s(void)
71 elprintf(EL_32X, "sh2 reset");
76 // if we don't have BIOS set, perform it's work here.
78 if (p32x_bios_m == NULL) {
79 unsigned int idl_src, idl_dst, idl_size; // initial data load
83 idl_src = HWSWAP(*(unsigned int *)(Pico.rom + 0x3d4)) & ~0xf0000000;
84 idl_dst = HWSWAP(*(unsigned int *)(Pico.rom + 0x3d8)) & ~0xf0000000;
85 idl_size= HWSWAP(*(unsigned int *)(Pico.rom + 0x3dc));
86 if (idl_size > Pico.romsize || idl_src + idl_size > Pico.romsize ||
87 idl_size > 0x40000 || idl_dst + idl_size > 0x40000 || (idl_src & 3) || (idl_dst & 3)) {
88 elprintf(EL_STATUS|EL_ANOMALY, "32x: invalid initial data ptrs: %06x -> %06x, %06x",
89 idl_src, idl_dst, idl_size);
92 memcpy(Pico32xMem->sdram + idl_dst, Pico.rom + idl_src, idl_size);
95 vbr = HWSWAP(*(unsigned int *)(Pico.rom + 0x3e8));
96 sh2_set_gbr(0, 0x20004000);
100 Pico32x.regs[0x28 / 2] = *(unsigned short *)(Pico.rom + 0x18e);
101 // program will set M_OK
105 if (p32x_bios_s == NULL) {
109 vbr = HWSWAP(*(unsigned int *)(Pico.rom + 0x3ec));
110 sh2_set_gbr(1, 0x20004000);
112 // program will set S_OK
116 void Pico32xInit(void)
120 void PicoPower32x(void)
122 memset(&Pico32x, 0, sizeof(Pico32x));
124 Pico32x.regs[0] = P32XS_REN|P32XS_nRES; // verified
125 Pico32x.vdp_regs[0x0a/2] = P32XV_VBLK|P32XV_HBLK|P32XV_PEN;
126 Pico32x.sh2_regs[0] = P32XS2_ADEN;
129 void PicoUnload32x(void)
131 if (Pico32xMem != NULL)
132 plat_munmap(Pico32xMem, sizeof(*Pico32xMem));
137 PicoAHW &= ~PAHW_32X;
140 void PicoReset32x(void)
142 if (PicoAHW & PAHW_32X) {
143 Pico32x.sh2irqs |= P32XI_VRES;
145 p32x_poll_event(3, 0);
149 static void p32x_start_blank(void)
151 if (Pico32xDrawMode != 0) {
152 if ((Pico32x.vdp_regs[0] & P32XV_Mx) != 0 && // 32x not blanking
153 (Pico.video.reg[12] & 1) && // 40col mode
154 (PicoDrawMask & PDRAW_32X_ON))
156 int md_bg = Pico.video.reg[7] & 0x3f;
157 int offs = 8, lines = 224;
158 if (Pico.video.reg[1] & 8) {
163 // we draw full layer (not line-by-line)
164 PicoDraw32xLayer(offs, lines, md_bg);
167 // TODO: MD layer only?
172 Pico32x.vdp_regs[0x0a/2] |= P32XV_VBLK|P32XV_PEN;
174 // FB swap waits until vblank
175 if ((Pico32x.vdp_regs[0x0a/2] ^ Pico32x.pending_fb) & P32XV_FS) {
176 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_FS;
177 Pico32x.vdp_regs[0x0a/2] |= Pico32x.pending_fb;
178 Pico32xSwapDRAM(Pico32x.pending_fb ^ 1);
181 Pico32x.sh2irqs |= P32XI_VINT;
183 p32x_poll_event(3, 1);
186 static __inline void run_m68k(int cyc)
190 #if defined(EMU_C68K)
191 PicoCpuCM68k.cycles = cyc;
192 CycloneRun(&PicoCpuCM68k);
193 SekCycleCnt += cyc - PicoCpuCM68k.cycles;
194 #elif defined(EMU_M68K)
195 SekCycleCnt += m68k_execute(cyc);
196 #elif defined(EMU_F68K)
197 SekCycleCnt += fm68k_emulate(cyc+1, 0, 0);
203 // ~1463.8, but due to cache misses and slow mem
204 // it's much lower than that
205 //#define SH2_LINE_CYCLES 735
206 #define CYCLES_M68K2SH2(x) ((x) * 6 / 4)
209 #define CPUS_RUN_SIMPLE(m68k_cycles,s68k_cycles) \
212 SekCycleAim += m68k_cycles; \
213 while (SekCycleCnt < SekCycleAim) { \
214 slice = SekCycleCnt; \
215 run_m68k(SekCycleAim - SekCycleCnt); \
216 if (!(Pico32x.regs[0] & P32XS_nRES)) \
217 continue; /* SH2s reseting */ \
218 slice = SekCycleCnt - slice; /* real count from 68k */ \
219 if (SekCycleCnt < SekCycleAim) \
220 elprintf(EL_32X, "slice %d", slice); \
221 if (!(Pico32x.emu_flags & (P32XF_SSH2POLL|P32XF_SSH2VPOLL))) { \
223 sh2_execute(&ssh2, CYCLES_M68K2SH2(slice)); \
226 if (!(Pico32x.emu_flags & (P32XF_MSH2POLL|P32XF_MSH2VPOLL))) { \
228 sh2_execute(&msh2, CYCLES_M68K2SH2(slice)); \
231 pprof_start(dummy); \
237 #define CPUS_RUN_LOCKSTEP(m68k_cycles,s68k_cycles) \
240 for (i = 0; i <= (m68k_cycles) - STEP_68K; i += STEP_68K) { \
241 run_m68k(STEP_68K); \
242 if (!(Pico32x.emu_flags & (P32XF_MSH2POLL|P32XF_MSH2VPOLL))) \
243 sh2_execute(&msh2, CYCLES_M68K2SH2(STEP_68K)); \
244 if (!(Pico32x.emu_flags & (P32XF_SSH2POLL|P32XF_SSH2VPOLL))) \
245 sh2_execute(&ssh2, CYCLES_M68K2SH2(STEP_68K)); \
248 i = (m68k_cycles) - i; \
250 if (!(Pico32x.emu_flags & (P32XF_MSH2POLL|P32XF_MSH2VPOLL))) \
251 sh2_execute(&msh2, CYCLES_M68K2SH2(i)); \
252 if (!(Pico32x.emu_flags & (P32XF_SSH2POLL|P32XF_SSH2VPOLL))) \
253 sh2_execute(&ssh2, CYCLES_M68K2SH2(i)); \
256 #define CPUS_RUN CPUS_RUN_SIMPLE
257 //#define CPUS_RUN CPUS_RUN_LOCKSTEP
259 #include "../pico_cmn.c"
261 void PicoFrame32x(void)
263 pwm_frame_smp_cnt = 0;
265 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_VBLK; // get out of vblank
266 if ((Pico32x.vdp_regs[0] & P32XV_Mx) != 0) // no forced blanking
267 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_PEN; // no palette access
269 p32x_poll_event(3, 1);
273 elprintf(EL_32X, "poll: %02x", Pico32x.emu_flags);