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.
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/logging/log.h"
|
2014-07-07 03:15:40 +00:00
|
|
|
|
2015-05-13 01:38:29 +00:00
|
|
|
#include "core/memory.h"
|
2014-07-07 03:15:40 +00:00
|
|
|
|
|
|
|
#include "core/hle/hle.h"
|
|
|
|
#include "core/hle/kernel/address_arbiter.h"
|
|
|
|
#include "core/hle/kernel/thread.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Kernel namespace
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
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
|
|
|
|
2015-01-11 16:46:49 +00:00
|
|
|
ResultCode AddressArbiter::ArbitrateAddress(ArbitrationType type, VAddr address, s32 value,
|
2016-09-18 00:38:01 +00:00
|
|
|
u64 nanoseconds) {
|
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) {
|
2015-01-18 18:56:40 +00:00
|
|
|
ArbitrateAllThreads(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++)
|
2015-01-18 18:56:40 +00:00
|
|
|
ArbitrateHighestPriorityThread(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) {
|
2015-01-18 18:56:40 +00:00
|
|
|
Kernel::WaitCurrentThread_ArbitrateAddress(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) {
|
2015-01-18 18:56:40 +00:00
|
|
|
Kernel::WaitCurrentThread_ArbitrateAddress(address);
|
2015-01-31 01:07:54 +00:00
|
|
|
GetCurrentThread()->WakeAfterDelay(nanoseconds);
|
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);
|
2015-01-18 18:56:40 +00:00
|
|
|
Kernel::WaitCurrentThread_ArbitrateAddress(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);
|
2015-01-18 18:56:40 +00:00
|
|
|
Kernel::WaitCurrentThread_ArbitrateAddress(address);
|
2015-01-31 01:07:54 +00:00
|
|
|
GetCurrentThread()->WakeAfterDelay(nanoseconds);
|
2015-01-13 19:49:26 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-07-07 03:15:40 +00:00
|
|
|
|
|
|
|
default:
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_ERROR(Kernel, "unknown type=%d", type);
|
2016-09-18 00:38:01 +00:00
|
|
|
return ResultCode(ErrorDescription::InvalidEnumValue, ErrorModule::Kernel,
|
|
|
|
ErrorSummary::WrongArgument, ErrorLevel::Usage);
|
2014-07-07 03:15:40 +00:00
|
|
|
}
|
2015-05-20 00:24:30 +00:00
|
|
|
|
|
|
|
HLE::Reschedule(__func__);
|
|
|
|
|
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) {
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
return ResultCode(ErrorDescription::Timeout, ErrorModule::OS, ErrorSummary::StatusChanged,
|
|
|
|
ErrorLevel::Info);
|
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
|