2019-06-04 08:11:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2009-08-28 17:54:41 +00:00
|
|
|
/*
|
|
|
|
* omap iommu: debugfs interface
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008-2009 Nokia Corporation
|
|
|
|
*
|
|
|
|
* Written by Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/io.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2009-08-28 17:54:41 +00:00
|
|
|
#include <linux/uaccess.h>
|
2015-07-20 22:33:25 +00:00
|
|
|
#include <linux/pm_runtime.h>
|
2009-08-28 17:54:41 +00:00
|
|
|
#include <linux/debugfs.h>
|
2012-11-02 19:24:14 +00:00
|
|
|
#include <linux/platform_data/iommu-omap.h>
|
2009-08-28 17:54:41 +00:00
|
|
|
|
2012-11-02 19:24:00 +00:00
|
|
|
#include "omap-iopgtable.h"
|
2012-11-02 19:24:06 +00:00
|
|
|
#include "omap-iommu.h"
|
2009-08-28 17:54:41 +00:00
|
|
|
|
|
|
|
static DEFINE_MUTEX(iommu_debug_lock);
|
|
|
|
|
|
|
|
static struct dentry *iommu_debug_root;
|
|
|
|
|
2014-10-22 22:22:34 +00:00
|
|
|
static inline bool is_omap_iommu_detached(struct omap_iommu *obj)
|
|
|
|
{
|
|
|
|
return !obj->domain;
|
|
|
|
}
|
|
|
|
|
2015-07-20 22:33:25 +00:00
|
|
|
#define pr_reg(name) \
|
|
|
|
do { \
|
|
|
|
ssize_t bytes; \
|
|
|
|
const char *str = "%20s: %08x\n"; \
|
|
|
|
const int maxcol = 32; \
|
|
|
|
bytes = snprintf(p, maxcol, str, __stringify(name), \
|
|
|
|
iommu_read_reg(obj, MMU_##name)); \
|
|
|
|
p += bytes; \
|
|
|
|
len -= bytes; \
|
|
|
|
if (len < maxcol) \
|
|
|
|
goto out; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
static ssize_t
|
|
|
|
omap2_iommu_dump_ctx(struct omap_iommu *obj, char *buf, ssize_t len)
|
|
|
|
{
|
|
|
|
char *p = buf;
|
|
|
|
|
|
|
|
pr_reg(REVISION);
|
|
|
|
pr_reg(IRQSTATUS);
|
|
|
|
pr_reg(IRQENABLE);
|
|
|
|
pr_reg(WALKING_ST);
|
|
|
|
pr_reg(CNTL);
|
|
|
|
pr_reg(FAULT_AD);
|
|
|
|
pr_reg(TTB);
|
|
|
|
pr_reg(LOCK);
|
|
|
|
pr_reg(LD_TLB);
|
|
|
|
pr_reg(CAM);
|
|
|
|
pr_reg(RAM);
|
|
|
|
pr_reg(GFLUSH);
|
|
|
|
pr_reg(FLUSH_ENTRY);
|
|
|
|
pr_reg(READ_CAM);
|
|
|
|
pr_reg(READ_RAM);
|
|
|
|
pr_reg(EMU_FAULT_AD);
|
|
|
|
out:
|
|
|
|
return p - buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t omap_iommu_dump_ctx(struct omap_iommu *obj, char *buf,
|
|
|
|
ssize_t bytes)
|
|
|
|
{
|
|
|
|
if (!obj || !buf)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
pm_runtime_get_sync(obj->dev);
|
|
|
|
|
|
|
|
bytes = omap2_iommu_dump_ctx(obj, buf, bytes);
|
|
|
|
|
|
|
|
pm_runtime_put_sync(obj->dev);
|
|
|
|
|
|
|
|
return bytes;
|
|
|
|
}
|
|
|
|
|
2009-08-28 17:54:41 +00:00
|
|
|
static ssize_t debug_read_regs(struct file *file, char __user *userbuf,
|
|
|
|
size_t count, loff_t *ppos)
|
|
|
|
{
|
2014-10-22 22:22:30 +00:00
|
|
|
struct omap_iommu *obj = file->private_data;
|
2009-08-28 17:54:41 +00:00
|
|
|
char *p, *buf;
|
|
|
|
ssize_t bytes;
|
|
|
|
|
2014-10-22 22:22:34 +00:00
|
|
|
if (is_omap_iommu_detached(obj))
|
|
|
|
return -EPERM;
|
|
|
|
|
2009-08-28 17:54:41 +00:00
|
|
|
buf = kmalloc(count, GFP_KERNEL);
|
|
|
|
if (!buf)
|
|
|
|
return -ENOMEM;
|
|
|
|
p = buf;
|
|
|
|
|
|
|
|
mutex_lock(&iommu_debug_lock);
|
|
|
|
|
2011-08-17 19:57:56 +00:00
|
|
|
bytes = omap_iommu_dump_ctx(obj, p, count);
|
2020-07-14 19:22:11 +00:00
|
|
|
if (bytes < 0)
|
|
|
|
goto err;
|
2009-08-28 17:54:41 +00:00
|
|
|
bytes = simple_read_from_buffer(userbuf, count, ppos, buf, bytes);
|
|
|
|
|
2020-07-14 19:22:11 +00:00
|
|
|
err:
|
2009-08-28 17:54:41 +00:00
|
|
|
mutex_unlock(&iommu_debug_lock);
|
|
|
|
kfree(buf);
|
|
|
|
|
|
|
|
return bytes;
|
|
|
|
}
|
|
|
|
|
2015-07-20 22:33:25 +00:00
|
|
|
static int
|
|
|
|
__dump_tlb_entries(struct omap_iommu *obj, struct cr_regs *crs, int num)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct iotlb_lock saved;
|
|
|
|
struct cr_regs tmp;
|
|
|
|
struct cr_regs *p = crs;
|
|
|
|
|
|
|
|
pm_runtime_get_sync(obj->dev);
|
|
|
|
iotlb_lock_get(obj, &saved);
|
|
|
|
|
|
|
|
for_each_iotlb_cr(obj, num, i, tmp) {
|
|
|
|
if (!iotlb_cr_valid(&tmp))
|
|
|
|
continue;
|
|
|
|
*p++ = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
iotlb_lock_set(obj, &saved);
|
|
|
|
pm_runtime_put_sync(obj->dev);
|
|
|
|
|
|
|
|
return p - crs;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t iotlb_dump_cr(struct omap_iommu *obj, struct cr_regs *cr,
|
2015-07-23 12:26:19 +00:00
|
|
|
struct seq_file *s)
|
2015-07-20 22:33:25 +00:00
|
|
|
{
|
2015-09-11 20:07:48 +00:00
|
|
|
seq_printf(s, "%08x %08x %01x\n", cr->cam, cr->ram,
|
2016-04-04 22:46:21 +00:00
|
|
|
(cr->cam & MMU_CAM_P) ? 1 : 0);
|
2015-09-11 20:07:48 +00:00
|
|
|
return 0;
|
2015-07-20 22:33:25 +00:00
|
|
|
}
|
|
|
|
|
2015-07-23 12:26:19 +00:00
|
|
|
static size_t omap_dump_tlb_entries(struct omap_iommu *obj, struct seq_file *s)
|
2015-07-20 22:33:25 +00:00
|
|
|
{
|
|
|
|
int i, num;
|
|
|
|
struct cr_regs *cr;
|
|
|
|
|
2015-07-23 12:26:19 +00:00
|
|
|
num = obj->nr_tlb_entries;
|
2015-07-20 22:33:25 +00:00
|
|
|
|
|
|
|
cr = kcalloc(num, sizeof(*cr), GFP_KERNEL);
|
|
|
|
if (!cr)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
num = __dump_tlb_entries(obj, cr, num);
|
|
|
|
for (i = 0; i < num; i++)
|
2015-07-23 12:26:19 +00:00
|
|
|
iotlb_dump_cr(obj, cr + i, s);
|
2015-07-20 22:33:25 +00:00
|
|
|
kfree(cr);
|
|
|
|
|
2015-07-23 12:26:19 +00:00
|
|
|
return 0;
|
2015-07-20 22:33:25 +00:00
|
|
|
}
|
|
|
|
|
2018-11-22 13:54:43 +00:00
|
|
|
static int tlb_show(struct seq_file *s, void *data)
|
2009-08-28 17:54:41 +00:00
|
|
|
{
|
2015-07-23 12:26:19 +00:00
|
|
|
struct omap_iommu *obj = s->private;
|
2009-08-28 17:54:41 +00:00
|
|
|
|
2014-10-22 22:22:34 +00:00
|
|
|
if (is_omap_iommu_detached(obj))
|
|
|
|
return -EPERM;
|
|
|
|
|
2009-08-28 17:54:41 +00:00
|
|
|
mutex_lock(&iommu_debug_lock);
|
|
|
|
|
2015-07-23 12:26:19 +00:00
|
|
|
seq_printf(s, "%8s %8s\n", "cam:", "ram:");
|
|
|
|
seq_puts(s, "-----------------------------------------\n");
|
|
|
|
omap_dump_tlb_entries(obj, s);
|
2009-08-28 17:54:41 +00:00
|
|
|
|
|
|
|
mutex_unlock(&iommu_debug_lock);
|
|
|
|
|
2015-07-23 12:26:19 +00:00
|
|
|
return 0;
|
2009-08-28 17:54:41 +00:00
|
|
|
}
|
|
|
|
|
2014-10-22 22:22:35 +00:00
|
|
|
static void dump_ioptable(struct seq_file *s)
|
2009-08-28 17:54:41 +00:00
|
|
|
{
|
2014-10-22 22:22:35 +00:00
|
|
|
int i, j;
|
|
|
|
u32 da;
|
|
|
|
u32 *iopgd, *iopte;
|
|
|
|
struct omap_iommu *obj = s->private;
|
2009-08-28 17:54:41 +00:00
|
|
|
|
|
|
|
spin_lock(&obj->page_table_lock);
|
|
|
|
|
|
|
|
iopgd = iopgd_offset(obj, 0);
|
|
|
|
for (i = 0; i < PTRS_PER_IOPGD; i++, iopgd++) {
|
|
|
|
if (!*iopgd)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!(*iopgd & IOPGD_TABLE)) {
|
|
|
|
da = i << IOPGD_SHIFT;
|
2014-10-22 22:22:35 +00:00
|
|
|
seq_printf(s, "1: 0x%08x 0x%08x\n", da, *iopgd);
|
2009-08-28 17:54:41 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
iopte = iopte_offset(iopgd, 0);
|
|
|
|
for (j = 0; j < PTRS_PER_IOPTE; j++, iopte++) {
|
|
|
|
if (!*iopte)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
da = (i << IOPGD_SHIFT) + (j << IOPTE_SHIFT);
|
2014-10-22 22:22:35 +00:00
|
|
|
seq_printf(s, "2: 0x%08x 0x%08x\n", da, *iopte);
|
2009-08-28 17:54:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-22 22:22:35 +00:00
|
|
|
spin_unlock(&obj->page_table_lock);
|
2009-08-28 17:54:41 +00:00
|
|
|
}
|
|
|
|
|
2018-11-22 13:54:43 +00:00
|
|
|
static int pagetable_show(struct seq_file *s, void *data)
|
2009-08-28 17:54:41 +00:00
|
|
|
{
|
2014-10-22 22:22:35 +00:00
|
|
|
struct omap_iommu *obj = s->private;
|
2009-08-28 17:54:41 +00:00
|
|
|
|
2014-10-22 22:22:34 +00:00
|
|
|
if (is_omap_iommu_detached(obj))
|
|
|
|
return -EPERM;
|
|
|
|
|
2009-08-28 17:54:41 +00:00
|
|
|
mutex_lock(&iommu_debug_lock);
|
|
|
|
|
2014-10-22 22:22:35 +00:00
|
|
|
seq_printf(s, "L: %8s %8s\n", "da:", "pte:");
|
|
|
|
seq_puts(s, "--------------------------\n");
|
|
|
|
dump_ioptable(s);
|
2009-08-28 17:54:41 +00:00
|
|
|
|
|
|
|
mutex_unlock(&iommu_debug_lock);
|
|
|
|
|
2014-10-22 22:22:35 +00:00
|
|
|
return 0;
|
2009-08-28 17:54:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define DEBUG_FOPS_RO(name) \
|
2018-11-22 13:54:43 +00:00
|
|
|
static const struct file_operations name##_fops = { \
|
2012-04-05 21:25:11 +00:00
|
|
|
.open = simple_open, \
|
2009-08-28 17:54:41 +00:00
|
|
|
.read = debug_read_##name, \
|
2010-07-06 17:16:33 +00:00
|
|
|
.llseek = generic_file_llseek, \
|
2015-07-20 22:33:28 +00:00
|
|
|
}
|
2009-08-28 17:54:41 +00:00
|
|
|
|
|
|
|
DEBUG_FOPS_RO(regs);
|
2018-11-22 13:54:43 +00:00
|
|
|
DEFINE_SHOW_ATTRIBUTE(tlb);
|
|
|
|
DEFINE_SHOW_ATTRIBUTE(pagetable);
|
2009-08-28 17:54:41 +00:00
|
|
|
|
2014-10-22 22:22:30 +00:00
|
|
|
void omap_iommu_debugfs_add(struct omap_iommu *obj)
|
2009-08-28 17:54:41 +00:00
|
|
|
{
|
2014-10-22 22:22:30 +00:00
|
|
|
struct dentry *d;
|
2012-02-22 08:52:51 +00:00
|
|
|
|
2014-10-22 22:22:30 +00:00
|
|
|
if (!iommu_debug_root)
|
|
|
|
return;
|
2012-02-22 08:52:51 +00:00
|
|
|
|
2019-07-04 14:36:49 +00:00
|
|
|
d = debugfs_create_dir(obj->name, iommu_debug_root);
|
|
|
|
obj->debug_dir = d;
|
2009-08-28 17:54:41 +00:00
|
|
|
|
2019-07-04 14:36:49 +00:00
|
|
|
debugfs_create_u32("nr_tlb_entries", 0400, d, &obj->nr_tlb_entries);
|
|
|
|
debugfs_create_file("regs", 0400, d, obj, ®s_fops);
|
|
|
|
debugfs_create_file("tlb", 0400, d, obj, &tlb_fops);
|
|
|
|
debugfs_create_file("pagetable", 0400, d, obj, &pagetable_fops);
|
2012-02-22 08:52:51 +00:00
|
|
|
}
|
|
|
|
|
2014-10-22 22:22:30 +00:00
|
|
|
void omap_iommu_debugfs_remove(struct omap_iommu *obj)
|
2012-02-22 08:52:51 +00:00
|
|
|
{
|
2014-10-22 22:22:30 +00:00
|
|
|
if (!obj->debug_dir)
|
|
|
|
return;
|
2012-02-22 08:52:51 +00:00
|
|
|
|
2014-10-22 22:22:30 +00:00
|
|
|
debugfs_remove_recursive(obj->debug_dir);
|
2009-08-28 17:54:41 +00:00
|
|
|
}
|
|
|
|
|
2014-10-22 22:22:30 +00:00
|
|
|
void __init omap_iommu_debugfs_init(void)
|
2009-08-28 17:54:41 +00:00
|
|
|
{
|
2014-10-22 22:22:30 +00:00
|
|
|
iommu_debug_root = debugfs_create_dir("omap_iommu", NULL);
|
2009-08-28 17:54:41 +00:00
|
|
|
}
|
|
|
|
|
2014-10-22 22:22:30 +00:00
|
|
|
void __exit omap_iommu_debugfs_exit(void)
|
2009-08-28 17:54:41 +00:00
|
|
|
{
|
2014-10-22 22:22:30 +00:00
|
|
|
debugfs_remove(iommu_debug_root);
|
2009-08-28 17:54:41 +00:00
|
|
|
}
|