get rid of old memhandlers
[pcsx_rearmed.git] / libpcsxcore / new_dynarec / pcsxmem.c
CommitLineData
7e605697 1/*
274c4243 2 * (C) GraÅžvydas "notaz" Ignotas, 2010-2011
7e605697 3 *
4 * This work is licensed under the terms of GNU GPL version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7
8#include <stdio.h>
c6c3b1b3 9#include <sys/mman.h>
7e605697 10#include "../psxhw.h"
11#include "../cdrom.h"
12#include "../mdec.h"
13#include "emu_if.h"
14#include "pcsxmem.h"
15
16//#define memprintf printf
17#define memprintf(...)
18
c6c3b1b3 19static u8 unmapped_mem[0x1000];
7a481d40 20
63cb0298 21u32 read_mem_dummy()
7e605697 22{
63cb0298 23 return 0;
7e605697 24}
25
b96d3df7 26static void write_mem_dummy(u32 data)
7e605697 27{
b96d3df7 28 memprintf("unmapped w %08x, %08x @%08x %u\n", address, data, psxRegs.pc, psxRegs.cycle);
7e605697 29}
30
7e605697 31/* IO handlers */
32static u32 io_read_sio16()
33{
34 return sioRead8() | (sioRead8() << 8);
35}
36
37static u32 io_read_sio32()
38{
39 return sioRead8() | (sioRead8() << 8) | (sioRead8() << 16) | (sioRead8() << 24);
40}
41
42static void io_write_sio16(u32 value)
43{
44 sioWrite8((unsigned char)value);
45 sioWrite8((unsigned char)(value>>8));
46}
47
48static void io_write_sio32(u32 value)
49{
50 sioWrite8((unsigned char)value);
b96d3df7 51 sioWrite8((unsigned char)(value >> 8));
52 sioWrite8((unsigned char)(value >> 16));
53 sioWrite8((unsigned char)(value >> 24));
7e605697 54}
55
56#define make_rcnt_funcs(i) \
57static u32 io_rcnt_read_count##i() { return psxRcntRcount(i); } \
58static u32 io_rcnt_read_mode##i() { return psxRcntRmode(i); } \
59static u32 io_rcnt_read_target##i() { return psxRcntRtarget(i); } \
60static void io_rcnt_write_count##i(u32 val) { psxRcntWcount(i, val & 0xffff); } \
61static void io_rcnt_write_mode##i(u32 val) { psxRcntWmode(i, val); } \
62static void io_rcnt_write_target##i(u32 val) { psxRcntWtarget(i, val & 0xffff); }
63
64make_rcnt_funcs(0)
65make_rcnt_funcs(1)
66make_rcnt_funcs(2)
67
68static void io_write_ireg16(u32 value)
69{
70 if (Config.Sio) psxHu16ref(0x1070) |= 0x80;
71 if (Config.SpuIrq) psxHu16ref(0x1070) |= 0x200;
72 psxHu16ref(0x1070) &= psxHu16(0x1074) & value;
73}
74
75static void io_write_imask16(u32 value)
76{
77 psxHu16ref(0x1074) = value;
78 if (psxHu16ref(0x1070) & value)
d28b54b1 79 new_dyna_set_event(PSXINT_NEWDRC_CHECK, 1);
7e605697 80}
81
82static void io_write_ireg32(u32 value)
83{
84 if (Config.Sio) psxHu32ref(0x1070) |= 0x80;
85 if (Config.SpuIrq) psxHu32ref(0x1070) |= 0x200;
86 psxHu32ref(0x1070) &= psxHu32(0x1074) & value;
87}
88
89static void io_write_imask32(u32 value)
90{
91 psxHu32ref(0x1074) = value;
92 if (psxHu32ref(0x1070) & value)
d28b54b1 93 new_dyna_set_event(PSXINT_NEWDRC_CHECK, 1);
7e605697 94}
95
96static void io_write_dma_icr32(u32 value)
97{
1f77c863 98 u32 tmp = value & 0x00ff803f;
99 tmp |= (SWAPu32(HW_DMA_ICR) & ~value) & 0x7f000000;
100 if ((tmp & HW_DMA_ICR_GLOBAL_ENABLE && tmp & 0x7f000000)
101 || tmp & HW_DMA_ICR_BUS_ERROR) {
102 if (!(SWAPu32(HW_DMA_ICR) & HW_DMA_ICR_IRQ_SENT))
103 psxHu32ref(0x1070) |= SWAP32(8);
104 tmp |= HW_DMA_ICR_IRQ_SENT;
105 }
106 HW_DMA_ICR = SWAPu32(tmp);
7e605697 107}
108
109#define make_dma_func(n) \
110static void io_write_chcr##n(u32 value) \
111{ \
112 HW_DMA##n##_CHCR = value; \
113 if (value & 0x01000000 && HW_DMA_PCR & (8 << (n * 4))) { \
114 psxDma##n(HW_DMA##n##_MADR, HW_DMA##n##_BCR, value); \
115 } \
116}
117
118make_dma_func(0)
119make_dma_func(1)
120make_dma_func(2)
121make_dma_func(3)
122make_dma_func(4)
123make_dma_func(6)
124
b96d3df7 125static void io_spu_write16(u32 value)
126{
127 // meh
128 SPU_writeRegister(address, value);
129}
130
131static void io_spu_write32(u32 value)
132{
133 SPUwriteRegister wfunc = SPU_writeRegister;
134 u32 a = address;
135
136 wfunc(a, value & 0xffff);
137 wfunc(a + 2, value >> 16);
138}
139
c6c3b1b3 140static u32 *mem_readtab;
141static u32 *mem_writetab;
142static u32 mem_iortab[(1+2+4) * 0x1000 / 4];
143static u32 mem_iowtab[(1+2+4) * 0x1000 / 4];
b96d3df7 144static u32 mem_ffwtab[(1+2+4) * 0x1000 / 4];
c6c3b1b3 145//static u32 mem_unmrtab[(1+2+4) * 0x1000 / 4];
146static u32 mem_unmwtab[(1+2+4) * 0x1000 / 4];
147
148static void map_item(u32 *out, const void *h, u32 flag)
149{
150 u32 hv = (u32)h;
151 if (hv & 1)
152 fprintf(stderr, "%p has LSB set\n", h);
153 *out = (hv >> 1) | (flag << 31);
154}
155
156// size must be power of 2, at least 4k
157#define map_l1_mem(tab, i, addr, size, base) \
158 map_item(&tab[((addr)>>12) + i], (u8 *)(base) - (u32)(addr) - ((i << 12) & ~(size - 1)), 0)
159
160#define IOMEM32(a) (((a) & 0xfff) / 4)
161#define IOMEM16(a) (0x1000/4 + (((a) & 0xfff) / 2))
162#define IOMEM8(a) (0x1000/4 + 0x1000/2 + ((a) & 0xfff))
163
b96d3df7 164static void map_ram_write(void)
165{
166 int i;
167
168 for (i = 0; i < (0x800000 >> 12); i++) {
169 map_l1_mem(mem_writetab, i, 0x80000000, 0x200000, psxM);
170 map_l1_mem(mem_writetab, i, 0x00000000, 0x200000, psxM);
171 map_l1_mem(mem_writetab, i, 0xa0000000, 0x200000, psxM);
172 }
173}
174
175static void unmap_ram_write(void)
176{
177 int i;
178
179 for (i = 0; i < (0x800000 >> 12); i++) {
180 map_item(&mem_writetab[0x80000|i], mem_unmwtab, 1);
181 map_item(&mem_writetab[0x00000|i], mem_unmwtab, 1);
182 map_item(&mem_writetab[0xa0000|i], mem_unmwtab, 1);
183 }
184}
185
186static void write_biu(u32 value)
187{
188 memprintf("write_biu %08x, %08x @%08x %u\n", address, value, psxRegs.pc, psxRegs.cycle);
189
190 if (address != 0xfffe0130)
191 return;
192
193 switch (value) {
194 case 0x800: case 0x804:
195 unmap_ram_write();
196 break;
197 case 0: case 0x1e988:
198 map_ram_write();
199 break;
200 default:
201 printf("write_biu: unexpected val: %08x\n", value);
202 break;
203 }
204}
205
7e605697 206void new_dyna_pcsx_mem_init(void)
207{
208 int i;
63cb0298 209
c6c3b1b3 210 // have to map these further to keep tcache close to .text
211 mem_readtab = mmap((void *)0x08000000, 0x200000 * 4, PROT_READ | PROT_WRITE,
212 MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
213 if (mem_readtab == MAP_FAILED) {
214 fprintf(stderr, "failed to map mem tables\n");
215 exit(1);
216 }
217 mem_writetab = mem_readtab + 0x100000;
218
219 // 1st level lookup:
220 // 0: direct mem
221 // 1: use 2nd lookup
222 // 2nd level lookup:
223 // 0: direct mem variable
224 // 1: memhandler
225
226 // default/unmapped memhandlers
227 for (i = 0; i < 0x100000; i++) {
228 //map_item(&mem_readtab[i], mem_unmrtab, 1);
229 map_l1_mem(mem_readtab, i, 0, 0x1000, unmapped_mem);
230 map_item(&mem_writetab[i], mem_unmwtab, 1);
231 }
232
233 // RAM and it's mirrors
234 for (i = 0; i < (0x800000 >> 12); i++) {
235 map_l1_mem(mem_readtab, i, 0x80000000, 0x200000, psxM);
c6c3b1b3 236 map_l1_mem(mem_readtab, i, 0x00000000, 0x200000, psxM);
c6c3b1b3 237 map_l1_mem(mem_readtab, i, 0xa0000000, 0x200000, psxM);
c6c3b1b3 238 }
b96d3df7 239 map_ram_write();
c6c3b1b3 240
241 // BIOS and it's mirrors
242 for (i = 0; i < (0x80000 >> 12); i++) {
243 map_l1_mem(mem_readtab, i, 0x1fc00000, 0x80000, psxR);
244 map_l1_mem(mem_readtab, i, 0xbfc00000, 0x80000, psxR);
245 }
246
247 // scratchpad
248 map_l1_mem(mem_readtab, 0, 0x1f800000, 0x1000, psxH);
249 map_l1_mem(mem_writetab, 0, 0x1f800000, 0x1000, psxH);
250
251 // I/O
252 map_item(&mem_readtab[0x1f801000 >> 12], mem_iortab, 1);
253 map_item(&mem_writetab[0x1f801000 >> 12], mem_iowtab, 1);
7e605697 254
c6c3b1b3 255 // L2
256 // unmapped tables
b96d3df7 257 for (i = 0; i < (1+2+4) * 0x1000 / 4; i++)
c6c3b1b3 258 map_item(&mem_unmwtab[i], write_mem_dummy, 1);
259
260 // fill IO tables
261 for (i = 0; i < 0x1000/4; i++) {
262 map_item(&mem_iortab[i], &psxH[0x1000], 0);
263 map_item(&mem_iowtab[i], &psxH[0x1000], 0);
264 }
265 for (; i < 0x1000/4 + 0x1000/2; i++) {
266 map_item(&mem_iortab[i], &psxH[0x1000], 0);
267 map_item(&mem_iowtab[i], &psxH[0x1000], 0);
268 }
269 for (; i < 0x1000/4 + 0x1000/2 + 0x1000; i++) {
270 map_item(&mem_iortab[i], &psxH[0x1000], 0);
271 map_item(&mem_iowtab[i], &psxH[0x1000], 0);
272 }
273
274 map_item(&mem_iortab[IOMEM32(0x1040)], io_read_sio32, 1);
275 map_item(&mem_iortab[IOMEM32(0x1100)], io_rcnt_read_count0, 1);
276 map_item(&mem_iortab[IOMEM32(0x1104)], io_rcnt_read_mode0, 1);
277 map_item(&mem_iortab[IOMEM32(0x1108)], io_rcnt_read_target0, 1);
278 map_item(&mem_iortab[IOMEM32(0x1110)], io_rcnt_read_count1, 1);
279 map_item(&mem_iortab[IOMEM32(0x1114)], io_rcnt_read_mode1, 1);
280 map_item(&mem_iortab[IOMEM32(0x1118)], io_rcnt_read_target1, 1);
281 map_item(&mem_iortab[IOMEM32(0x1120)], io_rcnt_read_count2, 1);
282 map_item(&mem_iortab[IOMEM32(0x1124)], io_rcnt_read_mode2, 1);
283 map_item(&mem_iortab[IOMEM32(0x1128)], io_rcnt_read_target2, 1);
284// map_item(&mem_iortab[IOMEM32(0x1810)], GPU_readData, 1);
285// map_item(&mem_iortab[IOMEM32(0x1814)], GPU_readStatus, 1);
286 map_item(&mem_iortab[IOMEM32(0x1820)], mdecRead0, 1);
287 map_item(&mem_iortab[IOMEM32(0x1824)], mdecRead1, 1);
288
289 map_item(&mem_iortab[IOMEM16(0x1040)], io_read_sio16, 1);
290 map_item(&mem_iortab[IOMEM16(0x1044)], sioReadStat16, 1);
291 map_item(&mem_iortab[IOMEM16(0x1048)], sioReadMode16, 1);
292 map_item(&mem_iortab[IOMEM16(0x104a)], sioReadCtrl16, 1);
293 map_item(&mem_iortab[IOMEM16(0x104e)], sioReadBaud16, 1);
294 map_item(&mem_iortab[IOMEM16(0x1100)], io_rcnt_read_count0, 1);
295 map_item(&mem_iortab[IOMEM16(0x1104)], io_rcnt_read_mode0, 1);
296 map_item(&mem_iortab[IOMEM16(0x1108)], io_rcnt_read_target0, 1);
297 map_item(&mem_iortab[IOMEM16(0x1110)], io_rcnt_read_count1, 1);
298 map_item(&mem_iortab[IOMEM16(0x1114)], io_rcnt_read_mode1, 1);
299 map_item(&mem_iortab[IOMEM16(0x1118)], io_rcnt_read_target1, 1);
300 map_item(&mem_iortab[IOMEM16(0x1120)], io_rcnt_read_count2, 1);
301 map_item(&mem_iortab[IOMEM16(0x1124)], io_rcnt_read_mode2, 1);
302 map_item(&mem_iortab[IOMEM16(0x1128)], io_rcnt_read_target2, 1);
303
304 map_item(&mem_iortab[IOMEM8(0x1040)], sioRead8, 1);
305 map_item(&mem_iortab[IOMEM8(0x1800)], cdrRead0, 1);
306 map_item(&mem_iortab[IOMEM8(0x1801)], cdrRead1, 1);
307 map_item(&mem_iortab[IOMEM8(0x1802)], cdrRead2, 1);
308 map_item(&mem_iortab[IOMEM8(0x1803)], cdrRead3, 1);
309
b96d3df7 310 // write(u32 data)
311 map_item(&mem_iowtab[IOMEM32(0x1040)], io_write_sio32, 1);
312 map_item(&mem_iowtab[IOMEM32(0x1070)], io_write_ireg32, 1);
313 map_item(&mem_iowtab[IOMEM32(0x1074)], io_write_imask32, 1);
314 map_item(&mem_iowtab[IOMEM32(0x1088)], io_write_chcr0, 1);
315 map_item(&mem_iowtab[IOMEM32(0x1098)], io_write_chcr1, 1);
316 map_item(&mem_iowtab[IOMEM32(0x10a8)], io_write_chcr2, 1);
317 map_item(&mem_iowtab[IOMEM32(0x10b8)], io_write_chcr3, 1);
318 map_item(&mem_iowtab[IOMEM32(0x10c8)], io_write_chcr4, 1);
319 map_item(&mem_iowtab[IOMEM32(0x10e8)], io_write_chcr6, 1);
320 map_item(&mem_iowtab[IOMEM32(0x10f4)], io_write_dma_icr32, 1);
321 map_item(&mem_iowtab[IOMEM32(0x1100)], io_rcnt_write_count0, 1);
322 map_item(&mem_iowtab[IOMEM32(0x1104)], io_rcnt_write_mode0, 1);
323 map_item(&mem_iowtab[IOMEM32(0x1108)], io_rcnt_write_target0, 1);
324 map_item(&mem_iowtab[IOMEM32(0x1110)], io_rcnt_write_count1, 1);
325 map_item(&mem_iowtab[IOMEM32(0x1114)], io_rcnt_write_mode1, 1);
326 map_item(&mem_iowtab[IOMEM32(0x1118)], io_rcnt_write_target1, 1);
327 map_item(&mem_iowtab[IOMEM32(0x1120)], io_rcnt_write_count2, 1);
328 map_item(&mem_iowtab[IOMEM32(0x1124)], io_rcnt_write_mode2, 1);
329 map_item(&mem_iowtab[IOMEM32(0x1128)], io_rcnt_write_target2, 1);
330// map_item(&mem_iowtab[IOMEM32(0x1810)], GPU_writeData, 1);
331// map_item(&mem_iowtab[IOMEM32(0x1814)], GPU_writeStatus, 1);
332 map_item(&mem_iowtab[IOMEM32(0x1820)], mdecWrite0, 1);
333 map_item(&mem_iowtab[IOMEM32(0x1824)], mdecWrite1, 1);
334
335 map_item(&mem_iowtab[IOMEM16(0x1040)], io_write_sio16, 1);
336 map_item(&mem_iowtab[IOMEM16(0x1044)], sioWriteStat16, 1);
337 map_item(&mem_iowtab[IOMEM16(0x1048)], sioWriteMode16, 1);
338 map_item(&mem_iowtab[IOMEM16(0x104a)], sioWriteCtrl16, 1);
339 map_item(&mem_iowtab[IOMEM16(0x104e)], sioWriteBaud16, 1);
340 map_item(&mem_iowtab[IOMEM16(0x1070)], io_write_ireg16, 1);
341 map_item(&mem_iowtab[IOMEM16(0x1074)], io_write_imask16, 1);
342 map_item(&mem_iowtab[IOMEM16(0x1100)], io_rcnt_write_count0, 1);
343 map_item(&mem_iowtab[IOMEM16(0x1104)], io_rcnt_write_mode0, 1);
344 map_item(&mem_iowtab[IOMEM16(0x1108)], io_rcnt_write_target0, 1);
345 map_item(&mem_iowtab[IOMEM16(0x1110)], io_rcnt_write_count1, 1);
346 map_item(&mem_iowtab[IOMEM16(0x1114)], io_rcnt_write_mode1, 1);
347 map_item(&mem_iowtab[IOMEM16(0x1118)], io_rcnt_write_target1, 1);
348 map_item(&mem_iowtab[IOMEM16(0x1120)], io_rcnt_write_count2, 1);
349 map_item(&mem_iowtab[IOMEM16(0x1124)], io_rcnt_write_mode2, 1);
350 map_item(&mem_iowtab[IOMEM16(0x1128)], io_rcnt_write_target2, 1);
351
352 map_item(&mem_iowtab[IOMEM8(0x1040)], sioWrite8, 1);
353 map_item(&mem_iowtab[IOMEM8(0x1800)], cdrWrite0, 1);
354 map_item(&mem_iowtab[IOMEM8(0x1801)], cdrWrite1, 1);
355 map_item(&mem_iowtab[IOMEM8(0x1802)], cdrWrite2, 1);
356 map_item(&mem_iowtab[IOMEM8(0x1803)], cdrWrite3, 1);
357
358 for (i = 0x1c00; i < 0x1e00; i += 2) {
359 map_item(&mem_iowtab[IOMEM16(i)], io_spu_write16, 1);
360 map_item(&mem_iowtab[IOMEM32(i)], io_spu_write32, 1);
361 }
362
363 // misc
364 map_item(&mem_writetab[0xfffe0130 >> 12], mem_ffwtab, 1);
365 for (i = 0; i < 0x1000/4 + 0x1000/2 + 0x1000; i++)
366 map_item(&mem_ffwtab[i], write_biu, 1);
367
c6c3b1b3 368 mem_rtab = mem_readtab;
369 mem_wtab = mem_writetab;
7e605697 370}
371
372void new_dyna_pcsx_mem_reset(void)
373{
c6c3b1b3 374 int i;
375
7e605697 376 // plugins might change so update the pointers
c6c3b1b3 377 map_item(&mem_iortab[IOMEM32(0x1810)], GPU_readData, 1);
378 map_item(&mem_iortab[IOMEM32(0x1814)], GPU_readStatus, 1);
379
380 for (i = 0x1c00; i < 0x1e00; i += 2)
381 map_item(&mem_iortab[IOMEM16(i)], SPU_readRegister, 1);
382
b96d3df7 383 map_item(&mem_iowtab[IOMEM32(0x1810)], GPU_writeData, 1);
384 map_item(&mem_iowtab[IOMEM32(0x1814)], GPU_writeStatus, 1);
7e605697 385}