1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
/*
* UPSE: the unix playstation sound emulator.
*
* Filename: upse_ps1_hal.c
* Purpose: libupse: PS1 HAL implementation
*
* Copyright (c) 2007 William Pitcock <nenolod@sacredspiral.co.uk>
* Portions copyright (c) 1999-2002 Pcsx Team
* Portions copyright (c) 2004 "Xodnizel"
*
* UPSE is free software, released under the GNU General Public License,
* version 2.
*
* A copy of the GNU General Public License, version 2, is included in
* the UPSE source kit as COPYING.
*
* UPSE is offered without any warranty of any kind, explicit or implicit.
*/
#include <stdio.h>
#include <string.h>
#include "upse-internal.h"
#define HW_DMA4_MADR (psxHu32(0x10c0)) // SPU DMA
#define HW_DMA4_BCR (psxHu32(0x10c4))
#define HW_DMA4_CHCR (psxHu32(0x10c8))
#define HW_DMA_PCR (psxHu32(0x10f0))
#define HW_DMA_ICR (psxHu32(0x10f4))
void upse_ps1_hal_reset()
{
memset(psxH, 0, 0x10000);
psxRcntInit();
}
u8 upse_ps1_hal_read_8(u32 add)
{
u8 hard;
switch (add)
{
default:
hard = psxHu8(add);
return hard;
}
return hard;
}
u16 upse_ps1_hal_read_16(u32 add)
{
u16 hard;
switch (add)
{
case 0x1f801100:
hard = psxRcntRcount(0);
return hard;
case 0x1f801104:
hard = psxCounters[0].mode;
return hard;
case 0x1f801108:
hard = psxCounters[0].target;
return hard;
case 0x1f801110:
hard = psxRcntRcount(1);
return hard;
case 0x1f801114:
hard = psxCounters[1].mode;
return hard;
case 0x1f801118:
hard = psxCounters[1].target;
return hard;
case 0x1f801120:
hard = psxRcntRcount(2);
return hard;
case 0x1f801124:
hard = psxCounters[2].mode;
return hard;
case 0x1f801128:
hard = psxCounters[2].target;
return hard;
default:
if (add >= 0x1f801c00 && add < 0x1f801e00)
{
hard = SPUreadRegister(add);
}
else
{
hard = BFLIP16(psxHu16(add));
}
return hard;
}
return hard;
}
u32 upse_ps1_hal_read_32(u32 add)
{
u32 hard;
switch (add)
{
// time for rootcounters :)
case 0x1f801100:
hard = psxRcntRcount(0);
return hard;
case 0x1f801104:
hard = psxCounters[0].mode;
return hard;
case 0x1f801108:
hard = psxCounters[0].target;
return hard;
case 0x1f801110:
hard = psxRcntRcount(1);
return hard;
case 0x1f801114:
hard = psxCounters[1].mode;
return hard;
case 0x1f801118:
hard = psxCounters[1].target;
return hard;
case 0x1f801120:
hard = psxRcntRcount(2);
return hard;
case 0x1f801124:
hard = psxCounters[2].mode;
return hard;
case 0x1f801128:
hard = psxCounters[2].target;
return hard;
default:
hard = BFLIP32(psxHu32(add));
return hard;
}
return hard;
}
void upse_ps1_hal_write_8(u32 add, u8 value)
{
switch (add)
{
default:
psxHu8(add) = value;
return;
}
psxHu8(add) = value;
}
void upse_ps1_hal_write_16(u32 add, u16 value)
{
switch (add)
{
case 0x1f801070:
psxHu16(0x1070) &= BFLIP16(BFLIP16(psxHu16(0x1074)) & value);
return;
case 0x1f801100:
psxRcntWcount(0, value);
return;
case 0x1f801104:
psxRcntWmode(0, value);
return;
case 0x1f801108:
psxRcntWtarget(0, value);
return;
case 0x1f801110:
psxRcntWcount(1, value);
return;
case 0x1f801114:
psxRcntWmode(1, value);
return;
case 0x1f801118:
psxRcntWtarget(1, value);
return;
case 0x1f801120:
psxRcntWcount(2, value);
return;
case 0x1f801124:
psxRcntWmode(2, value);
return;
case 0x1f801128:
psxRcntWtarget(2, value);
return;
default:
if (add >= 0x1f801c00 && add < 0x1f801e00)
{
SPUwriteRegister(add, value);
return;
}
psxHu16(add) = BFLIP16(value);
return;
}
psxHu16(add) = BFLIP16(value);
}
#define DMA_INTERRUPT(n) \
if (BFLIP32(HW_DMA_ICR) & (1 << (16 + n))) { \
HW_DMA_ICR|= BFLIP32(1 << (24 + n)); \
psxHu32(0x1070) |= BFLIP32(8); \
}
#define DmaExec(n) { \
if (BFLIP32(HW_DMA##n##_CHCR) & 0x01000000 && BFLIP32(HW_DMA_PCR) & (8 << (n * 4))) { \
psxDma##n(BFLIP32(HW_DMA##n##_MADR), BFLIP32(HW_DMA##n##_BCR), BFLIP32(HW_DMA##n##_CHCR)); \
HW_DMA##n##_CHCR &= BFLIP32(~0x01000000); \
DMA_INTERRUPT(n); \
} \
}
void upse_ps1_hal_write_32(u32 add, u32 value)
{
switch (add)
{
case 0x1f801070:
psxHu32(0x1070) &= BFLIP32(BFLIP32(psxHu32(0x1074)) & value);
return;
case 0x1f8010c8:
HW_DMA4_CHCR = BFLIP32(value); // DMA4 chcr (SPU DMA)
DmaExec(4);
return;
case 0x1f8010f4:
{
u32 tmp = (~value) & BFLIP32(HW_DMA_ICR);
HW_DMA_ICR = BFLIP32(((tmp ^ value) & 0xffffff) ^ tmp);
return;
}
case 0x1f801100:
psxRcntWcount(0, value & 0xffff);
return;
case 0x1f801104:
psxRcntWmode(0, value);
return;
case 0x1f801108:
psxRcntWtarget(0, value & 0xffff);
return;
// HW_DMA_ICR&= (~value)&0xff000000;
case 0x1f801110:
psxRcntWcount(1, value & 0xffff);
return;
case 0x1f801114:
psxRcntWmode(1, value);
return;
case 0x1f801118:
psxRcntWtarget(1, value & 0xffff);
return;
case 0x1f801120:
psxRcntWcount(2, value & 0xffff);
return;
case 0x1f801124:
psxRcntWmode(2, value);
return;
case 0x1f801128:
psxRcntWtarget(2, value & 0xffff);
return;
default:
psxHu32(add) = BFLIP32(value);
return;
}
psxHu32(add) = BFLIP32(value);
}
void SPUirq(void)
{
psxHu32(0x1070) |= BFLIP32(0x200);
}
|