aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/uapi/linux')
-rw-r--r--include/uapi/linux/perf_event.h68
1 files changed, 66 insertions, 2 deletions
diff --git a/include/uapi/linux/perf_event.h b/include/uapi/linux/perf_event.h
index cdc255da02e2..5b5762006855 100644
--- a/include/uapi/linux/perf_event.h
+++ b/include/uapi/linux/perf_event.h
@@ -133,9 +133,9 @@ enum perf_event_sample_format {
133 PERF_SAMPLE_REGS_USER = 1U << 12, 133 PERF_SAMPLE_REGS_USER = 1U << 12,
134 PERF_SAMPLE_STACK_USER = 1U << 13, 134 PERF_SAMPLE_STACK_USER = 1U << 13,
135 PERF_SAMPLE_WEIGHT = 1U << 14, 135 PERF_SAMPLE_WEIGHT = 1U << 14,
136 PERF_SAMPLE_DATA_SRC = 1U << 15,
136 137
137 PERF_SAMPLE_MAX = 1U << 15, /* non-ABI */ 138 PERF_SAMPLE_MAX = 1U << 16, /* non-ABI */
138
139}; 139};
140 140
141/* 141/*
@@ -592,6 +592,7 @@ enum perf_event_type {
592 * u64 dyn_size; } && PERF_SAMPLE_STACK_USER 592 * u64 dyn_size; } && PERF_SAMPLE_STACK_USER
593 * 593 *
594 * { u64 weight; } && PERF_SAMPLE_WEIGHT 594 * { u64 weight; } && PERF_SAMPLE_WEIGHT
595 * { u64 data_src; } && PERF_SAMPLE_DATA_SRC
595 * }; 596 * };
596 */ 597 */
597 PERF_RECORD_SAMPLE = 9, 598 PERF_RECORD_SAMPLE = 9,
@@ -617,4 +618,67 @@ enum perf_callchain_context {
617#define PERF_FLAG_FD_OUTPUT (1U << 1) 618#define PERF_FLAG_FD_OUTPUT (1U << 1)
618#define PERF_FLAG_PID_CGROUP (1U << 2) /* pid=cgroup id, per-cpu mode only */ 619#define PERF_FLAG_PID_CGROUP (1U << 2) /* pid=cgroup id, per-cpu mode only */
619 620
621union perf_mem_data_src {
622 __u64 val;
623 struct {
624 __u64 mem_op:5, /* type of opcode */
625 mem_lvl:14, /* memory hierarchy level */
626 mem_snoop:5, /* snoop mode */
627 mem_lock:2, /* lock instr */
628 mem_dtlb:7, /* tlb access */
629 mem_rsvd:31;
630 };
631};
632
633/* type of opcode (load/store/prefetch,code) */
634#define PERF_MEM_OP_NA 0x01 /* not available */
635#define PERF_MEM_OP_LOAD 0x02 /* load instruction */
636#define PERF_MEM_OP_STORE 0x04 /* store instruction */
637#define PERF_MEM_OP_PFETCH 0x08 /* prefetch */
638#define PERF_MEM_OP_EXEC 0x10 /* code (execution) */
639#define PERF_MEM_OP_SHIFT 0
640
641/* memory hierarchy (memory level, hit or miss) */
642#define PERF_MEM_LVL_NA 0x01 /* not available */
643#define PERF_MEM_LVL_HIT 0x02 /* hit level */
644#define PERF_MEM_LVL_MISS 0x04 /* miss level */
645#define PERF_MEM_LVL_L1 0x08 /* L1 */
646#define PERF_MEM_LVL_LFB 0x10 /* Line Fill Buffer */
647#define PERF_MEM_LVL_L2 0x20 /* L2 hit */
648#define PERF_MEM_LVL_L3 0x40 /* L3 hit */
649#define PERF_MEM_LVL_LOC_RAM 0x80 /* Local DRAM */
650#define PERF_MEM_LVL_REM_RAM1 0x100 /* Remote DRAM (1 hop) */
651#define PERF_MEM_LVL_REM_RAM2 0x200 /* Remote DRAM (2 hops) */
652#define PERF_MEM_LVL_REM_CCE1 0x400 /* Remote Cache (1 hop) */
653#define PERF_MEM_LVL_REM_CCE2 0x800 /* Remote Cache (2 hops) */
654#define PERF_MEM_LVL_IO 0x1000 /* I/O memory */
655#define PERF_MEM_LVL_UNC 0x2000 /* Uncached memory */
656#define PERF_MEM_LVL_SHIFT 5
657
658/* snoop mode */
659#define PERF_MEM_SNOOP_NA 0x01 /* not available */
660#define PERF_MEM_SNOOP_NONE 0x02 /* no snoop */
661#define PERF_MEM_SNOOP_HIT 0x04 /* snoop hit */
662#define PERF_MEM_SNOOP_MISS 0x08 /* snoop miss */
663#define PERF_MEM_SNOOP_HITM 0x10 /* snoop hit modified */
664#define PERF_MEM_SNOOP_SHIFT 19
665
666/* locked instruction */
667#define PERF_MEM_LOCK_NA 0x01 /* not available */
668#define PERF_MEM_LOCK_LOCKED 0x02 /* locked transaction */
669#define PERF_MEM_LOCK_SHIFT 24
670
671/* TLB access */
672#define PERF_MEM_TLB_NA 0x01 /* not available */
673#define PERF_MEM_TLB_HIT 0x02 /* hit level */
674#define PERF_MEM_TLB_MISS 0x04 /* miss level */
675#define PERF_MEM_TLB_L1 0x08 /* L1 */
676#define PERF_MEM_TLB_L2 0x10 /* L2 */
677#define PERF_MEM_TLB_WK 0x20 /* Hardware Walker*/
678#define PERF_MEM_TLB_OS 0x40 /* OS fault handler */
679#define PERF_MEM_TLB_SHIFT 26
680
681#define PERF_MEM_S(a, s) \
682 (((u64)PERF_MEM_##a##_##s) << PERF_MEM_##a##_SHIFT)
683
620#endif /* _UAPI_LINUX_PERF_EVENT_H */ 684#endif /* _UAPI_LINUX_PERF_EVENT_H */