blob: 85b4086e553e8734cf4b286a2a65d5159ed4f5d9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/mipsregs.h>
Isamu Mogi80e8bd22014-10-30 22:07:37 +090012#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/page.h>
14#include <asm/pgtable.h>
Atsushi Nemoto40df3832007-07-12 00:51:00 +090015#include <asm/tlbdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
James Hogan3c865dd2015-07-15 16:17:43 +010017extern int r3k_have_wired_reg;
18
19void dump_tlb_regs(void)
20{
21 pr_info("Index : %0x\n", read_c0_index());
22 pr_info("EntryHi : %0lx\n", read_c0_entryhi());
23 pr_info("EntryLo : %0lx\n", read_c0_entrylo0());
24 if (r3k_have_wired_reg)
25 pr_info("Wired : %0x\n", read_c0_wired());
26}
27
Atsushi Nemoto69ed25b2007-06-02 00:30:25 +090028static void dump_tlb(int first, int last)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
30 int i;
31 unsigned int asid;
Paul Burton4edf00a2016-05-06 14:36:23 +010032 unsigned long entryhi, entrylo0, asid_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Paul Burton4edf00a2016-05-06 14:36:23 +010034 asid_mask = cpu_asid_mask(&current_cpu_data);
35 asid = read_c0_entryhi() & asid_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37 for (i = first; i <= last; i++) {
38 write_c0_index(i<<8);
39 __asm__ __volatile__(
40 ".set\tnoreorder\n\t"
41 "tlbr\n\t"
42 "nop\n\t"
43 ".set\treorder");
Ralf Baechle70342282013-01-22 12:59:30 +010044 entryhi = read_c0_entryhi();
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 entrylo0 = read_c0_entrylo0();
46
47 /* Unused entries have a virtual address of KSEG0. */
James Hogan48269c72015-05-19 09:50:35 +010048 if ((entryhi & PAGE_MASK) != KSEG0 &&
49 (entrylo0 & R3K_ENTRYLO_G ||
Paul Burton4edf00a2016-05-06 14:36:23 +010050 (entryhi & asid_mask) == asid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 /*
52 * Only print entries in use
53 */
54 printk("Index: %2d ", i);
55
James Hogan8a984952016-10-21 20:06:40 +010056 pr_cont("va=%08lx asid=%08lx"
57 " [pa=%06lx n=%d d=%d v=%d g=%d]",
58 entryhi & PAGE_MASK,
59 entryhi & asid_mask,
60 entrylo0 & PAGE_MASK,
61 (entrylo0 & R3K_ENTRYLO_N) ? 1 : 0,
62 (entrylo0 & R3K_ENTRYLO_D) ? 1 : 0,
63 (entrylo0 & R3K_ENTRYLO_V) ? 1 : 0,
64 (entrylo0 & R3K_ENTRYLO_G) ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 }
66 }
67 printk("\n");
68
69 write_c0_entryhi(asid);
70}
71
72void dump_tlb_all(void)
73{
74 dump_tlb(0, current_cpu_data.tlbsize - 1);
75}