Let's preserve XMM/MMX registers on dma functions again.

Fixes Fatal Frame 1 missing geometry. 
The game should be fully working again, even without the gamefix :)

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2707 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2010-03-13 13:11:22 +00:00
parent ef33b22114
commit 95c272b81b

View File

@ -27,12 +27,14 @@ using namespace R5900;
// dark cloud2 uses 8 bit DMAs register writes // dark cloud2 uses 8 bit DMAs register writes
static __forceinline void DmaExec8( void (*func)(), u32 mem, u8 value ) static __forceinline void DmaExec8( void (*func)(), u32 mem, u8 value )
{ {
Registers::Freeze();
u32 qwcRegister = (mem | 0x20) & ~0x1; //Need to remove the lower bit else we end up clearing TADR u32 qwcRegister = (mem | 0x20) & ~0x1; //Need to remove the lower bit else we end up clearing TADR
//It's invalid for the hardware to write a DMA while it is active, not without Suspending the DMAC //It's invalid for the hardware to write a DMA while it is active, not without Suspending the DMAC
if ((value & 0x1) && ((psHu8(mem) & 0x1) == 0x1) && dmacRegs->ctrl.DMAE) { if ((value & 0x1) && ((psHu8(mem) & 0x1) == 0x1) && dmacRegs->ctrl.DMAE) {
DevCon.Warning(L"DMAExec8 Attempt to run DMA while one is already active in %s(%x)", ChcrName(mem), mem); DevCon.Warning(L"DMAExec8 Attempt to run DMA while one is already active in %s(%x)", ChcrName(mem), mem);
func(); func();
Registers::Thaw();
return; return;
} }
@ -49,10 +51,13 @@ static __forceinline void DmaExec8( void (*func)(), u32 mem, u8 value )
/*Console.WriteLn("Running DMA 8 %x", psHu32(mem & ~0x1));*/ /*Console.WriteLn("Running DMA 8 %x", psHu32(mem & ~0x1));*/
func(); func();
} }
Registers::Thaw();
} }
static __forceinline void DmaExec16( void (*func)(), u32 mem, u16 value ) static __forceinline void DmaExec16( void (*func)(), u32 mem, u16 value )
{ {
Registers::Freeze();
DMACh *reg = &psH_DMACh(mem); DMACh *reg = &psH_DMACh(mem);
tDMA_CHCR chcr(value); tDMA_CHCR chcr(value);
@ -60,6 +65,7 @@ static __forceinline void DmaExec16( void (*func)(), u32 mem, u16 value )
if (chcr.STR && reg->chcr.STR && dmacRegs->ctrl.DMAE) { if (chcr.STR && reg->chcr.STR && dmacRegs->ctrl.DMAE) {
DevCon.Warning(L"DMAExec16 Attempt to run DMA while one is already active in %s(%x)", ChcrName(mem), mem ); DevCon.Warning(L"DMAExec16 Attempt to run DMA while one is already active in %s(%x)", ChcrName(mem), mem );
func(); func();
Registers::Thaw();
return; return;
} }
@ -78,10 +84,13 @@ static __forceinline void DmaExec16( void (*func)(), u32 mem, u16 value )
//Console.WriteLn("16bit DMA Start"); //Console.WriteLn("16bit DMA Start");
func(); func();
} }
Registers::Thaw();
} }
static void DmaExec( void (*func)(), u32 mem, u32 value ) static void DmaExec( void (*func)(), u32 mem, u32 value )
{ {
Registers::Freeze();
DMACh *reg = &psH_DMACh(mem); DMACh *reg = &psH_DMACh(mem);
tDMA_CHCR chcr(value); tDMA_CHCR chcr(value);
@ -91,6 +100,7 @@ static void DmaExec( void (*func)(), u32 mem, u32 value )
// When DMA is active only STR field is writable, so we just // When DMA is active only STR field is writable, so we just
// call the dma transfer function w/o modifying CHCR contents... // call the dma transfer function w/o modifying CHCR contents...
func(); func();
Registers::Thaw();
return; // Test with Gust games and fatal frame return; // Test with Gust games and fatal frame
} }
@ -111,6 +121,8 @@ static void DmaExec( void (*func)(), u32 mem, u32 value )
reg->chcr.set(value); reg->chcr.set(value);
if (reg->chcr.STR && dmacRegs->ctrl.DMAE) func(); if (reg->chcr.STR && dmacRegs->ctrl.DMAE) func();
Registers::Thaw();
} }
///////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////