tlb.h 664 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2010 Tobias Klauser <[email protected]>
  3. * Copyright (C) 2009 Wind River Systems Inc
  4. * Copyright (C) 2004 Microtronix Datacom Ltd.
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #ifndef _ASM_NIOS2_TLB_H
  11. #define _ASM_NIOS2_TLB_H
  12. extern void set_mmu_pid(unsigned long pid);
  13. /*
  14. * NIOS32 does have flush_tlb_range(), but it lacks a limit and fallback to
  15. * full mm invalidation. So use flush_tlb_mm() for everything.
  16. */
  17. #include <linux/pagemap.h>
  18. #include <asm-generic/tlb.h>
  19. #endif /* _ASM_NIOS2_TLB_H */