cacheflush.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. * vineetg: May 2011: for Non-aliasing VIPT D-cache following can be NOPs
  9. * -flush_cache_dup_mm (fork)
  10. * -likewise for flush_cache_mm (exit/execve)
  11. * -likewise for flush_cache_{range,page} (munmap, exit, COW-break)
  12. *
  13. * vineetg: April 2008
  14. * -Added a critical CacheLine flush to copy_to_user_page( ) which
  15. * was causing gdbserver to not setup breakpoints consistently
  16. */
  17. #ifndef _ASM_CACHEFLUSH_H
  18. #define _ASM_CACHEFLUSH_H
  19. #include <linux/mm.h>
  20. void flush_cache_all(void);
  21. void flush_icache_range(unsigned long start, unsigned long end);
  22. void flush_icache_page(struct vm_area_struct *vma, struct page *page);
  23. void flush_icache_range_vaddr(unsigned long paddr, unsigned long u_vaddr,
  24. int len);
  25. #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
  26. void flush_dcache_page(struct page *page);
  27. void dma_cache_wback_inv(unsigned long start, unsigned long sz);
  28. void dma_cache_inv(unsigned long start, unsigned long sz);
  29. void dma_cache_wback(unsigned long start, unsigned long sz);
  30. #define flush_dcache_mmap_lock(mapping) do { } while (0)
  31. #define flush_dcache_mmap_unlock(mapping) do { } while (0)
  32. /* TBD: optimize this */
  33. #define flush_cache_vmap(start, end) flush_cache_all()
  34. #define flush_cache_vunmap(start, end) flush_cache_all()
  35. /*
  36. * VM callbacks when entire/range of user-space V-P mappings are
  37. * torn-down/get-invalidated
  38. *
  39. * Currently we don't support D$ aliasing configs for our VIPT caches
  40. * NOPS for VIPT Cache with non-aliasing D$ configurations only
  41. */
  42. #define flush_cache_dup_mm(mm) /* called on fork */
  43. #define flush_cache_mm(mm) /* called on munmap/exit */
  44. #define flush_cache_range(mm, u_vstart, u_vend)
  45. #define flush_cache_page(vma, u_vaddr, pfn) /* PF handling/COW-break */
  46. #define copy_to_user_page(vma, page, vaddr, dst, src, len) \
  47. do { \
  48. memcpy(dst, src, len); \
  49. if (vma->vm_flags & VM_EXEC) \
  50. flush_icache_range_vaddr((unsigned long)(dst), vaddr, len);\
  51. } while (0)
  52. #define copy_from_user_page(vma, page, vaddr, dst, src, len) \
  53. memcpy(dst, src, len); \
  54. #endif