summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-10-16 00:20:19 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-10-16 00:23:27 +0200
commit53cf91d151d1e3d289917b63cf17ca254674f1ce (patch)
treeb98a87d68243e1f9358c10a8870dd296c0aa5eb1 /src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp
parentSuspend temporally (diff)
downloadyuzu-53cf91d151d1e3d289917b63cf17ca254674f1ce.tar
yuzu-53cf91d151d1e3d289917b63cf17ca254674f1ce.tar.gz
yuzu-53cf91d151d1e3d289917b63cf17ca254674f1ce.tar.bz2
yuzu-53cf91d151d1e3d289917b63cf17ca254674f1ce.tar.lz
yuzu-53cf91d151d1e3d289917b63cf17ca254674f1ce.tar.xz
yuzu-53cf91d151d1e3d289917b63cf17ca254674f1ce.tar.zst
yuzu-53cf91d151d1e3d289917b63cf17ca254674f1ce.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp
index b59eae55c..f9b82b504 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp
@@ -150,9 +150,11 @@ NvResult nvhost_ctrl::IocCtrlEventWait(const std::vector<u8>& input, std::vector
params.value |= event_id;
event.event->GetWritableEvent().Clear();
if (events_interface.failed[event_id]) {
- system.stallForGPU(true);
- gpu.WaitFence(params.syncpt_id, target_value);
- system.stallForGPU(false);
+ {
+ auto lk = system.StallCPU();
+ gpu.WaitFence(params.syncpt_id, target_value);
+ system.UnstallCPU();
+ }
std::memcpy(output.data(), &params, sizeof(params));
events_interface.failed[event_id] = false;
return NvResult::Success;