blob: 8e0d3cff8ae4481b104733019fe71be0c5c640a1 [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
Atsushi Nemoto69ed25b2007-06-02 00:30:25 +090017static void dump_tlb(int first, int last)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018{
19 int i;
20 unsigned int asid;
21 unsigned long entryhi, entrylo0;
22
Isamu Mogi80e8bd22014-10-30 22:07:37 +090023 asid = read_c0_entryhi() & ASID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25 for (i = first; i <= last; i++) {
26 write_c0_index(i<<8);
27 __asm__ __volatile__(
28 ".set\tnoreorder\n\t"
29 "tlbr\n\t"
30 "nop\n\t"
31 ".set\treorder");
Ralf Baechle70342282013-01-22 12:59:30 +010032 entryhi = read_c0_entryhi();
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 entrylo0 = read_c0_entrylo0();
34
35 /* Unused entries have a virtual address of KSEG0. */
James Hogan48269c72015-05-19 09:50:35 +010036 if ((entryhi & PAGE_MASK) != KSEG0 &&
37 (entrylo0 & R3K_ENTRYLO_G ||
38 (entryhi & ASID_MASK) == asid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 /*
40 * Only print entries in use
41 */
42 printk("Index: %2d ", i);
43
44 printk("va=%08lx asid=%08lx"
45 " [pa=%06lx n=%d d=%d v=%d g=%d]",
Isamu Mogi432d9ec2014-10-30 22:07:38 +090046 entryhi & PAGE_MASK,
Isamu Mogi80e8bd22014-10-30 22:07:37 +090047 entryhi & ASID_MASK,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 entrylo0 & PAGE_MASK,
James Hogand7f54992015-05-19 09:50:34 +010049 (entrylo0 & R3K_ENTRYLO_N) ? 1 : 0,
50 (entrylo0 & R3K_ENTRYLO_D) ? 1 : 0,
51 (entrylo0 & R3K_ENTRYLO_V) ? 1 : 0,
52 (entrylo0 & R3K_ENTRYLO_G) ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 }
54 }
55 printk("\n");
56
57 write_c0_entryhi(asid);
58}
59
60void dump_tlb_all(void)
61{
62 dump_tlb(0, current_cpu_data.tlbsize - 1);
63}