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.
|
|
|
|
|
2015-09-16 13:38:12 +01:00
|
|
|
#include <cinttypes>
|
2018-10-19 02:40:22 +01:00
|
|
|
#include <unordered_map>
|
2015-05-06 08:06:12 +01:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
2018-10-27 20:53:20 +01:00
|
|
|
#include "core/core.h"
|
2017-05-30 00:45:42 +01:00
|
|
|
#include "core/hle/kernel/handle_table.h"
|
2018-08-02 03:40:00 +01:00
|
|
|
#include "core/hle/kernel/object.h"
|
2014-12-04 19:45:47 +00:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2016-09-21 07:52:38 +01:00
|
|
|
#include "core/hle/kernel/timer.h"
|
2014-12-04 19:45:47 +00:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2018-10-23 19:17:30 +01:00
|
|
|
Timer::Timer(KernelSystem& kernel) : WaitObject(kernel), timer_manager(kernel.GetTimerManager()) {}
|
2018-10-19 02:40:22 +01:00
|
|
|
Timer::~Timer() {
|
|
|
|
Cancel();
|
2018-10-23 19:17:30 +01:00
|
|
|
timer_manager.timer_callback_table.erase(callback_id);
|
2018-10-19 02:40:22 +01:00
|
|
|
}
|
2015-02-01 00:56:59 +00:00
|
|
|
|
2018-10-12 21:26:23 +01:00
|
|
|
SharedPtr<Timer> KernelSystem::CreateTimer(ResetType reset_type, std::string name) {
|
|
|
|
SharedPtr<Timer> timer(new Timer(*this));
|
2014-12-04 19:45:47 +00:00
|
|
|
|
|
|
|
timer->reset_type = reset_type;
|
|
|
|
timer->signaled = false;
|
2015-01-23 04:19:33 +00:00
|
|
|
timer->name = std::move(name);
|
2014-12-04 19:45:47 +00:00
|
|
|
timer->initial_delay = 0;
|
|
|
|
timer->interval_delay = 0;
|
2018-10-23 19:17:30 +01:00
|
|
|
timer->callback_id = ++timer_manager->next_timer_callback_id;
|
|
|
|
timer_manager->timer_callback_table[timer->callback_id] = timer.get();
|
2015-02-01 02:14:40 +00:00
|
|
|
|
|
|
|
return timer;
|
2014-12-04 19:45:47 +00:00
|
|
|
}
|
|
|
|
|
2017-01-01 21:53:22 +00:00
|
|
|
bool Timer::ShouldWait(Thread* thread) const {
|
2015-01-23 04:19:33 +00:00
|
|
|
return !signaled;
|
2014-12-04 19:45:47 +00:00
|
|
|
}
|
|
|
|
|
2017-01-01 21:53:22 +00:00
|
|
|
void Timer::Acquire(Thread* thread) {
|
|
|
|
ASSERT_MSG(!ShouldWait(thread), "object unavailable!");
|
2015-12-30 01:35:25 +00:00
|
|
|
|
2016-03-12 20:06:31 +00:00
|
|
|
if (reset_type == ResetType::OneShot)
|
2015-12-30 01:35:25 +00:00
|
|
|
signaled = false;
|
2015-01-23 04:19:33 +00:00
|
|
|
}
|
2014-12-04 19:45:47 +00:00
|
|
|
|
2015-01-23 04:19:33 +00:00
|
|
|
void Timer::Set(s64 initial, s64 interval) {
|
2015-01-31 12:40:16 +00:00
|
|
|
// Ensure we get rid of any previous scheduled event
|
|
|
|
Cancel();
|
|
|
|
|
2015-01-23 04:19:33 +00:00
|
|
|
initial_delay = initial;
|
|
|
|
interval_delay = interval;
|
|
|
|
|
2017-01-09 17:48:17 +00:00
|
|
|
if (initial == 0) {
|
|
|
|
// Immediately invoke the callback
|
|
|
|
Signal(0);
|
|
|
|
} else {
|
2018-10-27 20:53:20 +01:00
|
|
|
Core::System::GetInstance().CoreTiming().ScheduleEvent(
|
|
|
|
nsToCycles(initial), timer_manager.timer_callback_event_type, callback_id);
|
2017-01-09 17:48:17 +00:00
|
|
|
}
|
2014-12-04 19:45:47 +00:00
|
|
|
}
|
|
|
|
|
2015-01-23 04:19:33 +00:00
|
|
|
void Timer::Cancel() {
|
2018-10-27 20:53:20 +01:00
|
|
|
Core::System::GetInstance().CoreTiming().UnscheduleEvent(
|
|
|
|
timer_manager.timer_callback_event_type, callback_id);
|
2015-01-23 04:19:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Timer::Clear() {
|
|
|
|
signaled = false;
|
|
|
|
}
|
2014-12-04 19:45:47 +00:00
|
|
|
|
2017-01-02 00:23:19 +00:00
|
|
|
void Timer::WakeupAllWaitingThreads() {
|
|
|
|
WaitObject::WakeupAllWaitingThreads();
|
|
|
|
|
|
|
|
if (reset_type == ResetType::Pulse)
|
|
|
|
signaled = false;
|
|
|
|
}
|
|
|
|
|
2018-07-23 22:08:14 +01:00
|
|
|
void Timer::Signal(s64 cycles_late) {
|
2018-06-29 12:18:07 +01:00
|
|
|
LOG_TRACE(Kernel, "Timer {} fired", GetObjectId());
|
2017-01-09 17:48:17 +00:00
|
|
|
|
2017-02-27 20:43:10 +00:00
|
|
|
signaled = true;
|
|
|
|
|
2017-01-09 17:48:17 +00:00
|
|
|
// Resume all waiting threads
|
|
|
|
WakeupAllWaitingThreads();
|
|
|
|
|
|
|
|
if (interval_delay != 0) {
|
|
|
|
// Reschedule the timer with the interval delay
|
2018-10-27 20:53:20 +01:00
|
|
|
Core::System::GetInstance().CoreTiming().ScheduleEvent(
|
|
|
|
nsToCycles(interval_delay) - cycles_late, timer_manager.timer_callback_event_type,
|
|
|
|
callback_id);
|
2017-01-09 17:48:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-04 19:45:47 +00:00
|
|
|
/// The timer callback event, called when a timer is fired
|
2018-10-23 19:17:30 +01:00
|
|
|
void TimerManager::TimerCallback(u64 callback_id, s64 cycles_late) {
|
2018-10-19 02:40:22 +01:00
|
|
|
SharedPtr<Timer> timer = timer_callback_table.at(callback_id);
|
2014-12-04 19:45:47 +00:00
|
|
|
|
|
|
|
if (timer == nullptr) {
|
2018-10-19 02:40:22 +01:00
|
|
|
LOG_CRITICAL(Kernel, "Callback fired for invalid timer {:016x}", callback_id);
|
2014-12-04 19:45:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-09 17:48:17 +00:00
|
|
|
timer->Signal(cycles_late);
|
2014-12-04 19:45:47 +00:00
|
|
|
}
|
|
|
|
|
2018-10-23 19:17:30 +01:00
|
|
|
TimerManager::TimerManager() {
|
2018-10-27 20:53:20 +01:00
|
|
|
timer_callback_event_type = Core::System::GetInstance().CoreTiming().RegisterEvent(
|
|
|
|
"TimerCallback",
|
|
|
|
[this](u64 thread_id, s64 cycle_late) { TimerCallback(thread_id, cycle_late); });
|
2014-12-04 19:45:47 +00:00
|
|
|
}
|
|
|
|
|
2018-03-09 17:54:43 +00:00
|
|
|
} // namespace Kernel
|