Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / perf / util / arm-spe-decoder / arm-spe-decoder.h
blob24727b8ca7ffa2ab7b33a7243c358c51ea1a2302
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * arm_spe_decoder.h: Arm Statistical Profiling Extensions support
4 * Copyright (c) 2019-2020, Arm Ltd.
5 */
7 #ifndef INCLUDE__ARM_SPE_DECODER_H__
8 #define INCLUDE__ARM_SPE_DECODER_H__
10 #include <stdbool.h>
11 #include <stddef.h>
12 #include <stdint.h>
14 #include "arm-spe-pkt-decoder.h"
16 enum arm_spe_sample_type {
17 ARM_SPE_L1D_ACCESS = 1 << 0,
18 ARM_SPE_L1D_MISS = 1 << 1,
19 ARM_SPE_LLC_ACCESS = 1 << 2,
20 ARM_SPE_LLC_MISS = 1 << 3,
21 ARM_SPE_TLB_ACCESS = 1 << 4,
22 ARM_SPE_TLB_MISS = 1 << 5,
23 ARM_SPE_BRANCH_MISS = 1 << 6,
24 ARM_SPE_REMOTE_ACCESS = 1 << 7,
27 struct arm_spe_record {
28 enum arm_spe_sample_type type;
29 int err;
30 u64 from_ip;
31 u64 to_ip;
32 u64 timestamp;
35 struct arm_spe_insn;
37 struct arm_spe_buffer {
38 const unsigned char *buf;
39 size_t len;
40 u64 offset;
41 u64 trace_nr;
44 struct arm_spe_params {
45 int (*get_trace)(struct arm_spe_buffer *buffer, void *data);
46 void *data;
49 struct arm_spe_decoder {
50 int (*get_trace)(struct arm_spe_buffer *buffer, void *data);
51 void *data;
52 struct arm_spe_record record;
54 const unsigned char *buf;
55 size_t len;
57 struct arm_spe_pkt packet;
60 struct arm_spe_decoder *arm_spe_decoder_new(struct arm_spe_params *params);
61 void arm_spe_decoder_free(struct arm_spe_decoder *decoder);
63 int arm_spe_decode(struct arm_spe_decoder *decoder);
65 #endif