| Commit | Line | Data |
|---|---|---|
| ef79bbde P |
1 | /*************************************************************************** |
| 2 | * Copyright (C) 2007 Ryan Schultz, PCSX-df Team, PCSX team * | |
| 3 | * * | |
| 4 | * This program is free software; you can redistribute it and/or modify * | |
| 5 | * it under the terms of the GNU General Public License as published by * | |
| 6 | * the Free Software Foundation; either version 2 of the License, or * | |
| 7 | * (at your option) any later version. * | |
| 8 | * * | |
| 9 | * This program is distributed in the hope that it will be useful, * | |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * | |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * | |
| 12 | * GNU General Public License for more details. * | |
| 13 | * * | |
| 14 | * You should have received a copy of the GNU General Public License * | |
| 15 | * along with this program; if not, write to the * | |
| 16 | * Free Software Foundation, Inc., * | |
| 17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307 USA. * | |
| 18 | ***************************************************************************/ | |
| 19 | ||
| 20 | /* | |
| 21 | * R3000A CPU functions. | |
| 22 | */ | |
| 23 | ||
| 24 | #include "r3000a.h" | |
| 25 | #include "cdrom.h" | |
| 26 | #include "mdec.h" | |
| 27 | #include "gte.h" | |
| 61ad2a61 | 28 | #include "psxinterpreter.h" |
| de74f599 | 29 | #include "psxbios.h" |
| 9a0a61d2 | 30 | #include "psxevents.h" |
| 905b7c25 | 31 | #include "../include/compiler_features.h" |
| dc4be87d | 32 | #include <stddef.h> |
| 92dc6b2f | 33 | #include <assert.h> |
| 34 | ||
| 35 | #ifndef ARRAY_SIZE | |
| 36 | #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) | |
| 37 | #endif | |
| ef79bbde P |
38 | |
| 39 | R3000Acpu *psxCpu = NULL; | |
| 41e82ad4 | 40 | #ifdef DRC_DISABLE |
| ef79bbde | 41 | psxRegisters psxRegs; |
| 41e82ad4 | 42 | #endif |
| ef79bbde P |
43 | |
| 44 | int psxInit() { | |
| 92dc6b2f | 45 | assert(PSXINT_COUNT <= ARRAY_SIZE(psxRegs.intCycle)); |
| 46 | assert(ARRAY_SIZE(psxRegs.intCycle) == ARRAY_SIZE(psxRegs.event_cycles)); | |
| 47 | ||
| 41e82ad4 | 48 | #ifndef DRC_DISABLE |
| ef79bbde P |
49 | if (Config.Cpu == CPU_INTERPRETER) { |
| 50 | psxCpu = &psxInt; | |
| 51 | } else psxCpu = &psxRec; | |
| 52 | #else | |
| 61ad2a61 | 53 | Config.Cpu = CPU_INTERPRETER; |
| ef79bbde P |
54 | psxCpu = &psxInt; |
| 55 | #endif | |
| 56 | ||
| ef79bbde P |
57 | if (psxMemInit() == -1) return -1; |
| 58 | ||
| 59 | return psxCpu->Init(); | |
| 60 | } | |
| 61 | ||
| 62 | void psxReset() { | |
| 14b3bd95 | 63 | boolean introBypassed = FALSE; |
| 60afad47 | 64 | boolean oldhle = Config.HLE; |
| 65 | ||
| ef79bbde P |
66 | psxMemReset(); |
| 67 | ||
| dc4be87d | 68 | memset(&psxRegs, 0, offsetof(psxRegisters, ptrs)); |
| ef79bbde P |
69 | |
| 70 | psxRegs.pc = 0xbfc00000; // Start in bootstrap | |
| 71 | ||
| bc7c5acb | 72 | psxRegs.CP0.n.SR = 0x10600000; // COP0 enabled | BEV = 1 | TS = 1 |
| 73 | psxRegs.CP0.n.PRid = 0x00000002; // PRevID = Revision ID, same as R3000A | |
| 7650b754 | 74 | if (Config.HLE) { |
| 75 | psxRegs.CP0.n.SR |= 1u << 30; // COP2 enabled | |
| 76 | psxRegs.CP0.n.SR &= ~(1u << 22); // RAM exception vector | |
| 77 | } | |
| ef79bbde | 78 | |
| 60afad47 | 79 | if (Config.HLE != oldhle) { |
| 80 | // at least ari64 drc compiles differently so hard reset | |
| 81 | psxCpu->Shutdown(); | |
| 82 | psxCpu->Init(); | |
| 83 | } | |
| d5aeda23 | 84 | psxCpu->ApplyConfig(); |
| c24732c0 | 85 | psxCpu->Reset(); |
| 86 | ||
| 0f5a2ba1 | 87 | padReset(); |
| ef79bbde P |
88 | psxHwReset(); |
| 89 | psxBiosInit(); | |
| 90 | ||
| 7b75929b | 91 | if (!Config.HLE) { |
| ef79bbde | 92 | psxExecuteBios(); |
| 14b3bd95 | 93 | if (psxRegs.pc == 0x80030000 && !Config.SlowBoot) { |
| 02b1a085 | 94 | introBypassed = BiosBootBypass(); |
| 14b3bd95 | 95 | } |
| 7b75929b | 96 | } |
| 14b3bd95 | 97 | if (Config.HLE || introBypassed) |
| 98 | psxBiosSetupBootState(); | |
| ef79bbde P |
99 | } |
| 100 | ||
| 101 | void psxShutdown() { | |
| ef79bbde P |
102 | psxBiosShutdown(); |
| 103 | ||
| 104 | psxCpu->Shutdown(); | |
| 7a8d521f | 105 | |
| 106 | psxMemShutdown(); | |
| ef79bbde P |
107 | } |
| 108 | ||
| 6d75addf | 109 | // cp0 is passed separately for lightrec to be less messy |
| bc7c5acb | 110 | void psxException(u32 cause, enum R3000Abdt bdt, psxCP0Regs *cp0) { |
| 905b7c25 | 111 | u32 opcode = intFakeFetch(psxRegs.pc); |
| 943a507a | 112 | |
| 3d1c03e7 | 113 | if (unlikely(!Config.HLE && (opcode >> 25) == 0x25)) { |
| 665e364a | 114 | // "hokuto no ken" / "Crash Bandicot 2" ... |
| 115 | // BIOS does not allow to return to GTE instructions | |
| 116 | // (just skips it, supposedly because it's scheduled already) | |
| 62656449 | 117 | // so we execute it here |
| bc7c5acb | 118 | psxCP2Regs *cp2 = (psxCP2Regs *)(cp0 + 1); |
| 905b7c25 | 119 | psxRegs.code = opcode; |
| 120 | psxCP2[opcode & 0x3f](cp2); | |
| 665e364a | 121 | } |
| 122 | ||
| ef79bbde | 123 | // Set the Cause |
| 0b1da491 | 124 | cp0->n.Cause = (bdt << 30) | (cp0->n.Cause & 0x700) | cause; |
| ef79bbde P |
125 | |
| 126 | // Set the EPC & PC | |
| bc7c5acb | 127 | cp0->n.EPC = bdt ? psxRegs.pc - 4 : psxRegs.pc; |
| ef79bbde | 128 | |
| bc7c5acb | 129 | if (cp0->n.SR & 0x400000) |
| ef79bbde P |
130 | psxRegs.pc = 0xbfc00180; |
| 131 | else | |
| 132 | psxRegs.pc = 0x80000080; | |
| 133 | ||
| bc7c5acb | 134 | // Set the SR |
| 135 | cp0->n.SR = (cp0->n.SR & ~0x3f) | ((cp0->n.SR & 0x0f) << 2); | |
| ef79bbde P |
136 | } |
| 137 | ||
| 138 | void psxBranchTest() { | |
| 92dc6b2f | 139 | if ((psxRegs.cycle - psxRegs.psxNextsCounter) >= psxRegs.psxNextCounter) |
| ef79bbde P |
140 | psxRcntUpdate(); |
| 141 | ||
| 9a0a61d2 | 142 | irq_test(&psxRegs.CP0); |
| ef79bbde | 143 | |
| 9a0a61d2 | 144 | if (unlikely(psxRegs.pc == psxRegs.biosBranchCheck)) |
| de74f599 | 145 | psxBiosCheckBranch(); |
| ef79bbde P |
146 | } |
| 147 | ||
| 148 | void psxJumpTest() { | |
| 149 | if (!Config.HLE && Config.PsxOut) { | |
| 150 | u32 call = psxRegs.GPR.n.t1 & 0xff; | |
| 151 | switch (psxRegs.pc & 0x1fffff) { | |
| 152 | case 0xa0: | |
| 153 | #ifdef PSXBIOS_LOG | |
| 154 | if (call != 0x28 && call != 0xe) { | |
| 155 | PSXBIOS_LOG("Bios call a0: %s (%x) %x,%x,%x,%x\n", biosA0n[call], call, psxRegs.GPR.n.a0, psxRegs.GPR.n.a1, psxRegs.GPR.n.a2, psxRegs.GPR.n.a3); } | |
| 156 | #endif | |
| 157 | if (biosA0[call]) | |
| 158 | biosA0[call](); | |
| 159 | break; | |
| 160 | case 0xb0: | |
| 161 | #ifdef PSXBIOS_LOG | |
| 162 | if (call != 0x17 && call != 0xb) { | |
| 163 | PSXBIOS_LOG("Bios call b0: %s (%x) %x,%x,%x,%x\n", biosB0n[call], call, psxRegs.GPR.n.a0, psxRegs.GPR.n.a1, psxRegs.GPR.n.a2, psxRegs.GPR.n.a3); } | |
| 164 | #endif | |
| 165 | if (biosB0[call]) | |
| 166 | biosB0[call](); | |
| 167 | break; | |
| 168 | case 0xc0: | |
| 169 | #ifdef PSXBIOS_LOG | |
| 170 | PSXBIOS_LOG("Bios call c0: %s (%x) %x,%x,%x,%x\n", biosC0n[call], call, psxRegs.GPR.n.a0, psxRegs.GPR.n.a1, psxRegs.GPR.n.a2, psxRegs.GPR.n.a3); | |
| 171 | #endif | |
| 172 | if (biosC0[call]) | |
| 173 | biosC0[call](); | |
| 174 | break; | |
| 175 | } | |
| 176 | } | |
| 177 | } | |
| 178 | ||
| 60afad47 | 179 | int psxExecuteBiosEnded(void) { |
| 180 | return (psxRegs.pc & 0xff800000) == 0x80000000; | |
| 181 | } | |
| 182 | ||
| ef79bbde | 183 | void psxExecuteBios() { |
| 7b75929b | 184 | int i; |
| da65071f | 185 | for (i = 0; i < 5000000; i++) { |
| c87406ff | 186 | psxCpu->ExecuteBlock(&psxRegs, EXEC_CALLER_BOOT); |
| 60afad47 | 187 | if (psxExecuteBiosEnded()) |
| da65071f | 188 | break; |
| 189 | } | |
| 190 | if (psxRegs.pc != 0x80030000) | |
| 191 | SysPrintf("non-standard BIOS detected (%d, %08x)\n", i, psxRegs.pc); | |
| ef79bbde P |
192 | } |
| 193 | ||
| 11d23573 | 194 | // irq10 stuff, very preliminary |
| 195 | static int irq10count; | |
| 196 | ||
| 197 | static void psxScheduleIrq10One(u32 cycles_abs) { | |
| 198 | // schedule relative to frame start | |
| 199 | u32 c = cycles_abs - rcnts[3].cycleStart; | |
| 200 | assert((s32)c >= 0); | |
| 201 | psxRegs.interrupt |= 1 << PSXINT_IRQ10; | |
| 202 | psxRegs.intCycle[PSXINT_IRQ10].cycle = c; | |
| 203 | psxRegs.intCycle[PSXINT_IRQ10].sCycle = rcnts[3].cycleStart; | |
| 9a0a61d2 | 204 | set_event_raw_abs(PSXINT_IRQ10, cycles_abs); |
| 11d23573 | 205 | } |
| 206 | ||
| 207 | void irq10Interrupt() { | |
| 208 | u32 prevc = psxRegs.intCycle[PSXINT_IRQ10].sCycle | |
| 209 | + psxRegs.intCycle[PSXINT_IRQ10].cycle; | |
| 210 | ||
| 211 | psxHu32ref(0x1070) |= SWAPu32(0x400); | |
| 212 | ||
| 213 | #if 0 | |
| 214 | s32 framec = psxRegs.cycle - rcnts[3].cycleStart; | |
| 215 | printf("%d:%03d irq10 #%d %3d m=%d,%d\n", frame_counter, | |
| 216 | (s32)((float)framec / (PSXCLK / 60 / 263.0f)), | |
| 217 | irq10count, psxRegs.cycle - prevc, | |
| 218 | (psxRegs.CP0.n.SR & 0x401) != 0x401, !(psxHu32(0x1074) & 0x400)); | |
| 219 | #endif | |
| 1351a8fb | 220 | if (--irq10count > 0) { |
| 221 | u32 cycles_per_line = Config.PsxType | |
| 222 | ? PSXCLK / 50 / 314 : PSXCLK / 60 / 263; | |
| 223 | psxScheduleIrq10One(prevc + cycles_per_line); | |
| 224 | } | |
| 11d23573 | 225 | } |
| 226 | ||
| 227 | void psxScheduleIrq10(int irq_count, int x_cycles, int y) { | |
| 228 | //printf("%s %d, %d, %d\n", __func__, irq_count, x_cycles, y); | |
| 229 | u32 cycles_per_frame = Config.PsxType ? PSXCLK / 50 : PSXCLK / 60; | |
| 230 | u32 cycles = rcnts[3].cycleStart + cycles_per_frame; | |
| 231 | cycles += y * cycles_per_frame / (Config.PsxType ? 314 : 263); | |
| 232 | cycles += x_cycles; | |
| 233 | psxScheduleIrq10One(cycles); | |
| 234 | irq10count = irq_count; | |
| 235 | } |