x86/hpet: Use proper mask to modify hotplug action
[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>
f3c6ea1b 18#include <linux/syscore_ops.h>
1da177e4 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
6ae56b55
RR
34/* must be protected with get_online_cpus()/put_online_cpus(): */
35static int nmi_enabled;
36static int ctr_running;
1da177e4 37
4d4036e0
JY
38struct op_counter_config counter_config[OP_MAX_COUNTER];
39
3370d358
RR
40/* common functions */
41
42u64 op_x86_get_ctrl(struct op_x86_model_spec const *model,
43 struct op_counter_config *counter_config)
44{
45 u64 val = 0;
46 u16 event = (u16)counter_config->event;
47
48 val |= ARCH_PERFMON_EVENTSEL_INT;
49 val |= counter_config->user ? ARCH_PERFMON_EVENTSEL_USR : 0;
50 val |= counter_config->kernel ? ARCH_PERFMON_EVENTSEL_OS : 0;
51 val |= (counter_config->unit_mask & 0xFF) << 8;
914a76ca
AK
52 counter_config->extra &= (ARCH_PERFMON_EVENTSEL_INV |
53 ARCH_PERFMON_EVENTSEL_EDGE |
54 ARCH_PERFMON_EVENTSEL_CMASK);
55 val |= counter_config->extra;
3370d358
RR
56 event &= model->event_mask ? model->event_mask : 0xFF;
57 val |= event & 0xFF;
44009105 58 val |= (u64)(event & 0x0F00) << 24;
3370d358
RR
59
60 return val;
61}
62
63
9c48f1c6
DZ
64static int profile_exceptions_notify(unsigned int val, struct pt_regs *regs)
65{
66 if (ctr_running)
89cbc767 67 model->check_ctrs(regs, this_cpu_ptr(&cpu_msrs));
9c48f1c6
DZ
68 else if (!nmi_enabled)
69 return NMI_DONE;
70 else
89cbc767 71 model->stop(this_cpu_ptr(&cpu_msrs));
9c48f1c6 72 return NMI_HANDLED;
1da177e4 73}
2fbe7b25 74
b75f53db 75static void nmi_cpu_save_registers(struct op_msrs *msrs)
1da177e4 76{
b75f53db
CM
77 struct op_msr *counters = msrs->counters;
78 struct op_msr *controls = msrs->controls;
1da177e4
LT
79 unsigned int i;
80
1a245c45 81 for (i = 0; i < model->num_counters; ++i) {
95e74e62
RR
82 if (counters[i].addr)
83 rdmsrl(counters[i].addr, counters[i].saved);
1da177e4 84 }
b75f53db 85
1a245c45 86 for (i = 0; i < model->num_controls; ++i) {
95e74e62
RR
87 if (controls[i].addr)
88 rdmsrl(controls[i].addr, controls[i].saved);
1da177e4
LT
89 }
90}
91
b28d1b92
RR
92static void nmi_cpu_start(void *dummy)
93{
89cbc767 94 struct op_msrs const *msrs = this_cpu_ptr(&cpu_msrs);
2623a1d5
RR
95 if (!msrs->controls)
96 WARN_ON_ONCE(1);
97 else
98 model->start(msrs);
b28d1b92
RR
99}
100
101static int nmi_start(void)
102{
6ae56b55 103 get_online_cpus();
6ae56b55 104 ctr_running = 1;
8fe7e94e
RR
105 /* make ctr_running visible to the nmi handler: */
106 smp_mb();
107 on_each_cpu(nmi_cpu_start, NULL, 1);
6ae56b55 108 put_online_cpus();
b28d1b92
RR
109 return 0;
110}
111
112static void nmi_cpu_stop(void *dummy)
113{
89cbc767 114 struct op_msrs const *msrs = this_cpu_ptr(&cpu_msrs);
2623a1d5
RR
115 if (!msrs->controls)
116 WARN_ON_ONCE(1);
117 else
118 model->stop(msrs);
b28d1b92
RR
119}
120
121static void nmi_stop(void)
122{
6ae56b55 123 get_online_cpus();
b28d1b92 124 on_each_cpu(nmi_cpu_stop, NULL, 1);
6ae56b55
RR
125 ctr_running = 0;
126 put_online_cpus();
b28d1b92
RR
127}
128
d8471ad3
RR
129#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
130
131static DEFINE_PER_CPU(int, switch_index);
132
39e97f40
RR
133static inline int has_mux(void)
134{
135 return !!model->switch_ctrl;
136}
137
d8471ad3
RR
138inline int op_x86_phys_to_virt(int phys)
139{
0a3aee0d 140 return __this_cpu_read(switch_index) + phys;
d8471ad3
RR
141}
142
61d149d5
RR
143inline int op_x86_virt_to_phys(int virt)
144{
145 return virt % model->num_counters;
146}
147
6ab82f95
RR
148static void nmi_shutdown_mux(void)
149{
150 int i;
39e97f40
RR
151
152 if (!has_mux())
153 return;
154
6ab82f95
RR
155 for_each_possible_cpu(i) {
156 kfree(per_cpu(cpu_msrs, i).multiplex);
157 per_cpu(cpu_msrs, i).multiplex = NULL;
158 per_cpu(switch_index, i) = 0;
159 }
160}
161
162static int nmi_setup_mux(void)
163{
164 size_t multiplex_size =
165 sizeof(struct op_msr) * model->num_virt_counters;
166 int i;
39e97f40
RR
167
168 if (!has_mux())
169 return 1;
170
6ab82f95
RR
171 for_each_possible_cpu(i) {
172 per_cpu(cpu_msrs, i).multiplex =
c17c8fbf 173 kzalloc(multiplex_size, GFP_KERNEL);
6ab82f95
RR
174 if (!per_cpu(cpu_msrs, i).multiplex)
175 return 0;
176 }
39e97f40 177
6ab82f95
RR
178 return 1;
179}
180
48fb4b46
RR
181static void nmi_cpu_setup_mux(int cpu, struct op_msrs const * const msrs)
182{
183 int i;
184 struct op_msr *multiplex = msrs->multiplex;
185
39e97f40
RR
186 if (!has_mux())
187 return;
188
48fb4b46
RR
189 for (i = 0; i < model->num_virt_counters; ++i) {
190 if (counter_config[i].enabled) {
191 multiplex[i].saved = -(u64)counter_config[i].count;
192 } else {
48fb4b46
RR
193 multiplex[i].saved = 0;
194 }
195 }
196
197 per_cpu(switch_index, cpu) = 0;
198}
199
d0f585dd
RR
200static void nmi_cpu_save_mpx_registers(struct op_msrs *msrs)
201{
68dc819c 202 struct op_msr *counters = msrs->counters;
d0f585dd
RR
203 struct op_msr *multiplex = msrs->multiplex;
204 int i;
205
206 for (i = 0; i < model->num_counters; ++i) {
207 int virt = op_x86_phys_to_virt(i);
68dc819c
RR
208 if (counters[i].addr)
209 rdmsrl(counters[i].addr, multiplex[virt].saved);
d0f585dd
RR
210 }
211}
212
213static void nmi_cpu_restore_mpx_registers(struct op_msrs *msrs)
214{
68dc819c 215 struct op_msr *counters = msrs->counters;
d0f585dd
RR
216 struct op_msr *multiplex = msrs->multiplex;
217 int i;
218
219 for (i = 0; i < model->num_counters; ++i) {
220 int virt = op_x86_phys_to_virt(i);
68dc819c
RR
221 if (counters[i].addr)
222 wrmsrl(counters[i].addr, multiplex[virt].saved);
d0f585dd
RR
223 }
224}
225
b28d1b92
RR
226static void nmi_cpu_switch(void *dummy)
227{
228 int cpu = smp_processor_id();
229 int si = per_cpu(switch_index, cpu);
230 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
231
232 nmi_cpu_stop(NULL);
233 nmi_cpu_save_mpx_registers(msrs);
234
235 /* move to next set */
236 si += model->num_counters;
d8cc108f 237 if ((si >= model->num_virt_counters) || (counter_config[si].count == 0))
b28d1b92
RR
238 per_cpu(switch_index, cpu) = 0;
239 else
240 per_cpu(switch_index, cpu) = si;
241
242 model->switch_ctrl(model, msrs);
243 nmi_cpu_restore_mpx_registers(msrs);
244
245 nmi_cpu_start(NULL);
246}
247
248
249/*
250 * Quick check to see if multiplexing is necessary.
251 * The check should be sufficient since counters are used
252 * in ordre.
253 */
254static int nmi_multiplex_on(void)
255{
256 return counter_config[model->num_counters].count ? 0 : -EINVAL;
257}
258
259static int nmi_switch_event(void)
260{
39e97f40 261 if (!has_mux())
b28d1b92
RR
262 return -ENOSYS; /* not implemented */
263 if (nmi_multiplex_on() < 0)
264 return -EINVAL; /* not necessary */
265
6ae56b55
RR
266 get_online_cpus();
267 if (ctr_running)
268 on_each_cpu(nmi_cpu_switch, NULL, 1);
269 put_online_cpus();
b28d1b92 270
b28d1b92
RR
271 return 0;
272}
273
52805144
RR
274static inline void mux_init(struct oprofile_operations *ops)
275{
276 if (has_mux())
277 ops->switch_events = nmi_switch_event;
278}
279
4d015f79
RR
280static void mux_clone(int cpu)
281{
282 if (!has_mux())
283 return;
284
285 memcpy(per_cpu(cpu_msrs, cpu).multiplex,
286 per_cpu(cpu_msrs, 0).multiplex,
287 sizeof(struct op_msr) * model->num_virt_counters);
288}
289
d8471ad3
RR
290#else
291
292inline int op_x86_phys_to_virt(int phys) { return phys; }
61d149d5 293inline int op_x86_virt_to_phys(int virt) { return virt; }
6ab82f95
RR
294static inline void nmi_shutdown_mux(void) { }
295static inline int nmi_setup_mux(void) { return 1; }
48fb4b46
RR
296static inline void
297nmi_cpu_setup_mux(int cpu, struct op_msrs const * const msrs) { }
52805144 298static inline void mux_init(struct oprofile_operations *ops) { }
4d015f79 299static void mux_clone(int cpu) { }
d8471ad3
RR
300
301#endif
302
1da177e4
LT
303static void free_msrs(void)
304{
305 int i;
c8912599 306 for_each_possible_cpu(i) {
d18d00f5
MT
307 kfree(per_cpu(cpu_msrs, i).counters);
308 per_cpu(cpu_msrs, i).counters = NULL;
309 kfree(per_cpu(cpu_msrs, i).controls);
310 per_cpu(cpu_msrs, i).controls = NULL;
1da177e4 311 }
8f5a2dd8 312 nmi_shutdown_mux();
1da177e4
LT
313}
314
1da177e4
LT
315static int allocate_msrs(void)
316{
1da177e4
LT
317 size_t controls_size = sizeof(struct op_msr) * model->num_controls;
318 size_t counters_size = sizeof(struct op_msr) * model->num_counters;
319
4c168eaf 320 int i;
0939c17c 321 for_each_possible_cpu(i) {
c17c8fbf 322 per_cpu(cpu_msrs, i).counters = kzalloc(counters_size,
6ab82f95
RR
323 GFP_KERNEL);
324 if (!per_cpu(cpu_msrs, i).counters)
8f5a2dd8 325 goto fail;
c17c8fbf 326 per_cpu(cpu_msrs, i).controls = kzalloc(controls_size,
6ab82f95
RR
327 GFP_KERNEL);
328 if (!per_cpu(cpu_msrs, i).controls)
8f5a2dd8 329 goto fail;
1da177e4
LT
330 }
331
8f5a2dd8
RR
332 if (!nmi_setup_mux())
333 goto fail;
334
6ab82f95 335 return 1;
8f5a2dd8
RR
336
337fail:
338 free_msrs();
339 return 0;
1da177e4
LT
340}
341
b75f53db 342static void nmi_cpu_setup(void *dummy)
1da177e4
LT
343{
344 int cpu = smp_processor_id();
d18d00f5 345 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
44ab9a6b 346 nmi_cpu_save_registers(msrs);
2d21a29f 347 raw_spin_lock(&oprofilefs_lock);
ef8828dd 348 model->setup_ctrs(model, msrs);
6bfccd09 349 nmi_cpu_setup_mux(cpu, msrs);
2d21a29f 350 raw_spin_unlock(&oprofilefs_lock);
d18d00f5 351 per_cpu(saved_lvtpc, cpu) = apic_read(APIC_LVTPC);
1da177e4
LT
352 apic_write(APIC_LVTPC, APIC_DM_NMI);
353}
354
44ab9a6b 355static void nmi_cpu_restore_registers(struct op_msrs *msrs)
1da177e4 356{
b75f53db
CM
357 struct op_msr *counters = msrs->counters;
358 struct op_msr *controls = msrs->controls;
1da177e4
LT
359 unsigned int i;
360
1a245c45 361 for (i = 0; i < model->num_controls; ++i) {
95e74e62
RR
362 if (controls[i].addr)
363 wrmsrl(controls[i].addr, controls[i].saved);
1da177e4 364 }
b75f53db 365
1a245c45 366 for (i = 0; i < model->num_counters; ++i) {
95e74e62
RR
367 if (counters[i].addr)
368 wrmsrl(counters[i].addr, counters[i].saved);
1da177e4
LT
369 }
370}
1da177e4 371
b75f53db 372static void nmi_cpu_shutdown(void *dummy)
1da177e4
LT
373{
374 unsigned int v;
375 int cpu = smp_processor_id();
82a22528 376 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
b75f53db 377
1da177e4
LT
378 /* restoring APIC_LVTPC can trigger an apic error because the delivery
379 * mode and vector nr combination can be illegal. That's by design: on
380 * power on apic lvt contain a zero vector nr which are legal only for
381 * NMI delivery mode. So inhibit apic err before restoring lvtpc
382 */
383 v = apic_read(APIC_LVTERR);
384 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
d18d00f5 385 apic_write(APIC_LVTPC, per_cpu(saved_lvtpc, cpu));
1da177e4 386 apic_write(APIC_LVTERR, v);
44ab9a6b 387 nmi_cpu_restore_registers(msrs);
1da177e4
LT
388}
389
6ae56b55
RR
390static void nmi_cpu_up(void *dummy)
391{
392 if (nmi_enabled)
393 nmi_cpu_setup(dummy);
394 if (ctr_running)
395 nmi_cpu_start(dummy);
396}
397
398static void nmi_cpu_down(void *dummy)
399{
400 if (ctr_running)
401 nmi_cpu_stop(dummy);
402 if (nmi_enabled)
403 nmi_cpu_shutdown(dummy);
404}
405
ef7bca14 406static int nmi_create_files(struct dentry *root)
1da177e4
LT
407{
408 unsigned int i;
409
4d4036e0 410 for (i = 0; i < model->num_virt_counters; ++i) {
b75f53db 411 struct dentry *dir;
0c6856f7 412 char buf[4];
b75f53db
CM
413
414 /* quick little hack to _not_ expose a counter if it is not
cb9c448c
DZ
415 * available for use. This should protect userspace app.
416 * NOTE: assumes 1:1 mapping here (that counters are organized
417 * sequentially in their struct assignment).
418 */
11be1a7b 419 if (!avail_to_resrv_perfctr_nmi_bit(op_x86_virt_to_phys(i)))
cb9c448c
DZ
420 continue;
421
0c6856f7 422 snprintf(buf, sizeof(buf), "%d", i);
ecde2823 423 dir = oprofilefs_mkdir(root, buf);
6af4ea0b
AV
424 oprofilefs_create_ulong(dir, "enabled", &counter_config[i].enabled);
425 oprofilefs_create_ulong(dir, "event", &counter_config[i].event);
426 oprofilefs_create_ulong(dir, "count", &counter_config[i].count);
427 oprofilefs_create_ulong(dir, "unit_mask", &counter_config[i].unit_mask);
428 oprofilefs_create_ulong(dir, "kernel", &counter_config[i].kernel);
429 oprofilefs_create_ulong(dir, "user", &counter_config[i].user);
430 oprofilefs_create_ulong(dir, "extra", &counter_config[i].extra);
1da177e4
LT
431 }
432
433 return 0;
434}
b75f53db 435
69046d43
RR
436static int oprofile_cpu_notifier(struct notifier_block *b, unsigned long action,
437 void *data)
438{
439 int cpu = (unsigned long)data;
440 switch (action) {
441 case CPU_DOWN_FAILED:
442 case CPU_ONLINE:
6ae56b55 443 smp_call_function_single(cpu, nmi_cpu_up, NULL, 0);
69046d43
RR
444 break;
445 case CPU_DOWN_PREPARE:
6ae56b55 446 smp_call_function_single(cpu, nmi_cpu_down, NULL, 1);
69046d43
RR
447 break;
448 }
449 return NOTIFY_DONE;
450}
451
452static struct notifier_block oprofile_cpu_nb = {
453 .notifier_call = oprofile_cpu_notifier
454};
69046d43 455
d30d64c6
RR
456static int nmi_setup(void)
457{
458 int err = 0;
459 int cpu;
460
461 if (!allocate_msrs())
462 return -ENOMEM;
463
464 /* We need to serialize save and setup for HT because the subset
465 * of msrs are distinct for save and setup operations
466 */
467
468 /* Assume saved/restored counters are the same on all CPUs */
469 err = model->fill_in_addresses(&per_cpu(cpu_msrs, 0));
470 if (err)
471 goto fail;
472
473 for_each_possible_cpu(cpu) {
474 if (!cpu)
475 continue;
476
477 memcpy(per_cpu(cpu_msrs, cpu).counters,
478 per_cpu(cpu_msrs, 0).counters,
479 sizeof(struct op_msr) * model->num_counters);
480
481 memcpy(per_cpu(cpu_msrs, cpu).controls,
482 per_cpu(cpu_msrs, 0).controls,
483 sizeof(struct op_msr) * model->num_controls);
484
485 mux_clone(cpu);
486 }
487
488 nmi_enabled = 0;
489 ctr_running = 0;
8fe7e94e
RR
490 /* make variables visible to the nmi handler: */
491 smp_mb();
9c48f1c6
DZ
492 err = register_nmi_handler(NMI_LOCAL, profile_exceptions_notify,
493 0, "oprofile");
d30d64c6
RR
494 if (err)
495 goto fail;
496
76902e3d
SB
497 cpu_notifier_register_begin();
498
499 /* Use get/put_online_cpus() to protect 'nmi_enabled' */
d30d64c6 500 get_online_cpus();
d30d64c6 501 nmi_enabled = 1;
8fe7e94e
RR
502 /* make nmi_enabled visible to the nmi handler: */
503 smp_mb();
504 on_each_cpu(nmi_cpu_setup, NULL, 1);
76902e3d 505 __register_cpu_notifier(&oprofile_cpu_nb);
d30d64c6
RR
506 put_online_cpus();
507
76902e3d
SB
508 cpu_notifier_register_done();
509
d30d64c6
RR
510 return 0;
511fail:
512 free_msrs();
513 return err;
514}
515
516static void nmi_shutdown(void)
517{
518 struct op_msrs *msrs;
519
76902e3d
SB
520 cpu_notifier_register_begin();
521
522 /* Use get/put_online_cpus() to protect 'nmi_enabled' & 'ctr_running' */
d30d64c6
RR
523 get_online_cpus();
524 on_each_cpu(nmi_cpu_shutdown, NULL, 1);
525 nmi_enabled = 0;
526 ctr_running = 0;
76902e3d 527 __unregister_cpu_notifier(&oprofile_cpu_nb);
d30d64c6 528 put_online_cpus();
76902e3d
SB
529
530 cpu_notifier_register_done();
531
8fe7e94e
RR
532 /* make variables visible to the nmi handler: */
533 smp_mb();
9c48f1c6 534 unregister_nmi_handler(NMI_LOCAL, "oprofile");
d30d64c6
RR
535 msrs = &get_cpu_var(cpu_msrs);
536 model->shutdown(msrs);
537 free_msrs();
538 put_cpu_var(cpu_msrs);
539}
540
69046d43
RR
541#ifdef CONFIG_PM
542
f3c6ea1b 543static int nmi_suspend(void)
69046d43
RR
544{
545 /* Only one CPU left, just stop that one */
546 if (nmi_enabled == 1)
547 nmi_cpu_stop(NULL);
548 return 0;
549}
550
f3c6ea1b 551static void nmi_resume(void)
69046d43
RR
552{
553 if (nmi_enabled == 1)
554 nmi_cpu_start(NULL);
69046d43
RR
555}
556
f3c6ea1b 557static struct syscore_ops oprofile_syscore_ops = {
69046d43
RR
558 .resume = nmi_resume,
559 .suspend = nmi_suspend,
560};
561
f3c6ea1b 562static void __init init_suspend_resume(void)
69046d43 563{
f3c6ea1b 564 register_syscore_ops(&oprofile_syscore_ops);
69046d43
RR
565}
566
f3c6ea1b 567static void exit_suspend_resume(void)
69046d43 568{
f3c6ea1b 569 unregister_syscore_ops(&oprofile_syscore_ops);
69046d43
RR
570}
571
572#else
269f45c2 573
f3c6ea1b
RW
574static inline void init_suspend_resume(void) { }
575static inline void exit_suspend_resume(void) { }
269f45c2 576
69046d43
RR
577#endif /* CONFIG_PM */
578
b75f53db 579static int __init p4_init(char **cpu_type)
1da177e4
LT
580{
581 __u8 cpu_model = boot_cpu_data.x86_model;
582
1f3d7b60 583 if (cpu_model > 6 || cpu_model == 5)
1da177e4
LT
584 return 0;
585
586#ifndef CONFIG_SMP
587 *cpu_type = "i386/p4";
588 model = &op_p4_spec;
589 return 1;
590#else
591 switch (smp_num_siblings) {
b75f53db
CM
592 case 1:
593 *cpu_type = "i386/p4";
594 model = &op_p4_spec;
595 return 1;
596
597 case 2:
598 *cpu_type = "i386/p4-ht";
599 model = &op_p4_ht2_spec;
600 return 1;
1da177e4
LT
601 }
602#endif
603
604 printk(KERN_INFO "oprofile: P4 HyperThreading detected with > 2 threads\n");
605 printk(KERN_INFO "oprofile: Reverting to timer mode.\n");
606 return 0;
607}
608
159a80b2
RR
609enum __force_cpu_type {
610 reserved = 0, /* do not force */
611 timer,
612 arch_perfmon,
613};
614
615static int force_cpu_type;
616
617static int set_cpu_type(const char *str, struct kernel_param *kp)
7e4e0bd5 618{
159a80b2
RR
619 if (!strcmp(str, "timer")) {
620 force_cpu_type = timer;
621 printk(KERN_INFO "oprofile: forcing NMI timer mode\n");
622 } else if (!strcmp(str, "arch_perfmon")) {
623 force_cpu_type = arch_perfmon;
7e4e0bd5 624 printk(KERN_INFO "oprofile: forcing architectural perfmon\n");
159a80b2
RR
625 } else {
626 force_cpu_type = 0;
7e4e0bd5
RR
627 }
628
629 return 0;
630}
159a80b2 631module_param_call(cpu_type, set_cpu_type, NULL, NULL, 0);
1dcdb5a9 632
b75f53db 633static int __init ppro_init(char **cpu_type)
1da177e4
LT
634{
635 __u8 cpu_model = boot_cpu_data.x86_model;
259a83a8 636 struct op_x86_model_spec *spec = &op_ppro_spec; /* default */
1da177e4 637
159a80b2 638 if (force_cpu_type == arch_perfmon && cpu_has_arch_perfmon)
1dcdb5a9
AK
639 return 0;
640
45c34e05
JV
641 /*
642 * Documentation on identifying Intel processors by CPU family
643 * and model can be found in the Intel Software Developer's
644 * Manuals (SDM):
645 *
646 * http://www.intel.com/products/processor/manuals/
647 *
648 * As of May 2010 the documentation for this was in the:
649 * "Intel 64 and IA-32 Architectures Software Developer's
650 * Manual Volume 3B: System Programming Guide", "Table B-1
651 * CPUID Signature Values of DisplayFamily_DisplayModel".
652 */
4b9f12a3
LT
653 switch (cpu_model) {
654 case 0 ... 2:
655 *cpu_type = "i386/ppro";
656 break;
657 case 3 ... 5:
658 *cpu_type = "i386/pii";
659 break;
660 case 6 ... 8:
3d337c65 661 case 10 ... 11:
4b9f12a3
LT
662 *cpu_type = "i386/piii";
663 break;
664 case 9:
3d337c65 665 case 13:
4b9f12a3
LT
666 *cpu_type = "i386/p6_mobile";
667 break;
4b9f12a3 668 case 14:
64471ebe 669 *cpu_type = "i386/core";
4b9f12a3 670 break;
c33f543d
PS
671 case 0x0f:
672 case 0x16:
673 case 0x17:
bb7ab785 674 case 0x1d:
4b9f12a3
LT
675 *cpu_type = "i386/core_2";
676 break;
45c34e05 677 case 0x1a:
a7c55cbe 678 case 0x1e:
e83e452b 679 case 0x2e:
802070f5 680 spec = &op_arch_perfmon_spec;
6adf406f
AK
681 *cpu_type = "i386/core_i7";
682 break;
45c34e05 683 case 0x1c:
6adf406f
AK
684 *cpu_type = "i386/atom";
685 break;
4b9f12a3
LT
686 default:
687 /* Unknown */
1da177e4 688 return 0;
1da177e4
LT
689 }
690
802070f5 691 model = spec;
1da177e4
LT
692 return 1;
693}
694
96d0821c 695int __init op_nmi_init(struct oprofile_operations *ops)
1da177e4
LT
696{
697 __u8 vendor = boot_cpu_data.x86_vendor;
698 __u8 family = boot_cpu_data.x86;
b9917028 699 char *cpu_type = NULL;
adf5ec0b 700 int ret = 0;
1da177e4
LT
701
702 if (!cpu_has_apic)
703 return -ENODEV;
b75f53db 704
159a80b2
RR
705 if (force_cpu_type == timer)
706 return -ENODEV;
707
1da177e4 708 switch (vendor) {
b75f53db
CM
709 case X86_VENDOR_AMD:
710 /* Needs to be at least an Athlon (or hammer in 32bit mode) */
1da177e4 711
b75f53db 712 switch (family) {
b75f53db 713 case 6:
b75f53db
CM
714 cpu_type = "i386/athlon";
715 break;
716 case 0xf:
d20f24c6
RR
717 /*
718 * Actually it could be i386/hammer too, but
719 * give user space an consistent name.
720 */
b75f53db
CM
721 cpu_type = "x86-64/hammer";
722 break;
723 case 0x10:
b75f53db
CM
724 cpu_type = "x86-64/family10";
725 break;
12f2b261 726 case 0x11:
12f2b261
BK
727 cpu_type = "x86-64/family11h";
728 break;
3acbf084
RR
729 case 0x12:
730 cpu_type = "x86-64/family12h";
731 break;
e6341474
RR
732 case 0x14:
733 cpu_type = "x86-64/family14h";
734 break;
30570bce
RR
735 case 0x15:
736 cpu_type = "x86-64/family15h";
737 break;
d20f24c6
RR
738 default:
739 return -ENODEV;
b75f53db 740 }
d20f24c6 741 model = &op_amd_spec;
b75f53db
CM
742 break;
743
744 case X86_VENDOR_INTEL:
745 switch (family) {
746 /* Pentium IV */
747 case 0xf:
b9917028 748 p4_init(&cpu_type);
1da177e4 749 break;
b75f53db
CM
750
751 /* A P6-class processor */
752 case 6:
b9917028 753 ppro_init(&cpu_type);
1da177e4
LT
754 break;
755
756 default:
b9917028 757 break;
b75f53db 758 }
b9917028 759
e419294e
RR
760 if (cpu_type)
761 break;
762
763 if (!cpu_has_arch_perfmon)
b9917028 764 return -ENODEV;
e419294e
RR
765
766 /* use arch perfmon as fallback */
767 cpu_type = "i386/arch_perfmon";
768 model = &op_arch_perfmon_spec;
b75f53db
CM
769 break;
770
771 default:
772 return -ENODEV;
1da177e4
LT
773 }
774
270d3e1a 775 /* default values, can be overwritten by model */
6e63ea4b
RR
776 ops->create_files = nmi_create_files;
777 ops->setup = nmi_setup;
778 ops->shutdown = nmi_shutdown;
779 ops->start = nmi_start;
780 ops->stop = nmi_stop;
781 ops->cpu_type = cpu_type;
270d3e1a 782
adf5ec0b
RR
783 if (model->init)
784 ret = model->init(ops);
785 if (ret)
786 return ret;
787
52471c67
RR
788 if (!model->num_virt_counters)
789 model->num_virt_counters = model->num_counters;
790
52805144
RR
791 mux_init(ops);
792
f3c6ea1b 793 init_suspend_resume();
10f0412f 794
1da177e4
LT
795 printk(KERN_INFO "oprofile: using NMI interrupt.\n");
796 return 0;
797}
798
96d0821c 799void op_nmi_exit(void)
1da177e4 800{
f3c6ea1b 801 exit_suspend_resume();
1da177e4 802}
This page took 0.954203 seconds and 5 git commands to generate.