Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / arch / mips / lib / uncached.c
blob417731998eb111671c7976149fd60f68c0a12ecd
1 /*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
6 * Copyright (C) 2005 Thiemo Seufer
7 * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved.
8 * Author: Maciej W. Rozycki <macro@mips.com>
9 */
11 #include <linux/init.h>
13 #include <asm/addrspace.h>
14 #include <asm/bug.h>
15 #include <asm/cacheflush.h>
17 #ifndef CKSEG2
18 #define CKSEG2 CKSSEG
19 #endif
20 #ifndef TO_PHYS_MASK
21 #define TO_PHYS_MASK -1
22 #endif
25 * FUNC is executed in one of the uncached segments, depending on its
26 * original address as follows:
28 * 1. If the original address is in CKSEG0 or CKSEG1, then the uncached
29 * segment used is CKSEG1.
30 * 2. If the original address is in XKPHYS, then the uncached segment
31 * used is XKPHYS(2).
32 * 3. Otherwise it's a bug.
34 * The same remapping is done with the stack pointer. Stack handling
35 * works because we don't handle stack arguments or more complex return
36 * values, so we can avoid sharing the same stack area between a cached
37 * and the uncached mode.
39 <<<<<<< HEAD:arch/mips/lib/uncached.c
40 unsigned long __init run_uncached(void *func)
41 =======
42 unsigned long __cpuinit run_uncached(void *func)
43 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:arch/mips/lib/uncached.c
45 register long sp __asm__("$sp");
46 register long ret __asm__("$2");
47 long lfunc = (long)func, ufunc;
48 long usp;
50 if (sp >= (long)CKSEG0 && sp < (long)CKSEG2)
51 usp = CKSEG1ADDR(sp);
52 #ifdef CONFIG_64BIT
53 else if ((long long)sp >= (long long)PHYS_TO_XKPHYS(0, 0) &&
54 (long long)sp < (long long)PHYS_TO_XKPHYS(8, 0))
55 usp = PHYS_TO_XKPHYS(K_CALG_UNCACHED,
56 XKPHYS_TO_PHYS((long long)sp));
57 #endif
58 else {
59 BUG();
60 usp = sp;
62 if (lfunc >= (long)CKSEG0 && lfunc < (long)CKSEG2)
63 ufunc = CKSEG1ADDR(lfunc);
64 #ifdef CONFIG_64BIT
65 else if ((long long)lfunc >= (long long)PHYS_TO_XKPHYS(0, 0) &&
66 (long long)lfunc < (long long)PHYS_TO_XKPHYS(8, 0))
67 ufunc = PHYS_TO_XKPHYS(K_CALG_UNCACHED,
68 XKPHYS_TO_PHYS((long long)lfunc));
69 #endif
70 else {
71 BUG();
72 ufunc = lfunc;
75 __asm__ __volatile__ (
76 " move $16, $sp\n"
77 " move $sp, %1\n"
78 " jalr %2\n"
79 " move $sp, $16"
80 : "=r" (ret)
81 : "r" (usp), "r" (ufunc)
82 : "$16", "$31");
84 return ret;