cdrom: do a NULL check, some plugins may return that
[pcsx_rearmed.git] / libpcsxcore / r3000a.c
... / ...
CommitLineData
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"
28
29R3000Acpu *psxCpu = NULL;
30psxRegisters psxRegs;
31
32int psxInit() {
33 SysPrintf(_("Running PCSX Version %s (%s).\n"), PACKAGE_VERSION, __DATE__);
34
35#ifdef PSXREC
36 if (Config.Cpu == CPU_INTERPRETER) {
37 psxCpu = &psxInt;
38 } else psxCpu = &psxRec;
39#else
40 psxCpu = &psxInt;
41#endif
42
43 Log = 0;
44
45 if (psxMemInit() == -1) return -1;
46
47 return psxCpu->Init();
48}
49
50void psxReset() {
51 psxMemReset();
52
53 memset(&psxRegs, 0, sizeof(psxRegs));
54
55 psxRegs.pc = 0xbfc00000; // Start in bootstrap
56
57 psxRegs.CP0.r[12] = 0x10900000; // COP0 enabled | BEV = 1 | TS = 1
58 psxRegs.CP0.r[15] = 0x00000002; // PRevID = Revision ID, same as R3000A
59
60 psxCpu->Reset();
61
62 psxHwReset();
63 psxBiosInit();
64
65 if (!Config.HLE)
66 psxExecuteBios();
67
68#ifdef EMU_LOG
69 EMU_LOG("*BIOS END*\n");
70#endif
71 Log = 0;
72}
73
74void psxShutdown() {
75 psxMemShutdown();
76 psxBiosShutdown();
77
78 psxCpu->Shutdown();
79}
80
81void psxException(u32 code, u32 bd) {
82 // Set the Cause
83 psxRegs.CP0.n.Cause = code;
84
85 // Set the EPC & PC
86 if (bd) {
87#ifdef PSXCPU_LOG
88 PSXCPU_LOG("bd set!!!\n");
89#endif
90 SysPrintf("bd set!!!\n");
91 psxRegs.CP0.n.Cause |= 0x80000000;
92 psxRegs.CP0.n.EPC = (psxRegs.pc - 4);
93 } else
94 psxRegs.CP0.n.EPC = (psxRegs.pc);
95
96 if (psxRegs.CP0.n.Status & 0x400000)
97 psxRegs.pc = 0xbfc00180;
98 else
99 psxRegs.pc = 0x80000080;
100
101 // Set the Status
102 psxRegs.CP0.n.Status = (psxRegs.CP0.n.Status &~0x3f) |
103 ((psxRegs.CP0.n.Status & 0xf) << 2);
104
105 if (!Config.HLE && (((PSXMu32(psxRegs.CP0.n.EPC) >> 24) & 0xfe) == 0x4a)) {
106 // "hokuto no ken" / "Crash Bandicot 2" ... fix
107 PSXMu32ref(psxRegs.CP0.n.EPC)&= SWAPu32(~0x02000000);
108 }
109
110 if (Config.HLE) psxBiosException();
111}
112
113void psxBranchTest() {
114 if ((psxRegs.cycle - psxNextsCounter) >= psxNextCounter)
115 psxRcntUpdate();
116
117 if (psxRegs.interrupt) {
118 if ((psxRegs.interrupt & (1 << PSXINT_SIO)) && !Config.Sio) { // sio
119 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_SIO].sCycle) >= psxRegs.intCycle[PSXINT_SIO].cycle) {
120 psxRegs.interrupt &= ~(1 << PSXINT_SIO);
121 sioInterrupt();
122 }
123 }
124 if (psxRegs.interrupt & (1 << PSXINT_CDR)) { // cdr
125 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_CDR].sCycle) >= psxRegs.intCycle[PSXINT_CDR].cycle) {
126 psxRegs.interrupt &= ~(1 << PSXINT_CDR);
127 cdrInterrupt();
128 }
129 }
130 if (psxRegs.interrupt & (1 << PSXINT_CDREAD)) { // cdr read
131 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_CDREAD].sCycle) >= psxRegs.intCycle[PSXINT_CDREAD].cycle) {
132 psxRegs.interrupt &= ~(1 << PSXINT_CDREAD);
133 cdrReadInterrupt();
134 }
135 }
136 if (psxRegs.interrupt & (1 << PSXINT_GPUDMA)) { // gpu dma
137 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_GPUDMA].sCycle) >= psxRegs.intCycle[PSXINT_GPUDMA].cycle) {
138 psxRegs.interrupt &= ~(1 << PSXINT_GPUDMA);
139 gpuInterrupt();
140 }
141 }
142 if (psxRegs.interrupt & (1 << PSXINT_MDECOUTDMA)) { // mdec out dma
143 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_MDECOUTDMA].sCycle) >= psxRegs.intCycle[PSXINT_MDECOUTDMA].cycle) {
144 psxRegs.interrupt &= ~(1 << PSXINT_MDECOUTDMA);
145 mdec1Interrupt();
146 }
147 }
148 if (psxRegs.interrupt & (1 << PSXINT_SPUDMA)) { // spu dma
149 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_SPUDMA].sCycle) >= psxRegs.intCycle[PSXINT_SPUDMA].cycle) {
150 psxRegs.interrupt &= ~(1 << PSXINT_SPUDMA);
151 spuInterrupt();
152 }
153 }
154 if (psxRegs.interrupt & (1 << PSXINT_MDECINDMA)) { // mdec in
155 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_MDECINDMA].sCycle) >= psxRegs.intCycle[PSXINT_MDECINDMA].cycle) {
156 psxRegs.interrupt &= ~(1 << PSXINT_MDECINDMA);
157 mdec0Interrupt();
158 }
159 }
160 if (psxRegs.interrupt & (1 << PSXINT_GPUOTCDMA)) { // gpu otc
161 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_GPUOTCDMA].sCycle) >= psxRegs.intCycle[PSXINT_GPUOTCDMA].cycle) {
162 psxRegs.interrupt &= ~(1 << PSXINT_GPUOTCDMA);
163 gpuotcInterrupt();
164 }
165 }
166 if (psxRegs.interrupt & (1 << PSXINT_CDRDMA)) { // cdrom
167 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_CDRDMA].sCycle) >= psxRegs.intCycle[PSXINT_CDRDMA].cycle) {
168 psxRegs.interrupt &= ~(1 << PSXINT_CDRDMA);
169 cdrDmaInterrupt();
170 }
171 }
172 if (psxRegs.interrupt & (1 << PSXINT_CDRPLAY)) { // cdr play timing
173 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_CDRPLAY].sCycle) >= psxRegs.intCycle[PSXINT_CDRPLAY].cycle) {
174 psxRegs.interrupt &= ~(1 << PSXINT_CDRPLAY);
175 cdrPlayInterrupt();
176 }
177 }
178 if (psxRegs.interrupt & (1 << PSXINT_CDRLID)) { // cdr lid states
179 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_CDRLID].sCycle) >= psxRegs.intCycle[PSXINT_CDRLID].cycle) {
180 psxRegs.interrupt &= ~(1 << PSXINT_CDRLID);
181 cdrLidSeekInterrupt();
182 }
183 }
184 }
185
186 if (psxHu32(0x1070) & psxHu32(0x1074)) {
187 if ((psxRegs.CP0.n.Status & 0x401) == 0x401) {
188#ifdef PSXCPU_LOG
189 PSXCPU_LOG("Interrupt: %x %x\n", psxHu32(0x1070), psxHu32(0x1074));
190#endif
191// SysPrintf("Interrupt (%x): %x %x\n", psxRegs.cycle, psxHu32(0x1070), psxHu32(0x1074));
192 psxException(0x400, 0);
193 }
194 }
195}
196
197void psxJumpTest() {
198 if (!Config.HLE && Config.PsxOut) {
199 u32 call = psxRegs.GPR.n.t1 & 0xff;
200 switch (psxRegs.pc & 0x1fffff) {
201 case 0xa0:
202#ifdef PSXBIOS_LOG
203 if (call != 0x28 && call != 0xe) {
204 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); }
205#endif
206 if (biosA0[call])
207 biosA0[call]();
208 break;
209 case 0xb0:
210#ifdef PSXBIOS_LOG
211 if (call != 0x17 && call != 0xb) {
212 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); }
213#endif
214 if (biosB0[call])
215 biosB0[call]();
216 break;
217 case 0xc0:
218#ifdef PSXBIOS_LOG
219 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);
220#endif
221 if (biosC0[call])
222 biosC0[call]();
223 break;
224 }
225 }
226}
227
228void psxExecuteBios() {
229 while (psxRegs.pc != 0x80030000)
230 psxCpu->ExecuteBlock();
231}
232