2014-04-26 05:47:52 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-05-01 23:21:04 +00:00
|
|
|
#include "core/hle/coprocessor.h"
|
2014-04-26 05:47:52 +00:00
|
|
|
#include "core/hle/hle.h"
|
|
|
|
#include "core/mem_map.h"
|
|
|
|
#include "core/core.h"
|
2014-04-25 21:15:19 +00:00
|
|
|
|
|
|
|
namespace HLE {
|
|
|
|
|
2014-04-26 05:47:52 +00:00
|
|
|
enum {
|
|
|
|
CMD_GX_REQUEST_DMA = 0x00000000,
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Data synchronization barrier
|
|
|
|
u32 DataSynchronizationBarrier(u32* command_buffer) {
|
|
|
|
u32 command = command_buffer[0];
|
|
|
|
|
|
|
|
switch (command) {
|
|
|
|
|
|
|
|
case CMD_GX_REQUEST_DMA:
|
|
|
|
{
|
|
|
|
u32* src = (u32*)Memory::GetPointer(command_buffer[1]);
|
|
|
|
u32* dst = (u32*)Memory::GetPointer(command_buffer[2]);
|
|
|
|
u32 size = command_buffer[3];
|
|
|
|
memcpy(dst, src, size);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ERROR_LOG(OSHLE, "MRC::DataSynchronizationBarrier unknown command 0x%08X", command);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-04-25 21:15:19 +00:00
|
|
|
/// Returns the coprocessor (in this case, syscore) command buffer pointer
|
2014-04-26 05:47:52 +00:00
|
|
|
Addr GetThreadCommandBuffer() {
|
2014-04-25 21:15:19 +00:00
|
|
|
// Called on insruction: mrc p15, 0, r0, c13, c0, 3
|
|
|
|
// Returns an address in OSHLE memory for the CPU to read/write to
|
|
|
|
RETURN(CMD_BUFFER_ADDR);
|
|
|
|
return CMD_BUFFER_ADDR;
|
|
|
|
}
|
|
|
|
|
2014-05-02 03:03:50 +00:00
|
|
|
/// Call an MCR (move to coprocessor from ARM register) instruction in HLE
|
|
|
|
s32 CallMCR(u32 instruction, u32 value) {
|
|
|
|
CoprocessorOperation operation = (CoprocessorOperation)((instruction >> 20) & 0xFF);
|
|
|
|
ERROR_LOG(OSHLE, "unimplemented MCR instruction=0x%08X, operation=%02X, value=%08X",
|
|
|
|
instruction, operation, value);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Call an MRC (move to ARM register from coprocessor) instruction in HLE
|
|
|
|
s32 CallMRC(u32 instruction) {
|
|
|
|
CoprocessorOperation operation = (CoprocessorOperation)((instruction >> 20) & 0xFF);
|
|
|
|
|
2014-04-25 21:15:19 +00:00
|
|
|
switch (operation) {
|
|
|
|
|
|
|
|
case DATA_SYNCHRONIZATION_BARRIER:
|
2014-04-26 05:47:52 +00:00
|
|
|
return DataSynchronizationBarrier((u32*)Memory::GetPointer(PARAM(0)));
|
2014-04-25 21:15:19 +00:00
|
|
|
|
|
|
|
case CALL_GET_THREAD_COMMAND_BUFFER:
|
2014-04-26 05:47:52 +00:00
|
|
|
return GetThreadCommandBuffer();
|
2014-04-25 21:15:19 +00:00
|
|
|
|
|
|
|
default:
|
2014-05-02 03:03:50 +00:00
|
|
|
ERROR_LOG(OSHLE, "unimplemented MRC instruction 0x%08X", instruction);
|
2014-04-25 21:15:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|