2014-06-25 00:38:34 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2015-06-19 18:49:38 +03:00
|
|
|
namespace vm { using namespace ps3; }
|
|
|
|
|
|
2015-03-03 00:09:20 +03:00
|
|
|
class PPUThread;
|
|
|
|
|
|
2015-07-13 00:02:02 +03:00
|
|
|
struct lv2_int_tag_t
|
|
|
|
|
{
|
|
|
|
|
const u32 id;
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<struct lv2_int_serv_t> handler;
|
|
|
|
|
|
2015-07-17 19:27:12 +03:00
|
|
|
lv2_int_tag_t();
|
2015-07-13 00:02:02 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
REG_ID_TYPE(lv2_int_tag_t, 0x0A); // SYS_INTR_TAG_OBJECT
|
|
|
|
|
|
|
|
|
|
struct lv2_int_serv_t
|
2015-03-03 00:09:20 +03:00
|
|
|
{
|
2015-07-03 19:07:36 +03:00
|
|
|
const std::shared_ptr<PPUThread> thread;
|
2015-07-13 00:02:02 +03:00
|
|
|
const u32 id;
|
|
|
|
|
|
|
|
|
|
std::atomic<u32> signal{ 0 }; // signal count
|
|
|
|
|
|
|
|
|
|
lv2_int_serv_t(const std::shared_ptr<PPUThread>& thread);
|
2015-05-27 06:11:59 +03:00
|
|
|
|
2015-07-13 00:02:02 +03:00
|
|
|
void join(PPUThread& ppu, lv2_lock_t& lv2_lock);
|
2015-03-03 00:09:20 +03:00
|
|
|
};
|
|
|
|
|
|
2015-07-13 00:02:02 +03:00
|
|
|
REG_ID_TYPE(lv2_int_serv_t, 0x0B); // SYS_INTR_SERVICE_HANDLE_OBJECT
|
2015-05-27 06:11:59 +03:00
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
// SysCalls
|
|
|
|
|
s32 sys_interrupt_tag_destroy(u32 intrtag);
|
2015-07-13 00:02:02 +03:00
|
|
|
s32 _sys_interrupt_thread_establish(vm::ptr<u32> ih, u32 intrtag, u32 intrthread, u64 arg1, u64 arg2);
|
|
|
|
|
s32 _sys_interrupt_thread_disestablish(PPUThread& ppu, u32 ih, vm::ptr<u64> r13);
|
|
|
|
|
void sys_interrupt_thread_eoi(PPUThread& ppu);
|