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 9e66c3209SChristophe Leroy #include <asm/debugfs.h> 10e66c3209SChristophe Leroy #include <asm/pgtable.h> 11e66c3209SChristophe Leroy #include <asm/cpu_has_feature.h> 12e66c3209SChristophe Leroy 13e66c3209SChristophe Leroy static char *pp_601(int k, int pp) 14e66c3209SChristophe Leroy { 15e66c3209SChristophe Leroy if (pp == 0) 16e66c3209SChristophe Leroy return k ? "NA" : "RWX"; 17e66c3209SChristophe Leroy if (pp == 1) 18e66c3209SChristophe Leroy return k ? "ROX" : "RWX"; 19e66c3209SChristophe Leroy if (pp == 2) 20e66c3209SChristophe Leroy return k ? "RWX" : "RWX"; 21e66c3209SChristophe Leroy return k ? "ROX" : "ROX"; 22e66c3209SChristophe Leroy } 23e66c3209SChristophe Leroy 24e66c3209SChristophe Leroy static void bat_show_601(struct seq_file *m, int idx, u32 lower, u32 upper) 25e66c3209SChristophe Leroy { 26e66c3209SChristophe Leroy u32 blpi = upper & 0xfffe0000; 27e66c3209SChristophe Leroy u32 k = (upper >> 2) & 3; 28e66c3209SChristophe Leroy u32 pp = upper & 3; 29e66c3209SChristophe Leroy phys_addr_t pbn = PHYS_BAT_ADDR(lower); 30e66c3209SChristophe Leroy u32 bsm = lower & 0x3ff; 31e66c3209SChristophe Leroy u32 size = (bsm + 1) << 17; 32e66c3209SChristophe Leroy 33e66c3209SChristophe Leroy seq_printf(m, "%d: ", idx); 34e66c3209SChristophe Leroy if (!(lower & 0x40)) { 35e66c3209SChristophe Leroy seq_puts(m, " -\n"); 36e66c3209SChristophe Leroy return; 37e66c3209SChristophe Leroy } 38e66c3209SChristophe Leroy 39e66c3209SChristophe Leroy seq_printf(m, "0x%08x-0x%08x ", blpi, blpi + size - 1); 40e66c3209SChristophe Leroy #ifdef CONFIG_PHYS_64BIT 41e66c3209SChristophe Leroy seq_printf(m, "0x%016llx ", pbn); 42e66c3209SChristophe Leroy #else 43e66c3209SChristophe Leroy seq_printf(m, "0x%08x ", pbn); 44e66c3209SChristophe Leroy #endif 45e66c3209SChristophe Leroy 46e66c3209SChristophe Leroy seq_printf(m, "Kernel %s User %s", pp_601(k & 2, pp), pp_601(k & 1, pp)); 47e66c3209SChristophe Leroy 48e66c3209SChristophe Leroy if (lower & _PAGE_WRITETHRU) 49e66c3209SChristophe Leroy seq_puts(m, "write through "); 50e66c3209SChristophe Leroy if (lower & _PAGE_NO_CACHE) 51e66c3209SChristophe Leroy seq_puts(m, "no cache "); 52e66c3209SChristophe Leroy if (lower & _PAGE_COHERENT) 53e66c3209SChristophe Leroy seq_puts(m, "coherent "); 54e66c3209SChristophe Leroy seq_puts(m, "\n"); 55e66c3209SChristophe Leroy } 56e66c3209SChristophe Leroy 57e66c3209SChristophe Leroy #define BAT_SHOW_601(_m, _n, _l, _u) bat_show_601(_m, _n, mfspr(_l), mfspr(_u)) 58e66c3209SChristophe Leroy 59e66c3209SChristophe Leroy static int bats_show_601(struct seq_file *m, void *v) 60e66c3209SChristophe Leroy { 61e66c3209SChristophe Leroy seq_puts(m, "---[ Block Address Translation ]---\n"); 62e66c3209SChristophe Leroy 63e66c3209SChristophe Leroy BAT_SHOW_601(m, 0, SPRN_IBAT0L, SPRN_IBAT0U); 64e66c3209SChristophe Leroy BAT_SHOW_601(m, 1, SPRN_IBAT1L, SPRN_IBAT1U); 65e66c3209SChristophe Leroy BAT_SHOW_601(m, 2, SPRN_IBAT2L, SPRN_IBAT2U); 66e66c3209SChristophe Leroy BAT_SHOW_601(m, 3, SPRN_IBAT3L, SPRN_IBAT3U); 67e66c3209SChristophe Leroy 68e66c3209SChristophe Leroy return 0; 69e66c3209SChristophe Leroy } 70e66c3209SChristophe Leroy 71e66c3209SChristophe Leroy static void bat_show_603(struct seq_file *m, int idx, u32 lower, u32 upper, bool is_d) 72e66c3209SChristophe Leroy { 73e66c3209SChristophe Leroy u32 bepi = upper & 0xfffe0000; 74e66c3209SChristophe Leroy u32 bl = (upper >> 2) & 0x7ff; 75e66c3209SChristophe Leroy u32 k = upper & 3; 76e66c3209SChristophe Leroy phys_addr_t brpn = PHYS_BAT_ADDR(lower); 77e66c3209SChristophe Leroy u32 size = (bl + 1) << 17; 78e66c3209SChristophe Leroy 79e66c3209SChristophe Leroy seq_printf(m, "%d: ", idx); 80e66c3209SChristophe Leroy if (k == 0) { 81e66c3209SChristophe Leroy seq_puts(m, " -\n"); 82e66c3209SChristophe Leroy return; 83e66c3209SChristophe Leroy } 84e66c3209SChristophe Leroy 85e66c3209SChristophe Leroy seq_printf(m, "0x%08x-0x%08x ", bepi, bepi + size - 1); 86e66c3209SChristophe Leroy #ifdef CONFIG_PHYS_64BIT 87e66c3209SChristophe Leroy seq_printf(m, "0x%016llx ", brpn); 88e66c3209SChristophe Leroy #else 89e66c3209SChristophe Leroy seq_printf(m, "0x%08x ", brpn); 90e66c3209SChristophe Leroy #endif 91e66c3209SChristophe Leroy 92e66c3209SChristophe Leroy if (k == 1) 93e66c3209SChristophe Leroy seq_puts(m, "User "); 94e66c3209SChristophe Leroy else if (k == 2) 95e66c3209SChristophe Leroy seq_puts(m, "Kernel "); 96e66c3209SChristophe Leroy else 97e66c3209SChristophe Leroy seq_puts(m, "Kernel/User "); 98e66c3209SChristophe Leroy 99e66c3209SChristophe Leroy if (lower & BPP_RX) 100e66c3209SChristophe Leroy seq_puts(m, is_d ? "RO " : "EXEC "); 101e66c3209SChristophe Leroy else if (lower & BPP_RW) 102e66c3209SChristophe Leroy seq_puts(m, is_d ? "RW " : "EXEC "); 103e66c3209SChristophe Leroy else 104e66c3209SChristophe Leroy seq_puts(m, is_d ? "NA " : "NX "); 105e66c3209SChristophe Leroy 106e66c3209SChristophe Leroy if (lower & _PAGE_WRITETHRU) 107e66c3209SChristophe Leroy seq_puts(m, "write through "); 108e66c3209SChristophe Leroy if (lower & _PAGE_NO_CACHE) 109e66c3209SChristophe Leroy seq_puts(m, "no cache "); 110e66c3209SChristophe Leroy if (lower & _PAGE_COHERENT) 111e66c3209SChristophe Leroy seq_puts(m, "coherent "); 112e66c3209SChristophe Leroy if (lower & _PAGE_GUARDED) 113e66c3209SChristophe Leroy seq_puts(m, "guarded "); 114e66c3209SChristophe Leroy seq_puts(m, "\n"); 115e66c3209SChristophe Leroy } 116e66c3209SChristophe Leroy 117e66c3209SChristophe Leroy #define BAT_SHOW_603(_m, _n, _l, _u, _d) bat_show_603(_m, _n, mfspr(_l), mfspr(_u), _d) 118e66c3209SChristophe Leroy 119e66c3209SChristophe Leroy static int bats_show_603(struct seq_file *m, void *v) 120e66c3209SChristophe Leroy { 121e66c3209SChristophe Leroy seq_puts(m, "---[ Instruction Block Address Translation ]---\n"); 122e66c3209SChristophe Leroy 123e66c3209SChristophe Leroy BAT_SHOW_603(m, 0, SPRN_IBAT0L, SPRN_IBAT0U, false); 124e66c3209SChristophe Leroy BAT_SHOW_603(m, 1, SPRN_IBAT1L, SPRN_IBAT1U, false); 125e66c3209SChristophe Leroy BAT_SHOW_603(m, 2, SPRN_IBAT2L, SPRN_IBAT2U, false); 126e66c3209SChristophe Leroy BAT_SHOW_603(m, 3, SPRN_IBAT3L, SPRN_IBAT3U, false); 127e66c3209SChristophe Leroy if (mmu_has_feature(MMU_FTR_USE_HIGH_BATS)) { 128e66c3209SChristophe Leroy BAT_SHOW_603(m, 4, SPRN_IBAT4L, SPRN_IBAT4U, false); 129e66c3209SChristophe Leroy BAT_SHOW_603(m, 5, SPRN_IBAT5L, SPRN_IBAT5U, false); 130e66c3209SChristophe Leroy BAT_SHOW_603(m, 6, SPRN_IBAT6L, SPRN_IBAT6U, false); 131e66c3209SChristophe Leroy BAT_SHOW_603(m, 7, SPRN_IBAT7L, SPRN_IBAT7U, false); 132e66c3209SChristophe Leroy } 133e66c3209SChristophe Leroy 134e66c3209SChristophe Leroy seq_puts(m, "\n---[ Data Block Address Translation ]---\n"); 135e66c3209SChristophe Leroy 136e66c3209SChristophe Leroy BAT_SHOW_603(m, 0, SPRN_DBAT0L, SPRN_DBAT0U, true); 137e66c3209SChristophe Leroy BAT_SHOW_603(m, 1, SPRN_DBAT1L, SPRN_DBAT1U, true); 138e66c3209SChristophe Leroy BAT_SHOW_603(m, 2, SPRN_DBAT2L, SPRN_DBAT2U, true); 139e66c3209SChristophe Leroy BAT_SHOW_603(m, 3, SPRN_DBAT3L, SPRN_DBAT3U, true); 140e66c3209SChristophe Leroy if (mmu_has_feature(MMU_FTR_USE_HIGH_BATS)) { 141e66c3209SChristophe Leroy BAT_SHOW_603(m, 4, SPRN_DBAT4L, SPRN_DBAT4U, true); 142e66c3209SChristophe Leroy BAT_SHOW_603(m, 5, SPRN_DBAT5L, SPRN_DBAT5U, true); 143e66c3209SChristophe Leroy BAT_SHOW_603(m, 6, SPRN_DBAT6L, SPRN_DBAT6U, true); 144e66c3209SChristophe Leroy BAT_SHOW_603(m, 7, SPRN_DBAT7L, SPRN_DBAT7U, true); 145e66c3209SChristophe Leroy } 146e66c3209SChristophe Leroy 147e66c3209SChristophe Leroy return 0; 148e66c3209SChristophe Leroy } 149e66c3209SChristophe Leroy 150e66c3209SChristophe Leroy static int bats_open(struct inode *inode, struct file *file) 151e66c3209SChristophe Leroy { 15212c3f1fdSChristophe Leroy if (IS_ENABLED(CONFIG_PPC_BOOK3S_601)) 153e66c3209SChristophe Leroy return single_open(file, bats_show_601, NULL); 154e66c3209SChristophe Leroy 155e66c3209SChristophe Leroy return single_open(file, bats_show_603, NULL); 156e66c3209SChristophe Leroy } 157e66c3209SChristophe Leroy 158e66c3209SChristophe Leroy static const struct file_operations bats_fops = { 159e66c3209SChristophe Leroy .open = bats_open, 160e66c3209SChristophe Leroy .read = seq_read, 161e66c3209SChristophe Leroy .llseek = seq_lseek, 162e66c3209SChristophe Leroy .release = single_release, 163e66c3209SChristophe Leroy }; 164e66c3209SChristophe Leroy 165e66c3209SChristophe Leroy static int __init bats_init(void) 166e66c3209SChristophe Leroy { 167*f3c05201SGreg Kroah-Hartman debugfs_create_file("block_address_translation", 0400, 168e66c3209SChristophe Leroy powerpc_debugfs_root, NULL, &bats_fops); 169*f3c05201SGreg Kroah-Hartman return 0; 170e66c3209SChristophe Leroy } 171e66c3209SChristophe Leroy device_initcall(bats_init); 172