4 * @remark Copyright 2002-2009 OProfile authors
5 * @remark Read the file COPYING
7 * @author John Levon <levon@movementarian.org>
8 * @author Robert Richter <robert.richter@amd.com>
9 * @author Barry Kasindorf <barry.kasindorf@amd.com>
10 * @author Jason Yeh <jason.yeh@amd.com>
11 * @author Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
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>
20 #include <linux/moduleparam.h>
21 #include <linux/kdebug.h>
22 #include <linux/cpu.h>
27 #include "op_counter.h"
28 #include "op_x86_model.h"
30 static struct op_x86_model_spec
const *model
;
31 static DEFINE_PER_CPU(struct op_msrs
, cpu_msrs
);
32 static DEFINE_PER_CPU(unsigned long, saved_lvtpc
);
34 /* 0 == registered but off, 1 == registered and on */
35 static int nmi_enabled
= 0;
38 #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
39 extern atomic_t multiplex_counter
;
42 struct op_counter_config counter_config
[OP_MAX_COUNTER
];
44 /* common functions */
46 u64
op_x86_get_ctrl(struct op_x86_model_spec
const *model
,
47 struct op_counter_config
*counter_config
)
50 u16 event
= (u16
)counter_config
->event
;
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;
58 val
|= (event
& 0x0F00) << 24;
64 static int profile_exceptions_notify(struct notifier_block
*self
,
65 unsigned long val
, void *data
)
67 struct die_args
*args
= (struct die_args
*)data
;
68 int ret
= NOTIFY_DONE
;
69 int cpu
= smp_processor_id();
74 model
->check_ctrs(args
->regs
, &per_cpu(cpu_msrs
, cpu
));
83 static void nmi_cpu_save_registers(struct op_msrs
*msrs
)
85 struct op_msr
*counters
= msrs
->counters
;
86 struct op_msr
*controls
= msrs
->controls
;
89 for (i
= 0; i
< model
->num_counters
; ++i
) {
91 rdmsrl(counters
[i
].addr
, counters
[i
].saved
);
94 for (i
= 0; i
< model
->num_controls
; ++i
) {
96 rdmsrl(controls
[i
].addr
, controls
[i
].saved
);
100 #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
102 static DEFINE_PER_CPU(int, switch_index
);
104 inline int op_x86_phys_to_virt(int phys
)
106 return __get_cpu_var(switch_index
) + phys
;
109 static void nmi_shutdown_mux(void)
112 for_each_possible_cpu(i
) {
113 kfree(per_cpu(cpu_msrs
, i
).multiplex
);
114 per_cpu(cpu_msrs
, i
).multiplex
= NULL
;
115 per_cpu(switch_index
, i
) = 0;
119 static int nmi_setup_mux(void)
121 size_t multiplex_size
=
122 sizeof(struct op_msr
) * model
->num_virt_counters
;
124 for_each_possible_cpu(i
) {
125 per_cpu(cpu_msrs
, i
).multiplex
=
126 kmalloc(multiplex_size
, GFP_KERNEL
);
127 if (!per_cpu(cpu_msrs
, i
).multiplex
)
133 static void nmi_cpu_setup_mux(int cpu
, struct op_msrs
const * const msrs
)
136 struct op_msr
*multiplex
= msrs
->multiplex
;
138 for (i
= 0; i
< model
->num_virt_counters
; ++i
) {
139 if (counter_config
[i
].enabled
) {
140 multiplex
[i
].saved
= -(u64
)counter_config
[i
].count
;
142 multiplex
[i
].addr
= 0;
143 multiplex
[i
].saved
= 0;
147 per_cpu(switch_index
, cpu
) = 0;
152 inline int op_x86_phys_to_virt(int phys
) { return phys
; }
153 static inline void nmi_shutdown_mux(void) { }
154 static inline int nmi_setup_mux(void) { return 1; }
156 nmi_cpu_setup_mux(int cpu
, struct op_msrs
const * const msrs
) { }
160 static void free_msrs(void)
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 size_t controls_size
= sizeof(struct op_msr
) * model
->num_controls
;
174 size_t counters_size
= sizeof(struct op_msr
) * model
->num_counters
;
177 for_each_possible_cpu(i
) {
178 per_cpu(cpu_msrs
, i
).counters
= kmalloc(counters_size
,
180 if (!per_cpu(cpu_msrs
, i
).counters
)
182 per_cpu(cpu_msrs
, i
).controls
= kmalloc(controls_size
,
184 if (!per_cpu(cpu_msrs
, i
).controls
)
191 static void nmi_cpu_setup(void *dummy
)
193 int cpu
= smp_processor_id();
194 struct op_msrs
*msrs
= &per_cpu(cpu_msrs
, cpu
);
195 nmi_cpu_save_registers(msrs
);
196 spin_lock(&oprofilefs_lock
);
197 model
->setup_ctrs(model
, msrs
);
198 nmi_cpu_setup_mux(cpu
, msrs
);
199 spin_unlock(&oprofilefs_lock
);
200 per_cpu(saved_lvtpc
, cpu
) = apic_read(APIC_LVTPC
);
201 apic_write(APIC_LVTPC
, APIC_DM_NMI
);
204 static struct notifier_block profile_exceptions_nb
= {
205 .notifier_call
= profile_exceptions_notify
,
210 static int nmi_setup(void)
215 if (!allocate_msrs())
217 else if (!nmi_setup_mux())
220 err
= register_die_notifier(&profile_exceptions_nb
);
228 /* We need to serialize save and setup for HT because the subset
229 * of msrs are distinct for save and setup operations
232 /* Assume saved/restored counters are the same on all CPUs */
233 model
->fill_in_addresses(&per_cpu(cpu_msrs
, 0));
234 for_each_possible_cpu(cpu
) {
236 memcpy(per_cpu(cpu_msrs
, cpu
).counters
,
237 per_cpu(cpu_msrs
, 0).counters
,
238 sizeof(struct op_msr
) * model
->num_counters
);
240 memcpy(per_cpu(cpu_msrs
, cpu
).controls
,
241 per_cpu(cpu_msrs
, 0).controls
,
242 sizeof(struct op_msr
) * model
->num_controls
);
243 #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
244 memcpy(per_cpu(cpu_msrs
, cpu
).multiplex
,
245 per_cpu(cpu_msrs
, 0).multiplex
,
246 sizeof(struct op_msr
) * model
->num_virt_counters
);
250 on_each_cpu(nmi_cpu_setup
, NULL
, 1);
255 #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
257 static void nmi_cpu_save_mpx_registers(struct op_msrs
*msrs
)
259 struct op_msr
*multiplex
= msrs
->multiplex
;
262 for (i
= 0; i
< model
->num_counters
; ++i
) {
263 int virt
= op_x86_phys_to_virt(i
);
264 if (multiplex
[virt
].addr
)
265 rdmsrl(multiplex
[virt
].addr
, multiplex
[virt
].saved
);
269 static void nmi_cpu_restore_mpx_registers(struct op_msrs
*msrs
)
271 struct op_msr
*multiplex
= msrs
->multiplex
;
274 for (i
= 0; i
< model
->num_counters
; ++i
) {
275 int virt
= op_x86_phys_to_virt(i
);
276 if (multiplex
[virt
].addr
)
277 wrmsrl(multiplex
[virt
].addr
, multiplex
[virt
].saved
);
283 static void nmi_cpu_restore_registers(struct op_msrs
*msrs
)
285 struct op_msr
*counters
= msrs
->counters
;
286 struct op_msr
*controls
= msrs
->controls
;
289 for (i
= 0; i
< model
->num_controls
; ++i
) {
290 if (controls
[i
].addr
)
291 wrmsrl(controls
[i
].addr
, controls
[i
].saved
);
294 for (i
= 0; i
< model
->num_counters
; ++i
) {
295 if (counters
[i
].addr
)
296 wrmsrl(counters
[i
].addr
, counters
[i
].saved
);
300 static void nmi_cpu_shutdown(void *dummy
)
303 int cpu
= smp_processor_id();
304 struct op_msrs
*msrs
= &per_cpu(cpu_msrs
, cpu
);
306 /* restoring APIC_LVTPC can trigger an apic error because the delivery
307 * mode and vector nr combination can be illegal. That's by design: on
308 * power on apic lvt contain a zero vector nr which are legal only for
309 * NMI delivery mode. So inhibit apic err before restoring lvtpc
311 v
= apic_read(APIC_LVTERR
);
312 apic_write(APIC_LVTERR
, v
| APIC_LVT_MASKED
);
313 apic_write(APIC_LVTPC
, per_cpu(saved_lvtpc
, cpu
));
314 apic_write(APIC_LVTERR
, v
);
315 nmi_cpu_restore_registers(msrs
);
318 static void nmi_shutdown(void)
320 struct op_msrs
*msrs
;
323 on_each_cpu(nmi_cpu_shutdown
, NULL
, 1);
324 unregister_die_notifier(&profile_exceptions_nb
);
326 msrs
= &get_cpu_var(cpu_msrs
);
327 model
->shutdown(msrs
);
329 put_cpu_var(cpu_msrs
);
332 static void nmi_cpu_start(void *dummy
)
334 struct op_msrs
const *msrs
= &__get_cpu_var(cpu_msrs
);
338 static int nmi_start(void)
340 on_each_cpu(nmi_cpu_start
, NULL
, 1);
344 static void nmi_cpu_stop(void *dummy
)
346 struct op_msrs
const *msrs
= &__get_cpu_var(cpu_msrs
);
350 static void nmi_stop(void)
352 on_each_cpu(nmi_cpu_stop
, NULL
, 1);
355 static int nmi_create_files(struct super_block
*sb
, struct dentry
*root
)
359 for (i
= 0; i
< model
->num_virt_counters
; ++i
) {
363 #ifndef CONFIG_OPROFILE_EVENT_MULTIPLEX
364 /* quick little hack to _not_ expose a counter if it is not
365 * available for use. This should protect userspace app.
366 * NOTE: assumes 1:1 mapping here (that counters are organized
367 * sequentially in their struct assignment).
369 if (unlikely(!avail_to_resrv_perfctr_nmi_bit(i
)))
371 #endif /* CONFIG_OPROFILE_EVENT_MULTIPLEX */
373 snprintf(buf
, sizeof(buf
), "%d", i
);
374 dir
= oprofilefs_mkdir(sb
, root
, buf
);
375 oprofilefs_create_ulong(sb
, dir
, "enabled", &counter_config
[i
].enabled
);
376 oprofilefs_create_ulong(sb
, dir
, "event", &counter_config
[i
].event
);
377 oprofilefs_create_ulong(sb
, dir
, "count", &counter_config
[i
].count
);
378 oprofilefs_create_ulong(sb
, dir
, "unit_mask", &counter_config
[i
].unit_mask
);
379 oprofilefs_create_ulong(sb
, dir
, "kernel", &counter_config
[i
].kernel
);
380 oprofilefs_create_ulong(sb
, dir
, "user", &counter_config
[i
].user
);
386 #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
388 static void nmi_cpu_switch(void *dummy
)
390 int cpu
= smp_processor_id();
391 int si
= per_cpu(switch_index
, cpu
);
392 struct op_msrs
*msrs
= &per_cpu(cpu_msrs
, cpu
);
395 nmi_cpu_save_mpx_registers(msrs
);
397 /* move to next set */
398 si
+= model
->num_counters
;
399 if ((si
> model
->num_virt_counters
) || (counter_config
[si
].count
== 0))
400 per_cpu(switch_index
, cpu
) = 0;
402 per_cpu(switch_index
, cpu
) = si
;
404 model
->switch_ctrl(model
, msrs
);
405 nmi_cpu_restore_mpx_registers(msrs
);
412 * Quick check to see if multiplexing is necessary.
413 * The check should be sufficient since counters are used
416 static int nmi_multiplex_on(void)
418 return counter_config
[model
->num_counters
].count
? 0 : -EINVAL
;
421 static int nmi_switch_event(void)
423 if (!model
->switch_ctrl
)
424 return -ENOSYS
; /* not implemented */
425 if (nmi_multiplex_on() < 0)
426 return -EINVAL
; /* not necessary */
428 on_each_cpu(nmi_cpu_switch
, NULL
, 1);
430 atomic_inc(&multiplex_counter
);
438 static int oprofile_cpu_notifier(struct notifier_block
*b
, unsigned long action
,
441 int cpu
= (unsigned long)data
;
443 case CPU_DOWN_FAILED
:
445 smp_call_function_single(cpu
, nmi_cpu_start
, NULL
, 0);
447 case CPU_DOWN_PREPARE
:
448 smp_call_function_single(cpu
, nmi_cpu_stop
, NULL
, 1);
454 static struct notifier_block oprofile_cpu_nb
= {
455 .notifier_call
= oprofile_cpu_notifier
461 static int nmi_suspend(struct sys_device
*dev
, pm_message_t state
)
463 /* Only one CPU left, just stop that one */
464 if (nmi_enabled
== 1)
469 static int nmi_resume(struct sys_device
*dev
)
471 if (nmi_enabled
== 1)
476 static struct sysdev_class oprofile_sysclass
= {
478 .resume
= nmi_resume
,
479 .suspend
= nmi_suspend
,
482 static struct sys_device device_oprofile
= {
484 .cls
= &oprofile_sysclass
,
487 static int __init
init_sysfs(void)
491 error
= sysdev_class_register(&oprofile_sysclass
);
493 error
= sysdev_register(&device_oprofile
);
497 static void exit_sysfs(void)
499 sysdev_unregister(&device_oprofile
);
500 sysdev_class_unregister(&oprofile_sysclass
);
504 #define init_sysfs() do { } while (0)
505 #define exit_sysfs() do { } while (0)
506 #endif /* CONFIG_PM */
508 static int __init
p4_init(char **cpu_type
)
510 __u8 cpu_model
= boot_cpu_data
.x86_model
;
512 if (cpu_model
> 6 || cpu_model
== 5)
516 *cpu_type
= "i386/p4";
520 switch (smp_num_siblings
) {
522 *cpu_type
= "i386/p4";
527 *cpu_type
= "i386/p4-ht";
528 model
= &op_p4_ht2_spec
;
533 printk(KERN_INFO
"oprofile: P4 HyperThreading detected with > 2 threads\n");
534 printk(KERN_INFO
"oprofile: Reverting to timer mode.\n");
538 static int force_arch_perfmon
;
539 static int force_cpu_type(const char *str
, struct kernel_param
*kp
)
541 if (!strcmp(str
, "arch_perfmon")) {
542 force_arch_perfmon
= 1;
543 printk(KERN_INFO
"oprofile: forcing architectural perfmon\n");
548 module_param_call(cpu_type
, force_cpu_type
, NULL
, NULL
, 0);
550 static int __init
ppro_init(char **cpu_type
)
552 __u8 cpu_model
= boot_cpu_data
.x86_model
;
553 struct op_x86_model_spec
const *spec
= &op_ppro_spec
; /* default */
555 if (force_arch_perfmon
&& cpu_has_arch_perfmon
)
560 *cpu_type
= "i386/ppro";
563 *cpu_type
= "i386/pii";
567 *cpu_type
= "i386/piii";
571 *cpu_type
= "i386/p6_mobile";
574 *cpu_type
= "i386/core";
577 *cpu_type
= "i386/core_2";
580 spec
= &op_arch_perfmon_spec
;
581 *cpu_type
= "i386/core_i7";
584 *cpu_type
= "i386/atom";
595 /* in order to get sysfs right */
596 static int using_nmi
;
598 int __init
op_nmi_init(struct oprofile_operations
*ops
)
600 __u8 vendor
= boot_cpu_data
.x86_vendor
;
601 __u8 family
= boot_cpu_data
.x86
;
602 char *cpu_type
= NULL
;
610 /* Needs to be at least an Athlon (or hammer in 32bit mode) */
614 cpu_type
= "i386/athlon";
618 * Actually it could be i386/hammer too, but
619 * give user space an consistent name.
621 cpu_type
= "x86-64/hammer";
624 cpu_type
= "x86-64/family10";
627 cpu_type
= "x86-64/family11h";
632 model
= &op_amd_spec
;
635 case X86_VENDOR_INTEL
:
642 /* A P6-class processor */
644 ppro_init(&cpu_type
);
654 if (!cpu_has_arch_perfmon
)
657 /* use arch perfmon as fallback */
658 cpu_type
= "i386/arch_perfmon";
659 model
= &op_arch_perfmon_spec
;
667 register_cpu_notifier(&oprofile_cpu_nb
);
669 /* default values, can be overwritten by model */
670 ops
->create_files
= nmi_create_files
;
671 ops
->setup
= nmi_setup
;
672 ops
->shutdown
= nmi_shutdown
;
673 ops
->start
= nmi_start
;
674 ops
->stop
= nmi_stop
;
675 ops
->cpu_type
= cpu_type
;
676 #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
677 ops
->switch_events
= nmi_switch_event
;
681 ret
= model
->init(ops
);
687 printk(KERN_INFO
"oprofile: using NMI interrupt.\n");
691 void op_nmi_exit(void)
696 unregister_cpu_notifier(&oprofile_cpu_nb
);