8 #include <linux/kernel.h>
13 #include <asm/pgtable.h>
18 static void dump_tlb(
int first,
int last)
22 unsigned long entryhi, entrylo0;
26 for (i = first; i <= last; i++) {
37 if ((entryhi & 0xffffe000) != 0x80000000
38 && (entryhi & 0xfc0) == asid) {
44 printk(
"va=%08lx asid=%08lx"
45 " [pa=%06lx n=%d d=%d v=%d g=%d]",
46 (entryhi & 0xffffe000),
49 (entrylo0 & (1 << 11)) ? 1 : 0,
50 (entrylo0 & (1 << 10)) ? 1 : 0,
51 (entrylo0 & (1 << 9)) ? 1 : 0,
52 (entrylo0 & (1 << 8)) ? 1 : 0);