2016-04-25 20:33:48 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2015
|
|
|
|
* by Dimok
|
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
|
* warranty. In no event will the authors be held liable for any
|
|
|
|
* damages arising from the use of this software.
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any
|
|
|
|
* purpose, including commercial applications, and to alter it and
|
|
|
|
* redistribute it freely, subject to the following restrictions:
|
|
|
|
*
|
|
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
|
|
* must not claim that you wrote the original software. If you use
|
|
|
|
* this software in a product, an acknowledgment in the product
|
|
|
|
* documentation would be appreciated but is not required.
|
|
|
|
*
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
|
|
* must not be misrepresented as being the original software.
|
|
|
|
*
|
|
|
|
* 3. This notice may not be removed or altered from any source
|
|
|
|
* distribution.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __OS_FUNCTIONS_H_
|
|
|
|
#define __OS_FUNCTIONS_H_
|
|
|
|
|
|
|
|
#include <gctypes.h>
|
|
|
|
#include "common/os_defs.h"
|
2016-09-19 20:13:04 +02:00
|
|
|
#include "os_types.h"
|
2016-04-25 20:33:48 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define BUS_SPEED 248625000
|
|
|
|
#define SECS_TO_TICKS(sec) (((unsigned long long)(sec)) * (BUS_SPEED/4))
|
|
|
|
#define MILLISECS_TO_TICKS(msec) (SECS_TO_TICKS(msec) / 1000)
|
|
|
|
#define MICROSECS_TO_TICKS(usec) (SECS_TO_TICKS(usec) / 1000000)
|
|
|
|
|
|
|
|
#define usleep(usecs) OSSleepTicks(MICROSECS_TO_TICKS(usecs))
|
|
|
|
#define sleep(secs) OSSleepTicks(SECS_TO_TICKS(secs))
|
|
|
|
|
|
|
|
#define FLUSH_DATA_BLOCK(addr) asm volatile("dcbf 0, %0; sync" : : "r"(((addr) & ~31)))
|
|
|
|
#define INVAL_DATA_BLOCK(addr) asm volatile("dcbi 0, %0; sync" : : "r"(((addr) & ~31)))
|
|
|
|
|
|
|
|
#define EXPORT_DECL(res, func, ...) res (* func)(__VA_ARGS__) __attribute__((section(".data"))) = 0;
|
|
|
|
#define EXPORT_VAR(type, var) type var __attribute__((section(".data")));
|
|
|
|
|
|
|
|
|
|
|
|
#define EXPORT_FUNC_WRITE(func, val) *(u32*)(((u32)&func) + 0) = (u32)val
|
|
|
|
|
|
|
|
#define OS_FIND_EXPORT(handle, func) funcPointer = 0; \
|
|
|
|
OSDynLoad_FindExport(handle, 0, # func, &funcPointer); \
|
|
|
|
if(!funcPointer) \
|
|
|
|
OSFatal("Function " # func " is NULL"); \
|
|
|
|
EXPORT_FUNC_WRITE(func, funcPointer);
|
|
|
|
|
|
|
|
#define OS_FIND_EXPORT_EX(handle, func, func_p) \
|
|
|
|
funcPointer = 0; \
|
|
|
|
OSDynLoad_FindExport(handle, 0, # func, &funcPointer); \
|
|
|
|
if(!funcPointer) \
|
|
|
|
OSFatal("Function " # func " is NULL"); \
|
|
|
|
EXPORT_FUNC_WRITE(func_p, funcPointer);
|
|
|
|
|
|
|
|
#define OS_MUTEX_SIZE 44
|
|
|
|
|
|
|
|
/* Handle for coreinit */
|
2017-03-30 17:51:11 +02:00
|
|
|
extern u32 coreinit_handle;
|
2016-04-25 20:33:48 +02:00
|
|
|
void InitOSFunctionPointers(void);
|
|
|
|
void InitAcquireOS(void);
|
|
|
|
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! Lib handle functions
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2017-04-10 11:04:06 +02:00
|
|
|
extern s32 (* OSDynLoad_Acquire)(const char* rpl, u32 *handle);
|
|
|
|
extern s32 (* OSDynLoad_FindExport)(u32 handle, s32 isdata, const char *symbol, void *address);
|
2016-04-25 20:33:48 +02:00
|
|
|
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! Security functions
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2017-04-10 11:04:06 +02:00
|
|
|
extern s32 (* OSGetSecurityLevel)(void);
|
2016-04-25 20:33:48 +02:00
|
|
|
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! Thread functions
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2017-04-10 11:04:06 +02:00
|
|
|
extern s32 (* OSCreateThread)(void *thread, s32 (*callback)(s32, void*), s32 argc, void *args, u32 stack, u32 stack_size, s32 priority, u32 attr);
|
|
|
|
extern s32 (* OSResumeThread)(void *thread);
|
|
|
|
extern s32 (* OSSuspendThread)(void *thread);
|
|
|
|
extern s32 (* OSIsThreadTerminated)(void *thread);
|
|
|
|
extern s32 (* OSIsThreadSuspended)(void *thread);
|
|
|
|
extern s32 (* OSJoinThread)(void * thread, s32 * ret_val);
|
|
|
|
extern s32 (* OSSetThreadPriority)(void * thread, s32 priority);
|
2016-04-25 20:33:48 +02:00
|
|
|
extern void (* OSDetachThread)(void * thread);
|
|
|
|
extern void (* OSSleepTicks)(u64 ticks);
|
|
|
|
extern u64 (* OSGetTick)(void);
|
2016-08-18 11:18:44 +02:00
|
|
|
extern u64 (* OSGetTime)(void);
|
2016-09-19 20:13:04 +02:00
|
|
|
extern void (*OSTicksToCalendarTime)(u64 time, OSCalendarTime *calendarTime);
|
2016-04-25 20:33:48 +02:00
|
|
|
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! Mutex functions
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
extern void (* OSInitMutex)(void* mutex);
|
|
|
|
extern void (* OSLockMutex)(void* mutex);
|
|
|
|
extern void (* OSUnlockMutex)(void* mutex);
|
2017-04-10 11:04:06 +02:00
|
|
|
extern s32 (* OSTryLockMutex)(void* mutex);
|
2016-04-25 20:33:48 +02:00
|
|
|
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! System functions
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
extern u64 (* OSGetTitleID)(void);
|
2017-04-10 11:04:06 +02:00
|
|
|
extern void (* OSGetArgcArgv)(s32* argc, char*** argv);
|
2016-04-25 20:33:48 +02:00
|
|
|
extern void (* __Exit)(void);
|
|
|
|
extern void (* OSFatal)(const char* msg);
|
|
|
|
extern void (* DCFlushRange)(const void *addr, u32 length);
|
|
|
|
extern void (* ICInvalidateRange)(const void *addr, u32 length);
|
|
|
|
extern void* (* OSEffectiveToPhysical)(const void*);
|
2017-04-10 11:04:06 +02:00
|
|
|
extern s32 (* __os_snprintf)(char* s, s32 n, const char * format, ...);
|
|
|
|
extern s32 * (* __gh_errno_ptr)(void);
|
2016-04-25 20:33:48 +02:00
|
|
|
|
|
|
|
extern void (*OSScreenInit)(void);
|
2017-04-10 11:04:06 +02:00
|
|
|
extern u32 (*OSScreenGetBufferSizeEx)(u32 bufferNum);
|
|
|
|
extern s32 (*OSScreenSetBufferEx)(u32 bufferNum, void * addr);
|
|
|
|
extern s32 (*OSScreenClearBufferEx)(u32 bufferNum, u32 temp);
|
|
|
|
extern s32 (*OSScreenFlipBuffersEx)(u32 bufferNum);
|
|
|
|
extern s32 (*OSScreenPutFontEx)(u32 bufferNum, u32 posX, u32 posY, const char * buffer);
|
|
|
|
extern s32 (*OSScreenEnableEx)(u32 bufferNum, s32 enable);
|
2016-04-25 20:33:48 +02:00
|
|
|
|
|
|
|
typedef unsigned char (*exception_callback)(void * interruptedContext);
|
|
|
|
extern void (* OSSetExceptionCallback)(u8 exceptionType, exception_callback newCallback);
|
|
|
|
|
2017-04-18 23:15:35 +02:00
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! Memory functions
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
extern u32 *pMEMAllocFromDefaultHeapEx;
|
|
|
|
extern u32 *pMEMAllocFromDefaultHeap;
|
|
|
|
extern u32 *pMEMFreeToDefaultHeap;
|
|
|
|
|
|
|
|
extern s32 (* MEMGetBaseHeapHandle)(s32 mem_arena);
|
|
|
|
extern u32 (* MEMGetAllocatableSizeForFrmHeapEx)(s32 heap, s32 align);
|
|
|
|
extern void* (* MEMAllocFromFrmHeapEx)(s32 heap, u32 size, s32 align);
|
|
|
|
extern void (* MEMFreeToFrmHeap)(s32 heap, s32 mode);
|
|
|
|
extern void *(* MEMAllocFromExpHeapEx)(s32 heap, u32 size, s32 align);
|
|
|
|
extern s32 (* MEMCreateExpHeapEx)(void* address, u32 size, unsigned short flags);
|
|
|
|
extern void *(* MEMDestroyExpHeap)(s32 heap);
|
|
|
|
extern void (* MEMFreeToExpHeap)(s32 heap, void* ptr);
|
|
|
|
|
2016-04-25 20:33:48 +02:00
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! MCP functions
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2017-04-10 11:04:06 +02:00
|
|
|
extern s32 (* MCP_Open)(void);
|
|
|
|
extern s32 (* MCP_Close)(s32 handle);
|
|
|
|
extern s32 (* MCP_GetOwnTitleInfo)(s32 handle, void * data);
|
2016-04-25 20:33:48 +02:00
|
|
|
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! LOADER functions
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2017-04-10 11:04:06 +02:00
|
|
|
extern s32 (* LiWaitIopComplete)(s32 unknown_syscall_arg_r3, s32 * remaining_bytes);
|
|
|
|
extern s32 (* LiWaitIopCompleteWithInterrupts)(s32 unknown_syscall_arg_r3, s32 * remaining_bytes);
|
2016-04-25 20:33:48 +02:00
|
|
|
extern void (* addr_LiWaitOneChunk)(void);
|
|
|
|
extern void (* addr_sgIsLoadingBuffer)(void);
|
|
|
|
extern void (* addr_gDynloadInitialized)(void);
|
|
|
|
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! Kernel function addresses
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
extern void (* addr_PrepareTitle_hook)(void);
|
|
|
|
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! Other function addresses
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
extern void (*DCInvalidateRange)(void *buffer, uint32_t length);
|
|
|
|
|
2016-08-18 11:18:44 +02:00
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! Energy Saver functions
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
////Burn-in Reduction
|
2017-04-10 11:04:06 +02:00
|
|
|
extern s32 (*IMEnableDim)(void);
|
|
|
|
extern s32 (*IMDisableDim)(void);
|
|
|
|
extern s32 (*IMIsDimEnabled)(s32 * result);
|
2016-08-18 11:18:44 +02:00
|
|
|
//Auto power down
|
2017-04-10 11:04:06 +02:00
|
|
|
extern s32 (*IMEnableAPD)(void);
|
|
|
|
extern s32 (*IMDisableAPD)(void);
|
|
|
|
extern s32 (*IMIsAPDEnabled)(s32 * result);
|
|
|
|
extern s32 (*IMIsAPDEnabledBySysSettings)(s32 * result);
|
2016-08-18 11:18:44 +02:00
|
|
|
|
2017-04-10 11:04:06 +02:00
|
|
|
extern s32 (*OSSendAppSwitchRequest)(s32 param,void* unknown1,void* unknown2);
|
2017-03-30 17:51:11 +02:00
|
|
|
|
2016-11-29 18:36:23 +01:00
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
//! IOS functions
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
2017-03-30 17:51:11 +02:00
|
|
|
|
2017-04-10 11:04:06 +02:00
|
|
|
extern s32 (*IOS_Ioctl)(s32 fd, u32 request, void *input_buffer,u32 input_buffer_len, void *output_buffer, u32 output_buffer_len);
|
|
|
|
extern s32 (*IOS_Open)(char *path, u32 mode);
|
|
|
|
extern s32 (*IOS_Close)(s32 fd);
|
2016-11-29 18:36:23 +01:00
|
|
|
|
2016-04-25 20:33:48 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // __OS_FUNCTIONS_H_
|