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