The spi subsystem has tracing, which is very convenient when debugging
problems. Add tracing for spi-mem too so that accesses that skip the spi
subsystem can still be seen.

The format is roughly based on the existing spi tracing. We don't bother
tracing the op's address because the tracing happens while the memory is
locked, so there can be no confusion about the matching of start and
stop. The conversion of cmd/addr/dummy to an array is directly analogous
to the conversion in the latter half of spi_mem_exec_op.

Signed-off-by: Sean Anderson <[email protected]>
---

 MAINTAINERS                    |   1 +
 drivers/spi/spi-mem.c          |   5 ++
 include/trace/events/spi-mem.h | 106 +++++++++++++++++++++++++++++++++
 3 files changed, 112 insertions(+)
 create mode 100644 include/trace/events/spi-mem.h

diff --git a/MAINTAINERS b/MAINTAINERS
index b45db73e55df..a6c4e0f65818 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -24204,6 +24204,7 @@ T:      git 
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
 F:     Documentation/devicetree/bindings/spi/
 F:     Documentation/spi/
 F:     drivers/spi/
+F:     include/trace/events/spi*
 F:     include/linux/spi/
 F:     include/uapi/linux/spi/
 F:     tools/spi/
diff --git a/drivers/spi/spi-mem.c b/drivers/spi/spi-mem.c
index 064b99204d9a..c8b2add2640e 100644
--- a/drivers/spi/spi-mem.c
+++ b/drivers/spi/spi-mem.c
@@ -12,6 +12,9 @@
 #include <linux/spi/spi-mem.h>
 #include <linux/sched/task_stack.h>
 
+#define CREATE_TRACE_POINTS
+#include <trace/events/spi-mem.h>
+
 #include "internals.h"
 
 #define SPI_MEM_MAX_BUSWIDTH           8
@@ -403,7 +406,9 @@ int spi_mem_exec_op(struct spi_mem *mem, const struct 
spi_mem_op *op)
                if (ret)
                        return ret;
 
+               trace_spi_mem_start_op(mem, op);
                ret = ctlr->mem_ops->exec_op(mem, op);
+               trace_spi_mem_stop_op(mem, op);
 
                spi_mem_access_end(mem);
 
diff --git a/include/trace/events/spi-mem.h b/include/trace/events/spi-mem.h
new file mode 100644
index 000000000000..e97c2c417233
--- /dev/null
+++ b/include/trace/events/spi-mem.h
@@ -0,0 +1,106 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#undef TRACE_SYSTEM
+#define TRACE_SYSTEM spi-mem
+
+#undef TRACE_SYSTEM_VAR
+#define TRACE_SYSTEM_VAR spi_mem
+
+#if !defined(_TRACE_SPI_MEM_H) || defined(TRACE_HEADER_MULTI_READ)
+#define _TRACE_SPI_MEM_H
+
+#include <linux/tracepoint.h>
+#include <linux/spi/spi-mem.h>
+
+#define decode_dtr(dtr) \
+       __print_symbolic(dtr, \
+               { 0, "S" }, \
+               { 1, "D" })
+
+TRACE_EVENT(spi_mem_start_op,
+       TP_PROTO(struct spi_mem *mem, const struct spi_mem_op *op),
+       TP_ARGS(mem, op),
+
+       TP_STRUCT__entry(
+               __string(name, mem->name)
+               __dynamic_array(u8, op, 1 + op->addr.nbytes + op->dummy.nbytes)
+               __dynamic_array(u8, data, op->data.dir == SPI_MEM_DATA_OUT ?
+                                         min(op->data.nbytes, 64) : 0)
+               __field(u32, data_len)
+               __field(u32, max_freq)
+               __field(u8, cmd_buswidth)
+               __field(bool, cmd_dtr)
+               __field(u8, addr_buswidth)
+               __field(bool, addr_dtr)
+               __field(u8, dummy_nbytes)
+               __field(u8, data_buswidth)
+               __field(bool, data_dtr)
+       ),
+
+       TP_fast_assign(
+               int i;
+
+               __assign_str(name, mem->name);
+               __entry->max_freq = op->max_freq ?: mem->spi->max_speed_hz;
+
+               __entry->cmd_buswidth = op->cmd.buswidth;
+               __entry->cmd_dtr = op->cmd.dtr;
+               *((u8 *)__get_dynamic_array(op)) = op->cmd.opcode;
+
+               __entry->addr_buswidth = op->addr.buswidth;
+               __entry->addr_dtr = op->addr.dtr;
+               for (i = 0; i < op->addr.nbytes; i++)
+                       ((u8 *)__get_dynamic_array(op))[i + 1] =
+                               op->addr.val >> (8 * (op->addr.nbytes - i - 1));
+
+               memset(((u8 *)__get_dynamic_array(op)) + op->addr.nbytes + 1,
+                      0xff, op->dummy.nbytes);
+
+               __entry->data_len = op->data.nbytes;
+               __entry->data_buswidth = op->data.buswidth;
+               __entry->data_dtr = op->data.dtr;
+               if (op->data.dir == SPI_MEM_DATA_OUT)
+                       memcpy(__get_dynamic_array(data), op->data.buf.out,
+                              __get_dynamic_array_len(data));
+       ),
+
+       TP_printk("%s %u%s-%u%s-%u%s @%u Hz op=[%*phD] len=%u tx=[%*phD]",
+               __get_str(name),
+               __entry->cmd_buswidth, decode_dtr(__entry->cmd_dtr),
+               __entry->addr_buswidth, decode_dtr(__entry->addr_dtr),
+               __entry->data_buswidth, decode_dtr(__entry->data_dtr),
+               __entry->max_freq,
+               __get_dynamic_array_len(op), __get_dynamic_array(op),
+               __entry->data_len,
+               __get_dynamic_array_len(data), __get_dynamic_array(data))
+);
+
+TRACE_EVENT(spi_mem_stop_op,
+       TP_PROTO(struct spi_mem *mem, const struct spi_mem_op *op),
+       TP_ARGS(mem, op),
+
+       TP_STRUCT__entry(
+               __string(name, mem->name)
+               __dynamic_array(u8, data, op->data.dir == SPI_MEM_DATA_IN ?
+                                         min(op->data.nbytes, 64) : 0)
+               __field(u32, data_len)
+       ),
+
+       TP_fast_assign(
+               __assign_str(name, mem->name);
+               __entry->data_len = op->data.nbytes;
+               if (op->data.dir == SPI_MEM_DATA_IN)
+                       memcpy(__get_dynamic_array(data), op->data.buf.in,
+                              __get_dynamic_array_len(data));
+       ),
+
+       TP_printk("%s len=%u rx=[%*phD]",
+               __get_str(name),
+               __entry->data_len,
+               __get_dynamic_array_len(data), __get_dynamic_array(data))
+);
+
+
+#endif /* _TRACE_SPI_MEM_H */
+
+/* This part must be outside protection */
+#include <trace/define_trace.h>
-- 
2.35.1.1320.gc452695387.dirty


Reply via email to