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-05-06 07:06:12 +00:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
2018-08-28 16:30:33 +00:00
|
|
|
#include "core/core.h"
|
2014-12-04 19:45:47 +00:00
|
|
|
#include "core/core_timing.h"
|
2018-07-24 10:03:24 +00:00
|
|
|
#include "core/core_timing_util.h"
|
2017-05-29 23:45:42 +00:00
|
|
|
#include "core/hle/kernel/handle_table.h"
|
2018-08-28 16:30:33 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2018-08-02 02:40:00 +00:00
|
|
|
#include "core/hle/kernel/object.h"
|
2014-12-04 19:45:47 +00:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/hle/kernel/timer.h"
|
2014-12-04 19:45:47 +00:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2018-08-28 16:30:33 +00:00
|
|
|
Timer::Timer(KernelCore& kernel) : WaitObject{kernel} {}
|
|
|
|
Timer::~Timer() = default;
|
2014-12-04 19:45:47 +00:00
|
|
|
|
2018-08-28 16:30:33 +00:00
|
|
|
SharedPtr<Timer> Timer::Create(KernelCore& kernel, ResetType reset_type, std::string name) {
|
|
|
|
SharedPtr<Timer> timer(new Timer(kernel));
|
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-08-28 16:30:33 +00:00
|
|
|
timer->callback_handle = kernel.CreateTimerCallbackHandle(timer).Unwrap();
|
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-08-28 16:30:33 +00:00
|
|
|
CoreTiming::ScheduleEvent(CoreTiming::nsToCycles(initial), kernel.TimerCallbackEventType(),
|
2018-04-30 07:24:27 +00:00
|
|
|
callback_handle);
|
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-08-28 16:30:33 +00:00
|
|
|
CoreTiming::UnscheduleEvent(kernel.TimerCallbackEventType(), callback_handle);
|
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;
|
|
|
|
}
|
|
|
|
|
2017-01-09 17:48:17 +00:00
|
|
|
void Timer::Signal(int cycles_late) {
|
2018-07-02 16:13:26 +00: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-04-30 07:24:27 +00:00
|
|
|
CoreTiming::ScheduleEvent(CoreTiming::nsToCycles(interval_delay) - cycles_late,
|
2018-08-28 16:30:33 +00:00
|
|
|
kernel.TimerCallbackEventType(), callback_handle);
|
2017-01-09 17:48:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-20 07:48:02 +00:00
|
|
|
} // namespace Kernel
|