2018-06-21 06:49:43 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-07-31 12:06:09 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
|
|
|
|
2018-06-21 06:49:43 +00:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/common_types.h"
|
2018-06-21 07:40:29 +00:00
|
|
|
#include "core/core.h"
|
2018-08-31 16:21:34 +00:00
|
|
|
#include "core/core_cpu.h"
|
2019-03-05 16:54:06 +00:00
|
|
|
#include "core/hle/kernel/address_arbiter.h"
|
2018-06-21 07:40:29 +00:00
|
|
|
#include "core/hle/kernel/errors.h"
|
2018-08-31 16:21:34 +00:00
|
|
|
#include "core/hle/kernel/scheduler.h"
|
2018-06-21 06:49:43 +00:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2018-07-31 12:06:09 +00:00
|
|
|
#include "core/hle/result.h"
|
2018-06-21 06:49:43 +00:00
|
|
|
#include "core/memory.h"
|
|
|
|
|
2019-03-05 16:54:06 +00:00
|
|
|
namespace Kernel {
|
|
|
|
namespace {
|
2018-06-22 03:05:34 +00:00
|
|
|
// Wake up num_to_wake (or all) threads in a vector.
|
2019-11-25 01:15:51 +00:00
|
|
|
void WakeThreads(const std::vector<std::shared_ptr<Thread>>& waiting_threads, s32 num_to_wake) {
|
2019-03-29 21:13:00 +00:00
|
|
|
auto& system = Core::System::GetInstance();
|
2018-06-22 03:05:34 +00:00
|
|
|
// Only process up to 'target' threads, unless 'target' is <= 0, in which case process
|
|
|
|
// them all.
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t last = waiting_threads.size();
|
2019-03-05 17:22:13 +00:00
|
|
|
if (num_to_wake > 0) {
|
2019-03-13 23:04:40 +00:00
|
|
|
last = std::min(last, static_cast<std::size_t>(num_to_wake));
|
2019-03-05 17:22:13 +00:00
|
|
|
}
|
2018-06-22 03:05:34 +00:00
|
|
|
|
|
|
|
// Signal the waiting threads.
|
2018-09-15 13:21:06 +00:00
|
|
|
for (std::size_t i = 0; i < last; i++) {
|
2018-10-03 22:47:57 +00:00
|
|
|
ASSERT(waiting_threads[i]->GetStatus() == ThreadStatus::WaitArb);
|
2018-06-22 03:05:34 +00:00
|
|
|
waiting_threads[i]->SetWaitSynchronizationResult(RESULT_SUCCESS);
|
2018-10-03 22:47:57 +00:00
|
|
|
waiting_threads[i]->SetArbiterWaitAddress(0);
|
2018-06-22 03:05:34 +00:00
|
|
|
waiting_threads[i]->ResumeFromWait();
|
2019-04-02 13:22:53 +00:00
|
|
|
system.PrepareReschedule(waiting_threads[i]->GetProcessorID());
|
2018-06-22 03:05:34 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-05 16:54:06 +00:00
|
|
|
} // Anonymous namespace
|
2018-06-22 03:05:34 +00:00
|
|
|
|
2019-03-05 17:28:10 +00:00
|
|
|
AddressArbiter::AddressArbiter(Core::System& system) : system{system} {}
|
2019-03-05 16:54:06 +00:00
|
|
|
AddressArbiter::~AddressArbiter() = default;
|
|
|
|
|
2019-03-07 23:42:44 +00:00
|
|
|
ResultCode AddressArbiter::SignalToAddress(VAddr address, SignalType type, s32 value,
|
|
|
|
s32 num_to_wake) {
|
|
|
|
switch (type) {
|
|
|
|
case SignalType::Signal:
|
|
|
|
return SignalToAddressOnly(address, num_to_wake);
|
|
|
|
case SignalType::IncrementAndSignalIfEqual:
|
|
|
|
return IncrementAndSignalToAddressIfEqual(address, value, num_to_wake);
|
|
|
|
case SignalType::ModifyByWaitingCountAndSignalIfEqual:
|
|
|
|
return ModifyByWaitingCountAndSignalToAddressIfEqual(address, value, num_to_wake);
|
|
|
|
default:
|
|
|
|
return ERR_INVALID_ENUM_VALUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultCode AddressArbiter::SignalToAddressOnly(VAddr address, s32 num_to_wake) {
|
2019-11-25 01:15:51 +00:00
|
|
|
const std::vector<std::shared_ptr<Thread>> waiting_threads =
|
|
|
|
GetThreadsWaitingOnAddress(address);
|
2018-06-22 03:05:34 +00:00
|
|
|
WakeThreads(waiting_threads, num_to_wake);
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-03-05 16:54:06 +00:00
|
|
|
ResultCode AddressArbiter::IncrementAndSignalToAddressIfEqual(VAddr address, s32 value,
|
|
|
|
s32 num_to_wake) {
|
2019-11-26 21:29:34 +00:00
|
|
|
auto& memory = system.Memory();
|
|
|
|
|
2018-06-22 03:05:34 +00:00
|
|
|
// Ensure that we can write to the address.
|
2019-11-26 21:29:34 +00:00
|
|
|
if (!memory.IsValidVirtualAddress(address)) {
|
2018-06-22 03:05:34 +00:00
|
|
|
return ERR_INVALID_ADDRESS_STATE;
|
|
|
|
}
|
|
|
|
|
2019-11-26 21:29:34 +00:00
|
|
|
if (static_cast<s32>(memory.Read32(address)) != value) {
|
2018-06-22 03:05:34 +00:00
|
|
|
return ERR_INVALID_STATE;
|
|
|
|
}
|
|
|
|
|
2019-11-26 22:39:57 +00:00
|
|
|
memory.Write32(address, static_cast<u32>(value + 1));
|
2019-03-07 23:42:44 +00:00
|
|
|
return SignalToAddressOnly(address, num_to_wake);
|
2018-06-22 03:05:34 +00:00
|
|
|
}
|
|
|
|
|
2019-03-05 16:54:06 +00:00
|
|
|
ResultCode AddressArbiter::ModifyByWaitingCountAndSignalToAddressIfEqual(VAddr address, s32 value,
|
|
|
|
s32 num_to_wake) {
|
2019-11-26 21:29:34 +00:00
|
|
|
auto& memory = system.Memory();
|
|
|
|
|
2018-06-22 03:05:34 +00:00
|
|
|
// Ensure that we can write to the address.
|
2019-11-26 21:29:34 +00:00
|
|
|
if (!memory.IsValidVirtualAddress(address)) {
|
2018-06-22 03:05:34 +00:00
|
|
|
return ERR_INVALID_ADDRESS_STATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get threads waiting on the address.
|
2019-11-25 01:15:51 +00:00
|
|
|
const std::vector<std::shared_ptr<Thread>> waiting_threads =
|
|
|
|
GetThreadsWaitingOnAddress(address);
|
2018-06-22 03:05:34 +00:00
|
|
|
|
|
|
|
// Determine the modified value depending on the waiting count.
|
|
|
|
s32 updated_value;
|
2019-10-07 23:09:57 +00:00
|
|
|
if (num_to_wake <= 0) {
|
|
|
|
if (waiting_threads.empty()) {
|
|
|
|
updated_value = value + 1;
|
|
|
|
} else {
|
|
|
|
updated_value = value - 1;
|
|
|
|
}
|
2018-06-22 03:05:34 +00:00
|
|
|
} else {
|
2019-10-07 23:09:57 +00:00
|
|
|
if (waiting_threads.empty()) {
|
|
|
|
updated_value = value + 1;
|
|
|
|
} else if (waiting_threads.size() <= static_cast<u32>(num_to_wake)) {
|
|
|
|
updated_value = value - 1;
|
|
|
|
} else {
|
|
|
|
updated_value = value;
|
|
|
|
}
|
2018-06-22 03:05:34 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 21:29:34 +00:00
|
|
|
if (static_cast<s32>(memory.Read32(address)) != value) {
|
2018-06-22 03:05:34 +00:00
|
|
|
return ERR_INVALID_STATE;
|
|
|
|
}
|
|
|
|
|
2019-11-26 22:39:57 +00:00
|
|
|
memory.Write32(address, static_cast<u32>(updated_value));
|
2018-06-22 03:05:34 +00:00
|
|
|
WakeThreads(waiting_threads, num_to_wake);
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-03-07 23:34:22 +00:00
|
|
|
ResultCode AddressArbiter::WaitForAddress(VAddr address, ArbitrationType type, s32 value,
|
|
|
|
s64 timeout_ns) {
|
|
|
|
switch (type) {
|
|
|
|
case ArbitrationType::WaitIfLessThan:
|
|
|
|
return WaitForAddressIfLessThan(address, value, timeout_ns, false);
|
|
|
|
case ArbitrationType::DecrementAndWaitIfLessThan:
|
|
|
|
return WaitForAddressIfLessThan(address, value, timeout_ns, true);
|
|
|
|
case ArbitrationType::WaitIfEqual:
|
|
|
|
return WaitForAddressIfEqual(address, value, timeout_ns);
|
|
|
|
default:
|
|
|
|
return ERR_INVALID_ENUM_VALUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-05 16:54:06 +00:00
|
|
|
ResultCode AddressArbiter::WaitForAddressIfLessThan(VAddr address, s32 value, s64 timeout,
|
|
|
|
bool should_decrement) {
|
2019-11-26 21:29:34 +00:00
|
|
|
auto& memory = system.Memory();
|
|
|
|
|
2018-06-22 03:05:34 +00:00
|
|
|
// Ensure that we can read the address.
|
2019-11-26 21:29:34 +00:00
|
|
|
if (!memory.IsValidVirtualAddress(address)) {
|
2018-06-22 03:05:34 +00:00
|
|
|
return ERR_INVALID_ADDRESS_STATE;
|
|
|
|
}
|
|
|
|
|
2019-11-26 21:29:34 +00:00
|
|
|
const s32 cur_value = static_cast<s32>(memory.Read32(address));
|
2019-03-05 17:22:13 +00:00
|
|
|
if (cur_value >= value) {
|
2018-06-22 03:05:34 +00:00
|
|
|
return ERR_INVALID_STATE;
|
|
|
|
}
|
2019-03-05 17:22:13 +00:00
|
|
|
|
|
|
|
if (should_decrement) {
|
2019-11-26 22:39:57 +00:00
|
|
|
memory.Write32(address, static_cast<u32>(cur_value - 1));
|
2019-03-05 17:22:13 +00:00
|
|
|
}
|
|
|
|
|
2018-06-22 03:05:34 +00:00
|
|
|
// Short-circuit without rescheduling, if timeout is zero.
|
|
|
|
if (timeout == 0) {
|
|
|
|
return RESULT_TIMEOUT;
|
|
|
|
}
|
|
|
|
|
2019-03-07 23:34:22 +00:00
|
|
|
return WaitForAddressImpl(address, timeout);
|
2018-06-22 03:05:34 +00:00
|
|
|
}
|
|
|
|
|
2019-03-05 16:54:06 +00:00
|
|
|
ResultCode AddressArbiter::WaitForAddressIfEqual(VAddr address, s32 value, s64 timeout) {
|
2019-11-26 21:29:34 +00:00
|
|
|
auto& memory = system.Memory();
|
|
|
|
|
2018-06-22 03:05:34 +00:00
|
|
|
// Ensure that we can read the address.
|
2019-11-26 21:29:34 +00:00
|
|
|
if (!memory.IsValidVirtualAddress(address)) {
|
2018-06-22 03:05:34 +00:00
|
|
|
return ERR_INVALID_ADDRESS_STATE;
|
|
|
|
}
|
2019-11-26 21:29:34 +00:00
|
|
|
|
2018-06-22 03:05:34 +00:00
|
|
|
// Only wait for the address if equal.
|
2019-11-26 21:29:34 +00:00
|
|
|
if (static_cast<s32>(memory.Read32(address)) != value) {
|
2018-06-22 03:05:34 +00:00
|
|
|
return ERR_INVALID_STATE;
|
|
|
|
}
|
2019-11-26 21:29:34 +00:00
|
|
|
|
|
|
|
// Short-circuit without rescheduling if timeout is zero.
|
2018-06-22 03:05:34 +00:00
|
|
|
if (timeout == 0) {
|
|
|
|
return RESULT_TIMEOUT;
|
|
|
|
}
|
|
|
|
|
2019-03-07 23:34:22 +00:00
|
|
|
return WaitForAddressImpl(address, timeout);
|
2018-06-22 03:05:34 +00:00
|
|
|
}
|
2019-03-05 16:54:06 +00:00
|
|
|
|
2019-03-07 23:34:22 +00:00
|
|
|
ResultCode AddressArbiter::WaitForAddressImpl(VAddr address, s64 timeout) {
|
2019-11-25 01:15:51 +00:00
|
|
|
Thread* current_thread = system.CurrentScheduler().GetCurrentThread();
|
2019-03-05 16:54:06 +00:00
|
|
|
current_thread->SetArbiterWaitAddress(address);
|
|
|
|
current_thread->SetStatus(ThreadStatus::WaitArb);
|
|
|
|
current_thread->InvalidateWakeupCallback();
|
|
|
|
current_thread->WakeAfterDelay(timeout);
|
|
|
|
|
2019-04-02 13:22:53 +00:00
|
|
|
system.PrepareReschedule(current_thread->GetProcessorID());
|
2019-03-05 16:54:06 +00:00
|
|
|
return RESULT_TIMEOUT;
|
|
|
|
}
|
|
|
|
|
2019-11-25 01:15:51 +00:00
|
|
|
std::vector<std::shared_ptr<Thread>> AddressArbiter::GetThreadsWaitingOnAddress(
|
|
|
|
VAddr address) const {
|
2019-03-05 16:54:06 +00:00
|
|
|
|
|
|
|
// Retrieve all threads that are waiting for this address.
|
2019-11-25 01:15:51 +00:00
|
|
|
std::vector<std::shared_ptr<Thread>> threads;
|
2019-03-29 21:13:00 +00:00
|
|
|
const auto& scheduler = system.GlobalScheduler();
|
|
|
|
const auto& thread_list = scheduler.GetThreadList();
|
|
|
|
|
|
|
|
for (const auto& thread : thread_list) {
|
|
|
|
if (thread->GetArbiterWaitAddress() == address) {
|
|
|
|
threads.push_back(thread);
|
|
|
|
}
|
|
|
|
}
|
2019-03-05 16:54:06 +00:00
|
|
|
|
|
|
|
// Sort them by priority, such that the highest priority ones come first.
|
|
|
|
std::sort(threads.begin(), threads.end(),
|
2019-11-25 01:15:51 +00:00
|
|
|
[](const std::shared_ptr<Thread>& lhs, const std::shared_ptr<Thread>& rhs) {
|
2019-03-05 16:54:06 +00:00
|
|
|
return lhs->GetPriority() < rhs->GetPriority();
|
|
|
|
});
|
|
|
|
|
|
|
|
return threads;
|
|
|
|
}
|
|
|
|
} // namespace Kernel
|