2014-12-04 20:45:47 +01:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-09-16 14:38:12 +02:00
|
|
|
#include <cinttypes>
|
2015-05-06 09:06:12 +02:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
2014-12-04 20:45:47 +01:00
|
|
|
#include "core/core_timing.h"
|
2018-07-24 12:03:24 +02:00
|
|
|
#include "core/core_timing_util.h"
|
2017-05-30 01:45:42 +02:00
|
|
|
#include "core/hle/kernel/handle_table.h"
|
2018-08-02 04:40:00 +02:00
|
|
|
#include "core/hle/kernel/object.h"
|
2014-12-04 20:45:47 +01:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2016-09-21 08:52:38 +02:00
|
|
|
#include "core/hle/kernel/timer.h"
|
2014-12-04 20:45:47 +01:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2015-01-23 05:19:33 +01:00
|
|
|
/// The event type of the generic timer callback event
|
2017-11-25 14:56:57 +01:00
|
|
|
static CoreTiming::EventType* timer_callback_event_type = nullptr;
|
2015-01-31 17:23:09 +01:00
|
|
|
// TODO(yuriks): This can be removed if Timer objects are explicitly pooled in the future, allowing
|
|
|
|
// us to simply use a pool index or similar.
|
|
|
|
static Kernel::HandleTable timer_callback_handle_table;
|
2014-12-04 20:45:47 +01:00
|
|
|
|
2016-09-19 03:01:46 +02:00
|
|
|
Timer::Timer() {}
|
|
|
|
Timer::~Timer() {}
|
2015-02-01 01:56:59 +01:00
|
|
|
|
2015-02-01 03:14:40 +01:00
|
|
|
SharedPtr<Timer> Timer::Create(ResetType reset_type, std::string name) {
|
2015-01-23 05:19:33 +01:00
|
|
|
SharedPtr<Timer> timer(new Timer);
|
2014-12-04 20:45:47 +01:00
|
|
|
|
|
|
|
timer->reset_type = reset_type;
|
|
|
|
timer->signaled = false;
|
2015-01-23 05:19:33 +01:00
|
|
|
timer->name = std::move(name);
|
2014-12-04 20:45:47 +01:00
|
|
|
timer->initial_delay = 0;
|
|
|
|
timer->interval_delay = 0;
|
2017-06-19 04:03:15 +02:00
|
|
|
timer->callback_handle = timer_callback_handle_table.Create(timer).Unwrap();
|
2015-02-01 03:14:40 +01:00
|
|
|
|
|
|
|
return timer;
|
2014-12-04 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2017-01-01 22:53:22 +01:00
|
|
|
bool Timer::ShouldWait(Thread* thread) const {
|
2015-01-23 05:19:33 +01:00
|
|
|
return !signaled;
|
2014-12-04 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2017-01-01 22:53:22 +01:00
|
|
|
void Timer::Acquire(Thread* thread) {
|
|
|
|
ASSERT_MSG(!ShouldWait(thread), "object unavailable!");
|
2015-12-30 02:35:25 +01:00
|
|
|
|
2016-03-12 21:06:31 +01:00
|
|
|
if (reset_type == ResetType::OneShot)
|
2015-12-30 02:35:25 +01:00
|
|
|
signaled = false;
|
2015-01-23 05:19:33 +01:00
|
|
|
}
|
2014-12-04 20:45:47 +01:00
|
|
|
|
2015-01-23 05:19:33 +01:00
|
|
|
void Timer::Set(s64 initial, s64 interval) {
|
2015-01-31 13:40:16 +01:00
|
|
|
// Ensure we get rid of any previous scheduled event
|
|
|
|
Cancel();
|
|
|
|
|
2015-01-23 05:19:33 +01:00
|
|
|
initial_delay = initial;
|
|
|
|
interval_delay = interval;
|
|
|
|
|
2017-01-09 18:48:17 +01:00
|
|
|
if (initial == 0) {
|
|
|
|
// Immediately invoke the callback
|
|
|
|
Signal(0);
|
|
|
|
} else {
|
2018-04-30 09:24:27 +02:00
|
|
|
CoreTiming::ScheduleEvent(CoreTiming::nsToCycles(initial), timer_callback_event_type,
|
|
|
|
callback_handle);
|
2017-01-09 18:48:17 +01:00
|
|
|
}
|
2014-12-04 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2015-01-23 05:19:33 +01:00
|
|
|
void Timer::Cancel() {
|
2015-01-31 17:23:09 +01:00
|
|
|
CoreTiming::UnscheduleEvent(timer_callback_event_type, callback_handle);
|
2015-01-23 05:19:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Timer::Clear() {
|
|
|
|
signaled = false;
|
|
|
|
}
|
2014-12-04 20:45:47 +01:00
|
|
|
|
2017-01-02 01:23:19 +01:00
|
|
|
void Timer::WakeupAllWaitingThreads() {
|
|
|
|
WaitObject::WakeupAllWaitingThreads();
|
|
|
|
|
|
|
|
if (reset_type == ResetType::Pulse)
|
|
|
|
signaled = false;
|
|
|
|
}
|
|
|
|
|
2017-01-09 18:48:17 +01:00
|
|
|
void Timer::Signal(int cycles_late) {
|
2018-07-02 18:13:26 +02:00
|
|
|
LOG_TRACE(Kernel, "Timer {} fired", GetObjectId());
|
2017-01-09 18:48:17 +01:00
|
|
|
|
2017-02-27 21:43:10 +01:00
|
|
|
signaled = true;
|
|
|
|
|
2017-01-09 18:48:17 +01:00
|
|
|
// Resume all waiting threads
|
|
|
|
WakeupAllWaitingThreads();
|
|
|
|
|
|
|
|
if (interval_delay != 0) {
|
|
|
|
// Reschedule the timer with the interval delay
|
2018-04-30 09:24:27 +02:00
|
|
|
CoreTiming::ScheduleEvent(CoreTiming::nsToCycles(interval_delay) - cycles_late,
|
2017-01-09 18:48:17 +01:00
|
|
|
timer_callback_event_type, callback_handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-04 20:45:47 +01:00
|
|
|
/// The timer callback event, called when a timer is fired
|
|
|
|
static void TimerCallback(u64 timer_handle, int cycles_late) {
|
2016-09-18 02:38:01 +02:00
|
|
|
SharedPtr<Timer> timer =
|
|
|
|
timer_callback_handle_table.Get<Timer>(static_cast<Handle>(timer_handle));
|
2014-12-04 20:45:47 +01:00
|
|
|
|
|
|
|
if (timer == nullptr) {
|
2018-07-02 18:13:26 +02:00
|
|
|
LOG_CRITICAL(Kernel, "Callback fired for invalid timer {:016X}", timer_handle);
|
2014-12-04 20:45:47 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-09 18:48:17 +01:00
|
|
|
timer->Signal(cycles_late);
|
2014-12-04 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void TimersInit() {
|
2015-04-28 04:12:35 +02:00
|
|
|
timer_callback_handle_table.Clear();
|
2015-01-23 05:19:33 +01:00
|
|
|
timer_callback_event_type = CoreTiming::RegisterEvent("TimerCallback", TimerCallback);
|
2014-12-04 20:45:47 +01:00
|
|
|
}
|
|
|
|
|
2016-09-19 03:01:46 +02:00
|
|
|
void TimersShutdown() {}
|
2014-12-04 20:45:47 +01:00
|
|
|
|
2018-01-20 08:48:02 +01:00
|
|
|
} // namespace Kernel
|