oprofile: remove undocumented oprofile.p4force option
[deliverable/linux.git] / arch / x86 / oprofile / nmi_int.c
CommitLineData
1da177e4
LT
1/**
2 * @file nmi_int.c
3 *
adf5ec0b 4 * @remark Copyright 2002-2008 OProfile authors
1da177e4
LT
5 * @remark Read the file COPYING
6 *
7 * @author John Levon <levon@movementarian.org>
adf5ec0b 8 * @author Robert Richter <robert.richter@amd.com>
1da177e4
LT
9 */
10
11#include <linux/init.h>
12#include <linux/notifier.h>
13#include <linux/smp.h>
14#include <linux/oprofile.h>
15#include <linux/sysdev.h>
16#include <linux/slab.h>
1cfcea1b 17#include <linux/moduleparam.h>
1eeb66a1 18#include <linux/kdebug.h>
80a8c9ff 19#include <linux/cpu.h>
1da177e4
LT
20#include <asm/nmi.h>
21#include <asm/msr.h>
22#include <asm/apic.h>
b75f53db 23
1da177e4
LT
24#include "op_counter.h"
25#include "op_x86_model.h"
2fbe7b25 26
b75f53db 27static struct op_x86_model_spec const *model;
d18d00f5
MT
28static DEFINE_PER_CPU(struct op_msrs, cpu_msrs);
29static DEFINE_PER_CPU(unsigned long, saved_lvtpc);
2fbe7b25 30
1da177e4
LT
31/* 0 == registered but off, 1 == registered and on */
32static int nmi_enabled = 0;
33
c7c19f8e
AB
34static int profile_exceptions_notify(struct notifier_block *self,
35 unsigned long val, void *data)
1da177e4 36{
2fbe7b25
DZ
37 struct die_args *args = (struct die_args *)data;
38 int ret = NOTIFY_DONE;
39 int cpu = smp_processor_id();
40
b75f53db 41 switch (val) {
2fbe7b25 42 case DIE_NMI:
d18d00f5 43 if (model->check_ctrs(args->regs, &per_cpu(cpu_msrs, cpu)))
2fbe7b25
DZ
44 ret = NOTIFY_STOP;
45 break;
46 default:
47 break;
48 }
49 return ret;
1da177e4 50}
2fbe7b25 51
b75f53db 52static void nmi_cpu_save_registers(struct op_msrs *msrs)
1da177e4
LT
53{
54 unsigned int const nr_ctrs = model->num_counters;
b75f53db
CM
55 unsigned int const nr_ctrls = model->num_controls;
56 struct op_msr *counters = msrs->counters;
57 struct op_msr *controls = msrs->controls;
1da177e4
LT
58 unsigned int i;
59
60 for (i = 0; i < nr_ctrs; ++i) {
b75f53db 61 if (counters[i].addr) {
cb9c448c
DZ
62 rdmsr(counters[i].addr,
63 counters[i].saved.low,
64 counters[i].saved.high);
65 }
1da177e4 66 }
b75f53db 67
1da177e4 68 for (i = 0; i < nr_ctrls; ++i) {
b75f53db 69 if (controls[i].addr) {
cb9c448c
DZ
70 rdmsr(controls[i].addr,
71 controls[i].saved.low,
72 controls[i].saved.high);
73 }
1da177e4
LT
74 }
75}
76
b75f53db 77static void nmi_save_registers(void *dummy)
1da177e4
LT
78{
79 int cpu = smp_processor_id();
d18d00f5 80 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
1da177e4
LT
81 nmi_cpu_save_registers(msrs);
82}
83
1da177e4
LT
84static void free_msrs(void)
85{
86 int i;
c8912599 87 for_each_possible_cpu(i) {
d18d00f5
MT
88 kfree(per_cpu(cpu_msrs, i).counters);
89 per_cpu(cpu_msrs, i).counters = NULL;
90 kfree(per_cpu(cpu_msrs, i).controls);
91 per_cpu(cpu_msrs, i).controls = NULL;
1da177e4
LT
92 }
93}
94
1da177e4
LT
95static int allocate_msrs(void)
96{
4c168eaf 97 int success = 1;
1da177e4
LT
98 size_t controls_size = sizeof(struct op_msr) * model->num_controls;
99 size_t counters_size = sizeof(struct op_msr) * model->num_counters;
100
4c168eaf 101 int i;
0939c17c 102 for_each_possible_cpu(i) {
d18d00f5
MT
103 per_cpu(cpu_msrs, i).counters = kmalloc(counters_size,
104 GFP_KERNEL);
105 if (!per_cpu(cpu_msrs, i).counters) {
1da177e4
LT
106 success = 0;
107 break;
108 }
4c168eaf
RR
109 per_cpu(cpu_msrs, i).controls = kmalloc(controls_size,
110 GFP_KERNEL);
d18d00f5 111 if (!per_cpu(cpu_msrs, i).controls) {
1da177e4
LT
112 success = 0;
113 break;
114 }
115 }
116
117 if (!success)
118 free_msrs();
119
120 return success;
121}
122
b75f53db 123static void nmi_cpu_setup(void *dummy)
1da177e4
LT
124{
125 int cpu = smp_processor_id();
d18d00f5 126 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
1da177e4
LT
127 spin_lock(&oprofilefs_lock);
128 model->setup_ctrs(msrs);
129 spin_unlock(&oprofilefs_lock);
d18d00f5 130 per_cpu(saved_lvtpc, cpu) = apic_read(APIC_LVTPC);
1da177e4
LT
131 apic_write(APIC_LVTPC, APIC_DM_NMI);
132}
133
2fbe7b25
DZ
134static struct notifier_block profile_exceptions_nb = {
135 .notifier_call = profile_exceptions_notify,
136 .next = NULL,
137 .priority = 0
138};
1da177e4
LT
139
140static int nmi_setup(void)
141{
b75f53db 142 int err = 0;
6c977aad 143 int cpu;
2fbe7b25 144
1da177e4
LT
145 if (!allocate_msrs())
146 return -ENOMEM;
147
b75f53db
CM
148 err = register_die_notifier(&profile_exceptions_nb);
149 if (err) {
1da177e4 150 free_msrs();
2fbe7b25 151 return err;
1da177e4 152 }
2fbe7b25 153
4c168eaf 154 /* We need to serialize save and setup for HT because the subset
1da177e4
LT
155 * of msrs are distinct for save and setup operations
156 */
6c977aad
AK
157
158 /* Assume saved/restored counters are the same on all CPUs */
d18d00f5 159 model->fill_in_addresses(&per_cpu(cpu_msrs, 0));
b75f53db 160 for_each_possible_cpu(cpu) {
0939c17c 161 if (cpu != 0) {
d18d00f5
MT
162 memcpy(per_cpu(cpu_msrs, cpu).counters,
163 per_cpu(cpu_msrs, 0).counters,
0939c17c
CW
164 sizeof(struct op_msr) * model->num_counters);
165
d18d00f5
MT
166 memcpy(per_cpu(cpu_msrs, cpu).controls,
167 per_cpu(cpu_msrs, 0).controls,
0939c17c
CW
168 sizeof(struct op_msr) * model->num_controls);
169 }
4c168eaf 170
6c977aad 171 }
15c8b6c1
JA
172 on_each_cpu(nmi_save_registers, NULL, 1);
173 on_each_cpu(nmi_cpu_setup, NULL, 1);
1da177e4
LT
174 nmi_enabled = 1;
175 return 0;
176}
177
4c168eaf 178static void nmi_restore_registers(struct op_msrs *msrs)
1da177e4
LT
179{
180 unsigned int const nr_ctrs = model->num_counters;
b75f53db
CM
181 unsigned int const nr_ctrls = model->num_controls;
182 struct op_msr *counters = msrs->counters;
183 struct op_msr *controls = msrs->controls;
1da177e4
LT
184 unsigned int i;
185
186 for (i = 0; i < nr_ctrls; ++i) {
b75f53db 187 if (controls[i].addr) {
cb9c448c
DZ
188 wrmsr(controls[i].addr,
189 controls[i].saved.low,
190 controls[i].saved.high);
191 }
1da177e4 192 }
b75f53db 193
1da177e4 194 for (i = 0; i < nr_ctrs; ++i) {
b75f53db 195 if (counters[i].addr) {
cb9c448c
DZ
196 wrmsr(counters[i].addr,
197 counters[i].saved.low,
198 counters[i].saved.high);
199 }
1da177e4
LT
200 }
201}
1da177e4 202
b75f53db 203static void nmi_cpu_shutdown(void *dummy)
1da177e4
LT
204{
205 unsigned int v;
206 int cpu = smp_processor_id();
d18d00f5 207 struct op_msrs *msrs = &__get_cpu_var(cpu_msrs);
b75f53db 208
1da177e4
LT
209 /* restoring APIC_LVTPC can trigger an apic error because the delivery
210 * mode and vector nr combination can be illegal. That's by design: on
211 * power on apic lvt contain a zero vector nr which are legal only for
212 * NMI delivery mode. So inhibit apic err before restoring lvtpc
213 */
214 v = apic_read(APIC_LVTERR);
215 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
d18d00f5 216 apic_write(APIC_LVTPC, per_cpu(saved_lvtpc, cpu));
1da177e4 217 apic_write(APIC_LVTERR, v);
4c168eaf 218 nmi_restore_registers(msrs);
1da177e4
LT
219}
220
1da177e4
LT
221static void nmi_shutdown(void)
222{
b61e06f2
AR
223 struct op_msrs *msrs;
224
1da177e4 225 nmi_enabled = 0;
15c8b6c1 226 on_each_cpu(nmi_cpu_shutdown, NULL, 1);
2fbe7b25 227 unregister_die_notifier(&profile_exceptions_nb);
b61e06f2 228 msrs = &get_cpu_var(cpu_msrs);
d18d00f5 229 model->shutdown(msrs);
1da177e4 230 free_msrs();
93e1ade5 231 put_cpu_var(cpu_msrs);
1da177e4
LT
232}
233
b75f53db 234static void nmi_cpu_start(void *dummy)
1da177e4 235{
d18d00f5 236 struct op_msrs const *msrs = &__get_cpu_var(cpu_msrs);
1da177e4
LT
237 model->start(msrs);
238}
1da177e4
LT
239
240static int nmi_start(void)
241{
15c8b6c1 242 on_each_cpu(nmi_cpu_start, NULL, 1);
1da177e4
LT
243 return 0;
244}
b75f53db
CM
245
246static void nmi_cpu_stop(void *dummy)
1da177e4 247{
d18d00f5 248 struct op_msrs const *msrs = &__get_cpu_var(cpu_msrs);
1da177e4
LT
249 model->stop(msrs);
250}
b75f53db 251
1da177e4
LT
252static void nmi_stop(void)
253{
15c8b6c1 254 on_each_cpu(nmi_cpu_stop, NULL, 1);
1da177e4
LT
255}
256
1da177e4
LT
257struct op_counter_config counter_config[OP_MAX_COUNTER];
258
b75f53db 259static int nmi_create_files(struct super_block *sb, struct dentry *root)
1da177e4
LT
260{
261 unsigned int i;
262
263 for (i = 0; i < model->num_counters; ++i) {
b75f53db 264 struct dentry *dir;
0c6856f7 265 char buf[4];
b75f53db
CM
266
267 /* quick little hack to _not_ expose a counter if it is not
cb9c448c
DZ
268 * available for use. This should protect userspace app.
269 * NOTE: assumes 1:1 mapping here (that counters are organized
270 * sequentially in their struct assignment).
271 */
272 if (unlikely(!avail_to_resrv_perfctr_nmi_bit(i)))
273 continue;
274
0c6856f7 275 snprintf(buf, sizeof(buf), "%d", i);
1da177e4 276 dir = oprofilefs_mkdir(sb, root, buf);
b75f53db
CM
277 oprofilefs_create_ulong(sb, dir, "enabled", &counter_config[i].enabled);
278 oprofilefs_create_ulong(sb, dir, "event", &counter_config[i].event);
279 oprofilefs_create_ulong(sb, dir, "count", &counter_config[i].count);
280 oprofilefs_create_ulong(sb, dir, "unit_mask", &counter_config[i].unit_mask);
281 oprofilefs_create_ulong(sb, dir, "kernel", &counter_config[i].kernel);
282 oprofilefs_create_ulong(sb, dir, "user", &counter_config[i].user);
1da177e4
LT
283 }
284
285 return 0;
286}
b75f53db 287
69046d43
RR
288#ifdef CONFIG_SMP
289static int oprofile_cpu_notifier(struct notifier_block *b, unsigned long action,
290 void *data)
291{
292 int cpu = (unsigned long)data;
293 switch (action) {
294 case CPU_DOWN_FAILED:
295 case CPU_ONLINE:
296 smp_call_function_single(cpu, nmi_cpu_start, NULL, 0);
297 break;
298 case CPU_DOWN_PREPARE:
299 smp_call_function_single(cpu, nmi_cpu_stop, NULL, 1);
300 break;
301 }
302 return NOTIFY_DONE;
303}
304
305static struct notifier_block oprofile_cpu_nb = {
306 .notifier_call = oprofile_cpu_notifier
307};
308#endif
309
310#ifdef CONFIG_PM
311
312static int nmi_suspend(struct sys_device *dev, pm_message_t state)
313{
314 /* Only one CPU left, just stop that one */
315 if (nmi_enabled == 1)
316 nmi_cpu_stop(NULL);
317 return 0;
318}
319
320static int nmi_resume(struct sys_device *dev)
321{
322 if (nmi_enabled == 1)
323 nmi_cpu_start(NULL);
324 return 0;
325}
326
327static struct sysdev_class oprofile_sysclass = {
328 .name = "oprofile",
329 .resume = nmi_resume,
330 .suspend = nmi_suspend,
331};
332
333static struct sys_device device_oprofile = {
334 .id = 0,
335 .cls = &oprofile_sysclass,
336};
337
338static int __init init_sysfs(void)
339{
340 int error;
341
342 error = sysdev_class_register(&oprofile_sysclass);
343 if (!error)
344 error = sysdev_register(&device_oprofile);
345 return error;
346}
347
348static void exit_sysfs(void)
349{
350 sysdev_unregister(&device_oprofile);
351 sysdev_class_unregister(&oprofile_sysclass);
352}
353
354#else
355#define init_sysfs() do { } while (0)
356#define exit_sysfs() do { } while (0)
357#endif /* CONFIG_PM */
358
b75f53db 359static int __init p4_init(char **cpu_type)
1da177e4
LT
360{
361 __u8 cpu_model = boot_cpu_data.x86_model;
362
1f3d7b60 363 if (cpu_model > 6 || cpu_model == 5)
1da177e4
LT
364 return 0;
365
366#ifndef CONFIG_SMP
367 *cpu_type = "i386/p4";
368 model = &op_p4_spec;
369 return 1;
370#else
371 switch (smp_num_siblings) {
b75f53db
CM
372 case 1:
373 *cpu_type = "i386/p4";
374 model = &op_p4_spec;
375 return 1;
376
377 case 2:
378 *cpu_type = "i386/p4-ht";
379 model = &op_p4_ht2_spec;
380 return 1;
1da177e4
LT
381 }
382#endif
383
384 printk(KERN_INFO "oprofile: P4 HyperThreading detected with > 2 threads\n");
385 printk(KERN_INFO "oprofile: Reverting to timer mode.\n");
386 return 0;
387}
388
1dcdb5a9
AK
389int force_arch_perfmon;
390module_param(force_arch_perfmon, int, 0);
391
b75f53db 392static int __init ppro_init(char **cpu_type)
1da177e4
LT
393{
394 __u8 cpu_model = boot_cpu_data.x86_model;
395
1dcdb5a9
AK
396 if (force_arch_perfmon && cpu_has_arch_perfmon)
397 return 0;
398
4b9f12a3
LT
399 switch (cpu_model) {
400 case 0 ... 2:
401 *cpu_type = "i386/ppro";
402 break;
403 case 3 ... 5:
404 *cpu_type = "i386/pii";
405 break;
406 case 6 ... 8:
3d337c65 407 case 10 ... 11:
4b9f12a3
LT
408 *cpu_type = "i386/piii";
409 break;
410 case 9:
3d337c65 411 case 13:
4b9f12a3
LT
412 *cpu_type = "i386/p6_mobile";
413 break;
4b9f12a3 414 case 14:
64471ebe 415 *cpu_type = "i386/core";
4b9f12a3
LT
416 break;
417 case 15: case 23:
418 *cpu_type = "i386/core_2";
419 break;
4b9f12a3
LT
420 default:
421 /* Unknown */
1da177e4 422 return 0;
1da177e4
LT
423 }
424
425 model = &op_ppro_spec;
426 return 1;
427}
428
b9917028
AK
429static int __init arch_perfmon_init(char **cpu_type)
430{
431 if (!cpu_has_arch_perfmon)
432 return 0;
433 *cpu_type = "i386/arch_perfmon";
434 model = &op_arch_perfmon_spec;
435 arch_perfmon_setup_counters();
436 return 1;
437}
438
405ae7d3 439/* in order to get sysfs right */
1da177e4
LT
440static int using_nmi;
441
96d0821c 442int __init op_nmi_init(struct oprofile_operations *ops)
1da177e4
LT
443{
444 __u8 vendor = boot_cpu_data.x86_vendor;
445 __u8 family = boot_cpu_data.x86;
b9917028 446 char *cpu_type = NULL;
adf5ec0b 447 int ret = 0;
1da177e4
LT
448
449 if (!cpu_has_apic)
450 return -ENODEV;
b75f53db 451
1da177e4 452 switch (vendor) {
b75f53db
CM
453 case X86_VENDOR_AMD:
454 /* Needs to be at least an Athlon (or hammer in 32bit mode) */
1da177e4 455
b75f53db
CM
456 switch (family) {
457 default:
458 return -ENODEV;
459 case 6:
6657fe4f 460 model = &op_amd_spec;
b75f53db
CM
461 cpu_type = "i386/athlon";
462 break;
463 case 0xf:
6657fe4f 464 model = &op_amd_spec;
b75f53db
CM
465 /* Actually it could be i386/hammer too, but give
466 user space an consistent name. */
467 cpu_type = "x86-64/hammer";
468 break;
469 case 0x10:
6657fe4f 470 model = &op_amd_spec;
b75f53db
CM
471 cpu_type = "x86-64/family10";
472 break;
12f2b261 473 case 0x11:
6657fe4f 474 model = &op_amd_spec;
12f2b261
BK
475 cpu_type = "x86-64/family11h";
476 break;
b75f53db
CM
477 }
478 break;
479
480 case X86_VENDOR_INTEL:
481 switch (family) {
482 /* Pentium IV */
483 case 0xf:
b9917028 484 p4_init(&cpu_type);
1da177e4 485 break;
b75f53db
CM
486
487 /* A P6-class processor */
488 case 6:
b9917028 489 ppro_init(&cpu_type);
1da177e4
LT
490 break;
491
492 default:
b9917028 493 break;
b75f53db 494 }
b9917028
AK
495
496 if (!cpu_type && !arch_perfmon_init(&cpu_type))
497 return -ENODEV;
b75f53db
CM
498 break;
499
500 default:
501 return -ENODEV;
1da177e4
LT
502 }
503
80a8c9ff
AK
504#ifdef CONFIG_SMP
505 register_cpu_notifier(&oprofile_cpu_nb);
506#endif
270d3e1a
RR
507 /* default values, can be overwritten by model */
508 ops->create_files = nmi_create_files;
509 ops->setup = nmi_setup;
510 ops->shutdown = nmi_shutdown;
511 ops->start = nmi_start;
512 ops->stop = nmi_stop;
513 ops->cpu_type = cpu_type;
514
adf5ec0b
RR
515 if (model->init)
516 ret = model->init(ops);
517 if (ret)
518 return ret;
519
405ae7d3 520 init_sysfs();
1da177e4 521 using_nmi = 1;
1da177e4
LT
522 printk(KERN_INFO "oprofile: using NMI interrupt.\n");
523 return 0;
524}
525
96d0821c 526void op_nmi_exit(void)
1da177e4 527{
80a8c9ff 528 if (using_nmi) {
405ae7d3 529 exit_sysfs();
80a8c9ff
AK
530#ifdef CONFIG_SMP
531 unregister_cpu_notifier(&oprofile_cpu_nb);
532#endif
533 }
adf5ec0b
RR
534 if (model->exit)
535 model->exit();
1da177e4 536}
This page took 0.650113 seconds and 5 git commands to generate.