drc: fix PCSX HLE hack for armv5
[pcsx_rearmed.git] / frontend / plugin_lib.c
CommitLineData
b60f2812 1/*
8f892648 2 * (C) notaz, 2010-2011
b60f2812 3 *
4 * This work is licensed under the terms of the GNU GPLv2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7
8#include <stdio.h>
9#include <stdlib.h>
69af03a2 10#include <string.h>
11#include <stdarg.h>
799b0b87 12#include <stdint.h>
72228559 13#include <sys/time.h>
14#include <sys/types.h>
15#include <sys/stat.h>
16#include <fcntl.h>
17#include <unistd.h>
7c0f51de 18#include <pthread.h>
b60f2812 19
72228559 20#include "plugin_lib.h"
b60f2812 21#include "linux/fbdev.h"
69af03a2 22#include "common/fonts.h"
23#include "common/input.h"
24#include "omap.h"
3c70c47b 25#include "menu.h"
8f892648 26#include "main.h"
72228559 27#include "pcnt.h"
4c08b9e7 28#include "pl_gun_ts.h"
69af03a2 29#include "../libpcsxcore/new_dynarec/new_dynarec.h"
799b0b87 30#include "../libpcsxcore/psemu_plugin_defs.h"
b60f2812 31
4c08b9e7 32int in_type1, in_type2;
33int in_a1[2] = { 127, 127 }, in_a2[2] = { 127, 127 };
34int in_keystate, in_state_gun;
35static void *ts;
76f7048e 36void *pl_vout_buf;
37static int pl_vout_w, pl_vout_h, pl_vout_bpp;
bce6b056 38static int flip_cnt, vsync_cnt, flips_per_sec, tick_per_sec;
39static float vsps_cur;
76f7048e 40static int frame_interval, frame_interval1024, vsync_usec_time;
72228559 41
4c08b9e7 42
43static __attribute__((noinline)) int get_cpu_ticks(void)
72228559 44{
45 static unsigned long last_utime;
46 static int fd;
47 unsigned long utime, ret;
48 char buf[128];
49
50 if (fd == 0)
51 fd = open("/proc/self/stat", O_RDONLY);
52 lseek(fd, 0, SEEK_SET);
53 buf[0] = 0;
54 read(fd, buf, sizeof(buf));
55 buf[sizeof(buf) - 1] = 0;
56
57 sscanf(buf, "%*d %*s %*c %*d %*d %*d %*d %*d %*u %*u %*u %*u %*u %lu", &utime);
58 ret = utime - last_utime;
59 last_utime = utime;
60 return ret;
61}
62
8f892648 63static void print_hud(void)
64{
76f7048e 65 if (pl_vout_bpp == 16)
66 pl_text_out16(2, pl_vout_h - 10, "%s", hud_msg);
8f892648 67}
68
72228559 69static void print_fps(void)
70{
76f7048e 71 if (pl_vout_bpp == 16)
72 pl_text_out16(2, pl_vout_h - 10, "%2d %4.1f", flips_per_sec, vsps_cur);
72228559 73}
74
75static void print_cpu_usage(void)
76{
76f7048e 77 if (pl_vout_bpp == 16)
78 pl_text_out16(pl_vout_w - 28, pl_vout_h - 10, "%3d", tick_per_sec);
72228559 79}
b60f2812 80
90f1d26c 81// draw 192x8 status of 24 sound channels
82static __attribute__((noinline)) void draw_active_chans(void)
83{
174c454a 84 extern void spu_get_debug_info(int *chans_out, int *run_chans,
85 int *fmod_chans_out, int *noise_chans_out); // hack
86 int live_chans, run_chans, fmod_chans, noise_chans;
90f1d26c 87
88 static const unsigned short colors[2] = { 0x1fe3, 0x0700 };
76f7048e 89 unsigned short *dest = (unsigned short *)pl_vout_buf +
90 pl_vout_w * (pl_vout_h - 10) + pl_vout_w / 2 - 192/2;
90f1d26c 91 unsigned short *d, p;
92 int c, x, y;
93
76f7048e 94 if (pl_vout_bpp != 16)
90f1d26c 95 return;
96
174c454a 97 spu_get_debug_info(&live_chans, &run_chans, &fmod_chans, &noise_chans);
90f1d26c 98
99 for (c = 0; c < 24; c++) {
100 d = dest + c * 8;
174c454a 101 p = !(live_chans & (1<<c)) ? (run_chans & (1<<c) ? 0x01c0 : 0) :
90f1d26c 102 (fmod_chans & (1<<c)) ? 0xf000 :
103 (noise_chans & (1<<c)) ? 0x001f :
104 colors[c & 1];
76f7048e 105 for (y = 0; y < 8; y++, d += pl_vout_w)
90f1d26c 106 for (x = 0; x < 8; x++)
107 d[x] = p;
108 }
109}
110
76f7048e 111static void *pl_vout_set_mode(int w, int h, int bpp)
69af03a2 112{
a185be70 113 // special h handling, Wipeout likes to change it by 1-6
321ca84d 114 static int vsync_cnt_ms_prev;
115 if ((unsigned int)(vsync_cnt - vsync_cnt_ms_prev) < 5*60)
116 h = (h + 7) & ~7;
117 vsync_cnt_ms_prev = vsync_cnt;
a185be70 118
76f7048e 119 if (w == pl_vout_w && h == pl_vout_h && bpp == pl_vout_bpp)
120 return pl_vout_buf;
b60f2812 121
76f7048e 122 pl_vout_w = w;
123 pl_vout_h = h;
124 pl_vout_bpp = bpp;
d352cde2 125
76f7048e 126#if defined(VOUT_FBDEV)
d352cde2 127 vout_fbdev_clear(layer_fb);
76f7048e 128 pl_vout_buf = vout_fbdev_resize(layer_fb, w, h, bpp, 0, 0, 0, 0, 3);
129#elif defined(MAEMO)
130 extern void *hildon_set_mode(int w, int h);
131 pl_vout_buf = hildon_set_mode(w, h);
132#endif
d352cde2 133
76f7048e 134 if (pl_vout_buf == NULL)
135 fprintf(stderr, "failed to set mode\n");
a185be70 136
137 // menu decides on layer size, we commit it
bd6267e6 138 menu_notify_mode_change(w, h, bpp);
a185be70 139 omap_enable_layer(1);
3c70c47b 140
76f7048e 141 return pl_vout_buf;
69af03a2 142}
143
76f7048e 144static void *pl_vout_flip(void)
69af03a2 145{
72228559 146 flip_cnt++;
297b3d63 147
76f7048e 148 if (pl_vout_buf != NULL) {
90f1d26c 149 if (g_opts & OPT_SHOWSPU)
150 draw_active_chans();
151
8f892648 152 if (hud_msg[0] != 0)
153 print_hud();
154 else if (g_opts & OPT_SHOWFPS)
297b3d63 155 print_fps();
8f892648 156
297b3d63 157 if (g_opts & OPT_SHOWCPU)
158 print_cpu_usage();
159 }
72228559 160
69af03a2 161 // let's flip now
76f7048e 162#if defined(VOUT_FBDEV)
163 pl_vout_buf = vout_fbdev_flip(layer_fb);
164#elif defined(MAEMO)
165 extern void *hildon_flip(void);
166 pl_vout_buf = hildon_flip();
167#endif
168 return pl_vout_buf;
b60f2812 169}
170
76f7048e 171static int pl_vout_open(void)
6d1a1ac2 172{
cefe86b7 173 struct timeval now;
174
6d1a1ac2 175 omap_enable_layer(1);
76f7048e 176#if defined(VOUT_FBDEV)
321ca84d 177 // force mode update
178 int h = pl_vout_h;
179 pl_vout_h--;
180 pl_vout_buf = pl_vout_set_mode(pl_vout_w, h, pl_vout_bpp);
cefe86b7 181
182 // try to align redraws to vsync
183 vout_fbdev_wait_vsync(layer_fb);
76f7048e 184#elif defined(MAEMO)
185 extern void *hildon_flip(void);
186 pl_vout_buf = hildon_flip();
187#endif
188
cefe86b7 189 gettimeofday(&now, 0);
190 vsync_usec_time = now.tv_usec;
76f7048e 191 while (vsync_usec_time >= frame_interval)
192 vsync_usec_time -= frame_interval;
cefe86b7 193
6d1a1ac2 194 return 0;
195}
196
76f7048e 197static void pl_vout_close(void)
b60f2812 198{
6d1a1ac2 199 omap_enable_layer(0);
b60f2812 200}
201
29a8c4f3 202void *pl_prepare_screenshot(int *w, int *h, int *bpp)
203{
76f7048e 204 *w = pl_vout_w;
205 *h = pl_vout_h;
206 *bpp = pl_vout_bpp;
29a8c4f3 207
76f7048e 208 return pl_vout_buf;
29a8c4f3 209}
210
15d46930 211static void update_input(void)
212{
76f7048e 213#ifndef MAEMO
15d46930 214 int actions[IN_BINDTYPE_COUNT] = { 0, };
8f892648 215 unsigned int emu_act;
15d46930 216
217 in_update(actions);
4c08b9e7 218 if (in_type1 == PSE_PAD_TYPE_ANALOGPAD)
799b0b87 219 in_update_analogs();
8f892648 220 emu_act = actions[IN_BINDTYPE_EMU];
4c08b9e7 221 in_state_gun = (emu_act & SACTION_GUN_MASK) >> SACTION_GUN_TRIGGER;
222
223 emu_act &= ~SACTION_GUN_MASK;
8f892648 224 if (emu_act) {
225 int which = 0;
226 for (; !(emu_act & 1); emu_act >>= 1, which++)
227 ;
228 emu_act = which;
229 }
230 emu_set_action(emu_act);
231
799b0b87 232 in_keystate = actions[IN_BINDTYPE_PLAYER12];
76f7048e 233#endif
447783f8 234#ifdef X11
4218954f 235 extern int x11_update_keys(unsigned int *action);
236 in_keystate |= x11_update_keys(&emu_act);
237 emu_set_action(emu_act);
447783f8 238#endif
15d46930 239}
240
4c08b9e7 241void pl_update_gun(int *xn, int *xres, int *y, int *in)
242{
243 if (ts)
244 pl_gun_ts_update(ts, xn, y, in);
245
76f7048e 246 *xres = pl_vout_w;
247 *y = *y * pl_vout_h >> 10;
4c08b9e7 248}
249
bce6b056 250#define MAX_LAG_FRAMES 3
251
252#define tvdiff(tv, tv_old) \
253 ((tv.tv_sec - tv_old.tv_sec) * 1000000 + tv.tv_usec - tv_old.tv_usec)
bce6b056 254
72228559 255/* called on every vsync */
256void pl_frame_limit(void)
257{
bce6b056 258 static struct timeval tv_old, tv_expect;
7c0f51de 259 static int vsync_cnt_prev;
bce6b056 260 struct timeval now;
cefe86b7 261 int diff, usadj;
bce6b056 262
263 vsync_cnt++;
72228559 264
15d46930 265 /* doing input here because the pad is polled
266 * thousands of times per frame for some reason */
267 update_input();
268
72228559 269 pcnt_end(PCNT_ALL);
bce6b056 270 gettimeofday(&now, 0);
72228559 271
bce6b056 272 if (now.tv_sec != tv_old.tv_sec) {
273 diff = tvdiff(now, tv_old);
274 vsps_cur = 0.0f;
275 if (0 < diff && diff < 2000000)
7c0f51de 276 vsps_cur = 1000000.0f * (vsync_cnt - vsync_cnt_prev) / diff;
277 vsync_cnt_prev = vsync_cnt;
72228559 278 flips_per_sec = flip_cnt;
7c0f51de 279 flip_cnt = 0;
bce6b056 280 tv_old = now;
bd6267e6 281 if (g_opts & OPT_SHOWCPU)
282 tick_per_sec = get_cpu_ticks();
8f892648 283
284 if (hud_new_msg > 0) {
285 hud_new_msg--;
286 if (hud_new_msg == 0)
287 hud_msg[0] = 0;
288 }
72228559 289 }
290#ifdef PCNT
291 static int ya_vsync_count;
292 if (++ya_vsync_count == PCNT_FRAMES) {
bce6b056 293 pcnt_print(vsps_cur);
72228559 294 ya_vsync_count = 0;
295 }
296#endif
297
76f7048e 298 // tv_expect uses usec*1024 units instead of usecs for better accuracy
299 tv_expect.tv_usec += frame_interval1024;
300 if (tv_expect.tv_usec >= (1000000 << 10)) {
301 tv_expect.tv_usec -= (1000000 << 10);
302 tv_expect.tv_sec++;
303 }
304 diff = (tv_expect.tv_sec - now.tv_sec) * 1000000 + (tv_expect.tv_usec >> 10) - now.tv_usec;
305
306 if (diff > MAX_LAG_FRAMES * frame_interval || diff < -MAX_LAG_FRAMES * frame_interval) {
307 //printf("pl_frame_limit reset, diff=%d, iv %d\n", diff, frame_interval);
c89cd762 308 tv_expect = now;
309 diff = 0;
cefe86b7 310 // try to align with vsync
311 usadj = vsync_usec_time;
76f7048e 312 while (usadj < tv_expect.tv_usec - frame_interval)
313 usadj += frame_interval;
314 tv_expect.tv_usec = usadj << 10;
c89cd762 315 }
316
76f7048e 317 if (!(g_opts & OPT_NO_FRAMELIM) && diff > frame_interval) {
c89cd762 318 // yay for working usleep on pandora!
76f7048e 319 //printf("usleep %d\n", diff - frame_interval / 2);
47f37583 320 usleep(diff - frame_interval);
c89cd762 321 }
322
e64dc4c5 323 if (pl_rearmed_cbs.frameskip) {
76f7048e 324 if (diff < -frame_interval)
e64dc4c5 325 pl_rearmed_cbs.fskip_advice = 1;
326 else if (diff >= 0)
327 pl_rearmed_cbs.fskip_advice = 0;
bce6b056 328 }
72228559 329
330 pcnt_start(PCNT_ALL);
331}
332
76f7048e 333void pl_timing_prepare(int is_pal)
334{
335 pl_rearmed_cbs.fskip_advice = 0;
336
337 frame_interval = is_pal ? 20000 : 16667;
338 frame_interval1024 = is_pal ? 20000*1024 : 17066667;
339
340 // used by P.E.Op.S. frameskip code
341 pl_rearmed_cbs.gpu_peops.fFrameRateHz = is_pal ? 50.0f : 59.94f;
342 pl_rearmed_cbs.gpu_peops.dwFrameRateTicks =
343 (100000*100 / (unsigned long)(pl_rearmed_cbs.gpu_peops.fFrameRateHz*100));
344}
345
69af03a2 346static void pl_text_out16_(int x, int y, const char *text)
b60f2812 347{
76f7048e 348 int i, l, len = strlen(text), w = pl_vout_w;
349 unsigned short *screen = (unsigned short *)pl_vout_buf + x + y * w;
69af03a2 350 unsigned short val = 0xffff;
351
352 for (i = 0; i < len; i++, screen += 8)
353 {
354 for (l = 0; l < 8; l++)
355 {
356 unsigned char fd = fontdata8x8[text[i] * 8 + l];
357 unsigned short *s = screen + l * w;
358 if (fd&0x80) s[0] = val;
359 if (fd&0x40) s[1] = val;
360 if (fd&0x20) s[2] = val;
361 if (fd&0x10) s[3] = val;
362 if (fd&0x08) s[4] = val;
363 if (fd&0x04) s[5] = val;
364 if (fd&0x02) s[6] = val;
365 if (fd&0x01) s[7] = val;
366 }
367 }
b60f2812 368}
369
69af03a2 370void pl_text_out16(int x, int y, const char *texto, ...)
b60f2812 371{
69af03a2 372 va_list args;
373 char buffer[256];
374
375 va_start(args, texto);
376 vsnprintf(buffer, sizeof(buffer), texto, args);
377 va_end(args);
378
379 pl_text_out16_(x, y, buffer);
b60f2812 380}
381
201c21e2 382static void pl_get_layer_pos(int *x, int *y, int *w, int *h)
383{
384 *x = g_layer_x;
385 *y = g_layer_y;
386 *w = g_layer_w;
387 *h = g_layer_h;
388}
389
e64dc4c5 390struct rearmed_cbs pl_rearmed_cbs = {
201c21e2 391 pl_get_layer_pos,
76f7048e 392 pl_vout_open,
393 pl_vout_set_mode,
394 pl_vout_flip,
395 pl_vout_close,
201c21e2 396};
397
7c0f51de 398/* watchdog */
399static void *watchdog_thread(void *unused)
400{
401 int vsync_cnt_old = 0;
402 int seen_dead = 0;
403 int sleep_time = 5;
404
799b0b87 405#ifndef NDEBUG
406 // don't interfere with debug
407 return NULL;
408#endif
7c0f51de 409 while (1)
410 {
411 sleep(sleep_time);
412
413 if (stop) {
414 seen_dead = 0;
415 sleep_time = 5;
416 continue;
417 }
418 if (vsync_cnt != vsync_cnt_old) {
419 vsync_cnt_old = vsync_cnt;
420 seen_dead = 0;
421 sleep_time = 2;
422 continue;
423 }
424
425 seen_dead++;
426 sleep_time = 1;
427 if (seen_dead > 1)
428 fprintf(stderr, "watchdog: seen_dead %d\n", seen_dead);
429 if (seen_dead > 4) {
430 fprintf(stderr, "watchdog: lockup detected, aborting\n");
431 // we can't do any cleanup here really, the main thread is
432 // likely touching resources and would crash anyway
433 abort();
434 }
435 }
436}
437
438void pl_start_watchdog(void)
439{
440 pthread_attr_t attr;
441 pthread_t tid;
442 int ret;
443
444 pthread_attr_init(&attr);
445 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
446
447 ret = pthread_create(&tid, &attr, watchdog_thread, NULL);
448 if (ret != 0)
449 fprintf(stderr, "could not start watchdog: %d\n", ret);
450}
451
4c08b9e7 452void pl_init(void)
453{
321ca84d 454 pl_vout_w = pl_vout_h = 256;
455 pl_vout_bpp = 16;
456
4c08b9e7 457 ts = pl_gun_ts_init();
458}