summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/gsp_gpu.cpp44
1 files changed, 39 insertions, 5 deletions
diff --git a/src/core/hle/service/gsp_gpu.cpp b/src/core/hle/service/gsp_gpu.cpp
index c23cfa3c8..3b4a7b664 100644
--- a/src/core/hle/service/gsp_gpu.cpp
+++ b/src/core/hle/service/gsp_gpu.cpp
@@ -7,7 +7,9 @@
7#include "core/mem_map.h" 7#include "core/mem_map.h"
8#include "core/hle/kernel/event.h" 8#include "core/hle/kernel/event.h"
9#include "core/hle/kernel/shared_memory.h" 9#include "core/hle/kernel/shared_memory.h"
10#include "core/hle/result.h"
10#include "gsp_gpu.h" 11#include "gsp_gpu.h"
12#include "core/hw/hw.h"
11#include "core/hw/gpu.h" 13#include "core/hw/gpu.h"
12 14
13#include "video_core/gpu_debugger.h" 15#include "video_core/gpu_debugger.h"
@@ -85,7 +87,7 @@ static void WriteHWRegs(u32 base_address, u32 size_in_bytes, const u32* data) {
85 return; 87 return;
86 88
87 while (size_in_bytes > 0) { 89 while (size_in_bytes > 0) {
88 GPU::Write<u32>(base_address + 0x1EB00000, *data); 90 HW::Write<u32>(base_address + 0x1EB00000, *data);
89 91
90 size_in_bytes -= 4; 92 size_in_bytes -= 4;
91 ++data; 93 ++data;
@@ -131,12 +133,12 @@ static void WriteHWRegsWithMask(u32 base_address, u32 size_in_bytes, const u32*
131 const u32 reg_address = base_address + 0x1EB00000; 133 const u32 reg_address = base_address + 0x1EB00000;
132 134
133 u32 reg_value; 135 u32 reg_value;
134 GPU::Read<u32>(reg_value, reg_address); 136 HW::Read<u32>(reg_value, reg_address);
135 137
136 // Update the current value of the register only for set mask bits 138 // Update the current value of the register only for set mask bits
137 reg_value = (reg_value & ~*masks) | (*data | *masks); 139 reg_value = (reg_value & ~*masks) | (*data | *masks);
138 140
139 GPU::Write<u32>(reg_address, reg_value); 141 HW::Write<u32>(reg_address, reg_value);
140 142
141 size_in_bytes -= 4; 143 size_in_bytes -= 4;
142 ++data; 144 ++data;
@@ -188,7 +190,7 @@ static void ReadHWRegs(Service::Interface* self) {
188 u32* dst = (u32*)Memory::GetPointer(cmd_buff[0x41]); 190 u32* dst = (u32*)Memory::GetPointer(cmd_buff[0x41]);
189 191
190 while (size > 0) { 192 while (size > 0) {
191 GPU::Read<u32>(*dst, reg_addr + 0x1EB00000); 193 HW::Read<u32>(*dst, reg_addr + 0x1EB00000);
192 194
193 size -= 4; 195 size -= 4;
194 ++dst; 196 ++dst;
@@ -427,6 +429,38 @@ static void ExecuteCommand(const Command& command, u32 thread_id) {
427 } 429 }
428} 430}
429 431
432/**
433 * GSP_GPU::SetLcdForceBlack service function
434 *
435 * Enable or disable REG_LCDCOLORFILL with the color black.
436 *
437 * Inputs:
438 * 1: Black color fill flag (0 = don't fill, !0 = fill)
439 * Outputs:
440 * 1: Result code
441 */
442void SetLcdForceBlack(Service::Interface* self) {
443 // TODO: currently has no effect, as LCD reg writes have nowhere to go.
444
445 u32* cmd_buff = Kernel::GetCommandBuffer();
446 bool enable_black = cmd_buff[1] != 0;
447 u32 data = 0;
448
449 if (enable_black) {
450 // Sets bit 24 to 1, enabling the fill
451 // Since data is already 0x00000000, there is no need to explicitly set
452 // bits 0-23 to zero (black), or bit 24 to 0 (fill disabled).
453 data |= (1 << 24);
454 }
455
456 u32 data_main = data;
457 u32 data_sub = data;
458 WriteHWRegs(0x202204, 4, &data_main); // Main LCD
459 WriteHWRegs(0x202A04, 4, &data_sub); // Sub LCD
460
461 cmd_buff[1] = RESULT_SUCCESS.raw;
462}
463
430/// This triggers handling of the GX command written to the command buffer in shared memory. 464/// This triggers handling of the GX command written to the command buffer in shared memory.
431static void TriggerCmdReqQueue(Service::Interface* self) { 465static void TriggerCmdReqQueue(Service::Interface* self) {
432 // Iterate through each thread's command queue... 466 // Iterate through each thread's command queue...
@@ -460,7 +494,7 @@ const Interface::FunctionInfo FunctionTable[] = {
460 {0x00080082, FlushDataCache, "FlushDataCache"}, 494 {0x00080082, FlushDataCache, "FlushDataCache"},
461 {0x00090082, nullptr, "InvalidateDataCache"}, 495 {0x00090082, nullptr, "InvalidateDataCache"},
462 {0x000A0044, nullptr, "RegisterInterruptEvents"}, 496 {0x000A0044, nullptr, "RegisterInterruptEvents"},
463 {0x000B0040, nullptr, "SetLcdForceBlack"}, 497 {0x000B0040, SetLcdForceBlack, "SetLcdForceBlack"},
464 {0x000C0000, TriggerCmdReqQueue, "TriggerCmdReqQueue"}, 498 {0x000C0000, TriggerCmdReqQueue, "TriggerCmdReqQueue"},
465 {0x000D0140, nullptr, "SetDisplayTransfer"}, 499 {0x000D0140, nullptr, "SetDisplayTransfer"},
466 {0x000E0180, nullptr, "SetTextureCopy"}, 500 {0x000E0180, nullptr, "SetTextureCopy"},