mirror of https://github.com/torvalds/linux.git
spi: spi-mem: Trace exec_op
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 <sean.anderson@linux.dev> Link: https://patch.msgid.link/20251021144702.1582397-1-sean.anderson@linux.dev Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
fd5ef3d69f
commit
77a58ba7c6
|
|
@ -24226,6 +24226,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/
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
__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);
|
||||
__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>
|
||||
Loading…
Reference in New Issue