2014-06-25 00:38:34 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2015-06-19 17:49:38 +02:00
|
|
|
#include "Utilities/Thread.h"
|
|
|
|
|
|
2015-03-08 16:25:31 +01:00
|
|
|
// Timer State
|
|
|
|
|
enum : u32
|
2014-06-25 00:38:34 +02:00
|
|
|
{
|
2015-03-08 16:25:31 +01:00
|
|
|
SYS_TIMER_STATE_STOP = 0,
|
|
|
|
|
SYS_TIMER_STATE_RUN = 1,
|
2014-06-25 00:38:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct sys_timer_information_t
|
|
|
|
|
{
|
2017-02-04 15:00:02 +01:00
|
|
|
be_t<s64> next_expire;
|
2015-03-08 16:25:31 +01:00
|
|
|
be_t<u64> period;
|
|
|
|
|
be_t<u32> timer_state;
|
|
|
|
|
be_t<u32> pad;
|
2014-06-25 00:38:34 +02:00
|
|
|
};
|
|
|
|
|
|
2017-02-04 15:00:02 +01:00
|
|
|
struct lv2_timer final : public lv2_obj, public named_thread
|
2014-06-25 00:38:34 +02:00
|
|
|
{
|
2017-01-25 18:50:30 +01:00
|
|
|
static const u32 id_base = 0x11000000;
|
|
|
|
|
|
2017-02-04 15:00:02 +01:00
|
|
|
void on_task() override;
|
2016-04-25 12:49:12 +02:00
|
|
|
void on_stop() override;
|
2015-11-26 09:06:29 +01:00
|
|
|
|
2017-02-04 15:00:02 +01:00
|
|
|
semaphore<> mutex;
|
|
|
|
|
atomic_t<u32> state{SYS_TIMER_STATE_RUN};
|
2015-11-26 09:06:29 +01:00
|
|
|
|
2017-02-04 15:00:02 +01:00
|
|
|
std::weak_ptr<lv2_event_queue> port;
|
|
|
|
|
u64 source;
|
|
|
|
|
u64 data1;
|
|
|
|
|
u64 data2;
|
2015-03-08 16:25:31 +01:00
|
|
|
|
2017-02-04 15:00:02 +01:00
|
|
|
atomic_t<u64> expire{0}; // Next expiration time
|
|
|
|
|
atomic_t<u64> period{0}; // Period (oneshot if 0)
|
2014-06-25 00:38:34 +02:00
|
|
|
};
|
|
|
|
|
|
2017-02-04 15:00:02 +01:00
|
|
|
// Syscalls
|
|
|
|
|
|
|
|
|
|
error_code sys_timer_create(vm::ps3::ptr<u32> timer_id);
|
|
|
|
|
error_code sys_timer_destroy(u32 timer_id);
|
|
|
|
|
error_code sys_timer_get_information(u32 timer_id, vm::ps3::ptr<sys_timer_information_t> info);
|
|
|
|
|
error_code _sys_timer_start(u32 timer_id, u64 basetime, u64 period); // basetime type changed from s64
|
|
|
|
|
error_code sys_timer_stop(u32 timer_id);
|
|
|
|
|
error_code sys_timer_connect_event_queue(u32 timer_id, u32 queue_id, u64 name, u64 data1, u64 data2);
|
|
|
|
|
error_code sys_timer_disconnect_event_queue(u32 timer_id);
|
|
|
|
|
error_code sys_timer_sleep(u32 sleep_time);
|
|
|
|
|
error_code sys_timer_usleep(u64 sleep_time);
|