tlbflush.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright (C) 2010 Tobias Klauser <tklauser@distanz.ch>
  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 as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. #ifndef _ASM_NIOS2_TLBFLUSH_H
  19. #define _ASM_NIOS2_TLBFLUSH_H
  20. struct mm_struct;
  21. /*
  22. * TLB flushing:
  23. *
  24. * - flush_tlb_all() flushes all processes TLB entries
  25. * - flush_tlb_mm(mm) flushes the specified mm context TLB entries
  26. * - flush_tlb_page(vma, vmaddr) flushes one page
  27. * - flush_tlb_range(vma, start, end) flushes a range of pages
  28. * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
  29. */
  30. extern void flush_tlb_all(void);
  31. extern void flush_tlb_mm(struct mm_struct *mm);
  32. extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
  33. unsigned long end);
  34. extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
  35. extern void flush_tlb_one(unsigned long vaddr);
  36. static inline void flush_tlb_page(struct vm_area_struct *vma,
  37. unsigned long addr)
  38. {
  39. flush_tlb_one(addr);
  40. }
  41. #endif /* _ASM_NIOS2_TLBFLUSH_H */