2014-06-25 00:38:34 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2016-04-14 00:23:53 +02:00
|
|
|
#include "sys_sync.h"
|
2015-06-19 17:49:38 +02:00
|
|
|
|
2016-07-27 23:43:22 +02:00
|
|
|
class ppu_thread;
|
2015-03-02 22:09:20 +01:00
|
|
|
|
2017-01-29 17:50:18 +01:00
|
|
|
struct lv2_int_tag final : lv2_obj
|
2015-07-12 23:02:02 +02:00
|
|
|
{
|
2017-01-29 17:50:18 +01:00
|
|
|
static const u32 id_base = 0x0a000000;
|
2017-01-25 18:50:30 +01:00
|
|
|
|
2017-02-04 17:30:21 +01:00
|
|
|
std::weak_ptr<struct lv2_int_serv> handler;
|
2015-07-12 23:02:02 +02:00
|
|
|
};
|
|
|
|
|
|
2017-01-29 17:50:18 +01:00
|
|
|
struct lv2_int_serv final : lv2_obj
|
2015-03-02 22:09:20 +01:00
|
|
|
{
|
2017-01-25 18:50:30 +01:00
|
|
|
static const u32 id_base = 0x0b000000;
|
|
|
|
|
|
2018-10-11 00:17:19 +02:00
|
|
|
const std::shared_ptr<named_thread<ppu_thread>> thread;
|
2016-07-27 23:43:22 +02:00
|
|
|
const u64 arg1;
|
|
|
|
|
const u64 arg2;
|
2015-07-12 23:02:02 +02:00
|
|
|
|
2018-10-11 00:17:19 +02:00
|
|
|
lv2_int_serv(const std::shared_ptr<named_thread<ppu_thread>>& thread, u64 arg1, u64 arg2)
|
2017-02-04 17:30:21 +01:00
|
|
|
: thread(thread)
|
|
|
|
|
, arg1(arg1)
|
|
|
|
|
, arg2(arg2)
|
|
|
|
|
{
|
|
|
|
|
}
|
2015-05-27 05:11:59 +02:00
|
|
|
|
2016-07-27 23:43:22 +02:00
|
|
|
void exec();
|
2017-02-04 17:30:21 +01:00
|
|
|
void join();
|
2015-03-02 22:09:20 +01:00
|
|
|
};
|
|
|
|
|
|
2017-02-04 17:30:21 +01:00
|
|
|
// Syscalls
|
|
|
|
|
|
|
|
|
|
error_code sys_interrupt_tag_destroy(u32 intrtag);
|
2018-02-09 15:49:37 +01:00
|
|
|
error_code _sys_interrupt_thread_establish(vm::ptr<u32> ih, u32 intrtag, u32 intrthread, u64 arg1, u64 arg2);
|
|
|
|
|
error_code _sys_interrupt_thread_disestablish(ppu_thread& ppu, u32 ih, vm::ptr<u64> r13);
|
2016-07-27 23:43:22 +02:00
|
|
|
void sys_interrupt_thread_eoi(ppu_thread& ppu);
|