SKBL: Difference between revisions
Jump to navigation
Jump to search
Line 28: | Line 28: | ||
<source lang="C">int sceKernelUidRelease(SceUID uid);</source> | <source lang="C">int sceKernelUidRelease(SceUID uid);</source> | ||
=== sceKernelIsColdBootForKernel === | |||
{| class="wikitable" | |||
|- | |||
! Version !! offset !! mode | |||
|- | |||
| 3.60 || 0x14904 || thumb | |||
|} | |||
<source lang="C">int sceKernelIsColdBoot(void);</source> | |||
=== memset === | === memset === | ||
Line 40: | Line 51: | ||
<source lang="C">void *memset(void *dst, int ch, int len);</source> | <source lang="C">void *memset(void *dst, int ch, int len);</source> | ||
=== | === sceKernelDcacheWritebackInvalidateRange === | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
! Version !! offset !! mode | ! Version !! offset !! mode | ||
|- | |- | ||
| 3.60 || | | 3.60 || 0x1652C || thumb | ||
|} | |} | ||
<source lang="C"> | Temp name was sceKernelCpuDcacheCleanInvalidateMVACRangeForKernel, sceKernelCpuDcacheWritebackInvalidateRangeForKernel. | ||
<source lang="C"> | |||
// DCCIMVAC, Data cache clean and invalidate by MVA (PoC) | |||
void sceKernelDcacheWritebackInvalidateRangeForKernel(const void *addr, unsigned int size); | |||
</source> | |||
== SceKernelModulemgr == | == SceKernelModulemgr == |
Revision as of 13:10, 28 March 2021
Common
These functions are at different offsets than those of SceTzs modules.
Offsets are relative to SKBL text segment base address. See Secure DRAM.
SceSysmem
sceGUIDReferObjectWithClass
Version | offset | mode |
---|---|---|
3.60 | 0x9DF8 | thumb |
int sceGUIDReferObjectWithClass(SceUID uid, SceClass *pClass, SceKernelObject **ppEntry);
sceKernelUidRelease
Version | offset | mode |
---|---|---|
3.60 | 0x9E60 | thumb |
int sceKernelUidRelease(SceUID uid);
sceKernelIsColdBootForKernel
Version | offset | mode |
---|---|---|
3.60 | 0x14904 | thumb |
int sceKernelIsColdBoot(void);
memset
Version | offset | mode |
---|---|---|
3.60 | 0x15A30 | thumb |
void *memset(void *dst, int ch, int len);
sceKernelDcacheWritebackInvalidateRange
Version | offset | mode |
---|---|---|
3.60 | 0x1652C | thumb |
Temp name was sceKernelCpuDcacheCleanInvalidateMVACRangeForKernel, sceKernelCpuDcacheWritebackInvalidateRangeForKernel.
// DCCIMVAC, Data cache clean and invalidate by MVA (PoC) void sceKernelDcacheWritebackInvalidateRangeForKernel(const void *addr, unsigned int size);
SceKernelModulemgr
get_module_object
Version | offset | mode |
---|---|---|
3.60 | 0x2350 | thumb |
SceModuleObject *get_module_object(SceUID modid);
get_module_bootstart
Version | offset | mode |
---|---|---|
3.60 | 0x2744 | thumb |
int get_module_bootstart(SceUID modid, void *entry);
sceKernelLoadModuleWithBuffer
Version | offset | mode |
---|---|---|
3.60 | 0x2494 | thumb |
SceUID sceKernelLoadModuleWithBuffer(const void *pModule, SceSize size);
sceKernelStartModule
Version | offset | mode |
---|---|---|
3.60 | 0x2710 | thumb |
int sceKernelStartModule(SceUID modid, SceSize args, void *argp, int flags, SceKernelLMOption *option, int *status);
sceKernelStartModuleForPid
Version | offset | mode |
---|---|---|
3.60 | 0x25BC | thumb |
int sceKernelStartModuleForPid(SceUID pid, SceUID modid, SceSize args, void *argp, int flags, SceKernelLMOption *option, int *status);
sceKernelLoadStartModule
Version | offset | mode |
---|---|---|
3.60 | 0x20B0 | thumb |
typedef struct SceTzsModule { const void *pModule; const void *pModuleEnd; } SceTzsModule; int sceKernelLoadStartModule(SceTzsModule *pModule, void *argp);