2 * Dump R4x00 TLB for debugging purposes.
4 * Copyright (C) 1994, 1995 by Waldorf Electronics, written by Ralf Baechle.
5 * Copyright (C) 1999 by Silicon Graphics, Inc.
7 #include <linux/config.h>
8 #include <linux/kernel.h>
10 #include <linux/sched.h>
11 #include <linux/string.h>
13 #include <asm/bootinfo.h>
14 #include <asm/cachectl.h>
16 #include <asm/mipsregs.h>
18 #include <asm/pgtable.h>
20 static inline const char *msk2str(unsigned int mask
)
23 case PM_4K
: return "4kb";
24 case PM_16K
: return "16kb";
25 case PM_64K
: return "64kb";
26 case PM_256K
: return "256kb";
27 #ifndef CONFIG_CPU_VR41XX
28 case PM_1M
: return "1Mb";
29 case PM_4M
: return "4Mb";
30 case PM_16M
: return "16Mb";
31 case PM_64M
: return "64Mb";
32 case PM_256M
: return "256Mb";
40 __asm__ __volatile__( \
41 ".set\tnoreorder\n\t" \
42 "nop;nop;nop;nop;nop;nop;nop\n\t" \
45 void dump_tlb(int first
, int last
)
47 unsigned int pagemask
, c0
, c1
, asid
;
48 unsigned long long entrylo0
, entrylo1
;
49 unsigned long entryhi
;
52 asid
= read_c0_entryhi() & 0xff;
55 for (i
= first
; i
<= last
; i
++) {
60 pagemask
= read_c0_pagemask();
61 entryhi
= read_c0_entryhi();
62 entrylo0
= read_c0_entrylo0();
63 entrylo1
= read_c0_entrylo1();
65 /* Unused entries have a virtual address in KSEG0. */
66 if ((entryhi
& 0xf0000000) != 0x80000000
67 && (entryhi
& 0xff) == asid
) {
69 * Only print entries in use
71 printk("Index: %2d pgmask=%s ", i
, msk2str(pagemask
));
73 c0
= (entrylo0
>> 3) & 7;
74 c1
= (entrylo1
>> 3) & 7;
76 printk("va=%08lx asid=%02lx\n",
77 (entryhi
& 0xffffe000), (entryhi
& 0xff));
78 printk("\t\t\t[pa=%08Lx c=%d d=%d v=%d g=%Ld]\n",
79 (entrylo0
<< 6) & PAGE_MASK
, c0
,
80 (entrylo0
& 4) ? 1 : 0,
81 (entrylo0
& 2) ? 1 : 0,
83 printk("\t\t\t[pa=%08Lx c=%d d=%d v=%d g=%Ld]\n",
84 (entrylo1
<< 6) & PAGE_MASK
, c1
,
85 (entrylo1
& 4) ? 1 : 0,
86 (entrylo1
& 2) ? 1 : 0,
92 write_c0_entryhi(asid
);
95 void dump_tlb_all(void)
97 dump_tlb(0, current_cpu_data
.tlbsize
- 1);
100 void dump_tlb_wired(void)
104 wired
= read_c0_wired();
105 printk("Wired: %d", wired
);
106 dump_tlb(0, read_c0_wired());
109 void dump_tlb_addr(unsigned long addr
)
111 unsigned int flags
, oldpid
;
114 local_irq_save(flags
);
115 oldpid
= read_c0_entryhi() & 0xff;
117 write_c0_entryhi((addr
& PAGE_MASK
) | oldpid
);
121 index
= read_c0_index();
122 write_c0_entryhi(oldpid
);
123 local_irq_restore(flags
);
126 printk("No entry for address 0x%08lx in TLB\n", addr
);
130 printk("Entry %d maps address 0x%08lx\n", index
, addr
);
131 dump_tlb(index
, index
);
134 void dump_tlb_nonwired(void)
136 dump_tlb(read_c0_wired(), current_cpu_data
.tlbsize
- 1);
139 void dump_list_process(struct task_struct
*t
, void *address
)
141 pgd_t
*page_dir
, *pgd
;
144 unsigned long addr
, val
;
146 addr
= (unsigned long) address
;
148 printk("Addr == %08lx\n", addr
);
149 printk("task == %8p\n", t
);
150 printk("task->mm == %8p\n", t
->mm
);
151 //printk("tasks->mm.pgd == %08x\n", (unsigned int) t->mm->pgd);
154 page_dir
= pgd_offset_k(0);
156 page_dir
= pgd_offset(t
->mm
, 0);
157 printk("page_dir == %08x\n", (unsigned int) page_dir
);
160 pgd
= pgd_offset_k(addr
);
162 pgd
= pgd_offset(t
->mm
, addr
);
163 printk("pgd == %08x, ", (unsigned int) pgd
);
165 pmd
= pmd_offset(pgd
, addr
);
166 printk("pmd == %08x, ", (unsigned int) pmd
);
168 pte
= pte_offset(pmd
, addr
);
169 printk("pte == %08x, ", (unsigned int) pte
);
172 #ifdef CONFIG_64BIT_PHYS_ADDR
173 printk("page == %08Lx\n", pte_val(page
));
175 printk("page == %08lx\n", pte_val(page
));
179 if (val
& _PAGE_PRESENT
) printk("present ");
180 if (val
& _PAGE_READ
) printk("read ");
181 if (val
& _PAGE_WRITE
) printk("write ");
182 if (val
& _PAGE_ACCESSED
) printk("accessed ");
183 if (val
& _PAGE_MODIFIED
) printk("modified ");
184 if (val
& _PAGE_R4KBUG
) printk("r4kbug ");
185 if (val
& _PAGE_GLOBAL
) printk("global ");
186 if (val
& _PAGE_VALID
) printk("valid ");
190 void dump_list_current(void *address
)
192 dump_list_process(current
, address
);
195 unsigned int vtop(void *address
)
200 unsigned int addr
, paddr
;
202 addr
= (unsigned long) address
;
203 pgd
= pgd_offset(current
->mm
, addr
);
204 pmd
= pmd_offset(pgd
, addr
);
205 pte
= pte_offset(pmd
, addr
);
206 paddr
= (KSEG1
| (unsigned int) pte_val(*pte
)) & PAGE_MASK
;
207 paddr
|= (addr
& ~PAGE_MASK
);
212 void dump16(unsigned long *p
)
216 for (i
= 0; i
< 8; i
++) {
217 printk("*%08lx == %08lx, ", (unsigned long)p
, *p
);
219 printk("*%08lx == %08lx\n", (unsigned long)p
, *p
);