include/trace/events/fsi_master_gpio.h
Source file repositories/reference/linux-study-clean/include/trace/events/fsi_master_gpio.h
File Facts
- System
- Linux kernel
- Corpus path
include/trace/events/fsi_master_gpio.h- Extension
.h- Size
- 4017 bytes
- Lines
- 172
- Domain
- Repository Root And Misc
- Bucket
- include
- Inferred role
- Repository Root And Misc: implementation source
- Status
- source implementation candidate
Why This File Exists
Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/tracepoint.htrace/define_trace.h
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
Annotated Snippet
#undef TRACE_SYSTEM
#define TRACE_SYSTEM fsi_master_gpio
#if !defined(_TRACE_FSI_MASTER_GPIO_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_FSI_MASTER_GPIO_H
#include <linux/tracepoint.h>
TRACE_EVENT(fsi_master_gpio_in,
TP_PROTO(const struct fsi_master_gpio *master, int bits, uint64_t msg),
TP_ARGS(master, bits, msg),
TP_STRUCT__entry(
__field(int, master_idx)
__field(int, bits)
__field(uint64_t, msg)
),
TP_fast_assign(
__entry->master_idx = master->master.idx;
__entry->bits = bits;
__entry->msg = msg & ((1ull<<bits) - 1);
),
TP_printk("fsi-gpio%d => %0*llx[%d]",
__entry->master_idx,
(__entry->bits + 3) / 4,
__entry->msg,
__entry->bits
)
);
TRACE_EVENT(fsi_master_gpio_out,
TP_PROTO(const struct fsi_master_gpio *master, int bits, uint64_t msg),
TP_ARGS(master, bits, msg),
TP_STRUCT__entry(
__field(int, master_idx)
__field(int, bits)
__field(uint64_t, msg)
),
TP_fast_assign(
__entry->master_idx = master->master.idx;
__entry->bits = bits;
__entry->msg = msg & ((1ull<<bits) - 1);
),
TP_printk("fsi-gpio%d <= %0*llx[%d]",
__entry->master_idx,
(__entry->bits + 3) / 4,
__entry->msg,
__entry->bits
)
);
TRACE_EVENT(fsi_master_gpio_clock_zeros,
TP_PROTO(const struct fsi_master_gpio *master, int clocks),
TP_ARGS(master, clocks),
TP_STRUCT__entry(
__field(int, master_idx)
__field(int, clocks)
),
TP_fast_assign(
__entry->master_idx = master->master.idx;
__entry->clocks = clocks;
),
TP_printk("fsi-gpio%d clock %d zeros",
__entry->master_idx, __entry->clocks
)
);
TRACE_EVENT(fsi_master_gpio_break,
TP_PROTO(const struct fsi_master_gpio *master),
TP_ARGS(master),
TP_STRUCT__entry(
__field(int, master_idx)
),
TP_fast_assign(
__entry->master_idx = master->master.idx;
),
TP_printk("fsi-gpio%d ----break---",
__entry->master_idx
)
);
TRACE_EVENT(fsi_master_gpio_crc_cmd_error,
TP_PROTO(const struct fsi_master_gpio *master),
TP_ARGS(master),
TP_STRUCT__entry(
__field(int, master_idx)
),
TP_fast_assign(
__entry->master_idx = master->master.idx;
),
TP_printk("fsi-gpio%d ----CRC command retry---",
Annotation
- Immediate include surface: `linux/tracepoint.h`, `trace/define_trace.h`.
- Atlas domain: Repository Root And Misc / include.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.