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

TOMOYO Linux Cross Reference
Linux/arch/sh/mm/flush-sh4.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 #include <linux/mm.h>
  3 #include <asm/mmu_context.h>
  4 #include <asm/cache_insns.h>
  5 #include <asm/cacheflush.h>
  6 #include <asm/traps.h>
  7 
  8 /*
  9  * Write back the dirty D-caches, but not invalidate them.
 10  *
 11  * START: Virtual Address (U0, P1, or P3)
 12  * SIZE: Size of the region.
 13  */
 14 static void sh4__flush_wback_region(void *start, int size)
 15 {
 16         reg_size_t aligned_start, v, cnt, end;
 17 
 18         aligned_start = register_align(start);
 19         v = aligned_start & ~(L1_CACHE_BYTES-1);
 20         end = (aligned_start + size + L1_CACHE_BYTES-1)
 21                 & ~(L1_CACHE_BYTES-1);
 22         cnt = (end - v) / L1_CACHE_BYTES;
 23 
 24         while (cnt >= 8) {
 25                 __ocbwb(v); v += L1_CACHE_BYTES;
 26                 __ocbwb(v); v += L1_CACHE_BYTES;
 27                 __ocbwb(v); v += L1_CACHE_BYTES;
 28                 __ocbwb(v); v += L1_CACHE_BYTES;
 29                 __ocbwb(v); v += L1_CACHE_BYTES;
 30                 __ocbwb(v); v += L1_CACHE_BYTES;
 31                 __ocbwb(v); v += L1_CACHE_BYTES;
 32                 __ocbwb(v); v += L1_CACHE_BYTES;
 33                 cnt -= 8;
 34         }
 35 
 36         while (cnt) {
 37                 __ocbwb(v); v += L1_CACHE_BYTES;
 38                 cnt--;
 39         }
 40 }
 41 
 42 /*
 43  * Write back the dirty D-caches and invalidate them.
 44  *
 45  * START: Virtual Address (U0, P1, or P3)
 46  * SIZE: Size of the region.
 47  */
 48 static void sh4__flush_purge_region(void *start, int size)
 49 {
 50         reg_size_t aligned_start, v, cnt, end;
 51 
 52         aligned_start = register_align(start);
 53         v = aligned_start & ~(L1_CACHE_BYTES-1);
 54         end = (aligned_start + size + L1_CACHE_BYTES-1)
 55                 & ~(L1_CACHE_BYTES-1);
 56         cnt = (end - v) / L1_CACHE_BYTES;
 57 
 58         while (cnt >= 8) {
 59                 __ocbp(v); v += L1_CACHE_BYTES;
 60                 __ocbp(v); v += L1_CACHE_BYTES;
 61                 __ocbp(v); v += L1_CACHE_BYTES;
 62                 __ocbp(v); v += L1_CACHE_BYTES;
 63                 __ocbp(v); v += L1_CACHE_BYTES;
 64                 __ocbp(v); v += L1_CACHE_BYTES;
 65                 __ocbp(v); v += L1_CACHE_BYTES;
 66                 __ocbp(v); v += L1_CACHE_BYTES;
 67                 cnt -= 8;
 68         }
 69         while (cnt) {
 70                 __ocbp(v); v += L1_CACHE_BYTES;
 71                 cnt--;
 72         }
 73 }
 74 
 75 /*
 76  * No write back please
 77  */
 78 static void sh4__flush_invalidate_region(void *start, int size)
 79 {
 80         reg_size_t aligned_start, v, cnt, end;
 81 
 82         aligned_start = register_align(start);
 83         v = aligned_start & ~(L1_CACHE_BYTES-1);
 84         end = (aligned_start + size + L1_CACHE_BYTES-1)
 85                 & ~(L1_CACHE_BYTES-1);
 86         cnt = (end - v) / L1_CACHE_BYTES;
 87 
 88         while (cnt >= 8) {
 89                 __ocbi(v); v += L1_CACHE_BYTES;
 90                 __ocbi(v); v += L1_CACHE_BYTES;
 91                 __ocbi(v); v += L1_CACHE_BYTES;
 92                 __ocbi(v); v += L1_CACHE_BYTES;
 93                 __ocbi(v); v += L1_CACHE_BYTES;
 94                 __ocbi(v); v += L1_CACHE_BYTES;
 95                 __ocbi(v); v += L1_CACHE_BYTES;
 96                 __ocbi(v); v += L1_CACHE_BYTES;
 97                 cnt -= 8;
 98         }
 99 
100         while (cnt) {
101                 __ocbi(v); v += L1_CACHE_BYTES;
102                 cnt--;
103         }
104 }
105 
106 void __init sh4__flush_region_init(void)
107 {
108         __flush_wback_region            = sh4__flush_wback_region;
109         __flush_invalidate_region       = sh4__flush_invalidate_region;
110         __flush_purge_region            = sh4__flush_purge_region;
111 }
112 

~ [ 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