ssp cleanup
[picodrive.git] / Pico / carthw / svp / svp.c
CommitLineData
d4ca252d 1// The SVP chip emulator
2
3// (c) Copyright 2008, Grazvydas "notaz" Ignotas
4// Free for non-commercial use.
5
6// For commercial use, separate licencing terms must be obtained.
7
8
f53f286a 9#include "../../PicoInt.h"
10
f8ef8ff7 11svp_t *svp = NULL;
16ebbe9e 12int PicoSVPCycles = 1000; // cycles/line
f8ef8ff7 13
945c2fdc 14/* save state stuff */
15typedef enum {
16 CHUNK_IRAM = CHUNK_CARTHW,
17 CHUNK_DRAM,
18 CHUNK_SSP
19} chunk_name_e;
20
21static carthw_state_chunk svp_states[] =
22{
23 { CHUNK_IRAM, 0x800, NULL },
24 { CHUNK_DRAM, sizeof(svp->dram), NULL },
25 { CHUNK_SSP, sizeof(svp->ssp1601), NULL },
26 { 0, 0, NULL }
27};
28
29
017512f2 30static void PicoSVPReset(void)
31{
32 elprintf(EL_SVP, "SVP reset");
33
5de27868 34 memcpy(svp->iram_rom + 0x800, Pico.rom + 0x800, 0x20000 - 0x800);
017512f2 35 ssp1601_reset(&svp->ssp1601);
36}
37
38
0ffefdb8 39static void PicoSVPLine(int count)
017512f2 40{
41 // ???
0ffefdb8 42 ssp1601_run(PicoSVPCycles * count);
d26dc685 43
44 // test mode
45 //if (Pico.m.frame_count == 13) PicoPad[0] |= 0xff;
017512f2 46}
47
48
5de27868 49static int PicoSVPDma(unsigned int source, int len, unsigned short **srcp, unsigned short **limitp)
017512f2 50{
d4ca252d 51 if (source < Pico.romsize) // Rom
52 {
50483b53 53 source -= 2;
54 *srcp = (unsigned short *)(Pico.rom + (source&~1));
55 *limitp = (unsigned short *)(Pico.rom + Pico.romsize);
56 return 1;
57 }
58 else if ((source & 0xfe0000) == 0x300000)
017512f2 59 {
5de27868 60 elprintf(EL_VDPDMA|EL_SVP, "SVP DmaSlow from %06x, len=%i", source, len);
017512f2 61 source &= 0x1fffe;
30752975 62 source -= 2;
5de27868 63 *srcp = (unsigned short *)(svp->dram + source);
64 *limitp = (unsigned short *)(svp->dram + sizeof(svp->dram));
017512f2 65 return 1;
66 }
d26dc685 67 else
68 elprintf(EL_VDPDMA|EL_SVP|EL_ANOMALY, "SVP FIXME unhandled DmaSlow from %06x, len=%i", source, len);
017512f2 69
70 return 0;
71}
72
73
f53f286a 74void PicoSVPInit(void)
75{
f8ef8ff7 76 void *tmp;
77
017512f2 78 elprintf(EL_SVP, "SVP init");
f8ef8ff7 79
80 tmp = realloc(Pico.rom, 0x200000 + sizeof(*svp));
81 if (tmp == NULL)
82 {
017512f2 83 elprintf(EL_STATUS|EL_SVP, "OOM for SVP data");
f8ef8ff7 84 return;
85 }
86
87 Pico.rom = tmp;
88 svp = (void *) ((char *)tmp + 0x200000);
89 memset(svp, 0, sizeof(*svp));
90
91 // init ok, setup hooks..
92 PicoRead16Hook = PicoSVPRead16;
93 PicoWrite8Hook = PicoSVPWrite8;
94 PicoWrite16Hook = PicoSVPWrite16;
95 PicoDmaHook = PicoSVPDma;
017512f2 96 PicoResetHook = PicoSVPReset;
97 PicoLineHook = PicoSVPLine;
945c2fdc 98
99 // save state stuff
100 svp_states[0].ptr = svp->iram_rom;
101 svp_states[1].ptr = svp->dram;
102 svp_states[2].ptr = &svp->ssp1601;
103 carthw_chunks = svp_states;
f53f286a 104}
105