x86, perfcounters: add support for fixed-function pmcs
[deliverable/linux.git] / arch / x86 / kernel / cpu / perf_counter.c
1 /*
2 * Performance counter x86 architecture code
3 *
4 * Copyright(C) 2008 Thomas Gleixner <tglx@linutronix.de>
5 * Copyright(C) 2008 Red Hat, Inc., Ingo Molnar
6 *
7 * For licencing details see kernel-base/COPYING
8 */
9
10 #include <linux/perf_counter.h>
11 #include <linux/capability.h>
12 #include <linux/notifier.h>
13 #include <linux/hardirq.h>
14 #include <linux/kprobes.h>
15 #include <linux/module.h>
16 #include <linux/kdebug.h>
17 #include <linux/sched.h>
18
19 #include <asm/perf_counter.h>
20 #include <asm/apic.h>
21
22 static bool perf_counters_initialized __read_mostly;
23
24 /*
25 * Number of (generic) HW counters:
26 */
27 static int nr_counters_generic __read_mostly;
28 static u64 perf_counter_mask __read_mostly;
29 static u64 counter_value_mask __read_mostly;
30
31 static int nr_counters_fixed __read_mostly;
32
33 struct cpu_hw_counters {
34 struct perf_counter *counters[X86_PMC_IDX_MAX];
35 unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
36 };
37
38 /*
39 * Intel PerfMon v3. Used on Core2 and later.
40 */
41 static DEFINE_PER_CPU(struct cpu_hw_counters, cpu_hw_counters);
42
43 static const int intel_perfmon_event_map[] =
44 {
45 [PERF_COUNT_CPU_CYCLES] = 0x003c,
46 [PERF_COUNT_INSTRUCTIONS] = 0x00c0,
47 [PERF_COUNT_CACHE_REFERENCES] = 0x4f2e,
48 [PERF_COUNT_CACHE_MISSES] = 0x412e,
49 [PERF_COUNT_BRANCH_INSTRUCTIONS] = 0x00c4,
50 [PERF_COUNT_BRANCH_MISSES] = 0x00c5,
51 [PERF_COUNT_BUS_CYCLES] = 0x013c,
52 };
53
54 static const int max_intel_perfmon_events = ARRAY_SIZE(intel_perfmon_event_map);
55
56 /*
57 * Propagate counter elapsed time into the generic counter.
58 * Can only be executed on the CPU where the counter is active.
59 * Returns the delta events processed.
60 */
61 static void
62 x86_perf_counter_update(struct perf_counter *counter,
63 struct hw_perf_counter *hwc, int idx)
64 {
65 u64 prev_raw_count, new_raw_count, delta;
66
67 /*
68 * Careful: an NMI might modify the previous counter value.
69 *
70 * Our tactic to handle this is to first atomically read and
71 * exchange a new raw count - then add that new-prev delta
72 * count to the generic counter atomically:
73 */
74 again:
75 prev_raw_count = atomic64_read(&hwc->prev_count);
76 rdmsrl(hwc->counter_base + idx, new_raw_count);
77
78 if (atomic64_cmpxchg(&hwc->prev_count, prev_raw_count,
79 new_raw_count) != prev_raw_count)
80 goto again;
81
82 /*
83 * Now we have the new raw value and have updated the prev
84 * timestamp already. We can now calculate the elapsed delta
85 * (counter-)time and add that to the generic counter.
86 *
87 * Careful, not all hw sign-extends above the physical width
88 * of the count, so we do that by clipping the delta to 32 bits:
89 */
90 delta = (u64)(u32)((s32)new_raw_count - (s32)prev_raw_count);
91
92 atomic64_add(delta, &counter->count);
93 atomic64_sub(delta, &hwc->period_left);
94 }
95
96 /*
97 * Setup the hardware configuration for a given hw_event_type
98 */
99 static int __hw_perf_counter_init(struct perf_counter *counter)
100 {
101 struct perf_counter_hw_event *hw_event = &counter->hw_event;
102 struct hw_perf_counter *hwc = &counter->hw;
103
104 if (unlikely(!perf_counters_initialized))
105 return -EINVAL;
106
107 /*
108 * Count user events, and generate PMC IRQs:
109 * (keep 'enabled' bit clear for now)
110 */
111 hwc->config = ARCH_PERFMON_EVENTSEL_USR | ARCH_PERFMON_EVENTSEL_INT;
112
113 /*
114 * If privileged enough, count OS events too, and allow
115 * NMI events as well:
116 */
117 hwc->nmi = 0;
118 if (capable(CAP_SYS_ADMIN)) {
119 hwc->config |= ARCH_PERFMON_EVENTSEL_OS;
120 if (hw_event->nmi)
121 hwc->nmi = 1;
122 }
123
124 hwc->irq_period = hw_event->irq_period;
125 /*
126 * Intel PMCs cannot be accessed sanely above 32 bit width,
127 * so we install an artificial 1<<31 period regardless of
128 * the generic counter period:
129 */
130 if ((s64)hwc->irq_period <= 0 || hwc->irq_period > 0x7FFFFFFF)
131 hwc->irq_period = 0x7FFFFFFF;
132
133 atomic64_set(&hwc->period_left, hwc->irq_period);
134
135 /*
136 * Raw event type provide the config in the event structure
137 */
138 if (hw_event->raw) {
139 hwc->config |= hw_event->type;
140 } else {
141 if (hw_event->type >= max_intel_perfmon_events)
142 return -EINVAL;
143 /*
144 * The generic map:
145 */
146 hwc->config |= intel_perfmon_event_map[hw_event->type];
147 }
148 counter->wakeup_pending = 0;
149
150 return 0;
151 }
152
153 void hw_perf_enable_all(void)
154 {
155 if (unlikely(!perf_counters_initialized))
156 return;
157
158 wrmsrl(MSR_CORE_PERF_GLOBAL_CTRL, perf_counter_mask);
159 }
160
161 u64 hw_perf_save_disable(void)
162 {
163 u64 ctrl;
164
165 if (unlikely(!perf_counters_initialized))
166 return 0;
167
168 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
169 wrmsrl(MSR_CORE_PERF_GLOBAL_CTRL, 0);
170
171 return ctrl;
172 }
173 EXPORT_SYMBOL_GPL(hw_perf_save_disable);
174
175 void hw_perf_restore(u64 ctrl)
176 {
177 if (unlikely(!perf_counters_initialized))
178 return;
179
180 wrmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
181 }
182 EXPORT_SYMBOL_GPL(hw_perf_restore);
183
184 static inline void
185 __pmc_fixed_disable(struct perf_counter *counter,
186 struct hw_perf_counter *hwc, unsigned int __idx)
187 {
188 int idx = __idx - X86_PMC_IDX_FIXED;
189 u64 ctrl_val, mask;
190 int err;
191
192 mask = 0xfULL << (idx * 4);
193
194 rdmsrl(hwc->config_base, ctrl_val);
195 ctrl_val &= ~mask;
196 err = checking_wrmsrl(hwc->config_base, ctrl_val);
197 }
198
199 static inline void
200 __pmc_generic_disable(struct perf_counter *counter,
201 struct hw_perf_counter *hwc, unsigned int idx)
202 {
203 int err;
204
205 if (unlikely(hwc->config_base == MSR_ARCH_PERFMON_FIXED_CTR_CTRL))
206 return __pmc_fixed_disable(counter, hwc, idx);
207
208 err = wrmsr_safe(hwc->config_base + idx, hwc->config, 0);
209 }
210
211 static DEFINE_PER_CPU(u64, prev_left[X86_PMC_IDX_MAX]);
212
213 /*
214 * Set the next IRQ period, based on the hwc->period_left value.
215 * To be called with the counter disabled in hw:
216 */
217 static void
218 __hw_perf_counter_set_period(struct perf_counter *counter,
219 struct hw_perf_counter *hwc, int idx)
220 {
221 s64 left = atomic64_read(&hwc->period_left);
222 s32 period = hwc->irq_period;
223 int err;
224
225 /*
226 * If we are way outside a reasoable range then just skip forward:
227 */
228 if (unlikely(left <= -period)) {
229 left = period;
230 atomic64_set(&hwc->period_left, left);
231 }
232
233 if (unlikely(left <= 0)) {
234 left += period;
235 atomic64_set(&hwc->period_left, left);
236 }
237
238 per_cpu(prev_left[idx], smp_processor_id()) = left;
239
240 /*
241 * The hw counter starts counting from this counter offset,
242 * mark it to be able to extra future deltas:
243 */
244 atomic64_set(&hwc->prev_count, (u64)-left);
245
246 err = checking_wrmsrl(hwc->counter_base + idx,
247 (u64)(-left) & counter_value_mask);
248 }
249
250 static inline void
251 __pmc_fixed_enable(struct perf_counter *counter,
252 struct hw_perf_counter *hwc, unsigned int __idx)
253 {
254 int idx = __idx - X86_PMC_IDX_FIXED;
255 u64 ctrl_val, bits, mask;
256 int err;
257
258 /*
259 * Enable IRQ generation (0x8) and ring-3 counting (0x2),
260 * and enable ring-0 counting if allowed:
261 */
262 bits = 0x8ULL | 0x2ULL;
263 if (hwc->config & ARCH_PERFMON_EVENTSEL_OS)
264 bits |= 0x1;
265 bits <<= (idx * 4);
266 mask = 0xfULL << (idx * 4);
267
268 rdmsrl(hwc->config_base, ctrl_val);
269 ctrl_val &= ~mask;
270 ctrl_val |= bits;
271 err = checking_wrmsrl(hwc->config_base, ctrl_val);
272 }
273
274 static void
275 __pmc_generic_enable(struct perf_counter *counter,
276 struct hw_perf_counter *hwc, int idx)
277 {
278 if (unlikely(hwc->config_base == MSR_ARCH_PERFMON_FIXED_CTR_CTRL))
279 return __pmc_fixed_enable(counter, hwc, idx);
280
281 wrmsr(hwc->config_base + idx,
282 hwc->config | ARCH_PERFMON_EVENTSEL0_ENABLE, 0);
283 }
284
285 static int
286 fixed_mode_idx(struct perf_counter *counter, struct hw_perf_counter *hwc)
287 {
288 unsigned int event;
289
290 if (unlikely(hwc->nmi))
291 return -1;
292
293 event = hwc->config & ARCH_PERFMON_EVENT_MASK;
294
295 if (unlikely(event == intel_perfmon_event_map[PERF_COUNT_INSTRUCTIONS]))
296 return X86_PMC_IDX_FIXED_INSTRUCTIONS;
297 if (unlikely(event == intel_perfmon_event_map[PERF_COUNT_CPU_CYCLES]))
298 return X86_PMC_IDX_FIXED_CPU_CYCLES;
299 if (unlikely(event == intel_perfmon_event_map[PERF_COUNT_BUS_CYCLES]))
300 return X86_PMC_IDX_FIXED_BUS_CYCLES;
301
302 return -1;
303 }
304
305 /*
306 * Find a PMC slot for the freshly enabled / scheduled in counter:
307 */
308 static int pmc_generic_enable(struct perf_counter *counter)
309 {
310 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
311 struct hw_perf_counter *hwc = &counter->hw;
312 int idx;
313
314 idx = fixed_mode_idx(counter, hwc);
315 if (idx >= 0) {
316 /*
317 * Try to get the fixed counter, if that is already taken
318 * then try to get a generic counter:
319 */
320 if (test_and_set_bit(idx, cpuc->used))
321 goto try_generic;
322
323 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
324 /*
325 * We set it so that counter_base + idx in wrmsr/rdmsr maps to
326 * MSR_ARCH_PERFMON_FIXED_CTR0 ... CTR2:
327 */
328 hwc->counter_base =
329 MSR_ARCH_PERFMON_FIXED_CTR0 - X86_PMC_IDX_FIXED;
330 hwc->idx = idx;
331 } else {
332 idx = hwc->idx;
333 /* Try to get the previous generic counter again */
334 if (test_and_set_bit(idx, cpuc->used)) {
335 try_generic:
336 idx = find_first_zero_bit(cpuc->used, nr_counters_generic);
337 if (idx == nr_counters_generic)
338 return -EAGAIN;
339
340 set_bit(idx, cpuc->used);
341 hwc->idx = idx;
342 }
343 hwc->config_base = MSR_ARCH_PERFMON_EVENTSEL0;
344 hwc->counter_base = MSR_ARCH_PERFMON_PERFCTR0;
345 }
346
347 perf_counters_lapic_init(hwc->nmi);
348
349 __pmc_generic_disable(counter, hwc, idx);
350
351 cpuc->counters[idx] = counter;
352 /*
353 * Make it visible before enabling the hw:
354 */
355 smp_wmb();
356
357 __hw_perf_counter_set_period(counter, hwc, idx);
358 __pmc_generic_enable(counter, hwc, idx);
359
360 return 0;
361 }
362
363 void perf_counter_print_debug(void)
364 {
365 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
366 struct cpu_hw_counters *cpuc;
367 int cpu, idx;
368
369 if (!nr_counters_generic)
370 return;
371
372 local_irq_disable();
373
374 cpu = smp_processor_id();
375 cpuc = &per_cpu(cpu_hw_counters, cpu);
376
377 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
378 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
379 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
380 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
381
382 printk(KERN_INFO "\n");
383 printk(KERN_INFO "CPU#%d: ctrl: %016llx\n", cpu, ctrl);
384 printk(KERN_INFO "CPU#%d: status: %016llx\n", cpu, status);
385 printk(KERN_INFO "CPU#%d: overflow: %016llx\n", cpu, overflow);
386 printk(KERN_INFO "CPU#%d: fixed: %016llx\n", cpu, fixed);
387 printk(KERN_INFO "CPU#%d: used: %016llx\n", cpu, *(u64 *)cpuc->used);
388
389 for (idx = 0; idx < nr_counters_generic; idx++) {
390 rdmsrl(MSR_ARCH_PERFMON_EVENTSEL0 + idx, pmc_ctrl);
391 rdmsrl(MSR_ARCH_PERFMON_PERFCTR0 + idx, pmc_count);
392
393 prev_left = per_cpu(prev_left[idx], cpu);
394
395 printk(KERN_INFO "CPU#%d: gen-PMC%d ctrl: %016llx\n",
396 cpu, idx, pmc_ctrl);
397 printk(KERN_INFO "CPU#%d: gen-PMC%d count: %016llx\n",
398 cpu, idx, pmc_count);
399 printk(KERN_INFO "CPU#%d: gen-PMC%d left: %016llx\n",
400 cpu, idx, prev_left);
401 }
402 for (idx = 0; idx < nr_counters_fixed; idx++) {
403 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
404
405 printk(KERN_INFO "CPU#%d: fixed-PMC%d count: %016llx\n",
406 cpu, idx, pmc_count);
407 }
408 local_irq_enable();
409 }
410
411 static void pmc_generic_disable(struct perf_counter *counter)
412 {
413 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
414 struct hw_perf_counter *hwc = &counter->hw;
415 unsigned int idx = hwc->idx;
416
417 __pmc_generic_disable(counter, hwc, idx);
418
419 clear_bit(idx, cpuc->used);
420 cpuc->counters[idx] = NULL;
421 /*
422 * Make sure the cleared pointer becomes visible before we
423 * (potentially) free the counter:
424 */
425 smp_wmb();
426
427 /*
428 * Drain the remaining delta count out of a counter
429 * that we are disabling:
430 */
431 x86_perf_counter_update(counter, hwc, idx);
432 }
433
434 static void perf_store_irq_data(struct perf_counter *counter, u64 data)
435 {
436 struct perf_data *irqdata = counter->irqdata;
437
438 if (irqdata->len > PERF_DATA_BUFLEN - sizeof(u64)) {
439 irqdata->overrun++;
440 } else {
441 u64 *p = (u64 *) &irqdata->data[irqdata->len];
442
443 *p = data;
444 irqdata->len += sizeof(u64);
445 }
446 }
447
448 /*
449 * Save and restart an expired counter. Called by NMI contexts,
450 * so it has to be careful about preempting normal counter ops:
451 */
452 static void perf_save_and_restart(struct perf_counter *counter)
453 {
454 struct hw_perf_counter *hwc = &counter->hw;
455 int idx = hwc->idx;
456
457 x86_perf_counter_update(counter, hwc, idx);
458 __hw_perf_counter_set_period(counter, hwc, idx);
459
460 if (counter->state == PERF_COUNTER_STATE_ACTIVE)
461 __pmc_generic_enable(counter, hwc, idx);
462 }
463
464 static void
465 perf_handle_group(struct perf_counter *sibling, u64 *status, u64 *overflown)
466 {
467 struct perf_counter *counter, *group_leader = sibling->group_leader;
468
469 /*
470 * Store sibling timestamps (if any):
471 */
472 list_for_each_entry(counter, &group_leader->sibling_list, list_entry) {
473
474 x86_perf_counter_update(counter, &counter->hw, counter->hw.idx);
475 perf_store_irq_data(sibling, counter->hw_event.type);
476 perf_store_irq_data(sibling, atomic64_read(&counter->count));
477 }
478 }
479
480 /*
481 * This handler is triggered by the local APIC, so the APIC IRQ handling
482 * rules apply:
483 */
484 static void __smp_perf_counter_interrupt(struct pt_regs *regs, int nmi)
485 {
486 int bit, cpu = smp_processor_id();
487 u64 ack, status, saved_global;
488 struct cpu_hw_counters *cpuc;
489
490 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, saved_global);
491
492 /* Disable counters globally */
493 wrmsrl(MSR_CORE_PERF_GLOBAL_CTRL, 0);
494 ack_APIC_irq();
495
496 cpuc = &per_cpu(cpu_hw_counters, cpu);
497
498 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
499 if (!status)
500 goto out;
501
502 again:
503 ack = status;
504 for_each_bit(bit, (unsigned long *)&status, X86_PMC_IDX_MAX) {
505 struct perf_counter *counter = cpuc->counters[bit];
506
507 clear_bit(bit, (unsigned long *) &status);
508 if (!counter)
509 continue;
510
511 perf_save_and_restart(counter);
512
513 switch (counter->hw_event.record_type) {
514 case PERF_RECORD_SIMPLE:
515 continue;
516 case PERF_RECORD_IRQ:
517 perf_store_irq_data(counter, instruction_pointer(regs));
518 break;
519 case PERF_RECORD_GROUP:
520 perf_handle_group(counter, &status, &ack);
521 break;
522 }
523 /*
524 * From NMI context we cannot call into the scheduler to
525 * do a task wakeup - but we mark these generic as
526 * wakeup_pending and initate a wakeup callback:
527 */
528 if (nmi) {
529 counter->wakeup_pending = 1;
530 set_tsk_thread_flag(current, TIF_PERF_COUNTERS);
531 } else {
532 wake_up(&counter->waitq);
533 }
534 }
535
536 wrmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, ack);
537
538 /*
539 * Repeat if there is more work to be done:
540 */
541 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
542 if (status)
543 goto again;
544 out:
545 /*
546 * Restore - do not reenable when global enable is off:
547 */
548 wrmsrl(MSR_CORE_PERF_GLOBAL_CTRL, saved_global);
549 }
550
551 void smp_perf_counter_interrupt(struct pt_regs *regs)
552 {
553 irq_enter();
554 inc_irq_stat(apic_perf_irqs);
555 apic_write(APIC_LVTPC, LOCAL_PERF_VECTOR);
556 __smp_perf_counter_interrupt(regs, 0);
557
558 irq_exit();
559 }
560
561 /*
562 * This handler is triggered by NMI contexts:
563 */
564 void perf_counter_notify(struct pt_regs *regs)
565 {
566 struct cpu_hw_counters *cpuc;
567 unsigned long flags;
568 int bit, cpu;
569
570 local_irq_save(flags);
571 cpu = smp_processor_id();
572 cpuc = &per_cpu(cpu_hw_counters, cpu);
573
574 for_each_bit(bit, cpuc->used, X86_PMC_IDX_MAX) {
575 struct perf_counter *counter = cpuc->counters[bit];
576
577 if (!counter)
578 continue;
579
580 if (counter->wakeup_pending) {
581 counter->wakeup_pending = 0;
582 wake_up(&counter->waitq);
583 }
584 }
585
586 local_irq_restore(flags);
587 }
588
589 void __cpuinit perf_counters_lapic_init(int nmi)
590 {
591 u32 apic_val;
592
593 if (!perf_counters_initialized)
594 return;
595 /*
596 * Enable the performance counter vector in the APIC LVT:
597 */
598 apic_val = apic_read(APIC_LVTERR);
599
600 apic_write(APIC_LVTERR, apic_val | APIC_LVT_MASKED);
601 if (nmi)
602 apic_write(APIC_LVTPC, APIC_DM_NMI);
603 else
604 apic_write(APIC_LVTPC, LOCAL_PERF_VECTOR);
605 apic_write(APIC_LVTERR, apic_val);
606 }
607
608 static int __kprobes
609 perf_counter_nmi_handler(struct notifier_block *self,
610 unsigned long cmd, void *__args)
611 {
612 struct die_args *args = __args;
613 struct pt_regs *regs;
614
615 if (likely(cmd != DIE_NMI_IPI))
616 return NOTIFY_DONE;
617
618 regs = args->regs;
619
620 apic_write(APIC_LVTPC, APIC_DM_NMI);
621 __smp_perf_counter_interrupt(regs, 1);
622
623 return NOTIFY_STOP;
624 }
625
626 static __read_mostly struct notifier_block perf_counter_nmi_notifier = {
627 .notifier_call = perf_counter_nmi_handler
628 };
629
630 void __init init_hw_perf_counters(void)
631 {
632 union cpuid10_eax eax;
633 unsigned int ebx;
634 unsigned int unused;
635 union cpuid10_edx edx;
636
637 if (!cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON))
638 return;
639
640 /*
641 * Check whether the Architectural PerfMon supports
642 * Branch Misses Retired Event or not.
643 */
644 cpuid(10, &eax.full, &ebx, &unused, &edx.full);
645 if (eax.split.mask_length <= ARCH_PERFMON_BRANCH_MISSES_RETIRED)
646 return;
647
648 printk(KERN_INFO "Intel Performance Monitoring support detected.\n");
649
650 printk(KERN_INFO "... version: %d\n", eax.split.version_id);
651 printk(KERN_INFO "... num counters: %d\n", eax.split.num_counters);
652 nr_counters_generic = eax.split.num_counters;
653 if (nr_counters_generic > X86_PMC_MAX_GENERIC) {
654 nr_counters_generic = X86_PMC_MAX_GENERIC;
655 WARN(1, KERN_ERR "hw perf counters %d > max(%d), clipping!",
656 nr_counters_generic, X86_PMC_MAX_GENERIC);
657 }
658 perf_counter_mask = (1 << nr_counters_generic) - 1;
659 perf_max_counters = nr_counters_generic;
660
661 printk(KERN_INFO "... bit width: %d\n", eax.split.bit_width);
662 counter_value_mask = (1ULL << eax.split.bit_width) - 1;
663 printk(KERN_INFO "... value mask: %016Lx\n", counter_value_mask);
664
665 printk(KERN_INFO "... mask length: %d\n", eax.split.mask_length);
666
667 nr_counters_fixed = edx.split.num_counters_fixed;
668 if (nr_counters_fixed > X86_PMC_MAX_FIXED) {
669 nr_counters_fixed = X86_PMC_MAX_FIXED;
670 WARN(1, KERN_ERR "hw perf counters fixed %d > max(%d), clipping!",
671 nr_counters_fixed, X86_PMC_MAX_FIXED);
672 }
673 printk(KERN_INFO "... fixed counters: %d\n", nr_counters_fixed);
674
675 perf_counter_mask |= ((1LL << nr_counters_fixed)-1) << X86_PMC_IDX_FIXED;
676
677 printk(KERN_INFO "... counter mask: %016Lx\n", perf_counter_mask);
678 perf_counters_initialized = true;
679
680 perf_counters_lapic_init(0);
681 register_die_notifier(&perf_counter_nmi_notifier);
682 }
683
684 static void pmc_generic_read(struct perf_counter *counter)
685 {
686 x86_perf_counter_update(counter, &counter->hw, counter->hw.idx);
687 }
688
689 static const struct hw_perf_counter_ops x86_perf_counter_ops = {
690 .enable = pmc_generic_enable,
691 .disable = pmc_generic_disable,
692 .read = pmc_generic_read,
693 };
694
695 const struct hw_perf_counter_ops *
696 hw_perf_counter_init(struct perf_counter *counter)
697 {
698 int err;
699
700 err = __hw_perf_counter_init(counter);
701 if (err)
702 return NULL;
703
704 return &x86_perf_counter_ops;
705 }
This page took 0.059857 seconds and 6 git commands to generate.