tlbflush.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright (C) 2004-2006 Atmel Corporation
  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. #ifndef __ASM_AVR32_TLBFLUSH_H
  9. #define __ASM_AVR32_TLBFLUSH_H
  10. #include <asm/mmu.h>
  11. /*
  12. * TLB flushing:
  13. *
  14. * - flush_tlb() flushes the current mm struct TLBs
  15. * - flush_tlb_all() flushes all processes' TLB entries
  16. * - flush_tlb_mm(mm) flushes the specified mm context TLBs
  17. * - flush_tlb_page(vma, vmaddr) flushes one page
  18. * - flush_tlb_range(vma, start, end) flushes a range of pages
  19. * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
  20. * - flush_tlb_pgtables(mm, start, end) flushes a range of page tables
  21. */
  22. extern void flush_tlb(void);
  23. extern void flush_tlb_all(void);
  24. extern void flush_tlb_mm(struct mm_struct *mm);
  25. extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
  26. unsigned long end);
  27. extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long page);
  28. extern void __flush_tlb_page(unsigned long asid, unsigned long page);
  29. static inline void flush_tlb_pgtables(struct mm_struct *mm,
  30. unsigned long start, unsigned long end)
  31. {
  32. /* Nothing to do */
  33. }
  34. extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
  35. #endif /* __ASM_AVR32_TLBFLUSH_H */