X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2Fcarthw%2Fsvp%2Fsvp.c;h=e76c7ce86501c302be4a9c9d7166983b182b8125;hb=a6fb500bb2acf2f62a89f03129fb91d0a48ee036;hp=70efa0f98c28c9d3939283768a170aff9834ab5f;hpb=d4ca252d929395352f581b532e9d3726da31d718;p=picodrive.git diff --git a/Pico/carthw/svp/svp.c b/Pico/carthw/svp/svp.c index 70efa0f..e76c7ce 100644 --- a/Pico/carthw/svp/svp.c +++ b/Pico/carthw/svp/svp.c @@ -7,9 +7,29 @@ #include "../../PicoInt.h" +#include "compiler.h" +#ifdef __GP2X__ +#include +#endif svp_t *svp = NULL; -int PicoSVPCycles = 800; // cycles/line +int PicoSVPCycles = 1000; // cycles/line + +/* save state stuff */ +typedef enum { + CHUNK_IRAM = CHUNK_CARTHW, + CHUNK_DRAM, + CHUNK_SSP +} chunk_name_e; + +static carthw_state_chunk svp_states[] = +{ + { CHUNK_IRAM, 0x800, NULL }, + { CHUNK_DRAM, sizeof(svp->dram), NULL }, + { CHUNK_SSP, sizeof(svp->ssp1601), NULL }, + { 0, 0, NULL } +}; + static void PicoSVPReset(void) { @@ -17,15 +37,22 @@ static void PicoSVPReset(void) memcpy(svp->iram_rom + 0x800, Pico.rom + 0x800, 0x20000 - 0x800); ssp1601_reset(&svp->ssp1601); + if (!(PicoOpt&0x20000)) + ssp1601_dyn_reset(&svp->ssp1601); } static void PicoSVPLine(int count) { + static int inited = 0; + if (!(svp->ssp1601.gr[SSP_PM0].h & 2) && !inited) return; + inited = 1; + // ??? - // OSC_NTSC / 3.0 / 60.0 / 262.0 ~= 1139 - // OSC_PAL / 3.0 / 50.0 / 312.0 ~= 1137 - ssp1601_run(PicoSVPCycles * count); + if (PicoOpt&0x20000) + ssp1601_run(PicoSVPCycles * count); + else + ssp1601_dyn_run(PicoSVPCycles * count); // test mode //if (Pico.m.frame_count == 13) PicoPad[0] |= 0xff; @@ -58,6 +85,25 @@ static int PicoSVPDma(unsigned int source, int len, unsigned short **srcp, unsig void PicoSVPInit(void) +{ +#ifdef __GP2X__ + int ret; + ret = munmap(tcache, TCACHE_SIZE); + printf("munmap tcache: %i\n", ret); +#endif +} + + +static void PicoSVPShutdown(void) +{ +#ifdef __GP2X__ + // also unmap tcache + PicoSVPInit(); +#endif +} + + +void PicoSVPStartup(void) { void *tmp; @@ -74,6 +120,16 @@ void PicoSVPInit(void) svp = (void *) ((char *)tmp + 0x200000); memset(svp, 0, sizeof(*svp)); +#ifdef __GP2X__ + tmp = mmap(tcache, TCACHE_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 + if (!(PicoOpt&0x20000)) { + if (ssp1601_dyn_startup()) return; + } + // init ok, setup hooks.. PicoRead16Hook = PicoSVPRead16; PicoWrite8Hook = PicoSVPWrite8; @@ -81,5 +137,13 @@ void PicoSVPInit(void) PicoDmaHook = PicoSVPDma; PicoResetHook = PicoSVPReset; PicoLineHook = PicoSVPLine; + PicoCartUnloadHook = PicoSVPShutdown; + + // save state stuff + svp_states[0].ptr = svp->iram_rom; + svp_states[1].ptr = svp->dram; + svp_states[2].ptr = &svp->ssp1601; + carthw_chunks = svp_states; } +