2014-07-07 03:15:40 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-07-07 03:15:40 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-11-08 23:07:22 +00:00
|
|
|
#include <algorithm>
|
2014-07-07 03:15:40 +00:00
|
|
|
#include "common/common_types.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/logging/log.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/hle/kernel/address_arbiter.h"
|
2017-05-21 07:11:36 +00:00
|
|
|
#include "core/hle/kernel/errors.h"
|
2014-07-07 03:15:40 +00:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "core/memory.h"
|
2014-07-07 03:15:40 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Kernel namespace
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2017-11-08 23:07:22 +00:00
|
|
|
void AddressArbiter::WaitThread(SharedPtr<Thread> thread, VAddr wait_address) {
|
|
|
|
thread->wait_address = wait_address;
|
|
|
|
thread->status = THREADSTATUS_WAIT_ARB;
|
|
|
|
waiting_threads.emplace_back(std::move(thread));
|
|
|
|
}
|
|
|
|
|
|
|
|
void AddressArbiter::ResumeAllThreads(VAddr address) {
|
|
|
|
// Determine which threads are waiting on this address, those should be woken up.
|
|
|
|
auto itr = std::stable_partition(waiting_threads.begin(), waiting_threads.end(),
|
|
|
|
[address](const auto& thread) {
|
|
|
|
ASSERT_MSG(thread->status == THREADSTATUS_WAIT_ARB,
|
|
|
|
"Inconsistent AddressArbiter state");
|
|
|
|
return thread->wait_address != address;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Wake up all the found threads
|
|
|
|
std::for_each(itr, waiting_threads.end(), [](auto& thread) { thread->ResumeFromWait(); });
|
|
|
|
|
|
|
|
// Remove the woken up threads from the wait list.
|
|
|
|
waiting_threads.erase(itr, waiting_threads.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
SharedPtr<Thread> AddressArbiter::ResumeHighestPriorityThread(VAddr address) {
|
|
|
|
// Determine which threads are waiting on this address, those should be considered for wakeup.
|
|
|
|
auto matches_start = std::stable_partition(
|
|
|
|
waiting_threads.begin(), waiting_threads.end(), [address](const auto& thread) {
|
|
|
|
ASSERT_MSG(thread->status == THREADSTATUS_WAIT_ARB,
|
|
|
|
"Inconsistent AddressArbiter state");
|
|
|
|
return thread->wait_address != address;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Iterate through threads, find highest priority thread that is waiting to be arbitrated.
|
|
|
|
// Note: The real kernel will pick the first thread in the list if more than one have the
|
|
|
|
// same highest priority value. Lower priority values mean higher priority.
|
|
|
|
auto itr = std::min_element(matches_start, waiting_threads.end(),
|
|
|
|
[](const auto& lhs, const auto& rhs) {
|
|
|
|
return lhs->current_priority < rhs->current_priority;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (itr == waiting_threads.end())
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
auto thread = *itr;
|
|
|
|
thread->ResumeFromWait();
|
|
|
|
|
|
|
|
waiting_threads.erase(itr);
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
2016-09-19 01:01:46 +00:00
|
|
|
AddressArbiter::AddressArbiter() {}
|
|
|
|
AddressArbiter::~AddressArbiter() {}
|
2015-02-01 00:56:59 +00:00
|
|
|
|
2015-02-01 02:14:40 +00:00
|
|
|
SharedPtr<AddressArbiter> AddressArbiter::Create(std::string name) {
|
2015-01-11 16:46:49 +00:00
|
|
|
SharedPtr<AddressArbiter> address_arbiter(new AddressArbiter);
|
2014-07-07 03:15:40 +00:00
|
|
|
|
2015-01-11 16:46:49 +00:00
|
|
|
address_arbiter->name = std::move(name);
|
2014-07-07 03:15:40 +00:00
|
|
|
|
2015-02-01 02:14:40 +00:00
|
|
|
return address_arbiter;
|
2015-01-11 16:46:49 +00:00
|
|
|
}
|
2014-12-22 13:07:22 +00:00
|
|
|
|
2017-11-08 23:07:22 +00:00
|
|
|
ResultCode AddressArbiter::ArbitrateAddress(SharedPtr<Thread> thread, ArbitrationType type,
|
|
|
|
VAddr address, s32 value, u64 nanoseconds) {
|
2017-12-06 14:06:45 +00:00
|
|
|
|
|
|
|
auto timeout_callback = [this](ThreadWakeupReason reason, SharedPtr<Thread> thread,
|
|
|
|
SharedPtr<WaitObject> object) {
|
|
|
|
ASSERT(reason == ThreadWakeupReason::Timeout);
|
|
|
|
// Remove the newly-awakened thread from the Arbiter's waiting list.
|
|
|
|
waiting_threads.erase(std::remove(waiting_threads.begin(), waiting_threads.end(), thread),
|
|
|
|
waiting_threads.end());
|
|
|
|
};
|
|
|
|
|
2014-07-07 03:15:40 +00:00
|
|
|
switch (type) {
|
|
|
|
|
|
|
|
// Signal thread(s) waiting for arbitrate address...
|
|
|
|
case ArbitrationType::Signal:
|
|
|
|
// Negative value means resume all threads
|
|
|
|
if (value < 0) {
|
2017-11-08 23:07:22 +00:00
|
|
|
ResumeAllThreads(address);
|
2014-07-07 03:15:40 +00:00
|
|
|
} else {
|
|
|
|
// Resume first N threads
|
2016-09-18 00:38:01 +00:00
|
|
|
for (int i = 0; i < value; i++)
|
2017-11-08 23:07:22 +00:00
|
|
|
ResumeHighestPriorityThread(address);
|
2014-07-07 03:15:40 +00:00
|
|
|
}
|
2014-07-22 01:31:21 +00:00
|
|
|
break;
|
2014-07-07 03:15:40 +00:00
|
|
|
|
|
|
|
// Wait current thread (acquire the arbiter)...
|
|
|
|
case ArbitrationType::WaitIfLessThan:
|
2015-12-27 23:44:42 +00:00
|
|
|
if ((s32)Memory::Read32(address) < value) {
|
2017-11-08 23:07:22 +00:00
|
|
|
WaitThread(std::move(thread), address);
|
2014-07-07 03:15:40 +00:00
|
|
|
}
|
2014-07-22 01:31:21 +00:00
|
|
|
break;
|
2015-01-13 19:49:26 +00:00
|
|
|
case ArbitrationType::WaitIfLessThanWithTimeout:
|
2015-12-27 23:44:42 +00:00
|
|
|
if ((s32)Memory::Read32(address) < value) {
|
2017-12-06 14:06:45 +00:00
|
|
|
thread->wakeup_callback = timeout_callback;
|
2017-11-08 23:07:22 +00:00
|
|
|
thread->WakeAfterDelay(nanoseconds);
|
|
|
|
WaitThread(std::move(thread), address);
|
2015-01-13 19:49:26 +00:00
|
|
|
}
|
|
|
|
break;
|
2016-09-18 00:38:01 +00:00
|
|
|
case ArbitrationType::DecrementAndWaitIfLessThan: {
|
2015-12-27 23:44:42 +00:00
|
|
|
s32 memory_value = Memory::Read32(address);
|
|
|
|
if (memory_value < value) {
|
|
|
|
// Only change the memory value if the thread should wait
|
|
|
|
Memory::Write32(address, (s32)memory_value - 1);
|
2017-11-08 23:07:22 +00:00
|
|
|
WaitThread(std::move(thread), address);
|
2015-01-03 17:09:11 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2016-09-18 00:38:01 +00:00
|
|
|
case ArbitrationType::DecrementAndWaitIfLessThanWithTimeout: {
|
2015-12-27 23:44:42 +00:00
|
|
|
s32 memory_value = Memory::Read32(address);
|
|
|
|
if (memory_value < value) {
|
|
|
|
// Only change the memory value if the thread should wait
|
|
|
|
Memory::Write32(address, (s32)memory_value - 1);
|
2017-12-06 14:06:45 +00:00
|
|
|
thread->wakeup_callback = timeout_callback;
|
2017-11-08 23:07:22 +00:00
|
|
|
thread->WakeAfterDelay(nanoseconds);
|
|
|
|
WaitThread(std::move(thread), address);
|
2015-01-13 19:49:26 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-07-07 03:15:40 +00:00
|
|
|
|
|
|
|
default:
|
2018-06-22 22:49:31 +00:00
|
|
|
NGLOG_ERROR(Kernel, "unknown type={}", static_cast<u32>(type));
|
2017-05-21 07:11:36 +00:00
|
|
|
return ERR_INVALID_ENUM_VALUE_FND;
|
2014-07-07 03:15:40 +00:00
|
|
|
}
|
2015-05-20 00:24:30 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
// The calls that use a timeout seem to always return a Timeout error even if they did not put
|
|
|
|
// the thread to sleep
|
2015-12-27 23:44:42 +00:00
|
|
|
if (type == ArbitrationType::WaitIfLessThanWithTimeout ||
|
|
|
|
type == ArbitrationType::DecrementAndWaitIfLessThanWithTimeout) {
|
|
|
|
|
2017-05-21 07:11:36 +00:00
|
|
|
return RESULT_TIMEOUT;
|
2015-12-27 23:44:42 +00:00
|
|
|
}
|
2014-10-23 03:20:01 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-07-07 03:15:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Kernel
|