瀏覽代碼

MIPS: Add function for flushing the TLB using the TLBINV instruction

Signed-off-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: John Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/6136/
Leonid Yegoshin 11 年之前
父節點
當前提交
198bb4cef1
共有 1 個文件被更改,包括 13 次插入0 次删除
  1. 13 0
      arch/mips/include/asm/mipsregs.h

+ 13 - 0
arch/mips/include/asm/mipsregs.h

@@ -704,6 +704,19 @@ static inline int mm_insn_16bit(u16 insn)
 	return (opcode >= 1 && opcode <= 3) ? 1 : 0;
 	return (opcode >= 1 && opcode <= 3) ? 1 : 0;
 }
 }
 
 
+/*
+ * TLB Invalidate Flush
+ */
+static inline void tlbinvf(void)
+{
+	__asm__ __volatile__(
+		".set push\n\t"
+		".set noreorder\n\t"
+		".word 0x42000004\n\t" /* tlbinvf */
+		".set pop");
+}
+
+
 /*
 /*
  * Functions to access the R10000 performance counters.	 These are basically
  * Functions to access the R10000 performance counters.	 These are basically
  * mfc0 and mtc0 instructions from and to coprocessor register with a 5-bit
  * mfc0 and mtc0 instructions from and to coprocessor register with a 5-bit