frontend: remove bad configs
[pcsx_rearmed.git] / libpcsxcore / r3000a.c
CommitLineData
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"
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 psxCpu->Reset();
52
53 psxMemReset();
54
55 memset(&psxRegs, 0, sizeof(psxRegs));
56
57 psxRegs.pc = 0xbfc00000; // Start in bootstrap
58
59 psxRegs.CP0.r[12] = 0x10900000; // COP0 enabled | BEV = 1 | TS = 1
60 psxRegs.CP0.r[15] = 0x00000002; // PRevID = Revision ID, same as R3000A
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) {
d28b54b1 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);
ef79bbde
P
121 sioInterrupt();
122 }
123 }
d28b54b1 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);
ef79bbde
P
127 cdrInterrupt();
128 }
129 }
d28b54b1 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);
ef79bbde
P
133 cdrReadInterrupt();
134 }
135 }
d28b54b1 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);
ef79bbde
P
139 gpuInterrupt();
140 }
141 }
d28b54b1 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);
ef79bbde
P
145 mdec1Interrupt();
146 }
147 }
d28b54b1 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);
ef79bbde
P
151 spuInterrupt();
152 }
153 }
528ad661 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 }
57a757ce 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 }
9f8b032d 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_CDRLID)) { // cdr lid states
173 if ((psxRegs.cycle - psxRegs.intCycle[PSXINT_CDRLID].sCycle) >= psxRegs.intCycle[PSXINT_CDRLID].cycle) {
174 psxRegs.interrupt &= ~(1 << PSXINT_CDRLID);
175 cdrLidSeekInterrupt();
176 }
177 }
ef79bbde
P
178 }
179
180 if (psxHu32(0x1070) & psxHu32(0x1074)) {
181 if ((psxRegs.CP0.n.Status & 0x401) == 0x401) {
182#ifdef PSXCPU_LOG
183 PSXCPU_LOG("Interrupt: %x %x\n", psxHu32(0x1070), psxHu32(0x1074));
184#endif
185// SysPrintf("Interrupt (%x): %x %x\n", psxRegs.cycle, psxHu32(0x1070), psxHu32(0x1074));
186 psxException(0x400, 0);
187 }
188 }
189}
190
191void psxJumpTest() {
192 if (!Config.HLE && Config.PsxOut) {
193 u32 call = psxRegs.GPR.n.t1 & 0xff;
194 switch (psxRegs.pc & 0x1fffff) {
195 case 0xa0:
196#ifdef PSXBIOS_LOG
197 if (call != 0x28 && call != 0xe) {
198 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); }
199#endif
200 if (biosA0[call])
201 biosA0[call]();
202 break;
203 case 0xb0:
204#ifdef PSXBIOS_LOG
205 if (call != 0x17 && call != 0xb) {
206 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); }
207#endif
208 if (biosB0[call])
209 biosB0[call]();
210 break;
211 case 0xc0:
212#ifdef PSXBIOS_LOG
213 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);
214#endif
215 if (biosC0[call])
216 biosC0[call]();
217 break;
218 }
219 }
220}
221
222void psxExecuteBios() {
223 while (psxRegs.pc != 0x80030000)
224 psxCpu->ExecuteBlock();
225}
226