git subrepo pull --force deps/lightrec
[pcsx_rearmed.git] / libpcsxcore / lightrec / plugin.c
... / ...
CommitLineData
1#include <lightrec.h>
2#include <errno.h>
3#include <stdbool.h>
4#include <stdio.h>
5#include <unistd.h>
6#include <signal.h>
7#include <assert.h>
8
9#include "../cdrom.h"
10#include "../gpu.h"
11#include "../gte.h"
12#include "../mdec.h"
13#include "../psxdma.h"
14#include "../psxhw.h"
15#include "../psxmem.h"
16#include "../r3000a.h"
17#include "../psxinterpreter.h"
18#include "../new_dynarec/events.h"
19
20#include "../frontend/main.h"
21
22#include "mem.h"
23#include "plugin.h"
24
25#if (defined(__arm__) || defined(__aarch64__)) && !defined(ALLOW_LIGHTREC_ON_ARM)
26#error "Lightrec should not be used on ARM (please specify DYNAREC=ari64 to make)"
27#endif
28
29#define ARRAY_SIZE(x) (sizeof(x) ? sizeof(x) / sizeof((x)[0]) : 0)
30
31#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
32# define LE32TOH(x) __builtin_bswap32(x)
33# define HTOLE32(x) __builtin_bswap32(x)
34# define LE16TOH(x) __builtin_bswap16(x)
35# define HTOLE16(x) __builtin_bswap16(x)
36#else
37# define LE32TOH(x) (x)
38# define HTOLE32(x) (x)
39# define LE16TOH(x) (x)
40# define HTOLE16(x) (x)
41#endif
42
43#ifdef __GNUC__
44# define likely(x) __builtin_expect(!!(x),1)
45# define unlikely(x) __builtin_expect(!!(x),0)
46#else
47# define likely(x) (x)
48# define unlikely(x) (x)
49#endif
50
51psxRegisters psxRegs;
52Rcnt rcnts[4];
53
54void* code_buffer;
55
56static struct lightrec_state *lightrec_state;
57
58static char *name = "retroarch.exe";
59
60static bool use_lightrec_interpreter;
61static bool use_pcsx_interpreter;
62static bool block_stepping;
63static u32 cycle_mult_to_pcsx; // 22.10 fractional
64static u32 cycle_mult_from_pcsx;
65
66enum my_cp2_opcodes {
67 OP_CP2_RTPS = 0x01,
68 OP_CP2_NCLIP = 0x06,
69 OP_CP2_OP = 0x0c,
70 OP_CP2_DPCS = 0x10,
71 OP_CP2_INTPL = 0x11,
72 OP_CP2_MVMVA = 0x12,
73 OP_CP2_NCDS = 0x13,
74 OP_CP2_CDP = 0x14,
75 OP_CP2_NCDT = 0x16,
76 OP_CP2_NCCS = 0x1b,
77 OP_CP2_CC = 0x1c,
78 OP_CP2_NCS = 0x1e,
79 OP_CP2_NCT = 0x20,
80 OP_CP2_SQR = 0x28,
81 OP_CP2_DCPL = 0x29,
82 OP_CP2_DPCT = 0x2a,
83 OP_CP2_AVSZ3 = 0x2d,
84 OP_CP2_AVSZ4 = 0x2e,
85 OP_CP2_RTPT = 0x30,
86 OP_CP2_GPF = 0x3d,
87 OP_CP2_GPL = 0x3e,
88 OP_CP2_NCCT = 0x3f,
89};
90
91static void (*cp2_ops[])(struct psxCP2Regs *) = {
92 [OP_CP2_RTPS] = gteRTPS,
93 [OP_CP2_RTPS] = gteRTPS,
94 [OP_CP2_NCLIP] = gteNCLIP,
95 [OP_CP2_OP] = gteOP,
96 [OP_CP2_DPCS] = gteDPCS,
97 [OP_CP2_INTPL] = gteINTPL,
98 [OP_CP2_MVMVA] = gteMVMVA,
99 [OP_CP2_NCDS] = gteNCDS,
100 [OP_CP2_CDP] = gteCDP,
101 [OP_CP2_NCDT] = gteNCDT,
102 [OP_CP2_NCCS] = gteNCCS,
103 [OP_CP2_CC] = gteCC,
104 [OP_CP2_NCS] = gteNCS,
105 [OP_CP2_NCT] = gteNCT,
106 [OP_CP2_SQR] = gteSQR,
107 [OP_CP2_DCPL] = gteDCPL,
108 [OP_CP2_DPCT] = gteDPCT,
109 [OP_CP2_AVSZ3] = gteAVSZ3,
110 [OP_CP2_AVSZ4] = gteAVSZ4,
111 [OP_CP2_RTPT] = gteRTPT,
112 [OP_CP2_GPF] = gteGPF,
113 [OP_CP2_GPL] = gteGPL,
114 [OP_CP2_NCCT] = gteNCCT,
115};
116
117static char cache_buf[64 * 1024];
118
119static void cop2_op(struct lightrec_state *state, u32 func)
120{
121 struct lightrec_registers *regs = lightrec_get_registers(state);
122
123 psxRegs.code = func;
124
125 if (unlikely(!cp2_ops[func & 0x3f])) {
126 fprintf(stderr, "Invalid CP2 function %u\n", func);
127 } else {
128 /* This works because regs->cp2c comes right after regs->cp2d,
129 * so it can be cast to a pcsxCP2Regs pointer. */
130 cp2_ops[func & 0x3f]((psxCP2Regs *) regs->cp2d);
131 }
132}
133
134static bool has_interrupt(void)
135{
136 struct lightrec_registers *regs = lightrec_get_registers(lightrec_state);
137
138 return ((psxHu32(0x1070) & psxHu32(0x1074)) &&
139 (regs->cp0[12] & 0x401) == 0x401) ||
140 (regs->cp0[12] & regs->cp0[13] & 0x0300);
141}
142
143static u32 cycles_pcsx_to_lightrec(u32 c)
144{
145 assert((u64)c * cycle_mult_from_pcsx <= (u32)-1);
146 return c * cycle_mult_from_pcsx >> 10;
147}
148
149static void lightrec_tansition_to_pcsx(struct lightrec_state *state)
150{
151 psxRegs.cycle += lightrec_current_cycle_count(state) * cycle_mult_to_pcsx >> 10;
152 lightrec_reset_cycle_count(state, 0);
153}
154
155static void lightrec_tansition_from_pcsx(struct lightrec_state *state)
156{
157 s32 cycles_left = next_interupt - psxRegs.cycle;
158
159 if (block_stepping || cycles_left <= 0 || has_interrupt())
160 lightrec_set_exit_flags(state, LIGHTREC_EXIT_CHECK_INTERRUPT);
161 else {
162 lightrec_set_target_cycle_count(state,
163 cycles_pcsx_to_lightrec(cycles_left));
164 }
165}
166
167static void hw_write_byte(struct lightrec_state *state,
168 u32 op, void *host, u32 mem, u8 val)
169{
170 lightrec_tansition_to_pcsx(state);
171
172 psxHwWrite8(mem, val);
173
174 lightrec_tansition_from_pcsx(state);
175}
176
177static void hw_write_half(struct lightrec_state *state,
178 u32 op, void *host, u32 mem, u16 val)
179{
180 lightrec_tansition_to_pcsx(state);
181
182 psxHwWrite16(mem, val);
183
184 lightrec_tansition_from_pcsx(state);
185}
186
187static void hw_write_word(struct lightrec_state *state,
188 u32 op, void *host, u32 mem, u32 val)
189{
190 lightrec_tansition_to_pcsx(state);
191
192 psxHwWrite32(mem, val);
193
194 lightrec_tansition_from_pcsx(state);
195}
196
197static u8 hw_read_byte(struct lightrec_state *state, u32 op, void *host, u32 mem)
198{
199 u8 val;
200
201 lightrec_tansition_to_pcsx(state);
202
203 val = psxHwRead8(mem);
204
205 lightrec_tansition_from_pcsx(state);
206
207 return val;
208}
209
210static u16 hw_read_half(struct lightrec_state *state,
211 u32 op, void *host, u32 mem)
212{
213 u16 val;
214
215 lightrec_tansition_to_pcsx(state);
216
217 val = psxHwRead16(mem);
218
219 lightrec_tansition_from_pcsx(state);
220
221 return val;
222}
223
224static u32 hw_read_word(struct lightrec_state *state,
225 u32 op, void *host, u32 mem)
226{
227 u32 val;
228
229 lightrec_tansition_to_pcsx(state);
230
231 val = psxHwRead32(mem);
232
233 lightrec_tansition_from_pcsx(state);
234
235 return val;
236}
237
238static struct lightrec_mem_map_ops hw_regs_ops = {
239 .sb = hw_write_byte,
240 .sh = hw_write_half,
241 .sw = hw_write_word,
242 .lb = hw_read_byte,
243 .lh = hw_read_half,
244 .lw = hw_read_word,
245};
246
247static u32 cache_ctrl;
248
249static void cache_ctrl_write_word(struct lightrec_state *state,
250 u32 op, void *host, u32 mem, u32 val)
251{
252 cache_ctrl = val;
253}
254
255static u32 cache_ctrl_read_word(struct lightrec_state *state,
256 u32 op, void *host, u32 mem)
257{
258 return cache_ctrl;
259}
260
261static struct lightrec_mem_map_ops cache_ctrl_ops = {
262 .sw = cache_ctrl_write_word,
263 .lw = cache_ctrl_read_word,
264};
265
266static struct lightrec_mem_map lightrec_map[] = {
267 [PSX_MAP_KERNEL_USER_RAM] = {
268 /* Kernel and user memory */
269 .pc = 0x00000000,
270 .length = 0x200000,
271 },
272 [PSX_MAP_BIOS] = {
273 /* BIOS */
274 .pc = 0x1fc00000,
275 .length = 0x80000,
276 },
277 [PSX_MAP_SCRATCH_PAD] = {
278 /* Scratch pad */
279 .pc = 0x1f800000,
280 .length = 0x400,
281 },
282 [PSX_MAP_PARALLEL_PORT] = {
283 /* Parallel port */
284 .pc = 0x1f000000,
285 .length = 0x10000,
286 },
287 [PSX_MAP_HW_REGISTERS] = {
288 /* Hardware registers */
289 .pc = 0x1f801000,
290 .length = 0x2000,
291 .ops = &hw_regs_ops,
292 },
293 [PSX_MAP_CACHE_CONTROL] = {
294 /* Cache control */
295 .pc = 0x5ffe0130,
296 .length = 4,
297 .ops = &cache_ctrl_ops,
298 },
299
300 /* Mirrors of the kernel/user memory */
301 [PSX_MAP_MIRROR1] = {
302 .pc = 0x00200000,
303 .length = 0x200000,
304 .mirror_of = &lightrec_map[PSX_MAP_KERNEL_USER_RAM],
305 },
306 [PSX_MAP_MIRROR2] = {
307 .pc = 0x00400000,
308 .length = 0x200000,
309 .mirror_of = &lightrec_map[PSX_MAP_KERNEL_USER_RAM],
310 },
311 [PSX_MAP_MIRROR3] = {
312 .pc = 0x00600000,
313 .length = 0x200000,
314 .mirror_of = &lightrec_map[PSX_MAP_KERNEL_USER_RAM],
315 },
316 [PSX_MAP_CODE_BUFFER] = {
317 .length = CODE_BUFFER_SIZE,
318 },
319};
320
321static void lightrec_enable_ram(struct lightrec_state *state, bool enable)
322{
323 if (enable)
324 memcpy(psxM, cache_buf, sizeof(cache_buf));
325 else
326 memcpy(cache_buf, psxM, sizeof(cache_buf));
327}
328
329static bool lightrec_can_hw_direct(u32 kaddr, bool is_write, u8 size)
330{
331 switch (size) {
332 case 8:
333 switch (kaddr) {
334 case 0x1f801040:
335 case 0x1f801050:
336 case 0x1f801800:
337 case 0x1f801801:
338 case 0x1f801802:
339 case 0x1f801803:
340 return false;
341 default:
342 return true;
343 }
344 case 16:
345 switch (kaddr) {
346 case 0x1f801040:
347 case 0x1f801044:
348 case 0x1f801048:
349 case 0x1f80104a:
350 case 0x1f80104e:
351 case 0x1f801050:
352 case 0x1f801054:
353 case 0x1f80105a:
354 case 0x1f80105e:
355 case 0x1f801100:
356 case 0x1f801104:
357 case 0x1f801108:
358 case 0x1f801110:
359 case 0x1f801114:
360 case 0x1f801118:
361 case 0x1f801120:
362 case 0x1f801124:
363 case 0x1f801128:
364 return false;
365 case 0x1f801070:
366 case 0x1f801074:
367 return !is_write;
368 default:
369 return kaddr < 0x1f801c00 || kaddr >= 0x1f801e00;
370 }
371 default:
372 switch (kaddr) {
373 case 0x1f801040:
374 case 0x1f801050:
375 case 0x1f801100:
376 case 0x1f801104:
377 case 0x1f801108:
378 case 0x1f801110:
379 case 0x1f801114:
380 case 0x1f801118:
381 case 0x1f801120:
382 case 0x1f801124:
383 case 0x1f801128:
384 case 0x1f801810:
385 case 0x1f801814:
386 case 0x1f801820:
387 case 0x1f801824:
388 return false;
389 case 0x1f801070:
390 case 0x1f801074:
391 case 0x1f801088:
392 case 0x1f801098:
393 case 0x1f8010a8:
394 case 0x1f8010b8:
395 case 0x1f8010c8:
396 case 0x1f8010e8:
397 case 0x1f8010f4:
398 return !is_write;
399 default:
400 return !is_write || kaddr < 0x1f801c00 || kaddr >= 0x1f801e00;
401 }
402 }
403}
404
405#if defined(HW_DOL) || defined(HW_RVL)
406static void lightrec_code_inv(void *ptr, uint32_t len)
407{
408 extern void DCFlushRange(void *ptr, u32 len);
409 extern void ICInvalidateRange(void *ptr, u32 len);
410
411 DCFlushRange(ptr, len);
412 ICInvalidateRange(ptr, len);
413}
414#elif defined(HW_WUP)
415static void lightrec_code_inv(void *ptr, uint32_t len)
416{
417 wiiu_clear_cache(ptr, (void *)((uintptr_t)ptr + len));
418}
419#endif
420
421static const struct lightrec_ops lightrec_ops = {
422 .cop2_op = cop2_op,
423 .enable_ram = lightrec_enable_ram,
424 .hw_direct = lightrec_can_hw_direct,
425#if defined(HW_DOL) || defined(HW_RVL) || defined(HW_WUP)
426 .code_inv = lightrec_code_inv,
427#endif
428};
429
430static int lightrec_plugin_init(void)
431{
432 lightrec_map[PSX_MAP_KERNEL_USER_RAM].address = psxM;
433 lightrec_map[PSX_MAP_BIOS].address = psxR;
434 lightrec_map[PSX_MAP_SCRATCH_PAD].address = psxH;
435 lightrec_map[PSX_MAP_HW_REGISTERS].address = psxH + 0x1000;
436 lightrec_map[PSX_MAP_PARALLEL_PORT].address = psxP;
437
438 if (!LIGHTREC_CUSTOM_MAP) {
439 code_buffer = malloc(CODE_BUFFER_SIZE);
440 if (!code_buffer)
441 return -ENOMEM;
442 }
443
444 if (LIGHTREC_CUSTOM_MAP) {
445 lightrec_map[PSX_MAP_MIRROR1].address = psxM + 0x200000;
446 lightrec_map[PSX_MAP_MIRROR2].address = psxM + 0x400000;
447 lightrec_map[PSX_MAP_MIRROR3].address = psxM + 0x600000;
448 }
449
450 lightrec_map[PSX_MAP_CODE_BUFFER].address = code_buffer;
451
452 use_lightrec_interpreter = !!getenv("LIGHTREC_INTERPRETER");
453
454 lightrec_state = lightrec_init(name,
455 lightrec_map, ARRAY_SIZE(lightrec_map),
456 &lightrec_ops);
457
458 // fprintf(stderr, "M=0x%lx, P=0x%lx, R=0x%lx, H=0x%lx\n",
459 // (uintptr_t) psxM,
460 // (uintptr_t) psxP,
461 // (uintptr_t) psxR,
462 // (uintptr_t) psxH);
463
464#ifndef _WIN32
465 signal(SIGPIPE, exit);
466#endif
467 return 0;
468}
469
470static void lightrec_plugin_execute_internal(bool block_only)
471{
472 struct lightrec_registers *regs;
473 u32 flags, cycles_pcsx;
474
475 regs = lightrec_get_registers(lightrec_state);
476 gen_interupt((psxCP0Regs *)regs->cp0);
477 cycles_pcsx = next_interupt - psxRegs.cycle;
478 assert((s32)cycles_pcsx > 0);
479
480 // step during early boot so that 0x80030000 fastboot hack works
481 block_stepping = block_only;
482 if (block_only)
483 cycles_pcsx = 0;
484
485 if (use_pcsx_interpreter) {
486 intExecuteBlock(0);
487 } else {
488 u32 cycles_lightrec = cycles_pcsx_to_lightrec(cycles_pcsx);
489 if (unlikely(use_lightrec_interpreter)) {
490 psxRegs.pc = lightrec_run_interpreter(lightrec_state,
491 psxRegs.pc,
492 cycles_lightrec);
493 } else {
494 psxRegs.pc = lightrec_execute(lightrec_state,
495 psxRegs.pc, cycles_lightrec);
496 }
497
498 lightrec_tansition_to_pcsx(lightrec_state);
499
500 flags = lightrec_exit_flags(lightrec_state);
501
502 if (flags & LIGHTREC_EXIT_SEGFAULT) {
503 fprintf(stderr, "Exiting at cycle 0x%08x\n",
504 psxRegs.cycle);
505 exit(1);
506 }
507
508 if (flags & LIGHTREC_EXIT_SYSCALL)
509 psxException(0x20, 0, (psxCP0Regs *)regs->cp0);
510 }
511
512 if ((regs->cp0[13] & regs->cp0[12] & 0x300) && (regs->cp0[12] & 0x1)) {
513 /* Handle software interrupts */
514 regs->cp0[13] &= ~0x7c;
515 psxException(regs->cp0[13], 0, (psxCP0Regs *)regs->cp0);
516 }
517}
518
519static void lightrec_plugin_execute(void)
520{
521 extern int stop;
522
523 while (!stop)
524 lightrec_plugin_execute_internal(false);
525}
526
527static void lightrec_plugin_execute_block(enum blockExecCaller caller)
528{
529 lightrec_plugin_execute_internal(true);
530}
531
532static void lightrec_plugin_clear(u32 addr, u32 size)
533{
534 if (addr == 0 && size == UINT32_MAX)
535 lightrec_invalidate_all(lightrec_state);
536 else
537 /* size * 4: PCSX uses DMA units */
538 lightrec_invalidate(lightrec_state, addr, size * 4);
539}
540
541static void lightrec_plugin_sync_regs_to_pcsx(void);
542static void lightrec_plugin_sync_regs_from_pcsx(void);
543
544static void lightrec_plugin_notify(enum R3000Anote note, void *data)
545{
546 switch (note)
547 {
548 case R3000ACPU_NOTIFY_CACHE_ISOLATED:
549 case R3000ACPU_NOTIFY_CACHE_UNISOLATED:
550 /* not used, lightrec calls lightrec_enable_ram() instead */
551 break;
552 case R3000ACPU_NOTIFY_BEFORE_SAVE:
553 lightrec_plugin_sync_regs_to_pcsx();
554 break;
555 case R3000ACPU_NOTIFY_AFTER_LOAD:
556 lightrec_plugin_sync_regs_from_pcsx();
557 break;
558 }
559}
560
561static void lightrec_plugin_apply_config()
562{
563 u32 cycle_mult = Config.cycle_multiplier_override && Config.cycle_multiplier == CYCLE_MULT_DEFAULT
564 ? Config.cycle_multiplier_override : Config.cycle_multiplier;
565 assert(cycle_mult);
566 cycle_mult_to_pcsx = (cycle_mult * 1024 + 199) / 200;
567 cycle_mult_from_pcsx = (200 * 1024 + cycle_mult/2) / cycle_mult;
568}
569
570static void lightrec_plugin_shutdown(void)
571{
572 lightrec_destroy(lightrec_state);
573
574 if (!LIGHTREC_CUSTOM_MAP)
575 free(code_buffer);
576}
577
578static void lightrec_plugin_reset(void)
579{
580 struct lightrec_registers *regs;
581
582 regs = lightrec_get_registers(lightrec_state);
583
584 /* Invalidate all blocks */
585 lightrec_invalidate_all(lightrec_state);
586
587 /* Reset registers */
588 memset(regs, 0, sizeof(*regs));
589
590 regs->cp0[12] = 0x10900000; // COP0 enabled | BEV = 1 | TS = 1
591 regs->cp0[15] = 0x00000002; // PRevID = Revision ID, same as R3000A
592}
593
594static void lightrec_plugin_sync_regs_from_pcsx(void)
595{
596 struct lightrec_registers *regs;
597
598 regs = lightrec_get_registers(lightrec_state);
599 memcpy(regs->cp2d, &psxRegs.CP2, sizeof(regs->cp2d) + sizeof(regs->cp2c));
600 memcpy(regs->cp0, &psxRegs.CP0, sizeof(regs->cp0));
601 memcpy(regs->gpr, &psxRegs.GPR, sizeof(regs->gpr));
602
603 lightrec_invalidate_all(lightrec_state);
604}
605
606static void lightrec_plugin_sync_regs_to_pcsx(void)
607{
608 struct lightrec_registers *regs;
609
610 regs = lightrec_get_registers(lightrec_state);
611 memcpy(&psxRegs.CP2, regs->cp2d, sizeof(regs->cp2d) + sizeof(regs->cp2c));
612 memcpy(&psxRegs.CP0, regs->cp0, sizeof(regs->cp0));
613 memcpy(&psxRegs.GPR, regs->gpr, sizeof(regs->gpr));
614}
615
616R3000Acpu psxRec =
617{
618 lightrec_plugin_init,
619 lightrec_plugin_reset,
620 lightrec_plugin_execute,
621 lightrec_plugin_execute_block,
622 lightrec_plugin_clear,
623 lightrec_plugin_notify,
624 lightrec_plugin_apply_config,
625 lightrec_plugin_shutdown,
626};