1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * intel_pt_pkt_decoder.h: Intel Processor Trace support
4 * Copyright (c) 2013-2014, Intel Corporation.
7 #ifndef INCLUDE__INTEL_PT_PKT_DECODER_H__
8 #define INCLUDE__INTEL_PT_PKT_DECODER_H__
13 #define INTEL_PT_PKT_DESC_MAX 256
15 #define INTEL_PT_NEED_MORE_BYTES -1
16 #define INTEL_PT_BAD_PACKET -2
18 #define INTEL_PT_PSB_STR "\002\202\002\202\002\202\002\202" \
19 "\002\202\002\202\002\202\002\202"
20 #define INTEL_PT_PSB_LEN 16
22 #define INTEL_PT_PKT_MAX_SZ 16
24 enum intel_pt_pkt_type
{
60 enum intel_pt_pkt_type type
;
66 * Decoding of BIP packets conflicts with single-byte TNT packets. Since BIP
67 * packets only occur in the context of a block (i.e. between BBP and BEP), that
68 * context must be recorded and passed to the packet decoder.
70 enum intel_pt_pkt_ctx
{
71 INTEL_PT_NO_CTX
, /* BIP packets are invalid */
72 INTEL_PT_BLK_4_CTX
, /* 4-byte BIP packets */
73 INTEL_PT_BLK_8_CTX
, /* 8-byte BIP packets */
76 const char *intel_pt_pkt_name(enum intel_pt_pkt_type
);
78 int intel_pt_get_packet(const unsigned char *buf
, size_t len
,
79 struct intel_pt_pkt
*packet
,
80 enum intel_pt_pkt_ctx
*ctx
);
82 void intel_pt_upd_pkt_ctx(const struct intel_pt_pkt
*packet
,
83 enum intel_pt_pkt_ctx
*ctx
);
85 int intel_pt_pkt_desc(const struct intel_pt_pkt
*packet
, char *buf
, size_t len
);