This source file includes following definitions.
- run_uncached
1
2
3
4
5
6
7
8
9
10
11
12 #include <asm/addrspace.h>
13 #include <asm/bug.h>
14 #include <asm/cacheflush.h>
15
16 #ifndef CKSEG2
17 #define CKSEG2 CKSSEG
18 #endif
19 #ifndef TO_PHYS_MASK
20 #define TO_PHYS_MASK -1
21 #endif
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38 unsigned long run_uncached(void *func)
39 {
40 register long sp __asm__("$sp");
41 register long ret __asm__("$2");
42 long lfunc = (long)func, ufunc;
43 long usp;
44
45 if (sp >= (long)CKSEG0 && sp < (long)CKSEG2)
46 usp = CKSEG1ADDR(sp);
47 #ifdef CONFIG_64BIT
48 else if ((long long)sp >= (long long)PHYS_TO_XKPHYS(0, 0) &&
49 (long long)sp < (long long)PHYS_TO_XKPHYS(8, 0))
50 usp = PHYS_TO_XKPHYS(K_CALG_UNCACHED,
51 XKPHYS_TO_PHYS((long long)sp));
52 #endif
53 else {
54 BUG();
55 usp = sp;
56 }
57 if (lfunc >= (long)CKSEG0 && lfunc < (long)CKSEG2)
58 ufunc = CKSEG1ADDR(lfunc);
59 #ifdef CONFIG_64BIT
60 else if ((long long)lfunc >= (long long)PHYS_TO_XKPHYS(0, 0) &&
61 (long long)lfunc < (long long)PHYS_TO_XKPHYS(8, 0))
62 ufunc = PHYS_TO_XKPHYS(K_CALG_UNCACHED,
63 XKPHYS_TO_PHYS((long long)lfunc));
64 #endif
65 else {
66 BUG();
67 ufunc = lfunc;
68 }
69
70 __asm__ __volatile__ (
71 " move $16, $sp\n"
72 " move $sp, %1\n"
73 " jalr %2\n"
74 " move $sp, $16"
75 : "=r" (ret)
76 : "r" (usp), "r" (ufunc)
77 : "$16", "$31");
78
79 return ret;
80 }