Merge commit 'v2.6.27-rc5' into tip/oprofile
[linux-2.6/mini2440.git] / arch / x86 / oprofile / nmi_int.c
blobd988574107463737a44471b4445f92f16dfd1f9f
1 /**
2 * @file nmi_int.c
4 * @remark Copyright 2002-2008 OProfile authors
5 * @remark Read the file COPYING
7 * @author John Levon <levon@movementarian.org>
8 * @author Robert Richter <robert.richter@amd.com>
9 */
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>
17 #include <linux/moduleparam.h>
18 #include <linux/kdebug.h>
19 #include <linux/cpu.h>
20 #include <asm/nmi.h>
21 #include <asm/msr.h>
22 #include <asm/apic.h>
24 #include "op_counter.h"
25 #include "op_x86_model.h"
27 static struct op_x86_model_spec const *model;
28 static DEFINE_PER_CPU(struct op_msrs, cpu_msrs);
29 static DEFINE_PER_CPU(unsigned long, saved_lvtpc);
31 static int nmi_start(void);
32 static void nmi_stop(void);
33 static void nmi_cpu_start(void *dummy);
34 static void nmi_cpu_stop(void *dummy);
36 /* 0 == registered but off, 1 == registered and on */
37 static int nmi_enabled = 0;
39 #ifdef CONFIG_SMP
40 static int oprofile_cpu_notifier(struct notifier_block *b, unsigned long action,
41 void *data)
43 int cpu = (unsigned long)data;
44 switch (action) {
45 case CPU_DOWN_FAILED:
46 case CPU_ONLINE:
47 smp_call_function_single(cpu, nmi_cpu_start, NULL, 0);
48 break;
49 case CPU_DOWN_PREPARE:
50 smp_call_function_single(cpu, nmi_cpu_stop, NULL, 1);
51 break;
53 return NOTIFY_DONE;
56 static struct notifier_block oprofile_cpu_nb = {
57 .notifier_call = oprofile_cpu_notifier
59 #endif
61 #ifdef CONFIG_PM
63 static int nmi_suspend(struct sys_device *dev, pm_message_t state)
65 /* Only one CPU left, just stop that one */
66 if (nmi_enabled == 1)
67 nmi_cpu_stop(NULL);
68 return 0;
71 static int nmi_resume(struct sys_device *dev)
73 if (nmi_enabled == 1)
74 nmi_cpu_start(NULL);
75 return 0;
78 static struct sysdev_class oprofile_sysclass = {
79 .name = "oprofile",
80 .resume = nmi_resume,
81 .suspend = nmi_suspend,
84 static struct sys_device device_oprofile = {
85 .id = 0,
86 .cls = &oprofile_sysclass,
89 static int __init init_sysfs(void)
91 int error;
93 error = sysdev_class_register(&oprofile_sysclass);
94 if (!error)
95 error = sysdev_register(&device_oprofile);
96 return error;
99 static void exit_sysfs(void)
101 sysdev_unregister(&device_oprofile);
102 sysdev_class_unregister(&oprofile_sysclass);
105 #else
106 #define init_sysfs() do { } while (0)
107 #define exit_sysfs() do { } while (0)
108 #endif /* CONFIG_PM */
110 static int profile_exceptions_notify(struct notifier_block *self,
111 unsigned long val, void *data)
113 struct die_args *args = (struct die_args *)data;
114 int ret = NOTIFY_DONE;
115 int cpu = smp_processor_id();
117 switch (val) {
118 case DIE_NMI:
119 if (model->check_ctrs(args->regs, &per_cpu(cpu_msrs, cpu)))
120 ret = NOTIFY_STOP;
121 break;
122 default:
123 break;
125 return ret;
128 static void nmi_cpu_save_registers(struct op_msrs *msrs)
130 unsigned int const nr_ctrs = model->num_counters;
131 unsigned int const nr_ctrls = model->num_controls;
132 struct op_msr *counters = msrs->counters;
133 struct op_msr *controls = msrs->controls;
134 unsigned int i;
136 for (i = 0; i < nr_ctrs; ++i) {
137 if (counters[i].addr) {
138 rdmsr(counters[i].addr,
139 counters[i].saved.low,
140 counters[i].saved.high);
144 for (i = 0; i < nr_ctrls; ++i) {
145 if (controls[i].addr) {
146 rdmsr(controls[i].addr,
147 controls[i].saved.low,
148 controls[i].saved.high);
153 static void nmi_save_registers(void *dummy)
155 int cpu = smp_processor_id();
156 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
157 nmi_cpu_save_registers(msrs);
160 static void free_msrs(void)
162 int i;
163 for_each_possible_cpu(i) {
164 kfree(per_cpu(cpu_msrs, i).counters);
165 per_cpu(cpu_msrs, i).counters = NULL;
166 kfree(per_cpu(cpu_msrs, i).controls);
167 per_cpu(cpu_msrs, i).controls = NULL;
171 static int allocate_msrs(void)
173 int success = 1;
174 size_t controls_size = sizeof(struct op_msr) * model->num_controls;
175 size_t counters_size = sizeof(struct op_msr) * model->num_counters;
177 int i;
178 for_each_possible_cpu(i) {
179 per_cpu(cpu_msrs, i).counters = kmalloc(counters_size,
180 GFP_KERNEL);
181 if (!per_cpu(cpu_msrs, i).counters) {
182 success = 0;
183 break;
185 per_cpu(cpu_msrs, i).controls = kmalloc(controls_size,
186 GFP_KERNEL);
187 if (!per_cpu(cpu_msrs, i).controls) {
188 success = 0;
189 break;
193 if (!success)
194 free_msrs();
196 return success;
199 static void nmi_cpu_setup(void *dummy)
201 int cpu = smp_processor_id();
202 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
203 spin_lock(&oprofilefs_lock);
204 model->setup_ctrs(msrs);
205 spin_unlock(&oprofilefs_lock);
206 per_cpu(saved_lvtpc, cpu) = apic_read(APIC_LVTPC);
207 apic_write(APIC_LVTPC, APIC_DM_NMI);
210 static struct notifier_block profile_exceptions_nb = {
211 .notifier_call = profile_exceptions_notify,
212 .next = NULL,
213 .priority = 0
216 static int nmi_setup(void)
218 int err = 0;
219 int cpu;
221 if (!allocate_msrs())
222 return -ENOMEM;
224 err = register_die_notifier(&profile_exceptions_nb);
225 if (err) {
226 free_msrs();
227 return err;
230 /* We need to serialize save and setup for HT because the subset
231 * of msrs are distinct for save and setup operations
234 /* Assume saved/restored counters are the same on all CPUs */
235 model->fill_in_addresses(&per_cpu(cpu_msrs, 0));
236 for_each_possible_cpu(cpu) {
237 if (cpu != 0) {
238 memcpy(per_cpu(cpu_msrs, cpu).counters,
239 per_cpu(cpu_msrs, 0).counters,
240 sizeof(struct op_msr) * model->num_counters);
242 memcpy(per_cpu(cpu_msrs, cpu).controls,
243 per_cpu(cpu_msrs, 0).controls,
244 sizeof(struct op_msr) * model->num_controls);
248 on_each_cpu(nmi_save_registers, NULL, 1);
249 on_each_cpu(nmi_cpu_setup, NULL, 1);
250 nmi_enabled = 1;
251 return 0;
254 static void nmi_restore_registers(struct op_msrs *msrs)
256 unsigned int const nr_ctrs = model->num_counters;
257 unsigned int const nr_ctrls = model->num_controls;
258 struct op_msr *counters = msrs->counters;
259 struct op_msr *controls = msrs->controls;
260 unsigned int i;
262 for (i = 0; i < nr_ctrls; ++i) {
263 if (controls[i].addr) {
264 wrmsr(controls[i].addr,
265 controls[i].saved.low,
266 controls[i].saved.high);
270 for (i = 0; i < nr_ctrs; ++i) {
271 if (counters[i].addr) {
272 wrmsr(counters[i].addr,
273 counters[i].saved.low,
274 counters[i].saved.high);
279 static void nmi_cpu_shutdown(void *dummy)
281 unsigned int v;
282 int cpu = smp_processor_id();
283 struct op_msrs *msrs = &__get_cpu_var(cpu_msrs);
285 /* restoring APIC_LVTPC can trigger an apic error because the delivery
286 * mode and vector nr combination can be illegal. That's by design: on
287 * power on apic lvt contain a zero vector nr which are legal only for
288 * NMI delivery mode. So inhibit apic err before restoring lvtpc
290 v = apic_read(APIC_LVTERR);
291 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
292 apic_write(APIC_LVTPC, per_cpu(saved_lvtpc, cpu));
293 apic_write(APIC_LVTERR, v);
294 nmi_restore_registers(msrs);
297 static void nmi_shutdown(void)
299 struct op_msrs *msrs = &get_cpu_var(cpu_msrs);
300 nmi_enabled = 0;
301 on_each_cpu(nmi_cpu_shutdown, NULL, 1);
302 unregister_die_notifier(&profile_exceptions_nb);
303 model->shutdown(msrs);
304 free_msrs();
305 put_cpu_var(cpu_msrs);
308 static void nmi_cpu_start(void *dummy)
310 struct op_msrs const *msrs = &__get_cpu_var(cpu_msrs);
311 model->start(msrs);
314 static int nmi_start(void)
316 on_each_cpu(nmi_cpu_start, NULL, 1);
317 return 0;
320 static void nmi_cpu_stop(void *dummy)
322 struct op_msrs const *msrs = &__get_cpu_var(cpu_msrs);
323 model->stop(msrs);
326 static void nmi_stop(void)
328 on_each_cpu(nmi_cpu_stop, NULL, 1);
331 struct op_counter_config counter_config[OP_MAX_COUNTER];
333 static int nmi_create_files(struct super_block *sb, struct dentry *root)
335 unsigned int i;
337 for (i = 0; i < model->num_counters; ++i) {
338 struct dentry *dir;
339 char buf[4];
341 /* quick little hack to _not_ expose a counter if it is not
342 * available for use. This should protect userspace app.
343 * NOTE: assumes 1:1 mapping here (that counters are organized
344 * sequentially in their struct assignment).
346 if (unlikely(!avail_to_resrv_perfctr_nmi_bit(i)))
347 continue;
349 snprintf(buf, sizeof(buf), "%d", i);
350 dir = oprofilefs_mkdir(sb, root, buf);
351 oprofilefs_create_ulong(sb, dir, "enabled", &counter_config[i].enabled);
352 oprofilefs_create_ulong(sb, dir, "event", &counter_config[i].event);
353 oprofilefs_create_ulong(sb, dir, "count", &counter_config[i].count);
354 oprofilefs_create_ulong(sb, dir, "unit_mask", &counter_config[i].unit_mask);
355 oprofilefs_create_ulong(sb, dir, "kernel", &counter_config[i].kernel);
356 oprofilefs_create_ulong(sb, dir, "user", &counter_config[i].user);
359 return 0;
362 static int p4force;
363 module_param(p4force, int, 0);
365 static int __init p4_init(char **cpu_type)
367 __u8 cpu_model = boot_cpu_data.x86_model;
369 if (!p4force && (cpu_model > 6 || cpu_model == 5))
370 return 0;
372 #ifndef CONFIG_SMP
373 *cpu_type = "i386/p4";
374 model = &op_p4_spec;
375 return 1;
376 #else
377 switch (smp_num_siblings) {
378 case 1:
379 *cpu_type = "i386/p4";
380 model = &op_p4_spec;
381 return 1;
383 case 2:
384 *cpu_type = "i386/p4-ht";
385 model = &op_p4_ht2_spec;
386 return 1;
388 #endif
390 printk(KERN_INFO "oprofile: P4 HyperThreading detected with > 2 threads\n");
391 printk(KERN_INFO "oprofile: Reverting to timer mode.\n");
392 return 0;
395 static int __init ppro_init(char **cpu_type)
397 __u8 cpu_model = boot_cpu_data.x86_model;
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:
407 *cpu_type = "i386/piii";
408 break;
409 case 9:
410 *cpu_type = "i386/p6_mobile";
411 break;
412 case 10 ... 13:
413 *cpu_type = "i386/p6";
414 break;
415 case 14:
416 *cpu_type = "i386/core";
417 break;
418 case 15: case 23:
419 *cpu_type = "i386/core_2";
420 break;
421 case 26:
422 *cpu_type = "i386/core_2";
423 break;
424 default:
425 /* Unknown */
426 return 0;
429 model = &op_ppro_spec;
430 return 1;
433 /* in order to get sysfs right */
434 static int using_nmi;
436 int __init op_nmi_init(struct oprofile_operations *ops)
438 __u8 vendor = boot_cpu_data.x86_vendor;
439 __u8 family = boot_cpu_data.x86;
440 char *cpu_type;
441 int ret = 0;
443 if (!cpu_has_apic)
444 return -ENODEV;
446 switch (vendor) {
447 case X86_VENDOR_AMD:
448 /* Needs to be at least an Athlon (or hammer in 32bit mode) */
450 switch (family) {
451 default:
452 return -ENODEV;
453 case 6:
454 model = &op_amd_spec;
455 cpu_type = "i386/athlon";
456 break;
457 case 0xf:
458 model = &op_amd_spec;
459 /* Actually it could be i386/hammer too, but give
460 user space an consistent name. */
461 cpu_type = "x86-64/hammer";
462 break;
463 case 0x10:
464 model = &op_amd_spec;
465 cpu_type = "x86-64/family10";
466 break;
467 case 0x11:
468 model = &op_amd_spec;
469 cpu_type = "x86-64/family11h";
470 break;
472 break;
474 case X86_VENDOR_INTEL:
475 switch (family) {
476 /* Pentium IV */
477 case 0xf:
478 if (!p4_init(&cpu_type))
479 return -ENODEV;
480 break;
482 /* A P6-class processor */
483 case 6:
484 if (!ppro_init(&cpu_type))
485 return -ENODEV;
486 break;
488 default:
489 return -ENODEV;
491 break;
493 default:
494 return -ENODEV;
497 #ifdef CONFIG_SMP
498 register_cpu_notifier(&oprofile_cpu_nb);
499 #endif
500 /* default values, can be overwritten by model */
501 ops->create_files = nmi_create_files;
502 ops->setup = nmi_setup;
503 ops->shutdown = nmi_shutdown;
504 ops->start = nmi_start;
505 ops->stop = nmi_stop;
506 ops->cpu_type = cpu_type;
508 if (model->init)
509 ret = model->init(ops);
510 if (ret)
511 return ret;
513 init_sysfs();
514 using_nmi = 1;
515 printk(KERN_INFO "oprofile: using NMI interrupt.\n");
516 return 0;
519 void op_nmi_exit(void)
521 if (using_nmi) {
522 exit_sysfs();
523 #ifdef CONFIG_SMP
524 unregister_cpu_notifier(&oprofile_cpu_nb);
525 #endif
527 if (model->exit)
528 model->exit();