2014-12-04 19:45:47 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
#include "common/common.h"
|
|
|
|
|
|
|
|
#include "core/core_timing.h"
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
#include "core/hle/kernel/timer.h"
|
|
|
|
#include "core/hle/kernel/thread.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2015-01-15 00:22:50 +00:00
|
|
|
class Timer : public WaitObject {
|
2014-12-04 19:45:47 +00:00
|
|
|
public:
|
|
|
|
std::string GetTypeName() const override { return "Timer"; }
|
|
|
|
std::string GetName() const override { return name; }
|
|
|
|
|
|
|
|
static const HandleType HANDLE_TYPE = HandleType::Timer;
|
|
|
|
HandleType GetHandleType() const override { return HANDLE_TYPE; }
|
|
|
|
|
|
|
|
ResetType reset_type; ///< The ResetType of this timer
|
|
|
|
|
|
|
|
bool signaled; ///< Whether the timer has been signaled or not
|
|
|
|
std::string name; ///< Name of timer (optional)
|
|
|
|
|
|
|
|
u64 initial_delay; ///< The delay until the timer fires for the first time
|
|
|
|
u64 interval_delay; ///< The delay until the timer fires after the first time
|
|
|
|
|
2015-01-18 03:23:49 +00:00
|
|
|
ResultVal<bool> Wait(unsigned index) override {
|
2014-12-04 19:45:47 +00:00
|
|
|
bool wait = !signaled;
|
|
|
|
if (wait) {
|
2015-01-15 00:22:50 +00:00
|
|
|
AddWaitingThread(GetCurrentThread());
|
2015-01-17 07:03:44 +00:00
|
|
|
Kernel::WaitCurrentThread_WaitSynchronization(WAITTYPE_TIMER, this, index);
|
2014-12-04 19:45:47 +00:00
|
|
|
}
|
|
|
|
return MakeResult<bool>(wait);
|
|
|
|
}
|
2015-01-18 03:23:49 +00:00
|
|
|
|
|
|
|
ResultVal<bool> Acquire() override {
|
|
|
|
return MakeResult<bool>(true);
|
|
|
|
}
|
2014-12-04 19:45:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a timer.
|
|
|
|
* @param handle Reference to handle for the newly created timer
|
|
|
|
* @param reset_type ResetType describing how to create timer
|
|
|
|
* @param name Optional name of timer
|
|
|
|
* @return Newly created Timer object
|
|
|
|
*/
|
|
|
|
Timer* CreateTimer(Handle& handle, const ResetType reset_type, const std::string& name) {
|
|
|
|
Timer* timer = new Timer;
|
|
|
|
|
|
|
|
handle = Kernel::g_handle_table.Create(timer).ValueOr(INVALID_HANDLE);
|
|
|
|
|
|
|
|
timer->reset_type = reset_type;
|
|
|
|
timer->signaled = false;
|
|
|
|
timer->name = name;
|
|
|
|
timer->initial_delay = 0;
|
|
|
|
timer->interval_delay = 0;
|
|
|
|
return timer;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultCode CreateTimer(Handle* handle, const ResetType reset_type, const std::string& name) {
|
|
|
|
CreateTimer(*handle, reset_type, name);
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultCode ClearTimer(Handle handle) {
|
2014-12-29 12:55:30 +00:00
|
|
|
SharedPtr<Timer> timer = Kernel::g_handle_table.Get<Timer>(handle);
|
2014-12-04 19:45:47 +00:00
|
|
|
|
|
|
|
if (timer == nullptr)
|
|
|
|
return InvalidHandle(ErrorModule::Kernel);
|
|
|
|
|
|
|
|
timer->signaled = false;
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The event type of the generic timer callback event
|
|
|
|
static int TimerCallbackEventType = -1;
|
|
|
|
|
|
|
|
/// The timer callback event, called when a timer is fired
|
|
|
|
static void TimerCallback(u64 timer_handle, int cycles_late) {
|
2014-12-29 12:55:30 +00:00
|
|
|
SharedPtr<Timer> timer = Kernel::g_handle_table.Get<Timer>(timer_handle);
|
2014-12-04 19:45:47 +00:00
|
|
|
|
|
|
|
if (timer == nullptr) {
|
|
|
|
LOG_CRITICAL(Kernel, "Callback fired for invalid timer %u", timer_handle);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_TRACE(Kernel, "Timer %u fired", timer_handle);
|
|
|
|
|
|
|
|
timer->signaled = true;
|
|
|
|
|
|
|
|
// Resume all waiting threads
|
2015-01-17 07:03:44 +00:00
|
|
|
timer->ReleaseAllWaitingThreads();
|
2014-12-04 19:45:47 +00:00
|
|
|
|
|
|
|
if (timer->reset_type == RESETTYPE_ONESHOT)
|
|
|
|
timer->signaled = false;
|
|
|
|
|
|
|
|
if (timer->interval_delay != 0) {
|
|
|
|
// Reschedule the timer with the interval delay
|
|
|
|
u64 interval_microseconds = timer->interval_delay / 1000;
|
|
|
|
CoreTiming::ScheduleEvent(usToCycles(interval_microseconds) - cycles_late,
|
|
|
|
TimerCallbackEventType, timer_handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultCode SetTimer(Handle handle, s64 initial, s64 interval) {
|
2014-12-29 12:55:30 +00:00
|
|
|
SharedPtr<Timer> timer = Kernel::g_handle_table.Get<Timer>(handle);
|
2014-12-04 19:45:47 +00:00
|
|
|
|
|
|
|
if (timer == nullptr)
|
|
|
|
return InvalidHandle(ErrorModule::Kernel);
|
|
|
|
|
|
|
|
timer->initial_delay = initial;
|
|
|
|
timer->interval_delay = interval;
|
|
|
|
|
|
|
|
u64 initial_microseconds = initial / 1000;
|
|
|
|
CoreTiming::ScheduleEvent(usToCycles(initial_microseconds), TimerCallbackEventType, handle);
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultCode CancelTimer(Handle handle) {
|
2014-12-29 12:55:30 +00:00
|
|
|
SharedPtr<Timer> timer = Kernel::g_handle_table.Get<Timer>(handle);
|
2014-12-04 19:45:47 +00:00
|
|
|
|
|
|
|
if (timer == nullptr)
|
|
|
|
return InvalidHandle(ErrorModule::Kernel);
|
|
|
|
|
|
|
|
CoreTiming::UnscheduleEvent(TimerCallbackEventType, handle);
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TimersInit() {
|
|
|
|
TimerCallbackEventType = CoreTiming::RegisterEvent("TimerCallback", TimerCallback);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TimersShutdown() {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|