Difference between revisions of "NSKBL Subroutines"

From Vita Development Wiki
Jump to navigation Jump to search
(30 intermediate revisions by the same user not shown)
Line 1: Line 1:
  
 
== Common data ==
 
== Common data ==
 
=== pSceUIDModuleClass ===
 
  
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
! Version !! offset !! size !! description
+
! Version !! offset !! size !! name !! description
 +
|-
 +
| 3.60 || 0x5113F39C || 4 || pSceUIDModuleClass || pointer of SceClass.
 +
|-
 +
| 3.60 || 0x5113F3A4 || 4 || pSceUIDModuleClass || pointer of SceClass.
 +
|-
 +
| 3.60 || 0x5113F3A8 || 4 || pSceUIDLibStubClass || pointer of SceClass.
 
|-
 
|-
| 3.60 || 0x5113F39C || 4 || pointer of SceClass.
+
| 3.60 || 0x5113F3AC || 4 || pSceUIDLibraryClass || pointer of SceClass.
|}
+
|-
 
+
| 3.60 || 0x5115F3C0 || 0x24C0 || sdif_ctx || ctx data for emmc.
There is no mistake that there are two
 
 
 
=== pSceUIDModuleClass ===
 
 
 
{| class="wikitable"
 
 
|-
 
|-
! Version !! offset !! size !! description
+
| 3.60 || 0x51161880 || 0x24C0 || sdif_ctx || ctx data for game card.
 
|-
 
|-
| 3.60 || 0x5113F3A4 || 4 || pointer of SceClass.
+
| 3.60 || 0x51166B80 || 0x200 || root sector for fat_init_dev || root sector data.
|}
 
 
 
=== pSceUIDLibStubClass ===
 
 
 
{| class="wikitable"
 
 
|-
 
|-
! Version !! offset !! size !! description
+
| 3.60 || 0x511671A0 || 0x200 || root sector for fs_working || root sector data.
 
|-
 
|-
| 3.60 || 0x5113F3A8 || 4 || pointer of SceClass.
+
| 3.60 || 0x511673A0 || 4 || pointer of SceKblFsReadCtx || pointer of SceKblFsReadCtx.
|}
 
 
 
=== pSceUIDLibraryClass ===
 
 
 
{| class="wikitable"
 
 
|-
 
|-
! Version !! offset !! size !! description
+
| 3.60 || 0x51167728 || 0x5C || fs_read_ctx_gcsd || ctx data.
 
|-
 
|-
| 3.60 || 0x5113F3AC || 4 || pointer of SceClass.
+
| 3.60 || 0x51167784 || 0x5C || fs_read_ctx_emmc || ctx data.
 
|}
 
|}
  
Line 65: Line 54:
  
 
<source lang="C">int read_sector_direct(void *ctx, unsigned int sector_pos, unsigned int sector_num, void *data);</source>
 
<source lang="C">int read_sector_direct(void *ctx, unsigned int sector_pos, unsigned int sector_num, void *data);</source>
 +
 +
=== sceKernelRegisterIntrHandler ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x510035AC || thumb
 +
|}
 +
 +
<source lang="C">int sceKernelRegisterIntrHandler(int code, const char *name, int interrupt_type, SceKernelIntrHandler *handler, void* userCtx, int priority, int targetcpu, SceKernelRegisterInterruptOptions *opt);</source>
  
 
=== sceKernelCreateClass ===
 
=== sceKernelCreateClass ===
Line 87: Line 87:
  
 
<source lang="C">SceClass *sceKernelGetUidClass(void);</source>
 
<source lang="C">SceClass *sceKernelGetUidClass(void);</source>
 +
 +
=== sceGUIDClose ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5100662C || thumb
 +
|}
 +
 +
<source lang="C">int sceGUIDClose(SceUID uid);</source>
 +
 +
=== sceGUIDGetObject ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51006770 || thumb
 +
|}
 +
 +
<source lang="C">int sceGUIDGetObject(SceUID uid, SceKernelObject **ppEntry);</source>
  
 
=== sceGUIDReferObjectWithClass ===
 
=== sceGUIDReferObjectWithClass ===
Line 109: Line 131:
  
 
<source lang="C">int sceKernelUidRelease(SceUID uid);</source>
 
<source lang="C">int sceKernelUidRelease(SceUID uid);</source>
 +
 +
=== sceKernelGetPaddr ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5100788C || thumb
 +
|}
 +
 +
<source lang="C">int sceKernelGetPaddr(const void *VA, uintptr_t *pPA);</source>
 +
 +
=== sceKernelAllocPartitionMemBlock ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5100B7B0 || thumb
 +
|}
 +
 +
<source lang="C">SceUID sceKernelAllocPartitionMemBlock(SceUID part, const char *name, SceKernelMemBlockType type, SceSize size, SceKernelAllocMemBlockOptKernel *pOpt);</source>
 +
 +
=== sceKernelCreateHeap ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5100F04C || thumb
 +
|}
 +
 +
<source lang="C">SceUID sceKernelCreateHeap(const char *name, SceSize size, SceKernelHeapCreateOpt *pOpt);</source>
 +
 +
=== sceKernelDeleteHeap ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5100F068 || thumb
 +
|}
 +
 +
<source lang="C">int sceKernelDeleteHeap(SceUID uid);</source>
 +
 +
=== sceKernelAllocHeapMemoryWithOpt ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5100F28C || thumb
 +
|}
 +
 +
<source lang="C">void *sceKernelAllocHeapMemoryWithOpt(SceUID uid, SceSize size, SceKernelHeapMemoryOpt *pOpt);</source>
 +
 +
=== sceKernelAllocHeapMemory ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5100F334 || thumb
 +
|}
 +
 +
<source lang="C">void *sceKernelAllocHeapMemory(SceUID uid, SceSize size);</source>
 +
 +
=== sceKernelSysrootSetStatus ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5101220C || thumb
 +
|}
 +
 +
<source lang="C">void sceKernelSysrootSetStatus(unsigned int status);</source>
 +
 +
=== sceKernelSysrootSetSysroot ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51012234 || thumb
 +
|}
 +
 +
<source lang="C">void sceKernelSysrootSetSysroot(int sysroot);</source>
 +
 +
=== sceKernelSysrootGetKblParam ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51012244 || thumb
 +
|}
 +
 +
<source lang="C">void *sceKernelSysrootGetKblParam(void);</source>
 +
 +
=== sceKernelSysrootGetVbaseResetVector ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x510122B4 || thumb
 +
|}
 +
 +
<source lang="C">void *sceKernelSysrootGetVbaseResetVector(void);</source>
 +
 +
=== sceKernelSysrootSetSharedMemory ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51012320 || thumb
 +
|}
 +
 +
<source lang="C">void sceKernelSysrootSetSharedMemory(void *ptr);</source>
  
 
=== sceKernelSysrootSetModulePrivate ===
 
=== sceKernelSysrootSetModulePrivate ===
Line 143: Line 286:
 
<source lang="C">int sceKernelSysrootIsExternalBootMode(void);</source>
 
<source lang="C">int sceKernelSysrootIsExternalBootMode(void);</source>
  
=== __stack_chk_fail ===
+
=== sceKernelRegisterInitCallback ===
 +
 
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51012990 || thumb
 +
|}
 +
 
 +
<source lang="C">int sceKernelRegisterInitCallback(const void *cb, int idx, int a3, int *pRes);</source>
 +
 
 +
=== sceDebugPrintKernelPanic ===
 +
 
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51013394 || thumb
 +
|}
 +
 
 +
slightly different as non-secure SceSysmem -> sceDebugPrintKernelPanic
 +
 
 +
<source lang="C">void sceDebugPrintKernelPanic(const SceKernelDebugMessageContext *ctx, void *some_address);</source>
 +
 
 +
=== strlen ===
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 149: Line 316:
 
! Version !! offset !! mode
 
! Version !! offset !! mode
 
|-
 
|-
| 3.60 || 0x51014508 || thumb
+
| 3.60 || 0x51013B7C || thumb
 
|}
 
|}
  
<source lang="C">void __stack_chk_fail(void);</source>
+
<source lang="C">SceSize strlen(const char *s);</source>
  
 
=== strnlen ===
 
=== strnlen ===
Line 163: Line 330:
 
|}
 
|}
  
<source lang="C">SceSize strnlen(const char *src, SceSize maxlen);</source>
+
<source lang="C">SceSize strnlen(const char *s, SceSize maxlen);</source>
 +
 
 +
=== SceSysclibForDriver_E38E7605 ===
 +
 
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51013BD0 || thumb
 +
|}
 +
 
 +
same as non-secure SceSysmem -> SceSysclibForDriver_E38E7605.
 +
 
 +
<source lang="C">
 +
typedef struct SceKernelPrintFmt {
 +
int dstlen;
 +
int res; // output length
 +
char *dst;
 +
} SceKernelPrintFmt;
 +
 
 +
int SceSysclibForDriver_E38E7605(const void *some_cb, SceKernelPrintFmt *ctx, const char *fmt, va_list list);
 +
</source>
  
 
=== snprintf ===
 
=== snprintf ===
Line 186: Line 374:
  
 
<source lang="C">char *strncpy(char *dst, const char *src, SceSize len);</source>
 
<source lang="C">char *strncpy(char *dst, const char *src, SceSize len);</source>
 +
 +
=== __stack_chk_fail ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51014508 || thumb
 +
|}
 +
 +
<source lang="C">void __stack_chk_fail(void);</source>
 +
 +
=== sceKernelCpuIcacheInvalidateAll ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51014520 || thumb
 +
|}
 +
 +
<source lang="C">void sceKernelCpuIcacheInvalidateAll(void);</source>
 +
 +
=== sceKernelCpuIcacheInvalidateRange ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51014530 || thumb
 +
|}
 +
 +
<source lang="C">void sceKernelCpuIcacheInvalidateRange(void *data, SceSize size);</source>
 +
 +
=== sceKernelCpuDcacheInvalidateMVACRange ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5101454C || thumb
 +
|}
 +
 +
<source lang="C">void sceKernelCpuDcacheInvalidateMVACRange(void *data, SceSize size);</source>
 +
 +
=== sceKernelCpuDcacheCleanMVACRange ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5101456C || thumb
 +
|}
 +
 +
<source lang="C">void sceKernelCpuDcacheCleanMVACRange(void *data, SceSize size);</source>
 +
 +
=== sceKernelCpuDcacheWritebackInvalidateRange ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5101458C || thumb
 +
|}
 +
 +
<source lang="C">void sceKernelCpuDcacheWritebackInvalidateRange(void *data, SceSize size);</source>
 +
 +
=== sceKernelCpuDcacheAndL2InvalidateRange ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51014B60 || thumb
 +
|}
 +
 +
<source lang="C">void sceKernelCpuDcacheAndL2InvalidateRange(void *data, SceSize size);</source>
 +
 +
=== sceKernelCpuDcacheAndL2WritebackRange ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51014BD0 || thumb
 +
|}
 +
 +
<source lang="C">void sceKernelCpuDcacheAndL2WritebackRange(void *data, SceSize size);</source>
 +
 +
=== sceKernelCpuDisableInterrupts ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x510147AC || thumb
 +
|}
 +
 +
<source lang="C">int sceKernelCpuDisableInterrupts(void);</source>
 +
 +
=== sceKernelCpuEnableInterrupts ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x510147BC || thumb
 +
|}
 +
 +
<source lang="C">int sceKernelCpuEnableInterrupts(int flags);</source>
 +
 +
=== sceKernelCpuSuspendIntr ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51014838 || thumb
 +
|}
 +
 +
<source lang="C">int sceKernelCpuSuspendIntr(int *addr);</source>
 +
 +
=== sceKernelCpuResumeIntr ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51014864 || thumb
 +
|}
 +
 +
<source lang="C">int sceKernelCpuResumeIntr(int *addr, int prev_state);</source>
 +
 +
=== sceKernelCpuUnrestrictedMemcpy ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51014BDC || thumb
 +
|}
 +
 +
<source lang="C">int sceKernelCpuUnrestrictedMemcpy(void *dst, const void *src, SceSize len);</source>
  
 
=== vaddr_to_paddr_with_mode ===
 
=== vaddr_to_paddr_with_mode ===
Line 199: Line 530:
  
 
<source lang="C">int vaddr_to_paddr_with_mode(int mode, int a2, const void *VA, int *pPA, int a5);</source>
 
<source lang="C">int vaddr_to_paddr_with_mode(int mode, int a2, const void *VA, int *pPA, int a5);</source>
 +
 +
=== sceKernelMMUVAtoPAWithMode ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x510155F4 || thumb
 +
|}
 +
 +
<source lang="C">int sceKernelMMUVAtoPAWithMode(int mode, const void *VA, unsigned int *pPA);</source>
 +
 +
=== SceSblSmschedProxy_module_start ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51015D10 || thumb
 +
|}
 +
 +
<source lang="C">int SceSblSmschedProxy_module_start(SceSize args, void *argp);</source>
 +
 +
=== sceSblSmSchedProxyInitialize ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51015DD0 || thumb
 +
|}
 +
 +
<source lang="C">int sceSblSmSchedProxyInitialize(void);</source>
 +
 +
=== sceSblAuthMgrOpen ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51016CF8 || thumb
 +
|}
 +
 +
<source lang="C">int sceSblAuthMgrOpen(int *ctx);</source>
 +
 +
=== sceSblAuthMgrClose ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51016D48 || thumb
 +
|}
 +
 +
<source lang="C">int sceSblAuthMgrClose(int ctx);</source>
 +
 +
=== sceSblAuthMgrAuthHeader ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51016D68 || thumb
 +
|}
 +
 +
<source lang="C">int sceSblAuthMgrAuthHeader(int ctx, void *pSelfHeader, SceSize SelfHeaderSize, SceSblSmCommContext130 *ctx130);</source>
 +
 +
=== sceSblAuthMgrSetupAuthSegment ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51016E58 || thumb
 +
|}
 +
 +
<source lang="C">int sceSblAuthMgrSetupAuthSegment(int ctx,int segment_number);</source>
 +
 +
=== sceSblAuthMgrAuthSegment ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51016E94 || thumb
 +
|}
 +
 +
<source lang="C">int sceSblAuthMgrAuthSegment(int ctx, void *buffer, SceSize len);</source>
 +
 +
=== sceSblQafMgrIsAllowHost0Access ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51016FE0 || thumb
 +
|}
 +
 +
<source lang="C">int sceSblQafMgrIsAllowHost0Access(void);</source>
 +
 +
=== sceSblACMgrIsDevelopmentMode ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x510170C8 || thumb
 +
|}
 +
 +
<source lang="C">int sceSblACMgrIsDevelopmentMode(void);</source>
 +
 +
=== sceSblAimgrIsGenuineVITA ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x51017248 || thumb
 +
|}
 +
 +
<source lang="C">int sceSblAimgrIsGenuineVITA(void);</source>
  
 
=== get_module_object ===
 
=== get_module_object ===
Line 243: Line 695:
  
 
<source lang="C">SceUID sceKernelLoadModuleForPidInternal(SceUID pid, const char *path, int flags, void *option);</source>
 
<source lang="C">SceUID sceKernelLoadModuleForPidInternal(SceUID pid, const char *path, int flags, void *option);</source>
 +
 +
=== sceSdifGetSdContextGlobal ===
 +
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x5101A9F4 || thumb
 +
|}
 +
 +
<source lang="C">void *sceSdifGetSdContextGlobal(int type);</source>
  
 
=== sceSdifInitializeMmcDevice ===
 
=== sceSdifInitializeMmcDevice ===
Line 266: Line 729:
 
<source lang="C">int sceSdifInitializeSdDevice(int sd_ctx_index, void **result);</source>
 
<source lang="C">int sceSdifInitializeSdDevice(int sd_ctx_index, void **result);</source>
  
=== sceSdifGetSdContextGlobal ===
+
=== sceSdifReadSectorMmc ===
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 272: Line 735:
 
! Version !! offset !! mode
 
! Version !! offset !! mode
 
|-
 
|-
| 3.60 || 0x5101A9F4 || thumb
+
| 3.60 || 0x5101C5C8 || thumb
 
|}
 
|}
  
<source lang="C">void *sceSdifGetSdContextGlobal(int type);</source>
+
<source lang="C">int sceSdifReadSectorMmc(void *part_ctx, SceSize sector_pos, void *data, SceSize sector_num);</source>
  
 
=== sceSdifReadSectorSd ===
 
=== sceSdifReadSectorSd ===
Line 288: Line 751:
 
<source lang="C">int sceSdifReadSectorSd(void *part_ctx, SceSize sector_pos, void *data, SceSize sector_num);</source>
 
<source lang="C">int sceSdifReadSectorSd(void *part_ctx, SceSize sector_pos, void *data, SceSize sector_num);</source>
  
=== sceSdifReadSectorMmc ===
+
=== sceZlibGetInfo ===
 +
 
 +
{| class="wikitable"
 +
|-
 +
! Version !! offset !! mode
 +
|-
 +
| 3.60 || 0x510213B4 || thumb
 +
|}
 +
 
 +
<source lang="C">int sceZlibGetInfo(const void *src, unsigned char *cmf, unsigned char *flg, unsigned int *dictid, const void **data);</source>
 +
 
 +
=== sceDeflateDecompress ===
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 294: Line 768:
 
! Version !! offset !! mode
 
! Version !! offset !! mode
 
|-
 
|-
| 3.60 || 0x5101C5C8 || thumb
+
| 3.60 || 0x51021488 || thumb
 
|}
 
|}
  
<source lang="C">int sceSdifReadSectorMmc(void *part_ctx, SceSize sector_pos, void *data, SceSize sector_num);</source>
+
<source lang="C">int sceDeflateDecompress(void *dst, SceSize dst_size, const void *src, const void **next);</source>

Revision as of 02:45, 30 July 2020

Common data

Version offset size name description
3.60 0x5113F39C 4 pSceUIDModuleClass pointer of SceClass.
3.60 0x5113F3A4 4 pSceUIDModuleClass pointer of SceClass.
3.60 0x5113F3A8 4 pSceUIDLibStubClass pointer of SceClass.
3.60 0x5113F3AC 4 pSceUIDLibraryClass pointer of SceClass.
3.60 0x5115F3C0 0x24C0 sdif_ctx ctx data for emmc.
3.60 0x51161880 0x24C0 sdif_ctx ctx data for game card.
3.60 0x51166B80 0x200 root sector for fat_init_dev root sector data.
3.60 0x511671A0 0x200 root sector for fs_working root sector data.
3.60 0x511673A0 4 pointer of SceKblFsReadCtx pointer of SceKblFsReadCtx.
3.60 0x51167728 0x5C fs_read_ctx_gcsd ctx data.
3.60 0x51167784 0x5C fs_read_ctx_emmc ctx data.

Common functions

read_sector

Version offset mode
3.60 0x510010FC thumb

call read_sector_direct.

int read_sector(void *ctx, unsigned int sector_pos, unsigned int sector_num, void *data);

read_sector_direct

Version offset mode
3.60 0x510010C4 thumb
int read_sector_direct(void *ctx, unsigned int sector_pos, unsigned int sector_num, void *data);

sceKernelRegisterIntrHandler

Version offset mode
3.60 0x510035AC thumb
int sceKernelRegisterIntrHandler(int code, const char *name, int interrupt_type, SceKernelIntrHandler *handler, void* userCtx, int priority, int targetcpu, SceKernelRegisterInterruptOptions *opt);

sceKernelCreateClass

Version offset mode
3.60 0x510059A0 thumb
int sceKernelCreateClass(SceClass *cls, const char *name, void *uidclass, SceSize itemsize, SceClassCallback create, SceClassCallback destroy);

sceKernelGetUidClass

Version offset mode
3.60 0x51005A04 thumb
SceClass *sceKernelGetUidClass(void);

sceGUIDClose

Version offset mode
3.60 0x5100662C thumb
int sceGUIDClose(SceUID uid);

sceGUIDGetObject

Version offset mode
3.60 0x51006770 thumb
int sceGUIDGetObject(SceUID uid, SceKernelObject **ppEntry);

sceGUIDReferObjectWithClass

Version offset mode
3.60 0x510069E8 thumb
int sceGUIDReferObjectWithClass(SceUID uid, SceClass *pClass, SceKernelObject **ppEntry);

sceKernelUidRelease

Version offset mode
3.60 0x51006A50 thumb
int sceKernelUidRelease(SceUID uid);

sceKernelGetPaddr

Version offset mode
3.60 0x5100788C thumb
int sceKernelGetPaddr(const void *VA, uintptr_t *pPA);

sceKernelAllocPartitionMemBlock

Version offset mode
3.60 0x5100B7B0 thumb
SceUID sceKernelAllocPartitionMemBlock(SceUID part, const char *name, SceKernelMemBlockType type, SceSize size, SceKernelAllocMemBlockOptKernel *pOpt);

sceKernelCreateHeap

Version offset mode
3.60 0x5100F04C thumb
SceUID sceKernelCreateHeap(const char *name, SceSize size, SceKernelHeapCreateOpt *pOpt);

sceKernelDeleteHeap

Version offset mode
3.60 0x5100F068 thumb
int sceKernelDeleteHeap(SceUID uid);

sceKernelAllocHeapMemoryWithOpt

Version offset mode
3.60 0x5100F28C thumb
void *sceKernelAllocHeapMemoryWithOpt(SceUID uid, SceSize size, SceKernelHeapMemoryOpt *pOpt);

sceKernelAllocHeapMemory

Version offset mode
3.60 0x5100F334 thumb
void *sceKernelAllocHeapMemory(SceUID uid, SceSize size);

sceKernelSysrootSetStatus

Version offset mode
3.60 0x5101220C thumb
void sceKernelSysrootSetStatus(unsigned int status);

sceKernelSysrootSetSysroot

Version offset mode
3.60 0x51012234 thumb
void sceKernelSysrootSetSysroot(int sysroot);

sceKernelSysrootGetKblParam

Version offset mode
3.60 0x51012244 thumb
void *sceKernelSysrootGetKblParam(void);

sceKernelSysrootGetVbaseResetVector

Version offset mode
3.60 0x510122B4 thumb
void *sceKernelSysrootGetVbaseResetVector(void);

sceKernelSysrootSetSharedMemory

Version offset mode
3.60 0x51012320 thumb
void sceKernelSysrootSetSharedMemory(void *ptr);

sceKernelSysrootSetModulePrivate

Version offset mode
3.60 0x510124D0 thumb
void sceKernelSysrootSetModulePrivate(int idx, void *data);

sceKernelSysrootUseExternalStorage

Version offset mode
3.60 0x510128D4 thumb
int sceKernelSysrootUseExternalStorage(void);

sceKernelSysrootIsExternalBootMode

Version offset mode
3.60 0x510128E8 thumb
int sceKernelSysrootIsExternalBootMode(void);

sceKernelRegisterInitCallback

Version offset mode
3.60 0x51012990 thumb
int sceKernelRegisterInitCallback(const void *cb, int idx, int a3, int *pRes);

sceDebugPrintKernelPanic

Version offset mode
3.60 0x51013394 thumb

slightly different as non-secure SceSysmem -> sceDebugPrintKernelPanic

void sceDebugPrintKernelPanic(const SceKernelDebugMessageContext *ctx, void *some_address);

strlen

Version offset mode
3.60 0x51013B7C thumb
SceSize strlen(const char *s);

strnlen

Version offset mode
3.60 0x51013B80 thumb
SceSize strnlen(const char *s, SceSize maxlen);

SceSysclibForDriver_E38E7605

Version offset mode
3.60 0x51013BD0 thumb

same as non-secure SceSysmem -> SceSysclibForDriver_E38E7605.

typedef struct SceKernelPrintFmt {
	int dstlen;
	int res; // output length
	char *dst;
} SceKernelPrintFmt;

int SceSysclibForDriver_E38E7605(const void *some_cb, SceKernelPrintFmt *ctx, const char *fmt, va_list list);

snprintf

Version offset mode
3.60 0x51014458 thumb
int snprintf(char *dst, int dstmax, const char *fmt, ...);

strncpy

Version offset mode
3.60 0x510144A0 thumb
char *strncpy(char *dst, const char *src, SceSize len);

__stack_chk_fail

Version offset mode
3.60 0x51014508 thumb
void __stack_chk_fail(void);

sceKernelCpuIcacheInvalidateAll

Version offset mode
3.60 0x51014520 thumb
void sceKernelCpuIcacheInvalidateAll(void);

sceKernelCpuIcacheInvalidateRange

Version offset mode
3.60 0x51014530 thumb
void sceKernelCpuIcacheInvalidateRange(void *data, SceSize size);

sceKernelCpuDcacheInvalidateMVACRange

Version offset mode
3.60 0x5101454C thumb
void sceKernelCpuDcacheInvalidateMVACRange(void *data, SceSize size);

sceKernelCpuDcacheCleanMVACRange

Version offset mode
3.60 0x5101456C thumb
void sceKernelCpuDcacheCleanMVACRange(void *data, SceSize size);

sceKernelCpuDcacheWritebackInvalidateRange

Version offset mode
3.60 0x5101458C thumb
void sceKernelCpuDcacheWritebackInvalidateRange(void *data, SceSize size);

sceKernelCpuDcacheAndL2InvalidateRange

Version offset mode
3.60 0x51014B60 thumb
void sceKernelCpuDcacheAndL2InvalidateRange(void *data, SceSize size);

sceKernelCpuDcacheAndL2WritebackRange

Version offset mode
3.60 0x51014BD0 thumb
void sceKernelCpuDcacheAndL2WritebackRange(void *data, SceSize size);

sceKernelCpuDisableInterrupts

Version offset mode
3.60 0x510147AC thumb
int sceKernelCpuDisableInterrupts(void);

sceKernelCpuEnableInterrupts

Version offset mode
3.60 0x510147BC thumb
int sceKernelCpuEnableInterrupts(int flags);

sceKernelCpuSuspendIntr

Version offset mode
3.60 0x51014838 thumb
int sceKernelCpuSuspendIntr(int *addr);

sceKernelCpuResumeIntr

Version offset mode
3.60 0x51014864 thumb
int sceKernelCpuResumeIntr(int *addr, int prev_state);

sceKernelCpuUnrestrictedMemcpy

Version offset mode
3.60 0x51014BDC thumb
int sceKernelCpuUnrestrictedMemcpy(void *dst, const void *src, SceSize len);

vaddr_to_paddr_with_mode

Version offset mode
3.60 0x51014E3C thumb

same to sysmem 3.60 sub_81023308

int vaddr_to_paddr_with_mode(int mode, int a2, const void *VA, int *pPA, int a5);

sceKernelMMUVAtoPAWithMode

Version offset mode
3.60 0x510155F4 thumb
int sceKernelMMUVAtoPAWithMode(int mode, const void *VA, unsigned int *pPA);

SceSblSmschedProxy_module_start

Version offset mode
3.60 0x51015D10 thumb
int SceSblSmschedProxy_module_start(SceSize args, void *argp);

sceSblSmSchedProxyInitialize

Version offset mode
3.60 0x51015DD0 thumb
int sceSblSmSchedProxyInitialize(void);

sceSblAuthMgrOpen

Version offset mode
3.60 0x51016CF8 thumb
int sceSblAuthMgrOpen(int *ctx);

sceSblAuthMgrClose

Version offset mode
3.60 0x51016D48 thumb
int sceSblAuthMgrClose(int ctx);

sceSblAuthMgrAuthHeader

Version offset mode
3.60 0x51016D68 thumb
int sceSblAuthMgrAuthHeader(int ctx, void *pSelfHeader, SceSize SelfHeaderSize, SceSblSmCommContext130 *ctx130);

sceSblAuthMgrSetupAuthSegment

Version offset mode
3.60 0x51016E58 thumb
int sceSblAuthMgrSetupAuthSegment(int ctx,int segment_number);

sceSblAuthMgrAuthSegment

Version offset mode
3.60 0x51016E94 thumb
int sceSblAuthMgrAuthSegment(int ctx, void *buffer, SceSize len);

sceSblQafMgrIsAllowHost0Access

Version offset mode
3.60 0x51016FE0 thumb
int sceSblQafMgrIsAllowHost0Access(void);

sceSblACMgrIsDevelopmentMode

Version offset mode
3.60 0x510170C8 thumb
int sceSblACMgrIsDevelopmentMode(void);

sceSblAimgrIsGenuineVITA

Version offset mode
3.60 0x51017248 thumb
int sceSblAimgrIsGenuineVITA(void);

get_module_object

Version offset mode
3.60 0x51017648 thumb
SceModuleObject *get_module_object(SceUID modid);

initialize_module_class

Version offset mode
3.60 0x51017680 thumb

sceKernelLoadModule

Version offset mode
3.60 0x51017930 thumb
SceUID sceKernelLoadModule(const char *path, int flags, void *option);

sceKernelLoadModuleForPidInternal

Version offset mode
3.60 0x51017830 thumb

don't have flags check

SceUID sceKernelLoadModuleForPidInternal(SceUID pid, const char *path, int flags, void *option);

sceSdifGetSdContextGlobal

Version offset mode
3.60 0x5101A9F4 thumb
void *sceSdifGetSdContextGlobal(int type);

sceSdifInitializeMmcDevice

Version offset mode
3.60 0x5101D7D0 thumb
int sceSdifInitializeMmcDevice(int sd_ctx_index, void **result);

sceSdifInitializeSdDevice

Version offset mode
3.60 0x5101D820 thumb
int sceSdifInitializeSdDevice(int sd_ctx_index, void **result);

sceSdifReadSectorMmc

Version offset mode
3.60 0x5101C5C8 thumb
int sceSdifReadSectorMmc(void *part_ctx, SceSize sector_pos, void *data, SceSize sector_num);

sceSdifReadSectorSd

Version offset mode
3.60 0x5101E670 thumb
int sceSdifReadSectorSd(void *part_ctx, SceSize sector_pos, void *data, SceSize sector_num);

sceZlibGetInfo

Version offset mode
3.60 0x510213B4 thumb
int sceZlibGetInfo(const void *src, unsigned char *cmf, unsigned char *flg, unsigned int *dictid, const void **data);

sceDeflateDecompress

Version offset mode
3.60 0x51021488 thumb
int sceDeflateDecompress(void *dst, SceSize dst_size, const void *src, const void **next);