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