summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-25 17:15:19 -0400
committerGravatar bunnei2014-04-25 17:15:19 -0400
commitcb0663de5147f10533ecdbf6f58865f7cbe0241c (patch)
tree30a122d3da59134e431ab2e6ef389d8f00467038 /src/core/hle
parentadded disassembly to unimplemented instruction (diff)
downloadyuzu-cb0663de5147f10533ecdbf6f58865f7cbe0241c.tar.gz
yuzu-cb0663de5147f10533ecdbf6f58865f7cbe0241c.tar.xz
yuzu-cb0663de5147f10533ecdbf6f58865f7cbe0241c.zip
moved HLE::MRC to its own module, added support for catching data synchronization barrier command
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/hle.cpp8
-rw-r--r--src/core/hle/hle.h2
-rw-r--r--src/core/hle/mrc.cpp32
-rw-r--r--src/core/hle/mrc.h20
4 files changed, 52 insertions, 10 deletions
diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp
index 5672a659f..aae9a3943 100644
--- a/src/core/hle/hle.cpp
+++ b/src/core/hle/hle.cpp
@@ -80,14 +80,6 @@ void CallSyscall(u32 opcode) {
80 } 80 }
81} 81}
82 82
83/// Returns the coprocessor (in this case, syscore) command buffer pointer
84Addr CallGetThreadCommandBuffer() {
85 // Called on insruction: mrc p15, 0, r0, c13, c0, 3
86 // Returns an address in OSHLE memory for the CPU to read/write to
87 RETURN(CMD_BUFFER_ADDR);
88 return CMD_BUFFER_ADDR;
89}
90
91void RegisterModule(std::string name, int num_functions, const FunctionDef* func_table) { 83void RegisterModule(std::string name, int num_functions, const FunctionDef* func_table) {
92 ModuleDef module = {name, num_functions, func_table}; 84 ModuleDef module = {name, num_functions, func_table};
93 g_module_db.push_back(module); 85 g_module_db.push_back(module);
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h
index 628a1da89..907e2d741 100644
--- a/src/core/hle/hle.h
+++ b/src/core/hle/hle.h
@@ -57,8 +57,6 @@ void RegisterModule(std::string name, int num_functions, const FunctionDef *func
57 57
58void CallSyscall(u32 opcode); 58void CallSyscall(u32 opcode);
59 59
60Addr CallGetThreadCommandBuffer();
61
62void Init(); 60void Init();
63 61
64void Shutdown(); 62void Shutdown();
diff --git a/src/core/hle/mrc.cpp b/src/core/hle/mrc.cpp
new file mode 100644
index 000000000..04d6cb5a5
--- /dev/null
+++ b/src/core/hle/mrc.cpp
@@ -0,0 +1,32 @@
1#include "mrc.h"
2#include "hle.h"
3
4namespace HLE {
5
6/// Returns the coprocessor (in this case, syscore) command buffer pointer
7Addr CallGetThreadCommandBuffer() {
8 // Called on insruction: mrc p15, 0, r0, c13, c0, 3
9 // Returns an address in OSHLE memory for the CPU to read/write to
10 RETURN(CMD_BUFFER_ADDR);
11 return CMD_BUFFER_ADDR;
12}
13
14/// Call an MRC operation in HLE
15u32 CallMRC(ARM11_MRC_OPERATION operation) {
16 switch (operation) {
17
18 case DATA_SYNCHRONIZATION_BARRIER:
19 ERROR_LOG(OSHLE, "Unimplemented MRC operation DATA_SYNCHRONIZATION_BARRIER");
20 break;
21
22 case CALL_GET_THREAD_COMMAND_BUFFER:
23 return CallGetThreadCommandBuffer();
24
25 default:
26 ERROR_LOG(OSHLE, "Unimplemented MRC operation 0x%02X", operation);
27 break;
28 }
29 return -1;
30}
31
32} // namespace
diff --git a/src/core/hle/mrc.h b/src/core/hle/mrc.h
new file mode 100644
index 000000000..d6b9f162f
--- /dev/null
+++ b/src/core/hle/mrc.h
@@ -0,0 +1,20 @@
1// Copyright 2014 Citra Emulator Project
2// Licensed under GPLv2
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include "common/common_types.h"
8
9namespace HLE {
10
11/// MRC operations (ARM register from coprocessor), decoded as instr[20:27]
12enum ARM11_MRC_OPERATION {
13 DATA_SYNCHRONIZATION_BARRIER = 0xE0,
14 CALL_GET_THREAD_COMMAND_BUFFER = 0xE1,
15};
16
17/// Call an MRC operation in HLE
18u32 CallMRC(ARM11_MRC_OPERATION operation);
19
20} // namespace