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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-05-29 23:45:42 +00:00
|
|
|
#include "core/hle/result.h"
|
2014-07-07 03:15:40 +00:00
|
|
|
|
|
|
|
// Address arbiters are an underlying kernel synchronization object that can be created/used via
|
|
|
|
// supervisor calls (SVCs). They function as sort of a global lock. Typically, games/other CTR
|
|
|
|
// applications use them as an underlying mechanism to implement thread-safe barriers, events, and
|
2014-11-19 08:49:13 +00:00
|
|
|
// semphores.
|
2014-07-07 03:15:40 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Kernel namespace
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
|
|
enum class ArbitrationType : u32 {
|
|
|
|
Signal,
|
|
|
|
WaitIfLessThan,
|
|
|
|
DecrementAndWaitIfLessThan,
|
|
|
|
WaitIfLessThanWithTimeout,
|
|
|
|
DecrementAndWaitIfLessThanWithTimeout,
|
|
|
|
};
|
|
|
|
|
2015-01-27 04:40:21 +00:00
|
|
|
class AddressArbiter final : public Object {
|
2015-01-11 16:46:49 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Creates an address arbiter.
|
|
|
|
*
|
|
|
|
* @param name Optional name used for debugging.
|
|
|
|
* @returns The created AddressArbiter.
|
|
|
|
*/
|
2015-02-01 02:14:40 +00:00
|
|
|
static SharedPtr<AddressArbiter> Create(std::string name = "Unknown");
|
2014-07-07 03:15:40 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
std::string GetTypeName() const override {
|
|
|
|
return "Arbiter";
|
|
|
|
}
|
|
|
|
std::string GetName() const override {
|
|
|
|
return name;
|
|
|
|
}
|
2015-01-11 16:46:49 +00:00
|
|
|
|
|
|
|
static const HandleType HANDLE_TYPE = HandleType::AddressArbiter;
|
2016-09-18 00:38:01 +00:00
|
|
|
HandleType GetHandleType() const override {
|
|
|
|
return HANDLE_TYPE;
|
|
|
|
}
|
2015-01-11 16:46:49 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
std::string name; ///< Name of address arbiter object (optional)
|
2015-01-11 16:46:49 +00:00
|
|
|
|
|
|
|
ResultCode ArbitrateAddress(ArbitrationType type, VAddr address, s32 value, u64 nanoseconds);
|
|
|
|
|
|
|
|
private:
|
2015-02-01 00:56:59 +00:00
|
|
|
AddressArbiter();
|
|
|
|
~AddressArbiter() override;
|
2015-01-11 16:46:49 +00:00
|
|
|
};
|
2014-07-07 03:15:40 +00:00
|
|
|
|
2018-01-20 07:48:02 +00:00
|
|
|
} // namespace Kernel
|