Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 1 | #include <linux/bitops.h> |
| 2 | #include <linux/types.h> |
| 3 | #include <linux/slab.h> |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 4 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 5 | #include <asm/perf_event.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 | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 9 | |
| 10 | /* The size of a BTS record in bytes: */ |
| 11 | #define BTS_RECORD_SIZE 24 |
| 12 | |
| 13 | #define BTS_BUFFER_SIZE (PAGE_SIZE << 4) |
Yan, Zheng | 1561749 | 2015-05-06 15:33:52 -0400 | [diff] [blame] | 14 | #define PEBS_BUFFER_SIZE (PAGE_SIZE << 4) |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 15 | #define PEBS_FIXUP_SIZE PAGE_SIZE |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 16 | |
| 17 | /* |
| 18 | * pebs_record_32 for p4 and core not supported |
| 19 | |
| 20 | struct pebs_record_32 { |
| 21 | u32 flags, ip; |
| 22 | u32 ax, bc, cx, dx; |
| 23 | u32 si, di, bp, sp; |
| 24 | }; |
| 25 | |
| 26 | */ |
| 27 | |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 28 | union intel_x86_pebs_dse { |
| 29 | u64 val; |
| 30 | struct { |
| 31 | unsigned int ld_dse:4; |
| 32 | unsigned int ld_stlb_miss:1; |
| 33 | unsigned int ld_locked:1; |
| 34 | unsigned int ld_reserved:26; |
| 35 | }; |
| 36 | struct { |
| 37 | unsigned int st_l1d_hit:1; |
| 38 | unsigned int st_reserved1:3; |
| 39 | unsigned int st_stlb_miss:1; |
| 40 | unsigned int st_locked:1; |
| 41 | unsigned int st_reserved2:26; |
| 42 | }; |
| 43 | }; |
| 44 | |
| 45 | |
| 46 | /* |
| 47 | * Map PEBS Load Latency Data Source encodings to generic |
| 48 | * memory data source information |
| 49 | */ |
| 50 | #define P(a, b) PERF_MEM_S(a, b) |
| 51 | #define OP_LH (P(OP, LOAD) | P(LVL, HIT)) |
| 52 | #define SNOOP_NONE_MISS (P(SNOOP, NONE) | P(SNOOP, MISS)) |
| 53 | |
Andi Kleen | e17dc65 | 2016-03-01 14:25:24 -0800 | [diff] [blame] | 54 | /* Version for Sandy Bridge and later */ |
| 55 | static u64 pebs_data_source[] = { |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 56 | P(OP, LOAD) | P(LVL, MISS) | P(LVL, L3) | P(SNOOP, NA),/* 0x00:ukn L3 */ |
| 57 | OP_LH | P(LVL, L1) | P(SNOOP, NONE), /* 0x01: L1 local */ |
| 58 | OP_LH | P(LVL, LFB) | P(SNOOP, NONE), /* 0x02: LFB hit */ |
| 59 | OP_LH | P(LVL, L2) | P(SNOOP, NONE), /* 0x03: L2 hit */ |
| 60 | OP_LH | P(LVL, L3) | P(SNOOP, NONE), /* 0x04: L3 hit */ |
| 61 | OP_LH | P(LVL, L3) | P(SNOOP, MISS), /* 0x05: L3 hit, snoop miss */ |
| 62 | OP_LH | P(LVL, L3) | P(SNOOP, HIT), /* 0x06: L3 hit, snoop hit */ |
| 63 | OP_LH | P(LVL, L3) | P(SNOOP, HITM), /* 0x07: L3 hit, snoop hitm */ |
| 64 | OP_LH | P(LVL, REM_CCE1) | P(SNOOP, HIT), /* 0x08: L3 miss snoop hit */ |
| 65 | OP_LH | P(LVL, REM_CCE1) | P(SNOOP, HITM), /* 0x09: L3 miss snoop hitm*/ |
| 66 | OP_LH | P(LVL, LOC_RAM) | P(SNOOP, HIT), /* 0x0a: L3 miss, shared */ |
| 67 | OP_LH | P(LVL, REM_RAM1) | P(SNOOP, HIT), /* 0x0b: L3 miss, shared */ |
| 68 | OP_LH | P(LVL, LOC_RAM) | SNOOP_NONE_MISS,/* 0x0c: L3 miss, excl */ |
| 69 | OP_LH | P(LVL, REM_RAM1) | SNOOP_NONE_MISS,/* 0x0d: L3 miss, excl */ |
| 70 | OP_LH | P(LVL, IO) | P(SNOOP, NONE), /* 0x0e: I/O */ |
| 71 | OP_LH | P(LVL, UNC) | P(SNOOP, NONE), /* 0x0f: uncached */ |
| 72 | }; |
| 73 | |
Andi Kleen | e17dc65 | 2016-03-01 14:25:24 -0800 | [diff] [blame] | 74 | /* Patch up minor differences in the bits */ |
| 75 | void __init intel_pmu_pebs_data_source_nhm(void) |
| 76 | { |
| 77 | pebs_data_source[0x05] = OP_LH | P(LVL, L3) | P(SNOOP, HIT); |
| 78 | pebs_data_source[0x06] = OP_LH | P(LVL, L3) | P(SNOOP, HITM); |
| 79 | pebs_data_source[0x07] = OP_LH | P(LVL, L3) | P(SNOOP, HITM); |
| 80 | } |
| 81 | |
Stephane Eranian | 9ad64c0 | 2013-01-24 16:10:34 +0100 | [diff] [blame] | 82 | static u64 precise_store_data(u64 status) |
| 83 | { |
| 84 | union intel_x86_pebs_dse dse; |
| 85 | u64 val = P(OP, STORE) | P(SNOOP, NA) | P(LVL, L1) | P(TLB, L2); |
| 86 | |
| 87 | dse.val = status; |
| 88 | |
| 89 | /* |
| 90 | * bit 4: TLB access |
| 91 | * 1 = stored missed 2nd level TLB |
| 92 | * |
| 93 | * so it either hit the walker or the OS |
| 94 | * otherwise hit 2nd level TLB |
| 95 | */ |
| 96 | if (dse.st_stlb_miss) |
| 97 | val |= P(TLB, MISS); |
| 98 | else |
| 99 | val |= P(TLB, HIT); |
| 100 | |
| 101 | /* |
| 102 | * bit 0: hit L1 data cache |
| 103 | * if not set, then all we know is that |
| 104 | * it missed L1D |
| 105 | */ |
| 106 | if (dse.st_l1d_hit) |
| 107 | val |= P(LVL, HIT); |
| 108 | else |
| 109 | val |= P(LVL, MISS); |
| 110 | |
| 111 | /* |
| 112 | * bit 5: Locked prefix |
| 113 | */ |
| 114 | if (dse.st_locked) |
| 115 | val |= P(LOCK, LOCKED); |
| 116 | |
| 117 | return val; |
| 118 | } |
| 119 | |
Stephane Eranian | c8aab2e | 2014-08-11 21:27:13 +0200 | [diff] [blame] | 120 | static u64 precise_datala_hsw(struct perf_event *event, u64 status) |
Andi Kleen | f9134f3 | 2013-06-17 17:36:52 -0700 | [diff] [blame] | 121 | { |
| 122 | union perf_mem_data_src dse; |
| 123 | |
Stephane Eranian | 770eee1 | 2014-08-11 21:27:12 +0200 | [diff] [blame] | 124 | dse.val = PERF_MEM_NA; |
| 125 | |
| 126 | if (event->hw.flags & PERF_X86_EVENT_PEBS_ST_HSW) |
| 127 | dse.mem_op = PERF_MEM_OP_STORE; |
| 128 | else if (event->hw.flags & PERF_X86_EVENT_PEBS_LD_HSW) |
| 129 | dse.mem_op = PERF_MEM_OP_LOAD; |
Stephane Eranian | 722e76e | 2014-05-15 17:56:44 +0200 | [diff] [blame] | 130 | |
| 131 | /* |
| 132 | * L1 info only valid for following events: |
| 133 | * |
| 134 | * MEM_UOPS_RETIRED.STLB_MISS_STORES |
| 135 | * MEM_UOPS_RETIRED.LOCK_STORES |
| 136 | * MEM_UOPS_RETIRED.SPLIT_STORES |
| 137 | * MEM_UOPS_RETIRED.ALL_STORES |
| 138 | */ |
Stephane Eranian | c8aab2e | 2014-08-11 21:27:13 +0200 | [diff] [blame] | 139 | if (event->hw.flags & PERF_X86_EVENT_PEBS_ST_HSW) { |
| 140 | if (status & 1) |
| 141 | dse.mem_lvl = PERF_MEM_LVL_L1 | PERF_MEM_LVL_HIT; |
| 142 | else |
| 143 | dse.mem_lvl = PERF_MEM_LVL_L1 | PERF_MEM_LVL_MISS; |
| 144 | } |
Andi Kleen | f9134f3 | 2013-06-17 17:36:52 -0700 | [diff] [blame] | 145 | return dse.val; |
| 146 | } |
| 147 | |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 148 | static u64 load_latency_data(u64 status) |
| 149 | { |
| 150 | union intel_x86_pebs_dse dse; |
| 151 | u64 val; |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 152 | |
| 153 | dse.val = status; |
| 154 | |
| 155 | /* |
| 156 | * use the mapping table for bit 0-3 |
| 157 | */ |
| 158 | val = pebs_data_source[dse.ld_dse]; |
| 159 | |
| 160 | /* |
| 161 | * Nehalem models do not support TLB, Lock infos |
| 162 | */ |
Andi Kleen | 9529835 | 2017-08-16 15:21:53 -0700 | [diff] [blame^] | 163 | if (x86_pmu.pebs_no_tlb) { |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 164 | val |= P(TLB, NA) | P(LOCK, NA); |
| 165 | return val; |
| 166 | } |
| 167 | /* |
| 168 | * bit 4: TLB access |
| 169 | * 0 = did not miss 2nd level TLB |
| 170 | * 1 = missed 2nd level TLB |
| 171 | */ |
| 172 | if (dse.ld_stlb_miss) |
| 173 | val |= P(TLB, MISS) | P(TLB, L2); |
| 174 | else |
| 175 | val |= P(TLB, HIT) | P(TLB, L1) | P(TLB, L2); |
| 176 | |
| 177 | /* |
| 178 | * bit 5: locked prefix |
| 179 | */ |
| 180 | if (dse.ld_locked) |
| 181 | val |= P(LOCK, LOCKED); |
| 182 | |
| 183 | return val; |
| 184 | } |
| 185 | |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 186 | struct pebs_record_core { |
| 187 | u64 flags, ip; |
| 188 | u64 ax, bx, cx, dx; |
| 189 | u64 si, di, bp, sp; |
| 190 | u64 r8, r9, r10, r11; |
| 191 | u64 r12, r13, r14, r15; |
| 192 | }; |
| 193 | |
| 194 | struct pebs_record_nhm { |
| 195 | u64 flags, ip; |
| 196 | u64 ax, bx, cx, dx; |
| 197 | u64 si, di, bp, sp; |
| 198 | u64 r8, r9, r10, r11; |
| 199 | u64 r12, r13, r14, r15; |
| 200 | u64 status, dla, dse, lat; |
| 201 | }; |
| 202 | |
Andi Kleen | 130768b | 2013-06-17 17:36:47 -0700 | [diff] [blame] | 203 | /* |
| 204 | * Same as pebs_record_nhm, with two additional fields. |
| 205 | */ |
| 206 | struct pebs_record_hsw { |
Andi Kleen | 748e86a | 2013-09-05 20:37:39 -0700 | [diff] [blame] | 207 | u64 flags, ip; |
| 208 | u64 ax, bx, cx, dx; |
| 209 | u64 si, di, bp, sp; |
| 210 | u64 r8, r9, r10, r11; |
| 211 | u64 r12, r13, r14, r15; |
| 212 | u64 status, dla, dse, lat; |
Peter Zijlstra | d2beea4 | 2013-09-12 13:00:47 +0200 | [diff] [blame] | 213 | u64 real_ip, tsx_tuning; |
Andi Kleen | 748e86a | 2013-09-05 20:37:39 -0700 | [diff] [blame] | 214 | }; |
| 215 | |
| 216 | union hsw_tsx_tuning { |
| 217 | struct { |
| 218 | u32 cycles_last_block : 32, |
| 219 | hle_abort : 1, |
| 220 | rtm_abort : 1, |
| 221 | instruction_abort : 1, |
| 222 | non_instruction_abort : 1, |
| 223 | retry : 1, |
| 224 | data_conflict : 1, |
| 225 | capacity_writes : 1, |
| 226 | capacity_reads : 1; |
| 227 | }; |
| 228 | u64 value; |
Andi Kleen | 130768b | 2013-06-17 17:36:47 -0700 | [diff] [blame] | 229 | }; |
| 230 | |
Andi Kleen | a405bad | 2013-09-20 07:40:40 -0700 | [diff] [blame] | 231 | #define PEBS_HSW_TSX_FLAGS 0xff00000000ULL |
| 232 | |
Andi Kleen | 2f7ebf2 | 2015-05-10 12:22:40 -0700 | [diff] [blame] | 233 | /* Same as HSW, plus TSC */ |
| 234 | |
| 235 | struct pebs_record_skl { |
| 236 | u64 flags, ip; |
| 237 | u64 ax, bx, cx, dx; |
| 238 | u64 si, di, bp, sp; |
| 239 | u64 r8, r9, r10, r11; |
| 240 | u64 r12, r13, r14, r15; |
| 241 | u64 status, dla, dse, lat; |
| 242 | u64 real_ip, tsx_tuning; |
| 243 | u64 tsc; |
| 244 | }; |
| 245 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 246 | void init_debug_store_on_cpu(int cpu) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 247 | { |
| 248 | struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; |
| 249 | |
| 250 | if (!ds) |
| 251 | return; |
| 252 | |
| 253 | wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA, |
| 254 | (u32)((u64)(unsigned long)ds), |
| 255 | (u32)((u64)(unsigned long)ds >> 32)); |
| 256 | } |
| 257 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 258 | void fini_debug_store_on_cpu(int cpu) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 259 | { |
| 260 | if (!per_cpu(cpu_hw_events, cpu).ds) |
| 261 | return; |
| 262 | |
| 263 | wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA, 0, 0); |
| 264 | } |
| 265 | |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 266 | static DEFINE_PER_CPU(void *, insn_buffer); |
| 267 | |
Peter Zijlstra | 5ee25c8 | 2010-10-19 14:15:04 +0200 | [diff] [blame] | 268 | static int alloc_pebs_buffer(int cpu) |
| 269 | { |
| 270 | struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; |
Peter Zijlstra | 96681fc | 2010-10-19 14:55:33 +0200 | [diff] [blame] | 271 | int node = cpu_to_node(cpu); |
Yan, Zheng | 3569c0d | 2015-05-06 15:33:50 -0400 | [diff] [blame] | 272 | int max; |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 273 | void *buffer, *ibuffer; |
Peter Zijlstra | 5ee25c8 | 2010-10-19 14:15:04 +0200 | [diff] [blame] | 274 | |
| 275 | if (!x86_pmu.pebs) |
| 276 | return 0; |
| 277 | |
Jiri Olsa | e72daf3 | 2016-03-01 20:03:52 +0100 | [diff] [blame] | 278 | buffer = kzalloc_node(x86_pmu.pebs_buffer_size, GFP_KERNEL, node); |
Peter Zijlstra | 5ee25c8 | 2010-10-19 14:15:04 +0200 | [diff] [blame] | 279 | if (unlikely(!buffer)) |
| 280 | return -ENOMEM; |
| 281 | |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 282 | /* |
| 283 | * HSW+ already provides us the eventing ip; no need to allocate this |
| 284 | * buffer then. |
| 285 | */ |
| 286 | if (x86_pmu.intel_cap.pebs_format < 2) { |
| 287 | ibuffer = kzalloc_node(PEBS_FIXUP_SIZE, GFP_KERNEL, node); |
| 288 | if (!ibuffer) { |
| 289 | kfree(buffer); |
| 290 | return -ENOMEM; |
| 291 | } |
| 292 | per_cpu(insn_buffer, cpu) = ibuffer; |
| 293 | } |
| 294 | |
Jiri Olsa | e72daf3 | 2016-03-01 20:03:52 +0100 | [diff] [blame] | 295 | max = x86_pmu.pebs_buffer_size / x86_pmu.pebs_record_size; |
Peter Zijlstra | 5ee25c8 | 2010-10-19 14:15:04 +0200 | [diff] [blame] | 296 | |
| 297 | ds->pebs_buffer_base = (u64)(unsigned long)buffer; |
| 298 | ds->pebs_index = ds->pebs_buffer_base; |
| 299 | ds->pebs_absolute_maximum = ds->pebs_buffer_base + |
| 300 | max * x86_pmu.pebs_record_size; |
| 301 | |
Peter Zijlstra | 5ee25c8 | 2010-10-19 14:15:04 +0200 | [diff] [blame] | 302 | return 0; |
| 303 | } |
| 304 | |
Peter Zijlstra | b39f88a | 2010-10-19 14:08:29 +0200 | [diff] [blame] | 305 | static void release_pebs_buffer(int cpu) |
| 306 | { |
| 307 | struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; |
| 308 | |
| 309 | if (!ds || !x86_pmu.pebs) |
| 310 | return; |
| 311 | |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 312 | kfree(per_cpu(insn_buffer, cpu)); |
| 313 | per_cpu(insn_buffer, cpu) = NULL; |
| 314 | |
Peter Zijlstra | b39f88a | 2010-10-19 14:08:29 +0200 | [diff] [blame] | 315 | kfree((void *)(unsigned long)ds->pebs_buffer_base); |
| 316 | ds->pebs_buffer_base = 0; |
| 317 | } |
| 318 | |
Peter Zijlstra | 5ee25c8 | 2010-10-19 14:15:04 +0200 | [diff] [blame] | 319 | static int alloc_bts_buffer(int cpu) |
| 320 | { |
| 321 | struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; |
Peter Zijlstra | 96681fc | 2010-10-19 14:55:33 +0200 | [diff] [blame] | 322 | int node = cpu_to_node(cpu); |
Peter Zijlstra | 5ee25c8 | 2010-10-19 14:15:04 +0200 | [diff] [blame] | 323 | int max, thresh; |
| 324 | void *buffer; |
| 325 | |
| 326 | if (!x86_pmu.bts) |
| 327 | return 0; |
| 328 | |
David Rientjes | 4485154 | 2014-06-30 16:04:08 -0700 | [diff] [blame] | 329 | buffer = kzalloc_node(BTS_BUFFER_SIZE, GFP_KERNEL | __GFP_NOWARN, node); |
| 330 | if (unlikely(!buffer)) { |
| 331 | WARN_ONCE(1, "%s: BTS buffer allocation failure\n", __func__); |
Peter Zijlstra | 5ee25c8 | 2010-10-19 14:15:04 +0200 | [diff] [blame] | 332 | return -ENOMEM; |
David Rientjes | 4485154 | 2014-06-30 16:04:08 -0700 | [diff] [blame] | 333 | } |
Peter Zijlstra | 5ee25c8 | 2010-10-19 14:15:04 +0200 | [diff] [blame] | 334 | |
| 335 | max = BTS_BUFFER_SIZE / BTS_RECORD_SIZE; |
| 336 | thresh = max / 16; |
| 337 | |
| 338 | ds->bts_buffer_base = (u64)(unsigned long)buffer; |
| 339 | ds->bts_index = ds->bts_buffer_base; |
| 340 | ds->bts_absolute_maximum = ds->bts_buffer_base + |
| 341 | max * BTS_RECORD_SIZE; |
| 342 | ds->bts_interrupt_threshold = ds->bts_absolute_maximum - |
| 343 | thresh * BTS_RECORD_SIZE; |
| 344 | |
| 345 | return 0; |
| 346 | } |
| 347 | |
Peter Zijlstra | b39f88a | 2010-10-19 14:08:29 +0200 | [diff] [blame] | 348 | static void release_bts_buffer(int cpu) |
| 349 | { |
| 350 | struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; |
| 351 | |
| 352 | if (!ds || !x86_pmu.bts) |
| 353 | return; |
| 354 | |
| 355 | kfree((void *)(unsigned long)ds->bts_buffer_base); |
| 356 | ds->bts_buffer_base = 0; |
| 357 | } |
| 358 | |
Peter Zijlstra | 65af94b | 2010-10-19 14:37:23 +0200 | [diff] [blame] | 359 | static int alloc_ds_buffer(int cpu) |
| 360 | { |
Peter Zijlstra | 96681fc | 2010-10-19 14:55:33 +0200 | [diff] [blame] | 361 | int node = cpu_to_node(cpu); |
Peter Zijlstra | 65af94b | 2010-10-19 14:37:23 +0200 | [diff] [blame] | 362 | struct debug_store *ds; |
| 363 | |
Joe Perches | 7bfb7e6 | 2013-08-29 13:59:17 -0700 | [diff] [blame] | 364 | ds = kzalloc_node(sizeof(*ds), GFP_KERNEL, node); |
Peter Zijlstra | 65af94b | 2010-10-19 14:37:23 +0200 | [diff] [blame] | 365 | if (unlikely(!ds)) |
| 366 | return -ENOMEM; |
| 367 | |
| 368 | per_cpu(cpu_hw_events, cpu).ds = ds; |
| 369 | |
| 370 | return 0; |
| 371 | } |
| 372 | |
| 373 | static void release_ds_buffer(int cpu) |
| 374 | { |
| 375 | struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; |
| 376 | |
| 377 | if (!ds) |
| 378 | return; |
| 379 | |
| 380 | per_cpu(cpu_hw_events, cpu).ds = NULL; |
| 381 | kfree(ds); |
| 382 | } |
| 383 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 384 | void release_ds_buffers(void) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 385 | { |
| 386 | int cpu; |
| 387 | |
| 388 | if (!x86_pmu.bts && !x86_pmu.pebs) |
| 389 | return; |
| 390 | |
| 391 | get_online_cpus(); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 392 | for_each_online_cpu(cpu) |
| 393 | fini_debug_store_on_cpu(cpu); |
| 394 | |
| 395 | for_each_possible_cpu(cpu) { |
Peter Zijlstra | b39f88a | 2010-10-19 14:08:29 +0200 | [diff] [blame] | 396 | release_pebs_buffer(cpu); |
| 397 | release_bts_buffer(cpu); |
Peter Zijlstra | 65af94b | 2010-10-19 14:37:23 +0200 | [diff] [blame] | 398 | release_ds_buffer(cpu); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 399 | } |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 400 | put_online_cpus(); |
| 401 | } |
| 402 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 403 | void reserve_ds_buffers(void) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 404 | { |
Peter Zijlstra | 6809b6e | 2010-10-19 14:22:50 +0200 | [diff] [blame] | 405 | int bts_err = 0, pebs_err = 0; |
| 406 | int cpu; |
| 407 | |
| 408 | x86_pmu.bts_active = 0; |
| 409 | x86_pmu.pebs_active = 0; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 410 | |
| 411 | if (!x86_pmu.bts && !x86_pmu.pebs) |
Peter Zijlstra | f80c9e3 | 2010-10-19 14:50:02 +0200 | [diff] [blame] | 412 | return; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 413 | |
Peter Zijlstra | 6809b6e | 2010-10-19 14:22:50 +0200 | [diff] [blame] | 414 | if (!x86_pmu.bts) |
| 415 | bts_err = 1; |
| 416 | |
| 417 | if (!x86_pmu.pebs) |
| 418 | pebs_err = 1; |
| 419 | |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 420 | get_online_cpus(); |
| 421 | |
| 422 | for_each_possible_cpu(cpu) { |
Peter Zijlstra | 6809b6e | 2010-10-19 14:22:50 +0200 | [diff] [blame] | 423 | if (alloc_ds_buffer(cpu)) { |
| 424 | bts_err = 1; |
| 425 | pebs_err = 1; |
| 426 | } |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 427 | |
Peter Zijlstra | 6809b6e | 2010-10-19 14:22:50 +0200 | [diff] [blame] | 428 | if (!bts_err && alloc_bts_buffer(cpu)) |
| 429 | bts_err = 1; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 430 | |
Peter Zijlstra | 6809b6e | 2010-10-19 14:22:50 +0200 | [diff] [blame] | 431 | if (!pebs_err && alloc_pebs_buffer(cpu)) |
| 432 | pebs_err = 1; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 433 | |
Peter Zijlstra | 6809b6e | 2010-10-19 14:22:50 +0200 | [diff] [blame] | 434 | if (bts_err && pebs_err) |
| 435 | break; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 436 | } |
| 437 | |
Peter Zijlstra | 6809b6e | 2010-10-19 14:22:50 +0200 | [diff] [blame] | 438 | if (bts_err) { |
| 439 | for_each_possible_cpu(cpu) |
| 440 | release_bts_buffer(cpu); |
| 441 | } |
| 442 | |
| 443 | if (pebs_err) { |
| 444 | for_each_possible_cpu(cpu) |
| 445 | release_pebs_buffer(cpu); |
| 446 | } |
| 447 | |
| 448 | if (bts_err && pebs_err) { |
| 449 | for_each_possible_cpu(cpu) |
| 450 | release_ds_buffer(cpu); |
| 451 | } else { |
| 452 | if (x86_pmu.bts && !bts_err) |
| 453 | x86_pmu.bts_active = 1; |
| 454 | |
| 455 | if (x86_pmu.pebs && !pebs_err) |
| 456 | x86_pmu.pebs_active = 1; |
| 457 | |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 458 | for_each_online_cpu(cpu) |
| 459 | init_debug_store_on_cpu(cpu); |
| 460 | } |
| 461 | |
| 462 | put_online_cpus(); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | /* |
| 466 | * BTS |
| 467 | */ |
| 468 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 469 | struct event_constraint bts_constraint = |
Robert Richter | 15c7ad5 | 2012-06-20 20:46:33 +0200 | [diff] [blame] | 470 | EVENT_CONSTRAINT(0, 1ULL << INTEL_PMC_IDX_FIXED_BTS, 0); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 471 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 472 | void intel_pmu_enable_bts(u64 config) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 473 | { |
| 474 | unsigned long debugctlmsr; |
| 475 | |
| 476 | debugctlmsr = get_debugctlmsr(); |
| 477 | |
Peter Zijlstra | 7c5ecaf | 2010-03-25 14:51:49 +0100 | [diff] [blame] | 478 | debugctlmsr |= DEBUGCTLMSR_TR; |
| 479 | debugctlmsr |= DEBUGCTLMSR_BTS; |
Alexander Shishkin | 8062382 | 2015-01-30 12:40:35 +0200 | [diff] [blame] | 480 | if (config & ARCH_PERFMON_EVENTSEL_INT) |
| 481 | debugctlmsr |= DEBUGCTLMSR_BTINT; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 482 | |
| 483 | if (!(config & ARCH_PERFMON_EVENTSEL_OS)) |
Peter Zijlstra | 7c5ecaf | 2010-03-25 14:51:49 +0100 | [diff] [blame] | 484 | debugctlmsr |= DEBUGCTLMSR_BTS_OFF_OS; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 485 | |
| 486 | if (!(config & ARCH_PERFMON_EVENTSEL_USR)) |
Peter Zijlstra | 7c5ecaf | 2010-03-25 14:51:49 +0100 | [diff] [blame] | 487 | debugctlmsr |= DEBUGCTLMSR_BTS_OFF_USR; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 488 | |
| 489 | update_debugctlmsr(debugctlmsr); |
| 490 | } |
| 491 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 492 | void intel_pmu_disable_bts(void) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 493 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 494 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 495 | unsigned long debugctlmsr; |
| 496 | |
| 497 | if (!cpuc->ds) |
| 498 | return; |
| 499 | |
| 500 | debugctlmsr = get_debugctlmsr(); |
| 501 | |
| 502 | debugctlmsr &= |
Peter Zijlstra | 7c5ecaf | 2010-03-25 14:51:49 +0100 | [diff] [blame] | 503 | ~(DEBUGCTLMSR_TR | DEBUGCTLMSR_BTS | DEBUGCTLMSR_BTINT | |
| 504 | DEBUGCTLMSR_BTS_OFF_OS | DEBUGCTLMSR_BTS_OFF_USR); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 505 | |
| 506 | update_debugctlmsr(debugctlmsr); |
| 507 | } |
| 508 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 509 | int intel_pmu_drain_bts_buffer(void) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 510 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 511 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 512 | struct debug_store *ds = cpuc->ds; |
| 513 | struct bts_record { |
| 514 | u64 from; |
| 515 | u64 to; |
| 516 | u64 flags; |
| 517 | }; |
Robert Richter | 15c7ad5 | 2012-06-20 20:46:33 +0200 | [diff] [blame] | 518 | struct perf_event *event = cpuc->events[INTEL_PMC_IDX_FIXED_BTS]; |
Alexander Shishkin | a09d31f4 | 2015-08-31 17:09:27 +0300 | [diff] [blame] | 519 | struct bts_record *at, *base, *top; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 520 | struct perf_output_handle handle; |
| 521 | struct perf_event_header header; |
| 522 | struct perf_sample_data data; |
Alexander Shishkin | a09d31f4 | 2015-08-31 17:09:27 +0300 | [diff] [blame] | 523 | unsigned long skip = 0; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 524 | struct pt_regs regs; |
| 525 | |
| 526 | if (!event) |
Stephane Eranian | b0b2072 | 2010-09-10 13:28:01 +0200 | [diff] [blame] | 527 | return 0; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 528 | |
Peter Zijlstra | 6809b6e | 2010-10-19 14:22:50 +0200 | [diff] [blame] | 529 | if (!x86_pmu.bts_active) |
Stephane Eranian | b0b2072 | 2010-09-10 13:28:01 +0200 | [diff] [blame] | 530 | return 0; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 531 | |
Alexander Shishkin | a09d31f4 | 2015-08-31 17:09:27 +0300 | [diff] [blame] | 532 | base = (struct bts_record *)(unsigned long)ds->bts_buffer_base; |
| 533 | top = (struct bts_record *)(unsigned long)ds->bts_index; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 534 | |
Alexander Shishkin | a09d31f4 | 2015-08-31 17:09:27 +0300 | [diff] [blame] | 535 | if (top <= base) |
Stephane Eranian | b0b2072 | 2010-09-10 13:28:01 +0200 | [diff] [blame] | 536 | return 0; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 537 | |
Stephane Eranian | 0e48026 | 2013-03-19 16:10:38 +0100 | [diff] [blame] | 538 | memset(®s, 0, sizeof(regs)); |
| 539 | |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 540 | ds->bts_index = ds->bts_buffer_base; |
| 541 | |
Robert Richter | fd0d000 | 2012-04-02 20:19:08 +0200 | [diff] [blame] | 542 | perf_sample_data_init(&data, 0, event->hw.last_period); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 543 | |
| 544 | /* |
Alexander Shishkin | a09d31f4 | 2015-08-31 17:09:27 +0300 | [diff] [blame] | 545 | * BTS leaks kernel addresses in branches across the cpl boundary, |
| 546 | * such as traps or system calls, so unless the user is asking for |
| 547 | * kernel tracing (and right now it's not possible), we'd need to |
| 548 | * filter them out. But first we need to count how many of those we |
| 549 | * have in the current batch. This is an extra O(n) pass, however, |
| 550 | * it's much faster than the other one especially considering that |
| 551 | * n <= 2560 (BTS_BUFFER_SIZE / BTS_RECORD_SIZE * 15/16; see the |
| 552 | * alloc_bts_buffer()). |
| 553 | */ |
| 554 | for (at = base; at < top; at++) { |
| 555 | /* |
| 556 | * Note that right now *this* BTS code only works if |
| 557 | * attr::exclude_kernel is set, but let's keep this extra |
| 558 | * check here in case that changes. |
| 559 | */ |
| 560 | if (event->attr.exclude_kernel && |
| 561 | (kernel_ip(at->from) || kernel_ip(at->to))) |
| 562 | skip++; |
| 563 | } |
| 564 | |
| 565 | /* |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 566 | * Prepare a generic sample, i.e. fill in the invariant fields. |
| 567 | * We will overwrite the from and to address before we output |
| 568 | * the sample. |
| 569 | */ |
Peter Zijlstra | e8d8a90 | 2016-03-18 17:31:27 +0100 | [diff] [blame] | 570 | rcu_read_lock(); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 571 | perf_prepare_sample(&header, &data, event, ®s); |
| 572 | |
Alexander Shishkin | a09d31f4 | 2015-08-31 17:09:27 +0300 | [diff] [blame] | 573 | if (perf_output_begin(&handle, event, header.size * |
| 574 | (top - base - skip))) |
Peter Zijlstra | e8d8a90 | 2016-03-18 17:31:27 +0100 | [diff] [blame] | 575 | goto unlock; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 576 | |
Alexander Shishkin | a09d31f4 | 2015-08-31 17:09:27 +0300 | [diff] [blame] | 577 | for (at = base; at < top; at++) { |
| 578 | /* Filter out any records that contain kernel addresses. */ |
| 579 | if (event->attr.exclude_kernel && |
| 580 | (kernel_ip(at->from) || kernel_ip(at->to))) |
| 581 | continue; |
| 582 | |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 583 | data.ip = at->from; |
| 584 | data.addr = at->to; |
| 585 | |
| 586 | perf_output_sample(&handle, &header, &data, event); |
| 587 | } |
| 588 | |
| 589 | perf_output_end(&handle); |
| 590 | |
| 591 | /* There's new data available. */ |
| 592 | event->hw.interrupts++; |
| 593 | event->pending_kill = POLL_IN; |
Peter Zijlstra | e8d8a90 | 2016-03-18 17:31:27 +0100 | [diff] [blame] | 594 | unlock: |
| 595 | rcu_read_unlock(); |
Stephane Eranian | b0b2072 | 2010-09-10 13:28:01 +0200 | [diff] [blame] | 596 | return 1; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 597 | } |
| 598 | |
Yan, Zheng | 9c964ef | 2015-05-06 15:33:51 -0400 | [diff] [blame] | 599 | static inline void intel_pmu_drain_pebs_buffer(void) |
| 600 | { |
| 601 | struct pt_regs regs; |
| 602 | |
| 603 | x86_pmu.drain_pebs(®s); |
| 604 | } |
| 605 | |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 606 | /* |
| 607 | * PEBS |
| 608 | */ |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 609 | struct event_constraint intel_core2_pebs_event_constraints[] = { |
Andi Kleen | af4bdcf | 2014-09-24 07:34:48 -0700 | [diff] [blame] | 610 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */ |
| 611 | INTEL_FLAGS_UEVENT_CONSTRAINT(0xfec1, 0x1), /* X87_OPS_RETIRED.ANY */ |
| 612 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* BR_INST_RETIRED.MISPRED */ |
| 613 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x1fc7, 0x1), /* SIMD_INST_RETURED.ANY */ |
| 614 | INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */ |
Peter Zijlstra | 517e634 | 2015-04-11 12:16:22 +0200 | [diff] [blame] | 615 | /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */ |
| 616 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x01), |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 617 | EVENT_CONSTRAINT_END |
| 618 | }; |
| 619 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 620 | struct event_constraint intel_atom_pebs_event_constraints[] = { |
Andi Kleen | af4bdcf | 2014-09-24 07:34:48 -0700 | [diff] [blame] | 621 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */ |
| 622 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* MISPREDICTED_BRANCH_RETIRED */ |
| 623 | INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */ |
Peter Zijlstra | 517e634 | 2015-04-11 12:16:22 +0200 | [diff] [blame] | 624 | /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */ |
| 625 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x01), |
Stephane Eranian | 673d188 | 2015-12-03 21:03:10 +0100 | [diff] [blame] | 626 | /* Allow all events as PEBS with no flags */ |
| 627 | INTEL_ALL_EVENT_CONSTRAINT(0, 0x1), |
Stephane Eranian | 17e3162 | 2011-03-02 17:05:01 +0200 | [diff] [blame] | 628 | EVENT_CONSTRAINT_END |
| 629 | }; |
| 630 | |
Yan, Zheng | 1fa6418 | 2013-07-18 17:02:24 +0800 | [diff] [blame] | 631 | struct event_constraint intel_slm_pebs_event_constraints[] = { |
Kan Liang | 3363673 | 2015-01-12 17:42:21 +0000 | [diff] [blame] | 632 | /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */ |
| 633 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x1), |
Andi Kleen | 86a0446 | 2014-08-11 21:27:10 +0200 | [diff] [blame] | 634 | /* Allow all events as PEBS with no flags */ |
| 635 | INTEL_ALL_EVENT_CONSTRAINT(0, 0x1), |
Yan, Zheng | 1fa6418 | 2013-07-18 17:02:24 +0800 | [diff] [blame] | 636 | EVENT_CONSTRAINT_END |
| 637 | }; |
| 638 | |
Kan Liang | 8b92c3a | 2016-04-15 00:42:47 -0700 | [diff] [blame] | 639 | struct event_constraint intel_glm_pebs_event_constraints[] = { |
| 640 | /* Allow all events as PEBS with no flags */ |
| 641 | INTEL_ALL_EVENT_CONSTRAINT(0, 0x1), |
| 642 | EVENT_CONSTRAINT_END |
| 643 | }; |
| 644 | |
Kan Liang | dd0b06b | 2017-07-12 09:44:23 -0400 | [diff] [blame] | 645 | struct event_constraint intel_glp_pebs_event_constraints[] = { |
| 646 | /* Allow all events as PEBS with no flags */ |
| 647 | INTEL_ALL_EVENT_CONSTRAINT(0, 0xf), |
| 648 | EVENT_CONSTRAINT_END |
| 649 | }; |
| 650 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 651 | struct event_constraint intel_nehalem_pebs_event_constraints[] = { |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 652 | INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */ |
Andi Kleen | af4bdcf | 2014-09-24 07:34:48 -0700 | [diff] [blame] | 653 | INTEL_FLAGS_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */ |
| 654 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */ |
| 655 | INTEL_FLAGS_EVENT_CONSTRAINT(0xc0, 0xf), /* INST_RETIRED.ANY */ |
Lin Ming | 7d5d02d | 2011-03-09 23:21:29 +0800 | [diff] [blame] | 656 | INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */ |
Andi Kleen | af4bdcf | 2014-09-24 07:34:48 -0700 | [diff] [blame] | 657 | INTEL_FLAGS_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */ |
| 658 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x02c5, 0xf), /* BR_MISP_RETIRED.NEAR_CALL */ |
| 659 | INTEL_FLAGS_EVENT_CONSTRAINT(0xc7, 0xf), /* SSEX_UOPS_RETIRED.* */ |
| 660 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */ |
| 661 | INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */ |
| 662 | INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */ |
Peter Zijlstra | 517e634 | 2015-04-11 12:16:22 +0200 | [diff] [blame] | 663 | /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */ |
| 664 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x0f), |
Stephane Eranian | 17e3162 | 2011-03-02 17:05:01 +0200 | [diff] [blame] | 665 | EVENT_CONSTRAINT_END |
| 666 | }; |
| 667 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 668 | struct event_constraint intel_westmere_pebs_event_constraints[] = { |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 669 | INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */ |
Andi Kleen | af4bdcf | 2014-09-24 07:34:48 -0700 | [diff] [blame] | 670 | INTEL_FLAGS_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */ |
| 671 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */ |
| 672 | INTEL_FLAGS_EVENT_CONSTRAINT(0xc0, 0xf), /* INSTR_RETIRED.* */ |
Lin Ming | 7d5d02d | 2011-03-09 23:21:29 +0800 | [diff] [blame] | 673 | INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */ |
Andi Kleen | af4bdcf | 2014-09-24 07:34:48 -0700 | [diff] [blame] | 674 | INTEL_FLAGS_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */ |
| 675 | INTEL_FLAGS_EVENT_CONSTRAINT(0xc5, 0xf), /* BR_MISP_RETIRED.* */ |
| 676 | INTEL_FLAGS_EVENT_CONSTRAINT(0xc7, 0xf), /* SSEX_UOPS_RETIRED.* */ |
| 677 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */ |
| 678 | INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */ |
| 679 | INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */ |
Peter Zijlstra | 517e634 | 2015-04-11 12:16:22 +0200 | [diff] [blame] | 680 | /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */ |
| 681 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x0f), |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 682 | EVENT_CONSTRAINT_END |
| 683 | }; |
| 684 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 685 | struct event_constraint intel_snb_pebs_event_constraints[] = { |
Andi Kleen | 0dbc947 | 2014-09-24 07:34:47 -0700 | [diff] [blame] | 686 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */ |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 687 | INTEL_PLD_CONSTRAINT(0x01cd, 0x8), /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */ |
Stephane Eranian | 9ad64c0 | 2013-01-24 16:10:34 +0100 | [diff] [blame] | 688 | INTEL_PST_CONSTRAINT(0x02cd, 0x8), /* MEM_TRANS_RETIRED.PRECISE_STORES */ |
Andi Kleen | 86a0446 | 2014-08-11 21:27:10 +0200 | [diff] [blame] | 689 | /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */ |
| 690 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf), |
Maria Dimakopoulou | b63b4b4 | 2014-11-17 20:07:00 +0100 | [diff] [blame] | 691 | INTEL_EXCLEVT_CONSTRAINT(0xd0, 0xf), /* MEM_UOP_RETIRED.* */ |
| 692 | INTEL_EXCLEVT_CONSTRAINT(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */ |
| 693 | INTEL_EXCLEVT_CONSTRAINT(0xd2, 0xf), /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.* */ |
| 694 | INTEL_EXCLEVT_CONSTRAINT(0xd3, 0xf), /* MEM_LOAD_UOPS_LLC_MISS_RETIRED.* */ |
Andi Kleen | 86a0446 | 2014-08-11 21:27:10 +0200 | [diff] [blame] | 695 | /* Allow all events as PEBS with no flags */ |
| 696 | INTEL_ALL_EVENT_CONSTRAINT(0, 0xf), |
Lin Ming | b06b3d4 | 2011-03-02 21:27:04 +0800 | [diff] [blame] | 697 | EVENT_CONSTRAINT_END |
| 698 | }; |
| 699 | |
Stephane Eranian | 20a36e3 | 2012-09-11 01:07:01 +0200 | [diff] [blame] | 700 | struct event_constraint intel_ivb_pebs_event_constraints[] = { |
Andi Kleen | 0dbc947 | 2014-09-24 07:34:47 -0700 | [diff] [blame] | 701 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */ |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 702 | INTEL_PLD_CONSTRAINT(0x01cd, 0x8), /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */ |
Stephane Eranian | 9ad64c0 | 2013-01-24 16:10:34 +0100 | [diff] [blame] | 703 | INTEL_PST_CONSTRAINT(0x02cd, 0x8), /* MEM_TRANS_RETIRED.PRECISE_STORES */ |
Andi Kleen | 86a0446 | 2014-08-11 21:27:10 +0200 | [diff] [blame] | 704 | /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */ |
| 705 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf), |
Andi Kleen | 7246976 | 2015-12-04 03:50:52 -0800 | [diff] [blame] | 706 | /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */ |
| 707 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2), |
Maria Dimakopoulou | b63b4b4 | 2014-11-17 20:07:00 +0100 | [diff] [blame] | 708 | INTEL_EXCLEVT_CONSTRAINT(0xd0, 0xf), /* MEM_UOP_RETIRED.* */ |
| 709 | INTEL_EXCLEVT_CONSTRAINT(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */ |
| 710 | INTEL_EXCLEVT_CONSTRAINT(0xd2, 0xf), /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.* */ |
| 711 | INTEL_EXCLEVT_CONSTRAINT(0xd3, 0xf), /* MEM_LOAD_UOPS_LLC_MISS_RETIRED.* */ |
Andi Kleen | 86a0446 | 2014-08-11 21:27:10 +0200 | [diff] [blame] | 712 | /* Allow all events as PEBS with no flags */ |
| 713 | INTEL_ALL_EVENT_CONSTRAINT(0, 0xf), |
Stephane Eranian | 20a36e3 | 2012-09-11 01:07:01 +0200 | [diff] [blame] | 714 | EVENT_CONSTRAINT_END |
| 715 | }; |
| 716 | |
Andi Kleen | 3044318 | 2013-06-17 17:36:49 -0700 | [diff] [blame] | 717 | struct event_constraint intel_hsw_pebs_event_constraints[] = { |
Andi Kleen | 0dbc947 | 2014-09-24 07:34:47 -0700 | [diff] [blame] | 718 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */ |
Andi Kleen | 86a0446 | 2014-08-11 21:27:10 +0200 | [diff] [blame] | 719 | INTEL_PLD_CONSTRAINT(0x01cd, 0xf), /* MEM_TRANS_RETIRED.* */ |
| 720 | /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */ |
| 721 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf), |
Andi Kleen | 7246976 | 2015-12-04 03:50:52 -0800 | [diff] [blame] | 722 | /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */ |
| 723 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2), |
Andi Kleen | 86a0446 | 2014-08-11 21:27:10 +0200 | [diff] [blame] | 724 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA(0x01c2, 0xf), /* UOPS_RETIRED.ALL */ |
Maria Dimakopoulou | b63b4b4 | 2014-11-17 20:07:00 +0100 | [diff] [blame] | 725 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x11d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_LOADS */ |
| 726 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x21d0, 0xf), /* MEM_UOPS_RETIRED.LOCK_LOADS */ |
| 727 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x41d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_LOADS */ |
| 728 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x81d0, 0xf), /* MEM_UOPS_RETIRED.ALL_LOADS */ |
| 729 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x12d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_STORES */ |
| 730 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x42d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_STORES */ |
| 731 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x82d0, 0xf), /* MEM_UOPS_RETIRED.ALL_STORES */ |
| 732 | INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */ |
| 733 | INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd2, 0xf), /* MEM_LOAD_UOPS_L3_HIT_RETIRED.* */ |
| 734 | INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd3, 0xf), /* MEM_LOAD_UOPS_L3_MISS_RETIRED.* */ |
Andi Kleen | 86a0446 | 2014-08-11 21:27:10 +0200 | [diff] [blame] | 735 | /* Allow all events as PEBS with no flags */ |
| 736 | INTEL_ALL_EVENT_CONSTRAINT(0, 0xf), |
Andi Kleen | 3044318 | 2013-06-17 17:36:49 -0700 | [diff] [blame] | 737 | EVENT_CONSTRAINT_END |
| 738 | }; |
| 739 | |
Stephane Eranian | b3e6246 | 2016-03-03 20:50:42 +0100 | [diff] [blame] | 740 | struct event_constraint intel_bdw_pebs_event_constraints[] = { |
| 741 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */ |
| 742 | INTEL_PLD_CONSTRAINT(0x01cd, 0xf), /* MEM_TRANS_RETIRED.* */ |
| 743 | /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */ |
| 744 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf), |
| 745 | /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */ |
| 746 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2), |
| 747 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA(0x01c2, 0xf), /* UOPS_RETIRED.ALL */ |
| 748 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x11d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_LOADS */ |
| 749 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x21d0, 0xf), /* MEM_UOPS_RETIRED.LOCK_LOADS */ |
| 750 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x41d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_LOADS */ |
| 751 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x81d0, 0xf), /* MEM_UOPS_RETIRED.ALL_LOADS */ |
| 752 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x12d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_STORES */ |
| 753 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x42d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_STORES */ |
| 754 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x82d0, 0xf), /* MEM_UOPS_RETIRED.ALL_STORES */ |
| 755 | INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */ |
| 756 | INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd2, 0xf), /* MEM_LOAD_UOPS_L3_HIT_RETIRED.* */ |
| 757 | INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd3, 0xf), /* MEM_LOAD_UOPS_L3_MISS_RETIRED.* */ |
| 758 | /* Allow all events as PEBS with no flags */ |
| 759 | INTEL_ALL_EVENT_CONSTRAINT(0, 0xf), |
| 760 | EVENT_CONSTRAINT_END |
| 761 | }; |
| 762 | |
| 763 | |
Andi Kleen | 9a92e16 | 2015-05-10 12:22:44 -0700 | [diff] [blame] | 764 | struct event_constraint intel_skl_pebs_event_constraints[] = { |
| 765 | INTEL_FLAGS_UEVENT_CONSTRAINT(0x1c0, 0x2), /* INST_RETIRED.PREC_DIST */ |
Andi Kleen | 7246976 | 2015-12-04 03:50:52 -0800 | [diff] [blame] | 766 | /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */ |
| 767 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2), |
Andi Kleen | 442f5c7 | 2015-12-04 03:50:32 -0800 | [diff] [blame] | 768 | /* INST_RETIRED.TOTAL_CYCLES_PS (inv=1, cmask=16) (cycles:p). */ |
| 769 | INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x0f), |
Andi Kleen | 9a92e16 | 2015-05-10 12:22:44 -0700 | [diff] [blame] | 770 | INTEL_PLD_CONSTRAINT(0x1cd, 0xf), /* MEM_TRANS_RETIRED.* */ |
| 771 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x11d0, 0xf), /* MEM_INST_RETIRED.STLB_MISS_LOADS */ |
| 772 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x12d0, 0xf), /* MEM_INST_RETIRED.STLB_MISS_STORES */ |
| 773 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x21d0, 0xf), /* MEM_INST_RETIRED.LOCK_LOADS */ |
| 774 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x22d0, 0xf), /* MEM_INST_RETIRED.LOCK_STORES */ |
| 775 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x41d0, 0xf), /* MEM_INST_RETIRED.SPLIT_LOADS */ |
| 776 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x42d0, 0xf), /* MEM_INST_RETIRED.SPLIT_STORES */ |
| 777 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x81d0, 0xf), /* MEM_INST_RETIRED.ALL_LOADS */ |
| 778 | INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x82d0, 0xf), /* MEM_INST_RETIRED.ALL_STORES */ |
| 779 | INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd1, 0xf), /* MEM_LOAD_RETIRED.* */ |
| 780 | INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd2, 0xf), /* MEM_LOAD_L3_HIT_RETIRED.* */ |
| 781 | INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd3, 0xf), /* MEM_LOAD_L3_MISS_RETIRED.* */ |
| 782 | /* Allow all events as PEBS with no flags */ |
| 783 | INTEL_ALL_EVENT_CONSTRAINT(0, 0xf), |
| 784 | EVENT_CONSTRAINT_END |
| 785 | }; |
| 786 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 787 | struct event_constraint *intel_pebs_constraints(struct perf_event *event) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 788 | { |
| 789 | struct event_constraint *c; |
| 790 | |
Peter Zijlstra | ab60834 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 791 | if (!event->attr.precise_ip) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 792 | return NULL; |
| 793 | |
| 794 | if (x86_pmu.pebs_constraints) { |
| 795 | for_each_event_constraint(c, x86_pmu.pebs_constraints) { |
Stephane Eranian | 9fac2cf | 2013-01-24 16:10:27 +0100 | [diff] [blame] | 796 | if ((event->hw.config & c->cmask) == c->code) { |
| 797 | event->hw.flags |= c->flags; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 798 | return c; |
Stephane Eranian | 9fac2cf | 2013-01-24 16:10:27 +0100 | [diff] [blame] | 799 | } |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 800 | } |
| 801 | } |
| 802 | |
| 803 | return &emptyconstraint; |
| 804 | } |
| 805 | |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 806 | /* |
| 807 | * We need the sched_task callback even for per-cpu events when we use |
| 808 | * the large interrupt threshold, such that we can provide PID and TID |
| 809 | * to PEBS samples. |
| 810 | */ |
| 811 | static inline bool pebs_needs_sched_cb(struct cpu_hw_events *cpuc) |
Yan, Zheng | 3569c0d | 2015-05-06 15:33:50 -0400 | [diff] [blame] | 812 | { |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 813 | return cpuc->n_pebs && (cpuc->n_pebs == cpuc->n_large_pebs); |
| 814 | } |
| 815 | |
Jiri Olsa | df6c3db | 2017-07-19 09:52:47 +0200 | [diff] [blame] | 816 | void intel_pmu_pebs_sched_task(struct perf_event_context *ctx, bool sched_in) |
| 817 | { |
| 818 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
| 819 | |
| 820 | if (!sched_in && pebs_needs_sched_cb(cpuc)) |
| 821 | intel_pmu_drain_pebs_buffer(); |
| 822 | } |
| 823 | |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 824 | static inline void pebs_update_threshold(struct cpu_hw_events *cpuc) |
| 825 | { |
| 826 | struct debug_store *ds = cpuc->ds; |
| 827 | u64 threshold; |
| 828 | |
| 829 | if (cpuc->n_pebs == cpuc->n_large_pebs) { |
| 830 | threshold = ds->pebs_absolute_maximum - |
| 831 | x86_pmu.max_pebs_events * x86_pmu.pebs_record_size; |
| 832 | } else { |
| 833 | threshold = ds->pebs_buffer_base + x86_pmu.pebs_record_size; |
| 834 | } |
| 835 | |
| 836 | ds->pebs_interrupt_threshold = threshold; |
| 837 | } |
| 838 | |
| 839 | static void |
| 840 | pebs_update_state(bool needed_cb, struct cpu_hw_events *cpuc, struct pmu *pmu) |
| 841 | { |
Jiri Olsa | b6a32f0 | 2016-08-18 11:09:52 +0200 | [diff] [blame] | 842 | /* |
| 843 | * Make sure we get updated with the first PEBS |
| 844 | * event. It will trigger also during removal, but |
| 845 | * that does not hurt: |
| 846 | */ |
| 847 | bool update = cpuc->n_pebs == 1; |
| 848 | |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 849 | if (needed_cb != pebs_needs_sched_cb(cpuc)) { |
| 850 | if (!needed_cb) |
| 851 | perf_sched_cb_inc(pmu); |
| 852 | else |
| 853 | perf_sched_cb_dec(pmu); |
| 854 | |
Jiri Olsa | b6a32f0 | 2016-08-18 11:09:52 +0200 | [diff] [blame] | 855 | update = true; |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 856 | } |
Jiri Olsa | b6a32f0 | 2016-08-18 11:09:52 +0200 | [diff] [blame] | 857 | |
| 858 | if (update) |
| 859 | pebs_update_threshold(cpuc); |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 860 | } |
| 861 | |
Peter Zijlstra | 68f7082 | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 862 | void intel_pmu_pebs_add(struct perf_event *event) |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 863 | { |
| 864 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
| 865 | struct hw_perf_event *hwc = &event->hw; |
| 866 | bool needed_cb = pebs_needs_sched_cb(cpuc); |
| 867 | |
| 868 | cpuc->n_pebs++; |
| 869 | if (hwc->flags & PERF_X86_EVENT_FREERUNNING) |
| 870 | cpuc->n_large_pebs++; |
| 871 | |
| 872 | pebs_update_state(needed_cb, cpuc, event->ctx->pmu); |
Yan, Zheng | 3569c0d | 2015-05-06 15:33:50 -0400 | [diff] [blame] | 873 | } |
| 874 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 875 | void intel_pmu_pebs_enable(struct perf_event *event) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 876 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 877 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 878 | struct hw_perf_event *hwc = &event->hw; |
Yan, Zheng | 851559e | 2015-05-06 15:33:47 -0400 | [diff] [blame] | 879 | struct debug_store *ds = cpuc->ds; |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 880 | |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 881 | hwc->config &= ~ARCH_PERFMON_EVENTSEL_INT; |
| 882 | |
Peter Zijlstra | ad0e6cf | 2010-03-06 19:49:06 +0100 | [diff] [blame] | 883 | cpuc->pebs_enabled |= 1ULL << hwc->idx; |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 884 | |
| 885 | if (event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT) |
| 886 | cpuc->pebs_enabled |= 1ULL << (hwc->idx + 32); |
Stephane Eranian | 9ad64c0 | 2013-01-24 16:10:34 +0100 | [diff] [blame] | 887 | else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST) |
| 888 | cpuc->pebs_enabled |= 1ULL << 63; |
Yan, Zheng | 851559e | 2015-05-06 15:33:47 -0400 | [diff] [blame] | 889 | |
Yan, Zheng | 3569c0d | 2015-05-06 15:33:50 -0400 | [diff] [blame] | 890 | /* |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 891 | * Use auto-reload if possible to save a MSR write in the PMI. |
| 892 | * This must be done in pmu::start(), because PERF_EVENT_IOC_PERIOD. |
Yan, Zheng | 3569c0d | 2015-05-06 15:33:50 -0400 | [diff] [blame] | 893 | */ |
Yan, Zheng | 851559e | 2015-05-06 15:33:47 -0400 | [diff] [blame] | 894 | if (hwc->flags & PERF_X86_EVENT_AUTO_RELOAD) { |
| 895 | ds->pebs_event_reset[hwc->idx] = |
| 896 | (u64)(-hwc->sample_period) & x86_pmu.cntval_mask; |
Jiri Olsa | dc853e2 | 2017-07-14 18:35:51 +0200 | [diff] [blame] | 897 | } else { |
| 898 | ds->pebs_event_reset[hwc->idx] = 0; |
Yan, Zheng | 851559e | 2015-05-06 15:33:47 -0400 | [diff] [blame] | 899 | } |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 900 | } |
Yan, Zheng | 3569c0d | 2015-05-06 15:33:50 -0400 | [diff] [blame] | 901 | |
Peter Zijlstra | 68f7082 | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 902 | void intel_pmu_pebs_del(struct perf_event *event) |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 903 | { |
| 904 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
| 905 | struct hw_perf_event *hwc = &event->hw; |
| 906 | bool needed_cb = pebs_needs_sched_cb(cpuc); |
| 907 | |
| 908 | cpuc->n_pebs--; |
| 909 | if (hwc->flags & PERF_X86_EVENT_FREERUNNING) |
| 910 | cpuc->n_large_pebs--; |
| 911 | |
| 912 | pebs_update_state(needed_cb, cpuc, event->ctx->pmu); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 913 | } |
| 914 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 915 | void intel_pmu_pebs_disable(struct perf_event *event) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 916 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 917 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 918 | struct hw_perf_event *hwc = &event->hw; |
Liang, Kan | 2a853e1 | 2015-07-03 20:08:27 +0000 | [diff] [blame] | 919 | |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 920 | if (cpuc->n_pebs == cpuc->n_large_pebs) |
Liang, Kan | 2a853e1 | 2015-07-03 20:08:27 +0000 | [diff] [blame] | 921 | intel_pmu_drain_pebs_buffer(); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 922 | |
Peter Zijlstra | ad0e6cf | 2010-03-06 19:49:06 +0100 | [diff] [blame] | 923 | cpuc->pebs_enabled &= ~(1ULL << hwc->idx); |
Stephane Eranian | 983433b | 2013-06-21 16:20:41 +0200 | [diff] [blame] | 924 | |
Peter Zijlstra | b371b59 | 2015-05-21 10:57:13 +0200 | [diff] [blame] | 925 | if (event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT) |
Stephane Eranian | 983433b | 2013-06-21 16:20:41 +0200 | [diff] [blame] | 926 | cpuc->pebs_enabled &= ~(1ULL << (hwc->idx + 32)); |
Peter Zijlstra | b371b59 | 2015-05-21 10:57:13 +0200 | [diff] [blame] | 927 | else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST) |
Stephane Eranian | 983433b | 2013-06-21 16:20:41 +0200 | [diff] [blame] | 928 | cpuc->pebs_enabled &= ~(1ULL << 63); |
| 929 | |
Peter Zijlstra | 4807e3d | 2010-03-06 13:47:07 +0100 | [diff] [blame] | 930 | if (cpuc->enabled) |
Peter Zijlstra | ad0e6cf | 2010-03-06 19:49:06 +0100 | [diff] [blame] | 931 | wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 932 | |
| 933 | hwc->config |= ARCH_PERFMON_EVENTSEL_INT; |
| 934 | } |
| 935 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 936 | void intel_pmu_pebs_enable_all(void) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 937 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 938 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 939 | |
| 940 | if (cpuc->pebs_enabled) |
| 941 | wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled); |
| 942 | } |
| 943 | |
Kevin Winchester | de0428a | 2011-08-30 20:41:05 -0300 | [diff] [blame] | 944 | void intel_pmu_pebs_disable_all(void) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 945 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 946 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 947 | |
| 948 | if (cpuc->pebs_enabled) |
| 949 | wrmsrl(MSR_IA32_PEBS_ENABLE, 0); |
| 950 | } |
| 951 | |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 952 | static int intel_pmu_pebs_fixup_ip(struct pt_regs *regs) |
| 953 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 954 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 955 | unsigned long from = cpuc->lbr_entries[0].from; |
| 956 | unsigned long old_to, to = cpuc->lbr_entries[0].to; |
| 957 | unsigned long ip = regs->ip; |
Peter Zijlstra | 57d1c0c | 2011-10-07 13:36:40 +0200 | [diff] [blame] | 958 | int is_64bit = 0; |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 959 | void *kaddr; |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 960 | int size; |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 961 | |
Peter Zijlstra | 8db909a | 2010-03-03 17:07:40 +0100 | [diff] [blame] | 962 | /* |
| 963 | * We don't need to fixup if the PEBS assist is fault like |
| 964 | */ |
| 965 | if (!x86_pmu.intel_cap.pebs_trap) |
| 966 | return 1; |
| 967 | |
Peter Zijlstra | a562b18 | 2010-03-05 16:29:14 +0100 | [diff] [blame] | 968 | /* |
| 969 | * No LBR entry, no basic block, no rewinding |
| 970 | */ |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 971 | if (!cpuc->lbr_stack.nr || !from || !to) |
| 972 | return 0; |
| 973 | |
Peter Zijlstra | a562b18 | 2010-03-05 16:29:14 +0100 | [diff] [blame] | 974 | /* |
| 975 | * Basic blocks should never cross user/kernel boundaries |
| 976 | */ |
| 977 | if (kernel_ip(ip) != kernel_ip(to)) |
| 978 | return 0; |
| 979 | |
| 980 | /* |
| 981 | * unsigned math, either ip is before the start (impossible) or |
| 982 | * the basic block is larger than 1 page (sanity) |
| 983 | */ |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 984 | if ((ip - to) > PEBS_FIXUP_SIZE) |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 985 | return 0; |
| 986 | |
| 987 | /* |
| 988 | * We sampled a branch insn, rewind using the LBR stack |
| 989 | */ |
| 990 | if (ip == to) { |
Peter Zijlstra | d07bdfd | 2012-07-10 09:42:15 +0200 | [diff] [blame] | 991 | set_linear_ip(regs, from); |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 992 | return 1; |
| 993 | } |
| 994 | |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 995 | size = ip - to; |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 996 | if (!kernel_ip(ip)) { |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 997 | int bytes; |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 998 | u8 *buf = this_cpu_read(insn_buffer); |
| 999 | |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 1000 | /* 'size' must fit our buffer, see above */ |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 1001 | bytes = copy_from_user_nmi(buf, (void __user *)to, size); |
Peter Zijlstra | 0a19684 | 2013-10-30 21:16:22 +0100 | [diff] [blame] | 1002 | if (bytes != 0) |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 1003 | return 0; |
| 1004 | |
| 1005 | kaddr = buf; |
| 1006 | } else { |
| 1007 | kaddr = (void *)to; |
| 1008 | } |
| 1009 | |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 1010 | do { |
| 1011 | struct insn insn; |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 1012 | |
| 1013 | old_to = to; |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 1014 | |
Peter Zijlstra | 57d1c0c | 2011-10-07 13:36:40 +0200 | [diff] [blame] | 1015 | #ifdef CONFIG_X86_64 |
| 1016 | is_64bit = kernel_ip(to) || !test_thread_flag(TIF_IA32); |
| 1017 | #endif |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 1018 | insn_init(&insn, kaddr, size, is_64bit); |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 1019 | insn_get_length(&insn); |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 1020 | /* |
| 1021 | * Make sure there was not a problem decoding the |
| 1022 | * instruction and getting the length. This is |
| 1023 | * doubly important because we have an infinite |
| 1024 | * loop if insn.length=0. |
| 1025 | */ |
| 1026 | if (!insn.length) |
| 1027 | break; |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 1028 | |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 1029 | to += insn.length; |
Peter Zijlstra | 9536c8d | 2013-10-15 12:14:04 +0200 | [diff] [blame] | 1030 | kaddr += insn.length; |
Dave Hansen | 6ba48ff | 2014-11-14 07:39:57 -0800 | [diff] [blame] | 1031 | size -= insn.length; |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 1032 | } while (to < ip); |
| 1033 | |
| 1034 | if (to == ip) { |
Peter Zijlstra | d07bdfd | 2012-07-10 09:42:15 +0200 | [diff] [blame] | 1035 | set_linear_ip(regs, old_to); |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 1036 | return 1; |
| 1037 | } |
| 1038 | |
Peter Zijlstra | a562b18 | 2010-03-05 16:29:14 +0100 | [diff] [blame] | 1039 | /* |
| 1040 | * Even though we decoded the basic block, the instruction stream |
| 1041 | * never matched the given IP, either the TO or the IP got corrupted. |
| 1042 | */ |
Peter Zijlstra | ef21f68 | 2010-03-03 13:12:23 +0100 | [diff] [blame] | 1043 | return 0; |
| 1044 | } |
| 1045 | |
Andi Kleen | 2f7ebf2 | 2015-05-10 12:22:40 -0700 | [diff] [blame] | 1046 | static inline u64 intel_hsw_weight(struct pebs_record_skl *pebs) |
Andi Kleen | 748e86a | 2013-09-05 20:37:39 -0700 | [diff] [blame] | 1047 | { |
| 1048 | if (pebs->tsx_tuning) { |
| 1049 | union hsw_tsx_tuning tsx = { .value = pebs->tsx_tuning }; |
| 1050 | return tsx.cycles_last_block; |
| 1051 | } |
| 1052 | return 0; |
| 1053 | } |
| 1054 | |
Andi Kleen | 2f7ebf2 | 2015-05-10 12:22:40 -0700 | [diff] [blame] | 1055 | static inline u64 intel_hsw_transaction(struct pebs_record_skl *pebs) |
Andi Kleen | a405bad | 2013-09-20 07:40:40 -0700 | [diff] [blame] | 1056 | { |
| 1057 | u64 txn = (pebs->tsx_tuning & PEBS_HSW_TSX_FLAGS) >> 32; |
| 1058 | |
| 1059 | /* For RTM XABORTs also log the abort code from AX */ |
| 1060 | if ((txn & PERF_TXN_TRANSACTION) && (pebs->ax & 1)) |
| 1061 | txn |= ((pebs->ax >> 24) & 0xff) << PERF_TXN_ABORT_SHIFT; |
| 1062 | return txn; |
| 1063 | } |
| 1064 | |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1065 | static void setup_pebs_sample_data(struct perf_event *event, |
| 1066 | struct pt_regs *iregs, void *__pebs, |
| 1067 | struct perf_sample_data *data, |
| 1068 | struct pt_regs *regs) |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1069 | { |
Stephane Eranian | c8aab2e | 2014-08-11 21:27:13 +0200 | [diff] [blame] | 1070 | #define PERF_X86_EVENT_PEBS_HSW_PREC \ |
| 1071 | (PERF_X86_EVENT_PEBS_ST_HSW | \ |
| 1072 | PERF_X86_EVENT_PEBS_LD_HSW | \ |
| 1073 | PERF_X86_EVENT_PEBS_NA_HSW) |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1074 | /* |
Peter Zijlstra | d2beea4 | 2013-09-12 13:00:47 +0200 | [diff] [blame] | 1075 | * We cast to the biggest pebs_record but are careful not to |
| 1076 | * unconditionally access the 'extra' entries. |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1077 | */ |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1078 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Andi Kleen | 2f7ebf2 | 2015-05-10 12:22:40 -0700 | [diff] [blame] | 1079 | struct pebs_record_skl *pebs = __pebs; |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 1080 | u64 sample_type; |
Stephane Eranian | c8aab2e | 2014-08-11 21:27:13 +0200 | [diff] [blame] | 1081 | int fll, fst, dsrc; |
| 1082 | int fl = event->hw.flags; |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1083 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1084 | if (pebs == NULL) |
| 1085 | return; |
| 1086 | |
Stephane Eranian | c8aab2e | 2014-08-11 21:27:13 +0200 | [diff] [blame] | 1087 | sample_type = event->attr.sample_type; |
| 1088 | dsrc = sample_type & PERF_SAMPLE_DATA_SRC; |
| 1089 | |
| 1090 | fll = fl & PERF_X86_EVENT_PEBS_LDLAT; |
| 1091 | fst = fl & (PERF_X86_EVENT_PEBS_ST | PERF_X86_EVENT_PEBS_HSW_PREC); |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 1092 | |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1093 | perf_sample_data_init(data, 0, event->hw.last_period); |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1094 | |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1095 | data->period = event->hw.last_period; |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 1096 | |
| 1097 | /* |
Stephane Eranian | c8aab2e | 2014-08-11 21:27:13 +0200 | [diff] [blame] | 1098 | * Use latency for weight (only avail with PEBS-LL) |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 1099 | */ |
Stephane Eranian | c8aab2e | 2014-08-11 21:27:13 +0200 | [diff] [blame] | 1100 | if (fll && (sample_type & PERF_SAMPLE_WEIGHT)) |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1101 | data->weight = pebs->lat; |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 1102 | |
Stephane Eranian | c8aab2e | 2014-08-11 21:27:13 +0200 | [diff] [blame] | 1103 | /* |
| 1104 | * data.data_src encodes the data source |
| 1105 | */ |
| 1106 | if (dsrc) { |
| 1107 | u64 val = PERF_MEM_NA; |
| 1108 | if (fll) |
| 1109 | val = load_latency_data(pebs->dse); |
| 1110 | else if (fst && (fl & PERF_X86_EVENT_PEBS_HSW_PREC)) |
| 1111 | val = precise_datala_hsw(event, pebs->dse); |
| 1112 | else if (fst) |
| 1113 | val = precise_store_data(pebs->dse); |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1114 | data->data_src.val = val; |
Stephane Eranian | f20093e | 2013-01-24 16:10:32 +0100 | [diff] [blame] | 1115 | } |
| 1116 | |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1117 | /* |
Peter Zijlstra | b800058 | 2016-11-17 18:17:31 +0100 | [diff] [blame] | 1118 | * We use the interrupt regs as a base because the PEBS record does not |
| 1119 | * contain a full regs set, specifically it seems to lack segment |
| 1120 | * descriptors, which get used by things like user_mode(). |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1121 | * |
Peter Zijlstra | b800058 | 2016-11-17 18:17:31 +0100 | [diff] [blame] | 1122 | * In the simple case fix up only the IP for PERF_SAMPLE_IP. |
| 1123 | * |
| 1124 | * We must however always use BP,SP from iregs for the unwinder to stay |
| 1125 | * sane; the record BP,SP can point into thin air when the record is |
| 1126 | * from a previous PMI context or an (I)RET happend between the record |
| 1127 | * and PMI. |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1128 | */ |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1129 | *regs = *iregs; |
| 1130 | regs->flags = pebs->flags; |
| 1131 | set_linear_ip(regs, pebs->ip); |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1132 | |
Stephane Eranian | aea4855 | 2014-09-24 13:48:38 +0200 | [diff] [blame] | 1133 | if (sample_type & PERF_SAMPLE_REGS_INTR) { |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1134 | regs->ax = pebs->ax; |
| 1135 | regs->bx = pebs->bx; |
| 1136 | regs->cx = pebs->cx; |
| 1137 | regs->dx = pebs->dx; |
| 1138 | regs->si = pebs->si; |
| 1139 | regs->di = pebs->di; |
Stephane Eranian | aea4855 | 2014-09-24 13:48:38 +0200 | [diff] [blame] | 1140 | |
Peter Zijlstra | b800058 | 2016-11-17 18:17:31 +0100 | [diff] [blame] | 1141 | /* |
| 1142 | * Per the above; only set BP,SP if we don't need callchains. |
| 1143 | * |
| 1144 | * XXX: does this make sense? |
| 1145 | */ |
| 1146 | if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) { |
| 1147 | regs->bp = pebs->bp; |
| 1148 | regs->sp = pebs->sp; |
| 1149 | } |
| 1150 | |
| 1151 | /* |
| 1152 | * Preserve PERF_EFLAGS_VM from set_linear_ip(). |
| 1153 | */ |
| 1154 | regs->flags = pebs->flags | (regs->flags & PERF_EFLAGS_VM); |
Stephane Eranian | aea4855 | 2014-09-24 13:48:38 +0200 | [diff] [blame] | 1155 | #ifndef CONFIG_X86_32 |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1156 | regs->r8 = pebs->r8; |
| 1157 | regs->r9 = pebs->r9; |
| 1158 | regs->r10 = pebs->r10; |
| 1159 | regs->r11 = pebs->r11; |
| 1160 | regs->r12 = pebs->r12; |
| 1161 | regs->r13 = pebs->r13; |
| 1162 | regs->r14 = pebs->r14; |
| 1163 | regs->r15 = pebs->r15; |
Stephane Eranian | aea4855 | 2014-09-24 13:48:38 +0200 | [diff] [blame] | 1164 | #endif |
| 1165 | } |
| 1166 | |
Andi Kleen | 130768b | 2013-06-17 17:36:47 -0700 | [diff] [blame] | 1167 | if (event->attr.precise_ip > 1 && x86_pmu.intel_cap.pebs_format >= 2) { |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1168 | regs->ip = pebs->real_ip; |
| 1169 | regs->flags |= PERF_EFLAGS_EXACT; |
| 1170 | } else if (event->attr.precise_ip > 1 && intel_pmu_pebs_fixup_ip(regs)) |
| 1171 | regs->flags |= PERF_EFLAGS_EXACT; |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1172 | else |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1173 | regs->flags &= ~PERF_EFLAGS_EXACT; |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1174 | |
Stephane Eranian | c8aab2e | 2014-08-11 21:27:13 +0200 | [diff] [blame] | 1175 | if ((sample_type & PERF_SAMPLE_ADDR) && |
Peter Zijlstra | d2beea4 | 2013-09-12 13:00:47 +0200 | [diff] [blame] | 1176 | x86_pmu.intel_cap.pebs_format >= 1) |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1177 | data->addr = pebs->dla; |
Andi Kleen | f9134f3 | 2013-06-17 17:36:52 -0700 | [diff] [blame] | 1178 | |
Andi Kleen | a405bad | 2013-09-20 07:40:40 -0700 | [diff] [blame] | 1179 | if (x86_pmu.intel_cap.pebs_format >= 2) { |
| 1180 | /* Only set the TSX weight when no memory weight. */ |
Stephane Eranian | c8aab2e | 2014-08-11 21:27:13 +0200 | [diff] [blame] | 1181 | if ((sample_type & PERF_SAMPLE_WEIGHT) && !fll) |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1182 | data->weight = intel_hsw_weight(pebs); |
Andi Kleen | a405bad | 2013-09-20 07:40:40 -0700 | [diff] [blame] | 1183 | |
Stephane Eranian | c8aab2e | 2014-08-11 21:27:13 +0200 | [diff] [blame] | 1184 | if (sample_type & PERF_SAMPLE_TRANSACTION) |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1185 | data->txn = intel_hsw_transaction(pebs); |
Andi Kleen | a405bad | 2013-09-20 07:40:40 -0700 | [diff] [blame] | 1186 | } |
Andi Kleen | 748e86a | 2013-09-05 20:37:39 -0700 | [diff] [blame] | 1187 | |
Andi Kleen | 2f7ebf2 | 2015-05-10 12:22:40 -0700 | [diff] [blame] | 1188 | /* |
| 1189 | * v3 supplies an accurate time stamp, so we use that |
| 1190 | * for the time stamp. |
| 1191 | * |
| 1192 | * We can only do this for the default trace clock. |
| 1193 | */ |
| 1194 | if (x86_pmu.intel_cap.pebs_format >= 3 && |
| 1195 | event->attr.use_clockid == 0) |
| 1196 | data->time = native_sched_clock_from_tsc(pebs->tsc); |
| 1197 | |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 1198 | if (has_branch_stack(event)) |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1199 | data->br_stack = &cpuc->lbr_stack; |
| 1200 | } |
| 1201 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1202 | static inline void * |
| 1203 | get_next_pebs_record_by_bit(void *base, void *top, int bit) |
| 1204 | { |
| 1205 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
| 1206 | void *at; |
| 1207 | u64 pebs_status; |
| 1208 | |
Stephane Eranian | 1424a09 | 2015-12-03 23:33:18 +0100 | [diff] [blame] | 1209 | /* |
| 1210 | * fmt0 does not have a status bitfield (does not use |
| 1211 | * perf_record_nhm format) |
| 1212 | */ |
| 1213 | if (x86_pmu.intel_cap.pebs_format < 1) |
| 1214 | return base; |
| 1215 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1216 | if (base == NULL) |
| 1217 | return NULL; |
| 1218 | |
| 1219 | for (at = base; at < top; at += x86_pmu.pebs_record_size) { |
| 1220 | struct pebs_record_nhm *p = at; |
| 1221 | |
| 1222 | if (test_bit(bit, (unsigned long *)&p->status)) { |
Peter Zijlstra | a3d8654 | 2015-05-12 15:18:18 +0200 | [diff] [blame] | 1223 | /* PEBS v3 has accurate status bits */ |
| 1224 | if (x86_pmu.intel_cap.pebs_format >= 3) |
| 1225 | return at; |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1226 | |
| 1227 | if (p->status == (1 << bit)) |
| 1228 | return at; |
| 1229 | |
| 1230 | /* clear non-PEBS bit and re-check */ |
| 1231 | pebs_status = p->status & cpuc->pebs_enabled; |
Kan Liang | fd583ad | 2017-04-04 15:14:06 -0400 | [diff] [blame] | 1232 | pebs_status &= PEBS_COUNTER_MASK; |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1233 | if (pebs_status == (1 << bit)) |
| 1234 | return at; |
| 1235 | } |
| 1236 | } |
| 1237 | return NULL; |
| 1238 | } |
| 1239 | |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1240 | static void __intel_pmu_pebs_event(struct perf_event *event, |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1241 | struct pt_regs *iregs, |
| 1242 | void *base, void *top, |
| 1243 | int bit, int count) |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1244 | { |
| 1245 | struct perf_sample_data data; |
| 1246 | struct pt_regs regs; |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1247 | void *at = get_next_pebs_record_by_bit(base, top, bit); |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1248 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1249 | if (!intel_pmu_save_and_restart(event) && |
| 1250 | !(event->hw.flags & PERF_X86_EVENT_AUTO_RELOAD)) |
Yan, Zheng | 43cf763 | 2015-05-06 15:33:48 -0400 | [diff] [blame] | 1251 | return; |
| 1252 | |
Peter Zijlstra | a3d8654 | 2015-05-12 15:18:18 +0200 | [diff] [blame] | 1253 | while (count > 1) { |
| 1254 | setup_pebs_sample_data(event, iregs, at, &data, ®s); |
| 1255 | perf_event_output(event, &data, ®s); |
| 1256 | at += x86_pmu.pebs_record_size; |
| 1257 | at = get_next_pebs_record_by_bit(at, top, bit); |
| 1258 | count--; |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1259 | } |
Stephane Eranian | 60ce0fb | 2012-02-09 23:20:57 +0100 | [diff] [blame] | 1260 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1261 | setup_pebs_sample_data(event, iregs, at, &data, ®s); |
| 1262 | |
| 1263 | /* |
| 1264 | * All but the last records are processed. |
| 1265 | * The last one is left to be able to call the overflow handler. |
| 1266 | */ |
| 1267 | if (perf_event_overflow(event, &data, ®s)) { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 1268 | x86_pmu_stop(event, 0); |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1269 | return; |
| 1270 | } |
| 1271 | |
Peter Zijlstra | 2b0b5c6 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1272 | } |
| 1273 | |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1274 | static void intel_pmu_drain_pebs_core(struct pt_regs *iregs) |
| 1275 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1276 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1277 | struct debug_store *ds = cpuc->ds; |
| 1278 | struct perf_event *event = cpuc->events[0]; /* PMC0 only */ |
| 1279 | struct pebs_record_core *at, *top; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1280 | int n; |
| 1281 | |
Peter Zijlstra | 6809b6e | 2010-10-19 14:22:50 +0200 | [diff] [blame] | 1282 | if (!x86_pmu.pebs_active) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1283 | return; |
| 1284 | |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1285 | at = (struct pebs_record_core *)(unsigned long)ds->pebs_buffer_base; |
| 1286 | top = (struct pebs_record_core *)(unsigned long)ds->pebs_index; |
| 1287 | |
Peter Zijlstra | d80c750 | 2010-03-09 11:41:02 +0100 | [diff] [blame] | 1288 | /* |
| 1289 | * Whatever else happens, drain the thing |
| 1290 | */ |
| 1291 | ds->pebs_index = ds->pebs_buffer_base; |
| 1292 | |
| 1293 | if (!test_bit(0, cpuc->active_mask)) |
Peter Zijlstra | 8f4aebd | 2010-03-06 13:26:11 +0100 | [diff] [blame] | 1294 | return; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1295 | |
Peter Zijlstra | d80c750 | 2010-03-09 11:41:02 +0100 | [diff] [blame] | 1296 | WARN_ON_ONCE(!event); |
| 1297 | |
Peter Zijlstra | ab60834 | 2010-04-08 23:03:20 +0200 | [diff] [blame] | 1298 | if (!event->attr.precise_ip) |
Peter Zijlstra | d80c750 | 2010-03-09 11:41:02 +0100 | [diff] [blame] | 1299 | return; |
| 1300 | |
Stephane Eranian | 1424a09 | 2015-12-03 23:33:18 +0100 | [diff] [blame] | 1301 | n = top - at; |
Peter Zijlstra | d80c750 | 2010-03-09 11:41:02 +0100 | [diff] [blame] | 1302 | if (n <= 0) |
| 1303 | return; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1304 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1305 | __intel_pmu_pebs_event(event, iregs, at, top, 0, n); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1306 | } |
| 1307 | |
Peter Zijlstra | d2beea4 | 2013-09-12 13:00:47 +0200 | [diff] [blame] | 1308 | static void intel_pmu_drain_pebs_nhm(struct pt_regs *iregs) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1309 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1310 | struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1311 | struct debug_store *ds = cpuc->ds; |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1312 | struct perf_event *event; |
| 1313 | void *base, *at, *top; |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1314 | short counts[MAX_PEBS_EVENTS] = {}; |
Kan Liang | f38b0db | 2015-05-10 15:13:14 -0400 | [diff] [blame] | 1315 | short error[MAX_PEBS_EVENTS] = {}; |
Peter Zijlstra | a3d8654 | 2015-05-12 15:18:18 +0200 | [diff] [blame] | 1316 | int bit, i; |
Peter Zijlstra | d2beea4 | 2013-09-12 13:00:47 +0200 | [diff] [blame] | 1317 | |
| 1318 | if (!x86_pmu.pebs_active) |
| 1319 | return; |
| 1320 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1321 | base = (struct pebs_record_nhm *)(unsigned long)ds->pebs_buffer_base; |
Peter Zijlstra | d2beea4 | 2013-09-12 13:00:47 +0200 | [diff] [blame] | 1322 | top = (struct pebs_record_nhm *)(unsigned long)ds->pebs_index; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1323 | |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1324 | ds->pebs_index = ds->pebs_buffer_base; |
| 1325 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1326 | if (unlikely(base >= top)) |
Peter Zijlstra | d2beea4 | 2013-09-12 13:00:47 +0200 | [diff] [blame] | 1327 | return; |
| 1328 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1329 | for (at = base; at < top; at += x86_pmu.pebs_record_size) { |
Andi Kleen | 130768b | 2013-06-17 17:36:47 -0700 | [diff] [blame] | 1330 | struct pebs_record_nhm *p = at; |
Peter Zijlstra | 75f8085 | 2015-07-15 14:35:46 +0200 | [diff] [blame] | 1331 | u64 pebs_status; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1332 | |
Peter Zijlstra | 8ef9b84 | 2016-09-07 14:42:55 +0200 | [diff] [blame] | 1333 | pebs_status = p->status & cpuc->pebs_enabled; |
| 1334 | pebs_status &= (1ULL << x86_pmu.max_pebs_events) - 1; |
| 1335 | |
| 1336 | /* PEBS v3 has more accurate status bits */ |
Peter Zijlstra | a3d8654 | 2015-05-12 15:18:18 +0200 | [diff] [blame] | 1337 | if (x86_pmu.intel_cap.pebs_format >= 3) { |
Peter Zijlstra | 8ef9b84 | 2016-09-07 14:42:55 +0200 | [diff] [blame] | 1338 | for_each_set_bit(bit, (unsigned long *)&pebs_status, |
| 1339 | x86_pmu.max_pebs_events) |
Peter Zijlstra | a3d8654 | 2015-05-12 15:18:18 +0200 | [diff] [blame] | 1340 | counts[bit]++; |
| 1341 | |
| 1342 | continue; |
| 1343 | } |
| 1344 | |
Andi Kleen | 01330d7 | 2015-12-03 13:22:20 -0800 | [diff] [blame] | 1345 | /* |
| 1346 | * On some CPUs the PEBS status can be zero when PEBS is |
| 1347 | * racing with clearing of GLOBAL_STATUS. |
| 1348 | * |
| 1349 | * Normally we would drop that record, but in the |
| 1350 | * case when there is only a single active PEBS event |
| 1351 | * we can assume it's for that event. |
| 1352 | */ |
| 1353 | if (!pebs_status && cpuc->pebs_enabled && |
| 1354 | !(cpuc->pebs_enabled & (cpuc->pebs_enabled-1))) |
| 1355 | pebs_status = cpuc->pebs_enabled; |
| 1356 | |
Peter Zijlstra | 75f8085 | 2015-07-15 14:35:46 +0200 | [diff] [blame] | 1357 | bit = find_first_bit((unsigned long *)&pebs_status, |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1358 | x86_pmu.max_pebs_events); |
Andi Kleen | 957ea1f | 2015-12-03 13:22:19 -0800 | [diff] [blame] | 1359 | if (bit >= x86_pmu.max_pebs_events) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1360 | continue; |
Peter Zijlstra | 75f8085 | 2015-07-15 14:35:46 +0200 | [diff] [blame] | 1361 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1362 | /* |
| 1363 | * The PEBS hardware does not deal well with the situation |
| 1364 | * when events happen near to each other and multiple bits |
| 1365 | * are set. But it should happen rarely. |
| 1366 | * |
| 1367 | * If these events include one PEBS and multiple non-PEBS |
| 1368 | * events, it doesn't impact PEBS record. The record will |
| 1369 | * be handled normally. (slow path) |
| 1370 | * |
| 1371 | * If these events include two or more PEBS events, the |
| 1372 | * records for the events can be collapsed into a single |
| 1373 | * one, and it's not possible to reconstruct all events |
| 1374 | * that caused the PEBS record. It's called collision. |
| 1375 | * If collision happened, the record will be dropped. |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1376 | */ |
Peter Zijlstra | 75f8085 | 2015-07-15 14:35:46 +0200 | [diff] [blame] | 1377 | if (p->status != (1ULL << bit)) { |
| 1378 | for_each_set_bit(i, (unsigned long *)&pebs_status, |
| 1379 | x86_pmu.max_pebs_events) |
| 1380 | error[i]++; |
| 1381 | continue; |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1382 | } |
Peter Zijlstra | 75f8085 | 2015-07-15 14:35:46 +0200 | [diff] [blame] | 1383 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1384 | counts[bit]++; |
| 1385 | } |
| 1386 | |
| 1387 | for (bit = 0; bit < x86_pmu.max_pebs_events; bit++) { |
Kan Liang | f38b0db | 2015-05-10 15:13:14 -0400 | [diff] [blame] | 1388 | if ((counts[bit] == 0) && (error[bit] == 0)) |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1389 | continue; |
Peter Zijlstra | 75f8085 | 2015-07-15 14:35:46 +0200 | [diff] [blame] | 1390 | |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1391 | event = cpuc->events[bit]; |
Peter Zijlstra | 8ef9b84 | 2016-09-07 14:42:55 +0200 | [diff] [blame] | 1392 | if (WARN_ON_ONCE(!event)) |
| 1393 | continue; |
| 1394 | |
| 1395 | if (WARN_ON_ONCE(!event->attr.precise_ip)) |
| 1396 | continue; |
Yan, Zheng | 2150908 | 2015-05-06 15:33:49 -0400 | [diff] [blame] | 1397 | |
Kan Liang | f38b0db | 2015-05-10 15:13:14 -0400 | [diff] [blame] | 1398 | /* log dropped samples number */ |
Jiri Olsa | 475113d | 2016-12-28 14:31:03 +0100 | [diff] [blame] | 1399 | if (error[bit]) { |
Kan Liang | f38b0db | 2015-05-10 15:13:14 -0400 | [diff] [blame] | 1400 | perf_log_lost_samples(event, error[bit]); |
| 1401 | |
Jiri Olsa | 475113d | 2016-12-28 14:31:03 +0100 | [diff] [blame] | 1402 | if (perf_event_account_interrupt(event)) |
| 1403 | x86_pmu_stop(event, 0); |
| 1404 | } |
| 1405 | |
Kan Liang | f38b0db | 2015-05-10 15:13:14 -0400 | [diff] [blame] | 1406 | if (counts[bit]) { |
| 1407 | __intel_pmu_pebs_event(event, iregs, base, |
| 1408 | top, bit, counts[bit]); |
| 1409 | } |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1410 | } |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1411 | } |
| 1412 | |
| 1413 | /* |
| 1414 | * BTS, PEBS probe and setup |
| 1415 | */ |
| 1416 | |
Mathias Krause | 066ce64 | 2014-08-26 18:49:45 +0200 | [diff] [blame] | 1417 | void __init intel_ds_init(void) |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1418 | { |
| 1419 | /* |
| 1420 | * No support for 32bit formats |
| 1421 | */ |
| 1422 | if (!boot_cpu_has(X86_FEATURE_DTES64)) |
| 1423 | return; |
| 1424 | |
| 1425 | x86_pmu.bts = boot_cpu_has(X86_FEATURE_BTS); |
| 1426 | x86_pmu.pebs = boot_cpu_has(X86_FEATURE_PEBS); |
Jiri Olsa | e72daf3 | 2016-03-01 20:03:52 +0100 | [diff] [blame] | 1427 | x86_pmu.pebs_buffer_size = PEBS_BUFFER_SIZE; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1428 | if (x86_pmu.pebs) { |
Peter Zijlstra | 8db909a | 2010-03-03 17:07:40 +0100 | [diff] [blame] | 1429 | char pebs_type = x86_pmu.intel_cap.pebs_trap ? '+' : '-'; |
| 1430 | int format = x86_pmu.intel_cap.pebs_format; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1431 | |
| 1432 | switch (format) { |
| 1433 | case 0: |
Chen Yucong | 1b74dde | 2016-02-02 11:45:02 +0800 | [diff] [blame] | 1434 | pr_cont("PEBS fmt0%c, ", pebs_type); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1435 | x86_pmu.pebs_record_size = sizeof(struct pebs_record_core); |
Jiri Olsa | e72daf3 | 2016-03-01 20:03:52 +0100 | [diff] [blame] | 1436 | /* |
| 1437 | * Using >PAGE_SIZE buffers makes the WRMSR to |
| 1438 | * PERF_GLOBAL_CTRL in intel_pmu_enable_all() |
| 1439 | * mysteriously hang on Core2. |
| 1440 | * |
| 1441 | * As a workaround, we don't do this. |
| 1442 | */ |
| 1443 | x86_pmu.pebs_buffer_size = PAGE_SIZE; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1444 | x86_pmu.drain_pebs = intel_pmu_drain_pebs_core; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1445 | break; |
| 1446 | |
| 1447 | case 1: |
Chen Yucong | 1b74dde | 2016-02-02 11:45:02 +0800 | [diff] [blame] | 1448 | pr_cont("PEBS fmt1%c, ", pebs_type); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1449 | x86_pmu.pebs_record_size = sizeof(struct pebs_record_nhm); |
| 1450 | x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1451 | break; |
| 1452 | |
Andi Kleen | 130768b | 2013-06-17 17:36:47 -0700 | [diff] [blame] | 1453 | case 2: |
| 1454 | pr_cont("PEBS fmt2%c, ", pebs_type); |
| 1455 | x86_pmu.pebs_record_size = sizeof(struct pebs_record_hsw); |
Peter Zijlstra | d2beea4 | 2013-09-12 13:00:47 +0200 | [diff] [blame] | 1456 | x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm; |
Andi Kleen | 130768b | 2013-06-17 17:36:47 -0700 | [diff] [blame] | 1457 | break; |
| 1458 | |
Andi Kleen | 2f7ebf2 | 2015-05-10 12:22:40 -0700 | [diff] [blame] | 1459 | case 3: |
| 1460 | pr_cont("PEBS fmt3%c, ", pebs_type); |
| 1461 | x86_pmu.pebs_record_size = |
| 1462 | sizeof(struct pebs_record_skl); |
| 1463 | x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm; |
Andi Kleen | a7b58d2 | 2015-05-27 21:13:14 -0700 | [diff] [blame] | 1464 | x86_pmu.free_running_flags |= PERF_SAMPLE_TIME; |
Andi Kleen | 2f7ebf2 | 2015-05-10 12:22:40 -0700 | [diff] [blame] | 1465 | break; |
| 1466 | |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1467 | default: |
Chen Yucong | 1b74dde | 2016-02-02 11:45:02 +0800 | [diff] [blame] | 1468 | pr_cont("no PEBS fmt%d%c, ", format, pebs_type); |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1469 | x86_pmu.pebs = 0; |
Peter Zijlstra | ca03770 | 2010-03-02 19:52:12 +0100 | [diff] [blame] | 1470 | } |
| 1471 | } |
| 1472 | } |
Stephane Eranian | 1d9d863 | 2013-03-15 14:26:07 +0100 | [diff] [blame] | 1473 | |
| 1474 | void perf_restore_debug_store(void) |
| 1475 | { |
Linus Torvalds | 2a6e06b | 2013-03-17 15:44:43 -0700 | [diff] [blame] | 1476 | struct debug_store *ds = __this_cpu_read(cpu_hw_events.ds); |
| 1477 | |
Stephane Eranian | 1d9d863 | 2013-03-15 14:26:07 +0100 | [diff] [blame] | 1478 | if (!x86_pmu.bts && !x86_pmu.pebs) |
| 1479 | return; |
| 1480 | |
Linus Torvalds | 2a6e06b | 2013-03-17 15:44:43 -0700 | [diff] [blame] | 1481 | wrmsrl(MSR_IA32_DS_AREA, (unsigned long)ds); |
Stephane Eranian | 1d9d863 | 2013-03-15 14:26:07 +0100 | [diff] [blame] | 1482 | } |