MIPS: dump_tlb: Take global bit into account
[linux-2.6-block.git] / arch / mips / lib / r3k_dump_tlb.c
1 /*
2  * Dump R3000 TLB for debugging purposes.
3  *
4  * Copyright (C) 1994, 1995 by Waldorf Electronics, written by Ralf Baechle.
5  * Copyright (C) 1999 by Silicon Graphics, Inc.
6  * Copyright (C) 1999 by Harald Koerfgen
7  */
8 #include <linux/kernel.h>
9 #include <linux/mm.h>
10
11 #include <asm/mipsregs.h>
12 #include <asm/mmu_context.h>
13 #include <asm/page.h>
14 #include <asm/pgtable.h>
15 #include <asm/tlbdebug.h>
16
17 extern int r3k_have_wired_reg;  /* defined in tlb-r3k.c */
18
19 static void dump_tlb(int first, int last)
20 {
21         int     i;
22         unsigned int asid;
23         unsigned long entryhi, entrylo0;
24
25         asid = read_c0_entryhi() & ASID_MASK;
26
27         for (i = first; i <= last; i++) {
28                 write_c0_index(i<<8);
29                 __asm__ __volatile__(
30                         ".set\tnoreorder\n\t"
31                         "tlbr\n\t"
32                         "nop\n\t"
33                         ".set\treorder");
34                 entryhi  = read_c0_entryhi();
35                 entrylo0 = read_c0_entrylo0();
36
37                 /* Unused entries have a virtual address of KSEG0.  */
38                 if ((entryhi & PAGE_MASK) != KSEG0 &&
39                     (entrylo0 & R3K_ENTRYLO_G ||
40                      (entryhi & ASID_MASK) == asid)) {
41                         /*
42                          * Only print entries in use
43                          */
44                         printk("Index: %2d ", i);
45
46                         printk("va=%08lx asid=%08lx"
47                                "  [pa=%06lx n=%d d=%d v=%d g=%d]",
48                                entryhi & PAGE_MASK,
49                                entryhi & ASID_MASK,
50                                entrylo0 & PAGE_MASK,
51                                (entrylo0 & R3K_ENTRYLO_N) ? 1 : 0,
52                                (entrylo0 & R3K_ENTRYLO_D) ? 1 : 0,
53                                (entrylo0 & R3K_ENTRYLO_V) ? 1 : 0,
54                                (entrylo0 & R3K_ENTRYLO_G) ? 1 : 0);
55                 }
56         }
57         printk("\n");
58
59         write_c0_entryhi(asid);
60 }
61
62 void dump_tlb_all(void)
63 {
64         dump_tlb(0, current_cpu_data.tlbsize - 1);
65 }