Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Dump R3000 TLB for debugging purposes. |
| 4 | * |
| 5 | * Copyright (C) 1994, 1995 by Waldorf Electronics, written by Ralf Baechle. |
| 6 | * Copyright (C) 1999 by Silicon Graphics, Inc. |
| 7 | * Copyright (C) 1999 by Harald Koerfgen |
| 8 | */ |
| 9 | #include <linux/kernel.h> |
| 10 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <asm/mipsregs.h> |
Isamu Mogi | 80e8bd2 | 2014-10-30 22:07:37 +0900 | [diff] [blame] | 13 | #include <asm/mmu_context.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <asm/page.h> |
| 15 | #include <asm/pgtable.h> |
Atsushi Nemoto | 40df383 | 2007-07-12 00:51:00 +0900 | [diff] [blame] | 16 | #include <asm/tlbdebug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
James Hogan | 3c865dd | 2015-07-15 16:17:43 +0100 | [diff] [blame] | 18 | extern int r3k_have_wired_reg; |
| 19 | |
| 20 | void dump_tlb_regs(void) |
| 21 | { |
| 22 | pr_info("Index : %0x\n", read_c0_index()); |
| 23 | pr_info("EntryHi : %0lx\n", read_c0_entryhi()); |
| 24 | pr_info("EntryLo : %0lx\n", read_c0_entrylo0()); |
| 25 | if (r3k_have_wired_reg) |
| 26 | pr_info("Wired : %0x\n", read_c0_wired()); |
| 27 | } |
| 28 | |
Atsushi Nemoto | 69ed25b | 2007-06-02 00:30:25 +0900 | [diff] [blame] | 29 | static void dump_tlb(int first, int last) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | { |
| 31 | int i; |
| 32 | unsigned int asid; |
Paul Burton | 4edf00a | 2016-05-06 14:36:23 +0100 | [diff] [blame] | 33 | unsigned long entryhi, entrylo0, asid_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Paul Burton | 4edf00a | 2016-05-06 14:36:23 +0100 | [diff] [blame] | 35 | asid_mask = cpu_asid_mask(¤t_cpu_data); |
| 36 | asid = read_c0_entryhi() & asid_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | for (i = first; i <= last; i++) { |
| 39 | write_c0_index(i<<8); |
| 40 | __asm__ __volatile__( |
| 41 | ".set\tnoreorder\n\t" |
| 42 | "tlbr\n\t" |
| 43 | "nop\n\t" |
| 44 | ".set\treorder"); |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 45 | entryhi = read_c0_entryhi(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | entrylo0 = read_c0_entrylo0(); |
| 47 | |
| 48 | /* Unused entries have a virtual address of KSEG0. */ |
James Hogan | 48269c7 | 2015-05-19 09:50:35 +0100 | [diff] [blame] | 49 | if ((entryhi & PAGE_MASK) != KSEG0 && |
| 50 | (entrylo0 & R3K_ENTRYLO_G || |
Paul Burton | 4edf00a | 2016-05-06 14:36:23 +0100 | [diff] [blame] | 51 | (entryhi & asid_mask) == asid)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* |
| 53 | * Only print entries in use |
| 54 | */ |
| 55 | printk("Index: %2d ", i); |
| 56 | |
James Hogan | 8a98495 | 2016-10-21 20:06:40 +0100 | [diff] [blame] | 57 | pr_cont("va=%08lx asid=%08lx" |
| 58 | " [pa=%06lx n=%d d=%d v=%d g=%d]", |
| 59 | entryhi & PAGE_MASK, |
| 60 | entryhi & asid_mask, |
| 61 | entrylo0 & PAGE_MASK, |
| 62 | (entrylo0 & R3K_ENTRYLO_N) ? 1 : 0, |
| 63 | (entrylo0 & R3K_ENTRYLO_D) ? 1 : 0, |
| 64 | (entrylo0 & R3K_ENTRYLO_V) ? 1 : 0, |
| 65 | (entrylo0 & R3K_ENTRYLO_G) ? 1 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | } |
| 68 | printk("\n"); |
| 69 | |
| 70 | write_c0_entryhi(asid); |
| 71 | } |
| 72 | |
| 73 | void dump_tlb_all(void) |
| 74 | { |
| 75 | dump_tlb(0, current_cpu_data.tlbsize - 1); |
| 76 | } |