2024-04-29 13:32:14 +09:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright (c) 2024 Takashi Sakamoto
|
|
|
|
|
|
|
|
#define TRACE_SYSTEM firewire
|
|
|
|
|
|
|
|
#if !defined(_FIREWIRE_TRACE_EVENT_H) || defined(TRACE_HEADER_MULTI_READ)
|
|
|
|
#define _FIREWIRE_TRACE_EVENT_H
|
|
|
|
|
|
|
|
#include <linux/tracepoint.h>
|
2024-04-29 13:32:15 +09:00
|
|
|
#include <linux/firewire.h>
|
2024-04-29 13:32:14 +09:00
|
|
|
|
2024-04-29 13:32:15 +09:00
|
|
|
#include <linux/firewire-constants.h>
|
|
|
|
|
|
|
|
#include "../../../drivers/firewire/packet-header-definitions.h"
|
|
|
|
|
|
|
|
// The content of TP_printk field is preprocessed, then put to the module binary.
|
|
|
|
#define ASYNC_HEADER_GET_DESTINATION(header) \
|
|
|
|
(((header)[0] & ASYNC_HEADER_Q0_DESTINATION_MASK) >> ASYNC_HEADER_Q0_DESTINATION_SHIFT)
|
|
|
|
|
|
|
|
#define ASYNC_HEADER_GET_TLABEL(header) \
|
|
|
|
(((header)[0] & ASYNC_HEADER_Q0_TLABEL_MASK) >> ASYNC_HEADER_Q0_TLABEL_SHIFT)
|
|
|
|
|
|
|
|
#define ASYNC_HEADER_GET_TCODE(header) \
|
|
|
|
(((header)[0] & ASYNC_HEADER_Q0_TCODE_MASK) >> ASYNC_HEADER_Q0_TCODE_SHIFT)
|
|
|
|
|
|
|
|
#define ASYNC_HEADER_GET_SOURCE(header) \
|
|
|
|
(((header)[1] & ASYNC_HEADER_Q1_SOURCE_MASK) >> ASYNC_HEADER_Q1_SOURCE_SHIFT)
|
|
|
|
|
|
|
|
#define ASYNC_HEADER_GET_OFFSET(header) \
|
|
|
|
((((unsigned long long)((header)[1] & ASYNC_HEADER_Q1_OFFSET_HIGH_MASK)) >> ASYNC_HEADER_Q1_OFFSET_HIGH_SHIFT) << 32)| \
|
|
|
|
(header)[2]
|
|
|
|
|
2024-04-29 13:32:16 +09:00
|
|
|
#define ASYNC_HEADER_GET_RCODE(header) \
|
|
|
|
(((header)[1] & ASYNC_HEADER_Q1_RCODE_MASK) >> ASYNC_HEADER_Q1_RCODE_SHIFT)
|
|
|
|
|
2024-04-29 13:32:15 +09:00
|
|
|
#define QUADLET_SIZE 4
|
|
|
|
|
|
|
|
DECLARE_EVENT_CLASS(async_outbound_initiate_template,
|
|
|
|
TP_PROTO(u64 transaction, unsigned int generation, unsigned int scode, const u32 *header, const u32 *data, unsigned int data_count),
|
|
|
|
TP_ARGS(transaction, generation, scode, header, data, data_count),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u64, transaction)
|
|
|
|
__field(u8, generation)
|
|
|
|
__field(u8, scode)
|
|
|
|
__array(u32, header, ASYNC_HEADER_QUADLET_COUNT)
|
|
|
|
__dynamic_array(u32, data, data_count)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->transaction = transaction;
|
|
|
|
__entry->generation = generation;
|
|
|
|
__entry->scode = scode;
|
|
|
|
memcpy(__entry->header, header, QUADLET_SIZE * ASYNC_HEADER_QUADLET_COUNT);
|
|
|
|
memcpy(__get_dynamic_array(data), data, __get_dynamic_array_len(data));
|
|
|
|
),
|
|
|
|
// This format is for the request subaction.
|
|
|
|
TP_printk(
|
|
|
|
"transaction=0x%llx generation=%u scode=%u dst_id=0x%04x tlabel=%u tcode=%u src_id=0x%04x offset=0x%012llx header=%s data=%s",
|
|
|
|
__entry->transaction,
|
|
|
|
__entry->generation,
|
|
|
|
__entry->scode,
|
|
|
|
ASYNC_HEADER_GET_DESTINATION(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_TLABEL(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_TCODE(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_SOURCE(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_OFFSET(__entry->header),
|
|
|
|
__print_array(__entry->header, ASYNC_HEADER_QUADLET_COUNT, QUADLET_SIZE),
|
|
|
|
__print_array(__get_dynamic_array(data),
|
|
|
|
__get_dynamic_array_len(data) / QUADLET_SIZE, QUADLET_SIZE)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
// The value of status is one of ack codes and rcodes specific to Linux FireWire subsystem.
|
|
|
|
DECLARE_EVENT_CLASS(async_outbound_complete_template,
|
|
|
|
TP_PROTO(u64 transaction, unsigned int generation, unsigned int scode, unsigned int status, unsigned int timestamp),
|
|
|
|
TP_ARGS(transaction, generation, scode, status, timestamp),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u64, transaction)
|
|
|
|
__field(u8, generation)
|
|
|
|
__field(u8, scode)
|
|
|
|
__field(u8, status)
|
|
|
|
__field(u16, timestamp)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->transaction = transaction;
|
|
|
|
__entry->generation = generation;
|
|
|
|
__entry->scode = scode;
|
|
|
|
__entry->status = status;
|
|
|
|
__entry->timestamp = timestamp;
|
|
|
|
),
|
|
|
|
TP_printk(
|
|
|
|
"transaction=0x%llx generation=%u scode=%u status=%u timestamp=0x%04x",
|
|
|
|
__entry->transaction,
|
|
|
|
__entry->generation,
|
|
|
|
__entry->scode,
|
|
|
|
__entry->status,
|
|
|
|
__entry->timestamp
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2024-04-29 13:32:16 +09:00
|
|
|
// The value of status is one of ack codes and rcodes specific to Linux FireWire subsystem.
|
|
|
|
DECLARE_EVENT_CLASS(async_inbound_template,
|
|
|
|
TP_PROTO(u64 transaction, unsigned int generation, unsigned int scode, unsigned int status, unsigned int timestamp, const u32 *header, const u32 *data, unsigned int data_count),
|
|
|
|
TP_ARGS(transaction, generation, scode, status, timestamp, header, data, data_count),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u64, transaction)
|
|
|
|
__field(u8, generation)
|
|
|
|
__field(u8, scode)
|
|
|
|
__field(u8, status)
|
2024-05-06 17:21:53 +09:00
|
|
|
__field(u16, timestamp)
|
2024-04-29 13:32:16 +09:00
|
|
|
__array(u32, header, ASYNC_HEADER_QUADLET_COUNT)
|
|
|
|
__dynamic_array(u32, data, data_count)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->transaction = transaction;
|
|
|
|
__entry->generation = generation;
|
|
|
|
__entry->scode = scode;
|
|
|
|
__entry->status = status;
|
|
|
|
__entry->timestamp = timestamp;
|
|
|
|
memcpy(__entry->header, header, QUADLET_SIZE * ASYNC_HEADER_QUADLET_COUNT);
|
|
|
|
memcpy(__get_dynamic_array(data), data, __get_dynamic_array_len(data));
|
|
|
|
),
|
|
|
|
// This format is for the response subaction.
|
|
|
|
TP_printk(
|
|
|
|
"transaction=0x%llx generation=%u scode=%u status=%u timestamp=0x%04x dst_id=0x%04x tlabel=%u tcode=%u src_id=0x%04x rcode=%u header=%s data=%s",
|
|
|
|
__entry->transaction,
|
|
|
|
__entry->generation,
|
|
|
|
__entry->scode,
|
|
|
|
__entry->status,
|
|
|
|
__entry->timestamp,
|
|
|
|
ASYNC_HEADER_GET_DESTINATION(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_TLABEL(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_TCODE(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_SOURCE(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_RCODE(__entry->header),
|
|
|
|
__print_array(__entry->header, ASYNC_HEADER_QUADLET_COUNT, QUADLET_SIZE),
|
|
|
|
__print_array(__get_dynamic_array(data),
|
|
|
|
__get_dynamic_array_len(data) / QUADLET_SIZE, QUADLET_SIZE)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2024-04-29 13:32:15 +09:00
|
|
|
DEFINE_EVENT(async_outbound_initiate_template, async_request_outbound_initiate,
|
|
|
|
TP_PROTO(u64 transaction, unsigned int generation, unsigned int scode, const u32 *header, const u32 *data, unsigned int data_count),
|
|
|
|
TP_ARGS(transaction, generation, scode, header, data, data_count)
|
|
|
|
);
|
|
|
|
|
|
|
|
DEFINE_EVENT(async_outbound_complete_template, async_request_outbound_complete,
|
|
|
|
TP_PROTO(u64 transaction, unsigned int generation, unsigned int scode, unsigned int status, unsigned int timestamp),
|
|
|
|
TP_ARGS(transaction, generation, scode, status, timestamp)
|
|
|
|
);
|
|
|
|
|
2024-04-29 13:32:16 +09:00
|
|
|
DEFINE_EVENT(async_inbound_template, async_response_inbound,
|
|
|
|
TP_PROTO(u64 transaction, unsigned int generation, unsigned int scode, unsigned int status, unsigned int timestamp, const u32 *header, const u32 *data, unsigned int data_count),
|
|
|
|
TP_ARGS(transaction, generation, scode, status, timestamp, header, data, data_count)
|
|
|
|
);
|
|
|
|
|
2024-04-29 13:32:17 +09:00
|
|
|
DEFINE_EVENT_PRINT(async_inbound_template, async_request_inbound,
|
|
|
|
TP_PROTO(u64 transaction, unsigned int generation, unsigned int scode, unsigned int status, unsigned int timestamp, const u32 *header, const u32 *data, unsigned int data_count),
|
|
|
|
TP_ARGS(transaction, generation, scode, status, timestamp, header, data, data_count),
|
|
|
|
TP_printk(
|
|
|
|
"transaction=0x%llx generation=%u scode=%u status=%u timestamp=0x%04x dst_id=0x%04x tlabel=%u tcode=%u src_id=0x%04x offset=0x%012llx header=%s data=%s",
|
|
|
|
__entry->transaction,
|
|
|
|
__entry->generation,
|
|
|
|
__entry->scode,
|
|
|
|
__entry->status,
|
|
|
|
__entry->timestamp,
|
|
|
|
ASYNC_HEADER_GET_DESTINATION(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_TLABEL(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_TCODE(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_SOURCE(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_OFFSET(__entry->header),
|
|
|
|
__print_array(__entry->header, ASYNC_HEADER_QUADLET_COUNT, QUADLET_SIZE),
|
|
|
|
__print_array(__get_dynamic_array(data),
|
|
|
|
__get_dynamic_array_len(data) / QUADLET_SIZE, QUADLET_SIZE)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2024-04-29 13:32:18 +09:00
|
|
|
DEFINE_EVENT_PRINT(async_outbound_initiate_template, async_response_outbound_initiate,
|
|
|
|
TP_PROTO(u64 transaction, unsigned int generation, unsigned int scode, const u32 *header, const u32 *data, unsigned int data_count),
|
|
|
|
TP_ARGS(transaction, generation, scode, header, data, data_count),
|
|
|
|
TP_printk(
|
|
|
|
"transaction=0x%llx generation=%u scode=%u dst_id=0x%04x tlabel=%u tcode=%u src_id=0x%04x rcode=%u header=%s data=%s",
|
|
|
|
__entry->transaction,
|
|
|
|
__entry->generation,
|
|
|
|
__entry->scode,
|
|
|
|
ASYNC_HEADER_GET_DESTINATION(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_TLABEL(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_TCODE(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_SOURCE(__entry->header),
|
|
|
|
ASYNC_HEADER_GET_RCODE(__entry->header),
|
|
|
|
__print_array(__entry->header, ASYNC_HEADER_QUADLET_COUNT, QUADLET_SIZE),
|
|
|
|
__print_array(__get_dynamic_array(data),
|
|
|
|
__get_dynamic_array_len(data) / QUADLET_SIZE, QUADLET_SIZE)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
DEFINE_EVENT(async_outbound_complete_template, async_response_outbound_complete,
|
|
|
|
TP_PROTO(u64 transaction, unsigned int generation, unsigned int scode, unsigned int status, unsigned int timestamp),
|
|
|
|
TP_ARGS(transaction, generation, scode, status, timestamp)
|
|
|
|
);
|
|
|
|
|
2024-04-29 13:32:15 +09:00
|
|
|
#undef ASYNC_HEADER_GET_DESTINATION
|
|
|
|
#undef ASYNC_HEADER_GET_TLABEL
|
|
|
|
#undef ASYNC_HEADER_GET_TCODE
|
|
|
|
#undef ASYNC_HEADER_GET_SOURCE
|
|
|
|
#undef ASYNC_HEADER_GET_OFFSET
|
2024-04-29 13:32:16 +09:00
|
|
|
#undef ASYNC_HEADER_GET_RCODE
|
2024-04-29 13:32:14 +09:00
|
|
|
|
2024-04-30 09:14:03 +09:00
|
|
|
TRACE_EVENT(async_phy_outbound_initiate,
|
|
|
|
TP_PROTO(u64 packet, unsigned int generation, u32 first_quadlet, u32 second_quadlet),
|
|
|
|
TP_ARGS(packet, generation, first_quadlet, second_quadlet),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u64, packet)
|
|
|
|
__field(u8, generation)
|
|
|
|
__field(u32, first_quadlet)
|
|
|
|
__field(u32, second_quadlet)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->packet = packet;
|
|
|
|
__entry->generation = generation;
|
|
|
|
__entry->first_quadlet = first_quadlet;
|
|
|
|
__entry->second_quadlet = second_quadlet
|
|
|
|
),
|
|
|
|
TP_printk(
|
2024-05-06 17:21:54 +09:00
|
|
|
"packet=0x%llx generation=%u first_quadlet=0x%08x second_quadlet=0x%08x",
|
2024-04-30 09:14:03 +09:00
|
|
|
__entry->packet,
|
|
|
|
__entry->generation,
|
|
|
|
__entry->first_quadlet,
|
|
|
|
__entry->second_quadlet
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
TRACE_EVENT(async_phy_outbound_complete,
|
|
|
|
TP_PROTO(u64 packet, unsigned int generation, unsigned int status, unsigned int timestamp),
|
|
|
|
TP_ARGS(packet, generation, status, timestamp),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u64, packet)
|
|
|
|
__field(u8, generation)
|
|
|
|
__field(u8, status)
|
|
|
|
__field(u16, timestamp)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->packet = packet;
|
|
|
|
__entry->generation = generation;
|
|
|
|
__entry->status = status;
|
|
|
|
__entry->timestamp = timestamp;
|
|
|
|
),
|
|
|
|
TP_printk(
|
2024-05-06 17:21:54 +09:00
|
|
|
"packet=0x%llx generation=%u status=%u timestamp=0x%04x",
|
2024-04-30 09:14:03 +09:00
|
|
|
__entry->packet,
|
|
|
|
__entry->generation,
|
|
|
|
__entry->status,
|
|
|
|
__entry->timestamp
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2024-04-30 09:14:04 +09:00
|
|
|
TRACE_EVENT(async_phy_inbound,
|
|
|
|
TP_PROTO(u64 packet, unsigned int generation, unsigned int status, unsigned int timestamp, u32 first_quadlet, u32 second_quadlet),
|
|
|
|
TP_ARGS(packet, generation, status, timestamp, first_quadlet, second_quadlet),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u64, packet)
|
|
|
|
__field(u8, generation)
|
|
|
|
__field(u8, status)
|
|
|
|
__field(u16, timestamp)
|
|
|
|
__field(u32, first_quadlet)
|
|
|
|
__field(u32, second_quadlet)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->packet = packet;
|
|
|
|
__entry->generation = generation;
|
|
|
|
__entry->status = status;
|
|
|
|
__entry->timestamp = timestamp;
|
|
|
|
__entry->first_quadlet = first_quadlet;
|
|
|
|
__entry->second_quadlet = second_quadlet
|
|
|
|
),
|
|
|
|
TP_printk(
|
2024-05-06 17:21:54 +09:00
|
|
|
"packet=0x%llx generation=%u status=%u timestamp=0x%04x first_quadlet=0x%08x second_quadlet=0x%08x",
|
2024-04-30 09:14:04 +09:00
|
|
|
__entry->packet,
|
|
|
|
__entry->generation,
|
|
|
|
__entry->status,
|
|
|
|
__entry->timestamp,
|
|
|
|
__entry->first_quadlet,
|
|
|
|
__entry->second_quadlet
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2024-05-01 16:32:36 +09:00
|
|
|
DECLARE_EVENT_CLASS(bus_reset_arrange_template,
|
|
|
|
TP_PROTO(unsigned int generation, bool short_reset),
|
|
|
|
TP_ARGS(generation, short_reset),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u8, generation)
|
|
|
|
__field(bool, short_reset)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->generation = generation;
|
|
|
|
__entry->short_reset = short_reset;
|
|
|
|
),
|
|
|
|
TP_printk(
|
|
|
|
"generation=%u short_reset=%s",
|
|
|
|
__entry->generation,
|
|
|
|
__entry->short_reset ? "true" : "false"
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
DEFINE_EVENT(bus_reset_arrange_template, bus_reset_initiate,
|
|
|
|
TP_PROTO(unsigned int generation, bool short_reset),
|
|
|
|
TP_ARGS(generation, short_reset)
|
|
|
|
);
|
|
|
|
|
|
|
|
DEFINE_EVENT(bus_reset_arrange_template, bus_reset_schedule,
|
|
|
|
TP_PROTO(unsigned int generation, bool short_reset),
|
|
|
|
TP_ARGS(generation, short_reset)
|
|
|
|
);
|
|
|
|
|
|
|
|
DEFINE_EVENT(bus_reset_arrange_template, bus_reset_postpone,
|
|
|
|
TP_PROTO(unsigned int generation, bool short_reset),
|
|
|
|
TP_ARGS(generation, short_reset)
|
|
|
|
);
|
|
|
|
|
2024-05-01 16:32:38 +09:00
|
|
|
TRACE_EVENT(bus_reset_handle,
|
|
|
|
TP_PROTO(unsigned int generation, unsigned int node_id, bool bm_abdicate, u32 *self_ids, unsigned int self_id_count),
|
|
|
|
TP_ARGS(generation, node_id, bm_abdicate, self_ids, self_id_count),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u8, generation)
|
|
|
|
__field(u8, node_id)
|
|
|
|
__field(bool, bm_abdicate)
|
|
|
|
__dynamic_array(u32, self_ids, self_id_count)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->generation = generation;
|
|
|
|
__entry->node_id = node_id;
|
|
|
|
__entry->bm_abdicate = bm_abdicate;
|
|
|
|
memcpy(__get_dynamic_array(self_ids), self_ids, __get_dynamic_array_len(self_ids));
|
|
|
|
),
|
|
|
|
TP_printk(
|
|
|
|
"generation=%u node_id=0x%04x bm_abdicate=%s self_ids=%s",
|
|
|
|
__entry->generation,
|
|
|
|
__entry->node_id,
|
|
|
|
__entry->bm_abdicate ? "true" : "false",
|
|
|
|
__print_array(__get_dynamic_array(self_ids),
|
|
|
|
__get_dynamic_array_len(self_ids) / QUADLET_SIZE, QUADLET_SIZE)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
#undef QUADLET_SIZE
|
|
|
|
|
2024-04-29 13:32:14 +09:00
|
|
|
#endif // _FIREWIRE_TRACE_EVENT_H
|
|
|
|
|
|
|
|
#include <trace/define_trace.h>
|