aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2012-05-09 09:22:23 -0400
committerIngo Molnar <mingo@kernel.org>2012-05-09 09:22:23 -0400
commitad8537cda68a8fe81776cceca6c22d54dd652ea5 (patch)
treebbef398c784fb884ca77fc2b7bee74c4ac5e1853 /arch
parent149936a068d83370c9dcd68894c276d4ba0f8560 (diff)
parentfab06992de6433af097c4a1d2d1b119812753ca7 (diff)
Merge branch 'perf/x86-ibs' into perf/core
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/include/asm/msr-index.h5
-rw-r--r--arch/x86/include/asm/perf_event.h2
-rw-r--r--arch/x86/kernel/cpu/perf_event_amd_ibs.c438
3 files changed, 438 insertions, 7 deletions
diff --git a/arch/x86/include/asm/msr-index.h b/arch/x86/include/asm/msr-index.h
index ccb805966f68..957ec87385af 100644
--- a/arch/x86/include/asm/msr-index.h
+++ b/arch/x86/include/asm/msr-index.h
@@ -134,6 +134,8 @@
134#define MSR_AMD64_IBSFETCHCTL 0xc0011030 134#define MSR_AMD64_IBSFETCHCTL 0xc0011030
135#define MSR_AMD64_IBSFETCHLINAD 0xc0011031 135#define MSR_AMD64_IBSFETCHLINAD 0xc0011031
136#define MSR_AMD64_IBSFETCHPHYSAD 0xc0011032 136#define MSR_AMD64_IBSFETCHPHYSAD 0xc0011032
137#define MSR_AMD64_IBSFETCH_REG_COUNT 3
138#define MSR_AMD64_IBSFETCH_REG_MASK ((1UL<<MSR_AMD64_IBSFETCH_REG_COUNT)-1)
137#define MSR_AMD64_IBSOPCTL 0xc0011033 139#define MSR_AMD64_IBSOPCTL 0xc0011033
138#define MSR_AMD64_IBSOPRIP 0xc0011034 140#define MSR_AMD64_IBSOPRIP 0xc0011034
139#define MSR_AMD64_IBSOPDATA 0xc0011035 141#define MSR_AMD64_IBSOPDATA 0xc0011035
@@ -141,8 +143,11 @@
141#define MSR_AMD64_IBSOPDATA3 0xc0011037 143#define MSR_AMD64_IBSOPDATA3 0xc0011037
142#define MSR_AMD64_IBSDCLINAD 0xc0011038 144#define MSR_AMD64_IBSDCLINAD 0xc0011038
143#define MSR_AMD64_IBSDCPHYSAD 0xc0011039 145#define MSR_AMD64_IBSDCPHYSAD 0xc0011039
146#define MSR_AMD64_IBSOP_REG_COUNT 7
147#define MSR_AMD64_IBSOP_REG_MASK ((1UL<<MSR_AMD64_IBSOP_REG_COUNT)-1)
144#define MSR_AMD64_IBSCTL 0xc001103a 148#define MSR_AMD64_IBSCTL 0xc001103a
145#define MSR_AMD64_IBSBRTARGET 0xc001103b 149#define MSR_AMD64_IBSBRTARGET 0xc001103b
150#define MSR_AMD64_IBS_REG_COUNT_MAX 8 /* includes MSR_AMD64_IBSBRTARGET */
146 151
147/* Fam 15h MSRs */ 152/* Fam 15h MSRs */
148#define MSR_F15H_PERF_CTL 0xc0010200 153#define MSR_F15H_PERF_CTL 0xc0010200
diff --git a/arch/x86/include/asm/perf_event.h b/arch/x86/include/asm/perf_event.h
index 2291895b1836..8a3c75d824b7 100644
--- a/arch/x86/include/asm/perf_event.h
+++ b/arch/x86/include/asm/perf_event.h
@@ -178,6 +178,8 @@ struct x86_pmu_capability {
178#define IBS_FETCH_MAX_CNT 0x0000FFFFULL 178#define IBS_FETCH_MAX_CNT 0x0000FFFFULL
179 179
180/* IbsOpCtl bits */ 180/* IbsOpCtl bits */
181/* lower 4 bits of the current count are ignored: */
182#define IBS_OP_CUR_CNT (0xFFFF0ULL<<32)
181#define IBS_OP_CNT_CTL (1ULL<<19) 183#define IBS_OP_CNT_CTL (1ULL<<19)
182#define IBS_OP_VAL (1ULL<<18) 184#define IBS_OP_VAL (1ULL<<18)
183#define IBS_OP_ENABLE (1ULL<<17) 185#define IBS_OP_ENABLE (1ULL<<17)
diff --git a/arch/x86/kernel/cpu/perf_event_amd_ibs.c b/arch/x86/kernel/cpu/perf_event_amd_ibs.c
index 3b8a2d30d14e..8ff74d439041 100644
--- a/arch/x86/kernel/cpu/perf_event_amd_ibs.c
+++ b/arch/x86/kernel/cpu/perf_event_amd_ibs.c
@@ -16,36 +16,460 @@ static u32 ibs_caps;
16 16
17#if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD) 17#if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD)
18 18
19static struct pmu perf_ibs; 19#include <linux/kprobes.h>
20#include <linux/hardirq.h>
21
22#include <asm/nmi.h>
23
24#define IBS_FETCH_CONFIG_MASK (IBS_FETCH_RAND_EN | IBS_FETCH_MAX_CNT)
25#define IBS_OP_CONFIG_MASK IBS_OP_MAX_CNT
26
27enum ibs_states {
28 IBS_ENABLED = 0,
29 IBS_STARTED = 1,
30 IBS_STOPPING = 2,
31
32 IBS_MAX_STATES,
33};
34
35struct cpu_perf_ibs {
36 struct perf_event *event;
37 unsigned long state[BITS_TO_LONGS(IBS_MAX_STATES)];
38};
39
40struct perf_ibs {
41 struct pmu pmu;
42 unsigned int msr;
43 u64 config_mask;
44 u64 cnt_mask;
45 u64 enable_mask;
46 u64 valid_mask;
47 u64 max_period;
48 unsigned long offset_mask[1];
49 int offset_max;
50 struct cpu_perf_ibs __percpu *pcpu;
51 u64 (*get_count)(u64 config);
52};
53
54struct perf_ibs_data {
55 u32 size;
56 union {
57 u32 data[0]; /* data buffer starts here */
58 u32 caps;
59 };
60 u64 regs[MSR_AMD64_IBS_REG_COUNT_MAX];
61};
62
63static int
64perf_event_set_period(struct hw_perf_event *hwc, u64 min, u64 max, u64 *count)
65{
66 s64 left = local64_read(&hwc->period_left);
67 s64 period = hwc->sample_period;
68 int overflow = 0;
69
70 /*
71 * If we are way outside a reasonable range then just skip forward:
72 */
73 if (unlikely(left <= -period)) {
74 left = period;
75 local64_set(&hwc->period_left, left);
76 hwc->last_period = period;
77 overflow = 1;
78 }
79
80 if (unlikely(left <= 0)) {
81 left += period;
82 local64_set(&hwc->period_left, left);
83 hwc->last_period = period;
84 overflow = 1;
85 }
86
87 if (unlikely(left < min))
88 left = min;
89
90 if (left > max)
91 left = max;
92
93 *count = (u64)left;
94
95 return overflow;
96}
97
98static int
99perf_event_try_update(struct perf_event *event, u64 new_raw_count, int width)
100{
101 struct hw_perf_event *hwc = &event->hw;
102 int shift = 64 - width;
103 u64 prev_raw_count;
104 u64 delta;
105
106 /*
107 * Careful: an NMI might modify the previous event value.
108 *
109 * Our tactic to handle this is to first atomically read and
110 * exchange a new raw count - then add that new-prev delta
111 * count to the generic event atomically:
112 */
113 prev_raw_count = local64_read(&hwc->prev_count);
114 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
115 new_raw_count) != prev_raw_count)
116 return 0;
117
118 /*
119 * Now we have the new raw value and have updated the prev
120 * timestamp already. We can now calculate the elapsed delta
121 * (event-)time and add that to the generic event.
122 *
123 * Careful, not all hw sign-extends above the physical width
124 * of the count.
125 */
126 delta = (new_raw_count << shift) - (prev_raw_count << shift);
127 delta >>= shift;
128
129 local64_add(delta, &event->count);
130 local64_sub(delta, &hwc->period_left);
131
132 return 1;
133}
134
135static struct perf_ibs perf_ibs_fetch;
136static struct perf_ibs perf_ibs_op;
137
138static struct perf_ibs *get_ibs_pmu(int type)
139{
140 if (perf_ibs_fetch.pmu.type == type)
141 return &perf_ibs_fetch;
142 if (perf_ibs_op.pmu.type == type)
143 return &perf_ibs_op;
144 return NULL;
145}
20 146
21static int perf_ibs_init(struct perf_event *event) 147static int perf_ibs_init(struct perf_event *event)
22{ 148{
23 if (perf_ibs.type != event->attr.type) 149 struct hw_perf_event *hwc = &event->hw;
150 struct perf_ibs *perf_ibs;
151 u64 max_cnt, config;
152
153 perf_ibs = get_ibs_pmu(event->attr.type);
154 if (!perf_ibs)
24 return -ENOENT; 155 return -ENOENT;
156
157 config = event->attr.config;
158 if (config & ~perf_ibs->config_mask)
159 return -EINVAL;
160
161 if (hwc->sample_period) {
162 if (config & perf_ibs->cnt_mask)
163 /* raw max_cnt may not be set */
164 return -EINVAL;
165 if (hwc->sample_period & 0x0f)
166 /* lower 4 bits can not be set in ibs max cnt */
167 return -EINVAL;
168 } else {
169 max_cnt = config & perf_ibs->cnt_mask;
170 config &= ~perf_ibs->cnt_mask;
171 event->attr.sample_period = max_cnt << 4;
172 hwc->sample_period = event->attr.sample_period;
173 }
174
175 if (!hwc->sample_period)
176 return -EINVAL;
177
178 hwc->config_base = perf_ibs->msr;
179 hwc->config = config;
180
25 return 0; 181 return 0;
26} 182}
27 183
184static int perf_ibs_set_period(struct perf_ibs *perf_ibs,
185 struct hw_perf_event *hwc, u64 *period)
186{
187 int ret;
188
189 /* ignore lower 4 bits in min count: */
190 ret = perf_event_set_period(hwc, 1<<4, perf_ibs->max_period, period);
191 local64_set(&hwc->prev_count, 0);
192
193 return ret;
194}
195
196static u64 get_ibs_fetch_count(u64 config)
197{
198 return (config & IBS_FETCH_CNT) >> 12;
199}
200
201static u64 get_ibs_op_count(u64 config)
202{
203 return (config & IBS_OP_CUR_CNT) >> 32;
204}
205
206static void
207perf_ibs_event_update(struct perf_ibs *perf_ibs, struct perf_event *event,
208 u64 config)
209{
210 u64 count = perf_ibs->get_count(config);
211
212 while (!perf_event_try_update(event, count, 20)) {
213 rdmsrl(event->hw.config_base, config);
214 count = perf_ibs->get_count(config);
215 }
216}
217
218/* Note: The enable mask must be encoded in the config argument. */
219static inline void perf_ibs_enable_event(struct hw_perf_event *hwc, u64 config)
220{
221 wrmsrl(hwc->config_base, hwc->config | config);
222}
223
224/*
225 * We cannot restore the ibs pmu state, so we always needs to update
226 * the event while stopping it and then reset the state when starting
227 * again. Thus, ignoring PERF_EF_RELOAD and PERF_EF_UPDATE flags in
228 * perf_ibs_start()/perf_ibs_stop() and instead always do it.
229 */
230static void perf_ibs_start(struct perf_event *event, int flags)
231{
232 struct hw_perf_event *hwc = &event->hw;
233 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
234 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
235 u64 config;
236
237 if (WARN_ON_ONCE(!(hwc->state & PERF_HES_STOPPED)))
238 return;
239
240 WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE));
241 hwc->state = 0;
242
243 perf_ibs_set_period(perf_ibs, hwc, &config);
244 config = (config >> 4) | perf_ibs->enable_mask;
245 set_bit(IBS_STARTED, pcpu->state);
246 perf_ibs_enable_event(hwc, config);
247
248 perf_event_update_userpage(event);
249}
250
251static void perf_ibs_stop(struct perf_event *event, int flags)
252{
253 struct hw_perf_event *hwc = &event->hw;
254 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
255 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
256 u64 val;
257 int stopping;
258
259 stopping = test_and_clear_bit(IBS_STARTED, pcpu->state);
260
261 if (!stopping && (hwc->state & PERF_HES_UPTODATE))
262 return;
263
264 rdmsrl(hwc->config_base, val);
265
266 if (stopping) {
267 set_bit(IBS_STOPPING, pcpu->state);
268 val &= ~perf_ibs->enable_mask;
269 wrmsrl(hwc->config_base, val);
270 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
271 hwc->state |= PERF_HES_STOPPED;
272 }
273
274 if (hwc->state & PERF_HES_UPTODATE)
275 return;
276
277 perf_ibs_event_update(perf_ibs, event, val);
278 hwc->state |= PERF_HES_UPTODATE;
279}
280
28static int perf_ibs_add(struct perf_event *event, int flags) 281static int perf_ibs_add(struct perf_event *event, int flags)
29{ 282{
283 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
284 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
285
286 if (test_and_set_bit(IBS_ENABLED, pcpu->state))
287 return -ENOSPC;
288
289 event->hw.state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
290
291 pcpu->event = event;
292
293 if (flags & PERF_EF_START)
294 perf_ibs_start(event, PERF_EF_RELOAD);
295
30 return 0; 296 return 0;
31} 297}
32 298
33static void perf_ibs_del(struct perf_event *event, int flags) 299static void perf_ibs_del(struct perf_event *event, int flags)
34{ 300{
301 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
302 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
303
304 if (!test_and_clear_bit(IBS_ENABLED, pcpu->state))
305 return;
306
307 perf_ibs_stop(event, PERF_EF_UPDATE);
308
309 pcpu->event = NULL;
310
311 perf_event_update_userpage(event);
35} 312}
36 313
37static struct pmu perf_ibs = { 314static void perf_ibs_read(struct perf_event *event) { }
38 .event_init= perf_ibs_init, 315
39 .add= perf_ibs_add, 316static struct perf_ibs perf_ibs_fetch = {
40 .del= perf_ibs_del, 317 .pmu = {
318 .task_ctx_nr = perf_invalid_context,
319
320 .event_init = perf_ibs_init,
321 .add = perf_ibs_add,
322 .del = perf_ibs_del,
323 .start = perf_ibs_start,
324 .stop = perf_ibs_stop,
325 .read = perf_ibs_read,
326 },
327 .msr = MSR_AMD64_IBSFETCHCTL,
328 .config_mask = IBS_FETCH_CONFIG_MASK,
329 .cnt_mask = IBS_FETCH_MAX_CNT,
330 .enable_mask = IBS_FETCH_ENABLE,
331 .valid_mask = IBS_FETCH_VAL,
332 .max_period = IBS_FETCH_MAX_CNT << 4,
333 .offset_mask = { MSR_AMD64_IBSFETCH_REG_MASK },
334 .offset_max = MSR_AMD64_IBSFETCH_REG_COUNT,
335
336 .get_count = get_ibs_fetch_count,
41}; 337};
42 338
339static struct perf_ibs perf_ibs_op = {
340 .pmu = {
341 .task_ctx_nr = perf_invalid_context,
342
343 .event_init = perf_ibs_init,
344 .add = perf_ibs_add,
345 .del = perf_ibs_del,
346 .start = perf_ibs_start,
347 .stop = perf_ibs_stop,
348 .read = perf_ibs_read,
349 },
350 .msr = MSR_AMD64_IBSOPCTL,
351 .config_mask = IBS_OP_CONFIG_MASK,
352 .cnt_mask = IBS_OP_MAX_CNT,
353 .enable_mask = IBS_OP_ENABLE,
354 .valid_mask = IBS_OP_VAL,
355 .max_period = IBS_OP_MAX_CNT << 4,
356 .offset_mask = { MSR_AMD64_IBSOP_REG_MASK },
357 .offset_max = MSR_AMD64_IBSOP_REG_COUNT,
358
359 .get_count = get_ibs_op_count,
360};
361
362static int perf_ibs_handle_irq(struct perf_ibs *perf_ibs, struct pt_regs *iregs)
363{
364 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
365 struct perf_event *event = pcpu->event;
366 struct hw_perf_event *hwc = &event->hw;
367 struct perf_sample_data data;
368 struct perf_raw_record raw;
369 struct pt_regs regs;
370 struct perf_ibs_data ibs_data;
371 int offset, size, overflow, reenable;
372 unsigned int msr;
373 u64 *buf, config;
374
375 if (!test_bit(IBS_STARTED, pcpu->state)) {
376 /* Catch spurious interrupts after stopping IBS: */
377 if (!test_and_clear_bit(IBS_STOPPING, pcpu->state))
378 return 0;
379 rdmsrl(perf_ibs->msr, *ibs_data.regs);
380 return (*ibs_data.regs & perf_ibs->valid_mask) ? 1 : 0;
381 }
382
383 msr = hwc->config_base;
384 buf = ibs_data.regs;
385 rdmsrl(msr, *buf);
386 if (!(*buf++ & perf_ibs->valid_mask))
387 return 0;
388
389 perf_sample_data_init(&data, 0);
390 if (event->attr.sample_type & PERF_SAMPLE_RAW) {
391 ibs_data.caps = ibs_caps;
392 size = 1;
393 offset = 1;
394 do {
395 rdmsrl(msr + offset, *buf++);
396 size++;
397 offset = find_next_bit(perf_ibs->offset_mask,
398 perf_ibs->offset_max,
399 offset + 1);
400 } while (offset < perf_ibs->offset_max);
401 raw.size = sizeof(u32) + sizeof(u64) * size;
402 raw.data = ibs_data.data;
403 data.raw = &raw;
404 }
405
406 regs = *iregs; /* XXX: update ip from ibs sample */
407
408 /*
409 * Emulate IbsOpCurCnt in MSRC001_1033 (IbsOpCtl), not
410 * supported in all cpus. As this triggered an interrupt, we
411 * set the current count to the max count.
412 */
413 config = ibs_data.regs[0];
414 if (perf_ibs == &perf_ibs_op && !(ibs_caps & IBS_CAPS_RDWROPCNT)) {
415 config &= ~IBS_OP_CUR_CNT;
416 config |= (config & IBS_OP_MAX_CNT) << 36;
417 }
418
419 perf_ibs_event_update(perf_ibs, event, config);
420
421 overflow = perf_ibs_set_period(perf_ibs, hwc, &config);
422 reenable = !(overflow && perf_event_overflow(event, &data, &regs));
423 config = (config >> 4) | (reenable ? perf_ibs->enable_mask : 0);
424 perf_ibs_enable_event(hwc, config);
425
426 perf_event_update_userpage(event);
427
428 return 1;
429}
430
431static int __kprobes
432perf_ibs_nmi_handler(unsigned int cmd, struct pt_regs *regs)
433{
434 int handled = 0;
435
436 handled += perf_ibs_handle_irq(&perf_ibs_fetch, regs);
437 handled += perf_ibs_handle_irq(&perf_ibs_op, regs);
438
439 if (handled)
440 inc_irq_stat(apic_perf_irqs);
441
442 return handled;
443}
444
445static __init int perf_ibs_pmu_init(struct perf_ibs *perf_ibs, char *name)
446{
447 struct cpu_perf_ibs __percpu *pcpu;
448 int ret;
449
450 pcpu = alloc_percpu(struct cpu_perf_ibs);
451 if (!pcpu)
452 return -ENOMEM;
453
454 perf_ibs->pcpu = pcpu;
455
456 ret = perf_pmu_register(&perf_ibs->pmu, name, -1);
457 if (ret) {
458 perf_ibs->pcpu = NULL;
459 free_percpu(pcpu);
460 }
461
462 return ret;
463}
464
43static __init int perf_event_ibs_init(void) 465static __init int perf_event_ibs_init(void)
44{ 466{
45 if (!ibs_caps) 467 if (!ibs_caps)
46 return -ENODEV; /* ibs not supported by the cpu */ 468 return -ENODEV; /* ibs not supported by the cpu */
47 469
48 perf_pmu_register(&perf_ibs, "ibs", -1); 470 perf_ibs_pmu_init(&perf_ibs_fetch, "ibs_fetch");
471 perf_ibs_pmu_init(&perf_ibs_op, "ibs_op");
472 register_nmi_handler(NMI_LOCAL, perf_ibs_nmi_handler, 0, "perf_ibs");
49 printk(KERN_INFO "perf: AMD IBS detected (0x%08x)\n", ibs_caps); 473 printk(KERN_INFO "perf: AMD IBS detected (0x%08x)\n", ibs_caps);
50 474
51 return 0; 475 return 0;