xref: /openbmc/linux/arch/powerpc/mm/ptdump/bats.c (revision 11f27a7f)
1e66c3209SChristophe Leroy // SPDX-License-Identifier: GPL-2.0+
2e66c3209SChristophe Leroy /*
3e66c3209SChristophe Leroy  * Copyright 2018, Christophe Leroy CS S.I.
4e66c3209SChristophe Leroy  * <christophe.leroy@c-s.fr>
5e66c3209SChristophe Leroy  *
6e66c3209SChristophe Leroy  * This dumps the content of BATS
7e66c3209SChristophe Leroy  */
8e66c3209SChristophe Leroy 
9ca5999fdSMike Rapoport #include <linux/pgtable.h>
10dbf77fedSAneesh Kumar K.V #include <linux/debugfs.h>
11e66c3209SChristophe Leroy #include <asm/cpu_has_feature.h>
12e66c3209SChristophe Leroy 
136b30830eSChristophe Leroy #include "ptdump.h"
146b30830eSChristophe Leroy 
bat_show_603(struct seq_file * m,int idx,u32 lower,u32 upper,bool is_d)15e66c3209SChristophe Leroy static void bat_show_603(struct seq_file *m, int idx, u32 lower, u32 upper, bool is_d)
16e66c3209SChristophe Leroy {
17e66c3209SChristophe Leroy 	u32 bepi = upper & 0xfffe0000;
18e66c3209SChristophe Leroy 	u32 bl = (upper >> 2) & 0x7ff;
19e66c3209SChristophe Leroy 	u32 k = upper & 3;
20e66c3209SChristophe Leroy 	phys_addr_t brpn = PHYS_BAT_ADDR(lower);
21e66c3209SChristophe Leroy 	u32 size = (bl + 1) << 17;
22e66c3209SChristophe Leroy 
23e66c3209SChristophe Leroy 	seq_printf(m, "%d: ", idx);
24e66c3209SChristophe Leroy 	if (k == 0) {
25e66c3209SChristophe Leroy 		seq_puts(m, "        -\n");
26e66c3209SChristophe Leroy 		return;
27e66c3209SChristophe Leroy 	}
28e66c3209SChristophe Leroy 
29e66c3209SChristophe Leroy 	seq_printf(m, "0x%08x-0x%08x ", bepi, bepi + size - 1);
30e66c3209SChristophe Leroy #ifdef CONFIG_PHYS_64BIT
31e66c3209SChristophe Leroy 	seq_printf(m, "0x%016llx ", brpn);
32e66c3209SChristophe Leroy #else
33e66c3209SChristophe Leroy 	seq_printf(m, "0x%08x ", brpn);
34e66c3209SChristophe Leroy #endif
356b30830eSChristophe Leroy 	pt_dump_size(m, size);
36e66c3209SChristophe Leroy 
37e66c3209SChristophe Leroy 	if (k == 1)
38e66c3209SChristophe Leroy 		seq_puts(m, "User ");
39e66c3209SChristophe Leroy 	else if (k == 2)
40e66c3209SChristophe Leroy 		seq_puts(m, "Kernel ");
41e66c3209SChristophe Leroy 	else
42e66c3209SChristophe Leroy 		seq_puts(m, "Kernel/User ");
43e66c3209SChristophe Leroy 
44e66c3209SChristophe Leroy 	if (lower & BPP_RX)
458961a2a5SChristophe Leroy 		seq_puts(m, is_d ? "r   " : "  x ");
46e66c3209SChristophe Leroy 	else if (lower & BPP_RW)
478961a2a5SChristophe Leroy 		seq_puts(m, is_d ? "rw  " : "  x ");
48e66c3209SChristophe Leroy 	else
498961a2a5SChristophe Leroy 		seq_puts(m, is_d ? "    " : "    ");
50e66c3209SChristophe Leroy 
518961a2a5SChristophe Leroy 	seq_puts(m, lower & _PAGE_WRITETHRU ? "w " : "  ");
528961a2a5SChristophe Leroy 	seq_puts(m, lower & _PAGE_NO_CACHE ? "i " : "  ");
538961a2a5SChristophe Leroy 	seq_puts(m, lower & _PAGE_COHERENT ? "m " : "  ");
548961a2a5SChristophe Leroy 	seq_puts(m, lower & _PAGE_GUARDED ? "g " : "  ");
55e66c3209SChristophe Leroy 	seq_puts(m, "\n");
56e66c3209SChristophe Leroy }
57e66c3209SChristophe Leroy 
58e66c3209SChristophe Leroy #define BAT_SHOW_603(_m, _n, _l, _u, _d) bat_show_603(_m, _n, mfspr(_l), mfspr(_u), _d)
59e66c3209SChristophe Leroy 
bats_show(struct seq_file * m,void * v)60*11f27a7fSChristophe Leroy static int bats_show(struct seq_file *m, void *v)
61e66c3209SChristophe Leroy {
62e66c3209SChristophe Leroy 	seq_puts(m, "---[ Instruction Block Address Translation ]---\n");
63e66c3209SChristophe Leroy 
64e66c3209SChristophe Leroy 	BAT_SHOW_603(m, 0, SPRN_IBAT0L, SPRN_IBAT0U, false);
65e66c3209SChristophe Leroy 	BAT_SHOW_603(m, 1, SPRN_IBAT1L, SPRN_IBAT1U, false);
66e66c3209SChristophe Leroy 	BAT_SHOW_603(m, 2, SPRN_IBAT2L, SPRN_IBAT2U, false);
67e66c3209SChristophe Leroy 	BAT_SHOW_603(m, 3, SPRN_IBAT3L, SPRN_IBAT3U, false);
68e66c3209SChristophe Leroy 	if (mmu_has_feature(MMU_FTR_USE_HIGH_BATS)) {
69e66c3209SChristophe Leroy 		BAT_SHOW_603(m, 4, SPRN_IBAT4L, SPRN_IBAT4U, false);
70e66c3209SChristophe Leroy 		BAT_SHOW_603(m, 5, SPRN_IBAT5L, SPRN_IBAT5U, false);
71e66c3209SChristophe Leroy 		BAT_SHOW_603(m, 6, SPRN_IBAT6L, SPRN_IBAT6U, false);
72e66c3209SChristophe Leroy 		BAT_SHOW_603(m, 7, SPRN_IBAT7L, SPRN_IBAT7U, false);
73e66c3209SChristophe Leroy 	}
74e66c3209SChristophe Leroy 
75e66c3209SChristophe Leroy 	seq_puts(m, "\n---[ Data Block Address Translation ]---\n");
76e66c3209SChristophe Leroy 
77e66c3209SChristophe Leroy 	BAT_SHOW_603(m, 0, SPRN_DBAT0L, SPRN_DBAT0U, true);
78e66c3209SChristophe Leroy 	BAT_SHOW_603(m, 1, SPRN_DBAT1L, SPRN_DBAT1U, true);
79e66c3209SChristophe Leroy 	BAT_SHOW_603(m, 2, SPRN_DBAT2L, SPRN_DBAT2U, true);
80e66c3209SChristophe Leroy 	BAT_SHOW_603(m, 3, SPRN_DBAT3L, SPRN_DBAT3U, true);
81e66c3209SChristophe Leroy 	if (mmu_has_feature(MMU_FTR_USE_HIGH_BATS)) {
82e66c3209SChristophe Leroy 		BAT_SHOW_603(m, 4, SPRN_DBAT4L, SPRN_DBAT4U, true);
83e66c3209SChristophe Leroy 		BAT_SHOW_603(m, 5, SPRN_DBAT5L, SPRN_DBAT5U, true);
84e66c3209SChristophe Leroy 		BAT_SHOW_603(m, 6, SPRN_DBAT6L, SPRN_DBAT6U, true);
85e66c3209SChristophe Leroy 		BAT_SHOW_603(m, 7, SPRN_DBAT7L, SPRN_DBAT7U, true);
86e66c3209SChristophe Leroy 	}
87e66c3209SChristophe Leroy 
88e66c3209SChristophe Leroy 	return 0;
89e66c3209SChristophe Leroy }
90e66c3209SChristophe Leroy 
91*11f27a7fSChristophe Leroy DEFINE_SHOW_ATTRIBUTE(bats);
92e66c3209SChristophe Leroy 
bats_init(void)93e66c3209SChristophe Leroy static int __init bats_init(void)
94e66c3209SChristophe Leroy {
95f3c05201SGreg Kroah-Hartman 	debugfs_create_file("block_address_translation", 0400,
96dbf77fedSAneesh Kumar K.V 			    arch_debugfs_dir, NULL, &bats_fops);
97f3c05201SGreg Kroah-Hartman 	return 0;
98e66c3209SChristophe Leroy }
99e66c3209SChristophe Leroy device_initcall(bats_init);
100