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

TOMOYO Linux Cross Reference
Linux/arch/csky/abiv2/inc/abi/cacheflush.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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 
  3 #ifndef __ABI_CSKY_CACHEFLUSH_H
  4 #define __ABI_CSKY_CACHEFLUSH_H
  5 
  6 /* Keep includes the same across arches.  */
  7 #include <linux/mm.h>
  8 
  9 /*
 10  * The cache doesn't need to be flushed when TLB entries change when
 11  * the cache is mapped to physical memory, not virtual memory
 12  */
 13 #define flush_cache_all()                       do { } while (0)
 14 #define flush_cache_mm(mm)                      do { } while (0)
 15 #define flush_cache_dup_mm(mm)                  do { } while (0)
 16 #define flush_cache_range(vma, start, end)      do { } while (0)
 17 #define flush_cache_page(vma, vmaddr, pfn)      do { } while (0)
 18 
 19 #define PG_dcache_clean         PG_arch_1
 20 
 21 static inline void flush_dcache_folio(struct folio *folio)
 22 {
 23         if (test_bit(PG_dcache_clean, &folio->flags))
 24                 clear_bit(PG_dcache_clean, &folio->flags);
 25 }
 26 #define flush_dcache_folio flush_dcache_folio
 27 
 28 #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
 29 static inline void flush_dcache_page(struct page *page)
 30 {
 31         flush_dcache_folio(page_folio(page));
 32 }
 33 
 34 #define flush_dcache_mmap_lock(mapping)         do { } while (0)
 35 #define flush_dcache_mmap_unlock(mapping)       do { } while (0)
 36 
 37 #define flush_icache_range(start, end)          cache_wbinv_range(start, end)
 38 
 39 void flush_icache_mm_range(struct mm_struct *mm,
 40                         unsigned long start, unsigned long end);
 41 void flush_icache_deferred(struct mm_struct *mm);
 42 
 43 #define flush_cache_vmap(start, end)            do { } while (0)
 44 #define flush_cache_vmap_early(start, end)      do { } while (0)
 45 #define flush_cache_vunmap(start, end)          do { } while (0)
 46 
 47 #define copy_to_user_page(vma, page, vaddr, dst, src, len) \
 48 do { \
 49         memcpy(dst, src, len); \
 50         if (vma->vm_flags & VM_EXEC) { \
 51                 dcache_wb_range((unsigned long)dst, \
 52                                 (unsigned long)dst + len); \
 53                 flush_icache_mm_range(current->mm, \
 54                                 (unsigned long)dst, \
 55                                 (unsigned long)dst + len); \
 56                 } \
 57 } while (0)
 58 #define copy_from_user_page(vma, page, vaddr, dst, src, len) \
 59         memcpy(dst, src, len)
 60 
 61 #endif /* __ABI_CSKY_CACHEFLUSH_H */
 62 

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