cacheflush.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * include/asm-sh/cpu-sh4/cacheflush.h
  3. *
  4. * Copyright (C) 1999 Niibe Yutaka
  5. * Copyright (C) 2003 Paul Mundt
  6. *
  7. * This file is subject to the terms and conditions of the GNU General Public
  8. * License. See the file "COPYING" in the main directory of this archive
  9. * for more details.
  10. */
  11. #ifndef __ASM_CPU_SH4_CACHEFLUSH_H
  12. #define __ASM_CPU_SH4_CACHEFLUSH_H
  13. /*
  14. * Caches are broken on SH-4 (unless we use write-through
  15. * caching; in which case they're only semi-broken),
  16. * so we need them.
  17. */
  18. /* Page is 4K, OC size is 16K, there are four lines. */
  19. #define CACHE_ALIAS 0x00003000
  20. struct page;
  21. struct mm_struct;
  22. struct vm_area_struct;
  23. extern void flush_cache_all(void);
  24. extern void flush_cache_mm(struct mm_struct *mm);
  25. extern void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
  26. unsigned long end);
  27. extern void flush_cache_page(struct vm_area_struct *vma, unsigned long addr, unsigned long pfn);
  28. extern void flush_dcache_page(struct page *pg);
  29. #define flush_dcache_mmap_lock(mapping) do { } while (0)
  30. #define flush_dcache_mmap_unlock(mapping) do { } while (0)
  31. extern void flush_icache_range(unsigned long start, unsigned long end);
  32. extern void flush_cache_sigtramp(unsigned long addr);
  33. extern void flush_icache_user_range(struct vm_area_struct *vma,
  34. struct page *page, unsigned long addr,
  35. int len);
  36. #define flush_icache_page(vma,pg) do { } while (0)
  37. /* Initialization of P3 area for copy_user_page */
  38. extern void p3_cache_init(void);
  39. #define PG_mapped PG_arch_1
  40. /* We provide our own get_unmapped_area to avoid cache alias issue */
  41. #define HAVE_ARCH_UNMAPPED_AREA
  42. #ifdef CONFIG_MMU
  43. extern int remap_area_pages(unsigned long addr, unsigned long phys_addr,
  44. unsigned long size, unsigned long flags);
  45. #else /* CONFIG_MMU */
  46. static inline int remap_area_pages(unsigned long addr, unsigned long phys_addr,
  47. unsigned long size, unsigned long flags)
  48. {
  49. return 0;
  50. }
  51. #endif /* CONFIG_MMU */
  52. #endif /* __ASM_CPU_SH4_CACHEFLUSH_H */