/*1* Copyright (C) 2010 Tobias Klauser <[email protected]>2* Copyright (C) 2009 Wind River Systems Inc3* Copyright (C) 2004 Microtronix Datacom Ltd.4*5* This file is subject to the terms and conditions of the GNU General Public6* License. See the file "COPYING" in the main directory of this archive7* for more details.8*/910#ifndef _ASM_NIOS2_TLB_H11#define _ASM_NIOS2_TLB_H1213extern void set_mmu_pid(unsigned long pid);1415/*16* NIOS32 does have flush_tlb_range(), but it lacks a limit and fallback to17* full mm invalidation. So use flush_tlb_mm() for everything.18*/1920#include <linux/pagemap.h>21#include <asm-generic/tlb.h>2223#endif /* _ASM_NIOS2_TLB_H */242526