blob: 1ca5d1e7d4f253429fc1c44968d8219dff4086cd [file] [log] [blame]
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001#include <linux/perf_event.h>
2#include <linux/types.h>
3
4#include <asm/perf_event.h>
5#include <asm/msr.h>
Stephane Eranian3e702ff2012-02-09 23:20:58 +01006#include <asm/insn.h>
Kevin Winchesterde0428a2011-08-30 20:41:05 -03007
Borislav Petkov27f6d222016-02-10 10:55:23 +01008#include "../perf_event.h"
Peter Zijlstracaff2be2010-03-03 12:02:30 +01009
10enum {
11 LBR_FORMAT_32 = 0x00,
12 LBR_FORMAT_LIP = 0x01,
13 LBR_FORMAT_EIP = 0x02,
14 LBR_FORMAT_EIP_FLAGS = 0x03,
Andi Kleen135c5612013-06-17 17:36:51 -070015 LBR_FORMAT_EIP_FLAGS2 = 0x04,
Andi Kleen50eab8f2015-05-10 12:22:43 -070016 LBR_FORMAT_INFO = 0x05,
17 LBR_FORMAT_MAX_KNOWN = LBR_FORMAT_INFO,
Andi Kleen135c5612013-06-17 17:36:51 -070018};
19
20static enum {
21 LBR_EIP_FLAGS = 1,
22 LBR_TSX = 2,
23} lbr_desc[LBR_FORMAT_MAX_KNOWN + 1] = {
24 [LBR_FORMAT_EIP_FLAGS] = LBR_EIP_FLAGS,
25 [LBR_FORMAT_EIP_FLAGS2] = LBR_EIP_FLAGS | LBR_TSX,
Peter Zijlstracaff2be2010-03-03 12:02:30 +010026};
27
28/*
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +010029 * Intel LBR_SELECT bits
30 * Intel Vol3a, April 2011, Section 16.7 Table 16-10
31 *
32 * Hardware branch filter (not available on all CPUs)
33 */
34#define LBR_KERNEL_BIT 0 /* do not capture at ring0 */
35#define LBR_USER_BIT 1 /* do not capture at ring > 0 */
36#define LBR_JCC_BIT 2 /* do not capture conditional branches */
37#define LBR_REL_CALL_BIT 3 /* do not capture relative calls */
38#define LBR_IND_CALL_BIT 4 /* do not capture indirect calls */
39#define LBR_RETURN_BIT 5 /* do not capture near returns */
40#define LBR_IND_JMP_BIT 6 /* do not capture indirect jumps */
41#define LBR_REL_JMP_BIT 7 /* do not capture relative jumps */
42#define LBR_FAR_BIT 8 /* do not capture far branches */
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -050043#define LBR_CALL_STACK_BIT 9 /* enable call stack */
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +010044
Andi Kleenb16a5b52015-10-20 11:46:34 -070045/*
46 * Following bit only exists in Linux; we mask it out before writing it to
47 * the actual MSR. But it helps the constraint perf code to understand
48 * that this is a separate configuration.
49 */
50#define LBR_NO_INFO_BIT 63 /* don't read LBR_INFO. */
51
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +010052#define LBR_KERNEL (1 << LBR_KERNEL_BIT)
53#define LBR_USER (1 << LBR_USER_BIT)
54#define LBR_JCC (1 << LBR_JCC_BIT)
55#define LBR_REL_CALL (1 << LBR_REL_CALL_BIT)
56#define LBR_IND_CALL (1 << LBR_IND_CALL_BIT)
57#define LBR_RETURN (1 << LBR_RETURN_BIT)
58#define LBR_REL_JMP (1 << LBR_REL_JMP_BIT)
59#define LBR_IND_JMP (1 << LBR_IND_JMP_BIT)
60#define LBR_FAR (1 << LBR_FAR_BIT)
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -050061#define LBR_CALL_STACK (1 << LBR_CALL_STACK_BIT)
Andi Kleenb16a5b52015-10-20 11:46:34 -070062#define LBR_NO_INFO (1ULL << LBR_NO_INFO_BIT)
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +010063
64#define LBR_PLM (LBR_KERNEL | LBR_USER)
65
Kan Liangcf3beb72016-04-21 02:30:10 -070066#define LBR_SEL_MASK 0x3ff /* valid bits in LBR_SELECT */
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +010067#define LBR_NOT_SUPP -1 /* LBR filter not supported */
68#define LBR_IGN 0 /* ignored */
69
70#define LBR_ANY \
71 (LBR_JCC |\
72 LBR_REL_CALL |\
73 LBR_IND_CALL |\
74 LBR_RETURN |\
75 LBR_REL_JMP |\
76 LBR_IND_JMP |\
77 LBR_FAR)
78
79#define LBR_FROM_FLAG_MISPRED (1ULL << 63)
Andi Kleen135c5612013-06-17 17:36:51 -070080#define LBR_FROM_FLAG_IN_TX (1ULL << 62)
81#define LBR_FROM_FLAG_ABORT (1ULL << 61)
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +010082
83/*
Stephane Eranian3e702ff2012-02-09 23:20:58 +010084 * x86control flow change classification
85 * x86control flow changes include branches, interrupts, traps, faults
86 */
87enum {
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -050088 X86_BR_NONE = 0, /* unknown */
Stephane Eranian3e702ff2012-02-09 23:20:58 +010089
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -050090 X86_BR_USER = 1 << 0, /* branch target is user */
91 X86_BR_KERNEL = 1 << 1, /* branch target is kernel */
Stephane Eranian3e702ff2012-02-09 23:20:58 +010092
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -050093 X86_BR_CALL = 1 << 2, /* call */
94 X86_BR_RET = 1 << 3, /* return */
95 X86_BR_SYSCALL = 1 << 4, /* syscall */
96 X86_BR_SYSRET = 1 << 5, /* syscall return */
97 X86_BR_INT = 1 << 6, /* sw interrupt */
98 X86_BR_IRET = 1 << 7, /* return from interrupt */
99 X86_BR_JCC = 1 << 8, /* conditional */
100 X86_BR_JMP = 1 << 9, /* jump */
101 X86_BR_IRQ = 1 << 10,/* hw interrupt or trap or fault */
102 X86_BR_IND_CALL = 1 << 11,/* indirect calls */
103 X86_BR_ABORT = 1 << 12,/* transaction abort */
104 X86_BR_IN_TX = 1 << 13,/* in transaction */
105 X86_BR_NO_TX = 1 << 14,/* not in transaction */
Yan, Zhengaa54ae92014-11-04 21:56:11 -0500106 X86_BR_ZERO_CALL = 1 << 15,/* zero length call */
107 X86_BR_CALL_STACK = 1 << 16,/* call stack */
Stephane Eranian7b74cfb2015-05-14 23:09:59 +0200108 X86_BR_IND_JMP = 1 << 17,/* indirect jump */
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100109};
110
111#define X86_BR_PLM (X86_BR_USER | X86_BR_KERNEL)
Andi Kleen135c5612013-06-17 17:36:51 -0700112#define X86_BR_ANYTX (X86_BR_NO_TX | X86_BR_IN_TX)
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100113
114#define X86_BR_ANY \
115 (X86_BR_CALL |\
116 X86_BR_RET |\
117 X86_BR_SYSCALL |\
118 X86_BR_SYSRET |\
119 X86_BR_INT |\
120 X86_BR_IRET |\
121 X86_BR_JCC |\
122 X86_BR_JMP |\
123 X86_BR_IRQ |\
Andi Kleen135c5612013-06-17 17:36:51 -0700124 X86_BR_ABORT |\
Yan, Zhengaa54ae92014-11-04 21:56:11 -0500125 X86_BR_IND_CALL |\
Stephane Eranian7b74cfb2015-05-14 23:09:59 +0200126 X86_BR_IND_JMP |\
Yan, Zhengaa54ae92014-11-04 21:56:11 -0500127 X86_BR_ZERO_CALL)
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100128
129#define X86_BR_ALL (X86_BR_PLM | X86_BR_ANY)
130
131#define X86_BR_ANY_CALL \
132 (X86_BR_CALL |\
133 X86_BR_IND_CALL |\
Yan, Zhengaa54ae92014-11-04 21:56:11 -0500134 X86_BR_ZERO_CALL |\
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100135 X86_BR_SYSCALL |\
136 X86_BR_IRQ |\
137 X86_BR_INT)
138
139static void intel_pmu_lbr_filter(struct cpu_hw_events *cpuc);
140
141/*
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100142 * We only support LBR implementations that have FREEZE_LBRS_ON_PMI
143 * otherwise it becomes near impossible to get a reliable stack.
144 */
145
Andi Kleen1a78d932015-03-20 10:11:23 -0700146static void __intel_pmu_lbr_enable(bool pmi)
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100147{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500148 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Andi Kleencd1f11d2015-03-20 10:11:24 -0700149 u64 debugctl, lbr_select = 0, orig_debugctl;
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100150
Andi Kleen1a78d932015-03-20 10:11:23 -0700151 /*
Andi Kleen425507f2015-05-10 12:22:46 -0700152 * No need to unfreeze manually, as v4 can do that as part
153 * of the GLOBAL_STATUS ack.
154 */
155 if (pmi && x86_pmu.version >= 4)
156 return;
157
158 /*
Andi Kleen1a78d932015-03-20 10:11:23 -0700159 * No need to reprogram LBR_SELECT in a PMI, as it
160 * did not change.
161 */
Kan Liang96f3eda2015-09-14 10:14:07 -0400162 if (cpuc->lbr_sel)
Andi Kleenb16a5b52015-10-20 11:46:34 -0700163 lbr_select = cpuc->lbr_sel->config & x86_pmu.lbr_sel_mask;
Stephane Eranian6fc2e832015-12-03 23:33:17 +0100164 if (!pmi && cpuc->lbr_sel)
Yan, Zheng2c70d002014-11-04 21:56:10 -0500165 wrmsrl(MSR_LBR_SELECT, lbr_select);
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100166
167 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl);
Andi Kleencd1f11d2015-03-20 10:11:24 -0700168 orig_debugctl = debugctl;
Yan, Zheng2c70d002014-11-04 21:56:10 -0500169 debugctl |= DEBUGCTLMSR_LBR;
170 /*
171 * LBR callstack does not work well with FREEZE_LBRS_ON_PMI.
172 * If FREEZE_LBRS_ON_PMI is set, PMI near call/return instructions
173 * may cause superfluous increase/decrease of LBR_TOS.
174 */
175 if (!(lbr_select & LBR_CALL_STACK))
176 debugctl |= DEBUGCTLMSR_FREEZE_LBRS_ON_PMI;
Andi Kleencd1f11d2015-03-20 10:11:24 -0700177 if (orig_debugctl != debugctl)
178 wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctl);
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100179}
180
181static void __intel_pmu_lbr_disable(void)
182{
183 u64 debugctl;
184
185 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl);
Peter Zijlstra7c5ecaf2010-03-25 14:51:49 +0100186 debugctl &= ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_FREEZE_LBRS_ON_PMI);
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100187 wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctl);
188}
189
190static void intel_pmu_lbr_reset_32(void)
191{
192 int i;
193
194 for (i = 0; i < x86_pmu.lbr_nr; i++)
195 wrmsrl(x86_pmu.lbr_from + i, 0);
196}
197
198static void intel_pmu_lbr_reset_64(void)
199{
200 int i;
201
202 for (i = 0; i < x86_pmu.lbr_nr; i++) {
203 wrmsrl(x86_pmu.lbr_from + i, 0);
204 wrmsrl(x86_pmu.lbr_to + i, 0);
Andi Kleen50eab8f2015-05-10 12:22:43 -0700205 if (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_INFO)
206 wrmsrl(MSR_LBR_INFO_0 + i, 0);
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100207 }
208}
209
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300210void intel_pmu_lbr_reset(void)
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100211{
Peter Zijlstra74846d32010-03-05 13:49:35 +0100212 if (!x86_pmu.lbr_nr)
213 return;
214
Peter Zijlstra8db909a2010-03-03 17:07:40 +0100215 if (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_32)
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100216 intel_pmu_lbr_reset_32();
217 else
218 intel_pmu_lbr_reset_64();
219}
220
Yan, Zheng76cb2c62014-11-04 21:56:05 -0500221/*
222 * TOS = most recently recorded branch
223 */
224static inline u64 intel_pmu_lbr_tos(void)
225{
226 u64 tos;
227
228 rdmsrl(x86_pmu.lbr_tos, tos);
229 return tos;
230}
231
232enum {
233 LBR_NONE,
234 LBR_VALID,
235};
236
237static void __intel_pmu_lbr_restore(struct x86_perf_task_context *task_ctx)
238{
239 int i;
240 unsigned lbr_idx, mask;
241 u64 tos;
242
243 if (task_ctx->lbr_callstack_users == 0 ||
244 task_ctx->lbr_stack_state == LBR_NONE) {
245 intel_pmu_lbr_reset();
246 return;
247 }
248
249 mask = x86_pmu.lbr_nr - 1;
Andi Kleenb28ae952015-10-20 11:46:33 -0700250 tos = task_ctx->tos;
Andi Kleen90405aa2015-05-27 21:13:18 -0700251 for (i = 0; i < tos; i++) {
Yan, Zheng76cb2c62014-11-04 21:56:05 -0500252 lbr_idx = (tos - i) & mask;
253 wrmsrl(x86_pmu.lbr_from + lbr_idx, task_ctx->lbr_from[i]);
254 wrmsrl(x86_pmu.lbr_to + lbr_idx, task_ctx->lbr_to[i]);
Andi Kleen50eab8f2015-05-10 12:22:43 -0700255 if (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_INFO)
Andi Kleene0573362015-05-27 21:13:17 -0700256 wrmsrl(MSR_LBR_INFO_0 + lbr_idx, task_ctx->lbr_info[i]);
Yan, Zheng76cb2c62014-11-04 21:56:05 -0500257 }
Andi Kleenb28ae952015-10-20 11:46:33 -0700258 wrmsrl(x86_pmu.lbr_tos, tos);
Yan, Zheng76cb2c62014-11-04 21:56:05 -0500259 task_ctx->lbr_stack_state = LBR_NONE;
260}
261
262static void __intel_pmu_lbr_save(struct x86_perf_task_context *task_ctx)
263{
264 int i;
265 unsigned lbr_idx, mask;
266 u64 tos;
267
268 if (task_ctx->lbr_callstack_users == 0) {
269 task_ctx->lbr_stack_state = LBR_NONE;
270 return;
271 }
272
273 mask = x86_pmu.lbr_nr - 1;
274 tos = intel_pmu_lbr_tos();
Andi Kleen90405aa2015-05-27 21:13:18 -0700275 for (i = 0; i < tos; i++) {
Yan, Zheng76cb2c62014-11-04 21:56:05 -0500276 lbr_idx = (tos - i) & mask;
277 rdmsrl(x86_pmu.lbr_from + lbr_idx, task_ctx->lbr_from[i]);
278 rdmsrl(x86_pmu.lbr_to + lbr_idx, task_ctx->lbr_to[i]);
Andi Kleen50eab8f2015-05-10 12:22:43 -0700279 if (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_INFO)
Andi Kleene0573362015-05-27 21:13:17 -0700280 rdmsrl(MSR_LBR_INFO_0 + lbr_idx, task_ctx->lbr_info[i]);
Yan, Zheng76cb2c62014-11-04 21:56:05 -0500281 }
Andi Kleenb28ae952015-10-20 11:46:33 -0700282 task_ctx->tos = tos;
Yan, Zheng76cb2c62014-11-04 21:56:05 -0500283 task_ctx->lbr_stack_state = LBR_VALID;
284}
285
Yan, Zheng2a0ad3b2014-11-04 21:55:59 -0500286void intel_pmu_lbr_sched_task(struct perf_event_context *ctx, bool sched_in)
287{
288 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Yan, Zheng76cb2c62014-11-04 21:56:05 -0500289 struct x86_perf_task_context *task_ctx;
Yan, Zheng2a0ad3b2014-11-04 21:55:59 -0500290
Yan, Zheng2a0ad3b2014-11-04 21:55:59 -0500291 /*
Yan, Zheng76cb2c62014-11-04 21:56:05 -0500292 * If LBR callstack feature is enabled and the stack was saved when
293 * the task was scheduled out, restore the stack. Otherwise flush
294 * the LBR stack.
295 */
296 task_ctx = ctx ? ctx->task_ctx_data : NULL;
297 if (task_ctx) {
298 if (sched_in) {
299 __intel_pmu_lbr_restore(task_ctx);
300 cpuc->lbr_context = ctx;
301 } else {
302 __intel_pmu_lbr_save(task_ctx);
303 }
304 return;
305 }
306
307 /*
Yan, Zheng2a0ad3b2014-11-04 21:55:59 -0500308 * When sampling the branck stack in system-wide, it may be
309 * necessary to flush the stack on context switch. This happens
310 * when the branch stack does not tag its entries with the pid
311 * of the current task. Otherwise it becomes impossible to
312 * associate a branch entry with a task. This ambiguity is more
313 * likely to appear when the branch stack supports priv level
314 * filtering and the user sets it to monitor only at the user
315 * level (which could be a useful measurement in system-wide
316 * mode). In that case, the risk is high of having a branch
317 * stack with branch from multiple tasks.
318 */
319 if (sched_in) {
320 intel_pmu_lbr_reset();
321 cpuc->lbr_context = ctx;
322 }
323}
324
Yan, Zheng63f0c1d2014-11-04 21:56:04 -0500325static inline bool branch_user_callstack(unsigned br_sel)
326{
327 return (br_sel & X86_BR_USER) && (br_sel & X86_BR_CALL_STACK);
328}
329
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300330void intel_pmu_lbr_enable(struct perf_event *event)
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100331{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500332 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Yan, Zheng63f0c1d2014-11-04 21:56:04 -0500333 struct x86_perf_task_context *task_ctx;
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100334
335 if (!x86_pmu.lbr_nr)
336 return;
337
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100338 /*
Peter Zijlstrab83a46e2010-03-08 13:51:12 +0100339 * Reset the LBR stack if we changed task context to
340 * avoid data leaks.
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100341 */
Peter Zijlstrab83a46e2010-03-08 13:51:12 +0100342 if (event->ctx->task && cpuc->lbr_context != event->ctx) {
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100343 intel_pmu_lbr_reset();
344 cpuc->lbr_context = event->ctx;
345 }
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100346 cpuc->br_sel = event->hw.branch_reg.reg;
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100347
Yan, Zheng63f0c1d2014-11-04 21:56:04 -0500348 if (branch_user_callstack(cpuc->br_sel) && event->ctx &&
349 event->ctx->task_ctx_data) {
350 task_ctx = event->ctx->task_ctx_data;
351 task_ctx->lbr_callstack_users++;
352 }
353
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100354 cpuc->lbr_users++;
Yan, Zheng2a0ad3b2014-11-04 21:55:59 -0500355 perf_sched_cb_inc(event->ctx->pmu);
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100356}
357
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300358void intel_pmu_lbr_disable(struct perf_event *event)
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100359{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500360 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Yan, Zheng63f0c1d2014-11-04 21:56:04 -0500361 struct x86_perf_task_context *task_ctx;
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100362
363 if (!x86_pmu.lbr_nr)
364 return;
365
Yan, Zheng63f0c1d2014-11-04 21:56:04 -0500366 if (branch_user_callstack(cpuc->br_sel) && event->ctx &&
367 event->ctx->task_ctx_data) {
368 task_ctx = event->ctx->task_ctx_data;
369 task_ctx->lbr_callstack_users--;
370 }
371
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100372 cpuc->lbr_users--;
Peter Zijlstrab83a46e2010-03-08 13:51:12 +0100373 WARN_ON_ONCE(cpuc->lbr_users < 0);
Yan, Zheng2a0ad3b2014-11-04 21:55:59 -0500374 perf_sched_cb_dec(event->ctx->pmu);
Peter Zijlstra2df202b2010-03-06 13:48:54 +0100375
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100376 if (cpuc->enabled && !cpuc->lbr_users) {
Peter Zijlstra2df202b2010-03-06 13:48:54 +0100377 __intel_pmu_lbr_disable();
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100378 /* avoid stale pointer */
379 cpuc->lbr_context = NULL;
380 }
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100381}
382
Andi Kleen1a78d932015-03-20 10:11:23 -0700383void intel_pmu_lbr_enable_all(bool pmi)
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100384{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500385 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100386
387 if (cpuc->lbr_users)
Andi Kleen1a78d932015-03-20 10:11:23 -0700388 __intel_pmu_lbr_enable(pmi);
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100389}
390
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300391void intel_pmu_lbr_disable_all(void)
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100392{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500393 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100394
395 if (cpuc->lbr_users)
396 __intel_pmu_lbr_disable();
397}
398
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100399static void intel_pmu_lbr_read_32(struct cpu_hw_events *cpuc)
400{
401 unsigned long mask = x86_pmu.lbr_nr - 1;
402 u64 tos = intel_pmu_lbr_tos();
403 int i;
404
Peter Zijlstra63fb3f92010-03-09 11:51:02 +0100405 for (i = 0; i < x86_pmu.lbr_nr; i++) {
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100406 unsigned long lbr_idx = (tos - i) & mask;
407 union {
408 struct {
409 u32 from;
410 u32 to;
411 };
412 u64 lbr;
413 } msr_lastbranch;
414
415 rdmsrl(x86_pmu.lbr_from + lbr_idx, msr_lastbranch.lbr);
416
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100417 cpuc->lbr_entries[i].from = msr_lastbranch.from;
418 cpuc->lbr_entries[i].to = msr_lastbranch.to;
419 cpuc->lbr_entries[i].mispred = 0;
420 cpuc->lbr_entries[i].predicted = 0;
421 cpuc->lbr_entries[i].reserved = 0;
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100422 }
423 cpuc->lbr_stack.nr = i;
424}
425
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100426/*
427 * Due to lack of segmentation in Linux the effective address (offset)
428 * is the same as the linear address, allowing us to merge the LIP and EIP
429 * LBR formats.
430 */
431static void intel_pmu_lbr_read_64(struct cpu_hw_events *cpuc)
432{
Stephane Eranian6fc2e832015-12-03 23:33:17 +0100433 bool need_info = false;
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100434 unsigned long mask = x86_pmu.lbr_nr - 1;
Peter Zijlstra8db909a2010-03-03 17:07:40 +0100435 int lbr_format = x86_pmu.intel_cap.lbr_format;
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100436 u64 tos = intel_pmu_lbr_tos();
437 int i;
Andi Kleenb7af41a2013-09-20 07:40:44 -0700438 int out = 0;
Andi Kleen90405aa2015-05-27 21:13:18 -0700439 int num = x86_pmu.lbr_nr;
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100440
Stephane Eranian6fc2e832015-12-03 23:33:17 +0100441 if (cpuc->lbr_sel) {
442 need_info = !(cpuc->lbr_sel->config & LBR_NO_INFO);
443 if (cpuc->lbr_sel->config & LBR_CALL_STACK)
444 num = tos;
445 }
Andi Kleen90405aa2015-05-27 21:13:18 -0700446
447 for (i = 0; i < num; i++) {
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100448 unsigned long lbr_idx = (tos - i) & mask;
Andi Kleen135c5612013-06-17 17:36:51 -0700449 u64 from, to, mis = 0, pred = 0, in_tx = 0, abort = 0;
450 int skip = 0;
Andi Kleen50eab8f2015-05-10 12:22:43 -0700451 u16 cycles = 0;
Andi Kleen135c5612013-06-17 17:36:51 -0700452 int lbr_flags = lbr_desc[lbr_format];
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100453
454 rdmsrl(x86_pmu.lbr_from + lbr_idx, from);
455 rdmsrl(x86_pmu.lbr_to + lbr_idx, to);
456
Andi Kleenb16a5b52015-10-20 11:46:34 -0700457 if (lbr_format == LBR_FORMAT_INFO && need_info) {
Andi Kleen50eab8f2015-05-10 12:22:43 -0700458 u64 info;
459
460 rdmsrl(MSR_LBR_INFO_0 + lbr_idx, info);
461 mis = !!(info & LBR_INFO_MISPRED);
462 pred = !mis;
463 in_tx = !!(info & LBR_INFO_IN_TX);
464 abort = !!(info & LBR_INFO_ABORT);
465 cycles = (info & LBR_INFO_CYCLES);
466 }
Andi Kleen135c5612013-06-17 17:36:51 -0700467 if (lbr_flags & LBR_EIP_FLAGS) {
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100468 mis = !!(from & LBR_FROM_FLAG_MISPRED);
469 pred = !mis;
Andi Kleen135c5612013-06-17 17:36:51 -0700470 skip = 1;
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100471 }
Andi Kleen135c5612013-06-17 17:36:51 -0700472 if (lbr_flags & LBR_TSX) {
473 in_tx = !!(from & LBR_FROM_FLAG_IN_TX);
474 abort = !!(from & LBR_FROM_FLAG_ABORT);
475 skip = 3;
476 }
477 from = (u64)((((s64)from) << skip) >> skip);
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100478
Andi Kleenb7af41a2013-09-20 07:40:44 -0700479 /*
480 * Some CPUs report duplicated abort records,
481 * with the second entry not having an abort bit set.
482 * Skip them here. This loop runs backwards,
483 * so we need to undo the previous record.
484 * If the abort just happened outside the window
485 * the extra entry cannot be removed.
486 */
487 if (abort && x86_pmu.lbr_double_abort && out > 0)
488 out--;
489
490 cpuc->lbr_entries[out].from = from;
491 cpuc->lbr_entries[out].to = to;
492 cpuc->lbr_entries[out].mispred = mis;
493 cpuc->lbr_entries[out].predicted = pred;
494 cpuc->lbr_entries[out].in_tx = in_tx;
495 cpuc->lbr_entries[out].abort = abort;
Andi Kleen50eab8f2015-05-10 12:22:43 -0700496 cpuc->lbr_entries[out].cycles = cycles;
Andi Kleenb7af41a2013-09-20 07:40:44 -0700497 cpuc->lbr_entries[out].reserved = 0;
498 out++;
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100499 }
Andi Kleenb7af41a2013-09-20 07:40:44 -0700500 cpuc->lbr_stack.nr = out;
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100501}
502
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300503void intel_pmu_lbr_read(void)
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100504{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500505 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100506
507 if (!cpuc->lbr_users)
508 return;
509
Peter Zijlstra8db909a2010-03-03 17:07:40 +0100510 if (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_32)
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100511 intel_pmu_lbr_read_32(cpuc);
512 else
513 intel_pmu_lbr_read_64(cpuc);
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100514
515 intel_pmu_lbr_filter(cpuc);
516}
517
518/*
519 * SW filter is used:
520 * - in case there is no HW filter
521 * - in case the HW filter has errata or limitations
522 */
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -0500523static int intel_pmu_setup_sw_lbr_filter(struct perf_event *event)
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100524{
525 u64 br_type = event->attr.branch_sample_type;
526 int mask = 0;
527
528 if (br_type & PERF_SAMPLE_BRANCH_USER)
529 mask |= X86_BR_USER;
530
Stephane Eranian2b923c82013-05-21 12:53:37 +0200531 if (br_type & PERF_SAMPLE_BRANCH_KERNEL)
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100532 mask |= X86_BR_KERNEL;
533
534 /* we ignore BRANCH_HV here */
535
536 if (br_type & PERF_SAMPLE_BRANCH_ANY)
537 mask |= X86_BR_ANY;
538
539 if (br_type & PERF_SAMPLE_BRANCH_ANY_CALL)
540 mask |= X86_BR_ANY_CALL;
541
542 if (br_type & PERF_SAMPLE_BRANCH_ANY_RETURN)
543 mask |= X86_BR_RET | X86_BR_IRET | X86_BR_SYSRET;
544
545 if (br_type & PERF_SAMPLE_BRANCH_IND_CALL)
546 mask |= X86_BR_IND_CALL;
Andi Kleen135c5612013-06-17 17:36:51 -0700547
548 if (br_type & PERF_SAMPLE_BRANCH_ABORT_TX)
549 mask |= X86_BR_ABORT;
550
551 if (br_type & PERF_SAMPLE_BRANCH_IN_TX)
552 mask |= X86_BR_IN_TX;
553
554 if (br_type & PERF_SAMPLE_BRANCH_NO_TX)
555 mask |= X86_BR_NO_TX;
556
Anshuman Khandual37548912014-05-22 12:50:09 +0530557 if (br_type & PERF_SAMPLE_BRANCH_COND)
558 mask |= X86_BR_JCC;
559
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -0500560 if (br_type & PERF_SAMPLE_BRANCH_CALL_STACK) {
561 if (!x86_pmu_has_lbr_callstack())
562 return -EOPNOTSUPP;
563 if (mask & ~(X86_BR_USER | X86_BR_KERNEL))
564 return -EINVAL;
565 mask |= X86_BR_CALL | X86_BR_IND_CALL | X86_BR_RET |
566 X86_BR_CALL_STACK;
567 }
568
Stephane Eranian7b74cfb2015-05-14 23:09:59 +0200569 if (br_type & PERF_SAMPLE_BRANCH_IND_JUMP)
570 mask |= X86_BR_IND_JMP;
571
Stephane Eraniand8928192015-10-13 09:09:09 +0200572 if (br_type & PERF_SAMPLE_BRANCH_CALL)
573 mask |= X86_BR_CALL | X86_BR_ZERO_CALL;
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100574 /*
575 * stash actual user request into reg, it may
576 * be used by fixup code for some CPU
577 */
578 event->hw.branch_reg.reg = mask;
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -0500579 return 0;
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100580}
581
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100582/*
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100583 * setup the HW LBR filter
584 * Used only when available, may not be enough to disambiguate
585 * all branches, may need the help of the SW filter
586 */
587static int intel_pmu_setup_hw_lbr_filter(struct perf_event *event)
588{
589 struct hw_perf_event_extra *reg;
590 u64 br_type = event->attr.branch_sample_type;
Yan, Zheng27ac9052014-11-04 21:55:57 -0500591 u64 mask = 0, v;
592 int i;
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100593
Peter Zijlstra2c44b192014-11-05 10:36:45 +0100594 for (i = 0; i < PERF_SAMPLE_BRANCH_MAX_SHIFT; i++) {
Yan, Zheng27ac9052014-11-04 21:55:57 -0500595 if (!(br_type & (1ULL << i)))
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100596 continue;
597
Yan, Zheng27ac9052014-11-04 21:55:57 -0500598 v = x86_pmu.lbr_sel_map[i];
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100599 if (v == LBR_NOT_SUPP)
600 return -EOPNOTSUPP;
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100601
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100602 if (v != LBR_IGN)
603 mask |= v;
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100604 }
Andi Kleenb16a5b52015-10-20 11:46:34 -0700605
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100606 reg = &event->hw.branch_reg;
607 reg->idx = EXTRA_REG_LBR;
608
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -0500609 /*
610 * The first 9 bits (LBR_SEL_MASK) in LBR_SELECT operate
611 * in suppress mode. So LBR_SELECT should be set to
612 * (~mask & LBR_SEL_MASK) | (mask & ~LBR_SEL_MASK)
Kan Liangcf3beb72016-04-21 02:30:10 -0700613 * But the 10th bit LBR_CALL_STACK does not operate
614 * in suppress mode.
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -0500615 */
Kan Liangcf3beb72016-04-21 02:30:10 -0700616 reg->config = mask ^ (x86_pmu.lbr_sel_mask & ~LBR_CALL_STACK);
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100617
Andi Kleenb16a5b52015-10-20 11:46:34 -0700618 if ((br_type & PERF_SAMPLE_BRANCH_NO_CYCLES) &&
619 (br_type & PERF_SAMPLE_BRANCH_NO_FLAGS) &&
620 (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_INFO))
621 reg->config |= LBR_NO_INFO;
622
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100623 return 0;
624}
625
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100626int intel_pmu_setup_lbr_filter(struct perf_event *event)
627{
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100628 int ret = 0;
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100629
630 /*
631 * no LBR on this PMU
632 */
633 if (!x86_pmu.lbr_nr)
634 return -EOPNOTSUPP;
635
636 /*
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100637 * setup SW LBR filter
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100638 */
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -0500639 ret = intel_pmu_setup_sw_lbr_filter(event);
640 if (ret)
641 return ret;
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100642
643 /*
644 * setup HW LBR filter, if any
645 */
646 if (x86_pmu.lbr_sel_map)
647 ret = intel_pmu_setup_hw_lbr_filter(event);
648
649 return ret;
650}
651
652/*
653 * return the type of control flow change at address "from"
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800654 * instruction is not necessarily a branch (in case of interrupt).
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100655 *
656 * The branch type returned also includes the priv level of the
657 * target of the control flow change (X86_BR_USER, X86_BR_KERNEL).
658 *
659 * If a branch type is unknown OR the instruction cannot be
660 * decoded (e.g., text page not present), then X86_BR_NONE is
661 * returned.
662 */
Andi Kleen135c5612013-06-17 17:36:51 -0700663static int branch_type(unsigned long from, unsigned long to, int abort)
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100664{
665 struct insn insn;
666 void *addr;
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800667 int bytes_read, bytes_left;
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100668 int ret = X86_BR_NONE;
669 int ext, to_plm, from_plm;
670 u8 buf[MAX_INSN_SIZE];
671 int is64 = 0;
672
673 to_plm = kernel_ip(to) ? X86_BR_KERNEL : X86_BR_USER;
674 from_plm = kernel_ip(from) ? X86_BR_KERNEL : X86_BR_USER;
675
676 /*
677 * maybe zero if lbr did not fill up after a reset by the time
678 * we get a PMU interrupt
679 */
680 if (from == 0 || to == 0)
681 return X86_BR_NONE;
682
Andi Kleen135c5612013-06-17 17:36:51 -0700683 if (abort)
684 return X86_BR_ABORT | to_plm;
685
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100686 if (from_plm == X86_BR_USER) {
687 /*
688 * can happen if measuring at the user level only
689 * and we interrupt in a kernel thread, e.g., idle.
690 */
691 if (!current->mm)
692 return X86_BR_NONE;
693
694 /* may fail if text not present */
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800695 bytes_left = copy_from_user_nmi(buf, (void __user *)from,
696 MAX_INSN_SIZE);
697 bytes_read = MAX_INSN_SIZE - bytes_left;
698 if (!bytes_read)
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100699 return X86_BR_NONE;
700
701 addr = buf;
Peter Zijlstra6e15eb32013-05-03 14:11:24 +0200702 } else {
703 /*
704 * The LBR logs any address in the IP, even if the IP just
705 * faulted. This means userspace can control the from address.
706 * Ensure we don't blindy read any address by validating it is
707 * a known text address.
708 */
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800709 if (kernel_text_address(from)) {
Peter Zijlstra6e15eb32013-05-03 14:11:24 +0200710 addr = (void *)from;
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800711 /*
712 * Assume we can get the maximum possible size
713 * when grabbing kernel data. This is not
714 * _strictly_ true since we could possibly be
715 * executing up next to a memory hole, but
716 * it is very unlikely to be a problem.
717 */
718 bytes_read = MAX_INSN_SIZE;
719 } else {
Peter Zijlstra6e15eb32013-05-03 14:11:24 +0200720 return X86_BR_NONE;
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800721 }
Peter Zijlstra6e15eb32013-05-03 14:11:24 +0200722 }
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100723
724 /*
725 * decoder needs to know the ABI especially
726 * on 64-bit systems running 32-bit apps
727 */
728#ifdef CONFIG_X86_64
729 is64 = kernel_ip((unsigned long)addr) || !test_thread_flag(TIF_IA32);
730#endif
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800731 insn_init(&insn, addr, bytes_read, is64);
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100732 insn_get_opcode(&insn);
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800733 if (!insn.opcode.got)
734 return X86_BR_ABORT;
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100735
736 switch (insn.opcode.bytes[0]) {
737 case 0xf:
738 switch (insn.opcode.bytes[1]) {
739 case 0x05: /* syscall */
740 case 0x34: /* sysenter */
741 ret = X86_BR_SYSCALL;
742 break;
743 case 0x07: /* sysret */
744 case 0x35: /* sysexit */
745 ret = X86_BR_SYSRET;
746 break;
747 case 0x80 ... 0x8f: /* conditional */
748 ret = X86_BR_JCC;
749 break;
750 default:
751 ret = X86_BR_NONE;
752 }
753 break;
754 case 0x70 ... 0x7f: /* conditional */
755 ret = X86_BR_JCC;
756 break;
757 case 0xc2: /* near ret */
758 case 0xc3: /* near ret */
759 case 0xca: /* far ret */
760 case 0xcb: /* far ret */
761 ret = X86_BR_RET;
762 break;
763 case 0xcf: /* iret */
764 ret = X86_BR_IRET;
765 break;
766 case 0xcc ... 0xce: /* int */
767 ret = X86_BR_INT;
768 break;
769 case 0xe8: /* call near rel */
Yan, Zhengaa54ae92014-11-04 21:56:11 -0500770 insn_get_immediate(&insn);
771 if (insn.immediate1.value == 0) {
772 /* zero length call */
773 ret = X86_BR_ZERO_CALL;
774 break;
775 }
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100776 case 0x9a: /* call far absolute */
777 ret = X86_BR_CALL;
778 break;
779 case 0xe0 ... 0xe3: /* loop jmp */
780 ret = X86_BR_JCC;
781 break;
782 case 0xe9 ... 0xeb: /* jmp */
783 ret = X86_BR_JMP;
784 break;
785 case 0xff: /* call near absolute, call far absolute ind */
786 insn_get_modrm(&insn);
787 ext = (insn.modrm.bytes[0] >> 3) & 0x7;
788 switch (ext) {
789 case 2: /* near ind call */
790 case 3: /* far ind call */
791 ret = X86_BR_IND_CALL;
792 break;
793 case 4:
794 case 5:
Stephane Eranian7b74cfb2015-05-14 23:09:59 +0200795 ret = X86_BR_IND_JMP;
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100796 break;
797 }
798 break;
799 default:
800 ret = X86_BR_NONE;
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100801 }
802 /*
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100803 * interrupts, traps, faults (and thus ring transition) may
804 * occur on any instructions. Thus, to classify them correctly,
805 * we need to first look at the from and to priv levels. If they
806 * are different and to is in the kernel, then it indicates
807 * a ring transition. If the from instruction is not a ring
808 * transition instr (syscall, systenter, int), then it means
809 * it was a irq, trap or fault.
810 *
811 * we have no way of detecting kernel to kernel faults.
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100812 */
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100813 if (from_plm == X86_BR_USER && to_plm == X86_BR_KERNEL
814 && ret != X86_BR_SYSCALL && ret != X86_BR_INT)
815 ret = X86_BR_IRQ;
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100816
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100817 /*
818 * branch priv level determined by target as
819 * is done by HW when LBR_SELECT is implemented
820 */
821 if (ret != X86_BR_NONE)
822 ret |= to_plm;
823
824 return ret;
825}
826
827/*
828 * implement actual branch filter based on user demand.
829 * Hardware may not exactly satisfy that request, thus
830 * we need to inspect opcodes. Mismatched branches are
831 * discarded. Therefore, the number of branches returned
832 * in PERF_SAMPLE_BRANCH_STACK sample may vary.
833 */
834static void
835intel_pmu_lbr_filter(struct cpu_hw_events *cpuc)
836{
837 u64 from, to;
838 int br_sel = cpuc->br_sel;
839 int i, j, type;
840 bool compress = false;
841
842 /* if sampling all branches, then nothing to filter */
843 if ((br_sel & X86_BR_ALL) == X86_BR_ALL)
844 return;
845
846 for (i = 0; i < cpuc->lbr_stack.nr; i++) {
847
848 from = cpuc->lbr_entries[i].from;
849 to = cpuc->lbr_entries[i].to;
850
Andi Kleen135c5612013-06-17 17:36:51 -0700851 type = branch_type(from, to, cpuc->lbr_entries[i].abort);
852 if (type != X86_BR_NONE && (br_sel & X86_BR_ANYTX)) {
853 if (cpuc->lbr_entries[i].in_tx)
854 type |= X86_BR_IN_TX;
855 else
856 type |= X86_BR_NO_TX;
857 }
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100858
859 /* if type does not correspond, then discard */
860 if (type == X86_BR_NONE || (br_sel & type) != type) {
861 cpuc->lbr_entries[i].from = 0;
862 compress = true;
863 }
864 }
865
866 if (!compress)
867 return;
868
869 /* remove all entries with from=0 */
870 for (i = 0; i < cpuc->lbr_stack.nr; ) {
871 if (!cpuc->lbr_entries[i].from) {
872 j = i;
873 while (++j < cpuc->lbr_stack.nr)
874 cpuc->lbr_entries[j-1] = cpuc->lbr_entries[j];
875 cpuc->lbr_stack.nr--;
876 if (!cpuc->lbr_entries[i].from)
877 continue;
878 }
879 i++;
880 }
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100881}
882
883/*
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100884 * Map interface branch filters onto LBR filters
885 */
Peter Zijlstra2c44b192014-11-05 10:36:45 +0100886static const int nhm_lbr_sel_map[PERF_SAMPLE_BRANCH_MAX_SHIFT] = {
Yan, Zheng27ac9052014-11-04 21:55:57 -0500887 [PERF_SAMPLE_BRANCH_ANY_SHIFT] = LBR_ANY,
888 [PERF_SAMPLE_BRANCH_USER_SHIFT] = LBR_USER,
889 [PERF_SAMPLE_BRANCH_KERNEL_SHIFT] = LBR_KERNEL,
890 [PERF_SAMPLE_BRANCH_HV_SHIFT] = LBR_IGN,
891 [PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT] = LBR_RETURN | LBR_REL_JMP
892 | LBR_IND_JMP | LBR_FAR,
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100893 /*
894 * NHM/WSM erratum: must include REL_JMP+IND_JMP to get CALL branches
895 */
Yan, Zheng27ac9052014-11-04 21:55:57 -0500896 [PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT] =
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100897 LBR_REL_CALL | LBR_IND_CALL | LBR_REL_JMP | LBR_IND_JMP | LBR_FAR,
898 /*
899 * NHM/WSM erratum: must include IND_JMP to capture IND_CALL
900 */
Yan, Zheng27ac9052014-11-04 21:55:57 -0500901 [PERF_SAMPLE_BRANCH_IND_CALL_SHIFT] = LBR_IND_CALL | LBR_IND_JMP,
902 [PERF_SAMPLE_BRANCH_COND_SHIFT] = LBR_JCC,
Stephane Eranian7b74cfb2015-05-14 23:09:59 +0200903 [PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT] = LBR_IND_JMP,
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100904};
905
Peter Zijlstra2c44b192014-11-05 10:36:45 +0100906static const int snb_lbr_sel_map[PERF_SAMPLE_BRANCH_MAX_SHIFT] = {
Yan, Zheng27ac9052014-11-04 21:55:57 -0500907 [PERF_SAMPLE_BRANCH_ANY_SHIFT] = LBR_ANY,
908 [PERF_SAMPLE_BRANCH_USER_SHIFT] = LBR_USER,
909 [PERF_SAMPLE_BRANCH_KERNEL_SHIFT] = LBR_KERNEL,
910 [PERF_SAMPLE_BRANCH_HV_SHIFT] = LBR_IGN,
911 [PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT] = LBR_RETURN | LBR_FAR,
912 [PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT] = LBR_REL_CALL | LBR_IND_CALL
913 | LBR_FAR,
914 [PERF_SAMPLE_BRANCH_IND_CALL_SHIFT] = LBR_IND_CALL,
915 [PERF_SAMPLE_BRANCH_COND_SHIFT] = LBR_JCC,
Stephane Eranian7b74cfb2015-05-14 23:09:59 +0200916 [PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT] = LBR_IND_JMP,
Stephane Eraniand8928192015-10-13 09:09:09 +0200917 [PERF_SAMPLE_BRANCH_CALL_SHIFT] = LBR_REL_CALL,
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100918};
919
Peter Zijlstra2c44b192014-11-05 10:36:45 +0100920static const int hsw_lbr_sel_map[PERF_SAMPLE_BRANCH_MAX_SHIFT] = {
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -0500921 [PERF_SAMPLE_BRANCH_ANY_SHIFT] = LBR_ANY,
922 [PERF_SAMPLE_BRANCH_USER_SHIFT] = LBR_USER,
923 [PERF_SAMPLE_BRANCH_KERNEL_SHIFT] = LBR_KERNEL,
924 [PERF_SAMPLE_BRANCH_HV_SHIFT] = LBR_IGN,
925 [PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT] = LBR_RETURN | LBR_FAR,
926 [PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT] = LBR_REL_CALL | LBR_IND_CALL
927 | LBR_FAR,
928 [PERF_SAMPLE_BRANCH_IND_CALL_SHIFT] = LBR_IND_CALL,
929 [PERF_SAMPLE_BRANCH_COND_SHIFT] = LBR_JCC,
930 [PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT] = LBR_REL_CALL | LBR_IND_CALL
931 | LBR_RETURN | LBR_CALL_STACK,
Stephane Eranian7b74cfb2015-05-14 23:09:59 +0200932 [PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT] = LBR_IND_JMP,
Stephane Eraniand8928192015-10-13 09:09:09 +0200933 [PERF_SAMPLE_BRANCH_CALL_SHIFT] = LBR_REL_CALL,
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -0500934};
935
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100936/* core */
Mathias Krause066ce642014-08-26 18:49:45 +0200937void __init intel_pmu_lbr_init_core(void)
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100938{
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100939 x86_pmu.lbr_nr = 4;
Stephane Eranian225ce532012-02-09 23:20:52 +0100940 x86_pmu.lbr_tos = MSR_LBR_TOS;
941 x86_pmu.lbr_from = MSR_LBR_CORE_FROM;
942 x86_pmu.lbr_to = MSR_LBR_CORE_TO;
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100943
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100944 /*
945 * SW branch filter usage:
946 * - compensate for lack of HW filter
947 */
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100948 pr_cont("4-deep LBR, ");
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100949}
950
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100951/* nehalem/westmere */
Mathias Krause066ce642014-08-26 18:49:45 +0200952void __init intel_pmu_lbr_init_nhm(void)
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100953{
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100954 x86_pmu.lbr_nr = 16;
Stephane Eranian225ce532012-02-09 23:20:52 +0100955 x86_pmu.lbr_tos = MSR_LBR_TOS;
956 x86_pmu.lbr_from = MSR_LBR_NHM_FROM;
957 x86_pmu.lbr_to = MSR_LBR_NHM_TO;
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100958
959 x86_pmu.lbr_sel_mask = LBR_SEL_MASK;
960 x86_pmu.lbr_sel_map = nhm_lbr_sel_map;
961
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100962 /*
963 * SW branch filter usage:
964 * - workaround LBR_SEL errata (see above)
965 * - support syscall, sysret capture.
966 * That requires LBR_FAR but that means far
967 * jmp need to be filtered out
968 */
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100969 pr_cont("16-deep LBR, ");
Peter Zijlstracaff2be2010-03-03 12:02:30 +0100970}
971
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100972/* sandy bridge */
Mathias Krause066ce642014-08-26 18:49:45 +0200973void __init intel_pmu_lbr_init_snb(void)
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100974{
975 x86_pmu.lbr_nr = 16;
976 x86_pmu.lbr_tos = MSR_LBR_TOS;
977 x86_pmu.lbr_from = MSR_LBR_NHM_FROM;
978 x86_pmu.lbr_to = MSR_LBR_NHM_TO;
979
980 x86_pmu.lbr_sel_mask = LBR_SEL_MASK;
981 x86_pmu.lbr_sel_map = snb_lbr_sel_map;
982
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100983 /*
984 * SW branch filter usage:
985 * - support syscall, sysret capture.
986 * That requires LBR_FAR but that means far
987 * jmp need to be filtered out
988 */
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100989 pr_cont("16-deep LBR, ");
990}
991
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -0500992/* haswell */
993void intel_pmu_lbr_init_hsw(void)
994{
995 x86_pmu.lbr_nr = 16;
996 x86_pmu.lbr_tos = MSR_LBR_TOS;
997 x86_pmu.lbr_from = MSR_LBR_NHM_FROM;
998 x86_pmu.lbr_to = MSR_LBR_NHM_TO;
999
1000 x86_pmu.lbr_sel_mask = LBR_SEL_MASK;
1001 x86_pmu.lbr_sel_map = hsw_lbr_sel_map;
1002
1003 pr_cont("16-deep LBR, ");
1004}
1005
Andi Kleen9a92e162015-05-10 12:22:44 -07001006/* skylake */
1007__init void intel_pmu_lbr_init_skl(void)
1008{
1009 x86_pmu.lbr_nr = 32;
1010 x86_pmu.lbr_tos = MSR_LBR_TOS;
1011 x86_pmu.lbr_from = MSR_LBR_NHM_FROM;
1012 x86_pmu.lbr_to = MSR_LBR_NHM_TO;
1013
1014 x86_pmu.lbr_sel_mask = LBR_SEL_MASK;
1015 x86_pmu.lbr_sel_map = hsw_lbr_sel_map;
1016
1017 /*
1018 * SW branch filter usage:
1019 * - support syscall, sysret capture.
1020 * That requires LBR_FAR but that means far
1021 * jmp need to be filtered out
1022 */
1023 pr_cont("32-deep LBR, ");
1024}
1025
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +01001026/* atom */
Mathias Krause066ce642014-08-26 18:49:45 +02001027void __init intel_pmu_lbr_init_atom(void)
Peter Zijlstracaff2be2010-03-03 12:02:30 +01001028{
Stephane Eranian88c9a652012-02-09 23:20:56 +01001029 /*
1030 * only models starting at stepping 10 seems
1031 * to have an operational LBR which can freeze
1032 * on PMU interrupt
1033 */
Stephane Eranian3ec18cd2012-08-20 11:24:21 +02001034 if (boot_cpu_data.x86_model == 28
1035 && boot_cpu_data.x86_mask < 10) {
Stephane Eranian88c9a652012-02-09 23:20:56 +01001036 pr_cont("LBR disabled due to erratum");
1037 return;
1038 }
1039
Peter Zijlstracaff2be2010-03-03 12:02:30 +01001040 x86_pmu.lbr_nr = 8;
Stephane Eranian225ce532012-02-09 23:20:52 +01001041 x86_pmu.lbr_tos = MSR_LBR_TOS;
1042 x86_pmu.lbr_from = MSR_LBR_CORE_FROM;
1043 x86_pmu.lbr_to = MSR_LBR_CORE_TO;
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +01001044
Stephane Eranian3e702ff2012-02-09 23:20:58 +01001045 /*
1046 * SW branch filter usage:
1047 * - compensate for lack of HW filter
1048 */
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +01001049 pr_cont("8-deep LBR, ");
Peter Zijlstracaff2be2010-03-03 12:02:30 +01001050}
Harish Chegondi1e7b9392015-12-07 14:28:18 -08001051
1052/* Knights Landing */
1053void intel_pmu_lbr_init_knl(void)
1054{
1055 x86_pmu.lbr_nr = 8;
1056 x86_pmu.lbr_tos = MSR_LBR_TOS;
1057 x86_pmu.lbr_from = MSR_LBR_NHM_FROM;
1058 x86_pmu.lbr_to = MSR_LBR_NHM_TO;
1059
1060 x86_pmu.lbr_sel_mask = LBR_SEL_MASK;
1061 x86_pmu.lbr_sel_map = snb_lbr_sel_map;
1062
1063 pr_cont("8-deep LBR, ");
1064}