~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/mips/lib/uncached.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/mips/lib/uncached.c (Architecture ppc) and /arch/mips/lib/uncached.c (Architecture mips)


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

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php