32x: sh2mame: critical bugfix (irqs on delay slot) + global cycle counter
[picodrive.git] / pico / 32x / 32x.c
CommitLineData
be2c4208 1#include "../pico_int.h"
974fdb5b 2#include "../sound/ym2612.h"
be2c4208 3
4struct Pico32x Pico32x;
5
b78efee2 6static void sh2_irq_cb(int id, int level)
4ea707e1 7{
8 // diagnostic for now
b78efee2 9 elprintf(EL_32X, "%csh2 ack %d @ %08x", id ? 's' : 'm', level, sh2_pc(id));
4ea707e1 10}
11
12void p32x_update_irls(void)
13{
14 int irqs, mlvl = 0, slvl = 0;
15
16 // msh2
17 irqs = (Pico32x.sh2irqs | Pico32x.sh2irqi[0]) & ((Pico32x.sh2irq_mask[0] << 3) | P32XI_VRES);
18 while ((irqs >>= 1))
19 mlvl++;
20 mlvl *= 2;
21
22 // ssh2
23 irqs = (Pico32x.sh2irqs | Pico32x.sh2irqi[1]) & ((Pico32x.sh2irq_mask[1] << 3) | P32XI_VRES);
24 while ((irqs >>= 1))
25 slvl++;
26 slvl *= 2;
27
28 elprintf(EL_32X, "update_irls: m %d, s %d", mlvl, slvl);
29 sh2_irl_irq(&msh2, mlvl);
4ea707e1 30 sh2_irl_irq(&ssh2, slvl);
87accdf7 31 mlvl = mlvl ? 1 : 0;
32 slvl = slvl ? 1 : 0;
33 p32x_poll_event(mlvl | (slvl << 1), 0);
4ea707e1 34}
35
be2c4208 36void Pico32xStartup(void)
37{
38 elprintf(EL_STATUS|EL_32X, "32X startup");
39
40 PicoAHW |= PAHW_32X;
41 PicoMemSetup32x();
42
b78efee2 43 sh2_init(&msh2, 0);
4ea707e1 44 msh2.irq_callback = sh2_irq_cb;
acd35d4c 45 sh2_reset(&msh2);
46
b78efee2 47 sh2_init(&ssh2, 1);
4ea707e1 48 ssh2.irq_callback = sh2_irq_cb;
acd35d4c 49 sh2_reset(&ssh2);
50
be2c4208 51 if (!Pico.m.pal)
974fdb5b 52 Pico32x.vdp_regs[0] |= P32XV_nPAL;
be2c4208 53
974fdb5b 54 emu_32x_startup();
be2c4208 55}
56
57void Pico32xInit(void)
58{
974fdb5b 59}
60
61void PicoPower32x(void)
62{
63 memset(&Pico32x, 0, sizeof(Pico32x));
5e49c3a8 64
974fdb5b 65 Pico32x.regs[0] = 0x0082; // SH2 reset?
66 Pico32x.vdp_regs[0x0a/2] = P32XV_VBLK|P32XV_HBLK|P32XV_PEN;
87accdf7 67 Pico32x.sh2_regs[0] = P32XS2_ADEN;
be2c4208 68}
69
5e49c3a8 70void PicoUnload32x(void)
71{
72 if (Pico32xMem != NULL)
73 free(Pico32xMem);
74 Pico32xMem = NULL;
75
76 PicoAHW &= ~PAHW_32X;
77}
78
be2c4208 79void PicoReset32x(void)
80{
5e49c3a8 81 extern int p32x_csum_faked;
82 p32x_csum_faked = 0; // tmp
be2c4208 83}
84
974fdb5b 85static void p32x_start_blank(void)
86{
87 // enter vblank
88 Pico32x.vdp_regs[0x0a/2] |= P32XV_VBLK|P32XV_PEN;
89
4ea707e1 90 // FB swap waits until vblank
974fdb5b 91 if ((Pico32x.vdp_regs[0x0a/2] ^ Pico32x.pending_fb) & P32XV_FS) {
92 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_FS;
93 Pico32x.vdp_regs[0x0a/2] |= Pico32x.pending_fb;
94 Pico32xSwapDRAM(Pico32x.pending_fb ^ 1);
95 }
4ea707e1 96
97d3f47f 97 Pico32x.sh2irqs |= P32XI_VINT;
98 p32x_update_irls();
87accdf7 99 p32x_poll_event(3, 1);
974fdb5b 100}
101
102// FIXME..
103static __inline void SekRunM68k(int cyc)
104{
105 int cyc_do;
4ea707e1 106 SekCycleAim += cyc;
107 if (Pico32x.emu_flags & P32XF_68KPOLL) {
108 SekCycleCnt = SekCycleAim;
109 return;
110 }
111 if ((cyc_do = SekCycleAim - SekCycleCnt) <= 0)
112 return;
974fdb5b 113#if defined(EMU_CORE_DEBUG)
114 // this means we do run-compare
115 SekCycleCnt+=CM_compareRun(cyc_do, 0);
116#elif defined(EMU_C68K)
117 PicoCpuCM68k.cycles=cyc_do;
118 CycloneRun(&PicoCpuCM68k);
119 SekCycleCnt+=cyc_do-PicoCpuCM68k.cycles;
120#elif defined(EMU_M68K)
121 SekCycleCnt+=m68k_execute(cyc_do);
122#elif defined(EMU_F68K)
123 SekCycleCnt+=fm68k_emulate(cyc_do+1, 0, 0);
124#endif
125}
126
266c6afa 127// ~1463.8, but due to cache misses and slow mem
128// it's much lower than that
be20816c 129//#define SH2_LINE_CYCLES 735
130#define CYCLES_M68K2SH2(x) ((x) * 9 / 4)
266c6afa 131
974fdb5b 132#define PICO_32X
be20816c 133#define RUN_SH2S_SIMPLE(m68k_cycles) \
4ea707e1 134 if (!(Pico32x.emu_flags & (P32XF_MSH2POLL|P32XF_MSH2VPOLL))) \
be20816c 135 sh2_execute(&msh2, CYCLES_M68K2SH2(m68k_cycles)); \
b78efee2 136 if (!(Pico32x.emu_flags & (P32XF_SSH2POLL|P32XF_SSH2VPOLL))) \
be20816c 137 sh2_execute(&ssh2, CYCLES_M68K2SH2(m68k_cycles))
acd35d4c 138
be20816c 139#define STEP 66
140#define RUN_SH2S_LOCKSTEP(m68k_cycles) \
87accdf7 141{ \
142 int i; \
be20816c 143 for (i = 0; i < CYCLES_M68K2SH2(m68k_cycles); i+= STEP) { \
144 sh2_execute(&msh2, STEP); \
145 sh2_execute(&ssh2, STEP); \
87accdf7 146 } \
147}
148
149#define RUN_SH2S RUN_SH2S_SIMPLE
be20816c 150//#define RUN_SH2S RUN_SH2S_LOCKSTEP
87accdf7 151
974fdb5b 152#include "../pico_cmn.c"
153
154void PicoFrame32x(void)
155{
db1d3564 156 pwm_frame_smp_cnt = 0;
157
4ea707e1 158 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_VBLK; // get out of vblank
db1d3564 159 if ((Pico32x.vdp_regs[0] & P32XV_Mx) != 0) // no forced blanking
160 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_PEN; // no palette access
4ea707e1 161
87accdf7 162 p32x_poll_event(3, 1);
974fdb5b 163
164 PicoFrameStart();
165 PicoFrameHints();
be20816c 166 elprintf(EL_32X, "poll: %02x", Pico32x.emu_flags);
974fdb5b 167}
db1d3564 168