X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pico%2Fcarthw%2Fsvp%2Fsvp.c;h=76904ae1c89a5114cd0ac3bb61ef66eb4c773a84;hb=c18edb34e6708b399c6bfee8dac7b21a62988643;hp=504f8d3d4f1bed46ccbfeedc7b84a614db5d416e;hpb=45f2f245f51ef0c0d37df3c998595c132bfcaffa;p=picodrive.git diff --git a/pico/carthw/svp/svp.c b/pico/carthw/svp/svp.c index 504f8d3..76904ae 100644 --- a/pico/carthw/svp/svp.c +++ b/pico/carthw/svp/svp.c @@ -7,10 +7,8 @@ #include "../../pico_int.h" +#include "../../cpu/drc/cmn.h" #include "compiler.h" -#if defined(__linux__) && defined(ARM) -#include -#endif svp_t *svp = NULL; int PicoSVPCycles = 850; // cycles/line, just a guess @@ -100,19 +98,17 @@ static int PicoSVPDma(unsigned int source, int len, unsigned short **srcp, unsig void PicoSVPInit(void) { -#if defined(__linux__) && defined(ARM) - int ret; - ret = munmap(tcache, SSP_DRC_SIZE); - printf("munmap tcache: %i\n", ret); +#ifndef PSP + // this is to unmap tcache and make + // mem available for large ROMs, MCD, etc. + drc_cmn_cleanup(); #endif } - -static void PicoSVPShutdown(void) +static void PicoSVPExit(void) { -#if defined(__linux__) && defined(ARM) - // also unmap tcache - PicoSVPInit(); +#ifndef PSP + ssp1601_dyn_exit(); #endif } @@ -135,16 +131,12 @@ void PicoSVPStartup(void) svp = (void *) ((char *)tmp + 0x200000); memset(svp, 0, sizeof(*svp)); -#if defined(__linux__) && defined(ARM) - tmp = mmap(tcache, SSP_DRC_SIZE, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_SHARED|MAP_ANONYMOUS, -1, 0); - printf("mmap tcache: %p, asked %p\n", tmp, tcache); -#endif - // init SVP compiler svp_dyn_ready = 0; #ifndef PSP - if (PicoOpt&POPT_EN_SVP_DRC) { - if (ssp1601_dyn_startup()) return; + if (PicoOpt & POPT_EN_SVP_DRC) { + if (ssp1601_dyn_startup()) + return; svp_dyn_ready = 1; } #endif @@ -154,7 +146,7 @@ void PicoSVPStartup(void) PicoDmaHook = PicoSVPDma; PicoResetHook = PicoSVPReset; PicoLineHook = PicoSVPLine; - PicoCartUnloadHook = PicoSVPShutdown; + PicoCartUnloadHook = PicoSVPExit; // save state stuff svp_states[0].ptr = svp->iram_rom;