cacheflush.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. #ifndef __ASM_SH_CACHEFLUSH_H
  2. #define __ASM_SH_CACHEFLUSH_H
  3. #include <linux/mm.h>
  4. #ifdef __KERNEL__
  5. #ifdef CONFIG_CACHE_OFF
  6. /*
  7. * Nothing to do when the cache is disabled, initial flush and explicit
  8. * disabling is handled at CPU init time.
  9. *
  10. * See arch/sh/kernel/cpu/init.c:cache_init().
  11. */
  12. #define p3_cache_init() do { } while (0)
  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. #define flush_dcache_page(page) do { } while (0)
  19. #define flush_icache_range(start, end) do { } while (0)
  20. #define flush_icache_page(vma,pg) do { } while (0)
  21. #define flush_dcache_mmap_lock(mapping) do { } while (0)
  22. #define flush_dcache_mmap_unlock(mapping) do { } while (0)
  23. #define flush_cache_sigtramp(vaddr) do { } while (0)
  24. #define flush_icache_user_range(vma,pg,adr,len) do { } while (0)
  25. #define __flush_wback_region(start, size) do { (void)(start); } while (0)
  26. #define __flush_purge_region(start, size) do { (void)(start); } while (0)
  27. #define __flush_invalidate_region(start, size) do { (void)(start); } while (0)
  28. #else
  29. #include <cpu/cacheflush.h>
  30. /*
  31. * Consistent DMA requires that the __flush_xxx() primitives must be set
  32. * for any of the enabled non-coherent caches (most of the UP CPUs),
  33. * regardless of PIPT or VIPT cache configurations.
  34. */
  35. /* Flush (write-back only) a region (smaller than a page) */
  36. extern void __flush_wback_region(void *start, int size);
  37. /* Flush (write-back & invalidate) a region (smaller than a page) */
  38. extern void __flush_purge_region(void *start, int size);
  39. /* Flush (invalidate only) a region (smaller than a page) */
  40. extern void __flush_invalidate_region(void *start, int size);
  41. #endif
  42. #define ARCH_HAS_FLUSH_ANON_PAGE
  43. extern void __flush_anon_page(struct page *page, unsigned long);
  44. static inline void flush_anon_page(struct vm_area_struct *vma,
  45. struct page *page, unsigned long vmaddr)
  46. {
  47. if (boot_cpu_data.dcache.n_aliases && PageAnon(page))
  48. __flush_anon_page(page, vmaddr);
  49. }
  50. #define ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
  51. static inline void flush_kernel_dcache_page(struct page *page)
  52. {
  53. flush_dcache_page(page);
  54. }
  55. extern void copy_to_user_page(struct vm_area_struct *vma,
  56. struct page *page, unsigned long vaddr, void *dst, const void *src,
  57. unsigned long len);
  58. extern void copy_from_user_page(struct vm_area_struct *vma,
  59. struct page *page, unsigned long vaddr, void *dst, const void *src,
  60. unsigned long len);
  61. #define flush_cache_vmap(start, end) flush_cache_all()
  62. #define flush_cache_vunmap(start, end) flush_cache_all()
  63. void kmap_coherent_init(void);
  64. void *kmap_coherent(struct page *page, unsigned long addr);
  65. void kunmap_coherent(void);
  66. #define PG_dcache_dirty PG_arch_1
  67. #endif /* __KERNEL__ */
  68. #endif /* __ASM_SH_CACHEFLUSH_H */