forked from rrcarlosr/Jetpack
230 lines
6.4 KiB
C
230 lines
6.4 KiB
C
/*
|
|
* drivers/misc/tegra-profiler/quadd_proc.c
|
|
*
|
|
* Copyright (c) 2014-2020, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
*/
|
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
#include <linux/proc_fs.h>
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/tegra_profiler.h>
|
|
|
|
#include "quadd.h"
|
|
#include "version.h"
|
|
#include "quadd_proc.h"
|
|
#include "arm_pmu.h"
|
|
|
|
#define YES_NO(x) ((x) ? "yes" : "no")
|
|
|
|
static struct quadd_ctx *ctx;
|
|
|
|
#define QUADD_PROC_DEV QUADD_DEVICE_NAME
|
|
|
|
static int show_version(struct seq_file *f, void *offset)
|
|
{
|
|
seq_printf(f, "version: %s\n", QUADD_MODULE_VERSION);
|
|
seq_printf(f, "branch: %s\n", QUADD_MODULE_BRANCH);
|
|
seq_printf(f, "samples version: %d\n", QUADD_SAMPLES_VERSION);
|
|
seq_printf(f, "io version: %d\n", QUADD_IO_VERSION);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int show_version_proc_open(struct inode *inode, struct file *file)
|
|
{
|
|
return single_open(file, show_version, NULL);
|
|
}
|
|
|
|
static const struct file_operations version_proc_fops = {
|
|
.open = show_version_proc_open,
|
|
.read = seq_read,
|
|
.llseek = seq_lseek,
|
|
.release = single_release,
|
|
};
|
|
|
|
static int show_capabilities(struct seq_file *f, void *offset)
|
|
{
|
|
int cpuid, i;
|
|
const char *name;
|
|
struct quadd_comm_cap *cap = &ctx->cap;
|
|
unsigned int extra = cap->reserved[QUADD_COMM_CAP_IDX_EXTRA];
|
|
const struct quadd_arch_info *arch = NULL;
|
|
struct quadd_event_source *pmu, *carmel_pmu;
|
|
|
|
seq_printf(f, "pmu: %s\n",
|
|
YES_NO(cap->pmu));
|
|
seq_printf(f, "tegra 3 LP cluster: %s\n",
|
|
YES_NO(cap->tegra_lp_cluster));
|
|
seq_printf(f, "power rate samples: %s\n",
|
|
YES_NO(cap->power_rate));
|
|
seq_printf(f, "collect cpufreq: %s\n",
|
|
YES_NO(extra & QUADD_COMM_CAP_EXTRA_CPUFREQ));
|
|
seq_printf(f, "arch timer is available: %s\n",
|
|
YES_NO(extra & QUADD_COMM_CAP_EXTRA_ARCH_TIMER));
|
|
seq_printf(f, "arch timer user access: %s\n",
|
|
YES_NO(extra & QUADD_COMM_CAP_EXTRA_ARCH_TIMER_USR));
|
|
|
|
pmu = ctx->pmu;
|
|
if (pmu) {
|
|
for_each_possible_cpu(cpuid) {
|
|
struct quadd_comm_cap_for_cpu *cpu_cap;
|
|
struct quadd_events_cap *event;
|
|
const char *format;
|
|
|
|
arch = pmu->get_arch(cpuid);
|
|
if (!arch)
|
|
continue;
|
|
|
|
cpu_cap = ctx->get_capabilities_for_cpu(cpuid);
|
|
event = &cpu_cap->events_cap;
|
|
|
|
seq_printf(f, "\nCPU %d\n", cpuid);
|
|
|
|
seq_printf(f, "pmu arch: %s\n",
|
|
arch->name);
|
|
if (arch->pmuver_is_set)
|
|
seq_printf(f, "pmu arch version: %u\n",
|
|
arch->pmuver);
|
|
|
|
seq_printf(f, "l2 cache: %s\n",
|
|
YES_NO(cpu_cap->l2_cache));
|
|
if (cap->l2_cache) {
|
|
seq_printf(f, "multiple l2 events: %s\n",
|
|
YES_NO(cpu_cap->l2_multiple_events));
|
|
}
|
|
|
|
name = "hardware";
|
|
format = " %s/%-22s %s\n";
|
|
|
|
seq_puts(f, "Supported events:\n");
|
|
seq_printf(f, format, name, "cpu_cycles",
|
|
YES_NO(event->cpu_cycles));
|
|
seq_printf(f, format, name, "instructions",
|
|
YES_NO(event->instructions));
|
|
seq_printf(f, format, name, "branch_instructions",
|
|
YES_NO(event->branch_instructions));
|
|
seq_printf(f, format, name, "branch_misses",
|
|
YES_NO(event->branch_misses));
|
|
seq_printf(f, format, name, "bus_cycles",
|
|
YES_NO(event->bus_cycles));
|
|
seq_printf(f, format, name, "l1_dcache_read_misses",
|
|
YES_NO(event->l1_dcache_read_misses));
|
|
seq_printf(f, format, name, "l1_dcache_write_misses",
|
|
YES_NO(event->l1_dcache_write_misses));
|
|
seq_printf(f, format, name, "l1_icache_misses",
|
|
YES_NO(event->l1_icache_misses));
|
|
seq_printf(f, format, name, "l2_dcache_read_misses",
|
|
YES_NO(event->l2_dcache_read_misses));
|
|
seq_printf(f, format, name, "l2_dcache_write_misses",
|
|
YES_NO(event->l2_dcache_write_misses));
|
|
seq_printf(f, format, name, "l2_icache_misses",
|
|
YES_NO(event->l2_icache_misses));
|
|
|
|
seq_printf(f, "raw_event_mask: %#x\n",
|
|
event->raw_event_mask);
|
|
}
|
|
}
|
|
|
|
carmel_pmu = ctx->carmel_pmu;
|
|
if (carmel_pmu) {
|
|
const char *name = carmel_pmu->name;
|
|
const struct quadd_pmu_cntr_info **cntrs, *e;
|
|
|
|
seq_puts(f, "\n");
|
|
seq_puts(f, "Carmel Uncore PMU\n");
|
|
seq_puts(f, "Supported events:\n");
|
|
|
|
cntrs = carmel_pmu->pmu_cntrs;
|
|
|
|
i = 0;
|
|
while ((e = cntrs[i++]))
|
|
seq_printf(f, " %s/%-20s %#x\n", name, e->name, e->id);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int show_capabilities_proc_open(struct inode *inode, struct file *file)
|
|
{
|
|
int err;
|
|
|
|
err = quadd_late_init();
|
|
if (err < 0)
|
|
return err;
|
|
|
|
return single_open(file, show_capabilities, NULL);
|
|
}
|
|
|
|
static const struct file_operations capabilities_proc_fops = {
|
|
.open = show_capabilities_proc_open,
|
|
.read = seq_read,
|
|
.llseek = seq_lseek,
|
|
.release = single_release,
|
|
};
|
|
|
|
static int show_status(struct seq_file *f, void *offset)
|
|
{
|
|
unsigned int status;
|
|
unsigned int is_auth_open, active;
|
|
struct quadd_module_state s;
|
|
|
|
quadd_get_state(&s);
|
|
status = s.reserved[QUADD_MOD_STATE_IDX_STATUS];
|
|
|
|
active = status & QUADD_MOD_STATE_STATUS_IS_ACTIVE;
|
|
is_auth_open = status & QUADD_MOD_STATE_STATUS_IS_AUTH_OPEN;
|
|
|
|
seq_printf(f, "status: %s\n", active ? "active" : "waiting");
|
|
seq_printf(f, "auth: %s\n", YES_NO(is_auth_open));
|
|
seq_printf(f, "all samples: %llu\n", s.nr_all_samples);
|
|
seq_printf(f, "skipped samples: %llu\n", s.nr_skipped_samples);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int show_status_proc_open(struct inode *inode, struct file *file)
|
|
{
|
|
return single_open(file, show_status, NULL);
|
|
}
|
|
|
|
static const struct file_operations status_proc_fops = {
|
|
.open = show_status_proc_open,
|
|
.read = seq_read,
|
|
.llseek = seq_lseek,
|
|
.release = single_release,
|
|
};
|
|
|
|
void quadd_proc_init(struct quadd_ctx *context)
|
|
{
|
|
ctx = context;
|
|
|
|
proc_mkdir(QUADD_PROC_DEV, NULL);
|
|
|
|
proc_create(QUADD_PROC_DEV "/version", 0, NULL, &version_proc_fops);
|
|
proc_create(QUADD_PROC_DEV "/capabilities", 0, NULL,
|
|
&capabilities_proc_fops);
|
|
proc_create(QUADD_PROC_DEV "/status", 0, NULL, &status_proc_fops);
|
|
}
|
|
|
|
void quadd_proc_deinit(void)
|
|
{
|
|
remove_proc_entry(QUADD_PROC_DEV "/version", NULL);
|
|
remove_proc_entry(QUADD_PROC_DEV "/capabilities", NULL);
|
|
remove_proc_entry(QUADD_PROC_DEV "/status", NULL);
|
|
remove_proc_entry(QUADD_PROC_DEV, NULL);
|
|
}
|
|
|
|
#endif /* CONFIG_PROC_FS */
|