2018-05-10 02:06:04 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2014, The Linux Foundation. All rights reserved.
|
2015-05-14 00:34:09 +08:00
|
|
|
*/
|
|
|
|
|
2020-12-09 02:26:51 +08:00
|
|
|
#include <linux/bitops.h>
|
2015-05-14 00:34:09 +08:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/moduleparam.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/smp.h>
|
|
|
|
#include <linux/sysfs.h>
|
|
|
|
#include <linux/stat.h>
|
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/cpu.h>
|
2019-11-05 02:12:38 +08:00
|
|
|
#include <linux/cpu_pm.h>
|
2015-05-14 00:34:09 +08:00
|
|
|
#include <linux/coresight.h>
|
2016-04-06 01:53:45 +08:00
|
|
|
#include <linux/coresight-pmu.h>
|
2015-05-14 00:34:09 +08:00
|
|
|
#include <linux/pm_wakeup.h>
|
|
|
|
#include <linux/amba/bus.h>
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/uaccess.h>
|
2016-04-06 01:53:49 +08:00
|
|
|
#include <linux/perf_event.h>
|
2021-02-02 02:13:47 +08:00
|
|
|
#include <linux/platform_device.h>
|
2015-05-14 00:34:09 +08:00
|
|
|
#include <linux/pm_runtime.h>
|
2019-11-05 02:12:38 +08:00
|
|
|
#include <linux/property.h>
|
2020-12-09 02:26:51 +08:00
|
|
|
|
2021-04-06 00:42:55 +08:00
|
|
|
#include <asm/barrier.h>
|
2015-05-14 00:34:09 +08:00
|
|
|
#include <asm/sections.h>
|
2020-12-09 02:26:51 +08:00
|
|
|
#include <asm/sysreg.h>
|
2016-04-06 01:53:47 +08:00
|
|
|
#include <asm/local.h>
|
2018-09-21 03:18:00 +08:00
|
|
|
#include <asm/virt.h>
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
#include "coresight-etm4x.h"
|
2016-04-06 01:53:49 +08:00
|
|
|
#include "coresight-etm-perf.h"
|
2021-08-19 03:40:18 +08:00
|
|
|
#include "coresight-etm4x-cfg.h"
|
2021-09-14 18:26:32 +08:00
|
|
|
#include "coresight-self-hosted-trace.h"
|
2021-08-19 03:40:18 +08:00
|
|
|
#include "coresight-syscfg.h"
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
static int boot_enable;
|
2019-08-30 04:28:36 +08:00
|
|
|
module_param(boot_enable, int, 0444);
|
|
|
|
MODULE_PARM_DESC(boot_enable, "Enable tracing on boot");
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2019-11-05 02:12:38 +08:00
|
|
|
#define PARAM_PM_SAVE_FIRMWARE 0 /* save self-hosted state as per firmware */
|
|
|
|
#define PARAM_PM_SAVE_NEVER 1 /* never save any state */
|
|
|
|
#define PARAM_PM_SAVE_SELF_HOSTED 2 /* save self-hosted state only */
|
|
|
|
|
|
|
|
static int pm_save_enable = PARAM_PM_SAVE_FIRMWARE;
|
|
|
|
module_param(pm_save_enable, int, 0444);
|
|
|
|
MODULE_PARM_DESC(pm_save_enable,
|
|
|
|
"Save/restore state on power down: 1 = never, 2 = self-hosted");
|
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
static struct etmv4_drvdata *etmdrvdata[NR_CPUS];
|
2016-08-26 05:19:17 +08:00
|
|
|
static void etm4_set_default_config(struct etmv4_config *config);
|
|
|
|
static int etm4_set_event_filters(struct etmv4_drvdata *drvdata,
|
|
|
|
struct perf_event *event);
|
2020-09-17 03:17:28 +08:00
|
|
|
static u64 etm4_get_access_type(struct etmv4_config *config);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2016-07-14 01:16:55 +08:00
|
|
|
static enum cpuhp_state hp_online;
|
|
|
|
|
2021-02-02 02:13:40 +08:00
|
|
|
struct etm4_init_arg {
|
2021-02-02 02:13:46 +08:00
|
|
|
unsigned int pid;
|
2021-02-02 02:13:40 +08:00
|
|
|
struct etmv4_drvdata *drvdata;
|
|
|
|
struct csdev_access *csa;
|
|
|
|
};
|
|
|
|
|
2021-02-02 02:13:23 +08:00
|
|
|
/*
|
|
|
|
* Check if TRCSSPCICRn(i) is implemented for a given instance.
|
|
|
|
*
|
|
|
|
* TRCSSPCICRn is implemented only if :
|
|
|
|
* TRCSSPCICR<n> is present only if all of the following are true:
|
|
|
|
* TRCIDR4.NUMSSCC > n.
|
|
|
|
* TRCIDR4.NUMPC > 0b0000 .
|
|
|
|
* TRCSSCSR<n>.PC == 0b1
|
|
|
|
*/
|
|
|
|
static inline bool etm4x_sspcicrn_present(struct etmv4_drvdata *drvdata, int n)
|
|
|
|
{
|
|
|
|
return (n < drvdata->nr_ss_cmp) &&
|
|
|
|
drvdata->nr_pe &&
|
|
|
|
(drvdata->config.ss_status[n] & TRCSSCSRn_PC);
|
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:33 +08:00
|
|
|
u64 etm4x_sysreg_read(u32 offset, bool _relaxed, bool _64bit)
|
|
|
|
{
|
|
|
|
u64 res = 0;
|
|
|
|
|
|
|
|
switch (offset) {
|
|
|
|
ETM4x_READ_SYSREG_CASES(res)
|
|
|
|
default :
|
|
|
|
pr_warn_ratelimited("etm4x: trying to read unsupported register @%x\n",
|
|
|
|
offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_relaxed)
|
|
|
|
__iormb(res); /* Imitate the !relaxed I/O helpers */
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void etm4x_sysreg_write(u64 val, u32 offset, bool _relaxed, bool _64bit)
|
|
|
|
{
|
|
|
|
if (!_relaxed)
|
|
|
|
__iowmb(); /* Imitate the !relaxed I/O helpers */
|
|
|
|
if (!_64bit)
|
|
|
|
val &= GENMASK(31, 0);
|
|
|
|
|
|
|
|
switch (offset) {
|
|
|
|
ETM4x_WRITE_SYSREG_CASES(val)
|
|
|
|
default :
|
|
|
|
pr_warn_ratelimited("etm4x: trying to write to unsupported register @%x\n",
|
|
|
|
offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-06 00:42:59 +08:00
|
|
|
static u64 ete_sysreg_read(u32 offset, bool _relaxed, bool _64bit)
|
2015-05-14 00:34:09 +08:00
|
|
|
{
|
2021-04-06 00:42:59 +08:00
|
|
|
u64 res = 0;
|
|
|
|
|
|
|
|
switch (offset) {
|
|
|
|
ETE_READ_CASES(res)
|
|
|
|
default :
|
|
|
|
pr_warn_ratelimited("ete: trying to read unsupported register @%x\n",
|
|
|
|
offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_relaxed)
|
|
|
|
__iormb(res); /* Imitate the !relaxed I/O helpers */
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ete_sysreg_write(u64 val, u32 offset, bool _relaxed, bool _64bit)
|
|
|
|
{
|
|
|
|
if (!_relaxed)
|
|
|
|
__iowmb(); /* Imitate the !relaxed I/O helpers */
|
|
|
|
if (!_64bit)
|
|
|
|
val &= GENMASK(31, 0);
|
|
|
|
|
|
|
|
switch (offset) {
|
|
|
|
ETE_WRITE_CASES(val)
|
|
|
|
default :
|
|
|
|
pr_warn_ratelimited("ete: trying to write to unsupported register @%x\n",
|
|
|
|
offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-06 00:42:58 +08:00
|
|
|
static void etm_detect_os_lock(struct etmv4_drvdata *drvdata,
|
|
|
|
struct csdev_access *csa)
|
2015-05-14 00:34:09 +08:00
|
|
|
{
|
2021-04-06 00:42:58 +08:00
|
|
|
u32 oslsr = etm4x_relaxed_read32(csa, TRCOSLSR);
|
|
|
|
|
|
|
|
drvdata->os_lock_model = ETM_OSLSR_OSLM(oslsr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void etm_write_os_lock(struct etmv4_drvdata *drvdata,
|
|
|
|
struct csdev_access *csa, u32 val)
|
|
|
|
{
|
|
|
|
val = !!val;
|
|
|
|
|
|
|
|
switch (drvdata->os_lock_model) {
|
|
|
|
case ETM_OSLOCK_PRESENT:
|
|
|
|
etm4x_relaxed_write32(csa, val, TRCOSLAR);
|
|
|
|
break;
|
|
|
|
case ETM_OSLOCK_PE:
|
|
|
|
write_sysreg_s(val, SYS_OSLAR_EL1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pr_warn_once("CPU%d: Unsupported Trace OSLock model: %x\n",
|
|
|
|
smp_processor_id(), drvdata->os_lock_model);
|
|
|
|
fallthrough;
|
|
|
|
case ETM_OSLOCK_NI:
|
|
|
|
return;
|
|
|
|
}
|
2015-05-14 00:34:09 +08:00
|
|
|
isb();
|
|
|
|
}
|
|
|
|
|
2021-04-06 00:42:58 +08:00
|
|
|
static inline void etm4_os_unlock_csa(struct etmv4_drvdata *drvdata,
|
|
|
|
struct csdev_access *csa)
|
|
|
|
{
|
|
|
|
WARN_ON(drvdata->cpu != smp_processor_id());
|
|
|
|
|
|
|
|
/* Writing 0 to OS Lock unlocks the trace unit registers */
|
|
|
|
etm_write_os_lock(drvdata, csa, 0x0);
|
|
|
|
drvdata->os_unlock = true;
|
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
static void etm4_os_unlock(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
|
|
|
if (!WARN_ON(!drvdata->csdev))
|
|
|
|
etm4_os_unlock_csa(drvdata, &drvdata->csdev->access);
|
|
|
|
}
|
|
|
|
|
2019-11-05 02:12:38 +08:00
|
|
|
static void etm4_os_lock(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
2021-02-02 02:13:30 +08:00
|
|
|
if (WARN_ON(!drvdata->csdev))
|
|
|
|
return;
|
2021-04-06 00:42:58 +08:00
|
|
|
/* Writing 0x1 to OS Lock locks the trace registers */
|
|
|
|
etm_write_os_lock(drvdata, &drvdata->csdev->access, 0x1);
|
2019-11-05 02:12:38 +08:00
|
|
|
drvdata->os_unlock = false;
|
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:36 +08:00
|
|
|
static void etm4_cs_lock(struct etmv4_drvdata *drvdata,
|
|
|
|
struct csdev_access *csa)
|
|
|
|
{
|
|
|
|
/* Software Lock is only accessible via memory mapped interface */
|
|
|
|
if (csa->io_mem)
|
|
|
|
CS_LOCK(csa->base);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void etm4_cs_unlock(struct etmv4_drvdata *drvdata,
|
|
|
|
struct csdev_access *csa)
|
|
|
|
{
|
|
|
|
if (csa->io_mem)
|
|
|
|
CS_UNLOCK(csa->base);
|
|
|
|
}
|
|
|
|
|
2016-02-03 05:14:01 +08:00
|
|
|
static int etm4_cpu_id(struct coresight_device *csdev)
|
|
|
|
{
|
|
|
|
struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
|
|
|
|
|
|
|
|
return drvdata->cpu;
|
|
|
|
}
|
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
static int etm4_trace_id(struct coresight_device *csdev)
|
|
|
|
{
|
|
|
|
struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
|
|
|
|
|
2016-08-26 05:18:53 +08:00
|
|
|
return drvdata->trcid;
|
2015-05-14 00:34:09 +08:00
|
|
|
}
|
|
|
|
|
2018-09-21 03:18:07 +08:00
|
|
|
struct etm4_enable_arg {
|
|
|
|
struct etmv4_drvdata *drvdata;
|
|
|
|
int rc;
|
|
|
|
};
|
|
|
|
|
2021-09-14 18:26:33 +08:00
|
|
|
/*
|
|
|
|
* etm4x_prohibit_trace - Prohibit the CPU from tracing at all ELs.
|
|
|
|
* When the CPU supports FEAT_TRF, we could move the ETM to a trace
|
|
|
|
* prohibited state by filtering the Exception levels via TRFCR_EL1.
|
|
|
|
*/
|
|
|
|
static void etm4x_prohibit_trace(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
|
|
|
/* If the CPU doesn't support FEAT_TRF, nothing to do */
|
|
|
|
if (!drvdata->trfcr)
|
|
|
|
return;
|
|
|
|
cpu_prohibit_trace();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* etm4x_allow_trace - Allow CPU tracing in the respective ELs,
|
|
|
|
* as configured by the drvdata->config.mode for the current
|
|
|
|
* session. Even though we have TRCVICTLR bits to filter the
|
|
|
|
* trace in the ELs, it doesn't prevent the ETM from generating
|
|
|
|
* a packet (e.g, TraceInfo) that might contain the addresses from
|
|
|
|
* the excluded levels. Thus we use the additional controls provided
|
|
|
|
* via the Trace Filtering controls (FEAT_TRF) to make sure no trace
|
|
|
|
* is generated for the excluded ELs.
|
|
|
|
*/
|
|
|
|
static void etm4x_allow_trace(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
|
|
|
u64 trfcr = drvdata->trfcr;
|
|
|
|
|
|
|
|
/* If the CPU doesn't support FEAT_TRF, nothing to do */
|
|
|
|
if (!trfcr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (drvdata->config.mode & ETM_MODE_EXCL_KERN)
|
|
|
|
trfcr &= ~TRFCR_ELx_ExTRE;
|
|
|
|
if (drvdata->config.mode & ETM_MODE_EXCL_USER)
|
|
|
|
trfcr &= ~TRFCR_ELx_E0TRE;
|
|
|
|
|
|
|
|
write_trfcr(trfcr);
|
|
|
|
}
|
|
|
|
|
2020-12-09 02:26:51 +08:00
|
|
|
#ifdef CONFIG_ETM4X_IMPDEF_FEATURE
|
|
|
|
|
|
|
|
#define HISI_HIP08_AMBA_ID 0x000b6d01
|
|
|
|
#define ETM4_AMBA_MASK 0xfffff
|
|
|
|
#define HISI_HIP08_CORE_COMMIT_MASK 0x3000
|
|
|
|
#define HISI_HIP08_CORE_COMMIT_SHIFT 12
|
|
|
|
#define HISI_HIP08_CORE_COMMIT_FULL 0b00
|
|
|
|
#define HISI_HIP08_CORE_COMMIT_LVL_1 0b01
|
|
|
|
#define HISI_HIP08_CORE_COMMIT_REG sys_reg(3, 1, 15, 2, 5)
|
|
|
|
|
|
|
|
struct etm4_arch_features {
|
|
|
|
void (*arch_callback)(bool enable);
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool etm4_hisi_match_pid(unsigned int id)
|
|
|
|
{
|
|
|
|
return (id & ETM4_AMBA_MASK) == HISI_HIP08_AMBA_ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void etm4_hisi_config_core_commit(bool enable)
|
|
|
|
{
|
|
|
|
u8 commit = enable ? HISI_HIP08_CORE_COMMIT_LVL_1 :
|
|
|
|
HISI_HIP08_CORE_COMMIT_FULL;
|
|
|
|
u64 val;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* bit 12 and 13 of HISI_HIP08_CORE_COMMIT_REG are used together
|
|
|
|
* to set core-commit, 2'b00 means cpu is at full speed, 2'b01,
|
|
|
|
* 2'b10, 2'b11 mean reduce pipeline speed, and 2'b01 means level-1
|
|
|
|
* speed(minimun value). So bit 12 and 13 should be cleared together.
|
|
|
|
*/
|
|
|
|
val = read_sysreg_s(HISI_HIP08_CORE_COMMIT_REG);
|
|
|
|
val &= ~HISI_HIP08_CORE_COMMIT_MASK;
|
|
|
|
val |= commit << HISI_HIP08_CORE_COMMIT_SHIFT;
|
|
|
|
write_sysreg_s(val, HISI_HIP08_CORE_COMMIT_REG);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct etm4_arch_features etm4_features[] = {
|
|
|
|
[ETM4_IMPDEF_HISI_CORE_COMMIT] = {
|
|
|
|
.arch_callback = etm4_hisi_config_core_commit,
|
|
|
|
},
|
|
|
|
{},
|
|
|
|
};
|
|
|
|
|
|
|
|
static void etm4_enable_arch_specific(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
|
|
|
struct etm4_arch_features *ftr;
|
|
|
|
int bit;
|
|
|
|
|
|
|
|
for_each_set_bit(bit, drvdata->arch_features, ETM4_IMPDEF_FEATURE_MAX) {
|
|
|
|
ftr = &etm4_features[bit];
|
|
|
|
|
|
|
|
if (ftr->arch_callback)
|
|
|
|
ftr->arch_callback(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void etm4_disable_arch_specific(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
|
|
|
struct etm4_arch_features *ftr;
|
|
|
|
int bit;
|
|
|
|
|
|
|
|
for_each_set_bit(bit, drvdata->arch_features, ETM4_IMPDEF_FEATURE_MAX) {
|
|
|
|
ftr = &etm4_features[bit];
|
|
|
|
|
|
|
|
if (ftr->arch_callback)
|
|
|
|
ftr->arch_callback(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void etm4_check_arch_features(struct etmv4_drvdata *drvdata,
|
|
|
|
unsigned int id)
|
|
|
|
{
|
|
|
|
if (etm4_hisi_match_pid(id))
|
|
|
|
set_bit(ETM4_IMPDEF_HISI_CORE_COMMIT, drvdata->arch_features);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static void etm4_enable_arch_specific(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void etm4_disable_arch_specific(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void etm4_check_arch_features(struct etmv4_drvdata *drvdata,
|
|
|
|
unsigned int id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_ETM4X_IMPDEF_FEATURE */
|
|
|
|
|
2018-09-21 03:18:07 +08:00
|
|
|
static int etm4_enable_hw(struct etmv4_drvdata *drvdata)
|
2015-05-14 00:34:09 +08:00
|
|
|
{
|
2018-09-21 03:18:12 +08:00
|
|
|
int i, rc;
|
2016-04-06 01:53:44 +08:00
|
|
|
struct etmv4_config *config = &drvdata->config;
|
2021-02-02 02:13:27 +08:00
|
|
|
struct coresight_device *csdev = drvdata->csdev;
|
|
|
|
struct device *etm_dev = &csdev->dev;
|
|
|
|
struct csdev_access *csa = &csdev->access;
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2021-02-02 02:13:36 +08:00
|
|
|
|
|
|
|
etm4_cs_unlock(drvdata, csa);
|
2020-12-09 02:26:51 +08:00
|
|
|
etm4_enable_arch_specific(drvdata);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
etm4_os_unlock(drvdata);
|
|
|
|
|
2021-02-02 02:13:28 +08:00
|
|
|
rc = coresight_claim_device_unlocked(csdev);
|
2018-09-21 03:18:12 +08:00
|
|
|
if (rc)
|
|
|
|
goto done;
|
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
/* Disable the trace unit before programming trace registers */
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, 0, TRCPRGCTLR);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2021-02-02 02:13:43 +08:00
|
|
|
/*
|
|
|
|
* If we use system instructions, we need to synchronize the
|
|
|
|
* write to the TRCPRGCTLR, before accessing the TRCSTATR.
|
|
|
|
* See ARM IHI0064F, section
|
|
|
|
* "4.3.7 Synchronization of register updates"
|
|
|
|
*/
|
|
|
|
if (!csa->io_mem)
|
|
|
|
isb();
|
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
/* wait for TRCSTATR.IDLE to go up */
|
2021-02-02 02:13:27 +08:00
|
|
|
if (coresight_timeout(csa, TRCSTATR, TRCSTATR_IDLE_BIT, 1))
|
2019-06-20 01:29:16 +08:00
|
|
|
dev_err(etm_dev,
|
2016-08-26 05:19:00 +08:00
|
|
|
"timeout while waiting for Idle Trace Status\n");
|
2020-11-28 01:52:47 +08:00
|
|
|
if (drvdata->nr_pe)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, config->pe_sel, TRCPROCSELR);
|
|
|
|
etm4x_relaxed_write32(csa, config->cfg, TRCCONFIGR);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* nothing specific implemented */
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, 0x0, TRCAUXCTLR);
|
|
|
|
etm4x_relaxed_write32(csa, config->eventctrl0, TRCEVENTCTL0R);
|
|
|
|
etm4x_relaxed_write32(csa, config->eventctrl1, TRCEVENTCTL1R);
|
2021-02-02 02:13:51 +08:00
|
|
|
if (drvdata->stallctl)
|
|
|
|
etm4x_relaxed_write32(csa, config->stall_ctrl, TRCSTALLCTLR);
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, config->ts_ctrl, TRCTSCTLR);
|
|
|
|
etm4x_relaxed_write32(csa, config->syncfreq, TRCSYNCPR);
|
|
|
|
etm4x_relaxed_write32(csa, config->ccctlr, TRCCCCTLR);
|
|
|
|
etm4x_relaxed_write32(csa, config->bb_ctrl, TRCBBCTLR);
|
|
|
|
etm4x_relaxed_write32(csa, drvdata->trcid, TRCTRACEIDR);
|
|
|
|
etm4x_relaxed_write32(csa, config->vinst_ctrl, TRCVICTLR);
|
|
|
|
etm4x_relaxed_write32(csa, config->viiectlr, TRCVIIECTLR);
|
|
|
|
etm4x_relaxed_write32(csa, config->vissctlr, TRCVISSCTLR);
|
2020-11-28 01:52:48 +08:00
|
|
|
if (drvdata->nr_pe_cmp)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, config->vipcssctlr, TRCVIPCSSCTLR);
|
2015-05-14 00:34:09 +08:00
|
|
|
for (i = 0; i < drvdata->nrseqstate - 1; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, config->seq_ctrl[i], TRCSEQEVRn(i));
|
|
|
|
etm4x_relaxed_write32(csa, config->seq_rst, TRCSEQRSTEVR);
|
|
|
|
etm4x_relaxed_write32(csa, config->seq_state, TRCSEQSTR);
|
|
|
|
etm4x_relaxed_write32(csa, config->ext_inp, TRCEXTINSELR);
|
2015-05-14 00:34:09 +08:00
|
|
|
for (i = 0; i < drvdata->nr_cntr; i++) {
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, config->cntrldvr[i], TRCCNTRLDVRn(i));
|
|
|
|
etm4x_relaxed_write32(csa, config->cntr_ctrl[i], TRCCNTCTLRn(i));
|
|
|
|
etm4x_relaxed_write32(csa, config->cntr_val[i], TRCCNTVRn(i));
|
2015-05-14 00:34:09 +08:00
|
|
|
}
|
2015-10-07 23:26:38 +08:00
|
|
|
|
2019-04-26 03:52:53 +08:00
|
|
|
/*
|
|
|
|
* Resource selector pair 0 is always implemented and reserved. As
|
|
|
|
* such start at 2.
|
|
|
|
*/
|
|
|
|
for (i = 2; i < drvdata->nr_resource * 2; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, config->res_ctrl[i], TRCRSCTLRn(i));
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
for (i = 0; i < drvdata->nr_ss_cmp; i++) {
|
2019-11-05 02:12:48 +08:00
|
|
|
/* always clear status bit on restart if using single-shot */
|
|
|
|
if (config->ss_ctrl[i] || config->ss_pe_cmp[i])
|
|
|
|
config->ss_status[i] &= ~BIT(31);
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, config->ss_ctrl[i], TRCSSCCRn(i));
|
|
|
|
etm4x_relaxed_write32(csa, config->ss_status[i], TRCSSCSRn(i));
|
2021-02-02 02:13:23 +08:00
|
|
|
if (etm4x_sspcicrn_present(drvdata, i))
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, config->ss_pe_cmp[i], TRCSSPCICRn(i));
|
2015-05-14 00:34:09 +08:00
|
|
|
}
|
|
|
|
for (i = 0; i < drvdata->nr_addr_cmp; i++) {
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write64(csa, config->addr_val[i], TRCACVRn(i));
|
|
|
|
etm4x_relaxed_write64(csa, config->addr_acc[i], TRCACATRn(i));
|
2015-05-14 00:34:09 +08:00
|
|
|
}
|
|
|
|
for (i = 0; i < drvdata->numcidc; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write64(csa, config->ctxid_pid[i], TRCCIDCVRn(i));
|
|
|
|
etm4x_relaxed_write32(csa, config->ctxid_mask0, TRCCIDCCTLR0);
|
2020-11-28 01:52:45 +08:00
|
|
|
if (drvdata->numcidc > 4)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, config->ctxid_mask1, TRCCIDCCTLR1);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
for (i = 0; i < drvdata->numvmidc; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write64(csa, config->vmid_val[i], TRCVMIDCVRn(i));
|
|
|
|
etm4x_relaxed_write32(csa, config->vmid_mask0, TRCVMIDCCTLR0);
|
2020-11-28 01:52:44 +08:00
|
|
|
if (drvdata->numvmidc > 4)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, config->vmid_mask1, TRCVMIDCCTLR1);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2020-07-17 01:57:32 +08:00
|
|
|
if (!drvdata->skip_power_up) {
|
2021-02-02 02:13:30 +08:00
|
|
|
u32 trcpdcr = etm4x_relaxed_read32(csa, TRCPDCR);
|
|
|
|
|
2020-07-17 01:57:32 +08:00
|
|
|
/*
|
|
|
|
* Request to keep the trace unit powered and also
|
|
|
|
* emulation of powerdown
|
|
|
|
*/
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, trcpdcr | TRCPDCR_PU, TRCPDCR);
|
2020-07-17 01:57:32 +08:00
|
|
|
}
|
2016-08-26 05:19:08 +08:00
|
|
|
|
2021-04-06 00:43:00 +08:00
|
|
|
/*
|
|
|
|
* ETE mandates that the TRCRSR is written to before
|
|
|
|
* enabling it.
|
|
|
|
*/
|
|
|
|
if (etm4x_is_ete(drvdata))
|
|
|
|
etm4x_relaxed_write32(csa, TRCRSR_TA, TRCRSR);
|
|
|
|
|
2021-09-14 18:26:33 +08:00
|
|
|
etm4x_allow_trace(drvdata);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* Enable the trace unit */
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, 1, TRCPRGCTLR);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2021-02-02 02:13:43 +08:00
|
|
|
/* Synchronize the register updates for sysreg access */
|
|
|
|
if (!csa->io_mem)
|
|
|
|
isb();
|
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
/* wait for TRCSTATR.IDLE to go back down to '0' */
|
2021-02-02 02:13:27 +08:00
|
|
|
if (coresight_timeout(csa, TRCSTATR, TRCSTATR_IDLE_BIT, 0))
|
2019-06-20 01:29:16 +08:00
|
|
|
dev_err(etm_dev,
|
2016-08-26 05:19:00 +08:00
|
|
|
"timeout while waiting for Idle Trace Status\n");
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2019-08-30 04:28:35 +08:00
|
|
|
/*
|
|
|
|
* As recommended by section 4.3.7 ("Synchronization when using the
|
|
|
|
* memory-mapped interface") of ARM IHI 0064D
|
|
|
|
*/
|
|
|
|
dsb(sy);
|
|
|
|
isb();
|
|
|
|
|
2018-09-21 03:18:12 +08:00
|
|
|
done:
|
2021-02-02 02:13:36 +08:00
|
|
|
etm4_cs_lock(drvdata, csa);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2019-06-20 01:29:16 +08:00
|
|
|
dev_dbg(etm_dev, "cpu: %d enable smp call done: %d\n",
|
2018-09-21 03:18:12 +08:00
|
|
|
drvdata->cpu, rc);
|
|
|
|
return rc;
|
2018-09-21 03:18:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void etm4_enable_hw_smp_call(void *info)
|
|
|
|
{
|
|
|
|
struct etm4_enable_arg *arg = info;
|
|
|
|
|
|
|
|
if (WARN_ON(!arg))
|
|
|
|
return;
|
|
|
|
arg->rc = etm4_enable_hw(arg->drvdata);
|
2015-05-14 00:34:09 +08:00
|
|
|
}
|
|
|
|
|
2019-04-26 03:52:54 +08:00
|
|
|
/*
|
|
|
|
* The goal of function etm4_config_timestamp_event() is to configure a
|
|
|
|
* counter that will tell the tracer to emit a timestamp packet when it
|
|
|
|
* reaches zero. This is done in order to get a more fine grained idea
|
|
|
|
* of when instructions are executed so that they can be correlated
|
|
|
|
* with execution on other CPUs.
|
|
|
|
*
|
|
|
|
* To do this the counter itself is configured to self reload and
|
|
|
|
* TRCRSCTLR1 (always true) used to get the counter to decrement. From
|
|
|
|
* there a resource selector is configured with the counter and the
|
|
|
|
* timestamp control register to use the resource selector to trigger the
|
|
|
|
* event that will insert a timestamp packet in the stream.
|
|
|
|
*/
|
|
|
|
static int etm4_config_timestamp_event(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
|
|
|
int ctridx, ret = -EINVAL;
|
|
|
|
int counter, rselector;
|
|
|
|
u32 val = 0;
|
|
|
|
struct etmv4_config *config = &drvdata->config;
|
|
|
|
|
|
|
|
/* No point in trying if we don't have at least one counter */
|
|
|
|
if (!drvdata->nr_cntr)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* Find a counter that hasn't been initialised */
|
|
|
|
for (ctridx = 0; ctridx < drvdata->nr_cntr; ctridx++)
|
|
|
|
if (config->cntr_val[ctridx] == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* All the counters have been configured already, bail out */
|
|
|
|
if (ctridx == drvdata->nr_cntr) {
|
|
|
|
pr_debug("%s: no available counter found\n", __func__);
|
|
|
|
ret = -ENOSPC;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Searching for an available resource selector to use, starting at
|
|
|
|
* '2' since every implementation has at least 2 resource selector.
|
|
|
|
* ETMIDR4 gives the number of resource selector _pairs_,
|
|
|
|
* hence multiply by 2.
|
|
|
|
*/
|
|
|
|
for (rselector = 2; rselector < drvdata->nr_resource * 2; rselector++)
|
|
|
|
if (!config->res_ctrl[rselector])
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (rselector == drvdata->nr_resource * 2) {
|
|
|
|
pr_debug("%s: no available resource selector found\n",
|
|
|
|
__func__);
|
|
|
|
ret = -ENOSPC;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remember what counter we used */
|
|
|
|
counter = 1 << ctridx;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialise original and reload counter value to the smallest
|
|
|
|
* possible value in order to get as much precision as we can.
|
|
|
|
*/
|
|
|
|
config->cntr_val[ctridx] = 1;
|
|
|
|
config->cntrldvr[ctridx] = 1;
|
|
|
|
|
|
|
|
/* Set the trace counter control register */
|
|
|
|
val = 0x1 << 16 | /* Bit 16, reload counter automatically */
|
|
|
|
0x0 << 7 | /* Select single resource selector */
|
|
|
|
0x1; /* Resource selector 1, i.e always true */
|
|
|
|
|
|
|
|
config->cntr_ctrl[ctridx] = val;
|
|
|
|
|
|
|
|
val = 0x2 << 16 | /* Group 0b0010 - Counter and sequencers */
|
|
|
|
counter << 0; /* Counter to use */
|
|
|
|
|
|
|
|
config->res_ctrl[rselector] = val;
|
|
|
|
|
|
|
|
val = 0x0 << 7 | /* Select single resource selector */
|
|
|
|
rselector; /* Resource selector */
|
|
|
|
|
|
|
|
config->ts_ctrl = val;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-08-19 03:40:18 +08:00
|
|
|
static int etm4_parse_event_config(struct coresight_device *csdev,
|
2016-08-26 05:19:10 +08:00
|
|
|
struct perf_event *event)
|
2016-04-06 01:53:49 +08:00
|
|
|
{
|
2016-08-26 05:19:17 +08:00
|
|
|
int ret = 0;
|
2021-08-19 03:40:18 +08:00
|
|
|
struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
|
2016-04-06 01:53:49 +08:00
|
|
|
struct etmv4_config *config = &drvdata->config;
|
2016-08-26 05:19:10 +08:00
|
|
|
struct perf_event_attr *attr = &event->attr;
|
2021-08-19 03:40:18 +08:00
|
|
|
unsigned long cfg_hash;
|
|
|
|
int preset;
|
2016-04-06 01:53:49 +08:00
|
|
|
|
|
|
|
/* Clear configuration from previous run */
|
|
|
|
memset(config, 0, sizeof(struct etmv4_config));
|
|
|
|
|
|
|
|
if (attr->exclude_kernel)
|
|
|
|
config->mode = ETM_MODE_EXCL_KERN;
|
|
|
|
|
|
|
|
if (attr->exclude_user)
|
|
|
|
config->mode = ETM_MODE_EXCL_USER;
|
|
|
|
|
|
|
|
/* Always start from the default config */
|
2016-08-26 05:19:17 +08:00
|
|
|
etm4_set_default_config(config);
|
|
|
|
|
|
|
|
/* Configure filters specified on the perf cmd line, if any. */
|
|
|
|
ret = etm4_set_event_filters(drvdata, event);
|
|
|
|
if (ret)
|
|
|
|
goto out;
|
2016-04-06 01:53:49 +08:00
|
|
|
|
|
|
|
/* Go from generic option to ETMv4 specifics */
|
2017-01-24 01:41:23 +08:00
|
|
|
if (attr->config & BIT(ETM_OPT_CYCACC)) {
|
2022-03-05 01:19:03 +08:00
|
|
|
config->cfg |= TRCCONFIGR_CCI;
|
2017-01-24 01:41:23 +08:00
|
|
|
/* TRM: Must program this for cycacc to work */
|
|
|
|
config->ccctlr = ETM_CYC_THRESHOLD_DEFAULT;
|
|
|
|
}
|
2019-04-26 03:52:54 +08:00
|
|
|
if (attr->config & BIT(ETM_OPT_TS)) {
|
|
|
|
/*
|
|
|
|
* Configure timestamps to be emitted at regular intervals in
|
|
|
|
* order to correlate instructions executed on different CPUs
|
|
|
|
* (CPU-wide trace scenarios).
|
|
|
|
*/
|
|
|
|
ret = etm4_config_timestamp_event(drvdata);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* No need to go further if timestamp intervals can't
|
|
|
|
* be configured.
|
|
|
|
*/
|
|
|
|
if (ret)
|
|
|
|
goto out;
|
|
|
|
|
2017-01-24 01:41:24 +08:00
|
|
|
/* bit[11], Global timestamp tracing bit */
|
2022-03-05 01:19:03 +08:00
|
|
|
config->cfg |= TRCCONFIGR_TS;
|
2019-04-26 03:52:54 +08:00
|
|
|
}
|
2019-04-26 03:52:52 +08:00
|
|
|
|
2022-02-04 23:24:02 +08:00
|
|
|
/* Only trace contextID when runs in root PID namespace */
|
|
|
|
if ((attr->config & BIT(ETM_OPT_CTXTID)) &&
|
|
|
|
task_is_in_init_pid_ns(current))
|
2019-04-26 03:52:52 +08:00
|
|
|
/* bit[6], Context ID tracing bit */
|
2022-03-05 01:19:03 +08:00
|
|
|
config->cfg |= TRCCONFIGR_CID;
|
2019-04-26 03:52:52 +08:00
|
|
|
|
coresight: etm-perf: Support PID tracing for kernel at EL2
When the kernel is running at EL2, the PID is stored in CONTEXTIDR_EL2.
So, tracing CONTEXTIDR_EL1 doesn't give us the pid of the process.
Thus we should trace the VMID with VMIDOPT set to trace CONTEXTIDR_EL2
instead of CONTEXTIDR_EL1. Given that we have an existing config
option "contextid" and this will be useful for tracing virtual machines
(when we get to support virtualization).
So instead, this patch extends option CTXTID with an extra bit
ETM_OPT_CTXTID2 (bit 15), thus on an EL2 kernel, we will have another
bit available for the perf tool: ETM_OPT_CTXTID is for kernel running in
EL1, ETM_OPT_CTXTID2 is used when kernel runs in EL2 with VHE enabled.
The tool must be backward compatible for users, i.e, "contextid" today
traces PID and that should remain the same; for this purpose, the perf
tool is updated to automatically set corresponding bit for the
"contextid" config, therefore, the user doesn't have to bother which EL
the kernel is running.
i.e, perf record -e cs_etm/contextid/u --
will always do the "pid" tracing, independent of the kernel EL.
The driver parses the format "contextid", which traces CONTEXTIDR_EL1
for ETM_OPT_CTXTID (on EL1 kernel) and traces CONTEXTIDR_EL2 for
ETM_OPT_CTXTID2 (on EL2 kernel).
Besides the enhancement for format "contexid", extra two formats are
introduced: "contextid1" and "contextid2". This considers to support
tracing both CONTEXTIDR_EL1 and CONTEXTIDR_EL2 when the kernel is
running at EL2. Finally, the PMU formats are defined as follow:
"contextid1": Available on both EL1 kernel and EL2 kernel. When the
kernel is running at EL1, "contextid1" enables the PID
tracing; when the kernel is running at EL2, this enables
tracing the PID of guest applications.
"contextid2": Only usable when the kernel is running at EL2. When
selected, enables PID tracing on EL2 kernel.
"contextid": Will be an alias for the option that enables PID
tracing. I.e,
contextid == contextid1, on EL1 kernel.
contextid == contextid2, on EL2 kernel.
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>
Cc: Al Grant <al.grant@arm.com>
Cc: Mike Leach <mike.leach@linaro.org>
Cc: Leo Yan <leo.yan@linaro.org>
Reviewed-by: Mike Leach <mike.leach@linaro.org>
Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
[ Added two config formats: contextid1, contextid2 ]
Signed-off-by: Leo Yan <leo.yan@linaro.org>
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Link: https://lore.kernel.org/r/20210206150833.42120-4-leo.yan@linaro.org
Link: https://lore.kernel.org/r/20210211172038.2483517-3-mathieu.poirier@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2021-02-12 01:20:37 +08:00
|
|
|
/*
|
|
|
|
* If set bit ETM_OPT_CTXTID2 in perf config, this asks to trace VMID
|
|
|
|
* for recording CONTEXTIDR_EL2. Do not enable VMID tracing if the
|
|
|
|
* kernel is not running in EL2.
|
|
|
|
*/
|
|
|
|
if (attr->config & BIT(ETM_OPT_CTXTID2)) {
|
|
|
|
if (!is_kernel_in_hyp_mode()) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2022-02-04 23:24:02 +08:00
|
|
|
/* Only trace virtual contextID when runs in root PID namespace */
|
|
|
|
if (task_is_in_init_pid_ns(current))
|
2022-03-05 01:19:03 +08:00
|
|
|
config->cfg |= TRCCONFIGR_VMID | TRCCONFIGR_VMIDOPT;
|
coresight: etm-perf: Support PID tracing for kernel at EL2
When the kernel is running at EL2, the PID is stored in CONTEXTIDR_EL2.
So, tracing CONTEXTIDR_EL1 doesn't give us the pid of the process.
Thus we should trace the VMID with VMIDOPT set to trace CONTEXTIDR_EL2
instead of CONTEXTIDR_EL1. Given that we have an existing config
option "contextid" and this will be useful for tracing virtual machines
(when we get to support virtualization).
So instead, this patch extends option CTXTID with an extra bit
ETM_OPT_CTXTID2 (bit 15), thus on an EL2 kernel, we will have another
bit available for the perf tool: ETM_OPT_CTXTID is for kernel running in
EL1, ETM_OPT_CTXTID2 is used when kernel runs in EL2 with VHE enabled.
The tool must be backward compatible for users, i.e, "contextid" today
traces PID and that should remain the same; for this purpose, the perf
tool is updated to automatically set corresponding bit for the
"contextid" config, therefore, the user doesn't have to bother which EL
the kernel is running.
i.e, perf record -e cs_etm/contextid/u --
will always do the "pid" tracing, independent of the kernel EL.
The driver parses the format "contextid", which traces CONTEXTIDR_EL1
for ETM_OPT_CTXTID (on EL1 kernel) and traces CONTEXTIDR_EL2 for
ETM_OPT_CTXTID2 (on EL2 kernel).
Besides the enhancement for format "contexid", extra two formats are
introduced: "contextid1" and "contextid2". This considers to support
tracing both CONTEXTIDR_EL1 and CONTEXTIDR_EL2 when the kernel is
running at EL2. Finally, the PMU formats are defined as follow:
"contextid1": Available on both EL1 kernel and EL2 kernel. When the
kernel is running at EL1, "contextid1" enables the PID
tracing; when the kernel is running at EL2, this enables
tracing the PID of guest applications.
"contextid2": Only usable when the kernel is running at EL2. When
selected, enables PID tracing on EL2 kernel.
"contextid": Will be an alias for the option that enables PID
tracing. I.e,
contextid == contextid1, on EL1 kernel.
contextid == contextid2, on EL2 kernel.
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>
Cc: Al Grant <al.grant@arm.com>
Cc: Mike Leach <mike.leach@linaro.org>
Cc: Leo Yan <leo.yan@linaro.org>
Reviewed-by: Mike Leach <mike.leach@linaro.org>
Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
[ Added two config formats: contextid1, contextid2 ]
Signed-off-by: Leo Yan <leo.yan@linaro.org>
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Link: https://lore.kernel.org/r/20210206150833.42120-4-leo.yan@linaro.org
Link: https://lore.kernel.org/r/20210211172038.2483517-3-mathieu.poirier@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2021-02-12 01:20:37 +08:00
|
|
|
}
|
|
|
|
|
2017-08-03 00:22:03 +08:00
|
|
|
/* return stack - enable if selected and supported */
|
|
|
|
if ((attr->config & BIT(ETM_OPT_RETSTK)) && drvdata->retstack)
|
|
|
|
/* bit[12], Return stack enable bit */
|
2022-03-05 01:19:03 +08:00
|
|
|
config->cfg |= TRCCONFIGR_RS;
|
2016-04-06 01:53:49 +08:00
|
|
|
|
2021-08-19 03:40:18 +08:00
|
|
|
/*
|
|
|
|
* Set any selected configuration and preset.
|
|
|
|
*
|
|
|
|
* This extracts the values of PMU_FORMAT_ATTR(configid) and PMU_FORMAT_ATTR(preset)
|
|
|
|
* in the perf attributes defined in coresight-etm-perf.c.
|
|
|
|
* configid uses bits 63:32 of attr->config2, preset uses bits 3:0 of attr->config.
|
|
|
|
* A zero configid means no configuration active, preset = 0 means no preset selected.
|
|
|
|
*/
|
|
|
|
if (attr->config2 & GENMASK_ULL(63, 32)) {
|
|
|
|
cfg_hash = (u32)(attr->config2 >> 32);
|
|
|
|
preset = attr->config & 0xF;
|
|
|
|
ret = cscfg_csdev_enable_active_config(csdev, cfg_hash, preset);
|
|
|
|
}
|
|
|
|
|
2016-08-26 05:19:17 +08:00
|
|
|
out:
|
|
|
|
return ret;
|
2016-04-06 01:53:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int etm4_enable_perf(struct coresight_device *csdev,
|
2016-08-26 05:19:10 +08:00
|
|
|
struct perf_event *event)
|
2016-04-06 01:53:49 +08:00
|
|
|
{
|
2016-08-26 05:19:17 +08:00
|
|
|
int ret = 0;
|
2016-04-06 01:53:49 +08:00
|
|
|
struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
|
|
|
|
|
2016-08-26 05:19:17 +08:00
|
|
|
if (WARN_ON_ONCE(drvdata->cpu != smp_processor_id())) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2016-04-06 01:53:49 +08:00
|
|
|
|
|
|
|
/* Configure the tracer based on the session's specifics */
|
2021-08-19 03:40:18 +08:00
|
|
|
ret = etm4_parse_event_config(csdev, event);
|
2016-08-26 05:19:17 +08:00
|
|
|
if (ret)
|
|
|
|
goto out;
|
2016-04-06 01:53:49 +08:00
|
|
|
/* And enable it */
|
2018-09-21 03:18:07 +08:00
|
|
|
ret = etm4_enable_hw(drvdata);
|
2016-04-06 01:53:49 +08:00
|
|
|
|
2016-08-26 05:19:17 +08:00
|
|
|
out:
|
|
|
|
return ret;
|
2016-04-06 01:53:49 +08:00
|
|
|
}
|
|
|
|
|
2016-04-06 01:53:47 +08:00
|
|
|
static int etm4_enable_sysfs(struct coresight_device *csdev)
|
2015-05-14 00:34:09 +08:00
|
|
|
{
|
|
|
|
struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
|
2020-05-19 02:02:37 +08:00
|
|
|
struct etm4_enable_arg arg = { };
|
2021-11-25 04:00:37 +08:00
|
|
|
unsigned long cfg_hash;
|
|
|
|
int ret, preset;
|
|
|
|
|
|
|
|
/* enable any config activated by configfs */
|
|
|
|
cscfg_config_sysfs_get_active_cfg(&cfg_hash, &preset);
|
|
|
|
if (cfg_hash) {
|
|
|
|
ret = cscfg_csdev_enable_active_config(csdev, cfg_hash, preset);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
spin_lock(&drvdata->spinlock);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Executing etm4_enable_hw on the cpu whose ETM is being enabled
|
|
|
|
* ensures that register writes occur when cpu is powered.
|
|
|
|
*/
|
2018-09-21 03:18:07 +08:00
|
|
|
arg.drvdata = drvdata;
|
2015-05-14 00:34:09 +08:00
|
|
|
ret = smp_call_function_single(drvdata->cpu,
|
2018-09-21 03:18:07 +08:00
|
|
|
etm4_enable_hw_smp_call, &arg, 1);
|
|
|
|
if (!ret)
|
|
|
|
ret = arg.rc;
|
|
|
|
if (!ret)
|
|
|
|
drvdata->sticky_enable = true;
|
2015-05-14 00:34:09 +08:00
|
|
|
spin_unlock(&drvdata->spinlock);
|
|
|
|
|
2018-09-21 03:18:07 +08:00
|
|
|
if (!ret)
|
2019-06-20 01:29:16 +08:00
|
|
|
dev_dbg(&csdev->dev, "ETM tracing enabled\n");
|
2015-05-14 00:34:09 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-04-06 01:53:47 +08:00
|
|
|
static int etm4_enable(struct coresight_device *csdev,
|
2016-08-26 05:19:10 +08:00
|
|
|
struct perf_event *event, u32 mode)
|
2016-04-06 01:53:47 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
u32 val;
|
|
|
|
struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
|
|
|
|
|
|
|
|
val = local_cmpxchg(&drvdata->mode, CS_MODE_DISABLED, mode);
|
|
|
|
|
|
|
|
/* Someone is already using the tracer */
|
|
|
|
if (val)
|
|
|
|
return -EBUSY;
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case CS_MODE_SYSFS:
|
|
|
|
ret = etm4_enable_sysfs(csdev);
|
|
|
|
break;
|
2016-04-06 01:53:49 +08:00
|
|
|
case CS_MODE_PERF:
|
2016-08-26 05:19:10 +08:00
|
|
|
ret = etm4_enable_perf(csdev, event);
|
2016-04-06 01:53:49 +08:00
|
|
|
break;
|
2016-04-06 01:53:47 +08:00
|
|
|
default:
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The tracer didn't start */
|
|
|
|
if (ret)
|
|
|
|
local_set(&drvdata->mode, CS_MODE_DISABLED);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
static void etm4_disable_hw(void *info)
|
|
|
|
{
|
|
|
|
u32 control;
|
|
|
|
struct etmv4_drvdata *drvdata = info;
|
2019-11-05 02:12:48 +08:00
|
|
|
struct etmv4_config *config = &drvdata->config;
|
2021-02-02 02:13:27 +08:00
|
|
|
struct coresight_device *csdev = drvdata->csdev;
|
|
|
|
struct device *etm_dev = &csdev->dev;
|
|
|
|
struct csdev_access *csa = &csdev->access;
|
2019-11-05 02:12:48 +08:00
|
|
|
int i;
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2021-02-02 02:13:36 +08:00
|
|
|
etm4_cs_unlock(drvdata, csa);
|
2020-12-09 02:26:51 +08:00
|
|
|
etm4_disable_arch_specific(drvdata);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2020-07-17 01:57:32 +08:00
|
|
|
if (!drvdata->skip_power_up) {
|
|
|
|
/* power can be removed from the trace unit now */
|
2021-02-02 02:13:30 +08:00
|
|
|
control = etm4x_relaxed_read32(csa, TRCPDCR);
|
2020-07-17 01:57:32 +08:00
|
|
|
control &= ~TRCPDCR_PU;
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, control, TRCPDCR);
|
2020-07-17 01:57:32 +08:00
|
|
|
}
|
2016-08-26 05:19:08 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
control = etm4x_relaxed_read32(csa, TRCPRGCTLR);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
/* EN, bit[0] Trace unit enable bit */
|
|
|
|
control &= ~0x1;
|
|
|
|
|
2021-04-06 00:42:55 +08:00
|
|
|
/*
|
|
|
|
* If the CPU supports v8.4 Trace filter Control,
|
|
|
|
* set the ETM to trace prohibited region.
|
|
|
|
*/
|
2021-09-14 18:26:33 +08:00
|
|
|
etm4x_prohibit_trace(drvdata);
|
2019-08-30 04:28:35 +08:00
|
|
|
/*
|
|
|
|
* Make sure everything completes before disabling, as recommended
|
|
|
|
* by section 7.3.77 ("TRCVICTLR, ViewInst Main Control Register,
|
|
|
|
* SSTATUS") of ARM IHI 0064D
|
|
|
|
*/
|
|
|
|
dsb(sy);
|
2015-05-14 00:34:09 +08:00
|
|
|
isb();
|
2021-04-06 00:42:55 +08:00
|
|
|
/* Trace synchronization barrier, is a nop if not supported */
|
|
|
|
tsb_csync();
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, control, TRCPRGCTLR);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2019-11-05 02:12:48 +08:00
|
|
|
/* wait for TRCSTATR.PMSTABLE to go to '1' */
|
2021-02-02 02:13:27 +08:00
|
|
|
if (coresight_timeout(csa, TRCSTATR, TRCSTATR_PMSTABLE_BIT, 1))
|
2019-11-05 02:12:48 +08:00
|
|
|
dev_err(etm_dev,
|
|
|
|
"timeout while waiting for PM stable Trace Status\n");
|
|
|
|
/* read the status of the single shot comparators */
|
|
|
|
for (i = 0; i < drvdata->nr_ss_cmp; i++) {
|
|
|
|
config->ss_status[i] =
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_read32(csa, TRCSSCSRn(i));
|
2019-11-05 02:12:48 +08:00
|
|
|
}
|
|
|
|
|
2020-07-17 01:57:39 +08:00
|
|
|
/* read back the current counter values */
|
|
|
|
for (i = 0; i < drvdata->nr_cntr; i++) {
|
|
|
|
config->cntr_val[i] =
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_read32(csa, TRCCNTVRn(i));
|
2020-07-17 01:57:39 +08:00
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:28 +08:00
|
|
|
coresight_disclaim_device_unlocked(csdev);
|
2021-02-02 02:13:36 +08:00
|
|
|
etm4_cs_lock(drvdata, csa);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2019-06-20 01:29:16 +08:00
|
|
|
dev_dbg(&drvdata->csdev->dev,
|
|
|
|
"cpu: %d disable smp call done\n", drvdata->cpu);
|
2015-05-14 00:34:09 +08:00
|
|
|
}
|
|
|
|
|
2016-08-26 05:19:10 +08:00
|
|
|
static int etm4_disable_perf(struct coresight_device *csdev,
|
|
|
|
struct perf_event *event)
|
2016-04-06 01:53:49 +08:00
|
|
|
{
|
2016-08-26 05:19:18 +08:00
|
|
|
u32 control;
|
|
|
|
struct etm_filters *filters = event->hw.addr_filters;
|
2016-04-06 01:53:49 +08:00
|
|
|
struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
|
2021-08-19 03:40:18 +08:00
|
|
|
struct perf_event_attr *attr = &event->attr;
|
2016-04-06 01:53:49 +08:00
|
|
|
|
|
|
|
if (WARN_ON_ONCE(drvdata->cpu != smp_processor_id()))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
etm4_disable_hw(drvdata);
|
2021-08-19 03:40:18 +08:00
|
|
|
/*
|
|
|
|
* The config_id occupies bits 63:32 of the config2 perf event attr
|
|
|
|
* field. If this is non-zero then we will have enabled a config.
|
|
|
|
*/
|
|
|
|
if (attr->config2 & GENMASK_ULL(63, 32))
|
|
|
|
cscfg_csdev_disable_active_config(csdev);
|
2016-08-26 05:19:18 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if the start/stop logic was active when the unit was stopped.
|
|
|
|
* That way we can re-enable the start/stop logic when the process is
|
|
|
|
* scheduled again. Configuration of the start/stop logic happens in
|
|
|
|
* function etm4_set_event_filters().
|
|
|
|
*/
|
2021-02-02 02:13:30 +08:00
|
|
|
control = etm4x_relaxed_read32(&csdev->access, TRCVICTLR);
|
2016-08-26 05:19:18 +08:00
|
|
|
/* TRCVICTLR::SSSTATUS, bit[9] */
|
|
|
|
filters->ssstatus = (control & BIT(9));
|
|
|
|
|
2016-04-06 01:53:49 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-04-06 01:53:47 +08:00
|
|
|
static void etm4_disable_sysfs(struct coresight_device *csdev)
|
2015-05-14 00:34:09 +08:00
|
|
|
{
|
|
|
|
struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Taking hotplug lock here protects from clocks getting disabled
|
|
|
|
* with tracing being left on (crash scenario) if user disable occurs
|
|
|
|
* after cpu online mask indicates the cpu is offline but before the
|
|
|
|
* DYING hotplug callback is serviced by the ETM driver.
|
|
|
|
*/
|
2017-05-24 16:15:23 +08:00
|
|
|
cpus_read_lock();
|
2015-05-14 00:34:09 +08:00
|
|
|
spin_lock(&drvdata->spinlock);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Executing etm4_disable_hw on the cpu whose ETM is being disabled
|
|
|
|
* ensures that register writes occur when cpu is powered.
|
|
|
|
*/
|
|
|
|
smp_call_function_single(drvdata->cpu, etm4_disable_hw, drvdata, 1);
|
|
|
|
|
|
|
|
spin_unlock(&drvdata->spinlock);
|
2017-05-24 16:15:23 +08:00
|
|
|
cpus_read_unlock();
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2019-06-20 01:29:16 +08:00
|
|
|
dev_dbg(&csdev->dev, "ETM tracing disabled\n");
|
2015-05-14 00:34:09 +08:00
|
|
|
}
|
|
|
|
|
2016-08-26 05:19:10 +08:00
|
|
|
static void etm4_disable(struct coresight_device *csdev,
|
|
|
|
struct perf_event *event)
|
2016-04-06 01:53:47 +08:00
|
|
|
{
|
|
|
|
u32 mode;
|
|
|
|
struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For as long as the tracer isn't disabled another entity can't
|
|
|
|
* change its status. As such we can read the status here without
|
|
|
|
* fearing it will change under us.
|
|
|
|
*/
|
|
|
|
mode = local_read(&drvdata->mode);
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case CS_MODE_DISABLED:
|
|
|
|
break;
|
|
|
|
case CS_MODE_SYSFS:
|
|
|
|
etm4_disable_sysfs(csdev);
|
|
|
|
break;
|
2016-04-06 01:53:49 +08:00
|
|
|
case CS_MODE_PERF:
|
2016-08-26 05:19:10 +08:00
|
|
|
etm4_disable_perf(csdev, event);
|
2016-04-06 01:53:49 +08:00
|
|
|
break;
|
2016-04-06 01:53:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mode)
|
|
|
|
local_set(&drvdata->mode, CS_MODE_DISABLED);
|
|
|
|
}
|
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
static const struct coresight_ops_source etm4_source_ops = {
|
2016-02-03 05:14:01 +08:00
|
|
|
.cpu_id = etm4_cpu_id,
|
2015-05-14 00:34:09 +08:00
|
|
|
.trace_id = etm4_trace_id,
|
|
|
|
.enable = etm4_enable,
|
|
|
|
.disable = etm4_disable,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct coresight_ops etm4_cs_ops = {
|
|
|
|
.source_ops = &etm4_source_ops,
|
|
|
|
};
|
|
|
|
|
2021-02-02 02:13:44 +08:00
|
|
|
static inline bool cpu_supports_sysreg_trace(void)
|
|
|
|
{
|
|
|
|
u64 dfr0 = read_sysreg_s(SYS_ID_AA64DFR0_EL1);
|
|
|
|
|
|
|
|
return ((dfr0 >> ID_AA64DFR0_TRACEVER_SHIFT) & 0xfUL) > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool etm4_init_sysreg_access(struct etmv4_drvdata *drvdata,
|
|
|
|
struct csdev_access *csa)
|
|
|
|
{
|
|
|
|
u32 devarch;
|
|
|
|
|
|
|
|
if (!cpu_supports_sysreg_trace())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ETMs implementing sysreg access must implement TRCDEVARCH.
|
|
|
|
*/
|
|
|
|
devarch = read_etm4x_sysreg_const_offset(TRCDEVARCH);
|
2021-04-06 00:43:00 +08:00
|
|
|
switch (devarch & ETM_DEVARCH_ID_MASK) {
|
|
|
|
case ETM_DEVARCH_ETMv4x_ARCH:
|
|
|
|
*csa = (struct csdev_access) {
|
|
|
|
.io_mem = false,
|
|
|
|
.read = etm4x_sysreg_read,
|
|
|
|
.write = etm4x_sysreg_write,
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
case ETM_DEVARCH_ETE_ARCH:
|
|
|
|
*csa = (struct csdev_access) {
|
|
|
|
.io_mem = false,
|
|
|
|
.read = ete_sysreg_read,
|
|
|
|
.write = ete_sysreg_write,
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
default:
|
2021-02-02 02:13:44 +08:00
|
|
|
return false;
|
2021-04-06 00:43:00 +08:00
|
|
|
}
|
2021-02-02 02:13:44 +08:00
|
|
|
|
|
|
|
drvdata->arch = etm_devarch_to_arch(devarch);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:40 +08:00
|
|
|
static bool etm4_init_iomem_access(struct etmv4_drvdata *drvdata,
|
|
|
|
struct csdev_access *csa)
|
|
|
|
{
|
2021-02-02 02:13:41 +08:00
|
|
|
u32 devarch = readl_relaxed(drvdata->base + TRCDEVARCH);
|
|
|
|
u32 idr1 = readl_relaxed(drvdata->base + TRCIDR1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* All ETMs must implement TRCDEVARCH to indicate that
|
|
|
|
* the component is an ETMv4. To support any broken
|
|
|
|
* implementations we fall back to TRCIDR1 check, which
|
|
|
|
* is not really reliable.
|
|
|
|
*/
|
|
|
|
if ((devarch & ETM_DEVARCH_ID_MASK) == ETM_DEVARCH_ETMv4x_ARCH) {
|
|
|
|
drvdata->arch = etm_devarch_to_arch(devarch);
|
|
|
|
} else {
|
|
|
|
pr_warn("CPU%d: ETM4x incompatible TRCDEVARCH: %x, falling back to TRCIDR1\n",
|
|
|
|
smp_processor_id(), devarch);
|
|
|
|
|
|
|
|
if (ETM_TRCIDR1_ARCH_MAJOR(idr1) != ETM_TRCIDR1_ARCH_ETMv4)
|
|
|
|
return false;
|
|
|
|
drvdata->arch = etm_trcidr_to_arch(idr1);
|
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:40 +08:00
|
|
|
*csa = CSDEV_ACCESS_IOMEM(drvdata->base);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool etm4_init_csdev_access(struct etmv4_drvdata *drvdata,
|
|
|
|
struct csdev_access *csa)
|
|
|
|
{
|
2021-02-02 02:13:44 +08:00
|
|
|
/*
|
|
|
|
* Always choose the memory mapped io, if there is
|
|
|
|
* a memory map to prevent sysreg access on broken
|
|
|
|
* systems.
|
|
|
|
*/
|
2021-02-02 02:13:40 +08:00
|
|
|
if (drvdata->base)
|
|
|
|
return etm4_init_iomem_access(drvdata, csa);
|
|
|
|
|
2021-02-02 02:13:44 +08:00
|
|
|
if (etm4_init_sysreg_access(drvdata, csa))
|
|
|
|
return true;
|
|
|
|
|
2021-02-02 02:13:40 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-09-14 18:26:33 +08:00
|
|
|
static void cpu_detect_trace_filtering(struct etmv4_drvdata *drvdata)
|
2021-02-02 02:13:50 +08:00
|
|
|
{
|
|
|
|
u64 dfr0 = read_sysreg(id_aa64dfr0_el1);
|
|
|
|
u64 trfcr;
|
|
|
|
|
2021-09-14 18:26:33 +08:00
|
|
|
drvdata->trfcr = 0;
|
2021-02-02 02:13:50 +08:00
|
|
|
if (!cpuid_feature_extract_unsigned_field(dfr0, ID_AA64DFR0_TRACE_FILT_SHIFT))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the CPU supports v8.4 SelfHosted Tracing, enable
|
|
|
|
* tracing at the kernel EL and EL0, forcing to use the
|
|
|
|
* virtual time as the timestamp.
|
|
|
|
*/
|
|
|
|
trfcr = (TRFCR_ELx_TS_VIRTUAL |
|
|
|
|
TRFCR_ELx_ExTRE |
|
|
|
|
TRFCR_ELx_E0TRE);
|
|
|
|
|
|
|
|
/* If we are running at EL2, allow tracing the CONTEXTIDR_EL2. */
|
|
|
|
if (is_kernel_in_hyp_mode())
|
|
|
|
trfcr |= TRFCR_EL2_CX;
|
|
|
|
|
2021-09-14 18:26:33 +08:00
|
|
|
drvdata->trfcr = trfcr;
|
2021-02-02 02:13:50 +08:00
|
|
|
}
|
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
static void etm4_init_arch_data(void *info)
|
|
|
|
{
|
|
|
|
u32 etmidr0;
|
|
|
|
u32 etmidr2;
|
|
|
|
u32 etmidr3;
|
|
|
|
u32 etmidr4;
|
|
|
|
u32 etmidr5;
|
2021-02-02 02:13:40 +08:00
|
|
|
struct etm4_init_arg *init_arg = info;
|
|
|
|
struct etmv4_drvdata *drvdata;
|
|
|
|
struct csdev_access *csa;
|
2019-11-05 02:12:48 +08:00
|
|
|
int i;
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2021-02-02 02:13:40 +08:00
|
|
|
drvdata = init_arg->drvdata;
|
|
|
|
csa = init_arg->csa;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we are unable to detect the access mechanism,
|
|
|
|
* or unable to detect the trace unit type, fail
|
|
|
|
* early.
|
|
|
|
*/
|
|
|
|
if (!etm4_init_csdev_access(drvdata, csa))
|
|
|
|
return;
|
|
|
|
|
2021-04-06 00:42:58 +08:00
|
|
|
/* Detect the support for OS Lock before we actually use it */
|
|
|
|
etm_detect_os_lock(drvdata, csa);
|
|
|
|
|
2016-04-06 01:53:46 +08:00
|
|
|
/* Make sure all registers are accessible */
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4_os_unlock_csa(drvdata, csa);
|
2021-02-02 02:13:36 +08:00
|
|
|
etm4_cs_unlock(drvdata, csa);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2021-02-02 02:13:46 +08:00
|
|
|
etm4_check_arch_features(drvdata, init_arg->pid);
|
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
/* find all capabilities of the tracing unit */
|
2021-02-02 02:13:30 +08:00
|
|
|
etmidr0 = etm4x_relaxed_read32(csa, TRCIDR0);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
/* INSTP0, bits[2:1] P0 tracing support field */
|
2022-03-05 01:18:58 +08:00
|
|
|
drvdata->instrp0 = !!(FIELD_GET(TRCIDR0_INSTP0_MASK, etmidr0) == 0b11);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* TRCBB, bit[5] Branch broadcast tracing support bit */
|
2022-03-05 01:18:58 +08:00
|
|
|
drvdata->trcbb = !!(etmidr0 & TRCIDR0_TRCBB);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* TRCCOND, bit[6] Conditional instruction tracing support bit */
|
2022-03-05 01:18:58 +08:00
|
|
|
drvdata->trccond = !!(etmidr0 & TRCIDR0_TRCCOND);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* TRCCCI, bit[7] Cycle counting instruction bit */
|
2022-03-05 01:18:58 +08:00
|
|
|
drvdata->trccci = !!(etmidr0 & TRCIDR0_TRCCCI);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* RETSTACK, bit[9] Return stack bit */
|
2022-03-05 01:18:58 +08:00
|
|
|
drvdata->retstack = !!(etmidr0 & TRCIDR0_RETSTACK);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* NUMEVENT, bits[11:10] Number of events field */
|
2022-03-05 01:18:58 +08:00
|
|
|
drvdata->nr_event = FIELD_GET(TRCIDR0_NUMEVENT_MASK, etmidr0);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* QSUPP, bits[16:15] Q element support field */
|
2022-03-05 01:18:58 +08:00
|
|
|
drvdata->q_support = FIELD_GET(TRCIDR0_QSUPP_MASK, etmidr0);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* TSSIZE, bits[28:24] Global timestamp size field */
|
2022-03-05 01:18:58 +08:00
|
|
|
drvdata->ts_size = FIELD_GET(TRCIDR0_TSSIZE_MASK, etmidr0);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
/* maximum size of resources */
|
2021-02-02 02:13:30 +08:00
|
|
|
etmidr2 = etm4x_relaxed_read32(csa, TRCIDR2);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* CIDSIZE, bits[9:5] Indicates the Context ID size */
|
2022-03-05 01:18:59 +08:00
|
|
|
drvdata->ctxid_size = FIELD_GET(TRCIDR2_CIDSIZE_MASK, etmidr2);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* VMIDSIZE, bits[14:10] Indicates the VMID size */
|
2022-03-05 01:18:59 +08:00
|
|
|
drvdata->vmid_size = FIELD_GET(TRCIDR2_VMIDSIZE_MASK, etmidr2);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* CCSIZE, bits[28:25] size of the cycle counter in bits minus 12 */
|
2022-03-05 01:18:59 +08:00
|
|
|
drvdata->ccsize = FIELD_GET(TRCIDR2_CCSIZE_MASK, etmidr2);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
etmidr3 = etm4x_relaxed_read32(csa, TRCIDR3);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* CCITMIN, bits[11:0] minimum threshold value that can be programmed */
|
2022-03-05 01:19:00 +08:00
|
|
|
drvdata->ccitmin = FIELD_GET(TRCIDR3_CCITMIN_MASK, etmidr3);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* EXLEVEL_S, bits[19:16] Secure state instruction tracing */
|
2022-03-05 01:19:00 +08:00
|
|
|
drvdata->s_ex_level = FIELD_GET(TRCIDR3_EXLEVEL_S_MASK, etmidr3);
|
2021-02-02 02:13:37 +08:00
|
|
|
drvdata->config.s_ex_level = drvdata->s_ex_level;
|
2015-05-14 00:34:09 +08:00
|
|
|
/* EXLEVEL_NS, bits[23:20] Non-secure state instruction tracing */
|
2022-03-05 01:19:00 +08:00
|
|
|
drvdata->ns_ex_level = FIELD_GET(TRCIDR3_EXLEVEL_NS_MASK, etmidr3);
|
2015-05-14 00:34:09 +08:00
|
|
|
/*
|
|
|
|
* TRCERR, bit[24] whether a trace unit can trace a
|
|
|
|
* system error exception.
|
|
|
|
*/
|
2022-03-05 01:19:00 +08:00
|
|
|
drvdata->trc_error = !!(etmidr3 & TRCIDR3_TRCERR);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* SYNCPR, bit[25] implementation has a fixed synchronization period? */
|
2022-03-05 01:19:00 +08:00
|
|
|
drvdata->syncpr = !!(etmidr3 & TRCIDR3_SYNCPR);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* STALLCTL, bit[26] is stall control implemented? */
|
2022-03-05 01:19:00 +08:00
|
|
|
drvdata->stallctl = !!(etmidr3 & TRCIDR3_STALLCTL);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* SYSSTALL, bit[27] implementation can support stall control? */
|
2022-03-05 01:19:00 +08:00
|
|
|
drvdata->sysstall = !!(etmidr3 & TRCIDR3_SYSSTALL);
|
2020-11-28 01:52:46 +08:00
|
|
|
/*
|
|
|
|
* NUMPROC - the number of PEs available for tracing, 5bits
|
|
|
|
* = TRCIDR3.bits[13:12]bits[30:28]
|
|
|
|
* bits[4:3] = TRCIDR3.bits[13:12] (since etm-v4.2, otherwise RES0)
|
|
|
|
* bits[3:0] = TRCIDR3.bits[30:28]
|
|
|
|
*/
|
2022-03-05 01:19:00 +08:00
|
|
|
drvdata->nr_pe = (FIELD_GET(TRCIDR3_NUMPROC_HI_MASK, etmidr3) << 3) |
|
|
|
|
FIELD_GET(TRCIDR3_NUMPROC_LO_MASK, etmidr3);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* NOOVERFLOW, bit[31] is trace overflow prevention supported */
|
2022-03-05 01:19:00 +08:00
|
|
|
drvdata->nooverflow = !!(etmidr3 & TRCIDR3_NOOVERFLOW);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
/* number of resources trace unit supports */
|
2021-02-02 02:13:30 +08:00
|
|
|
etmidr4 = etm4x_relaxed_read32(csa, TRCIDR4);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* NUMACPAIRS, bits[0:3] number of addr comparator pairs for tracing */
|
2022-03-05 01:19:01 +08:00
|
|
|
drvdata->nr_addr_cmp = FIELD_GET(TRCIDR4_NUMACPAIRS_MASK, etmidr4);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* NUMPC, bits[15:12] number of PE comparator inputs for tracing */
|
2022-03-05 01:19:01 +08:00
|
|
|
drvdata->nr_pe_cmp = FIELD_GET(TRCIDR4_NUMPC_MASK, etmidr4);
|
2015-10-07 23:26:38 +08:00
|
|
|
/*
|
|
|
|
* NUMRSPAIR, bits[19:16]
|
|
|
|
* The number of resource pairs conveyed by the HW starts at 0, i.e a
|
|
|
|
* value of 0x0 indicate 1 resource pair, 0x1 indicate two and so on.
|
|
|
|
* As such add 1 to the value of NUMRSPAIR for a better representation.
|
2020-09-17 03:17:37 +08:00
|
|
|
*
|
|
|
|
* For ETM v4.3 and later, 0x0 means 0, and no pairs are available -
|
|
|
|
* the default TRUE and FALSE resource selectors are omitted.
|
|
|
|
* Otherwise for values 0x1 and above the number is N + 1 as per v4.2.
|
2015-10-07 23:26:38 +08:00
|
|
|
*/
|
2022-03-05 01:19:01 +08:00
|
|
|
drvdata->nr_resource = FIELD_GET(TRCIDR4_NUMRSPAIR_MASK, etmidr4);
|
2021-02-02 02:13:39 +08:00
|
|
|
if ((drvdata->arch < ETM_ARCH_V4_3) || (drvdata->nr_resource > 0))
|
2020-09-17 03:17:37 +08:00
|
|
|
drvdata->nr_resource += 1;
|
2015-05-14 00:34:09 +08:00
|
|
|
/*
|
|
|
|
* NUMSSCC, bits[23:20] the number of single-shot
|
2019-11-05 02:12:48 +08:00
|
|
|
* comparator control for tracing. Read any status regs as these
|
|
|
|
* also contain RO capability data.
|
2015-05-14 00:34:09 +08:00
|
|
|
*/
|
2022-03-05 01:19:01 +08:00
|
|
|
drvdata->nr_ss_cmp = FIELD_GET(TRCIDR4_NUMSSCC_MASK, etmidr4);
|
2019-11-05 02:12:48 +08:00
|
|
|
for (i = 0; i < drvdata->nr_ss_cmp; i++) {
|
|
|
|
drvdata->config.ss_status[i] =
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_read32(csa, TRCSSCSRn(i));
|
2019-11-05 02:12:48 +08:00
|
|
|
}
|
2015-05-14 00:34:09 +08:00
|
|
|
/* NUMCIDC, bits[27:24] number of Context ID comparators for tracing */
|
2022-03-05 01:19:01 +08:00
|
|
|
drvdata->numcidc = FIELD_GET(TRCIDR4_NUMCIDC_MASK, etmidr4);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* NUMVMIDC, bits[31:28] number of VMID comparators for tracing */
|
2022-03-05 01:19:01 +08:00
|
|
|
drvdata->numvmidc = FIELD_GET(TRCIDR4_NUMVMIDC_MASK, etmidr4);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
etmidr5 = etm4x_relaxed_read32(csa, TRCIDR5);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* NUMEXTIN, bits[8:0] number of external inputs implemented */
|
2022-03-05 01:19:02 +08:00
|
|
|
drvdata->nr_ext_inp = FIELD_GET(TRCIDR5_NUMEXTIN_MASK, etmidr5);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* TRACEIDSIZE, bits[21:16] indicates the trace ID width */
|
2022-03-05 01:19:02 +08:00
|
|
|
drvdata->trcid_size = FIELD_GET(TRCIDR5_TRACEIDSIZE_MASK, etmidr5);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* ATBTRIG, bit[22] implementation can support ATB triggers? */
|
2022-03-05 01:19:02 +08:00
|
|
|
drvdata->atbtrig = !!(etmidr5 & TRCIDR5_ATBTRIG);
|
2015-05-14 00:34:09 +08:00
|
|
|
/*
|
|
|
|
* LPOVERRIDE, bit[23] implementation supports
|
|
|
|
* low-power state override
|
|
|
|
*/
|
2022-03-05 01:19:02 +08:00
|
|
|
drvdata->lpoverride = (etmidr5 & TRCIDR5_LPOVERRIDE) && (!drvdata->skip_power_up);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* NUMSEQSTATE, bits[27:25] number of sequencer states implemented */
|
2022-03-05 01:19:02 +08:00
|
|
|
drvdata->nrseqstate = FIELD_GET(TRCIDR5_NUMSEQSTATE_MASK, etmidr5);
|
2015-05-14 00:34:09 +08:00
|
|
|
/* NUMCNTR, bits[30:28] number of counters available for tracing */
|
2022-03-05 01:19:02 +08:00
|
|
|
drvdata->nr_cntr = FIELD_GET(TRCIDR5_NUMCNTR_MASK, etmidr5);
|
2021-02-02 02:13:36 +08:00
|
|
|
etm4_cs_lock(drvdata, csa);
|
2021-09-14 18:26:33 +08:00
|
|
|
cpu_detect_trace_filtering(drvdata);
|
2015-05-14 00:34:09 +08:00
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:38 +08:00
|
|
|
static inline u32 etm4_get_victlr_access_type(struct etmv4_config *config)
|
|
|
|
{
|
|
|
|
return etm4_get_access_type(config) << TRCVICTLR_EXLEVEL_SHIFT;
|
|
|
|
}
|
|
|
|
|
2020-09-17 03:17:28 +08:00
|
|
|
/* Set ELx trace filter access in the TRCVICTLR register */
|
|
|
|
static void etm4_set_victlr_access(struct etmv4_config *config)
|
|
|
|
{
|
2021-02-02 02:13:38 +08:00
|
|
|
config->vinst_ctrl &= ~TRCVICTLR_EXLEVEL_MASK;
|
|
|
|
config->vinst_ctrl |= etm4_get_victlr_access_type(config);
|
2020-09-17 03:17:28 +08:00
|
|
|
}
|
|
|
|
|
2016-08-26 05:19:13 +08:00
|
|
|
static void etm4_set_default_config(struct etmv4_config *config)
|
2015-05-14 00:34:09 +08:00
|
|
|
{
|
|
|
|
/* disable all events tracing */
|
2016-04-06 01:53:44 +08:00
|
|
|
config->eventctrl0 = 0x0;
|
|
|
|
config->eventctrl1 = 0x0;
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
/* disable stalling */
|
2016-04-06 01:53:44 +08:00
|
|
|
config->stall_ctrl = 0x0;
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2016-04-06 01:53:45 +08:00
|
|
|
/* enable trace synchronization every 4096 bytes, if available */
|
|
|
|
config->syncfreq = 0xC;
|
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
/* disable timestamp event */
|
2016-04-06 01:53:44 +08:00
|
|
|
config->ts_ctrl = 0x0;
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2016-04-06 01:53:45 +08:00
|
|
|
/* TRCVICTLR::EVENT = 0x01, select the always on logic */
|
2020-05-19 02:02:33 +08:00
|
|
|
config->vinst_ctrl = BIT(0);
|
2020-09-17 03:17:28 +08:00
|
|
|
|
|
|
|
/* TRCVICTLR::EXLEVEL_NS:EXLEVELS: Set kernel / user filtering */
|
|
|
|
etm4_set_victlr_access(config);
|
2016-08-26 05:19:13 +08:00
|
|
|
}
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2018-09-21 03:18:00 +08:00
|
|
|
static u64 etm4_get_ns_access_type(struct etmv4_config *config)
|
2016-08-26 05:19:13 +08:00
|
|
|
{
|
2016-08-26 05:19:15 +08:00
|
|
|
u64 access_type = 0;
|
2015-07-31 23:37:28 +08:00
|
|
|
|
2016-08-26 05:19:16 +08:00
|
|
|
/*
|
2021-02-02 02:13:38 +08:00
|
|
|
* EXLEVEL_NS, for NonSecure Exception levels.
|
|
|
|
* The mask here is a generic value and must be
|
|
|
|
* shifted to the corresponding field for the registers
|
2016-08-26 05:19:16 +08:00
|
|
|
*/
|
2018-09-21 03:18:00 +08:00
|
|
|
if (!is_kernel_in_hyp_mode()) {
|
|
|
|
/* Stay away from hypervisor mode for non-VHE */
|
|
|
|
access_type = ETM_EXLEVEL_NS_HYP;
|
|
|
|
if (config->mode & ETM_MODE_EXCL_KERN)
|
|
|
|
access_type |= ETM_EXLEVEL_NS_OS;
|
|
|
|
} else if (config->mode & ETM_MODE_EXCL_KERN) {
|
|
|
|
access_type = ETM_EXLEVEL_NS_HYP;
|
|
|
|
}
|
2016-08-26 05:19:16 +08:00
|
|
|
|
|
|
|
if (config->mode & ETM_MODE_EXCL_USER)
|
|
|
|
access_type |= ETM_EXLEVEL_NS_APP;
|
|
|
|
|
2018-09-21 03:18:00 +08:00
|
|
|
return access_type;
|
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:38 +08:00
|
|
|
/*
|
|
|
|
* Construct the exception level masks for a given config.
|
|
|
|
* This must be shifted to the corresponding register field
|
|
|
|
* for usage.
|
|
|
|
*/
|
2018-09-21 03:18:00 +08:00
|
|
|
static u64 etm4_get_access_type(struct etmv4_config *config)
|
|
|
|
{
|
2021-02-02 02:13:38 +08:00
|
|
|
/* All Secure exception levels are excluded from the trace */
|
|
|
|
return etm4_get_ns_access_type(config) | (u64)config->s_ex_level;
|
|
|
|
}
|
2016-08-26 05:19:14 +08:00
|
|
|
|
2021-02-02 02:13:38 +08:00
|
|
|
static u64 etm4_get_comparator_access_type(struct etmv4_config *config)
|
|
|
|
{
|
|
|
|
return etm4_get_access_type(config) << TRCACATR_EXLEVEL_SHIFT;
|
2016-08-26 05:19:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void etm4_set_comparator_filter(struct etmv4_config *config,
|
|
|
|
u64 start, u64 stop, int comparator)
|
|
|
|
{
|
2021-02-02 02:13:38 +08:00
|
|
|
u64 access_type = etm4_get_comparator_access_type(config);
|
2016-08-26 05:19:16 +08:00
|
|
|
|
2016-08-26 05:19:14 +08:00
|
|
|
/* First half of default address comparator */
|
2016-08-26 05:19:15 +08:00
|
|
|
config->addr_val[comparator] = start;
|
|
|
|
config->addr_acc[comparator] = access_type;
|
|
|
|
config->addr_type[comparator] = ETM_ADDR_TYPE_RANGE;
|
2016-08-26 05:19:14 +08:00
|
|
|
|
|
|
|
/* Second half of default address comparator */
|
2016-08-26 05:19:15 +08:00
|
|
|
config->addr_val[comparator + 1] = stop;
|
|
|
|
config->addr_acc[comparator + 1] = access_type;
|
|
|
|
config->addr_type[comparator + 1] = ETM_ADDR_TYPE_RANGE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Configure the ViewInst function to include this address range
|
|
|
|
* comparator.
|
|
|
|
*
|
|
|
|
* @comparator is divided by two since it is the index in the
|
|
|
|
* etmv4_config::addr_val array but register TRCVIIECTLR deals with
|
|
|
|
* address range comparator _pairs_.
|
|
|
|
*
|
|
|
|
* Therefore:
|
|
|
|
* index 0 -> compatator pair 0
|
|
|
|
* index 2 -> comparator pair 1
|
|
|
|
* index 4 -> comparator pair 2
|
|
|
|
* ...
|
|
|
|
* index 14 -> comparator pair 7
|
|
|
|
*/
|
|
|
|
config->viiectlr |= BIT(comparator / 2);
|
|
|
|
}
|
|
|
|
|
2016-08-26 05:19:18 +08:00
|
|
|
static void etm4_set_start_stop_filter(struct etmv4_config *config,
|
|
|
|
u64 address, int comparator,
|
|
|
|
enum etm_addr_type type)
|
|
|
|
{
|
|
|
|
int shift;
|
2021-02-02 02:13:38 +08:00
|
|
|
u64 access_type = etm4_get_comparator_access_type(config);
|
2016-08-26 05:19:18 +08:00
|
|
|
|
|
|
|
/* Configure the comparator */
|
|
|
|
config->addr_val[comparator] = address;
|
|
|
|
config->addr_acc[comparator] = access_type;
|
|
|
|
config->addr_type[comparator] = type;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Configure ViewInst Start-Stop control register.
|
|
|
|
* Addresses configured to start tracing go from bit 0 to n-1,
|
|
|
|
* while those configured to stop tracing from 16 to 16 + n-1.
|
|
|
|
*/
|
|
|
|
shift = (type == ETM_ADDR_TYPE_START ? 0 : 16);
|
|
|
|
config->vissctlr |= BIT(shift + comparator);
|
|
|
|
}
|
|
|
|
|
2016-08-26 05:19:15 +08:00
|
|
|
static void etm4_set_default_filter(struct etmv4_config *config)
|
|
|
|
{
|
2020-05-19 02:02:33 +08:00
|
|
|
/* Trace everything 'default' filter achieved by no filtering */
|
|
|
|
config->viiectlr = 0x0;
|
2016-04-06 01:53:45 +08:00
|
|
|
|
2016-08-26 05:19:14 +08:00
|
|
|
/*
|
|
|
|
* TRCVICTLR::SSSTATUS == 1, the start-stop logic is
|
|
|
|
* in the started state
|
|
|
|
*/
|
|
|
|
config->vinst_ctrl |= BIT(9);
|
2019-11-05 02:12:44 +08:00
|
|
|
config->mode |= ETM_MODE_VIEWINST_STARTSTOP;
|
2016-08-26 05:19:14 +08:00
|
|
|
|
|
|
|
/* No start-stop filtering for ViewInst */
|
2016-04-06 01:53:45 +08:00
|
|
|
config->vissctlr = 0x0;
|
2015-05-14 00:34:09 +08:00
|
|
|
}
|
|
|
|
|
2016-08-26 05:19:13 +08:00
|
|
|
static void etm4_set_default(struct etmv4_config *config)
|
|
|
|
{
|
|
|
|
if (WARN_ON_ONCE(!config))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make default initialisation trace everything
|
|
|
|
*
|
2020-05-19 02:02:33 +08:00
|
|
|
* This is done by a minimum default config sufficient to enable
|
|
|
|
* full instruction trace - with a default filter for trace all
|
|
|
|
* achieved by having no filtering.
|
2016-08-26 05:19:13 +08:00
|
|
|
*/
|
|
|
|
etm4_set_default_config(config);
|
|
|
|
etm4_set_default_filter(config);
|
|
|
|
}
|
|
|
|
|
2016-08-26 05:19:17 +08:00
|
|
|
static int etm4_get_next_comparator(struct etmv4_drvdata *drvdata, u32 type)
|
|
|
|
{
|
|
|
|
int nr_comparator, index = 0;
|
|
|
|
struct etmv4_config *config = &drvdata->config;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nr_addr_cmp holds the number of comparator _pair_, so time 2
|
|
|
|
* for the total number of comparators.
|
|
|
|
*/
|
|
|
|
nr_comparator = drvdata->nr_addr_cmp * 2;
|
|
|
|
|
|
|
|
/* Go through the tally of comparators looking for a free one. */
|
|
|
|
while (index < nr_comparator) {
|
|
|
|
switch (type) {
|
|
|
|
case ETM_ADDR_TYPE_RANGE:
|
|
|
|
if (config->addr_type[index] == ETM_ADDR_TYPE_NONE &&
|
|
|
|
config->addr_type[index + 1] == ETM_ADDR_TYPE_NONE)
|
|
|
|
return index;
|
|
|
|
|
|
|
|
/* Address range comparators go in pairs */
|
|
|
|
index += 2;
|
|
|
|
break;
|
2016-08-26 05:19:18 +08:00
|
|
|
case ETM_ADDR_TYPE_START:
|
|
|
|
case ETM_ADDR_TYPE_STOP:
|
|
|
|
if (config->addr_type[index] == ETM_ADDR_TYPE_NONE)
|
|
|
|
return index;
|
|
|
|
|
|
|
|
/* Start/stop address can have odd indexes */
|
|
|
|
index += 1;
|
|
|
|
break;
|
2016-08-26 05:19:17 +08:00
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we are here all the comparators have been used. */
|
|
|
|
return -ENOSPC;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int etm4_set_event_filters(struct etmv4_drvdata *drvdata,
|
|
|
|
struct perf_event *event)
|
|
|
|
{
|
|
|
|
int i, comparator, ret = 0;
|
2016-08-26 05:19:18 +08:00
|
|
|
u64 address;
|
2016-08-26 05:19:17 +08:00
|
|
|
struct etmv4_config *config = &drvdata->config;
|
|
|
|
struct etm_filters *filters = event->hw.addr_filters;
|
|
|
|
|
|
|
|
if (!filters)
|
|
|
|
goto default_filter;
|
|
|
|
|
|
|
|
/* Sync events with what Perf got */
|
|
|
|
perf_event_addr_filters_sync(event);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If there are no filters to deal with simply go ahead with
|
|
|
|
* the default filter, i.e the entire address range.
|
|
|
|
*/
|
|
|
|
if (!filters->nr_filters)
|
|
|
|
goto default_filter;
|
|
|
|
|
|
|
|
for (i = 0; i < filters->nr_filters; i++) {
|
|
|
|
struct etm_filter *filter = &filters->etm_filter[i];
|
|
|
|
enum etm_addr_type type = filter->type;
|
|
|
|
|
|
|
|
/* See if a comparator is free. */
|
|
|
|
comparator = etm4_get_next_comparator(drvdata, type);
|
|
|
|
if (comparator < 0) {
|
|
|
|
ret = comparator;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case ETM_ADDR_TYPE_RANGE:
|
|
|
|
etm4_set_comparator_filter(config,
|
|
|
|
filter->start_addr,
|
|
|
|
filter->stop_addr,
|
|
|
|
comparator);
|
|
|
|
/*
|
|
|
|
* TRCVICTLR::SSSTATUS == 1, the start-stop logic is
|
|
|
|
* in the started state
|
|
|
|
*/
|
|
|
|
config->vinst_ctrl |= BIT(9);
|
|
|
|
|
|
|
|
/* No start-stop filtering for ViewInst */
|
|
|
|
config->vissctlr = 0x0;
|
|
|
|
break;
|
2016-08-26 05:19:18 +08:00
|
|
|
case ETM_ADDR_TYPE_START:
|
|
|
|
case ETM_ADDR_TYPE_STOP:
|
|
|
|
/* Get the right start or stop address */
|
|
|
|
address = (type == ETM_ADDR_TYPE_START ?
|
|
|
|
filter->start_addr :
|
|
|
|
filter->stop_addr);
|
|
|
|
|
|
|
|
/* Configure comparator */
|
|
|
|
etm4_set_start_stop_filter(config, address,
|
|
|
|
comparator, type);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If filters::ssstatus == 1, trace acquisition was
|
|
|
|
* started but the process was yanked away before the
|
|
|
|
* the stop address was hit. As such the start/stop
|
|
|
|
* logic needs to be re-started so that tracing can
|
|
|
|
* resume where it left.
|
|
|
|
*
|
|
|
|
* The start/stop logic status when a process is
|
|
|
|
* scheduled out is checked in function
|
|
|
|
* etm4_disable_perf().
|
|
|
|
*/
|
|
|
|
if (filters->ssstatus)
|
|
|
|
config->vinst_ctrl |= BIT(9);
|
|
|
|
|
|
|
|
/* No include/exclude filtering for ViewInst */
|
|
|
|
config->viiectlr = 0x0;
|
|
|
|
break;
|
2016-08-26 05:19:17 +08:00
|
|
|
default:
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
|
|
default_filter:
|
|
|
|
etm4_set_default_filter(config);
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-04-06 01:53:48 +08:00
|
|
|
void etm4_config_trace_mode(struct etmv4_config *config)
|
|
|
|
{
|
2020-09-17 03:17:28 +08:00
|
|
|
u32 mode;
|
2016-04-06 01:53:48 +08:00
|
|
|
|
|
|
|
mode = config->mode;
|
|
|
|
mode &= (ETM_MODE_EXCL_KERN | ETM_MODE_EXCL_USER);
|
|
|
|
|
|
|
|
/* excluding kernel AND user space doesn't make sense */
|
|
|
|
WARN_ON_ONCE(mode == (ETM_MODE_EXCL_KERN | ETM_MODE_EXCL_USER));
|
|
|
|
|
|
|
|
/* nothing to do if neither flags are set */
|
|
|
|
if (!(mode & ETM_MODE_EXCL_KERN) && !(mode & ETM_MODE_EXCL_USER))
|
|
|
|
return;
|
|
|
|
|
2020-09-17 03:17:28 +08:00
|
|
|
etm4_set_victlr_access(config);
|
2016-04-06 01:53:48 +08:00
|
|
|
}
|
|
|
|
|
2016-07-14 01:16:55 +08:00
|
|
|
static int etm4_online_cpu(unsigned int cpu)
|
2015-05-14 00:34:09 +08:00
|
|
|
{
|
|
|
|
if (!etmdrvdata[cpu])
|
2016-07-14 01:16:55 +08:00
|
|
|
return 0;
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2016-07-14 01:16:55 +08:00
|
|
|
if (etmdrvdata[cpu]->boot_enable && !etmdrvdata[cpu]->sticky_enable)
|
|
|
|
coresight_enable(etmdrvdata[cpu]->csdev);
|
|
|
|
return 0;
|
|
|
|
}
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2016-07-14 01:16:55 +08:00
|
|
|
static int etm4_starting_cpu(unsigned int cpu)
|
|
|
|
{
|
|
|
|
if (!etmdrvdata[cpu])
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
spin_lock(&etmdrvdata[cpu]->spinlock);
|
2019-08-30 04:28:34 +08:00
|
|
|
if (!etmdrvdata[cpu]->os_unlock)
|
2016-07-14 01:16:55 +08:00
|
|
|
etm4_os_unlock(etmdrvdata[cpu]);
|
|
|
|
|
|
|
|
if (local_read(&etmdrvdata[cpu]->mode))
|
|
|
|
etm4_enable_hw(etmdrvdata[cpu]);
|
|
|
|
spin_unlock(&etmdrvdata[cpu]->spinlock);
|
|
|
|
return 0;
|
2015-05-14 00:34:09 +08:00
|
|
|
}
|
|
|
|
|
2016-07-14 01:16:55 +08:00
|
|
|
static int etm4_dying_cpu(unsigned int cpu)
|
|
|
|
{
|
|
|
|
if (!etmdrvdata[cpu])
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
spin_lock(&etmdrvdata[cpu]->spinlock);
|
|
|
|
if (local_read(&etmdrvdata[cpu]->mode))
|
|
|
|
etm4_disable_hw(etmdrvdata[cpu]);
|
|
|
|
spin_unlock(&etmdrvdata[cpu]->spinlock);
|
|
|
|
return 0;
|
|
|
|
}
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2016-04-06 01:53:45 +08:00
|
|
|
static void etm4_init_trace_id(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
|
|
|
drvdata->trcid = coresight_get_trace_id(drvdata->cpu);
|
|
|
|
}
|
|
|
|
|
2021-09-14 18:26:32 +08:00
|
|
|
static int __etm4_cpu_save(struct etmv4_drvdata *drvdata)
|
2019-11-05 02:12:38 +08:00
|
|
|
{
|
|
|
|
int i, ret = 0;
|
|
|
|
struct etmv4_save_state *state;
|
2021-02-02 02:13:27 +08:00
|
|
|
struct coresight_device *csdev = drvdata->csdev;
|
|
|
|
struct csdev_access *csa;
|
|
|
|
struct device *etm_dev;
|
|
|
|
|
|
|
|
if (WARN_ON(!csdev))
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
etm_dev = &csdev->dev;
|
|
|
|
csa = &csdev->access;
|
2019-11-05 02:12:38 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* As recommended by 3.4.1 ("The procedure when powering down the PE")
|
|
|
|
* of ARM IHI 0064D
|
|
|
|
*/
|
|
|
|
dsb(sy);
|
|
|
|
isb();
|
|
|
|
|
2021-02-02 02:13:36 +08:00
|
|
|
etm4_cs_unlock(drvdata, csa);
|
2019-11-05 02:12:38 +08:00
|
|
|
/* Lock the OS lock to disable trace and external debugger access */
|
|
|
|
etm4_os_lock(drvdata);
|
|
|
|
|
|
|
|
/* wait for TRCSTATR.PMSTABLE to go up */
|
2021-02-02 02:13:27 +08:00
|
|
|
if (coresight_timeout(csa, TRCSTATR, TRCSTATR_PMSTABLE_BIT, 1)) {
|
2019-11-05 02:12:38 +08:00
|
|
|
dev_err(etm_dev,
|
|
|
|
"timeout while waiting for PM Stable Status\n");
|
|
|
|
etm4_os_unlock(drvdata);
|
|
|
|
ret = -EBUSY;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
state = drvdata->save_state;
|
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcprgctlr = etm4x_read32(csa, TRCPRGCTLR);
|
2020-11-28 01:52:47 +08:00
|
|
|
if (drvdata->nr_pe)
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcprocselr = etm4x_read32(csa, TRCPROCSELR);
|
|
|
|
state->trcconfigr = etm4x_read32(csa, TRCCONFIGR);
|
|
|
|
state->trcauxctlr = etm4x_read32(csa, TRCAUXCTLR);
|
|
|
|
state->trceventctl0r = etm4x_read32(csa, TRCEVENTCTL0R);
|
|
|
|
state->trceventctl1r = etm4x_read32(csa, TRCEVENTCTL1R);
|
2021-02-02 02:13:51 +08:00
|
|
|
if (drvdata->stallctl)
|
|
|
|
state->trcstallctlr = etm4x_read32(csa, TRCSTALLCTLR);
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trctsctlr = etm4x_read32(csa, TRCTSCTLR);
|
|
|
|
state->trcsyncpr = etm4x_read32(csa, TRCSYNCPR);
|
|
|
|
state->trcccctlr = etm4x_read32(csa, TRCCCCTLR);
|
|
|
|
state->trcbbctlr = etm4x_read32(csa, TRCBBCTLR);
|
|
|
|
state->trctraceidr = etm4x_read32(csa, TRCTRACEIDR);
|
|
|
|
state->trcqctlr = etm4x_read32(csa, TRCQCTLR);
|
|
|
|
|
|
|
|
state->trcvictlr = etm4x_read32(csa, TRCVICTLR);
|
|
|
|
state->trcviiectlr = etm4x_read32(csa, TRCVIIECTLR);
|
|
|
|
state->trcvissctlr = etm4x_read32(csa, TRCVISSCTLR);
|
2020-11-28 01:52:48 +08:00
|
|
|
if (drvdata->nr_pe_cmp)
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcvipcssctlr = etm4x_read32(csa, TRCVIPCSSCTLR);
|
|
|
|
state->trcvdctlr = etm4x_read32(csa, TRCVDCTLR);
|
|
|
|
state->trcvdsacctlr = etm4x_read32(csa, TRCVDSACCTLR);
|
|
|
|
state->trcvdarcctlr = etm4x_read32(csa, TRCVDARCCTLR);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2020-09-17 03:17:32 +08:00
|
|
|
for (i = 0; i < drvdata->nrseqstate - 1; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcseqevr[i] = etm4x_read32(csa, TRCSEQEVRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcseqrstevr = etm4x_read32(csa, TRCSEQRSTEVR);
|
|
|
|
state->trcseqstr = etm4x_read32(csa, TRCSEQSTR);
|
|
|
|
state->trcextinselr = etm4x_read32(csa, TRCEXTINSELR);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
|
|
|
for (i = 0; i < drvdata->nr_cntr; i++) {
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trccntrldvr[i] = etm4x_read32(csa, TRCCNTRLDVRn(i));
|
|
|
|
state->trccntctlr[i] = etm4x_read32(csa, TRCCNTCTLRn(i));
|
|
|
|
state->trccntvr[i] = etm4x_read32(csa, TRCCNTVRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < drvdata->nr_resource * 2; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcrsctlr[i] = etm4x_read32(csa, TRCRSCTLRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
|
|
|
|
for (i = 0; i < drvdata->nr_ss_cmp; i++) {
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcssccr[i] = etm4x_read32(csa, TRCSSCCRn(i));
|
|
|
|
state->trcsscsr[i] = etm4x_read32(csa, TRCSSCSRn(i));
|
2021-02-02 02:13:23 +08:00
|
|
|
if (etm4x_sspcicrn_present(drvdata, i))
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcsspcicr[i] = etm4x_read32(csa, TRCSSPCICRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < drvdata->nr_addr_cmp * 2; i++) {
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcacvr[i] = etm4x_read64(csa, TRCACVRn(i));
|
|
|
|
state->trcacatr[i] = etm4x_read64(csa, TRCACATRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Data trace stream is architecturally prohibited for A profile cores
|
|
|
|
* so we don't save (or later restore) trcdvcvr and trcdvcmr - As per
|
|
|
|
* section 1.3.4 ("Possible functional configurations of an ETMv4 trace
|
|
|
|
* unit") of ARM IHI 0064D.
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (i = 0; i < drvdata->numcidc; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trccidcvr[i] = etm4x_read64(csa, TRCCIDCVRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
|
|
|
|
for (i = 0; i < drvdata->numvmidc; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcvmidcvr[i] = etm4x_read64(csa, TRCVMIDCVRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trccidcctlr0 = etm4x_read32(csa, TRCCIDCCTLR0);
|
2020-11-28 01:52:45 +08:00
|
|
|
if (drvdata->numcidc > 4)
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trccidcctlr1 = etm4x_read32(csa, TRCCIDCCTLR1);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcvmidcctlr0 = etm4x_read32(csa, TRCVMIDCCTLR0);
|
2020-11-28 01:52:44 +08:00
|
|
|
if (drvdata->numvmidc > 4)
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcvmidcctlr0 = etm4x_read32(csa, TRCVMIDCCTLR1);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcclaimset = etm4x_read32(csa, TRCCLAIMCLR);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:24 +08:00
|
|
|
if (!drvdata->skip_power_up)
|
2021-02-02 02:13:30 +08:00
|
|
|
state->trcpdcr = etm4x_read32(csa, TRCPDCR);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
|
|
|
/* wait for TRCSTATR.IDLE to go up */
|
2021-02-02 02:13:27 +08:00
|
|
|
if (coresight_timeout(csa, TRCSTATR, TRCSTATR_IDLE_BIT, 1)) {
|
2019-11-05 02:12:38 +08:00
|
|
|
dev_err(etm_dev,
|
|
|
|
"timeout while waiting for Idle Trace Status\n");
|
|
|
|
etm4_os_unlock(drvdata);
|
|
|
|
ret = -EBUSY;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
drvdata->state_needs_restore = true;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Power can be removed from the trace unit now. We do this to
|
|
|
|
* potentially save power on systems that respect the TRCPDCR_PU
|
|
|
|
* despite requesting software to save/restore state.
|
|
|
|
*/
|
2021-02-02 02:13:24 +08:00
|
|
|
if (!drvdata->skip_power_up)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, (state->trcpdcr & ~TRCPDCR_PU),
|
|
|
|
TRCPDCR);
|
2019-11-05 02:12:38 +08:00
|
|
|
out:
|
2021-02-02 02:13:36 +08:00
|
|
|
etm4_cs_lock(drvdata, csa);
|
2019-11-05 02:12:38 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-09-14 18:26:32 +08:00
|
|
|
static int etm4_cpu_save(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
/* Save the TRFCR irrespective of whether the ETM is ON */
|
2021-09-14 18:26:33 +08:00
|
|
|
if (drvdata->trfcr)
|
2021-09-14 18:26:32 +08:00
|
|
|
drvdata->save_trfcr = read_trfcr();
|
|
|
|
/*
|
|
|
|
* Save and restore the ETM Trace registers only if
|
|
|
|
* the ETM is active.
|
|
|
|
*/
|
|
|
|
if (local_read(&drvdata->mode) && drvdata->save_state)
|
|
|
|
ret = __etm4_cpu_save(drvdata);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __etm4_cpu_restore(struct etmv4_drvdata *drvdata)
|
2019-11-05 02:12:38 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct etmv4_save_state *state = drvdata->save_state;
|
2021-02-02 02:13:30 +08:00
|
|
|
struct csdev_access tmp_csa = CSDEV_ACCESS_IOMEM(drvdata->base);
|
|
|
|
struct csdev_access *csa = &tmp_csa;
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:36 +08:00
|
|
|
etm4_cs_unlock(drvdata, csa);
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcclaimset, TRCCLAIMSET);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcprgctlr, TRCPRGCTLR);
|
2020-11-28 01:52:47 +08:00
|
|
|
if (drvdata->nr_pe)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcprocselr, TRCPROCSELR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcconfigr, TRCCONFIGR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcauxctlr, TRCAUXCTLR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trceventctl0r, TRCEVENTCTL0R);
|
|
|
|
etm4x_relaxed_write32(csa, state->trceventctl1r, TRCEVENTCTL1R);
|
2021-02-02 02:13:51 +08:00
|
|
|
if (drvdata->stallctl)
|
|
|
|
etm4x_relaxed_write32(csa, state->trcstallctlr, TRCSTALLCTLR);
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trctsctlr, TRCTSCTLR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcsyncpr, TRCSYNCPR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcccctlr, TRCCCCTLR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcbbctlr, TRCBBCTLR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trctraceidr, TRCTRACEIDR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcqctlr, TRCQCTLR);
|
|
|
|
|
|
|
|
etm4x_relaxed_write32(csa, state->trcvictlr, TRCVICTLR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcviiectlr, TRCVIIECTLR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcvissctlr, TRCVISSCTLR);
|
2020-11-28 01:52:48 +08:00
|
|
|
if (drvdata->nr_pe_cmp)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcvipcssctlr, TRCVIPCSSCTLR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcvdctlr, TRCVDCTLR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcvdsacctlr, TRCVDSACCTLR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcvdarcctlr, TRCVDARCCTLR);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2020-09-17 03:17:32 +08:00
|
|
|
for (i = 0; i < drvdata->nrseqstate - 1; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcseqevr[i], TRCSEQEVRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcseqrstevr, TRCSEQRSTEVR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcseqstr, TRCSEQSTR);
|
|
|
|
etm4x_relaxed_write32(csa, state->trcextinselr, TRCEXTINSELR);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
|
|
|
for (i = 0; i < drvdata->nr_cntr; i++) {
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trccntrldvr[i], TRCCNTRLDVRn(i));
|
|
|
|
etm4x_relaxed_write32(csa, state->trccntctlr[i], TRCCNTCTLRn(i));
|
|
|
|
etm4x_relaxed_write32(csa, state->trccntvr[i], TRCCNTVRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < drvdata->nr_resource * 2; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcrsctlr[i], TRCRSCTLRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
|
|
|
|
for (i = 0; i < drvdata->nr_ss_cmp; i++) {
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcssccr[i], TRCSSCCRn(i));
|
|
|
|
etm4x_relaxed_write32(csa, state->trcsscsr[i], TRCSSCSRn(i));
|
2021-02-02 02:13:23 +08:00
|
|
|
if (etm4x_sspcicrn_present(drvdata, i))
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcsspcicr[i], TRCSSPCICRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < drvdata->nr_addr_cmp * 2; i++) {
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write64(csa, state->trcacvr[i], TRCACVRn(i));
|
|
|
|
etm4x_relaxed_write64(csa, state->trcacatr[i], TRCACATRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < drvdata->numcidc; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write64(csa, state->trccidcvr[i], TRCCIDCVRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
|
|
|
|
for (i = 0; i < drvdata->numvmidc; i++)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write64(csa, state->trcvmidcvr[i], TRCVMIDCVRn(i));
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trccidcctlr0, TRCCIDCCTLR0);
|
2020-11-28 01:52:45 +08:00
|
|
|
if (drvdata->numcidc > 4)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trccidcctlr1, TRCCIDCCTLR1);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcvmidcctlr0, TRCVMIDCCTLR0);
|
2020-11-28 01:52:44 +08:00
|
|
|
if (drvdata->numvmidc > 4)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcvmidcctlr0, TRCVMIDCCTLR1);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcclaimset, TRCCLAIMSET);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
2021-02-02 02:13:24 +08:00
|
|
|
if (!drvdata->skip_power_up)
|
2021-02-02 02:13:30 +08:00
|
|
|
etm4x_relaxed_write32(csa, state->trcpdcr, TRCPDCR);
|
2019-11-05 02:12:38 +08:00
|
|
|
|
|
|
|
drvdata->state_needs_restore = false;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* As recommended by section 4.3.7 ("Synchronization when using the
|
|
|
|
* memory-mapped interface") of ARM IHI 0064D
|
|
|
|
*/
|
|
|
|
dsb(sy);
|
|
|
|
isb();
|
|
|
|
|
|
|
|
/* Unlock the OS lock to re-enable trace and external debug access */
|
|
|
|
etm4_os_unlock(drvdata);
|
2021-02-02 02:13:36 +08:00
|
|
|
etm4_cs_lock(drvdata, csa);
|
2019-11-05 02:12:38 +08:00
|
|
|
}
|
|
|
|
|
2021-09-14 18:26:32 +08:00
|
|
|
static void etm4_cpu_restore(struct etmv4_drvdata *drvdata)
|
|
|
|
{
|
2021-09-14 18:26:33 +08:00
|
|
|
if (drvdata->trfcr)
|
2021-09-14 18:26:32 +08:00
|
|
|
write_trfcr(drvdata->save_trfcr);
|
|
|
|
if (drvdata->state_needs_restore)
|
|
|
|
__etm4_cpu_restore(drvdata);
|
|
|
|
}
|
|
|
|
|
2019-11-05 02:12:38 +08:00
|
|
|
static int etm4_cpu_pm_notify(struct notifier_block *nb, unsigned long cmd,
|
|
|
|
void *v)
|
|
|
|
{
|
|
|
|
struct etmv4_drvdata *drvdata;
|
|
|
|
unsigned int cpu = smp_processor_id();
|
|
|
|
|
|
|
|
if (!etmdrvdata[cpu])
|
|
|
|
return NOTIFY_OK;
|
|
|
|
|
|
|
|
drvdata = etmdrvdata[cpu];
|
|
|
|
|
|
|
|
if (WARN_ON_ONCE(drvdata->cpu != cpu))
|
|
|
|
return NOTIFY_BAD;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case CPU_PM_ENTER:
|
2021-09-14 18:26:32 +08:00
|
|
|
if (etm4_cpu_save(drvdata))
|
|
|
|
return NOTIFY_BAD;
|
2019-11-05 02:12:38 +08:00
|
|
|
break;
|
|
|
|
case CPU_PM_EXIT:
|
|
|
|
case CPU_PM_ENTER_FAILED:
|
2021-09-14 18:26:32 +08:00
|
|
|
etm4_cpu_restore(drvdata);
|
2019-11-05 02:12:38 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return NOTIFY_DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NOTIFY_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct notifier_block etm4_cpu_pm_nb = {
|
|
|
|
.notifier_call = etm4_cpu_pm_notify,
|
|
|
|
};
|
|
|
|
|
2020-09-17 03:17:22 +08:00
|
|
|
/* Setup PM. Deals with error conditions and counts */
|
|
|
|
static int __init etm4_pm_setup(void)
|
2019-11-05 02:12:38 +08:00
|
|
|
{
|
2020-07-02 00:08:52 +08:00
|
|
|
int ret;
|
2019-12-14 06:31:07 +08:00
|
|
|
|
2020-07-02 00:08:52 +08:00
|
|
|
ret = cpu_pm_register_notifier(&etm4_cpu_pm_nb);
|
|
|
|
if (ret)
|
2020-09-17 03:17:22 +08:00
|
|
|
return ret;
|
2020-07-02 00:08:52 +08:00
|
|
|
|
2020-09-17 03:17:22 +08:00
|
|
|
ret = cpuhp_setup_state_nocalls(CPUHP_AP_ARM_CORESIGHT_STARTING,
|
|
|
|
"arm/coresight4:starting",
|
|
|
|
etm4_starting_cpu, etm4_dying_cpu);
|
2020-07-02 00:08:52 +08:00
|
|
|
|
|
|
|
if (ret)
|
|
|
|
goto unregister_notifier;
|
|
|
|
|
2020-09-17 03:17:22 +08:00
|
|
|
ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
|
|
|
|
"arm/coresight4:online",
|
|
|
|
etm4_online_cpu, NULL);
|
2020-07-02 00:08:52 +08:00
|
|
|
|
|
|
|
/* HP dyn state ID returned in ret on success */
|
|
|
|
if (ret > 0) {
|
|
|
|
hp_online = ret;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* failed dyn state - remove others */
|
2020-09-17 03:17:22 +08:00
|
|
|
cpuhp_remove_state_nocalls(CPUHP_AP_ARM_CORESIGHT_STARTING);
|
2020-07-02 00:08:52 +08:00
|
|
|
|
|
|
|
unregister_notifier:
|
|
|
|
cpu_pm_unregister_notifier(&etm4_cpu_pm_nb);
|
|
|
|
return ret;
|
2019-11-05 02:12:38 +08:00
|
|
|
}
|
|
|
|
|
2020-09-29 00:34:58 +08:00
|
|
|
static void etm4_pm_clear(void)
|
2019-11-05 02:12:38 +08:00
|
|
|
{
|
2020-07-02 00:08:52 +08:00
|
|
|
cpu_pm_unregister_notifier(&etm4_cpu_pm_nb);
|
|
|
|
cpuhp_remove_state_nocalls(CPUHP_AP_ARM_CORESIGHT_STARTING);
|
|
|
|
if (hp_online) {
|
|
|
|
cpuhp_remove_state_nocalls(hp_online);
|
|
|
|
hp_online = 0;
|
|
|
|
}
|
2019-11-05 02:12:38 +08:00
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:45 +08:00
|
|
|
static int etm4_probe(struct device *dev, void __iomem *base, u32 etm_pid)
|
2015-05-14 00:34:09 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct coresight_platform_data *pdata = NULL;
|
|
|
|
struct etmv4_drvdata *drvdata;
|
2016-08-26 05:19:05 +08:00
|
|
|
struct coresight_desc desc = { 0 };
|
2021-02-02 02:13:40 +08:00
|
|
|
struct etm4_init_arg init_arg = { 0 };
|
2021-04-06 00:43:00 +08:00
|
|
|
u8 major, minor;
|
|
|
|
char *type_name;
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
|
|
|
|
if (!drvdata)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
dev_set_drvdata(dev, drvdata);
|
|
|
|
|
2019-11-05 02:12:38 +08:00
|
|
|
if (pm_save_enable == PARAM_PM_SAVE_FIRMWARE)
|
|
|
|
pm_save_enable = coresight_loses_context_with_cpu(dev) ?
|
|
|
|
PARAM_PM_SAVE_SELF_HOSTED : PARAM_PM_SAVE_NEVER;
|
|
|
|
|
|
|
|
if (pm_save_enable != PARAM_PM_SAVE_NEVER) {
|
|
|
|
drvdata->save_state = devm_kmalloc(dev,
|
|
|
|
sizeof(struct etmv4_save_state), GFP_KERNEL);
|
|
|
|
if (!drvdata->save_state)
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
drvdata->base = base;
|
|
|
|
|
|
|
|
spin_lock_init(&drvdata->spinlock);
|
|
|
|
|
2019-06-20 03:52:56 +08:00
|
|
|
drvdata->cpu = coresight_get_cpu(dev);
|
2019-07-04 17:53:05 +08:00
|
|
|
if (drvdata->cpu < 0)
|
|
|
|
return drvdata->cpu;
|
|
|
|
|
2021-02-02 02:13:40 +08:00
|
|
|
init_arg.drvdata = drvdata;
|
|
|
|
init_arg.csa = &desc.access;
|
2021-02-02 02:13:46 +08:00
|
|
|
init_arg.pid = etm_pid;
|
2021-02-02 02:13:40 +08:00
|
|
|
|
2015-05-14 00:34:09 +08:00
|
|
|
if (smp_call_function_single(drvdata->cpu,
|
2021-02-02 02:13:40 +08:00
|
|
|
etm4_init_arch_data, &init_arg, 1))
|
2015-05-14 00:34:09 +08:00
|
|
|
dev_err(dev, "ETM arch init failed\n");
|
|
|
|
|
2021-02-02 02:13:41 +08:00
|
|
|
if (!drvdata->arch)
|
2020-09-29 00:34:58 +08:00
|
|
|
return -EINVAL;
|
2016-04-06 01:53:45 +08:00
|
|
|
|
2021-02-02 02:13:47 +08:00
|
|
|
/* TRCPDCR is not accessible with system instructions. */
|
|
|
|
if (!desc.access.io_mem ||
|
|
|
|
fwnode_property_present(dev_fwnode(dev), "qcom,skip-power-up"))
|
|
|
|
drvdata->skip_power_up = true;
|
|
|
|
|
2021-04-06 00:43:00 +08:00
|
|
|
major = ETM_ARCH_MAJOR_VERSION(drvdata->arch);
|
|
|
|
minor = ETM_ARCH_MINOR_VERSION(drvdata->arch);
|
|
|
|
|
|
|
|
if (etm4x_is_ete(drvdata)) {
|
|
|
|
type_name = "ete";
|
|
|
|
/* ETE v1 has major version == 0b101. Adjust this for logging.*/
|
|
|
|
major -= 4;
|
|
|
|
} else {
|
|
|
|
type_name = "etm";
|
|
|
|
}
|
|
|
|
|
|
|
|
desc.name = devm_kasprintf(dev, GFP_KERNEL,
|
|
|
|
"%s%d", type_name, drvdata->cpu);
|
|
|
|
if (!desc.name)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2016-04-06 01:53:45 +08:00
|
|
|
etm4_init_trace_id(drvdata);
|
|
|
|
etm4_set_default(&drvdata->config);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2019-06-20 03:53:00 +08:00
|
|
|
pdata = coresight_get_platform_data(dev);
|
2020-09-29 00:34:58 +08:00
|
|
|
if (IS_ERR(pdata))
|
|
|
|
return PTR_ERR(pdata);
|
|
|
|
|
2021-02-02 02:13:45 +08:00
|
|
|
dev->platform_data = pdata;
|
2019-06-20 03:53:00 +08:00
|
|
|
|
2016-08-26 05:19:05 +08:00
|
|
|
desc.type = CORESIGHT_DEV_TYPE_SOURCE;
|
|
|
|
desc.subtype.source_subtype = CORESIGHT_DEV_SUBTYPE_SOURCE_PROC;
|
|
|
|
desc.ops = &etm4_cs_ops;
|
|
|
|
desc.pdata = pdata;
|
|
|
|
desc.dev = dev;
|
|
|
|
desc.groups = coresight_etmv4_groups;
|
|
|
|
drvdata->csdev = coresight_register(&desc);
|
2020-09-29 00:34:58 +08:00
|
|
|
if (IS_ERR(drvdata->csdev))
|
|
|
|
return PTR_ERR(drvdata->csdev);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
2016-04-06 01:53:49 +08:00
|
|
|
ret = etm_perf_symlink(drvdata->csdev, true);
|
|
|
|
if (ret) {
|
|
|
|
coresight_unregister(drvdata->csdev);
|
2020-09-29 00:34:58 +08:00
|
|
|
return ret;
|
2016-04-06 01:53:49 +08:00
|
|
|
}
|
|
|
|
|
2021-08-19 03:40:18 +08:00
|
|
|
/* register with config infrastructure & load any current features */
|
|
|
|
ret = etm4_cscfg_register(drvdata->csdev);
|
|
|
|
if (ret) {
|
|
|
|
coresight_unregister(drvdata->csdev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-09-29 00:34:58 +08:00
|
|
|
etmdrvdata[drvdata->cpu] = drvdata;
|
|
|
|
|
2021-04-06 00:43:00 +08:00
|
|
|
dev_info(&drvdata->csdev->dev, "CPU%d: %s v%d.%d initialized\n",
|
|
|
|
drvdata->cpu, type_name, major, minor);
|
2015-05-14 00:34:09 +08:00
|
|
|
|
|
|
|
if (boot_enable) {
|
|
|
|
coresight_enable(drvdata->csdev);
|
|
|
|
drvdata->boot_enable = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:45 +08:00
|
|
|
static int etm4_probe_amba(struct amba_device *adev, const struct amba_id *id)
|
|
|
|
{
|
|
|
|
void __iomem *base;
|
|
|
|
struct device *dev = &adev->dev;
|
|
|
|
struct resource *res = &adev->res;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Validity for the resource is already checked by the AMBA core */
|
|
|
|
base = devm_ioremap_resource(dev, res);
|
|
|
|
if (IS_ERR(base))
|
|
|
|
return PTR_ERR(base);
|
|
|
|
|
|
|
|
ret = etm4_probe(dev, base, id->id);
|
|
|
|
if (!ret)
|
|
|
|
pm_runtime_put(&adev->dev);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:47 +08:00
|
|
|
static int etm4_probe_platform_dev(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
pm_runtime_get_noresume(&pdev->dev);
|
|
|
|
pm_runtime_set_active(&pdev->dev);
|
|
|
|
pm_runtime_enable(&pdev->dev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* System register based devices could match the
|
|
|
|
* HW by reading appropriate registers on the HW
|
|
|
|
* and thus we could skip the PID.
|
|
|
|
*/
|
|
|
|
ret = etm4_probe(&pdev->dev, NULL, 0);
|
|
|
|
|
|
|
|
pm_runtime_put(&pdev->dev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-02-13 21:41:51 +08:00
|
|
|
static struct amba_cs_uci_id uci_id_etm4[] = {
|
|
|
|
{
|
|
|
|
/* ETMv4 UCI data */
|
2021-02-02 02:13:35 +08:00
|
|
|
.devarch = ETM_DEVARCH_ETMv4x_ARCH,
|
|
|
|
.devarch_mask = ETM_DEVARCH_ID_MASK,
|
2019-02-13 21:41:51 +08:00
|
|
|
.devtype = 0x00000013,
|
2018-07-12 03:40:14 +08:00
|
|
|
}
|
2019-02-13 21:41:51 +08:00
|
|
|
};
|
2018-07-12 03:40:14 +08:00
|
|
|
|
2020-12-09 02:26:50 +08:00
|
|
|
static void clear_etmdrvdata(void *info)
|
2020-09-29 00:34:58 +08:00
|
|
|
{
|
|
|
|
int cpu = *(int *)info;
|
|
|
|
|
|
|
|
etmdrvdata[cpu] = NULL;
|
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:45 +08:00
|
|
|
static int __exit etm4_remove_dev(struct etmv4_drvdata *drvdata)
|
2020-09-29 00:34:58 +08:00
|
|
|
{
|
|
|
|
etm_perf_symlink(drvdata->csdev, false);
|
|
|
|
/*
|
2021-02-02 02:13:45 +08:00
|
|
|
* Taking hotplug lock here to avoid racing between etm4_remove_dev()
|
|
|
|
* and CPU hotplug call backs.
|
2020-09-29 00:34:58 +08:00
|
|
|
*/
|
|
|
|
cpus_read_lock();
|
|
|
|
/*
|
|
|
|
* The readers for etmdrvdata[] are CPU hotplug call backs
|
|
|
|
* and PM notification call backs. Change etmdrvdata[i] on
|
|
|
|
* CPU i ensures these call backs has consistent view
|
|
|
|
* inside one call back function.
|
|
|
|
*/
|
|
|
|
if (smp_call_function_single(drvdata->cpu, clear_etmdrvdata, &drvdata->cpu, 1))
|
|
|
|
etmdrvdata[drvdata->cpu] = NULL;
|
|
|
|
|
|
|
|
cpus_read_unlock();
|
|
|
|
|
2021-08-19 03:40:18 +08:00
|
|
|
cscfg_unregister_csdev(drvdata->csdev);
|
2020-09-29 00:34:58 +08:00
|
|
|
coresight_unregister(drvdata->csdev);
|
2021-02-05 21:08:47 +08:00
|
|
|
|
|
|
|
return 0;
|
2020-09-29 00:34:58 +08:00
|
|
|
}
|
|
|
|
|
2021-02-05 21:08:47 +08:00
|
|
|
static void __exit etm4_remove_amba(struct amba_device *adev)
|
2021-02-02 02:13:45 +08:00
|
|
|
{
|
|
|
|
struct etmv4_drvdata *drvdata = dev_get_drvdata(&adev->dev);
|
|
|
|
|
|
|
|
if (drvdata)
|
2021-02-05 21:08:47 +08:00
|
|
|
etm4_remove_dev(drvdata);
|
2021-02-02 02:13:45 +08:00
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:47 +08:00
|
|
|
static int __exit etm4_remove_platform_dev(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
struct etmv4_drvdata *drvdata = dev_get_drvdata(&pdev->dev);
|
|
|
|
|
|
|
|
if (drvdata)
|
|
|
|
ret = etm4_remove_dev(drvdata);
|
|
|
|
pm_runtime_disable(&pdev->dev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-08-25 00:36:00 +08:00
|
|
|
static const struct amba_id etm4_ids[] = {
|
2019-08-30 04:28:27 +08:00
|
|
|
CS_AMBA_ID(0x000bb95d), /* Cortex-A53 */
|
|
|
|
CS_AMBA_ID(0x000bb95e), /* Cortex-A57 */
|
|
|
|
CS_AMBA_ID(0x000bb95a), /* Cortex-A72 */
|
|
|
|
CS_AMBA_ID(0x000bb959), /* Cortex-A73 */
|
|
|
|
CS_AMBA_UCI_ID(0x000bb9da, uci_id_etm4),/* Cortex-A35 */
|
2021-02-02 02:13:22 +08:00
|
|
|
CS_AMBA_UCI_ID(0x000bbd05, uci_id_etm4),/* Cortex-A55 */
|
|
|
|
CS_AMBA_UCI_ID(0x000bbd0a, uci_id_etm4),/* Cortex-A75 */
|
2020-05-19 02:02:34 +08:00
|
|
|
CS_AMBA_UCI_ID(0x000bbd0c, uci_id_etm4),/* Neoverse N1 */
|
2021-04-08 00:00:04 +08:00
|
|
|
CS_AMBA_UCI_ID(0x000bbd41, uci_id_etm4),/* Cortex-A78 */
|
2019-08-30 04:28:27 +08:00
|
|
|
CS_AMBA_UCI_ID(0x000f0205, uci_id_etm4),/* Qualcomm Kryo */
|
|
|
|
CS_AMBA_UCI_ID(0x000f0211, uci_id_etm4),/* Qualcomm Kryo */
|
2020-05-19 02:02:28 +08:00
|
|
|
CS_AMBA_UCI_ID(0x000bb802, uci_id_etm4),/* Qualcomm Kryo 385 Cortex-A55 */
|
|
|
|
CS_AMBA_UCI_ID(0x000bb803, uci_id_etm4),/* Qualcomm Kryo 385 Cortex-A75 */
|
2020-05-19 02:02:27 +08:00
|
|
|
CS_AMBA_UCI_ID(0x000bb805, uci_id_etm4),/* Qualcomm Kryo 4XX Cortex-A55 */
|
|
|
|
CS_AMBA_UCI_ID(0x000bb804, uci_id_etm4),/* Qualcomm Kryo 4XX Cortex-A76 */
|
2021-09-24 18:06:20 +08:00
|
|
|
CS_AMBA_UCI_ID(0x000bbd0d, uci_id_etm4),/* Qualcomm Kryo 5XX Cortex-A77 */
|
2019-11-05 02:12:40 +08:00
|
|
|
CS_AMBA_UCI_ID(0x000cc0af, uci_id_etm4),/* Marvell ThunderX2 */
|
2020-09-17 03:17:25 +08:00
|
|
|
CS_AMBA_UCI_ID(0x000b6d01, uci_id_etm4),/* HiSilicon-Hip08 */
|
|
|
|
CS_AMBA_UCI_ID(0x000b6d02, uci_id_etm4),/* HiSilicon-Hip09 */
|
2018-07-12 03:40:14 +08:00
|
|
|
{},
|
2015-05-14 00:34:09 +08:00
|
|
|
};
|
|
|
|
|
2020-09-29 00:34:58 +08:00
|
|
|
MODULE_DEVICE_TABLE(amba, etm4_ids);
|
|
|
|
|
2021-02-02 02:13:45 +08:00
|
|
|
static struct amba_driver etm4x_amba_driver = {
|
2015-05-14 00:34:09 +08:00
|
|
|
.drv = {
|
|
|
|
.name = "coresight-etm4x",
|
2020-09-29 00:34:58 +08:00
|
|
|
.owner = THIS_MODULE,
|
2016-02-03 05:14:00 +08:00
|
|
|
.suppress_bind_attrs = true,
|
2015-05-14 00:34:09 +08:00
|
|
|
},
|
2021-02-02 02:13:45 +08:00
|
|
|
.probe = etm4_probe_amba,
|
|
|
|
.remove = etm4_remove_amba,
|
2015-05-14 00:34:09 +08:00
|
|
|
.id_table = etm4_ids,
|
|
|
|
};
|
2020-09-17 03:17:22 +08:00
|
|
|
|
2021-02-02 02:13:47 +08:00
|
|
|
static const struct of_device_id etm4_sysreg_match[] = {
|
|
|
|
{ .compatible = "arm,coresight-etm4x-sysreg" },
|
2021-04-06 00:43:00 +08:00
|
|
|
{ .compatible = "arm,embedded-trace-extension" },
|
2021-02-02 02:13:47 +08:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct platform_driver etm4_platform_driver = {
|
|
|
|
.probe = etm4_probe_platform_dev,
|
|
|
|
.remove = etm4_remove_platform_dev,
|
|
|
|
.driver = {
|
|
|
|
.name = "coresight-etm4x",
|
|
|
|
.of_match_table = etm4_sysreg_match,
|
|
|
|
.suppress_bind_attrs = true,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2020-09-17 03:17:22 +08:00
|
|
|
static int __init etm4x_init(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = etm4_pm_setup();
|
|
|
|
|
|
|
|
/* etm4_pm_setup() does its own cleanup - exit on error */
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2021-02-02 02:13:45 +08:00
|
|
|
ret = amba_driver_register(&etm4x_amba_driver);
|
2020-09-17 03:17:22 +08:00
|
|
|
if (ret) {
|
2021-02-02 02:13:47 +08:00
|
|
|
pr_err("Error registering etm4x AMBA driver\n");
|
|
|
|
goto clear_pm;
|
2020-09-17 03:17:22 +08:00
|
|
|
}
|
|
|
|
|
2021-02-02 02:13:47 +08:00
|
|
|
ret = platform_driver_register(&etm4_platform_driver);
|
|
|
|
if (!ret)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pr_err("Error registering etm4x platform driver\n");
|
|
|
|
amba_driver_unregister(&etm4x_amba_driver);
|
|
|
|
|
|
|
|
clear_pm:
|
|
|
|
etm4_pm_clear();
|
2020-09-17 03:17:22 +08:00
|
|
|
return ret;
|
|
|
|
}
|
2020-09-29 00:34:58 +08:00
|
|
|
|
|
|
|
static void __exit etm4x_exit(void)
|
|
|
|
{
|
2021-02-02 02:13:45 +08:00
|
|
|
amba_driver_unregister(&etm4x_amba_driver);
|
2021-02-02 02:13:47 +08:00
|
|
|
platform_driver_unregister(&etm4_platform_driver);
|
2020-09-29 00:34:58 +08:00
|
|
|
etm4_pm_clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(etm4x_init);
|
|
|
|
module_exit(etm4x_exit);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Pratik Patel <pratikp@codeaurora.org>");
|
|
|
|
MODULE_AUTHOR("Mathieu Poirier <mathieu.poirier@linaro.org>");
|
|
|
|
MODULE_DESCRIPTION("Arm CoreSight Program Flow Trace v4.x driver");
|
|
|
|
MODULE_LICENSE("GPL v2");
|