summaryrefslogtreecommitdiff
path: root/3ds/3ds_utils.c
blob: aaa9a8ad9c514bc24621ac3e89b9d76b51eaf75b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#include "3ds.h"
#include "libkhax/khax.h"

static int ninjhax_version = 0;

typedef s32 (*ctr_callback_type)(void);

static void ctr_enable_all_svc_kernel(void)
{
   __asm__ volatile("cpsid aif");

   u32*  svc_access_control = *(*(u32***)0xFFFF9000 + 0x22) - 0x6;

   svc_access_control[0]=0xFFFFFFFE;
   svc_access_control[1]=0xFFFFFFFF;
   svc_access_control[2]=0xFFFFFFFF;
   svc_access_control[3]=0x3FFFFFFF;
}


static void ctr_invalidate_ICache_kernel(void)
{
   __asm__ volatile(
      "cpsid aif\n\t"
      "mov r0, #0\n\t"
      "mcr p15, 0, r0, c7, c5, 0\n\t");
}

static void ctr_flush_DCache_kernel(void)
{
   __asm__ volatile(
      "cpsid aif\n\t"
      "mov r0, #0\n\t"
      "mcr p15, 0, r0, c7, c10, 0\n\t");

}


static void ctr_enable_all_svc(void)
{
   svcBackdoor((ctr_callback_type)ctr_enable_all_svc_kernel);
}

void ctr_invalidate_ICache(void)
{
//   __asm__ volatile("svc 0x2E\n\t");
   svcBackdoor((ctr_callback_type)ctr_invalidate_ICache_kernel);

}

void ctr_flush_DCache(void)
{
//   __asm__ volatile("svc 0x4B\n\t");
   svcBackdoor((ctr_callback_type)ctr_flush_DCache_kernel);
}


void ctr_flush_invalidate_cache(void)
{
   ctr_flush_DCache();
   ctr_invalidate_ICache();
}

int ctr_svchack_init(void)
{
   extern unsigned int __service_ptr;
   if(__service_ptr)
   {
      if(hbInit() == 0)
      {
         /* ninjhax 1.0 */
         ninjhax_version = 1;
         hbExit();
         khaxInit();
         return 1;
      }
      ninjhax_version = 2;
      return 0;
   }
   /* CFW */
   ninjhax_version = 0;
   ctr_enable_all_svc();
   return 1;
}


void ctr_svchack_exit(void)
{
   if (ninjhax_version == 1)
      khaxExit();
}