psxcounters: don't do many spu updates
[pcsx_rearmed.git] / libpcsxcore / psxmem.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* PSX memory functions.
22*/
23
24// TODO: Implement caches & cycle penalty.
25
26#include "psxmem.h"
87e5b45f 27#include "psxmem_map.h"
ef79bbde
P
28#include "r3000a.h"
29#include "psxhw.h"
fc8145b7 30#include "debug.h"
ef79bbde
P
31#include <sys/mman.h>
32
33#ifndef MAP_ANONYMOUS
34#define MAP_ANONYMOUS MAP_ANON
35#endif
36
87e5b45f 37void *(*psxMapHook)(unsigned long addr, size_t size, int is_fixed,
38 enum psxMapTag tag);
39void (*psxUnmapHook)(void *ptr, size_t size, enum psxMapTag tag);
40
41void *psxMap(unsigned long addr, size_t size, int is_fixed,
42 enum psxMapTag tag)
43{
44 int flags = MAP_PRIVATE | MAP_ANONYMOUS;
b0dd9956 45 int tried_to_align = 0;
46 unsigned long mask;
87e5b45f 47 void *req, *ret;
48
b0dd9956 49retry:
50 if (psxMapHook != NULL) {
51 ret = psxMapHook(addr, size, is_fixed, tag);
52 goto out;
53 }
87e5b45f 54
0069615f 55 /* avoid MAP_FIXED, it overrides existing mappings.. */
56 /* if (is_fixed)
57 flags |= MAP_FIXED; */
87e5b45f 58
59 req = (void *)addr;
60 ret = mmap(req, size, PROT_READ | PROT_WRITE, flags, -1, 0);
61 if (ret == MAP_FAILED)
62 return NULL;
63
b0dd9956 64out:
65 if (addr != 0 && ret != (void *)addr) {
66 SysMessage("psxMap: warning: wanted to map @%08x, got %p\n",
67 addr, ret);
68
0069615f 69 if (is_fixed) {
70 psxUnmap(ret, size, tag);
71 return NULL;
72 }
73
b0dd9956 74 if (ret != NULL && ((addr ^ (long)ret) & 0x00ffffff)
75 && !tried_to_align)
76 {
77 psxUnmap(ret, size, tag);
78
79 // try to use similarly aligned memory instead
80 // (recompiler needs this)
81 mask = (addr - 1) & ~addr & 0x07ffffff;
82 addr = (unsigned long)(ret + mask) & ~mask;
83 tried_to_align = 1;
84 goto retry;
85 }
86 }
87e5b45f 87
88 return ret;
89}
90
91void psxUnmap(void *ptr, size_t size, enum psxMapTag tag)
92{
93 if (psxUnmapHook != NULL) {
94 psxUnmapHook(ptr, size, tag);
95 return;
96 }
97
88901dd2 98 if (ptr)
99 munmap(ptr, size);
87e5b45f 100}
101
ef79bbde
P
102s8 *psxM = NULL; // Kernel & User Memory (2 Meg)
103s8 *psxP = NULL; // Parallel Port (64K)
104s8 *psxR = NULL; // BIOS ROM (512K)
105s8 *psxH = NULL; // Scratch Pad (1K) & Hardware Registers (8K)
106
107u8 **psxMemWLUT = NULL;
108u8 **psxMemRLUT = NULL;
109
110/* Playstation Memory Map (from Playstation doc by Joshua Walker)
1110x0000_0000-0x0000_ffff Kernel (64K)
1120x0001_0000-0x001f_ffff User Memory (1.9 Meg)
113
1140x1f00_0000-0x1f00_ffff Parallel Port (64K)
115
1160x1f80_0000-0x1f80_03ff Scratch Pad (1024 bytes)
117
1180x1f80_1000-0x1f80_2fff Hardware Registers (8K)
119
1200x1fc0_0000-0x1fc7_ffff BIOS (512K)
121
1220x8000_0000-0x801f_ffff Kernel and User Memory Mirror (2 Meg) Cached
1230x9fc0_0000-0x9fc7_ffff BIOS Mirror (512K) Cached
124
1250xa000_0000-0xa01f_ffff Kernel and User Memory Mirror (2 Meg) Uncached
1260xbfc0_0000-0xbfc7_ffff BIOS Mirror (512K) Uncached
127*/
128
129int psxMemInit() {
130 int i;
131
132 psxMemRLUT = (u8 **)malloc(0x10000 * sizeof(void *));
133 psxMemWLUT = (u8 **)malloc(0x10000 * sizeof(void *));
134 memset(psxMemRLUT, 0, 0x10000 * sizeof(void *));
135 memset(psxMemWLUT, 0, 0x10000 * sizeof(void *));
136
87e5b45f 137 psxM = psxMap(0x80000000, 0x00210000, 1, MAP_TAG_RAM);
a327ad27 138#ifndef RAM_FIXED
a4874585
C
139#ifdef __BLACKBERRY_QNX__
140 if (psxM == NULL)
f23d3386 141 psxM = psxMap(0x77000000, 0x00210000, 0, MAP_TAG_RAM);
a4874585 142#else
87e5b45f 143 if (psxM == NULL)
b0dd9956 144 psxM = psxMap(0x78000000, 0x00210000, 0, MAP_TAG_RAM);
a4874585 145#endif
a327ad27 146#endif
87e5b45f 147 if (psxM == NULL) {
a327ad27 148 SysMessage(_("mapping main RAM failed"));
149 return -1;
150 }
ef79bbde
P
151
152 psxP = &psxM[0x200000];
6d760c92 153 psxH = psxMap(0x1f800000, 0x10000, 0, MAP_TAG_OTHER);
87e5b45f 154 psxR = psxMap(0x1fc00000, 0x80000, 0, MAP_TAG_OTHER);
ef79bbde
P
155
156 if (psxMemRLUT == NULL || psxMemWLUT == NULL ||
6d760c92 157 psxR == NULL || psxP == NULL || psxH == NULL) {
ef79bbde 158 SysMessage(_("Error allocating memory!"));
88901dd2 159 psxMemShutdown();
ef79bbde
P
160 return -1;
161 }
162
163// MemR
164 for (i = 0; i < 0x80; i++) psxMemRLUT[i + 0x0000] = (u8 *)&psxM[(i & 0x1f) << 16];
165
166 memcpy(psxMemRLUT + 0x8000, psxMemRLUT, 0x80 * sizeof(void *));
167 memcpy(psxMemRLUT + 0xa000, psxMemRLUT, 0x80 * sizeof(void *));
168
169 psxMemRLUT[0x1f00] = (u8 *)psxP;
170 psxMemRLUT[0x1f80] = (u8 *)psxH;
171
172 for (i = 0; i < 0x08; i++) psxMemRLUT[i + 0x1fc0] = (u8 *)&psxR[i << 16];
173
174 memcpy(psxMemRLUT + 0x9fc0, psxMemRLUT + 0x1fc0, 0x08 * sizeof(void *));
175 memcpy(psxMemRLUT + 0xbfc0, psxMemRLUT + 0x1fc0, 0x08 * sizeof(void *));
176
177// MemW
178 for (i = 0; i < 0x80; i++) psxMemWLUT[i + 0x0000] = (u8 *)&psxM[(i & 0x1f) << 16];
179
180 memcpy(psxMemWLUT + 0x8000, psxMemWLUT, 0x80 * sizeof(void *));
181 memcpy(psxMemWLUT + 0xa000, psxMemWLUT, 0x80 * sizeof(void *));
182
183 psxMemWLUT[0x1f00] = (u8 *)psxP;
184 psxMemWLUT[0x1f80] = (u8 *)psxH;
185
186 return 0;
187}
188
189void psxMemReset() {
190 FILE *f = NULL;
191 char bios[1024];
192
193 memset(psxM, 0, 0x00200000);
194 memset(psxP, 0, 0x00010000);
195
196 if (strcmp(Config.Bios, "HLE") != 0) {
197 sprintf(bios, "%s/%s", Config.BiosDir, Config.Bios);
198 f = fopen(bios, "rb");
199
200 if (f == NULL) {
201 SysMessage(_("Could not open BIOS:\"%s\". Enabling HLE Bios!\n"), bios);
202 memset(psxR, 0, 0x80000);
203 Config.HLE = TRUE;
204 } else {
205 fread(psxR, 1, 0x80000, f);
206 fclose(f);
207 Config.HLE = FALSE;
208 }
209 } else Config.HLE = TRUE;
210}
211
212void psxMemShutdown() {
88901dd2 213 psxUnmap(psxM, 0x00210000, MAP_TAG_RAM); psxM = NULL;
214 psxUnmap(psxH, 0x10000, MAP_TAG_OTHER); psxH = NULL;
215 psxUnmap(psxR, 0x80000, MAP_TAG_OTHER); psxR = NULL;
ef79bbde 216
88901dd2 217 free(psxMemRLUT); psxMemRLUT = NULL;
218 free(psxMemWLUT); psxMemWLUT = NULL;
ef79bbde
P
219}
220
221static int writeok = 1;
222
223u8 psxMemRead8(u32 mem) {
224 char *p;
225 u32 t;
226
227 t = mem >> 16;
9dd7d179 228 if (t == 0x1f80 || t == 0x9f80 || t == 0xbf80) {
229 if ((mem & 0xffff) < 0x400)
ef79bbde
P
230 return psxHu8(mem);
231 else
232 return psxHwRead8(mem);
233 } else {
234 p = (char *)(psxMemRLUT[t]);
235 if (p != NULL) {
236 if (Config.Debug)
237 DebugCheckBP((mem & 0xffffff) | 0x80000000, R1);
238 return *(u8 *)(p + (mem & 0xffff));
239 } else {
240#ifdef PSXMEM_LOG
241 PSXMEM_LOG("err lb %8.8lx\n", mem);
242#endif
243 return 0;
244 }
245 }
246}
247
248u16 psxMemRead16(u32 mem) {
249 char *p;
250 u32 t;
251
252 t = mem >> 16;
9dd7d179 253 if (t == 0x1f80 || t == 0x9f80 || t == 0xbf80) {
254 if ((mem & 0xffff) < 0x400)
ef79bbde
P
255 return psxHu16(mem);
256 else
257 return psxHwRead16(mem);
258 } else {
259 p = (char *)(psxMemRLUT[t]);
260 if (p != NULL) {
261 if (Config.Debug)
262 DebugCheckBP((mem & 0xffffff) | 0x80000000, R2);
263 return SWAPu16(*(u16 *)(p + (mem & 0xffff)));
264 } else {
265#ifdef PSXMEM_LOG
266 PSXMEM_LOG("err lh %8.8lx\n", mem);
267#endif
268 return 0;
269 }
270 }
271}
272
273u32 psxMemRead32(u32 mem) {
274 char *p;
275 u32 t;
276
277 t = mem >> 16;
9dd7d179 278 if (t == 0x1f80 || t == 0x9f80 || t == 0xbf80) {
279 if ((mem & 0xffff) < 0x400)
ef79bbde
P
280 return psxHu32(mem);
281 else
282 return psxHwRead32(mem);
283 } else {
284 p = (char *)(psxMemRLUT[t]);
285 if (p != NULL) {
286 if (Config.Debug)
287 DebugCheckBP((mem & 0xffffff) | 0x80000000, R4);
288 return SWAPu32(*(u32 *)(p + (mem & 0xffff)));
289 } else {
290#ifdef PSXMEM_LOG
291 if (writeok) { PSXMEM_LOG("err lw %8.8lx\n", mem); }
292#endif
293 return 0;
294 }
295 }
296}
297
298void psxMemWrite8(u32 mem, u8 value) {
299 char *p;
300 u32 t;
301
302 t = mem >> 16;
9dd7d179 303 if (t == 0x1f80 || t == 0x9f80 || t == 0xbf80) {
304 if ((mem & 0xffff) < 0x400)
ef79bbde
P
305 psxHu8(mem) = value;
306 else
307 psxHwWrite8(mem, value);
308 } else {
309 p = (char *)(psxMemWLUT[t]);
310 if (p != NULL) {
311 if (Config.Debug)
312 DebugCheckBP((mem & 0xffffff) | 0x80000000, W1);
313 *(u8 *)(p + (mem & 0xffff)) = value;
314#ifdef PSXREC
315 psxCpu->Clear((mem & (~3)), 1);
316#endif
317 } else {
318#ifdef PSXMEM_LOG
319 PSXMEM_LOG("err sb %8.8lx\n", mem);
320#endif
321 }
322 }
323}
324
325void psxMemWrite16(u32 mem, u16 value) {
326 char *p;
327 u32 t;
328
329 t = mem >> 16;
9dd7d179 330 if (t == 0x1f80 || t == 0x9f80 || t == 0xbf80) {
331 if ((mem & 0xffff) < 0x400)
ef79bbde
P
332 psxHu16ref(mem) = SWAPu16(value);
333 else
334 psxHwWrite16(mem, value);
335 } else {
336 p = (char *)(psxMemWLUT[t]);
337 if (p != NULL) {
338 if (Config.Debug)
339 DebugCheckBP((mem & 0xffffff) | 0x80000000, W2);
340 *(u16 *)(p + (mem & 0xffff)) = SWAPu16(value);
341#ifdef PSXREC
3e31e934 342 psxCpu->Clear((mem & (~3)), 1);
ef79bbde
P
343#endif
344 } else {
345#ifdef PSXMEM_LOG
346 PSXMEM_LOG("err sh %8.8lx\n", mem);
347#endif
348 }
349 }
350}
351
352void psxMemWrite32(u32 mem, u32 value) {
353 char *p;
354 u32 t;
355
356// if ((mem&0x1fffff) == 0x71E18 || value == 0x48088800) SysPrintf("t2fix!!\n");
357 t = mem >> 16;
9dd7d179 358 if (t == 0x1f80 || t == 0x9f80 || t == 0xbf80) {
359 if ((mem & 0xffff) < 0x400)
ef79bbde
P
360 psxHu32ref(mem) = SWAPu32(value);
361 else
362 psxHwWrite32(mem, value);
363 } else {
364 p = (char *)(psxMemWLUT[t]);
365 if (p != NULL) {
366 if (Config.Debug)
367 DebugCheckBP((mem & 0xffffff) | 0x80000000, W4);
368 *(u32 *)(p + (mem & 0xffff)) = SWAPu32(value);
369#ifdef PSXREC
370 psxCpu->Clear(mem, 1);
371#endif
372 } else {
373 if (mem != 0xfffe0130) {
374#ifdef PSXREC
375 if (!writeok)
376 psxCpu->Clear(mem, 1);
377#endif
378
379#ifdef PSXMEM_LOG
380 if (writeok) { PSXMEM_LOG("err sw %8.8lx\n", mem); }
381#endif
382 } else {
383 int i;
384
385 switch (value) {
386 case 0x800: case 0x804:
387 if (writeok == 0) break;
388 writeok = 0;
389 memset(psxMemWLUT + 0x0000, 0, 0x80 * sizeof(void *));
390 memset(psxMemWLUT + 0x8000, 0, 0x80 * sizeof(void *));
391 memset(psxMemWLUT + 0xa000, 0, 0x80 * sizeof(void *));
392 break;
393 case 0x00: case 0x1e988:
394 if (writeok == 1) break;
395 writeok = 1;
396 for (i = 0; i < 0x80; i++) psxMemWLUT[i + 0x0000] = (void *)&psxM[(i & 0x1f) << 16];
397 memcpy(psxMemWLUT + 0x8000, psxMemWLUT, 0x80 * sizeof(void *));
398 memcpy(psxMemWLUT + 0xa000, psxMemWLUT, 0x80 * sizeof(void *));
399 break;
400 default:
401#ifdef PSXMEM_LOG
402 PSXMEM_LOG("unk %8.8lx = %x\n", mem, value);
403#endif
404 break;
405 }
406 }
407 }
408 }
409}
410
411void *psxMemPointer(u32 mem) {
412 char *p;
413 u32 t;
414
415 t = mem >> 16;
9dd7d179 416 if (t == 0x1f80 || t == 0x9f80 || t == 0xbf80) {
417 if ((mem & 0xffff) < 0x400)
ef79bbde
P
418 return (void *)&psxH[mem];
419 else
420 return NULL;
421 } else {
422 p = (char *)(psxMemWLUT[t]);
423 if (p != NULL) {
424 return (void *)(p + (mem & 0xffff));
425 }
426 return NULL;
427 }
428}