X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=frontend%2F3ds%2F3ds_utils.h;h=c9b9d7f4e495041dc79301e43665185afc5f2f21;hb=43047988e507799d7d5bbcd926c5d0b5b94fcdc1;hp=3d50a6681f053aca0b648be7a4b34381b3a103c2;hpb=cb4d282af668df3bdbd428be5a5ad26996cd0f4f;p=pcsx_rearmed.git diff --git a/frontend/3ds/3ds_utils.h b/frontend/3ds/3ds_utils.h index 3d50a668..c9b9d7f4 100644 --- a/frontend/3ds/3ds_utils.h +++ b/frontend/3ds/3ds_utils.h @@ -2,11 +2,14 @@ #define _3DS_UTILS_H #include +#include #define MEMOP_PROT 6 #define MEMOP_MAP 4 #define MEMOP_UNMAP 5 +#define GET_VERSION_MAJOR(version) ((version) >>24) + void* linearMemAlign(size_t size, size_t alignment); void linearFree(void* mem); @@ -15,9 +18,25 @@ int32_t svcCloseHandle(uint32_t handle); int32_t svcControlMemory(void* addr_out, void* addr0, void* addr1, uint32_t size, uint32_t op, uint32_t perm); int32_t svcControlProcessMemory(uint32_t process, void* addr0, void* addr1, uint32_t size, uint32_t op, uint32_t perm); -int32_t svcCreateThread(int32_t* thread, void *(*entrypoint)(void*), void* arg, void* stack_top, int32_t thread_priority, int32_t processor_id); -int32_t svcWaitSynchronization(int32_t handle, int64_t nanoseconds); -void svcExitThread(void) __attribute__((noreturn)); +int32_t threadCreate(void *(*entrypoint)(void*), void* arg, size_t stack_size, int32_t prio, int32_t affinity, bool detached); +int32_t threadJoin(int32_t thread, int64_t timeout_ns); +void threadFree(int32_t thread); +void threadExit(int32_t rc) __attribute__((noreturn)); + +int32_t svcGetSystemInfo(int64_t* out, uint32_t type, int32_t param); + +int32_t svcCreateSemaphore(uint32_t *sem, int32_t initial_count, uint32_t max_count); +int32_t svcReleaseSemaphore(int32_t *count, uint32_t sem, int32_t release_count); +int32_t svcWaitSynchronization(uint32_t handle, int64_t nanoseconds); + +typedef int32_t LightLock; + +void LightLock_Init(LightLock* lock); +void LightLock_Lock(LightLock* lock); +int LightLock_TryLock(LightLock* lock); +void LightLock_Unlock(LightLock* lock); + +int32_t APT_CheckNew3DS(bool *out); int32_t svcBackdoor(int32_t (*callback)(void)); @@ -27,6 +46,24 @@ void wait_for_input(void); extern __attribute__((weak)) int __ctr_svchax; +bool has_rosalina; + +static void check_rosalina() { + int64_t version; + uint32_t major; + + has_rosalina = false; + + if (!svcGetSystemInfo(&version, 0x10000, 0)) { + major = GET_VERSION_MAJOR(version); + + if (major >= 8) + has_rosalina = true; + } +} + +void ctr_clear_cache(void); + typedef int32_t (*ctr_callback_type)(void); static inline void ctr_invalidate_ICache_kernel(void) @@ -55,12 +92,14 @@ static inline void ctr_flush_DCache(void) svcBackdoor((ctr_callback_type)ctr_flush_DCache_kernel); } - static inline void ctr_flush_invalidate_cache(void) { - ctr_flush_DCache(); - ctr_invalidate_ICache(); + if (has_rosalina) { + ctr_clear_cache(); + } else { + ctr_flush_DCache(); + ctr_invalidate_ICache(); + } } - #endif // _3DS_UTILS_H