psxcounters: avoid doing excessive updates
[pcsx_rearmed.git] / libpcsxcore / r3000a.c
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
29 R3000Acpu *psxCpu = NULL;
30 psxRegisters psxRegs;
31
32 int 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
50 void 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
74 void psxShutdown() {
75         psxMemShutdown();
76         psxBiosShutdown();
77
78         psxCpu->Shutdown();
79 }
80
81 void psxException(u32 code, u32 bd) {
82         if (!Config.HLE && (((PSXMu32(psxRegs.pc) >> 24) & 0xfe) == 0x4a)) {
83                 // "hokuto no ken" / "Crash Bandicot 2" ...
84                 // BIOS does not allow to return to GTE instructions
85                 // (just skips it, supposedly because it's scheduled already)
86                 // so we step over it with the interpreter
87                 extern void execI();
88                 execI();
89         }
90
91         // Set the Cause
92         psxRegs.CP0.n.Cause = code;
93
94         // Set the EPC & PC
95         if (bd) {
96 #ifdef PSXCPU_LOG
97                 PSXCPU_LOG("bd set!!!\n");
98 #endif
99                 SysPrintf("bd set!!!\n");
100                 psxRegs.CP0.n.Cause |= 0x80000000;
101                 psxRegs.CP0.n.EPC = (psxRegs.pc - 4);
102         } else
103                 psxRegs.CP0.n.EPC = (psxRegs.pc);
104
105         if (psxRegs.CP0.n.Status & 0x400000)
106                 psxRegs.pc = 0xbfc00180;
107         else
108                 psxRegs.pc = 0x80000080;
109
110         // Set the Status
111         psxRegs.CP0.n.Status = (psxRegs.CP0.n.Status &~0x3f) |
112                                                   ((psxRegs.CP0.n.Status & 0xf) << 2);
113
114         if (Config.HLE) psxBiosException();
115 }
116
117 void psxBranchTest() {
118         if ((psxRegs.cycle - psxNextsCounter) >= psxNextCounter)
119                 psxRcntUpdate();
120
121         if (psxRegs.interrupt) {
122                 if ((psxRegs.interrupt & (1 << PSXINT_SIO)) && !Config.Sio) { // sio
123                         if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_SIO].sCycle) >= psxRegs.intCycle[PSXINT_SIO].cycle) {
124                                 psxRegs.interrupt &= ~(1 << PSXINT_SIO);
125                                 sioInterrupt();
126                         }
127                 }
128                 if (psxRegs.interrupt & (1 << PSXINT_CDR)) { // cdr
129                         if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_CDR].sCycle) >= psxRegs.intCycle[PSXINT_CDR].cycle) {
130                                 psxRegs.interrupt &= ~(1 << PSXINT_CDR);
131                                 cdrInterrupt();
132                         }
133                 }
134                 if (psxRegs.interrupt & (1 << PSXINT_CDREAD)) { // cdr read
135                         if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_CDREAD].sCycle) >= psxRegs.intCycle[PSXINT_CDREAD].cycle) {
136                                 psxRegs.interrupt &= ~(1 << PSXINT_CDREAD);
137                                 cdrReadInterrupt();
138                         }
139                 }
140                 if (psxRegs.interrupt & (1 << PSXINT_GPUDMA)) { // gpu dma
141                         if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_GPUDMA].sCycle) >= psxRegs.intCycle[PSXINT_GPUDMA].cycle) {
142                                 psxRegs.interrupt &= ~(1 << PSXINT_GPUDMA);
143                                 gpuInterrupt();
144                         }
145                 }
146                 if (psxRegs.interrupt & (1 << PSXINT_MDECOUTDMA)) { // mdec out dma
147                         if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_MDECOUTDMA].sCycle) >= psxRegs.intCycle[PSXINT_MDECOUTDMA].cycle) {
148                                 psxRegs.interrupt &= ~(1 << PSXINT_MDECOUTDMA);
149                                 mdec1Interrupt();
150                         }
151                 }
152                 if (psxRegs.interrupt & (1 << PSXINT_SPUDMA)) { // spu dma
153                         if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_SPUDMA].sCycle) >= psxRegs.intCycle[PSXINT_SPUDMA].cycle) {
154                                 psxRegs.interrupt &= ~(1 << PSXINT_SPUDMA);
155                                 spuInterrupt();
156                         }
157                 }
158                 if (psxRegs.interrupt & (1 << PSXINT_MDECINDMA)) { // mdec in
159                         if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_MDECINDMA].sCycle) >= psxRegs.intCycle[PSXINT_MDECINDMA].cycle) {
160                                 psxRegs.interrupt &= ~(1 << PSXINT_MDECINDMA);
161                                 mdec0Interrupt();
162                         }
163                 }
164                 if (psxRegs.interrupt & (1 << PSXINT_GPUOTCDMA)) { // gpu otc
165                         if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_GPUOTCDMA].sCycle) >= psxRegs.intCycle[PSXINT_GPUOTCDMA].cycle) {
166                                 psxRegs.interrupt &= ~(1 << PSXINT_GPUOTCDMA);
167                                 gpuotcInterrupt();
168                         }
169                 }
170                 if (psxRegs.interrupt & (1 << PSXINT_CDRDMA)) { // cdrom
171                         if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_CDRDMA].sCycle) >= psxRegs.intCycle[PSXINT_CDRDMA].cycle) {
172                                 psxRegs.interrupt &= ~(1 << PSXINT_CDRDMA);
173                                 cdrDmaInterrupt();
174                         }
175                 }
176                 if (psxRegs.interrupt & (1 << PSXINT_CDRPLAY)) { // cdr play timing
177                         if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_CDRPLAY].sCycle) >= psxRegs.intCycle[PSXINT_CDRPLAY].cycle) {
178                                 psxRegs.interrupt &= ~(1 << PSXINT_CDRPLAY);
179                                 cdrPlayInterrupt();
180                         }
181                 }
182                 if (psxRegs.interrupt & (1 << PSXINT_CDRLID)) { // cdr lid states
183                         if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_CDRLID].sCycle) >= psxRegs.intCycle[PSXINT_CDRLID].cycle) {
184                                 psxRegs.interrupt &= ~(1 << PSXINT_CDRLID);
185                                 cdrLidSeekInterrupt();
186                         }
187                 }
188         }
189
190         if (psxHu32(0x1070) & psxHu32(0x1074)) {
191                 if ((psxRegs.CP0.n.Status & 0x401) == 0x401) {
192 #ifdef PSXCPU_LOG
193                         PSXCPU_LOG("Interrupt: %x %x\n", psxHu32(0x1070), psxHu32(0x1074));
194 #endif
195 //                      SysPrintf("Interrupt (%x): %x %x\n", psxRegs.cycle, psxHu32(0x1070), psxHu32(0x1074));
196                         psxException(0x400, 0);
197                 }
198         }
199 }
200
201 void psxJumpTest() {
202         if (!Config.HLE && Config.PsxOut) {
203                 u32 call = psxRegs.GPR.n.t1 & 0xff;
204                 switch (psxRegs.pc & 0x1fffff) {
205                         case 0xa0:
206 #ifdef PSXBIOS_LOG
207                                 if (call != 0x28 && call != 0xe) {
208                                         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); }
209 #endif
210                                 if (biosA0[call])
211                                         biosA0[call]();
212                                 break;
213                         case 0xb0:
214 #ifdef PSXBIOS_LOG
215                                 if (call != 0x17 && call != 0xb) {
216                                         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); }
217 #endif
218                                 if (biosB0[call])
219                                         biosB0[call]();
220                                 break;
221                         case 0xc0:
222 #ifdef PSXBIOS_LOG
223                                 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);
224 #endif
225                                 if (biosC0[call])
226                                         biosC0[call]();
227                                 break;
228                 }
229         }
230 }
231
232 void psxExecuteBios() {
233         while (psxRegs.pc != 0x80030000)
234                 psxCpu->ExecuteBlock();
235 }
236