Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 1 | #include <linux/perf_event.h> |
| 2 | #include <linux/types.h> |
| 3 | |
| 4 | #include <asm/perf_event.h> |
| 5 | #include <asm/msr.h> |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 6 | #include <asm/insn.h> |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 7 | |
Borislav Petkov | 27f6d22 | 2016-02-10 10:55:23 +0100 | [diff] [blame] | 8 | #include "../perf_event.h" |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 9 | |
| 10 | enum { |
| 11 | LBR_FORMAT_32 = 0x00, |
| 12 | LBR_FORMAT_LIP = 0x01, |
| 13 | LBR_FORMAT_EIP = 0x02, |
| 14 | LBR_FORMAT_EIP_FLAGS = 0x03, |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 15 | LBR_FORMAT_EIP_FLAGS2 = 0x04, |
Andi Kleen | 50eab8f | 2015-05-10 12:22:43 -0700 | [diff] [blame] | 16 | LBR_FORMAT_INFO = 0x05, |
Kan Liang | 8b92c3a | 2016-04-15 00:42:47 -0700 | [diff] [blame] | 17 | LBR_FORMAT_TIME = 0x06, |
| 18 | LBR_FORMAT_MAX_KNOWN = LBR_FORMAT_TIME, |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 19 | }; |
| 20 | |
| 21 | static enum { |
| 22 | LBR_EIP_FLAGS = 1, |
| 23 | LBR_TSX = 2, |
| 24 | } lbr_desc[LBR_FORMAT_MAX_KNOWN + 1] = { |
| 25 | [LBR_FORMAT_EIP_FLAGS] = LBR_EIP_FLAGS, |
| 26 | [LBR_FORMAT_EIP_FLAGS2] = LBR_EIP_FLAGS | LBR_TSX, |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 27 | }; |
| 28 | |
| 29 | /* |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 30 | * Intel LBR_SELECT bits |
| 31 | * Intel Vol3a, April 2011, Section 16.7 Table 16-10 |
| 32 | * |
| 33 | * Hardware branch filter (not available on all CPUs) |
| 34 | */ |
| 35 | #define LBR_KERNEL_BIT 0 /* do not capture at ring0 */ |
| 36 | #define LBR_USER_BIT 1 /* do not capture at ring > 0 */ |
| 37 | #define LBR_JCC_BIT 2 /* do not capture conditional branches */ |
| 38 | #define LBR_REL_CALL_BIT 3 /* do not capture relative calls */ |
| 39 | #define LBR_IND_CALL_BIT 4 /* do not capture indirect calls */ |
| 40 | #define LBR_RETURN_BIT 5 /* do not capture near returns */ |
| 41 | #define LBR_IND_JMP_BIT 6 /* do not capture indirect jumps */ |
| 42 | #define LBR_REL_JMP_BIT 7 /* do not capture relative jumps */ |
| 43 | #define LBR_FAR_BIT 8 /* do not capture far branches */ |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 44 | #define LBR_CALL_STACK_BIT 9 /* enable call stack */ |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 45 | |
Andi Kleen | b16a5b5 | 2015-10-20 11:46:34 -0700 | [diff] [blame] | 46 | /* |
| 47 | * Following bit only exists in Linux; we mask it out before writing it to |
| 48 | * the actual MSR. But it helps the constraint perf code to understand |
| 49 | * that this is a separate configuration. |
| 50 | */ |
| 51 | #define LBR_NO_INFO_BIT 63 /* don't read LBR_INFO. */ |
| 52 | |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 53 | #define LBR_KERNEL (1 << LBR_KERNEL_BIT) |
| 54 | #define LBR_USER (1 << LBR_USER_BIT) |
| 55 | #define LBR_JCC (1 << LBR_JCC_BIT) |
| 56 | #define LBR_REL_CALL (1 << LBR_REL_CALL_BIT) |
| 57 | #define LBR_IND_CALL (1 << LBR_IND_CALL_BIT) |
| 58 | #define LBR_RETURN (1 << LBR_RETURN_BIT) |
| 59 | #define LBR_REL_JMP (1 << LBR_REL_JMP_BIT) |
| 60 | #define LBR_IND_JMP (1 << LBR_IND_JMP_BIT) |
| 61 | #define LBR_FAR (1 << LBR_FAR_BIT) |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 62 | #define LBR_CALL_STACK (1 << LBR_CALL_STACK_BIT) |
Andi Kleen | b16a5b5 | 2015-10-20 11:46:34 -0700 | [diff] [blame] | 63 | #define LBR_NO_INFO (1ULL << LBR_NO_INFO_BIT) |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 64 | |
| 65 | #define LBR_PLM (LBR_KERNEL | LBR_USER) |
| 66 | |
Kan Liang | cf3beb7 | 2016-04-21 02:30:10 -0700 | [diff] [blame] | 67 | #define LBR_SEL_MASK 0x3ff /* valid bits in LBR_SELECT */ |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 68 | #define LBR_NOT_SUPP -1 /* LBR filter not supported */ |
| 69 | #define LBR_IGN 0 /* ignored */ |
| 70 | |
| 71 | #define LBR_ANY \ |
| 72 | (LBR_JCC |\ |
| 73 | LBR_REL_CALL |\ |
| 74 | LBR_IND_CALL |\ |
| 75 | LBR_RETURN |\ |
| 76 | LBR_REL_JMP |\ |
| 77 | LBR_IND_JMP |\ |
| 78 | LBR_FAR) |
| 79 | |
| 80 | #define LBR_FROM_FLAG_MISPRED (1ULL << 63) |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 81 | #define LBR_FROM_FLAG_IN_TX (1ULL << 62) |
| 82 | #define LBR_FROM_FLAG_ABORT (1ULL << 61) |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 83 | |
David Carrillo-Cisneros | 19fc9dd | 2016-06-21 11:31:11 -0700 | [diff] [blame^] | 84 | #define LBR_FROM_SIGNEXT_2MSB (BIT_ULL(60) | BIT_ULL(59)) |
| 85 | |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 86 | /* |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 87 | * x86control flow change classification |
| 88 | * x86control flow changes include branches, interrupts, traps, faults |
| 89 | */ |
| 90 | enum { |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 91 | X86_BR_NONE = 0, /* unknown */ |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 92 | |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 93 | X86_BR_USER = 1 << 0, /* branch target is user */ |
| 94 | X86_BR_KERNEL = 1 << 1, /* branch target is kernel */ |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 95 | |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 96 | X86_BR_CALL = 1 << 2, /* call */ |
| 97 | X86_BR_RET = 1 << 3, /* return */ |
| 98 | X86_BR_SYSCALL = 1 << 4, /* syscall */ |
| 99 | X86_BR_SYSRET = 1 << 5, /* syscall return */ |
| 100 | X86_BR_INT = 1 << 6, /* sw interrupt */ |
| 101 | X86_BR_IRET = 1 << 7, /* return from interrupt */ |
| 102 | X86_BR_JCC = 1 << 8, /* conditional */ |
| 103 | X86_BR_JMP = 1 << 9, /* jump */ |
| 104 | X86_BR_IRQ = 1 << 10,/* hw interrupt or trap or fault */ |
| 105 | X86_BR_IND_CALL = 1 << 11,/* indirect calls */ |
| 106 | X86_BR_ABORT = 1 << 12,/* transaction abort */ |
| 107 | X86_BR_IN_TX = 1 << 13,/* in transaction */ |
| 108 | X86_BR_NO_TX = 1 << 14,/* not in transaction */ |
Yan, Zheng | aa54ae9 | 2014-11-04 21:56:11 -0500 | [diff] [blame] | 109 | X86_BR_ZERO_CALL = 1 << 15,/* zero length call */ |
| 110 | X86_BR_CALL_STACK = 1 << 16,/* call stack */ |
Stephane Eranian | 7b74cfb | 2015-05-14 23:09:59 +0200 | [diff] [blame] | 111 | X86_BR_IND_JMP = 1 << 17,/* indirect jump */ |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | #define X86_BR_PLM (X86_BR_USER | X86_BR_KERNEL) |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 115 | #define X86_BR_ANYTX (X86_BR_NO_TX | X86_BR_IN_TX) |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 116 | |
| 117 | #define X86_BR_ANY \ |
| 118 | (X86_BR_CALL |\ |
| 119 | X86_BR_RET |\ |
| 120 | X86_BR_SYSCALL |\ |
| 121 | X86_BR_SYSRET |\ |
| 122 | X86_BR_INT |\ |
| 123 | X86_BR_IRET |\ |
| 124 | X86_BR_JCC |\ |
| 125 | X86_BR_JMP |\ |
| 126 | X86_BR_IRQ |\ |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 127 | X86_BR_ABORT |\ |
Yan, Zheng | aa54ae9 | 2014-11-04 21:56:11 -0500 | [diff] [blame] | 128 | X86_BR_IND_CALL |\ |
Stephane Eranian | 7b74cfb | 2015-05-14 23:09:59 +0200 | [diff] [blame] | 129 | X86_BR_IND_JMP |\ |
Yan, Zheng | aa54ae9 | 2014-11-04 21:56:11 -0500 | [diff] [blame] | 130 | X86_BR_ZERO_CALL) |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 131 | |
| 132 | #define X86_BR_ALL (X86_BR_PLM | X86_BR_ANY) |
| 133 | |
| 134 | #define X86_BR_ANY_CALL \ |
| 135 | (X86_BR_CALL |\ |
| 136 | X86_BR_IND_CALL |\ |
Yan, Zheng | aa54ae9 | 2014-11-04 21:56:11 -0500 | [diff] [blame] | 137 | X86_BR_ZERO_CALL |\ |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 138 | X86_BR_SYSCALL |\ |
| 139 | X86_BR_IRQ |\ |
| 140 | X86_BR_INT) |
| 141 | |
| 142 | static void intel_pmu_lbr_filter(struct cpu_hw_events *cpuc); |
| 143 | |
| 144 | /* |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 145 | * We only support LBR implementations that have FREEZE_LBRS_ON_PMI |
| 146 | * otherwise it becomes near impossible to get a reliable stack. |
| 147 | */ |
| 148 | |
Andi Kleen | 1a78d93 | 2015-03-20 10:11:23 -0700 | [diff] [blame] | 149 | static void __intel_pmu_lbr_enable(bool pmi) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 150 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 151 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Andi Kleen | cd1f11d | 2015-03-20 10:11:24 -0700 | [diff] [blame] | 152 | u64 debugctl, lbr_select = 0, orig_debugctl; |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 153 | |
Andi Kleen | 1a78d93 | 2015-03-20 10:11:23 -0700 | [diff] [blame] | 154 | /* |
Andi Kleen | 425507f | 2015-05-10 12:22:46 -0700 | [diff] [blame] | 155 | * No need to unfreeze manually, as v4 can do that as part |
| 156 | * of the GLOBAL_STATUS ack. |
| 157 | */ |
| 158 | if (pmi && x86_pmu.version >= 4) |
| 159 | return; |
| 160 | |
| 161 | /* |
Andi Kleen | 1a78d93 | 2015-03-20 10:11:23 -0700 | [diff] [blame] | 162 | * No need to reprogram LBR_SELECT in a PMI, as it |
| 163 | * did not change. |
| 164 | */ |
Kan Liang | 96f3eda | 2015-09-14 10:14:07 -0400 | [diff] [blame] | 165 | if (cpuc->lbr_sel) |
Andi Kleen | b16a5b5 | 2015-10-20 11:46:34 -0700 | [diff] [blame] | 166 | lbr_select = cpuc->lbr_sel->config & x86_pmu.lbr_sel_mask; |
Stephane Eranian | 6fc2e83 | 2015-12-03 23:33:17 +0100 | [diff] [blame] | 167 | if (!pmi && cpuc->lbr_sel) |
Yan, Zheng | 2c70d00 | 2014-11-04 21:56:10 -0500 | [diff] [blame] | 168 | wrmsrl(MSR_LBR_SELECT, lbr_select); |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 169 | |
| 170 | rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl); |
Andi Kleen | cd1f11d | 2015-03-20 10:11:24 -0700 | [diff] [blame] | 171 | orig_debugctl = debugctl; |
Yan, Zheng | 2c70d00 | 2014-11-04 21:56:10 -0500 | [diff] [blame] | 172 | debugctl |= DEBUGCTLMSR_LBR; |
| 173 | /* |
| 174 | * LBR callstack does not work well with FREEZE_LBRS_ON_PMI. |
| 175 | * If FREEZE_LBRS_ON_PMI is set, PMI near call/return instructions |
| 176 | * may cause superfluous increase/decrease of LBR_TOS. |
| 177 | */ |
| 178 | if (!(lbr_select & LBR_CALL_STACK)) |
| 179 | debugctl |= DEBUGCTLMSR_FREEZE_LBRS_ON_PMI; |
Andi Kleen | cd1f11d | 2015-03-20 10:11:24 -0700 | [diff] [blame] | 180 | if (orig_debugctl != debugctl) |
| 181 | wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctl); |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | static void __intel_pmu_lbr_disable(void) |
| 185 | { |
| 186 | u64 debugctl; |
| 187 | |
| 188 | rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl); |
Peter Zijlstra | 7c5ecaf | 2010-03-25 14:51:49 +0100 | [diff] [blame] | 189 | debugctl &= ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_FREEZE_LBRS_ON_PMI); |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 190 | wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctl); |
| 191 | } |
| 192 | |
| 193 | static void intel_pmu_lbr_reset_32(void) |
| 194 | { |
| 195 | int i; |
| 196 | |
| 197 | for (i = 0; i < x86_pmu.lbr_nr; i++) |
| 198 | wrmsrl(x86_pmu.lbr_from + i, 0); |
| 199 | } |
| 200 | |
| 201 | static void intel_pmu_lbr_reset_64(void) |
| 202 | { |
| 203 | int i; |
| 204 | |
| 205 | for (i = 0; i < x86_pmu.lbr_nr; i++) { |
| 206 | wrmsrl(x86_pmu.lbr_from + i, 0); |
| 207 | wrmsrl(x86_pmu.lbr_to + i, 0); |
Andi Kleen | 50eab8f | 2015-05-10 12:22:43 -0700 | [diff] [blame] | 208 | if (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_INFO) |
| 209 | wrmsrl(MSR_LBR_INFO_0 + i, 0); |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 210 | } |
| 211 | } |
| 212 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 213 | void intel_pmu_lbr_reset(void) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 214 | { |
Peter Zijlstra | 74846d3 | 2010-03-05 13:49:35 +0100 | [diff] [blame] | 215 | if (!x86_pmu.lbr_nr) |
| 216 | return; |
| 217 | |
Peter Zijlstra | 8db909a | 2010-03-03 17:07:40 +0100 | [diff] [blame] | 218 | if (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_32) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 219 | intel_pmu_lbr_reset_32(); |
| 220 | else |
| 221 | intel_pmu_lbr_reset_64(); |
| 222 | } |
| 223 | |
Yan, Zheng | 76cb2c6 | 2014-11-04 21:56:05 -0500 | [diff] [blame] | 224 | /* |
| 225 | * TOS = most recently recorded branch |
| 226 | */ |
| 227 | static inline u64 intel_pmu_lbr_tos(void) |
| 228 | { |
| 229 | u64 tos; |
| 230 | |
| 231 | rdmsrl(x86_pmu.lbr_tos, tos); |
| 232 | return tos; |
| 233 | } |
| 234 | |
| 235 | enum { |
| 236 | LBR_NONE, |
| 237 | LBR_VALID, |
| 238 | }; |
| 239 | |
David Carrillo-Cisneros | 19fc9dd | 2016-06-21 11:31:11 -0700 | [diff] [blame^] | 240 | /* |
| 241 | * For formats with LBR_TSX flags (e.g. LBR_FORMAT_EIP_FLAGS2), bits 61:62 in |
| 242 | * MSR_LAST_BRANCH_FROM_x are the TSX flags when TSX is supported, but when |
| 243 | * TSX is not supported they have no consistent behavior: |
| 244 | * |
| 245 | * - For wrmsr(), bits 61:62 are considered part of the sign extension. |
| 246 | * - For HW updates (branch captures) bits 61:62 are always OFF and are not |
| 247 | * part of the sign extension. |
| 248 | * |
| 249 | * Therefore, if: |
| 250 | * |
| 251 | * 1) LBR has TSX format |
| 252 | * 2) CPU has no TSX support enabled |
| 253 | * |
| 254 | * ... then any value passed to wrmsr() must be sign extended to 63 bits and any |
| 255 | * value from rdmsr() must be converted to have a 61 bits sign extension, |
| 256 | * ignoring the TSX flags. |
| 257 | */ |
| 258 | static inline bool lbr_from_signext_quirk_needed(void) |
| 259 | { |
| 260 | int lbr_format = x86_pmu.intel_cap.lbr_format; |
| 261 | bool tsx_support = boot_cpu_has(X86_FEATURE_HLE) || |
| 262 | boot_cpu_has(X86_FEATURE_RTM); |
| 263 | |
| 264 | return !tsx_support && (lbr_desc[lbr_format] & LBR_TSX); |
| 265 | } |
| 266 | |
| 267 | DEFINE_STATIC_KEY_FALSE(lbr_from_quirk_key); |
| 268 | |
| 269 | /* If quirk is enabled, ensure sign extension is 63 bits: */ |
| 270 | inline u64 lbr_from_signext_quirk_wr(u64 val) |
| 271 | { |
| 272 | if (static_branch_unlikely(&lbr_from_quirk_key)) { |
| 273 | /* |
| 274 | * Sign extend into bits 61:62 while preserving bit 63. |
| 275 | * |
| 276 | * Quirk is enabled when TSX is disabled. Therefore TSX bits |
| 277 | * in val are always OFF and must be changed to be sign |
| 278 | * extension bits. Since bits 59:60 are guaranteed to be |
| 279 | * part of the sign extension bits, we can just copy them |
| 280 | * to 61:62. |
| 281 | */ |
| 282 | val |= (LBR_FROM_SIGNEXT_2MSB & val) << 2; |
| 283 | } |
| 284 | return val; |
| 285 | } |
| 286 | |
Yan, Zheng | 76cb2c6 | 2014-11-04 21:56:05 -0500 | [diff] [blame] | 287 | static void __intel_pmu_lbr_restore(struct x86_perf_task_context *task_ctx) |
| 288 | { |
| 289 | int i; |
| 290 | unsigned lbr_idx, mask; |
| 291 | u64 tos; |
| 292 | |
| 293 | if (task_ctx->lbr_callstack_users == 0 || |
| 294 | task_ctx->lbr_stack_state == LBR_NONE) { |
| 295 | intel_pmu_lbr_reset(); |
| 296 | return; |
| 297 | } |
| 298 | |
| 299 | mask = x86_pmu.lbr_nr - 1; |
Andi Kleen | b28ae95 | 2015-10-20 11:46:33 -0700 | [diff] [blame] | 300 | tos = task_ctx->tos; |
Andi Kleen | 90405aa | 2015-05-27 21:13:18 -0700 | [diff] [blame] | 301 | for (i = 0; i < tos; i++) { |
Yan, Zheng | 76cb2c6 | 2014-11-04 21:56:05 -0500 | [diff] [blame] | 302 | lbr_idx = (tos - i) & mask; |
| 303 | wrmsrl(x86_pmu.lbr_from + lbr_idx, task_ctx->lbr_from[i]); |
| 304 | wrmsrl(x86_pmu.lbr_to + lbr_idx, task_ctx->lbr_to[i]); |
Andi Kleen | 50eab8f | 2015-05-10 12:22:43 -0700 | [diff] [blame] | 305 | if (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_INFO) |
Andi Kleen | e057336 | 2015-05-27 21:13:17 -0700 | [diff] [blame] | 306 | wrmsrl(MSR_LBR_INFO_0 + lbr_idx, task_ctx->lbr_info[i]); |
Yan, Zheng | 76cb2c6 | 2014-11-04 21:56:05 -0500 | [diff] [blame] | 307 | } |
Andi Kleen | b28ae95 | 2015-10-20 11:46:33 -0700 | [diff] [blame] | 308 | wrmsrl(x86_pmu.lbr_tos, tos); |
Yan, Zheng | 76cb2c6 | 2014-11-04 21:56:05 -0500 | [diff] [blame] | 309 | task_ctx->lbr_stack_state = LBR_NONE; |
| 310 | } |
| 311 | |
| 312 | static void __intel_pmu_lbr_save(struct x86_perf_task_context *task_ctx) |
| 313 | { |
| 314 | int i; |
| 315 | unsigned lbr_idx, mask; |
| 316 | u64 tos; |
| 317 | |
| 318 | if (task_ctx->lbr_callstack_users == 0) { |
| 319 | task_ctx->lbr_stack_state = LBR_NONE; |
| 320 | return; |
| 321 | } |
| 322 | |
| 323 | mask = x86_pmu.lbr_nr - 1; |
| 324 | tos = intel_pmu_lbr_tos(); |
Andi Kleen | 90405aa | 2015-05-27 21:13:18 -0700 | [diff] [blame] | 325 | for (i = 0; i < tos; i++) { |
Yan, Zheng | 76cb2c6 | 2014-11-04 21:56:05 -0500 | [diff] [blame] | 326 | lbr_idx = (tos - i) & mask; |
| 327 | rdmsrl(x86_pmu.lbr_from + lbr_idx, task_ctx->lbr_from[i]); |
| 328 | rdmsrl(x86_pmu.lbr_to + lbr_idx, task_ctx->lbr_to[i]); |
Andi Kleen | 50eab8f | 2015-05-10 12:22:43 -0700 | [diff] [blame] | 329 | if (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_INFO) |
Andi Kleen | e057336 | 2015-05-27 21:13:17 -0700 | [diff] [blame] | 330 | rdmsrl(MSR_LBR_INFO_0 + lbr_idx, task_ctx->lbr_info[i]); |
Yan, Zheng | 76cb2c6 | 2014-11-04 21:56:05 -0500 | [diff] [blame] | 331 | } |
Andi Kleen | b28ae95 | 2015-10-20 11:46:33 -0700 | [diff] [blame] | 332 | task_ctx->tos = tos; |
Yan, Zheng | 76cb2c6 | 2014-11-04 21:56:05 -0500 | [diff] [blame] | 333 | task_ctx->lbr_stack_state = LBR_VALID; |
| 334 | } |
| 335 | |
Yan, Zheng | 2a0ad3b | 2014-11-04 21:55:59 -0500 | [diff] [blame] | 336 | void intel_pmu_lbr_sched_task(struct perf_event_context *ctx, bool sched_in) |
| 337 | { |
| 338 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Yan, Zheng | 76cb2c6 | 2014-11-04 21:56:05 -0500 | [diff] [blame] | 339 | struct x86_perf_task_context *task_ctx; |
Yan, Zheng | 2a0ad3b | 2014-11-04 21:55:59 -0500 | [diff] [blame] | 340 | |
Yan, Zheng | 2a0ad3b | 2014-11-04 21:55:59 -0500 | [diff] [blame] | 341 | /* |
Yan, Zheng | 76cb2c6 | 2014-11-04 21:56:05 -0500 | [diff] [blame] | 342 | * If LBR callstack feature is enabled and the stack was saved when |
| 343 | * the task was scheduled out, restore the stack. Otherwise flush |
| 344 | * the LBR stack. |
| 345 | */ |
| 346 | task_ctx = ctx ? ctx->task_ctx_data : NULL; |
| 347 | if (task_ctx) { |
| 348 | if (sched_in) { |
| 349 | __intel_pmu_lbr_restore(task_ctx); |
| 350 | cpuc->lbr_context = ctx; |
| 351 | } else { |
| 352 | __intel_pmu_lbr_save(task_ctx); |
| 353 | } |
| 354 | return; |
| 355 | } |
| 356 | |
| 357 | /* |
Yan, Zheng | 2a0ad3b | 2014-11-04 21:55:59 -0500 | [diff] [blame] | 358 | * When sampling the branck stack in system-wide, it may be |
| 359 | * necessary to flush the stack on context switch. This happens |
| 360 | * when the branch stack does not tag its entries with the pid |
| 361 | * of the current task. Otherwise it becomes impossible to |
| 362 | * associate a branch entry with a task. This ambiguity is more |
| 363 | * likely to appear when the branch stack supports priv level |
| 364 | * filtering and the user sets it to monitor only at the user |
| 365 | * level (which could be a useful measurement in system-wide |
| 366 | * mode). In that case, the risk is high of having a branch |
| 367 | * stack with branch from multiple tasks. |
| 368 | */ |
| 369 | if (sched_in) { |
| 370 | intel_pmu_lbr_reset(); |
| 371 | cpuc->lbr_context = ctx; |
| 372 | } |
| 373 | } |
| 374 | |
Yan, Zheng | 63f0c1d | 2014-11-04 21:56:04 -0500 | [diff] [blame] | 375 | static inline bool branch_user_callstack(unsigned br_sel) |
| 376 | { |
| 377 | return (br_sel & X86_BR_USER) && (br_sel & X86_BR_CALL_STACK); |
| 378 | } |
| 379 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 380 | void intel_pmu_lbr_enable(struct perf_event *event) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 381 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 382 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Yan, Zheng | 63f0c1d | 2014-11-04 21:56:04 -0500 | [diff] [blame] | 383 | struct x86_perf_task_context *task_ctx; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 384 | |
| 385 | if (!x86_pmu.lbr_nr) |
| 386 | return; |
| 387 | |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 388 | /* |
Peter Zijlstra | b83a46e | 2010-03-08 13:51:12 +0100 | [diff] [blame] | 389 | * Reset the LBR stack if we changed task context to |
| 390 | * avoid data leaks. |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 391 | */ |
Peter Zijlstra | b83a46e | 2010-03-08 13:51:12 +0100 | [diff] [blame] | 392 | if (event->ctx->task && cpuc->lbr_context != event->ctx) { |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 393 | intel_pmu_lbr_reset(); |
| 394 | cpuc->lbr_context = event->ctx; |
| 395 | } |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 396 | cpuc->br_sel = event->hw.branch_reg.reg; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 397 | |
Yan, Zheng | 63f0c1d | 2014-11-04 21:56:04 -0500 | [diff] [blame] | 398 | if (branch_user_callstack(cpuc->br_sel) && event->ctx && |
| 399 | event->ctx->task_ctx_data) { |
| 400 | task_ctx = event->ctx->task_ctx_data; |
| 401 | task_ctx->lbr_callstack_users++; |
| 402 | } |
| 403 | |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 404 | cpuc->lbr_users++; |
Yan, Zheng | 2a0ad3b | 2014-11-04 21:55:59 -0500 | [diff] [blame] | 405 | perf_sched_cb_inc(event->ctx->pmu); |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 406 | } |
| 407 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 408 | void intel_pmu_lbr_disable(struct perf_event *event) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 409 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 410 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Yan, Zheng | 63f0c1d | 2014-11-04 21:56:04 -0500 | [diff] [blame] | 411 | struct x86_perf_task_context *task_ctx; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 412 | |
| 413 | if (!x86_pmu.lbr_nr) |
| 414 | return; |
| 415 | |
Yan, Zheng | 63f0c1d | 2014-11-04 21:56:04 -0500 | [diff] [blame] | 416 | if (branch_user_callstack(cpuc->br_sel) && event->ctx && |
| 417 | event->ctx->task_ctx_data) { |
| 418 | task_ctx = event->ctx->task_ctx_data; |
| 419 | task_ctx->lbr_callstack_users--; |
| 420 | } |
| 421 | |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 422 | cpuc->lbr_users--; |
Peter Zijlstra | b83a46e | 2010-03-08 13:51:12 +0100 | [diff] [blame] | 423 | WARN_ON_ONCE(cpuc->lbr_users < 0); |
Yan, Zheng | 2a0ad3b | 2014-11-04 21:55:59 -0500 | [diff] [blame] | 424 | perf_sched_cb_dec(event->ctx->pmu); |
Peter Zijlstra | 2df202b | 2010-03-06 13:48:54 +0100 | [diff] [blame] | 425 | |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 426 | if (cpuc->enabled && !cpuc->lbr_users) { |
Peter Zijlstra | 2df202b | 2010-03-06 13:48:54 +0100 | [diff] [blame] | 427 | __intel_pmu_lbr_disable(); |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 428 | /* avoid stale pointer */ |
| 429 | cpuc->lbr_context = NULL; |
| 430 | } |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 431 | } |
| 432 | |
Andi Kleen | 1a78d93 | 2015-03-20 10:11:23 -0700 | [diff] [blame] | 433 | void intel_pmu_lbr_enable_all(bool pmi) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 434 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 435 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 436 | |
| 437 | if (cpuc->lbr_users) |
Andi Kleen | 1a78d93 | 2015-03-20 10:11:23 -0700 | [diff] [blame] | 438 | __intel_pmu_lbr_enable(pmi); |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 439 | } |
| 440 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 441 | void intel_pmu_lbr_disable_all(void) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 442 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 443 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 444 | |
| 445 | if (cpuc->lbr_users) |
| 446 | __intel_pmu_lbr_disable(); |
| 447 | } |
| 448 | |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 449 | static void intel_pmu_lbr_read_32(struct cpu_hw_events *cpuc) |
| 450 | { |
| 451 | unsigned long mask = x86_pmu.lbr_nr - 1; |
| 452 | u64 tos = intel_pmu_lbr_tos(); |
| 453 | int i; |
| 454 | |
Peter Zijlstra | 63fb3f9 | 2010-03-09 11:51:02 +0100 | [diff] [blame] | 455 | for (i = 0; i < x86_pmu.lbr_nr; i++) { |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 456 | unsigned long lbr_idx = (tos - i) & mask; |
| 457 | union { |
| 458 | struct { |
| 459 | u32 from; |
| 460 | u32 to; |
| 461 | }; |
| 462 | u64 lbr; |
| 463 | } msr_lastbranch; |
| 464 | |
| 465 | rdmsrl(x86_pmu.lbr_from + lbr_idx, msr_lastbranch.lbr); |
| 466 | |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 467 | cpuc->lbr_entries[i].from = msr_lastbranch.from; |
| 468 | cpuc->lbr_entries[i].to = msr_lastbranch.to; |
| 469 | cpuc->lbr_entries[i].mispred = 0; |
| 470 | cpuc->lbr_entries[i].predicted = 0; |
| 471 | cpuc->lbr_entries[i].reserved = 0; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 472 | } |
| 473 | cpuc->lbr_stack.nr = i; |
| 474 | } |
| 475 | |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 476 | /* |
| 477 | * Due to lack of segmentation in Linux the effective address (offset) |
| 478 | * is the same as the linear address, allowing us to merge the LIP and EIP |
| 479 | * LBR formats. |
| 480 | */ |
| 481 | static void intel_pmu_lbr_read_64(struct cpu_hw_events *cpuc) |
| 482 | { |
Stephane Eranian | 6fc2e83 | 2015-12-03 23:33:17 +0100 | [diff] [blame] | 483 | bool need_info = false; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 484 | unsigned long mask = x86_pmu.lbr_nr - 1; |
Peter Zijlstra | 8db909a | 2010-03-03 17:07:40 +0100 | [diff] [blame] | 485 | int lbr_format = x86_pmu.intel_cap.lbr_format; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 486 | u64 tos = intel_pmu_lbr_tos(); |
| 487 | int i; |
Andi Kleen | b7af41a | 2013-09-20 07:40:44 -0700 | [diff] [blame] | 488 | int out = 0; |
Andi Kleen | 90405aa | 2015-05-27 21:13:18 -0700 | [diff] [blame] | 489 | int num = x86_pmu.lbr_nr; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 490 | |
Stephane Eranian | 6fc2e83 | 2015-12-03 23:33:17 +0100 | [diff] [blame] | 491 | if (cpuc->lbr_sel) { |
| 492 | need_info = !(cpuc->lbr_sel->config & LBR_NO_INFO); |
| 493 | if (cpuc->lbr_sel->config & LBR_CALL_STACK) |
| 494 | num = tos; |
| 495 | } |
Andi Kleen | 90405aa | 2015-05-27 21:13:18 -0700 | [diff] [blame] | 496 | |
| 497 | for (i = 0; i < num; i++) { |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 498 | unsigned long lbr_idx = (tos - i) & mask; |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 499 | u64 from, to, mis = 0, pred = 0, in_tx = 0, abort = 0; |
| 500 | int skip = 0; |
Andi Kleen | 50eab8f | 2015-05-10 12:22:43 -0700 | [diff] [blame] | 501 | u16 cycles = 0; |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 502 | int lbr_flags = lbr_desc[lbr_format]; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 503 | |
| 504 | rdmsrl(x86_pmu.lbr_from + lbr_idx, from); |
| 505 | rdmsrl(x86_pmu.lbr_to + lbr_idx, to); |
| 506 | |
Andi Kleen | b16a5b5 | 2015-10-20 11:46:34 -0700 | [diff] [blame] | 507 | if (lbr_format == LBR_FORMAT_INFO && need_info) { |
Andi Kleen | 50eab8f | 2015-05-10 12:22:43 -0700 | [diff] [blame] | 508 | u64 info; |
| 509 | |
| 510 | rdmsrl(MSR_LBR_INFO_0 + lbr_idx, info); |
| 511 | mis = !!(info & LBR_INFO_MISPRED); |
| 512 | pred = !mis; |
| 513 | in_tx = !!(info & LBR_INFO_IN_TX); |
| 514 | abort = !!(info & LBR_INFO_ABORT); |
| 515 | cycles = (info & LBR_INFO_CYCLES); |
| 516 | } |
Kan Liang | 8b92c3a | 2016-04-15 00:42:47 -0700 | [diff] [blame] | 517 | |
| 518 | if (lbr_format == LBR_FORMAT_TIME) { |
| 519 | mis = !!(from & LBR_FROM_FLAG_MISPRED); |
| 520 | pred = !mis; |
| 521 | skip = 1; |
| 522 | cycles = ((to >> 48) & LBR_INFO_CYCLES); |
| 523 | |
| 524 | to = (u64)((((s64)to) << 16) >> 16); |
| 525 | } |
| 526 | |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 527 | if (lbr_flags & LBR_EIP_FLAGS) { |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 528 | mis = !!(from & LBR_FROM_FLAG_MISPRED); |
| 529 | pred = !mis; |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 530 | skip = 1; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 531 | } |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 532 | if (lbr_flags & LBR_TSX) { |
| 533 | in_tx = !!(from & LBR_FROM_FLAG_IN_TX); |
| 534 | abort = !!(from & LBR_FROM_FLAG_ABORT); |
| 535 | skip = 3; |
| 536 | } |
| 537 | from = (u64)((((s64)from) << skip) >> skip); |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 538 | |
Andi Kleen | b7af41a | 2013-09-20 07:40:44 -0700 | [diff] [blame] | 539 | /* |
| 540 | * Some CPUs report duplicated abort records, |
| 541 | * with the second entry not having an abort bit set. |
| 542 | * Skip them here. This loop runs backwards, |
| 543 | * so we need to undo the previous record. |
| 544 | * If the abort just happened outside the window |
| 545 | * the extra entry cannot be removed. |
| 546 | */ |
| 547 | if (abort && x86_pmu.lbr_double_abort && out > 0) |
| 548 | out--; |
| 549 | |
| 550 | cpuc->lbr_entries[out].from = from; |
| 551 | cpuc->lbr_entries[out].to = to; |
| 552 | cpuc->lbr_entries[out].mispred = mis; |
| 553 | cpuc->lbr_entries[out].predicted = pred; |
| 554 | cpuc->lbr_entries[out].in_tx = in_tx; |
| 555 | cpuc->lbr_entries[out].abort = abort; |
Andi Kleen | 50eab8f | 2015-05-10 12:22:43 -0700 | [diff] [blame] | 556 | cpuc->lbr_entries[out].cycles = cycles; |
Andi Kleen | b7af41a | 2013-09-20 07:40:44 -0700 | [diff] [blame] | 557 | cpuc->lbr_entries[out].reserved = 0; |
| 558 | out++; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 559 | } |
Andi Kleen | b7af41a | 2013-09-20 07:40:44 -0700 | [diff] [blame] | 560 | cpuc->lbr_stack.nr = out; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 561 | } |
| 562 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 563 | void intel_pmu_lbr_read(void) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 564 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 565 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 566 | |
| 567 | if (!cpuc->lbr_users) |
| 568 | return; |
| 569 | |
Peter Zijlstra | 8db909a | 2010-03-03 17:07:40 +0100 | [diff] [blame] | 570 | if (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_32) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 571 | intel_pmu_lbr_read_32(cpuc); |
| 572 | else |
| 573 | intel_pmu_lbr_read_64(cpuc); |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 574 | |
| 575 | intel_pmu_lbr_filter(cpuc); |
| 576 | } |
| 577 | |
| 578 | /* |
| 579 | * SW filter is used: |
| 580 | * - in case there is no HW filter |
| 581 | * - in case the HW filter has errata or limitations |
| 582 | */ |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 583 | static int intel_pmu_setup_sw_lbr_filter(struct perf_event *event) |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 584 | { |
| 585 | u64 br_type = event->attr.branch_sample_type; |
| 586 | int mask = 0; |
| 587 | |
| 588 | if (br_type & PERF_SAMPLE_BRANCH_USER) |
| 589 | mask |= X86_BR_USER; |
| 590 | |
Stephane Eranian | 2b923c8 | 2013-05-21 12:53:37 +0200 | [diff] [blame] | 591 | if (br_type & PERF_SAMPLE_BRANCH_KERNEL) |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 592 | mask |= X86_BR_KERNEL; |
| 593 | |
| 594 | /* we ignore BRANCH_HV here */ |
| 595 | |
| 596 | if (br_type & PERF_SAMPLE_BRANCH_ANY) |
| 597 | mask |= X86_BR_ANY; |
| 598 | |
| 599 | if (br_type & PERF_SAMPLE_BRANCH_ANY_CALL) |
| 600 | mask |= X86_BR_ANY_CALL; |
| 601 | |
| 602 | if (br_type & PERF_SAMPLE_BRANCH_ANY_RETURN) |
| 603 | mask |= X86_BR_RET | X86_BR_IRET | X86_BR_SYSRET; |
| 604 | |
| 605 | if (br_type & PERF_SAMPLE_BRANCH_IND_CALL) |
| 606 | mask |= X86_BR_IND_CALL; |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 607 | |
| 608 | if (br_type & PERF_SAMPLE_BRANCH_ABORT_TX) |
| 609 | mask |= X86_BR_ABORT; |
| 610 | |
| 611 | if (br_type & PERF_SAMPLE_BRANCH_IN_TX) |
| 612 | mask |= X86_BR_IN_TX; |
| 613 | |
| 614 | if (br_type & PERF_SAMPLE_BRANCH_NO_TX) |
| 615 | mask |= X86_BR_NO_TX; |
| 616 | |
Anshuman Khandual | 3754891 | 2014-05-22 12:50:09 +0530 | [diff] [blame] | 617 | if (br_type & PERF_SAMPLE_BRANCH_COND) |
| 618 | mask |= X86_BR_JCC; |
| 619 | |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 620 | if (br_type & PERF_SAMPLE_BRANCH_CALL_STACK) { |
| 621 | if (!x86_pmu_has_lbr_callstack()) |
| 622 | return -EOPNOTSUPP; |
| 623 | if (mask & ~(X86_BR_USER | X86_BR_KERNEL)) |
| 624 | return -EINVAL; |
| 625 | mask |= X86_BR_CALL | X86_BR_IND_CALL | X86_BR_RET | |
| 626 | X86_BR_CALL_STACK; |
| 627 | } |
| 628 | |
Stephane Eranian | 7b74cfb | 2015-05-14 23:09:59 +0200 | [diff] [blame] | 629 | if (br_type & PERF_SAMPLE_BRANCH_IND_JUMP) |
| 630 | mask |= X86_BR_IND_JMP; |
| 631 | |
Stephane Eranian | d892819 | 2015-10-13 09:09:09 +0200 | [diff] [blame] | 632 | if (br_type & PERF_SAMPLE_BRANCH_CALL) |
| 633 | mask |= X86_BR_CALL | X86_BR_ZERO_CALL; |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 634 | /* |
| 635 | * stash actual user request into reg, it may |
| 636 | * be used by fixup code for some CPU |
| 637 | */ |
| 638 | event->hw.branch_reg.reg = mask; |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 639 | return 0; |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 640 | } |
| 641 | |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 642 | /* |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 643 | * setup the HW LBR filter |
| 644 | * Used only when available, may not be enough to disambiguate |
| 645 | * all branches, may need the help of the SW filter |
| 646 | */ |
| 647 | static int intel_pmu_setup_hw_lbr_filter(struct perf_event *event) |
| 648 | { |
| 649 | struct hw_perf_event_extra *reg; |
| 650 | u64 br_type = event->attr.branch_sample_type; |
Yan, Zheng | 27ac905 | 2014-11-04 21:55:57 -0500 | [diff] [blame] | 651 | u64 mask = 0, v; |
| 652 | int i; |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 653 | |
Peter Zijlstra | 2c44b19 | 2014-11-05 10:36:45 +0100 | [diff] [blame] | 654 | for (i = 0; i < PERF_SAMPLE_BRANCH_MAX_SHIFT; i++) { |
Yan, Zheng | 27ac905 | 2014-11-04 21:55:57 -0500 | [diff] [blame] | 655 | if (!(br_type & (1ULL << i))) |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 656 | continue; |
| 657 | |
Yan, Zheng | 27ac905 | 2014-11-04 21:55:57 -0500 | [diff] [blame] | 658 | v = x86_pmu.lbr_sel_map[i]; |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 659 | if (v == LBR_NOT_SUPP) |
| 660 | return -EOPNOTSUPP; |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 661 | |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 662 | if (v != LBR_IGN) |
| 663 | mask |= v; |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 664 | } |
Andi Kleen | b16a5b5 | 2015-10-20 11:46:34 -0700 | [diff] [blame] | 665 | |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 666 | reg = &event->hw.branch_reg; |
| 667 | reg->idx = EXTRA_REG_LBR; |
| 668 | |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 669 | /* |
| 670 | * The first 9 bits (LBR_SEL_MASK) in LBR_SELECT operate |
| 671 | * in suppress mode. So LBR_SELECT should be set to |
| 672 | * (~mask & LBR_SEL_MASK) | (mask & ~LBR_SEL_MASK) |
Kan Liang | cf3beb7 | 2016-04-21 02:30:10 -0700 | [diff] [blame] | 673 | * But the 10th bit LBR_CALL_STACK does not operate |
| 674 | * in suppress mode. |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 675 | */ |
Kan Liang | cf3beb7 | 2016-04-21 02:30:10 -0700 | [diff] [blame] | 676 | reg->config = mask ^ (x86_pmu.lbr_sel_mask & ~LBR_CALL_STACK); |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 677 | |
Andi Kleen | b16a5b5 | 2015-10-20 11:46:34 -0700 | [diff] [blame] | 678 | if ((br_type & PERF_SAMPLE_BRANCH_NO_CYCLES) && |
| 679 | (br_type & PERF_SAMPLE_BRANCH_NO_FLAGS) && |
| 680 | (x86_pmu.intel_cap.lbr_format == LBR_FORMAT_INFO)) |
| 681 | reg->config |= LBR_NO_INFO; |
| 682 | |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 683 | return 0; |
| 684 | } |
| 685 | |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 686 | int intel_pmu_setup_lbr_filter(struct perf_event *event) |
| 687 | { |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 688 | int ret = 0; |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 689 | |
| 690 | /* |
| 691 | * no LBR on this PMU |
| 692 | */ |
| 693 | if (!x86_pmu.lbr_nr) |
| 694 | return -EOPNOTSUPP; |
| 695 | |
| 696 | /* |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 697 | * setup SW LBR filter |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 698 | */ |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 699 | ret = intel_pmu_setup_sw_lbr_filter(event); |
| 700 | if (ret) |
| 701 | return ret; |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 702 | |
| 703 | /* |
| 704 | * setup HW LBR filter, if any |
| 705 | */ |
| 706 | if (x86_pmu.lbr_sel_map) |
| 707 | ret = intel_pmu_setup_hw_lbr_filter(event); |
| 708 | |
| 709 | return ret; |
| 710 | } |
| 711 | |
| 712 | /* |
| 713 | * return the type of control flow change at address "from" |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 714 | * instruction is not necessarily a branch (in case of interrupt). |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 715 | * |
| 716 | * The branch type returned also includes the priv level of the |
| 717 | * target of the control flow change (X86_BR_USER, X86_BR_KERNEL). |
| 718 | * |
| 719 | * If a branch type is unknown OR the instruction cannot be |
| 720 | * decoded (e.g., text page not present), then X86_BR_NONE is |
| 721 | * returned. |
| 722 | */ |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 723 | static int branch_type(unsigned long from, unsigned long to, int abort) |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 724 | { |
| 725 | struct insn insn; |
| 726 | void *addr; |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 727 | int bytes_read, bytes_left; |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 728 | int ret = X86_BR_NONE; |
| 729 | int ext, to_plm, from_plm; |
| 730 | u8 buf[MAX_INSN_SIZE]; |
| 731 | int is64 = 0; |
| 732 | |
| 733 | to_plm = kernel_ip(to) ? X86_BR_KERNEL : X86_BR_USER; |
| 734 | from_plm = kernel_ip(from) ? X86_BR_KERNEL : X86_BR_USER; |
| 735 | |
| 736 | /* |
| 737 | * maybe zero if lbr did not fill up after a reset by the time |
| 738 | * we get a PMU interrupt |
| 739 | */ |
| 740 | if (from == 0 || to == 0) |
| 741 | return X86_BR_NONE; |
| 742 | |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 743 | if (abort) |
| 744 | return X86_BR_ABORT | to_plm; |
| 745 | |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 746 | if (from_plm == X86_BR_USER) { |
| 747 | /* |
| 748 | * can happen if measuring at the user level only |
| 749 | * and we interrupt in a kernel thread, e.g., idle. |
| 750 | */ |
| 751 | if (!current->mm) |
| 752 | return X86_BR_NONE; |
| 753 | |
| 754 | /* may fail if text not present */ |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 755 | bytes_left = copy_from_user_nmi(buf, (void __user *)from, |
| 756 | MAX_INSN_SIZE); |
| 757 | bytes_read = MAX_INSN_SIZE - bytes_left; |
| 758 | if (!bytes_read) |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 759 | return X86_BR_NONE; |
| 760 | |
| 761 | addr = buf; |
Peter Zijlstra | 6e15eb3 | 2013-05-03 14:11:24 +0200 | [diff] [blame] | 762 | } else { |
| 763 | /* |
| 764 | * The LBR logs any address in the IP, even if the IP just |
| 765 | * faulted. This means userspace can control the from address. |
| 766 | * Ensure we don't blindy read any address by validating it is |
| 767 | * a known text address. |
| 768 | */ |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 769 | if (kernel_text_address(from)) { |
Peter Zijlstra | 6e15eb3 | 2013-05-03 14:11:24 +0200 | [diff] [blame] | 770 | addr = (void *)from; |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 771 | /* |
| 772 | * Assume we can get the maximum possible size |
| 773 | * when grabbing kernel data. This is not |
| 774 | * _strictly_ true since we could possibly be |
| 775 | * executing up next to a memory hole, but |
| 776 | * it is very unlikely to be a problem. |
| 777 | */ |
| 778 | bytes_read = MAX_INSN_SIZE; |
| 779 | } else { |
Peter Zijlstra | 6e15eb3 | 2013-05-03 14:11:24 +0200 | [diff] [blame] | 780 | return X86_BR_NONE; |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 781 | } |
Peter Zijlstra | 6e15eb3 | 2013-05-03 14:11:24 +0200 | [diff] [blame] | 782 | } |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 783 | |
| 784 | /* |
| 785 | * decoder needs to know the ABI especially |
| 786 | * on 64-bit systems running 32-bit apps |
| 787 | */ |
| 788 | #ifdef CONFIG_X86_64 |
| 789 | is64 = kernel_ip((unsigned long)addr) || !test_thread_flag(TIF_IA32); |
| 790 | #endif |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 791 | insn_init(&insn, addr, bytes_read, is64); |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 792 | insn_get_opcode(&insn); |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 793 | if (!insn.opcode.got) |
| 794 | return X86_BR_ABORT; |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 795 | |
| 796 | switch (insn.opcode.bytes[0]) { |
| 797 | case 0xf: |
| 798 | switch (insn.opcode.bytes[1]) { |
| 799 | case 0x05: /* syscall */ |
| 800 | case 0x34: /* sysenter */ |
| 801 | ret = X86_BR_SYSCALL; |
| 802 | break; |
| 803 | case 0x07: /* sysret */ |
| 804 | case 0x35: /* sysexit */ |
| 805 | ret = X86_BR_SYSRET; |
| 806 | break; |
| 807 | case 0x80 ... 0x8f: /* conditional */ |
| 808 | ret = X86_BR_JCC; |
| 809 | break; |
| 810 | default: |
| 811 | ret = X86_BR_NONE; |
| 812 | } |
| 813 | break; |
| 814 | case 0x70 ... 0x7f: /* conditional */ |
| 815 | ret = X86_BR_JCC; |
| 816 | break; |
| 817 | case 0xc2: /* near ret */ |
| 818 | case 0xc3: /* near ret */ |
| 819 | case 0xca: /* far ret */ |
| 820 | case 0xcb: /* far ret */ |
| 821 | ret = X86_BR_RET; |
| 822 | break; |
| 823 | case 0xcf: /* iret */ |
| 824 | ret = X86_BR_IRET; |
| 825 | break; |
| 826 | case 0xcc ... 0xce: /* int */ |
| 827 | ret = X86_BR_INT; |
| 828 | break; |
| 829 | case 0xe8: /* call near rel */ |
Yan, Zheng | aa54ae9 | 2014-11-04 21:56:11 -0500 | [diff] [blame] | 830 | insn_get_immediate(&insn); |
| 831 | if (insn.immediate1.value == 0) { |
| 832 | /* zero length call */ |
| 833 | ret = X86_BR_ZERO_CALL; |
| 834 | break; |
| 835 | } |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 836 | case 0x9a: /* call far absolute */ |
| 837 | ret = X86_BR_CALL; |
| 838 | break; |
| 839 | case 0xe0 ... 0xe3: /* loop jmp */ |
| 840 | ret = X86_BR_JCC; |
| 841 | break; |
| 842 | case 0xe9 ... 0xeb: /* jmp */ |
| 843 | ret = X86_BR_JMP; |
| 844 | break; |
| 845 | case 0xff: /* call near absolute, call far absolute ind */ |
| 846 | insn_get_modrm(&insn); |
| 847 | ext = (insn.modrm.bytes[0] >> 3) & 0x7; |
| 848 | switch (ext) { |
| 849 | case 2: /* near ind call */ |
| 850 | case 3: /* far ind call */ |
| 851 | ret = X86_BR_IND_CALL; |
| 852 | break; |
| 853 | case 4: |
| 854 | case 5: |
Stephane Eranian | 7b74cfb | 2015-05-14 23:09:59 +0200 | [diff] [blame] | 855 | ret = X86_BR_IND_JMP; |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 856 | break; |
| 857 | } |
| 858 | break; |
| 859 | default: |
| 860 | ret = X86_BR_NONE; |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 861 | } |
| 862 | /* |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 863 | * interrupts, traps, faults (and thus ring transition) may |
| 864 | * occur on any instructions. Thus, to classify them correctly, |
| 865 | * we need to first look at the from and to priv levels. If they |
| 866 | * are different and to is in the kernel, then it indicates |
| 867 | * a ring transition. If the from instruction is not a ring |
| 868 | * transition instr (syscall, systenter, int), then it means |
| 869 | * it was a irq, trap or fault. |
| 870 | * |
| 871 | * we have no way of detecting kernel to kernel faults. |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 872 | */ |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 873 | if (from_plm == X86_BR_USER && to_plm == X86_BR_KERNEL |
| 874 | && ret != X86_BR_SYSCALL && ret != X86_BR_INT) |
| 875 | ret = X86_BR_IRQ; |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 876 | |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 877 | /* |
| 878 | * branch priv level determined by target as |
| 879 | * is done by HW when LBR_SELECT is implemented |
| 880 | */ |
| 881 | if (ret != X86_BR_NONE) |
| 882 | ret |= to_plm; |
| 883 | |
| 884 | return ret; |
| 885 | } |
| 886 | |
| 887 | /* |
| 888 | * implement actual branch filter based on user demand. |
| 889 | * Hardware may not exactly satisfy that request, thus |
| 890 | * we need to inspect opcodes. Mismatched branches are |
| 891 | * discarded. Therefore, the number of branches returned |
| 892 | * in PERF_SAMPLE_BRANCH_STACK sample may vary. |
| 893 | */ |
| 894 | static void |
| 895 | intel_pmu_lbr_filter(struct cpu_hw_events *cpuc) |
| 896 | { |
| 897 | u64 from, to; |
| 898 | int br_sel = cpuc->br_sel; |
| 899 | int i, j, type; |
| 900 | bool compress = false; |
| 901 | |
| 902 | /* if sampling all branches, then nothing to filter */ |
| 903 | if ((br_sel & X86_BR_ALL) == X86_BR_ALL) |
| 904 | return; |
| 905 | |
| 906 | for (i = 0; i < cpuc->lbr_stack.nr; i++) { |
| 907 | |
| 908 | from = cpuc->lbr_entries[i].from; |
| 909 | to = cpuc->lbr_entries[i].to; |
| 910 | |
Andi Kleen | 135c561 | 2013-06-17 17:36:51 -0700 | [diff] [blame] | 911 | type = branch_type(from, to, cpuc->lbr_entries[i].abort); |
| 912 | if (type != X86_BR_NONE && (br_sel & X86_BR_ANYTX)) { |
| 913 | if (cpuc->lbr_entries[i].in_tx) |
| 914 | type |= X86_BR_IN_TX; |
| 915 | else |
| 916 | type |= X86_BR_NO_TX; |
| 917 | } |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 918 | |
| 919 | /* if type does not correspond, then discard */ |
| 920 | if (type == X86_BR_NONE || (br_sel & type) != type) { |
| 921 | cpuc->lbr_entries[i].from = 0; |
| 922 | compress = true; |
| 923 | } |
| 924 | } |
| 925 | |
| 926 | if (!compress) |
| 927 | return; |
| 928 | |
| 929 | /* remove all entries with from=0 */ |
| 930 | for (i = 0; i < cpuc->lbr_stack.nr; ) { |
| 931 | if (!cpuc->lbr_entries[i].from) { |
| 932 | j = i; |
| 933 | while (++j < cpuc->lbr_stack.nr) |
| 934 | cpuc->lbr_entries[j-1] = cpuc->lbr_entries[j]; |
| 935 | cpuc->lbr_stack.nr--; |
| 936 | if (!cpuc->lbr_entries[i].from) |
| 937 | continue; |
| 938 | } |
| 939 | i++; |
| 940 | } |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 941 | } |
| 942 | |
| 943 | /* |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 944 | * Map interface branch filters onto LBR filters |
| 945 | */ |
Peter Zijlstra | 2c44b19 | 2014-11-05 10:36:45 +0100 | [diff] [blame] | 946 | static const int nhm_lbr_sel_map[PERF_SAMPLE_BRANCH_MAX_SHIFT] = { |
Yan, Zheng | 27ac905 | 2014-11-04 21:55:57 -0500 | [diff] [blame] | 947 | [PERF_SAMPLE_BRANCH_ANY_SHIFT] = LBR_ANY, |
| 948 | [PERF_SAMPLE_BRANCH_USER_SHIFT] = LBR_USER, |
| 949 | [PERF_SAMPLE_BRANCH_KERNEL_SHIFT] = LBR_KERNEL, |
| 950 | [PERF_SAMPLE_BRANCH_HV_SHIFT] = LBR_IGN, |
| 951 | [PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT] = LBR_RETURN | LBR_REL_JMP |
| 952 | | LBR_IND_JMP | LBR_FAR, |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 953 | /* |
| 954 | * NHM/WSM erratum: must include REL_JMP+IND_JMP to get CALL branches |
| 955 | */ |
Yan, Zheng | 27ac905 | 2014-11-04 21:55:57 -0500 | [diff] [blame] | 956 | [PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT] = |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 957 | LBR_REL_CALL | LBR_IND_CALL | LBR_REL_JMP | LBR_IND_JMP | LBR_FAR, |
| 958 | /* |
| 959 | * NHM/WSM erratum: must include IND_JMP to capture IND_CALL |
| 960 | */ |
Yan, Zheng | 27ac905 | 2014-11-04 21:55:57 -0500 | [diff] [blame] | 961 | [PERF_SAMPLE_BRANCH_IND_CALL_SHIFT] = LBR_IND_CALL | LBR_IND_JMP, |
| 962 | [PERF_SAMPLE_BRANCH_COND_SHIFT] = LBR_JCC, |
Stephane Eranian | 7b74cfb | 2015-05-14 23:09:59 +0200 | [diff] [blame] | 963 | [PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT] = LBR_IND_JMP, |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 964 | }; |
| 965 | |
Peter Zijlstra | 2c44b19 | 2014-11-05 10:36:45 +0100 | [diff] [blame] | 966 | static const int snb_lbr_sel_map[PERF_SAMPLE_BRANCH_MAX_SHIFT] = { |
Yan, Zheng | 27ac905 | 2014-11-04 21:55:57 -0500 | [diff] [blame] | 967 | [PERF_SAMPLE_BRANCH_ANY_SHIFT] = LBR_ANY, |
| 968 | [PERF_SAMPLE_BRANCH_USER_SHIFT] = LBR_USER, |
| 969 | [PERF_SAMPLE_BRANCH_KERNEL_SHIFT] = LBR_KERNEL, |
| 970 | [PERF_SAMPLE_BRANCH_HV_SHIFT] = LBR_IGN, |
| 971 | [PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT] = LBR_RETURN | LBR_FAR, |
| 972 | [PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT] = LBR_REL_CALL | LBR_IND_CALL |
| 973 | | LBR_FAR, |
| 974 | [PERF_SAMPLE_BRANCH_IND_CALL_SHIFT] = LBR_IND_CALL, |
| 975 | [PERF_SAMPLE_BRANCH_COND_SHIFT] = LBR_JCC, |
Stephane Eranian | 7b74cfb | 2015-05-14 23:09:59 +0200 | [diff] [blame] | 976 | [PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT] = LBR_IND_JMP, |
Stephane Eranian | d892819 | 2015-10-13 09:09:09 +0200 | [diff] [blame] | 977 | [PERF_SAMPLE_BRANCH_CALL_SHIFT] = LBR_REL_CALL, |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 978 | }; |
| 979 | |
Peter Zijlstra | 2c44b19 | 2014-11-05 10:36:45 +0100 | [diff] [blame] | 980 | static const int hsw_lbr_sel_map[PERF_SAMPLE_BRANCH_MAX_SHIFT] = { |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 981 | [PERF_SAMPLE_BRANCH_ANY_SHIFT] = LBR_ANY, |
| 982 | [PERF_SAMPLE_BRANCH_USER_SHIFT] = LBR_USER, |
| 983 | [PERF_SAMPLE_BRANCH_KERNEL_SHIFT] = LBR_KERNEL, |
| 984 | [PERF_SAMPLE_BRANCH_HV_SHIFT] = LBR_IGN, |
| 985 | [PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT] = LBR_RETURN | LBR_FAR, |
| 986 | [PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT] = LBR_REL_CALL | LBR_IND_CALL |
| 987 | | LBR_FAR, |
| 988 | [PERF_SAMPLE_BRANCH_IND_CALL_SHIFT] = LBR_IND_CALL, |
| 989 | [PERF_SAMPLE_BRANCH_COND_SHIFT] = LBR_JCC, |
| 990 | [PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT] = LBR_REL_CALL | LBR_IND_CALL |
| 991 | | LBR_RETURN | LBR_CALL_STACK, |
Stephane Eranian | 7b74cfb | 2015-05-14 23:09:59 +0200 | [diff] [blame] | 992 | [PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT] = LBR_IND_JMP, |
Stephane Eranian | d892819 | 2015-10-13 09:09:09 +0200 | [diff] [blame] | 993 | [PERF_SAMPLE_BRANCH_CALL_SHIFT] = LBR_REL_CALL, |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 994 | }; |
| 995 | |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 996 | /* core */ |
Mathias Krause | 066ce64 | 2014-08-26 18:49:45 +0200 | [diff] [blame] | 997 | void __init intel_pmu_lbr_init_core(void) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 998 | { |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 999 | x86_pmu.lbr_nr = 4; |
Stephane Eranian | 225ce53 | 2012-02-09 23:20:52 +0100 | [diff] [blame] | 1000 | x86_pmu.lbr_tos = MSR_LBR_TOS; |
| 1001 | x86_pmu.lbr_from = MSR_LBR_CORE_FROM; |
| 1002 | x86_pmu.lbr_to = MSR_LBR_CORE_TO; |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 1003 | |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 1004 | /* |
| 1005 | * SW branch filter usage: |
| 1006 | * - compensate for lack of HW filter |
| 1007 | */ |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 1008 | } |
| 1009 | |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 1010 | /* nehalem/westmere */ |
Mathias Krause | 066ce64 | 2014-08-26 18:49:45 +0200 | [diff] [blame] | 1011 | void __init intel_pmu_lbr_init_nhm(void) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 1012 | { |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 1013 | x86_pmu.lbr_nr = 16; |
Stephane Eranian | 225ce53 | 2012-02-09 23:20:52 +0100 | [diff] [blame] | 1014 | x86_pmu.lbr_tos = MSR_LBR_TOS; |
| 1015 | x86_pmu.lbr_from = MSR_LBR_NHM_FROM; |
| 1016 | x86_pmu.lbr_to = MSR_LBR_NHM_TO; |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 1017 | |
| 1018 | x86_pmu.lbr_sel_mask = LBR_SEL_MASK; |
| 1019 | x86_pmu.lbr_sel_map = nhm_lbr_sel_map; |
| 1020 | |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 1021 | /* |
| 1022 | * SW branch filter usage: |
| 1023 | * - workaround LBR_SEL errata (see above) |
| 1024 | * - support syscall, sysret capture. |
| 1025 | * That requires LBR_FAR but that means far |
| 1026 | * jmp need to be filtered out |
| 1027 | */ |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 1028 | } |
| 1029 | |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 1030 | /* sandy bridge */ |
Mathias Krause | 066ce64 | 2014-08-26 18:49:45 +0200 | [diff] [blame] | 1031 | void __init intel_pmu_lbr_init_snb(void) |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 1032 | { |
| 1033 | x86_pmu.lbr_nr = 16; |
| 1034 | x86_pmu.lbr_tos = MSR_LBR_TOS; |
| 1035 | x86_pmu.lbr_from = MSR_LBR_NHM_FROM; |
| 1036 | x86_pmu.lbr_to = MSR_LBR_NHM_TO; |
| 1037 | |
| 1038 | x86_pmu.lbr_sel_mask = LBR_SEL_MASK; |
| 1039 | x86_pmu.lbr_sel_map = snb_lbr_sel_map; |
| 1040 | |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 1041 | /* |
| 1042 | * SW branch filter usage: |
| 1043 | * - support syscall, sysret capture. |
| 1044 | * That requires LBR_FAR but that means far |
| 1045 | * jmp need to be filtered out |
| 1046 | */ |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 1047 | } |
| 1048 | |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 1049 | /* haswell */ |
| 1050 | void intel_pmu_lbr_init_hsw(void) |
| 1051 | { |
| 1052 | x86_pmu.lbr_nr = 16; |
| 1053 | x86_pmu.lbr_tos = MSR_LBR_TOS; |
| 1054 | x86_pmu.lbr_from = MSR_LBR_NHM_FROM; |
| 1055 | x86_pmu.lbr_to = MSR_LBR_NHM_TO; |
| 1056 | |
| 1057 | x86_pmu.lbr_sel_mask = LBR_SEL_MASK; |
| 1058 | x86_pmu.lbr_sel_map = hsw_lbr_sel_map; |
David Carrillo-Cisneros | 19fc9dd | 2016-06-21 11:31:11 -0700 | [diff] [blame^] | 1059 | |
| 1060 | if (lbr_from_signext_quirk_needed()) |
| 1061 | static_branch_enable(&lbr_from_quirk_key); |
Yan, Zheng | e9d7f7cd | 2014-11-04 21:56:00 -0500 | [diff] [blame] | 1062 | } |
| 1063 | |
Andi Kleen | 9a92e16 | 2015-05-10 12:22:44 -0700 | [diff] [blame] | 1064 | /* skylake */ |
| 1065 | __init void intel_pmu_lbr_init_skl(void) |
| 1066 | { |
| 1067 | x86_pmu.lbr_nr = 32; |
| 1068 | x86_pmu.lbr_tos = MSR_LBR_TOS; |
| 1069 | x86_pmu.lbr_from = MSR_LBR_NHM_FROM; |
| 1070 | x86_pmu.lbr_to = MSR_LBR_NHM_TO; |
| 1071 | |
| 1072 | x86_pmu.lbr_sel_mask = LBR_SEL_MASK; |
| 1073 | x86_pmu.lbr_sel_map = hsw_lbr_sel_map; |
| 1074 | |
| 1075 | /* |
| 1076 | * SW branch filter usage: |
| 1077 | * - support syscall, sysret capture. |
| 1078 | * That requires LBR_FAR but that means far |
| 1079 | * jmp need to be filtered out |
| 1080 | */ |
Andi Kleen | 9a92e16 | 2015-05-10 12:22:44 -0700 | [diff] [blame] | 1081 | } |
| 1082 | |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 1083 | /* atom */ |
Mathias Krause | 066ce64 | 2014-08-26 18:49:45 +0200 | [diff] [blame] | 1084 | void __init intel_pmu_lbr_init_atom(void) |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 1085 | { |
Stephane Eranian | 88c9a65 | 2012-02-09 23:20:56 +0100 | [diff] [blame] | 1086 | /* |
| 1087 | * only models starting at stepping 10 seems |
| 1088 | * to have an operational LBR which can freeze |
| 1089 | * on PMU interrupt |
| 1090 | */ |
Stephane Eranian | 3ec18cd | 2012-08-20 11:24:21 +0200 | [diff] [blame] | 1091 | if (boot_cpu_data.x86_model == 28 |
| 1092 | && boot_cpu_data.x86_mask < 10) { |
Stephane Eranian | 88c9a65 | 2012-02-09 23:20:56 +0100 | [diff] [blame] | 1093 | pr_cont("LBR disabled due to erratum"); |
| 1094 | return; |
| 1095 | } |
| 1096 | |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 1097 | x86_pmu.lbr_nr = 8; |
Stephane Eranian | 225ce53 | 2012-02-09 23:20:52 +0100 | [diff] [blame] | 1098 | x86_pmu.lbr_tos = MSR_LBR_TOS; |
| 1099 | x86_pmu.lbr_from = MSR_LBR_CORE_FROM; |
| 1100 | x86_pmu.lbr_to = MSR_LBR_CORE_TO; |
Stephane Eranian | c5cc2cd | 2012-02-09 23:20:55 +0100 | [diff] [blame] | 1101 | |
Stephane Eranian | 3e702ff | 2012-02-09 23:20:58 +0100 | [diff] [blame] | 1102 | /* |
| 1103 | * SW branch filter usage: |
| 1104 | * - compensate for lack of HW filter |
| 1105 | */ |
Peter Zijlstra | caff2be | 2010-03-03 12:02:30 +0100 | [diff] [blame] | 1106 | } |
Harish Chegondi | 1e7b939 | 2015-12-07 14:28:18 -0800 | [diff] [blame] | 1107 | |
Kan Liang | f21d5ad | 2016-04-15 00:53:45 -0700 | [diff] [blame] | 1108 | /* slm */ |
| 1109 | void __init intel_pmu_lbr_init_slm(void) |
| 1110 | { |
| 1111 | x86_pmu.lbr_nr = 8; |
| 1112 | x86_pmu.lbr_tos = MSR_LBR_TOS; |
| 1113 | x86_pmu.lbr_from = MSR_LBR_CORE_FROM; |
| 1114 | x86_pmu.lbr_to = MSR_LBR_CORE_TO; |
| 1115 | |
| 1116 | x86_pmu.lbr_sel_mask = LBR_SEL_MASK; |
| 1117 | x86_pmu.lbr_sel_map = nhm_lbr_sel_map; |
| 1118 | |
| 1119 | /* |
| 1120 | * SW branch filter usage: |
| 1121 | * - compensate for lack of HW filter |
| 1122 | */ |
| 1123 | pr_cont("8-deep LBR, "); |
| 1124 | } |
| 1125 | |
Harish Chegondi | 1e7b939 | 2015-12-07 14:28:18 -0800 | [diff] [blame] | 1126 | /* Knights Landing */ |
| 1127 | void intel_pmu_lbr_init_knl(void) |
| 1128 | { |
| 1129 | x86_pmu.lbr_nr = 8; |
| 1130 | x86_pmu.lbr_tos = MSR_LBR_TOS; |
| 1131 | x86_pmu.lbr_from = MSR_LBR_NHM_FROM; |
| 1132 | x86_pmu.lbr_to = MSR_LBR_NHM_TO; |
| 1133 | |
| 1134 | x86_pmu.lbr_sel_mask = LBR_SEL_MASK; |
| 1135 | x86_pmu.lbr_sel_map = snb_lbr_sel_map; |
Harish Chegondi | 1e7b939 | 2015-12-07 14:28:18 -0800 | [diff] [blame] | 1136 | } |