rpcsx/rpcs3/Emu/Cell/Modules/sysPrxForUser.cpp

273 lines
6.2 KiB
C++
Raw Normal View History

#include "stdafx.h"
2014-09-08 02:54:17 +02:00
#include "Emu/System.h"
2016-03-21 20:42:14 +01:00
#include "Emu/Cell/PPUModule.h"
2014-08-23 22:40:04 +02:00
#include "Emu/Cell/lv2/sys_mutex.h"
2016-03-21 20:42:14 +01:00
#include "Emu/Cell/lv2/sys_interrupt.h"
#include "Emu/Cell/lv2/sys_process.h"
#include "Emu/Cell/lv2/sys_ss.h"
#include "sysPrxForUser.h"
2017-05-13 20:30:37 +02:00
logs::channel sysPrxForUser("sysPrxForUser");
extern u64 get_system_time();
extern fs::file g_tty;
2016-03-21 20:42:14 +01:00
vm::gvar<s32> sys_prx_version; // ???
vm::gvar<vm::ptr<void()>> g_ppu_atexitspawn;
vm::gvar<vm::ptr<void()>> g_ppu_at_Exitspawn;
extern vm::gvar<u32> g_ppu_exit_mutex;
2016-03-21 20:42:14 +01:00
2015-08-02 04:15:49 +02:00
s64 sys_time_get_system_time()
{
sysPrxForUser.trace("sys_time_get_system_time()");
2015-08-02 04:15:49 +02:00
return get_system_time();
}
void sys_process_exit(ppu_thread& ppu, s32 status)
2017-09-16 13:52:15 +02:00
{
2017-09-16 19:43:02 +02:00
sysPrxForUser.warning("sys_process_exit(status=%d)", status);
2017-09-16 13:52:15 +02:00
sys_mutex_lock(ppu, *g_ppu_exit_mutex, 0);
2017-09-16 13:52:15 +02:00
// TODO (process atexit)
return _sys_process_exit(ppu, status, 0, 0);
2017-09-16 13:52:15 +02:00
}
void _sys_process_atexitspawn(vm::ptr<void()> func)
{
sysPrxForUser.warning("_sys_process_atexitspawn(0x%x)", func);
if (!*g_ppu_atexitspawn)
{
*g_ppu_atexitspawn = func;
}
}
void _sys_process_at_Exitspawn(vm::ptr<void()> func)
{
sysPrxForUser.warning("_sys_process_at_Exitspawn(0x%x)", func);
if (!*g_ppu_at_Exitspawn)
{
*g_ppu_at_Exitspawn = func;
}
}
s32 sys_process_is_stack(u32 p)
{
sysPrxForUser.trace("sys_process_is_stack(p=0x%x)", p);
2014-07-20 19:13:35 +02:00
// prx: compare high 4 bits with "0xD"
2015-07-11 22:44:53 +02:00
return (p >> 28) == 0xD;
}
2015-08-02 04:15:49 +02:00
s32 sys_process_get_paramsfo(vm::ptr<char> buffer)
{
sysPrxForUser.warning("sys_process_get_paramsfo(buffer=*0x%x)", buffer);
2015-08-02 04:15:49 +02:00
// prx: load some data (0x40 bytes) previously set by _sys_process_get_paramsfo syscall
return _sys_process_get_paramsfo(buffer);
}
s32 sys_get_random_number(vm::ptr<void> addr, u64 size)
2014-09-12 14:18:27 +02:00
{
sysPrxForUser.warning("sys_get_random_number(addr=*0x%x, size=%d)", addr, size);
2014-09-12 14:18:27 +02:00
if (size > 0x1000)
{
return CELL_EINVAL;
}
switch (u32 rs = sys_ss_random_number_generator(2, addr, size))
{
case 0x80010501: return CELL_ENOMEM;
case 0x80010503: return CELL_EAGAIN;
case 0x80010509: return CELL_EINVAL;
default: if (rs) return CELL_EABORT;
}
2014-09-12 14:18:27 +02:00
return CELL_OK;
}
2015-08-02 04:15:49 +02:00
s32 console_getc()
2015-04-12 03:36:25 +02:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-04-12 03:36:25 +02:00
}
2015-08-02 04:15:49 +02:00
s32 console_putc()
2015-04-12 03:36:25 +02:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-04-12 03:36:25 +02:00
}
s32 console_write(vm::ptr<char> data, u32 len)
2015-04-12 03:36:25 +02:00
{
sysPrxForUser.warning("console_write(data=*0x%x, len=%d)", data, len);
if (g_tty)
{
g_tty.write(data.get_ptr(), len);
}
return CELL_OK;
2015-04-12 03:36:25 +02:00
}
s32 cellGamePs1Emu_61CE2BCD()
{
UNIMPLEMENTED_FUNC(logs::HLE);
return CELL_OK;
}
s32 cellSysconfPs1emu_639ABBDE()
{
UNIMPLEMENTED_FUNC(logs::HLE);
return CELL_OK;
}
s32 cellSysconfPs1emu_6A12D11F()
{
UNIMPLEMENTED_FUNC(logs::HLE);
return CELL_OK;
}
s32 cellSysconfPs1emu_83E79A23()
{
UNIMPLEMENTED_FUNC(logs::HLE);
return CELL_OK;
}
s32 cellSysconfPs1emu_EFDDAF6C()
{
UNIMPLEMENTED_FUNC(logs::HLE);
return CELL_OK;
}
2017-03-14 13:03:04 +01:00
s32 sys_lv2coredump_D725F320()
{
fmt::raw_error(__func__);
}
2017-03-17 18:08:00 +01:00
s32 sys_crash_dump_get_user_log_area()
2017-03-14 13:03:04 +01:00
{
fmt::raw_error(__func__);
}
2017-03-17 18:08:00 +01:00
s32 sys_crash_dump_set_user_log_area()
2017-03-14 13:03:04 +01:00
{
2017-03-17 18:08:00 +01:00
UNIMPLEMENTED_FUNC(logs::HLE);
return CELL_OK;
2017-03-14 13:03:04 +01:00
}
s32 sys_get_bd_media_id()
{
UNIMPLEMENTED_FUNC(logs::HLE);
return CELL_OK;
}
s32 sys_get_console_id()
{
UNIMPLEMENTED_FUNC(logs::HLE);
return CELL_OK;
}
s32 sysPs2Disc_A84FD3C3()
{
UNIMPLEMENTED_FUNC(logs::HLE);
return CELL_OK;
}
s32 sysPs2Disc_BB7CD1AE()
{
UNIMPLEMENTED_FUNC(logs::HLE);
return CELL_OK;
}
2015-04-12 03:36:25 +02:00
2015-08-02 04:15:49 +02:00
extern void sysPrxForUser_sys_lwmutex_init();
extern void sysPrxForUser_sys_lwcond_init();
extern void sysPrxForUser_sys_ppu_thread_init();
extern void sysPrxForUser_sys_prx_init();
extern void sysPrxForUser_sys_heap_init();
extern void sysPrxForUser_sys_spinlock_init();
extern void sysPrxForUser_sys_mmapper_init();
extern void sysPrxForUser_sys_mempool_init();
extern void sysPrxForUser_sys_spu_init();
extern void sysPrxForUser_sys_game_init();
extern void sysPrxForUser_sys_libc_init();
2017-06-20 19:30:05 +02:00
extern void sysPrxForUser_sys_rsxaudio_init();
2016-03-21 20:42:14 +01:00
DECLARE(ppu_module_manager::sysPrxForUser)("sysPrxForUser", []()
{
static ppu_static_module cellGamePs1Emu("cellGamePs1Emu", []()
{
REG_FNID(cellGamePs1Emu, 0x61CE2BCD, cellGamePs1Emu_61CE2BCD);
});
static ppu_static_module cellSysconfPs1emu("cellSysconfPs1emu", []()
{
REG_FNID(cellSysconfPs1emu, 0x639ABBDE, cellSysconfPs1emu_639ABBDE);
REG_FNID(cellSysconfPs1emu, 0x6A12D11F, cellSysconfPs1emu_6A12D11F);
REG_FNID(cellSysconfPs1emu, 0x83E79A23, cellSysconfPs1emu_83E79A23);
REG_FNID(cellSysconfPs1emu, 0xEFDDAF6C, cellSysconfPs1emu_EFDDAF6C);
});
2017-03-14 13:03:04 +01:00
static ppu_static_module sys_lv2coredump("sys_lv2coredump", []()
{
REG_FNID(sys_lv2coredump, 0xD725F320, sys_lv2coredump_D725F320);
});
static ppu_static_module sys_crashdump("sys_crashdump", []()
{
2017-03-17 18:08:00 +01:00
REG_FUNC(sys_crashdump, sys_crash_dump_get_user_log_area);
REG_FUNC(sys_crashdump, sys_crash_dump_set_user_log_area);
2017-03-14 13:03:04 +01:00
});
static ppu_static_module sysBdMediaId("sysBdMediaId", []()
{
REG_FUNC(sysBdMediaId, sys_get_bd_media_id);
});
static ppu_static_module sysConsoleId("sysConsoleId", []()
{
REG_FUNC(sysConsoleId, sys_get_console_id);
});
static ppu_static_module sysPs2Disc("sysPs2Disc", []()
{
REG_FNID(sysPs2Disc, 0xA84FD3C3, sysPs2Disc_A84FD3C3);
REG_FNID(sysPs2Disc, 0xBB7CD1AE, sysPs2Disc_BB7CD1AE);
});
2015-08-02 04:15:49 +02:00
sysPrxForUser_sys_lwmutex_init();
sysPrxForUser_sys_lwcond_init();
sysPrxForUser_sys_ppu_thread_init();
sysPrxForUser_sys_prx_init();
sysPrxForUser_sys_heap_init();
sysPrxForUser_sys_spinlock_init();
sysPrxForUser_sys_mmapper_init();
sysPrxForUser_sys_mempool_init();
sysPrxForUser_sys_spu_init();
sysPrxForUser_sys_game_init();
sysPrxForUser_sys_libc_init();
2017-06-20 19:30:05 +02:00
sysPrxForUser_sys_rsxaudio_init();
2016-03-21 20:42:14 +01:00
REG_VAR(sysPrxForUser, sys_prx_version); // 0x7df066cf
REG_VAR(sysPrxForUser, g_ppu_atexitspawn).flag(MFF_HIDDEN);
REG_VAR(sysPrxForUser, g_ppu_at_Exitspawn).flag(MFF_HIDDEN);
2016-03-21 20:42:14 +01:00
REG_FUNC(sysPrxForUser, sys_time_get_system_time);
REG_FUNC(sysPrxForUser, sys_process_exit);
REG_FUNC(sysPrxForUser, _sys_process_atexitspawn);
REG_FUNC(sysPrxForUser, _sys_process_at_Exitspawn);
REG_FUNC(sysPrxForUser, sys_process_is_stack);
2015-08-02 04:15:49 +02:00
REG_FUNC(sysPrxForUser, sys_process_get_paramsfo); // 0xe75c40f2
REG_FUNC(sysPrxForUser, sys_get_random_number);
2015-08-02 04:15:49 +02:00
REG_FUNC(sysPrxForUser, console_getc);
REG_FUNC(sysPrxForUser, console_putc);
REG_FUNC(sysPrxForUser, console_write);
});