Changes

18,683 bytes added ,  20:53, 17 May 2023
Cleanup and add ConsoleType
Line 1: Line 1:  
coreinit.rpl is the the system library that provides direct access to Cafe OS services. It provides kernel calls, thread scheduling, memory management, and filesystem services. coreinit is the first RPL loaded by the loader, even before the main executable itself.
 
coreinit.rpl is the the system library that provides direct access to Cafe OS services. It provides kernel calls, thread scheduling, memory management, and filesystem services. coreinit is the first RPL loaded by the loader, even before the main executable itself.
   −
==Functions==
+
= Functions =
===Cache===
+
== Auto Power-Down ==
 +
The Auto Power-Down feature in the WiiU saves the battery of the console, shutting down in one hour when there is no user activity.
 +
{| class="wikitable"
 +
!Name
 +
!Prototype
 +
!Description
 +
|-
 +
|IMEnableAPD
 +
|<code>void IMEnableAPD(void)</code>
 +
|Enables the Auto Power-Down system.
 +
|-
 +
|IMDisableAPD
 +
|<code>void IMDisableAPD(void)</code>
 +
|Disables the Auto Power-Down system.
 +
|-
 +
|IMIsAPDEnabled
 +
|<code>void IMIsAPDEnabled(uint32_t *isEnabled)</code>
 +
|Writes the current Auto Power-Down setting to isEnabled: 0x0 = off, 0x1 = on.
 +
|-
 +
|IMIsAPDEnabledBySysSettings
 +
|<code>void IMIsAPDEnabledBySysSettings(uint32_t *isEnabled)</code>
 +
|Writes the current Auto Power-Down setting from system settings to isEnabled: 0x0 = off, 0x1 = on.
 +
|
 +
|-
 +
|IMGetAPDPeriod
 +
|<code>void IMGetAPDPeriod(uint32_t *apd_secs)</code>
 +
|Returns the amount of seconds it takes of user inactivity to turn off the WiiU, if the Auto Power-Down setting is True. apd_secs is a pointer to the variable that stores the amount of seconds.
 +
|-
 +
|IMGetTimeBeforeAPD
 +
|<code>void IMGetTimeBeforeAPD(uint32_t *apd_secs)</code>
 +
|Returns the amount of seconds that are left until the WiiU powers down, if the Auto Power-Down setting is True. apd_secs is a pointer to the variable that stores the amount of seconds.
 +
|}
 +
 
 +
== Driver ==
 +
{| class="wikitable"
 +
!Name
 +
!Prototype
 +
!Description
 +
|-
 +
|OSDriver_Register
 +
|<code>uint32_t OSDriver_Register(char *drv_name, size_t name_len, void *buf1, void *buf2)</code>
 +
|Will register an OSDriver entity with the given name and bufs
 +
|-
 +
|OSDriver_Deregister
 +
|<code>uint32_t OSDriver_Deregister(char *drv_name, size_t name_len)</code>
 +
|Will try to find a OSDriver with the given name (and length because implementing a strlen was too hard), and deregister him
 +
|-
 +
|OSDriver_CopyToSaveArea
 +
|<code>uint32_t OSDriver_CopyToSaveArea(char *drv_name, size_t name_len, void *in_buf, size_t buf_size)</code>
 +
|Will copy buf to an OSDriver "safe" save area [0x44/4]
 +
|-
 +
|OSDriver_CopyFromSaveArea
 +
|<code>uint32_t OSDriver_CopyFromSaveArea(char *drv_name, size_t name_len, void *out_buf, size_t buf_size)</code>
 +
|Will copy data from the OSDriver save area to an user controlled buffer
 +
|}
 +
 
 +
== Memory ==
 +
{| class="wikitable"
 +
!Name
 +
!Prototype
 +
!Description
 +
|-
 +
|memset
 +
|<code>void *memset(void *str, int c, size_t n)</code>
 +
|Call OSBlockSet (Looks like it does the same thing as standart memset). Copies the character c (an unsigned char) to the first n characters of the String pointed to by the argument str. See  [http://www.tutorialspoint.com/c_standard_library/c_function_memset.htm]
 +
|-
 +
|memclr
 +
|<code>void *memclr(void *str, size_t n)</code>
 +
|Like memset but sets the memory to 0. Call OSBlockSet (memset) with 0 as second arg (r4).
 +
|-
 +
|memcpy
 +
|<code>void *memcpy(void *str1, const void *str2, size_t n)</code>
 +
|Call OSBlockMove with  1 as the  fourth arg (r6).Copies n characters from memory area str2 to memory area str1. See [http://www.tutorialspoint.com/c_standard_library/c_function_memcpy.htm]
 +
|-
 +
|memmove
 +
|<code>void *memmove(void *str1, const void *str2, size_t n)</code>
 +
|Call OSBlockMove with 1 as the fourth arg (r6) exactly the same as memcpy.
 +
|-
 +
|MEMAllocFromDefaultHeapEx
 +
|<code>void *MEMAllocFromDefaultHeapEx(uint32_t size, int alignment)</code>
 +
|Allocates memory on the heap with the given size and memory alignment. This is typically in the 0x4??????? memory area
 +
|-
 +
|MEMFreeToDefaultHeap
 +
|<code>void MEMFreeToDefaultHeap(void* addr)</code>
 +
|Frees previously heap memory. addr is the address returned by MEMAllocFromDefaultHeapEx()
 +
|-
 +
|OSAllocFromSystem
 +
|<code>void *OSAllocFromSystem(uint32_t size, int alignment)</code>
 +
|Allocates system memory with the given size and memory alignment. This is typically in the 0x10?????? memory area
 +
|-
 +
|OSFreeToSystem
 +
|<code>void OSFreeToSystem(void* addr)</code>
 +
|Frees previously allocated system memory. addr is the address returned by OSAllocFromSystem()
 +
|-
 +
|OSBlockMove
 +
|<code>void *OSBlockMove(void* dst, const void* src, uint32_t size, bool flush);</code>
 +
|Will move src to dest (And set the flush flag to flush src in the data cache)
 +
|-
 +
|OSBlockSet
 +
|<code>void *OSBlockSet(void* dst, uint8_t val, uint32_t size);</code>
 +
|Basic memset (??? Is that uint8_t)
 +
|}
 +
 
 +
== Cache ==
 
{| class="wikitable"
 
{| class="wikitable"
 
!Name
 
!Name
Line 9: Line 112:  
|-
 
|-
 
|DCFlushRange
 
|DCFlushRange
|<code>void DCFlushRange(const void *addr, size_t length);</code>  
+
|<code>void DCFlushRange(const void *addr, size_t length)</code>  
 
|Flush the specified data cache blocks to memory
 
|Flush the specified data cache blocks to memory
 
|-
 
|-
 
|DCInvalidateRange
 
|DCInvalidateRange
|<code>void DCInvalidateRange(void *addr, size_t length);</code>  
+
|<code>void DCInvalidateRange(void *addr, size_t length)</code>  
 
|Invalidate the specified data cache blocks
 
|Invalidate the specified data cache blocks
 
|-
 
|-
 
|ICInvalidateRange
 
|ICInvalidateRange
|<code>void ICInvalidateRange(const void *addr, size_t length);</code>  
+
|<code>void ICInvalidateRange(const void *addr, size_t length)</code>  
 
|Invalidate the specified instruction cache blocks
 
|Invalidate the specified instruction cache blocks
 
|}
 
|}
   −
===Disassembler===
+
== Disassembler ==
 
{| class="wikitable"
 
{| class="wikitable"
 
!Name
 
!Name
Line 28: Line 131:  
|-
 
|-
 
|DisassemblePPCOpcode
 
|DisassemblePPCOpcode
|<code>void DisassemblePPCOpcode(uint32_t *addr, char *instr_buf, int instr_len, find_symbol_t sym_func, int flags);</code>
+
|<code>void DisassemblePPCOpcode(uint32_t *addr, char *instr_buf, int instr_len, find_symbol_t sym_func, int flags)</code>
 
|Disassemble a PPC opcode at addr and place it into instr_buf (instr_len must be 0x40 or lower)
 
|Disassemble a PPC opcode at addr and place it into instr_buf (instr_len must be 0x40 or lower)
 
|-
 
|-
 
|DisassemblePPCRange
 
|DisassemblePPCRange
|<code>void DisassemblePPCRange(uint32_t *start, uint32_t *end, printf_t printf_func, find_symbol_t sym_func, int flags);</code>  
+
|<code>void DisassemblePPCRange(uint32_t *start, uint32_t *end, printf_t printf_func, find_symbol_t sym_func, int flags)</code>  
 
|Disassemble PPC instructions from start to end, printing them using printf_func() with various flags applied
 
|Disassemble PPC instructions from start to end, printing them using printf_func() with various flags applied
 
|}
 
|}
   −
===Dynamic Linking===
+
== Dynamic Linking ==
 
{| class="wikitable"
 
{| class="wikitable"
 
!Name
 
!Name
Line 43: Line 146:  
|-
 
|-
 
|OSDynLoad_Acquire
 
|OSDynLoad_Acquire
|<code>void OSDynLoad_Acquire(const char *rplname, uint32_t *handle);</code>  
+
|<code>int OSDynLoad_Acquire(const char *rplname, uint32_t *handle)</code>  
|Acquire a handle to an RPL by name
+
|Acquire a handle to an RPL by name and returns a error code.
 +
|-
 +
|OSDynLoad_IsModuleLoaded
 +
|<code>int OSDynLoad_IsModuleLoaded(const char *rplname, uint32_t *handle)</code>
 +
|Checks if a module is loaded. If the target module is loaded the function set the existing handle to the module otherwise the handle is not set. Returns a errorcode.
 
|-
 
|-
 
|OSDynLoad_FindExport
 
|OSDynLoad_FindExport
|<code>void OSDynLoad_FindExport(uint32_t handle, bool isdata, const char *symname, void **address);</code>  
+
|<code>int OSDynLoad_FindExport(uint32_t handle, bool isdata, const char *symname, void **address)</code>  
|Get a symbol address from a loaded RPL
+
|Get a symbol address from a loaded RPL and returns a error code.
 +
|-
 +
|OSDynLoad_Release
 +
|<code>void OSDynLoad_Release(uint32_t *handle)</code>
 +
|Decrease the reference count and release the module if the reference count hit zero. "coreinit.rpl" can´t be released.
 
|}
 
|}
   −
===Error===
+
Attempting to use OSDynLoad_Acquire() with rplname "nn_uds.rpl" / "test.rpl" (which Internet Browser itself doesn't import) under Internet Browser has the same result: OSDynLoad_Acquire() never returns. Launching a game which uses the former before running Internet Browser has the same result.
 +
 
 +
== Error ==
 
{| class="wikitable"
 
{| class="wikitable"
 
!Name
 
!Name
Line 58: Line 171:  
|-
 
|-
 
|OSFatal
 
|OSFatal
|<code>void OSFatal(const char *msg);</code>  
+
|<code>void OSFatal(const char *msg)</code>  
|Print a message to the screen then halts the system via: OSPanic("OSFatal.c", linenum, OSFatal_inputmsg);
+
|Print a message to the screen then halts the system via: OSPanic("OSFatal.c", linenum, OSFatal_inputmsg)
 
|}
 
|}
   −
===Internal===
+
== Internal ==
 
{| class="wikitable"
 
{| class="wikitable"
 
!Name
 
!Name
Line 69: Line 182:  
|-
 
|-
 
|__os_snprintf
 
|__os_snprintf
|<code>int __os_snprintf(char *buf, size_t n, const char *format, ... );</code>  
+
|<code>int __os_snprintf(char *buf, size_t n, const char *format, ... )</code>  
 
|Format a string and place it in a buffer (just like [http://www.cplusplus.com/reference/cstdio/snprintf/ snprintf()])
 
|Format a string and place it in a buffer (just like [http://www.cplusplus.com/reference/cstdio/snprintf/ snprintf()])
 
|}
 
|}
   −
===Threads===
+
== Threads ==
 
{| class="wikitable"
 
{| class="wikitable"
 
!Name
 
!Name
Line 80: Line 193:  
|-
 
|-
 
|OSCreateThread
 
|OSCreateThread
|<code>bool OSCreateThread(OSThread *thread, void (*entry)(int,void*), int argc, void *args, void *stack, size_t stack_size, int32_t priority, int16_t affinity);</code>  
+
|<code>bool OSCreateThread(OSThread *thread, void (*entry)(int,void*), int argc, void *args, void *stack, size_t stack_size, int32_t priority, int16_t affinity)</code>  
 
|Create a (initially-paused) thread that starts at the specified entry point
 
|Create a (initially-paused) thread that starts at the specified entry point
 
|-
 
|-
 
|OSResumeThread
 
|OSResumeThread
|<code>void OSResumeThread(OSThread *thread);</code>
+
|<code>void OSResumeThread(OSThread *thread)</code>
 
|Resume a paused thread, causing it to be scheduled
 
|Resume a paused thread, causing it to be scheduled
 
|-
 
|-
 
|OSYieldThread
 
|OSYieldThread
|<code>void OSYieldThread(void);</code>
+
|<code>void OSYieldThread(void)</code>
 
|Yield control of the CPU, allowing another thread to run
 
|Yield control of the CPU, allowing another thread to run
 
|-
 
|-
 
|OSGetCurrentThread
 
|OSGetCurrentThread
|<code>OSThread *OSGetCurrentThread(void);</code>
+
|<code>OSThread *OSGetCurrentThread(void)</code>
|Get the OSThread structure ptr for the current thread.
+
|Get the OSThread structure ptr for the current thread
 +
|-
 +
|OSSetThreadName
 +
|<code>void OSSetThreadName(OSThread *thread, char *name)</code>
 +
|Sets a new name for the thread
 +
|-
 +
|OSGetThreadName
 +
|<code>char *OSGetThreadName(OSThread *thread)</code>
 +
|Returns a pointer to the thread's name char array
 
|-
 
|-
 
|OSSetThreadAffinity
 
|OSSetThreadAffinity
|<code>uint32_t OSSetThreadAffinity(OSThread* thread, int16_t affinity);</code>
+
|<code>uint32_t OSSetThreadAffinity(OSThread* thread, int16_t affinity)</code>
|Sets the affinity for the specified thread. Returns 0 for failure, 1 for success.
+
|Sets the affinity for the specified thread. Returns 0 for failure, 1 for success
 
|-
 
|-
 
|OSGetCoreId
 
|OSGetCoreId
|<code>uint32_t OSGetCoreId(void);</code>
+
|<code>uint32_t OSGetCoreId(void)</code>
|Returns the PowerPC coreid this code is running on(value of spr1007).
+
|Returns the PowerPC coreid this code is running on(value of spr1007)
 
|-
 
|-
 
|OSGetStackPointer
 
|OSGetStackPointer
|<code>uint32_t *OSGetStackPointer(void);</code>
+
|<code>uint32_t *OSGetStackPointer(void)</code>
|Returns the r1 register(aka "sp").
+
|Returns the r1 register(aka "sp")
 
|-
 
|-
 
|OSSwitchStack
 
|OSSwitchStack
|<code>void OSSwitchStack(uint32_t *stackptr);</code>
+
|<code>void OSSwitchStack(uint32_t *stackptr)</code>
|This basically sets the current thread's r1(aka sp) to the input address, and also calls internal coreinit functions with input_param=input_stackptr. Note that this overwrites data near the start of the specified address due to stack push/pop. This will return to the address LR was set to at function entry.
+
|This basically sets the current thread's r1(aka sp) to the input address, and also calls internal coreinit functions with input_param=input_stackptr. Note that this overwrites data near the start of the specified address due to stack push/pop. This will return to the address LR was set to at function entry
 
|}
 
|}
   −
===Codegen===
+
== Codegen ==
 
These functions are used for managing the codegen/JIT area which begins at virtual-memory address 0x01800000. The codegen area size, whether codegen can be used at all, and permissions/etc are loaded from cos.xml for the process. Hence, almost all processes which don't use WebKit don't have access to codegen. These permissions include the coreid which is allowed to use codegen at all(with [[Internet Browser]] this is core1). These permissions also seem to include whether the process is allowed to use OSCodegenCopy([[Internet Browser]] isn't allowed to use it). Certain Virtual Console titles seem to be the only applications which are allowed to use OSCodegenCopy due to cos.xml(codegen_core is set to 40000001 for these, unlike 80000001 for browser-based titles).
 
These functions are used for managing the codegen/JIT area which begins at virtual-memory address 0x01800000. The codegen area size, whether codegen can be used at all, and permissions/etc are loaded from cos.xml for the process. Hence, almost all processes which don't use WebKit don't have access to codegen. These permissions include the coreid which is allowed to use codegen at all(with [[Internet Browser]] this is core1). These permissions also seem to include whether the process is allowed to use OSCodegenCopy([[Internet Browser]] isn't allowed to use it). Certain Virtual Console titles seem to be the only applications which are allowed to use OSCodegenCopy due to cos.xml(codegen_core is set to 40000001 for these, unlike 80000001 for browser-based titles).
   Line 121: Line 242:  
|-
 
|-
 
|OSGetCodegenVirtAddrRange
 
|OSGetCodegenVirtAddrRange
|<code>void OSGetCodegenVirtAddrRange(uint32_t *outaddr, uint32_t *outsize);</code>
+
|<code>void OSGetCodegenVirtAddrRange(uint32_t *outaddr, uint32_t *outsize)</code>
 
|This calls syscall 0x4e00 then writes the output r3/r4 from the syscall, to outaddr/outsize. The outaddr value is codegen+0, outsize is the size of the entire codegen memory that's currently mapped. When codegen isn't available, the output values are all-zero.
 
|This calls syscall 0x4e00 then writes the output r3/r4 from the syscall, to outaddr/outsize. The outaddr value is codegen+0, outsize is the size of the entire codegen memory that's currently mapped. When codegen isn't available, the output values are all-zero.
 
|-
 
|-
 
|OSGetCodegenCore
 
|OSGetCodegenCore
|<code>uint32_t OSGetCodegenCore(void);</code>
+
|<code>uint32_t OSGetCodegenCore(void)</code>
 
|This returns (syscall_7600() & 0x3), which is the coreid that's allowed to use codegen.
 
|This returns (syscall_7600() & 0x3), which is the coreid that's allowed to use codegen.
 
|-
 
|-
 
|OSGetCodegenMode
 
|OSGetCodegenMode
|<code>uint32_t OSGetCodegenMode(void);</code>
+
|<code>uint32_t OSGetCodegenMode(void)</code>
 
|This returns (syscall_7600() & ~0x3), which contains some of the flags used by the kernel for codegen permission checking. The only bits which the kernel can ever set here are for bitmask 0xC0000000.
 
|This returns (syscall_7600() & ~0x3), which contains some of the flags used by the kernel for codegen permission checking. The only bits which the kernel can ever set here are for bitmask 0xC0000000.
 
|-
 
|-
 
|OSSwitchSecCodeGenMode
 
|OSSwitchSecCodeGenMode
|<code>uint32_t OSSwitchSecCodeGenMode(bool flag);</code>
+
|<code>uint32_t OSSwitchSecCodeGenMode(bool flag)</code>
 
|This adjusts the entire codegen memory permissions, if codegen is available. 0: RW- permissions. Non-zero: R-X permissions. This returns 0 for failure, non-zero for success.
 
|This adjusts the entire codegen memory permissions, if codegen is available. 0: RW- permissions. Non-zero: R-X permissions. This returns 0 for failure, non-zero for success.
 
|-
 
|-
 
|OSGetSecCodeGenMode
 
|OSGetSecCodeGenMode
|<code>uint32_t OSGetSecCodeGenMode(void);</code>
+
|<code>uint32_t OSGetSecCodeGenMode(void)</code>
 
|This just calls syscall 0x7700. Which then returns 1 when codegen is available+mapped, 0 otherwise.
 
|This just calls syscall 0x7700. Which then returns 1 when codegen is available+mapped, 0 otherwise.
 
|-
 
|-
 
|OSCodegenCopy
 
|OSCodegenCopy
|<code>uint32_t OSCodegenCopy(uint32_t *dstaddr, uint32_t *srcaddr, uint32_t size);</code>
+
|<code>uint32_t OSCodegenCopy(uint32_t *dstaddr, uint32_t *srcaddr, uint32_t size)</code>
 
|In coreinit this just executes syscall 0x7800. This returns 0 for failure, 1 for success. The dstaddr(+size) must be within the codegen memory(integer overflow with dstaddr+size is checked for). If all of the permissions/bounds checks pass(size must not be zero), the kernel will then set the codegen permissions to RW- with code used by SwitchSecCodeGenMode internally. Then it copies the input data from userland memory to the dstaddr with the specified size. Lastly, the codegen permissions are set to R-X with the previously mentioned internal function.
 
|In coreinit this just executes syscall 0x7800. This returns 0 for failure, 1 for success. The dstaddr(+size) must be within the codegen memory(integer overflow with dstaddr+size is checked for). If all of the permissions/bounds checks pass(size must not be zero), the kernel will then set the codegen permissions to RW- with code used by SwitchSecCodeGenMode internally. Then it copies the input data from userland memory to the dstaddr with the specified size. Lastly, the codegen permissions are set to R-X with the previously mentioned internal function.
 
|}
 
|}
   −
=== Screen ===
+
== Screen ==
 
"bufferNum" is the screenid, see the below screen defines for that. OSScreen *only* supports values 0-1 for screenid. "colour" in the form stored in memory is RGBA8. These functions can't be used without crashing, unless OSScreen was properly initialized. The below functions will immediately return if x/y is out-of-bounds.
 
"bufferNum" is the screenid, see the below screen defines for that. OSScreen *only* supports values 0-1 for screenid. "colour" in the form stored in memory is RGBA8. These functions can't be used without crashing, unless OSScreen was properly initialized. The below functions will immediately return if x/y is out-of-bounds.
   Line 164: Line 285:  
|-
 
|-
 
|OSScreenShutdown
 
|OSScreenShutdown
|void OSScreenShutdown(void);
+
|void OSScreenShutdown(void)
 
|This just does the following two function calls: "OSScreenEnableEx(0, 0)" and "OSScreenEnableEx(1, 0)".
 
|This just does the following two function calls: "OSScreenEnableEx(0, 0)" and "OSScreenEnableEx(1, 0)".
 
|-
 
|-
Line 180: Line 301:  
|-
 
|-
 
|OSScreenFlipBuffersEx
 
|OSScreenFlipBuffersEx
|void OSScreenFlipBuffersEx(int bufferNum);
+
|void OSScreenFlipBuffersEx(int bufferNum)
 
|Do a buffer-swap, which results in the buffer previously being drawn to being displayed. This flushes data-cache for the framebuffer and updates coreinit + hw-regs state.
 
|Do a buffer-swap, which results in the buffer previously being drawn to being displayed. This flushes data-cache for the framebuffer and updates coreinit + hw-regs state.
 
|-
 
|-
 
|OSScreenClearBufferEx
 
|OSScreenClearBufferEx
|void OSScreenClearBufferEx(int bufferNum, uint32_t colour);
+
|void OSScreenClearBufferEx(int bufferNum, uint32_t colour)
 
|Fill the specified buffer with a certain color. This writes the input u32 value to coreinit screen state, then copies that u32 in state to every u32 in the single framebuffer(calculated with the total bytesize of a single framebuffer).
 
|Fill the specified buffer with a certain color. This writes the input u32 value to coreinit screen state, then copies that u32 in state to every u32 in the single framebuffer(calculated with the total bytesize of a single framebuffer).
 
|-
 
|-
 
|OSScreenPutPixelEx
 
|OSScreenPutPixelEx
|void OSScreenPutPixelEx(int bufferNum, uint32_t posX, uint32_t posY, uint32_t colour);
+
|void OSScreenPutPixelEx(int bufferNum, uint32_t posX, uint32_t posY, uint32_t colour)
 
|Draw a pixel of a certain color to the specified coordinates. This just writes the input u32 to the target location in the framebuffer, nothing is done with the data already stored in the framebuffer.
 
|Draw a pixel of a certain color to the specified coordinates. This just writes the input u32 to the target location in the framebuffer, nothing is done with the data already stored in the framebuffer.
 
|-
 
|-
 
|OSScreenPutFontEx
 
|OSScreenPutFontEx
|void OSScreenPutFontEx(int bufferNum, uint32_t posX, uint32_t posY, const char *str);
+
|void OSScreenPutFontEx(int bufferNum, uint32_t posX, uint32_t posY, const char *str)
 
|Write text to the specified buffer; unlike OSFatal() this doesn't halt your system.
 
|Write text to the specified buffer; unlike OSFatal() this doesn't halt your system.
 
|}
 
|}
   −
== Structures ==
+
== System ==
=== Threads ===
+
{| class="wikitable"
 +
!Name
 +
!Prototype
 +
!Description
 +
|-
 +
|OSGetSystemTime
 +
|<code>OSTime OSGetSystemTime(void)</code>
 +
|Gets OSTime (which is just an int64_t) from tbu/tb (timebase upper/lower special purpose registers), same as get_timebase in kernel (FFF099E0 on 5.5.X)
 +
|-
 +
|OSGetTime
 +
|<code>OSTime OSGetTime(void)</code>
 +
|Returns OSTime equal to then number of ticks from 1/1/2000 00:00
 +
|-
 +
|OSTicksToCalendarTime
 +
|<code>void OSTicksToCalendarTime(OSTime time, OSCalendarTime *calendartime)</code>
 +
|Converts OStime to an OSCalendarTime structure
 +
|-
 +
|OSGetSystemInfo
 +
|<code>uint32_t* OSGetSystemInfo(void)</code>
 +
|Returns pointer to OSSystemInfo struct (see below)
 +
|-
 +
|OSIsDebuggerInitialized
 +
|<code>int OSIsDebuggerInitialized(void)</code>
 +
|Returns 1 if [https://en.wikipedia.org/wiki/GNU_Debugger GDB] has been initialized. Default is 0.
 +
|-
 +
|OSIsDebuggerPresent
 +
|<code>uint32_t OSIsDebuggerPresent(void)</code>
 +
|Returns 1 if a debugger is present. Default is 0.
 +
|-
 +
|OSIsInterruptEnabled
 +
|<code>int OSIsInterruptEnabled(void)</code>
 +
|Returns 1 if [https://en.wikipedia.org/wiki/Interrupt interrupts] are enabled. Default is 1.
 +
|-
 +
|OSDisableInterrupts
 +
|<code>int OSDisableInterrupts(void)</code>
 +
|Disables interrupts. Returns 1 on success otherwise, if already disabled, returns 0.
 +
|-
 +
|OSIsAddressValid
 +
|<code>int OSIsAddressValid(int addr)</code>
 +
|Determines whether the given address addr is readable. Returns 1 or 0.
 +
|-
 +
|OSIsHomeButtonMenuEnabled
 +
|<code>int OSIsHomeButtonMenuEnabled(void)</code>
 +
|Whether the home menu button is enabled. Default is 1.
 +
|-
 +
|OSGetConsoleType
 +
|<code>uint32_t OSGetConsoleType(void)</code>
 +
|Returns the [[#ConsoleType|ConsoleType]].
 +
|-
 +
|OSSleepTicks
 +
|<code>void OSSleepTicks(OSTime)</code>
 +
|Makes the current thread sleep for a specified amount of ticks
 +
|-
 +
|_Exit
 +
|<code>void _Exit(int status)</code>
 +
|Makes the current process exit. Crashes when invoked in titles like Wii U games
 +
|-
 +
|OSEffectiveToPhysical
 +
|<code>uint32_t OSEffectiveToPhysical(uint32_t addr)</code>
 +
|Converts an effective address to its physical representation. For example 0x10000000 becomes 0x50000000
 +
|-
 +
|OSGetPFID
 +
|<code>int OSGetPFID(void)</code>
 +
|Returns the current process PFID e.g. 15 (Game)
 +
|-
 +
|OSGetUPID
 +
|<code>int OSGetUPID(void)</code>
 +
|Does the same as OSGetPFID
 +
|-
 +
|OSGetTitleID
 +
|<code>uint64_t OSGetTitleID(void)</code>
 +
|Returns the current title id e.g. 0x0005000E1010ED00 (Mario Kart 8 EUR). See [http://wiiubrew.org/wiki/Title_database]
 +
|-
 +
|OSGetOSID
 +
|<code>uint64_t OSGetOSID(void)</code>
 +
|Returns the current OS id e.g. 0x000500101000400A (OSv10). See [http://wiiubrew.org/wiki/Title_database]
 +
|-
 +
|__OSGetAppFlags
 +
|<code>uint32_t __OSGetAppFlags(void)</code>
 +
|Returns the flags set for the current app e.g. 0x00000200. Influences the control flow in OSSDKVersionInits
 +
|-
 +
|__OSGetProcessSDKVersion
 +
|<code>uint32_t __OSGetProcessSDKVersion(void)</code>
 +
|Returns the SDK version e.g. 0x000050DF
 +
|-
 +
|OSSDKVersionInits
 +
|<code>? OSSDKVersionInits(?)</code>
 +
|Initializes the OS SDK version using the results from __OSGetAppFlags and __OSGetProcessSDKVersion. Seems to crash when invoked
 +
|-
 +
|OSShutdown
 +
|<code>int OSShutdown(int status)</code>
 +
|Shuts down the console. Behaves identical to holding down the power button. Returns 1 on success
 +
|}
 +
 
 +
== Boot ==
 +
{| class="wikitable"
 +
!Name
 +
!Prototype
 +
!Description
 +
|-
 +
|OSIsColdBoot
 +
|<code>int OSIsColdBoot(void)</code>
 +
|Probably allows for [https://en.wikipedia.org/wiki/Cold_boot_attack cold boot attacks]. Default is 0.
 +
|-
 +
|OSIsSelfRefreshBoot
 +
|<code>int OSIsSelfRefreshBoot(void)</code>
 +
|Probably handles [https://en.wikipedia.org/wiki/Memory_refresh memory refreshing]. Default is 0.
 +
|-
 +
|OSIsNormalBoot
 +
|<code>int OSIsNormalBoot(void)</code>
 +
|Determines the boot type (normal and ?). Default is 1.
 +
|-
 +
|OSIsECOBoot
 +
|<code>int OSIsECOBoot(void)</code>
 +
|Whether to save energy (at the expense of processing power). Default is 0.
 +
|-
 +
|OSIsStandbyBoot
 +
|<code>int OSIsStandbyBoot(void)</code>
 +
|Whether the boot is in [https://en.wikipedia.org/wiki/Sleep_mode sleep mode]. Default is 0.
 +
|}
 +
 
 +
== IOS ==
 +
{| class="wikitable"
 +
!Name
 +
!Prototype
 +
!Description
 +
|-
 +
|IOS_Open
 +
|<code>int IOS_Open(char *path, uint32_t mode)</code>
 +
|Gets an handle to an IOS device node at the specified path whith the given mode
 +
|-
 +
|IOS_Close
 +
|<code>int IOS_Close(int fd);</code>
 +
|Closes an handle to an IOS device node fd (returned by IOS_Open)
 +
|-
 +
|IOS_Ioctl
 +
|<code>int IOS_Ioctl(int fd, uint32_t request, void *input_buf, uint32_t input_buf_len, void *output_buf, uint32_t output_buf_len)</code>
 +
|Sends an ioctl request to an IOS device node fd; input_buf contains the input data for the request, output_buf cointains what the request returns
 +
|}
 +
 
 +
== MCP ==
 +
{| class="wikitable"
 +
!Name
 +
!Prototype
 +
!Description
 +
|-
 +
|MCP_Open
 +
|int MCP_Open()
 +
|Opens an handle to the MCP IOS node
 +
|-
 +
|MCP_Close
 +
|int MCP_Close(int handle)
 +
|Closes an handle to the MCP IOS node
 +
|-
 +
|MCP_DeviceList
 +
|int MCP_DeviceList(int handle, int *numDevices, MCPDeviceList *outDevices, uint32_t outBufferSize)
 +
|Gets a list of available devices
 +
|-
 +
|MCP_FullDeviceList
 +
|int MCP_FullDeviceList(int handle, int *numDevices, MCPDeviceList *outDevices, uint32_t outBufferSize)
 +
|Gets the full list of available devices
 +
|-
 +
|MCP_InstallSetTargetDevice
 +
|int MCP_InstallSetTargetDevice(int handle, MCPInstallTarget device)
 +
|Sets the the target device for title installation
 +
|-
 +
|MCP_InstallGetTargetDevice
 +
|int MCP_InstallGetTargetDevice(int handle, MCPInstallTarget *deviceOut)
 +
|Gets the target device for title installation
 +
|-
 +
|MCP_InstallSetTargetUsb
 +
|int MCP_InstallSetTargetUsb(int handle, int usb)
 +
|Sets the target USB device for installation
 +
|-
 +
|MCP_InstallGetInfo
 +
|int MCP_InstallGetInfo(int handle, char *path, MCPInstallInfo *out)
 +
|Gets informations about the install operation
 +
|-
 +
|MCP_InstallTitleAsync
 +
|int MCP_InstallTitleAsync(int handle, char *path, MCPInstallInfo *out)
 +
|Installs a title
 +
|-
 +
|MCP_InstallGetProgress
 +
|int MCP_InstallGetProgress(int handle, MCPInstallProgress *installProgressOut)
 +
|Gets installation progress
 +
|-
 +
|MCP_InstallTitleAbort
 +
|int MCP_InstallTitleAbort(int handle)
 +
|Aborts the installation of a title
 +
|-
 +
|MCP_UninstallTitleAsync
 +
|int MCP_UninstallTitleAsync(int handle, char *path, MCPInstallInfo *out)
 +
|Uninstalls a title
 +
|}
 +
 
 +
= Filesystem =
 +
The FS* functions appear to only be used by regular applications, while the FSA* functions appear to only be used by system rpls.
 +
 
 +
== Setup ==
 +
{| class="wikitable"
 +
!Name
 +
!Signature
 +
!Description
 +
!Notes
 +
|-
 +
|FSInit
 +
|<code>void FSInit(void)</code>
 +
|Initializes the FS library
 +
|Must be called before anything else! Can be called multiple times safely.
 +
|-
 +
|FSShutdown
 +
|<code>void FSShutdown(void)</code>
 +
|Deinitializes the FS library
 +
|The current implementation of this function doesn't do anything.
 +
|-
 +
|FSAddClient
 +
|<code>FSStatus FSAddClient(FSClient *client, FSRetflag flag)</code>
 +
|Registers a new client for use
 +
|Returns OK or MAX_CLIENTS(-3). Client size is 0x1700 bytes, should be 0x20 byte padded.
 +
|-
 +
|FSDelClient
 +
|<code>FSStatus FSDelClient(FSClient *client, FSRetflag flag)</code>
 +
|Unregisters an existing client
 +
|See above for data size. The current implementation of this function never fails.
 +
|-
 +
|FSGetClientNum
 +
|<code>int FSGetClientNum(void)</code>
 +
|Gets the number of registered clients
 +
|
 +
|}
 +
 
 +
== Command Blocks ==
 +
{| class="wikitable"
 +
!Name
 +
!Prototype
 +
!Description
 +
!Notes
 +
|-
 +
|FSInitCmdBlock
 +
|<code>void FSInitCmdBlock(FSCmdBlock *block)</code>
 +
|Initializes a command block for use.
 +
|Command Block size is 0xA80 bytes, should be 0x20 byte padded.
 +
|-
 +
|FSCancelCommand
 +
|<code>void FSCancelCommand(FSClient *client, FSCmdBlock *block)</code>
 +
|Cancels the pending command
 +
|Cannot cancel an ongoing command, it has to complete.
 +
|-
 +
|FSCancelAllCommands
 +
|<code>void FSCancelAllCommands(FSClient *client)
 +
|Cancels all pending commands for the passed client.
 +
|Cannot cancel an ongoing command, it has to complete.
 +
|-
 +
|FSSetUserData
 +
|<code>void FSSetUserData(FSCmdBlock *block, void *user_data)</code>
 +
|Sets the user data for the passed command block
 +
|
 +
|-
 +
|FSGetUserData
 +
|<code>void* FSGetUserData(FSCmdBlock *block)</code>
 +
|Returns pointer to the user data
 +
|Can return NULL if invalid, please error check.
 +
|-
 +
|FSSetCmdPriority
 +
|<code>void FSSetCmdPriority(FSCmdBlock *block, uint8_t priority)</code>
 +
|Sets the priority for the passed command block
 +
|Priority 0 is highest, 31 is lowest, 16 is default.
 +
|-
 +
|FSGetCmdPriority
 +
|<code>int FSGetCmdPriority(FSCmdBlock *block)</code>
 +
|Gets the priority for the passed command block
 +
|Priority 0 is highest, 31 is lowest, 16 is default.
 +
|-
 +
|FSGetCurrentCmdBlock
 +
|<code>FSCmdBlock* FSGetCurrentCmdBlock(FSClient *client)
 +
|Returns a pointer to the command block being processed.
 +
|May return NULL if invalid client or if nothing's processed, please error check.
 +
|}
 +
 
 +
== File Commands ==
 +
{| class="wikitable"
 +
!Name
 +
!Prototype
 +
!Description
 +
!Return Values: 0=FS_STATUS_OK -or- <0=[[#Defines| Error Codes]]
 +
!Notes
 +
|-
 +
|FSOpenFile
 +
|<code>FSStatus FSOpenFile( FSClient *client, FSCmdBlock *block, const char *path, const char *mode, FSFileHandle *fileHandle, FSRetFlag errHandling );
 +
|Open file stream
 +
| -1 -3 -4 -6 -7 -8 -9 -10 -12 -13 -15 -17 -18 -19
 +
|
 +
|-
 +
|FSCloseFile
 +
|<code>FSStatus FSCloseFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSRetFlag errHandling );
 +
|Close file stream.
 +
| -1 -17
 +
|
 +
|-
 +
|FSReadFile
 +
|<code>FSStatus FSReadFile( FSClient *client, FSCmdBlock *block, void *dest, FSSize size, FSCount count, FSFileHandle fileHandle, FSFlag flag, FSRetFlag errHandling );
 +
|Read data from an open file.
 +
|Non-negative value ( >= 0 ) = Number of elements read or -1 -9 -15 -17 -18
 +
|
 +
|-
 +
|FSWriteFile
 +
|<code>FSStatus FSWriteFile( FSClient *client, FSCmdBlock *block, const void *source, FSSize size, FSCount count, FSFileHandle fileHandle, FSFlag flag, FSRetFlag errHandling );
 +
|Write data to file
 +
|Non-negative value ( >= 0 ) = Number of elements write or -1 -9 -11 -12 -13 -14 -15 -17 -18
 +
|
 +
|-
 +
|FSAppendFile
 +
|<code>FSStatus FSAppendFile( FSClient *client, FSCmdBlock *block, FSSize size, FSCount count, FSFileHandle fileHandle, FSRetFlag errHandling );
 +
|Append file.
 +
|Non-negative value ( >= 0 ) = Newly appended size (newly added preallocation area [Byte] divided by size) or -1 -9 -11 -12 -13 -15 -17 -18 -19
 +
|
 +
|-
 +
|FSTruncateFile
 +
|<code>FSStatus FSTruncateFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSRetFlag errHandling );
 +
|Truncate file at file position
 +
| -1 -9 -12 -13 -14 -15 -17 -18
 +
|
 +
|-
 +
|FSFlushFile
 +
|<code>FSStatus FSFlushFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSRetFlag errHandling );
 +
|Flush file.
 +
| -1 -9 -15 -17 -18
 +
|
 +
|-
 +
|FSGetPosFile
 +
|<code>FSStatus FSGetPosFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSFilePosition *returnedFpos, FSRetFlag errHandling );
 +
|Get position of specified file stream.
 +
| -1 -15 -17 -18
 +
|
 +
|-
 +
|FSSetPosFile
 +
|<code>FSStatus FSSetPosFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSFilePosition fpos, FSRetFlag errHandling );
 +
|Set position of specified file stream
 +
| -1 -15 -17 -18
 +
|
 +
|-
 +
|FSGetStatFile
 +
|<code>FSStatus FSGetStatFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSStat *returnedStat, FSRetFlag errHandling );
 +
|Get stat information of specified file.
 +
| -1 -15 -17 -18
 +
|
 +
|-
 +
|FSIsEof
 +
|<code>FSStatus FSIsEof( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSRetFlag errHandling );
 +
|Determine if the current file position of specified file stream is at the end-of-file(EOF).
 +
| -1 -2 -15 -17 -18
 +
|
 +
|-
 +
|FSOpenDir
 +
|<code>FSStatus FSOpenDir( FSClient *client, FSCmdBlock *block, const char *path, FSDirHandle *dirHandle, FSRetFlag errHandling );
 +
|Open directory stream
 +
| -1 -3 -6 -8 -10 -15 -17 -18
 +
|
 +
|-
 +
|FSCloseDir
 +
|<code>FSStatus FSCloseDir( FSClient *client, FSCmdBlock *block, FSDirHandle dirHandle, FSRetFlag errHandling );
 +
|Close directory stream.
 +
| -1 -17
 +
|
 +
|-
 +
|FSReadDir
 +
|<code>FSStatus FSReadDir( FSClient *client, FSCmdBlock *block, FSDirHandle dirHandle, FSDirEntry *returnedDirEntry, FSRetFlag errHandling );
 +
|Read next directory entry.
 +
| -1 -2 -15 -17 -18
 +
|
 +
|-
 +
|FSRewindDir
 +
|<code>FSStatus FSRewindDir( FSClient *client, FSCmdBlock *block, FSDirHandle dirHandle, FSRetFlag errHandling );
 +
|Set position of specified directory stream to the head.
 +
| -1 -2 -15 -17 -18
 +
|
 +
|-
 +
|FSGetCwd
 +
|<code>FSStatus FSGetCwd( FSClient *client, FSCmdBlock *block, char *returnedPath, u32 bytes, FSRetFlag errHandling );
 +
|Get current work directory.
 +
| -1
 +
|
 +
|-
 +
|FSMakeDir
 +
|<code>FSStatus FSMakeDir( FSClient *client, FSCmdBlock *block, const char*path, FSRetFlag errHandling );
 +
|Create directory.
 +
| -1 -5 -6 -8 -10 -12 -13 -14 -17 -18 -19 
 +
|
 +
|-
 +
|FSRemove
 +
|<code>FSStatus FSRemove( FSClient *client, FSCmdBlock *block, const char *path, FSRetFlag errHandling );
 +
|Remove file or directory.
 +
| -1 -4 -6 -8 -9 -10 -12 -13 -14 -15 -17 -18 -19
 +
|
 +
|-
 +
|FSRename
 +
|<code>FSStatus FSRename( FSClient *client, FSCmdBlock *block, const char *oldpath, const char *newpath, FSRetFlag errHandling );
 +
|Rename file or directory.
 +
| -1 -4 -5 -6 -8 -10 -12 -13 -14 -15 -17 -18 -19
 +
|
 +
|-
 +
|FSFlushQuota
 +
|<code>FSStatus FSFlushQuota( FSClient *client, FSCmdBlock *block, const char *path, FSRetFlag errHandling );
 +
|Flush journaling data of quota.
 +
| -1 -6 -14 -15 -17 -18 -19
 +
|
 +
|-
 +
|FSRollbackQuota
 +
|<code>FSStatus FSRollbackQuota( FSClient *client, FSCmdBlock *block, const char *path, FSRetFlag errHandling );
 +
|Rollback journaling data of quota.
 +
| -1 -4 -6 -14 -15 -17 -18
 +
|
 +
|-
 +
|FSGetStat
 +
|<code>FSStatus FSGetStat( FSClient *client, FSCmdBlock *block, const char *path, FSStat *returnedStat, FSRetFlag errHandling );
 +
|Get stat information of specified entry.
 +
| -1 -6 -10 -15 -16 -18 -19
 +
|
 +
|-
 +
|FSGetFreeSpaceSize
 +
|<code>FSStatus FSGetFreeSpaceSize( FSClient *client, FSCmdBlock *block, const char *path, FSFreeSpaceSize *returnedFreeSize, FSRetFlag errHandling );
 +
|Get free space size in quota.
 +
| -1 -6 -10 -15 -17 -18
 +
|
 +
|-
 +
|}
    +
= Structures =
 +
== Threads ==
 
{| class="wikitable"
 
{| class="wikitable"
 
!Name
 
!Name
Line 274: Line 822:  
     /* 0x000 */ OSContext context;
 
     /* 0x000 */ OSContext context;
 
     /* 0x320 */ uint32_t threadTag;              /* "tHrD" */
 
     /* 0x320 */ uint32_t threadTag;              /* "tHrD" */
     /* 0x324 */ uint8_t  state;                  /* Thread state (0 None, 1 Ready, 2 Running, 4 Waiting, 8 Dead) */
+
     /* 0x324 */ uint8_t  state;                  /* Thread state (0 None, 1 Ready, 2 Running, 4 Waiting, 8 Dead) */
 
     /* 0x325 */ uint8_t  attr;                  /* Thread affinity (bits 0-2) and flags */
 
     /* 0x325 */ uint8_t  attr;                  /* Thread affinity (bits 0-2) and flags */
     /* 0x326 */ int16_t  threadId;
+
     /* 0x326 */ int16_t  threadId;
 
     /* 0x328 */ int32_t  suspend;                /* suspend counter, thread is suspended if greater zero */
 
     /* 0x328 */ int32_t  suspend;                /* suspend counter, thread is suspended if greater zero */
     /* 0x32C */ int32_t  priority;              /* effective priority */
+
     /* 0x32C */ int32_t  priority;              /* effective priority */
     /* 0x330 */ int32_t  base;                  /* base priority, set on thread creation or via OSSetThreadPriority */
+
     /* 0x330 */ int32_t  base;                  /* base priority, set on thread creation or via OSSetThreadPriority */
     /* 0x334 */ int32_t val;         /* thread exit value */
+
     /* 0x334 */ int32_t  val;                   /* thread exit value */
     /* 0x338 */ void*    runQueue[3];
+
     /* 0x338 */ void*    runQueue[3];
     /* 0x344 */ OSThreadLink linkRun[3];        
+
     /* 0x344 */ OSThreadLink linkRun[3];
 
     /* 0x35C */ void*    queue;
 
     /* 0x35C */ void*    queue;
 
     /* 0x360 */ OSThreadLink link;
 
     /* 0x360 */ OSThreadLink link;
Line 289: Line 837:  
     /* 0x37C */ OSMutexQueue queueMutex;
 
     /* 0x37C */ OSMutexQueue queueMutex;
 
     /* 0x38C */ OSThreadLink linkActive;  
 
     /* 0x38C */ OSThreadLink linkActive;  
     /* 0x394 */ void*    stackBase;         /* high addr of stack area */
+
     /* 0x394 */ void*    stackBase;             /* high addr of stack area */
 
     /* 0x398 */ void*    stackEnd;              /* low addr of stack area */
 
     /* 0x398 */ void*    stackEnd;              /* low addr of stack area */
 
     /* 0x39C */ void*    entryPoint;            /* initial entry point */
 
     /* 0x39C */ void*    entryPoint;            /* initial entry point */
     /* 0x3A0 */ __crt    crt;                    /* used by GHS runtime */
+
     /* 0x3A0 */ __crt    crt;                    /* used by GHS runtime */
 
     /* 0x578 */ int32_t  _unused578;
 
     /* 0x578 */ int32_t  _unused578;
 
     /* 0x57C */ void*    specific[16];          /* used by OSSetThreadSpecific/OSGetThreadSpecific */
 
     /* 0x57C */ void*    specific[16];          /* used by OSSetThreadSpecific/OSGetThreadSpecific */
Line 319: Line 867:  
|}
 
|}
   −
==Filesystem==
+
== System Info ==
The FS* functions appear to only be used by regular applications, while the FSA* functions appear to only be used by system rpls.
  −
===Initialization===
   
{| class="wikitable"
 
{| class="wikitable"
 
!Name
 
!Name
 
!Prototype
 
!Prototype
!Description
  −
!Notes
   
|-
 
|-
|FSInit
+
|OSSystemInfo
|<code>void FSInit(void);</code>
  −
|Initializes the FS library.
  −
|Must be called before anything else! Can be called multiple times safely.
  −
|-
  −
|FSShutdown
  −
|<code>void FSShutdown(void);</code>
  −
|This is just a "return;".
  −
|
  −
|-
  −
|FSAddClient
  −
|<code>FSStatus FSAddClient(FSClient *client, FSRetflag flag);</code>
  −
|Registers a new client for use.
  −
|Returns OK or MAX_CLIENTS(-3). Client size is 0x1700 bytes, should be 0x20 byte padded.
  −
|-
  −
|FSDelClient
  −
|<code>FSStatus FSDelClient(FSClient *client, FSRetflag flag);</code>
  −
|Unregisters an existing client.
  −
|Returns OK. See above for data size.
  −
|-
  −
|FSGetClientNum
  −
|<code>int FSGetClientNum(void);</code>
  −
|Gets the number of registered clients.
   
|
 
|
 +
<syntaxhighlight lang="C">
 +
typedef struct {
 +
    /* 0x00 */ uint32_t busClockSpeed;
 +
    /* 0x04 */ uint32_t coreClockSpeed;
 +
    /* 0x08 */ OSTime  timeBase;
 +
    /* 0x0C */ uint32_t L2Size[3];
 +
    /* 0x18 */ uint32_t cpuRatio;
 +
} OSSystemInfo;
 +
</syntaxhighlight>
 
|}
 
|}
   −
===Command Blocks===
+
== Filesystem ==
{| class="wikitable"
+
<syntaxhighlight lang="C">
!Name
+
typedef struct {uint8_t buffer[FS_CLIENT_BUFFER_SIZE];} FSClient;
!Prototype
+
typedef struct {uint8_t buffer[FS_CMD_BLOCK_SIZE];} FSCmdBlock;
!Description
+
 
!Notes
+
typedef enum {
|-
+
    FS_VOLSTATE_INITIAL = 0,
|FSInitCmdBlock
+
    FS_VOLSTATE_READY,
|<code>void FSInitCmdBlock(FSCmdBlock *block);</code>
+
|Initializes a command block for use.
+
    FS_VOLSTATE_NO_MEDIA,
|Command Block size is 0xA80 bytes, should be 0x20 byte padded.
+
|-
+
    FS_VOLSTATE_INVALID_MEDIA,
|FSCancelCommand
+
    FS_VOLSTATE_DIRTY_MEDIA,
|<code>void FSCancelCommand(FSClient *client, FSCmdBlock *block);</code>
+
    FS_VOLSTATE_WRONG_MEDIA,
|Cancels the pending command
+
    FS_VOLSTATE_MEDIA_ERROR,
|Cannot cancel an ongoing command, it has to complete.
+
    FS_VOLSTATE_DATA_CORRUPTED,
|-
+
    FS_VOLSTATE_WRITE_PROTECTED,
|FSCancelAllCommands
+
|<code>void FSCancelAllCommands(FSClient *client);
+
    FS_VOLSTATE_JOURNAL_FULL,
|Cancels all pending commands for the passed client.
+
    FS_VOLSTATE_FATAL,
|Cannot cancel an ongoing command, it has to complete.
+
|-
+
    FS_VOLSTATE_INVALID
|FSSetUserData
+
} FSVolumeState;
|<code>void FSSetUserData(FSCmdBlock *block, void *user_data);</code>
+
</syntaxhighlight>
|Sets the user data for the passed command block
  −
|
  −
|-
  −
|FSGetUserData
  −
|<code>void* FSGetUserData(FSCmdBlock *block);</code>
  −
|Returns pointer to the user data
  −
|Can return NULL if invalid, please error check.
  −
|-
  −
|FSSetCmdPriority
  −
|<code>void FSSetCmdPriority(FSCmdBlock *block, uint8_t priority);</code>
  −
|Sets the priority for the passed command block
  −
|Priority 0 is highest, 31 is lowest, 16 is default.
  −
|-
  −
|FSGetCmdPriority
  −
|<code>int FSGetCmdPriority(FSCmdBlock *block);</code>
  −
|Gets the priority for the passed command block
  −
|Priority 0 is highest, 31 is lowest, 16 is default.
  −
|-
  −
|FSGetCurrentCmdBlock
  −
|<code>FSCmdBlock* FSGetCurrentCmdBlock(FSClient *client);
  −
|Returns a pointer to the command block being processed.
  −
|May return NULL if invalid client or if nothing's processed, please error check.
  −
|}
     −
===Defines===
+
= Defines =
 +
== Filesystem ==
 
<syntaxhighlight lang="C">
 
<syntaxhighlight lang="C">
 
#define FS_CLIENT_BUFFER_SIZE  (5888) /* 0x1700 */
 
#define FS_CLIENT_BUFFER_SIZE  (5888) /* 0x1700 */
Line 452: Line 961:  
#define FS_ERROR_LIB_NOT_INIT          (FS_ERROR_BASE - 1)
 
#define FS_ERROR_LIB_NOT_INIT          (FS_ERROR_BASE - 1)
 
#define FS_ERROR_INVALID_CLIENT_HANDLE  (FS_ERROR_BASE -37) /* ??? */
 
#define FS_ERROR_INVALID_CLIENT_HANDLE  (FS_ERROR_BASE -37) /* ??? */
  −
typedef struct {uint8_t buffer[FS_CLIENT_BUFFER_SIZE];} FSClient;
  −
typedef struct {uint8_t buffer[FS_CMD_BLOCK_SIZE];} FSCmdBlock;
  −
  −
typedef enum {
  −
    FS_VOLSTATE_INITIAL = 0,
  −
    FS_VOLSTATE_READY,
  −
  −
    FS_VOLSTATE_NO_MEDIA,
  −
  −
    FS_VOLSTATE_INVALID_MEDIA,
  −
    FS_VOLSTATE_DIRTY_MEDIA,
  −
    FS_VOLSTATE_WRONG_MEDIA,
  −
    FS_VOLSTATE_MEDIA_ERROR,
  −
    FS_VOLSTATE_DATA_CORRUPTED,
  −
    FS_VOLSTATE_WRITE_PROTECTED,
  −
  −
    FS_VOLSTATE_JOURNAL_FULL,
  −
    FS_VOLSTATE_FATAL,
  −
  −
    FS_VOLSTATE_INVALID
  −
} FSVolumeState;
   
</syntaxhighlight>
 
</syntaxhighlight>
   −
== Defines ==
+
== Disassembler ==
=== Disassembler ===
   
printf_func() and find_symbol() have the following types:
 
printf_func() and find_symbol() have the following types:
 
<syntaxhighlight lang="C">
 
<syntaxhighlight lang="C">
Line 491: Line 977:  
</syntaxhighlight>
 
</syntaxhighlight>
   −
=== Screen ===
+
== System ==
 +
=== Time ===
 +
<syntaxhighlight lang="C">
 +
#define OSTime int64_t /* stored in timebase upper/lower */
 +
 
 +
typedef struct {
 +
    int sec;
 +
    int min;
 +
    int hour;
 +
    int mday;
 +
    int mon;
 +
    int year;
 +
    int wday;
 +
    int yday;
 +
    int msec;
 +
    int usec;
 +
} OSCalendarTime;
 +
</syntaxhighlight>
 +
 
 +
=== ConsoleType ===
 +
{| class="wikitable"
 +
|-
 +
! Value
 +
! Description
 +
|-
 +
| 0x03000050
 +
| CAFE (Production/Test)
 +
|-
 +
| 0x11000021
 +
| NDEV 2.1
 +
|-
 +
| 0x11000022
 +
| Cortado (HW)
 +
|-
 +
| 0x11000023
 +
| Cortado (BW)
 +
|-
 +
| 0x11000024
 +
| Cortado (ESP-BW SCM)
 +
|-
 +
| 0x13000040
 +
| EV board (Evaluation)
 +
|-
 +
| 0x13000048
 +
| CAT-DEV (Development)
 +
|-
 +
| 0x13000050
 +
| CAFE (Development)
 +
|-
 +
| 0x23000050
 +
| OrchestraX
 +
|}
 +
 
 +
== Driver ==
 +
<syntaxhighlight lang="C">
 +
#define OSDRIVER_SIZE 0x4c
 +
 
 +
typedef struct OSDriver {
 +
 
 +
  char drv_name[0x40];  // 0x00 - 0x40
 +
  uint32_t unknown;      // 0x40 - 0x44
 +
  uint32_t *save_area;  // 0x44 - 0x48
 +
  struct OSDriver *next; // 0x48 - 0x4c
 +
 
 +
} OSDriver;
 +
</syntaxhighlight>
 +
 
 +
== Screen ==
 
{| class="wikitable"
 
{| class="wikitable"
 
!Name
 
!Name
Line 505: Line 1,058:  
|The buffer number for the first Gamepad
 
|The buffer number for the first Gamepad
 
|}
 
|}
 +
 +
== MCP ==
 +
<syntaxhighlight lang="C">
 +
typedef enum MCPInstallTarget {
 +
  MCP_INSTALL_TARGET_MLC  = 0,
 +
  MCP_INSTALL_TARGET_USB  = 1,
 +
} MCPInstallTarget;
 +
 +
typedef struct MCPInstallProgress {
 +
  uint32_t inProgress;
 +
  uint64_t tid;
 +
  uint64_t sizeTotal;
 +
  uint64_t sizeProgress;
 +
  uint32_t contentsTotal;
 +
  uint32_t contentsProgress;
 +
} MCPInstallProgress;
 +
 +
typedef struct MCPInstallInfo {
 +
  char unknown[0x27F];
 +
} MCPInstallInfo;
 +
 +
typedef struct MCPDevice {
 +
  char name[0x31B];
 +
} MCPDevice;
 +
 +
typedef struct MCPDeviceList {
 +
  MCPDevice devices[32];
 +
} MCPDeviceList;
 +
</syntaxhighlight>