[Skiboot] [PATCH v2 10/16] core/trace: Export trace buffers to sysfs
Jordan Niethe
jniethe5 at gmail.com
Tue Apr 2 10:43:21 AEDT 2019
Every property in the device-tree under /ibm,opal/firmware/exports has a
sysfs node created in /firmware/opal/exports. Add properties with the
physical address and size for each trace buffer so they are exported.
Signed-off-by: Jordan Niethe <jniethe5 at gmail.com>
---
core/test/run-trace.c | 1 +
core/trace.c | 10 ++++++++++
2 files changed, 11 insertions(+)
diff --git a/core/test/run-trace.c b/core/test/run-trace.c
index fb885556d48a..a9cf399b9d1b 100644
--- a/core/test/run-trace.c
+++ b/core/test/run-trace.c
@@ -269,6 +269,7 @@ int main(void)
unsigned int i, j;
opal_node = dt_new_root("opal");
+ dt_new(dt_new(opal_node, "firmware"), "exports");
for (i = 0; i < CPUS; i++) {
fake_cpus[i].server_no = i;
fake_cpus[i].is_secondary = (i & 0x1);
diff --git a/core/trace.c b/core/trace.c
index 169282e84508..de6b6616a3c1 100644
--- a/core/trace.c
+++ b/core/trace.c
@@ -19,6 +19,7 @@
#include <lock.h>
#include <string.h>
#include <stdlib.h>
+#include <inttypes.h>
#include <cpu.h>
#include <device.h>
#include <libfdt.h>
@@ -167,12 +168,21 @@ static void trace_add_dt_props(void)
{
unsigned int i;
u64 *prop, tmask;
+ struct dt_node *exports;
+ char tname[256];
prop = malloc(sizeof(u64) * 2 * debug_descriptor.num_traces);
+ exports = dt_find_by_path(opal_node, "firmware/exports");
for (i = 0; i < debug_descriptor.num_traces; i++) {
prop[i * 2] = cpu_to_fdt64(debug_descriptor.trace_phys[i]);
prop[i * 2 + 1] = cpu_to_fdt64(debug_descriptor.trace_size[i]);
+
+ snprintf(tname, sizeof(tname), "trace-%x-%"PRIx64,
+ debug_descriptor.trace_pir[i],
+ debug_descriptor.trace_phys[i]);
+ dt_add_property_u64s(exports, tname, debug_descriptor.trace_phys[i],
+ debug_descriptor.trace_size[i]);
}
dt_add_property(opal_node, "ibm,opal-traces",
--
2.20.1
More information about the Skiboot
mailing list