x86/oprofile: Implement mux_clone()
[deliverable/linux.git] / arch / x86 / oprofile / nmi_int.c
CommitLineData
1da177e4
LT
1/**
2 * @file nmi_int.c
3 *
4d4036e0 4 * @remark Copyright 2002-2009 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>
4d4036e0
JY
9 * @author Barry Kasindorf <barry.kasindorf@amd.com>
10 * @author Jason Yeh <jason.yeh@amd.com>
11 * @author Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1da177e4
LT
12 */
13
14#include <linux/init.h>
15#include <linux/notifier.h>
16#include <linux/smp.h>
17#include <linux/oprofile.h>
18#include <linux/sysdev.h>
19#include <linux/slab.h>
1cfcea1b 20#include <linux/moduleparam.h>
1eeb66a1 21#include <linux/kdebug.h>
80a8c9ff 22#include <linux/cpu.h>
1da177e4
LT
23#include <asm/nmi.h>
24#include <asm/msr.h>
25#include <asm/apic.h>
b75f53db 26
1da177e4
LT
27#include "op_counter.h"
28#include "op_x86_model.h"
2fbe7b25 29
259a83a8 30static struct op_x86_model_spec *model;
d18d00f5
MT
31static DEFINE_PER_CPU(struct op_msrs, cpu_msrs);
32static DEFINE_PER_CPU(unsigned long, saved_lvtpc);
2fbe7b25 33
1da177e4
LT
34/* 0 == registered but off, 1 == registered and on */
35static int nmi_enabled = 0;
36
4d4036e0
JY
37
38#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
39extern atomic_t multiplex_counter;
40#endif
41
42struct op_counter_config counter_config[OP_MAX_COUNTER];
43
3370d358
RR
44/* common functions */
45
46u64 op_x86_get_ctrl(struct op_x86_model_spec const *model,
47 struct op_counter_config *counter_config)
48{
49 u64 val = 0;
50 u16 event = (u16)counter_config->event;
51
52 val |= ARCH_PERFMON_EVENTSEL_INT;
53 val |= counter_config->user ? ARCH_PERFMON_EVENTSEL_USR : 0;
54 val |= counter_config->kernel ? ARCH_PERFMON_EVENTSEL_OS : 0;
55 val |= (counter_config->unit_mask & 0xFF) << 8;
56 event &= model->event_mask ? model->event_mask : 0xFF;
57 val |= event & 0xFF;
58 val |= (event & 0x0F00) << 24;
59
60 return val;
61}
62
63
c7c19f8e
AB
64static int profile_exceptions_notify(struct notifier_block *self,
65 unsigned long val, void *data)
1da177e4 66{
2fbe7b25
DZ
67 struct die_args *args = (struct die_args *)data;
68 int ret = NOTIFY_DONE;
69 int cpu = smp_processor_id();
70
b75f53db 71 switch (val) {
2fbe7b25 72 case DIE_NMI:
5b75af0a
MG
73 case DIE_NMI_IPI:
74 model->check_ctrs(args->regs, &per_cpu(cpu_msrs, cpu));
75 ret = NOTIFY_STOP;
2fbe7b25
DZ
76 break;
77 default:
78 break;
79 }
80 return ret;
1da177e4 81}
2fbe7b25 82
b75f53db 83static void nmi_cpu_save_registers(struct op_msrs *msrs)
1da177e4 84{
b75f53db
CM
85 struct op_msr *counters = msrs->counters;
86 struct op_msr *controls = msrs->controls;
1da177e4
LT
87 unsigned int i;
88
1a245c45 89 for (i = 0; i < model->num_counters; ++i) {
95e74e62
RR
90 if (counters[i].addr)
91 rdmsrl(counters[i].addr, counters[i].saved);
1da177e4 92 }
b75f53db 93
1a245c45 94 for (i = 0; i < model->num_controls; ++i) {
95e74e62
RR
95 if (controls[i].addr)
96 rdmsrl(controls[i].addr, controls[i].saved);
1da177e4
LT
97 }
98}
99
b28d1b92
RR
100static void nmi_cpu_start(void *dummy)
101{
102 struct op_msrs const *msrs = &__get_cpu_var(cpu_msrs);
103 model->start(msrs);
104}
105
106static int nmi_start(void)
107{
108 on_each_cpu(nmi_cpu_start, NULL, 1);
109 return 0;
110}
111
112static void nmi_cpu_stop(void *dummy)
113{
114 struct op_msrs const *msrs = &__get_cpu_var(cpu_msrs);
115 model->stop(msrs);
116}
117
118static void nmi_stop(void)
119{
120 on_each_cpu(nmi_cpu_stop, NULL, 1);
121}
122
d8471ad3
RR
123#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
124
125static DEFINE_PER_CPU(int, switch_index);
126
39e97f40
RR
127static inline int has_mux(void)
128{
129 return !!model->switch_ctrl;
130}
131
d8471ad3
RR
132inline int op_x86_phys_to_virt(int phys)
133{
134 return __get_cpu_var(switch_index) + phys;
135}
136
6ab82f95
RR
137static void nmi_shutdown_mux(void)
138{
139 int i;
39e97f40
RR
140
141 if (!has_mux())
142 return;
143
6ab82f95
RR
144 for_each_possible_cpu(i) {
145 kfree(per_cpu(cpu_msrs, i).multiplex);
146 per_cpu(cpu_msrs, i).multiplex = NULL;
147 per_cpu(switch_index, i) = 0;
148 }
149}
150
151static int nmi_setup_mux(void)
152{
153 size_t multiplex_size =
154 sizeof(struct op_msr) * model->num_virt_counters;
155 int i;
39e97f40
RR
156
157 if (!has_mux())
158 return 1;
159
6ab82f95
RR
160 for_each_possible_cpu(i) {
161 per_cpu(cpu_msrs, i).multiplex =
162 kmalloc(multiplex_size, GFP_KERNEL);
163 if (!per_cpu(cpu_msrs, i).multiplex)
164 return 0;
165 }
39e97f40 166
6ab82f95
RR
167 return 1;
168}
169
48fb4b46
RR
170static void nmi_cpu_setup_mux(int cpu, struct op_msrs const * const msrs)
171{
172 int i;
173 struct op_msr *multiplex = msrs->multiplex;
174
39e97f40
RR
175 if (!has_mux())
176 return;
177
48fb4b46
RR
178 for (i = 0; i < model->num_virt_counters; ++i) {
179 if (counter_config[i].enabled) {
180 multiplex[i].saved = -(u64)counter_config[i].count;
181 } else {
182 multiplex[i].addr = 0;
183 multiplex[i].saved = 0;
184 }
185 }
186
187 per_cpu(switch_index, cpu) = 0;
188}
189
d0f585dd
RR
190static void nmi_cpu_save_mpx_registers(struct op_msrs *msrs)
191{
192 struct op_msr *multiplex = msrs->multiplex;
193 int i;
194
195 for (i = 0; i < model->num_counters; ++i) {
196 int virt = op_x86_phys_to_virt(i);
197 if (multiplex[virt].addr)
198 rdmsrl(multiplex[virt].addr, multiplex[virt].saved);
199 }
200}
201
202static void nmi_cpu_restore_mpx_registers(struct op_msrs *msrs)
203{
204 struct op_msr *multiplex = msrs->multiplex;
205 int i;
206
207 for (i = 0; i < model->num_counters; ++i) {
208 int virt = op_x86_phys_to_virt(i);
209 if (multiplex[virt].addr)
210 wrmsrl(multiplex[virt].addr, multiplex[virt].saved);
211 }
212}
213
b28d1b92
RR
214static void nmi_cpu_switch(void *dummy)
215{
216 int cpu = smp_processor_id();
217 int si = per_cpu(switch_index, cpu);
218 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
219
220 nmi_cpu_stop(NULL);
221 nmi_cpu_save_mpx_registers(msrs);
222
223 /* move to next set */
224 si += model->num_counters;
225 if ((si > model->num_virt_counters) || (counter_config[si].count == 0))
226 per_cpu(switch_index, cpu) = 0;
227 else
228 per_cpu(switch_index, cpu) = si;
229
230 model->switch_ctrl(model, msrs);
231 nmi_cpu_restore_mpx_registers(msrs);
232
233 nmi_cpu_start(NULL);
234}
235
236
237/*
238 * Quick check to see if multiplexing is necessary.
239 * The check should be sufficient since counters are used
240 * in ordre.
241 */
242static int nmi_multiplex_on(void)
243{
244 return counter_config[model->num_counters].count ? 0 : -EINVAL;
245}
246
247static int nmi_switch_event(void)
248{
39e97f40 249 if (!has_mux())
b28d1b92
RR
250 return -ENOSYS; /* not implemented */
251 if (nmi_multiplex_on() < 0)
252 return -EINVAL; /* not necessary */
253
254 on_each_cpu(nmi_cpu_switch, NULL, 1);
255
256 atomic_inc(&multiplex_counter);
257
258 return 0;
259}
260
52805144
RR
261static inline void mux_init(struct oprofile_operations *ops)
262{
263 if (has_mux())
264 ops->switch_events = nmi_switch_event;
265}
266
4d015f79
RR
267static void mux_clone(int cpu)
268{
269 if (!has_mux())
270 return;
271
272 memcpy(per_cpu(cpu_msrs, cpu).multiplex,
273 per_cpu(cpu_msrs, 0).multiplex,
274 sizeof(struct op_msr) * model->num_virt_counters);
275}
276
d8471ad3
RR
277#else
278
279inline int op_x86_phys_to_virt(int phys) { return phys; }
6ab82f95
RR
280static inline void nmi_shutdown_mux(void) { }
281static inline int nmi_setup_mux(void) { return 1; }
48fb4b46
RR
282static inline void
283nmi_cpu_setup_mux(int cpu, struct op_msrs const * const msrs) { }
52805144 284static inline void mux_init(struct oprofile_operations *ops) { }
4d015f79 285static void mux_clone(int cpu) { }
d8471ad3
RR
286
287#endif
288
1da177e4
LT
289static void free_msrs(void)
290{
291 int i;
c8912599 292 for_each_possible_cpu(i) {
d18d00f5
MT
293 kfree(per_cpu(cpu_msrs, i).counters);
294 per_cpu(cpu_msrs, i).counters = NULL;
295 kfree(per_cpu(cpu_msrs, i).controls);
296 per_cpu(cpu_msrs, i).controls = NULL;
1da177e4
LT
297 }
298}
299
1da177e4
LT
300static int allocate_msrs(void)
301{
1da177e4
LT
302 size_t controls_size = sizeof(struct op_msr) * model->num_controls;
303 size_t counters_size = sizeof(struct op_msr) * model->num_counters;
304
4c168eaf 305 int i;
0939c17c 306 for_each_possible_cpu(i) {
d18d00f5 307 per_cpu(cpu_msrs, i).counters = kmalloc(counters_size,
6ab82f95
RR
308 GFP_KERNEL);
309 if (!per_cpu(cpu_msrs, i).counters)
310 return 0;
4c168eaf 311 per_cpu(cpu_msrs, i).controls = kmalloc(controls_size,
6ab82f95
RR
312 GFP_KERNEL);
313 if (!per_cpu(cpu_msrs, i).controls)
314 return 0;
1da177e4
LT
315 }
316
6ab82f95 317 return 1;
1da177e4
LT
318}
319
b75f53db 320static void nmi_cpu_setup(void *dummy)
1da177e4
LT
321{
322 int cpu = smp_processor_id();
d18d00f5 323 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
44ab9a6b 324 nmi_cpu_save_registers(msrs);
1da177e4 325 spin_lock(&oprofilefs_lock);
ef8828dd 326 model->setup_ctrs(model, msrs);
6bfccd09 327 nmi_cpu_setup_mux(cpu, msrs);
1da177e4 328 spin_unlock(&oprofilefs_lock);
d18d00f5 329 per_cpu(saved_lvtpc, cpu) = apic_read(APIC_LVTPC);
1da177e4
LT
330 apic_write(APIC_LVTPC, APIC_DM_NMI);
331}
332
2fbe7b25
DZ
333static struct notifier_block profile_exceptions_nb = {
334 .notifier_call = profile_exceptions_notify,
335 .next = NULL,
5b75af0a 336 .priority = 2
2fbe7b25 337};
1da177e4
LT
338
339static int nmi_setup(void)
340{
b75f53db 341 int err = 0;
6c977aad 342 int cpu;
2fbe7b25 343
1da177e4 344 if (!allocate_msrs())
6ab82f95
RR
345 err = -ENOMEM;
346 else if (!nmi_setup_mux())
347 err = -ENOMEM;
348 else
349 err = register_die_notifier(&profile_exceptions_nb);
1da177e4 350
b75f53db 351 if (err) {
1da177e4 352 free_msrs();
6ab82f95 353 nmi_shutdown_mux();
2fbe7b25 354 return err;
1da177e4 355 }
2fbe7b25 356
4c168eaf 357 /* We need to serialize save and setup for HT because the subset
1da177e4
LT
358 * of msrs are distinct for save and setup operations
359 */
6c977aad
AK
360
361 /* Assume saved/restored counters are the same on all CPUs */
d18d00f5 362 model->fill_in_addresses(&per_cpu(cpu_msrs, 0));
b75f53db 363 for_each_possible_cpu(cpu) {
4d015f79
RR
364 if (!cpu)
365 continue;
366
367 memcpy(per_cpu(cpu_msrs, cpu).counters,
368 per_cpu(cpu_msrs, 0).counters,
369 sizeof(struct op_msr) * model->num_counters);
370
371 memcpy(per_cpu(cpu_msrs, cpu).controls,
372 per_cpu(cpu_msrs, 0).controls,
373 sizeof(struct op_msr) * model->num_controls);
374
375 mux_clone(cpu);
6c977aad 376 }
15c8b6c1 377 on_each_cpu(nmi_cpu_setup, NULL, 1);
1da177e4
LT
378 nmi_enabled = 1;
379 return 0;
380}
381
44ab9a6b 382static void nmi_cpu_restore_registers(struct op_msrs *msrs)
1da177e4 383{
b75f53db
CM
384 struct op_msr *counters = msrs->counters;
385 struct op_msr *controls = msrs->controls;
1da177e4
LT
386 unsigned int i;
387
1a245c45 388 for (i = 0; i < model->num_controls; ++i) {
95e74e62
RR
389 if (controls[i].addr)
390 wrmsrl(controls[i].addr, controls[i].saved);
1da177e4 391 }
b75f53db 392
1a245c45 393 for (i = 0; i < model->num_counters; ++i) {
95e74e62
RR
394 if (counters[i].addr)
395 wrmsrl(counters[i].addr, counters[i].saved);
1da177e4
LT
396 }
397}
1da177e4 398
b75f53db 399static void nmi_cpu_shutdown(void *dummy)
1da177e4
LT
400{
401 unsigned int v;
402 int cpu = smp_processor_id();
82a22528 403 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
b75f53db 404
1da177e4
LT
405 /* restoring APIC_LVTPC can trigger an apic error because the delivery
406 * mode and vector nr combination can be illegal. That's by design: on
407 * power on apic lvt contain a zero vector nr which are legal only for
408 * NMI delivery mode. So inhibit apic err before restoring lvtpc
409 */
410 v = apic_read(APIC_LVTERR);
411 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
d18d00f5 412 apic_write(APIC_LVTPC, per_cpu(saved_lvtpc, cpu));
1da177e4 413 apic_write(APIC_LVTERR, v);
44ab9a6b 414 nmi_cpu_restore_registers(msrs);
1da177e4
LT
415}
416
1da177e4
LT
417static void nmi_shutdown(void)
418{
b61e06f2
AR
419 struct op_msrs *msrs;
420
1da177e4 421 nmi_enabled = 0;
15c8b6c1 422 on_each_cpu(nmi_cpu_shutdown, NULL, 1);
2fbe7b25 423 unregister_die_notifier(&profile_exceptions_nb);
6ab82f95 424 nmi_shutdown_mux();
b61e06f2 425 msrs = &get_cpu_var(cpu_msrs);
d18d00f5 426 model->shutdown(msrs);
1da177e4 427 free_msrs();
93e1ade5 428 put_cpu_var(cpu_msrs);
1da177e4
LT
429}
430
b75f53db 431static int nmi_create_files(struct super_block *sb, struct dentry *root)
1da177e4
LT
432{
433 unsigned int i;
434
4d4036e0 435 for (i = 0; i < model->num_virt_counters; ++i) {
b75f53db 436 struct dentry *dir;
0c6856f7 437 char buf[4];
b75f53db 438
4d4036e0 439#ifndef CONFIG_OPROFILE_EVENT_MULTIPLEX
b75f53db 440 /* quick little hack to _not_ expose a counter if it is not
cb9c448c
DZ
441 * available for use. This should protect userspace app.
442 * NOTE: assumes 1:1 mapping here (that counters are organized
443 * sequentially in their struct assignment).
444 */
445 if (unlikely(!avail_to_resrv_perfctr_nmi_bit(i)))
446 continue;
4d4036e0 447#endif /* CONFIG_OPROFILE_EVENT_MULTIPLEX */
cb9c448c 448
0c6856f7 449 snprintf(buf, sizeof(buf), "%d", i);
1da177e4 450 dir = oprofilefs_mkdir(sb, root, buf);
b75f53db
CM
451 oprofilefs_create_ulong(sb, dir, "enabled", &counter_config[i].enabled);
452 oprofilefs_create_ulong(sb, dir, "event", &counter_config[i].event);
453 oprofilefs_create_ulong(sb, dir, "count", &counter_config[i].count);
454 oprofilefs_create_ulong(sb, dir, "unit_mask", &counter_config[i].unit_mask);
455 oprofilefs_create_ulong(sb, dir, "kernel", &counter_config[i].kernel);
456 oprofilefs_create_ulong(sb, dir, "user", &counter_config[i].user);
1da177e4
LT
457 }
458
459 return 0;
460}
b75f53db 461
69046d43
RR
462#ifdef CONFIG_SMP
463static int oprofile_cpu_notifier(struct notifier_block *b, unsigned long action,
464 void *data)
465{
466 int cpu = (unsigned long)data;
467 switch (action) {
468 case CPU_DOWN_FAILED:
469 case CPU_ONLINE:
470 smp_call_function_single(cpu, nmi_cpu_start, NULL, 0);
471 break;
472 case CPU_DOWN_PREPARE:
473 smp_call_function_single(cpu, nmi_cpu_stop, NULL, 1);
474 break;
475 }
476 return NOTIFY_DONE;
477}
478
479static struct notifier_block oprofile_cpu_nb = {
480 .notifier_call = oprofile_cpu_notifier
481};
482#endif
483
484#ifdef CONFIG_PM
485
486static int nmi_suspend(struct sys_device *dev, pm_message_t state)
487{
488 /* Only one CPU left, just stop that one */
489 if (nmi_enabled == 1)
490 nmi_cpu_stop(NULL);
491 return 0;
492}
493
494static int nmi_resume(struct sys_device *dev)
495{
496 if (nmi_enabled == 1)
497 nmi_cpu_start(NULL);
498 return 0;
499}
500
501static struct sysdev_class oprofile_sysclass = {
502 .name = "oprofile",
503 .resume = nmi_resume,
504 .suspend = nmi_suspend,
505};
506
507static struct sys_device device_oprofile = {
508 .id = 0,
509 .cls = &oprofile_sysclass,
510};
511
512static int __init init_sysfs(void)
513{
514 int error;
515
516 error = sysdev_class_register(&oprofile_sysclass);
517 if (!error)
518 error = sysdev_register(&device_oprofile);
519 return error;
520}
521
522static void exit_sysfs(void)
523{
524 sysdev_unregister(&device_oprofile);
525 sysdev_class_unregister(&oprofile_sysclass);
526}
527
528#else
529#define init_sysfs() do { } while (0)
530#define exit_sysfs() do { } while (0)
531#endif /* CONFIG_PM */
532
b75f53db 533static int __init p4_init(char **cpu_type)
1da177e4
LT
534{
535 __u8 cpu_model = boot_cpu_data.x86_model;
536
1f3d7b60 537 if (cpu_model > 6 || cpu_model == 5)
1da177e4
LT
538 return 0;
539
540#ifndef CONFIG_SMP
541 *cpu_type = "i386/p4";
542 model = &op_p4_spec;
543 return 1;
544#else
545 switch (smp_num_siblings) {
b75f53db
CM
546 case 1:
547 *cpu_type = "i386/p4";
548 model = &op_p4_spec;
549 return 1;
550
551 case 2:
552 *cpu_type = "i386/p4-ht";
553 model = &op_p4_ht2_spec;
554 return 1;
1da177e4
LT
555 }
556#endif
557
558 printk(KERN_INFO "oprofile: P4 HyperThreading detected with > 2 threads\n");
559 printk(KERN_INFO "oprofile: Reverting to timer mode.\n");
560 return 0;
561}
562
7e4e0bd5
RR
563static int force_arch_perfmon;
564static int force_cpu_type(const char *str, struct kernel_param *kp)
565{
8d7ff4f2 566 if (!strcmp(str, "arch_perfmon")) {
7e4e0bd5
RR
567 force_arch_perfmon = 1;
568 printk(KERN_INFO "oprofile: forcing architectural perfmon\n");
569 }
570
571 return 0;
572}
573module_param_call(cpu_type, force_cpu_type, NULL, NULL, 0);
1dcdb5a9 574
b75f53db 575static int __init ppro_init(char **cpu_type)
1da177e4
LT
576{
577 __u8 cpu_model = boot_cpu_data.x86_model;
259a83a8 578 struct op_x86_model_spec *spec = &op_ppro_spec; /* default */
1da177e4 579
1dcdb5a9
AK
580 if (force_arch_perfmon && cpu_has_arch_perfmon)
581 return 0;
582
4b9f12a3
LT
583 switch (cpu_model) {
584 case 0 ... 2:
585 *cpu_type = "i386/ppro";
586 break;
587 case 3 ... 5:
588 *cpu_type = "i386/pii";
589 break;
590 case 6 ... 8:
3d337c65 591 case 10 ... 11:
4b9f12a3
LT
592 *cpu_type = "i386/piii";
593 break;
594 case 9:
3d337c65 595 case 13:
4b9f12a3
LT
596 *cpu_type = "i386/p6_mobile";
597 break;
4b9f12a3 598 case 14:
64471ebe 599 *cpu_type = "i386/core";
4b9f12a3
LT
600 break;
601 case 15: case 23:
602 *cpu_type = "i386/core_2";
603 break;
6adf406f 604 case 26:
802070f5 605 spec = &op_arch_perfmon_spec;
6adf406f
AK
606 *cpu_type = "i386/core_i7";
607 break;
608 case 28:
609 *cpu_type = "i386/atom";
610 break;
4b9f12a3
LT
611 default:
612 /* Unknown */
1da177e4 613 return 0;
1da177e4
LT
614 }
615
802070f5 616 model = spec;
1da177e4
LT
617 return 1;
618}
619
405ae7d3 620/* in order to get sysfs right */
1da177e4
LT
621static int using_nmi;
622
96d0821c 623int __init op_nmi_init(struct oprofile_operations *ops)
1da177e4
LT
624{
625 __u8 vendor = boot_cpu_data.x86_vendor;
626 __u8 family = boot_cpu_data.x86;
b9917028 627 char *cpu_type = NULL;
adf5ec0b 628 int ret = 0;
1da177e4
LT
629
630 if (!cpu_has_apic)
631 return -ENODEV;
b75f53db 632
1da177e4 633 switch (vendor) {
b75f53db
CM
634 case X86_VENDOR_AMD:
635 /* Needs to be at least an Athlon (or hammer in 32bit mode) */
1da177e4 636
b75f53db 637 switch (family) {
b75f53db 638 case 6:
b75f53db
CM
639 cpu_type = "i386/athlon";
640 break;
641 case 0xf:
d20f24c6
RR
642 /*
643 * Actually it could be i386/hammer too, but
644 * give user space an consistent name.
645 */
b75f53db
CM
646 cpu_type = "x86-64/hammer";
647 break;
648 case 0x10:
b75f53db
CM
649 cpu_type = "x86-64/family10";
650 break;
12f2b261 651 case 0x11:
12f2b261
BK
652 cpu_type = "x86-64/family11h";
653 break;
d20f24c6
RR
654 default:
655 return -ENODEV;
b75f53db 656 }
d20f24c6 657 model = &op_amd_spec;
b75f53db
CM
658 break;
659
660 case X86_VENDOR_INTEL:
661 switch (family) {
662 /* Pentium IV */
663 case 0xf:
b9917028 664 p4_init(&cpu_type);
1da177e4 665 break;
b75f53db
CM
666
667 /* A P6-class processor */
668 case 6:
b9917028 669 ppro_init(&cpu_type);
1da177e4
LT
670 break;
671
672 default:
b9917028 673 break;
b75f53db 674 }
b9917028 675
e419294e
RR
676 if (cpu_type)
677 break;
678
679 if (!cpu_has_arch_perfmon)
b9917028 680 return -ENODEV;
e419294e
RR
681
682 /* use arch perfmon as fallback */
683 cpu_type = "i386/arch_perfmon";
684 model = &op_arch_perfmon_spec;
b75f53db
CM
685 break;
686
687 default:
688 return -ENODEV;
1da177e4
LT
689 }
690
80a8c9ff
AK
691#ifdef CONFIG_SMP
692 register_cpu_notifier(&oprofile_cpu_nb);
693#endif
270d3e1a 694 /* default values, can be overwritten by model */
6e63ea4b
RR
695 ops->create_files = nmi_create_files;
696 ops->setup = nmi_setup;
697 ops->shutdown = nmi_shutdown;
698 ops->start = nmi_start;
699 ops->stop = nmi_stop;
700 ops->cpu_type = cpu_type;
270d3e1a 701
adf5ec0b
RR
702 if (model->init)
703 ret = model->init(ops);
704 if (ret)
705 return ret;
706
52471c67
RR
707 if (!model->num_virt_counters)
708 model->num_virt_counters = model->num_counters;
709
52805144
RR
710 mux_init(ops);
711
405ae7d3 712 init_sysfs();
1da177e4 713 using_nmi = 1;
1da177e4
LT
714 printk(KERN_INFO "oprofile: using NMI interrupt.\n");
715 return 0;
716}
717
96d0821c 718void op_nmi_exit(void)
1da177e4 719{
80a8c9ff 720 if (using_nmi) {
405ae7d3 721 exit_sysfs();
80a8c9ff
AK
722#ifdef CONFIG_SMP
723 unregister_cpu_notifier(&oprofile_cpu_nb);
724#endif
725 }
adf5ec0b
RR
726 if (model->exit)
727 model->exit();
1da177e4 728}
This page took 0.457144 seconds and 5 git commands to generate.