coresight: etm4x: Expose default timestamp source in sysfs
authorGerman Gomez <german.gomez@arm.com>
Tue, 23 Aug 2022 16:06:49 +0000 (17:06 +0100)
committerMathieu Poirier <mathieu.poirier@linaro.org>
Fri, 26 Aug 2022 19:37:52 +0000 (13:37 -0600)
Add a new sysfs interface in /sys/bus/coresight/devices/etm<N>/ts_source
indicating the configured timestamp source when the ETM device driver
was probed.

The perf tool will use this information to detect if the trace data
timestamp matches the kernel time, enabling correlation of CoreSight
trace with perf events.

Suggested-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Signed-off-by: German Gomez <german.gomez@arm.com>
Reviewed-by: Leo Yan <leo.yan@linaro.org>
Signed-off-by: James Clark <james.clark@arm.com>
Link: https://lore.kernel.org/r/20220823160650.455823-2-james.clark@arm.com
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
arch/arm64/include/asm/sysreg.h
drivers/hwtracing/coresight/coresight-etm4x-sysfs.c

index 7c71358d44c4ab811fc05af7ff6d405aa737d4cf..7a518a0116691083462d79d4de1e386221bd760b 100644 (file)
 #define SYS_MPIDR_SAFE_VAL     (BIT(31))
 
 #define TRFCR_ELx_TS_SHIFT             5
+#define TRFCR_ELx_TS_MASK              ((0x3UL) << TRFCR_ELx_TS_SHIFT)
 #define TRFCR_ELx_TS_VIRTUAL           ((0x1UL) << TRFCR_ELx_TS_SHIFT)
 #define TRFCR_ELx_TS_GUEST_PHYSICAL    ((0x2UL) << TRFCR_ELx_TS_SHIFT)
 #define TRFCR_ELx_TS_PHYSICAL          ((0x3UL) << TRFCR_ELx_TS_SHIFT)
index 6ea8181816fc83673a8f015e58a9986c25206267..9cac848cffafc736df6052729134ac83cafe681c 100644 (file)
@@ -2306,6 +2306,34 @@ static ssize_t cpu_show(struct device *dev,
 }
 static DEVICE_ATTR_RO(cpu);
 
+static ssize_t ts_source_show(struct device *dev,
+                             struct device_attribute *attr,
+                             char *buf)
+{
+       int val;
+       struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
+
+       if (!drvdata->trfcr) {
+               val = -1;
+               goto out;
+       }
+
+       switch (drvdata->trfcr & TRFCR_ELx_TS_MASK) {
+       case TRFCR_ELx_TS_VIRTUAL:
+       case TRFCR_ELx_TS_GUEST_PHYSICAL:
+       case TRFCR_ELx_TS_PHYSICAL:
+               val = FIELD_GET(TRFCR_ELx_TS_MASK, drvdata->trfcr);
+               break;
+       default:
+               val = -1;
+               break;
+       }
+
+out:
+       return sysfs_emit(buf, "%d\n", val);
+}
+static DEVICE_ATTR_RO(ts_source);
+
 static struct attribute *coresight_etmv4_attrs[] = {
        &dev_attr_nr_pe_cmp.attr,
        &dev_attr_nr_addr_cmp.attr,
@@ -2360,6 +2388,7 @@ static struct attribute *coresight_etmv4_attrs[] = {
        &dev_attr_vmid_val.attr,
        &dev_attr_vmid_masks.attr,
        &dev_attr_cpu.attr,
+       &dev_attr_ts_source.attr,
        NULL,
 };