4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
7 * @author John Levon <levon@movementarian.org>
10 #include <linux/init.h>
11 #include <linux/notifier.h>
12 #include <linux/smp.h>
13 #include <linux/oprofile.h>
14 #include <linux/sysdev.h>
15 #include <linux/slab.h>
16 #include <linux/moduleparam.h>
20 #include <asm/kdebug.h>
22 #include "op_counter.h"
23 #include "op_x86_model.h"
25 static struct op_x86_model_spec
const * model
;
26 static struct op_msrs cpu_msrs
[NR_CPUS
];
27 static unsigned long saved_lvtpc
[NR_CPUS
];
29 static int nmi_start(void);
30 static void nmi_stop(void);
32 /* 0 == registered but off, 1 == registered and on */
33 static int nmi_enabled
= 0;
37 static int nmi_suspend(struct sys_device
*dev
, pm_message_t state
)
45 static int nmi_resume(struct sys_device
*dev
)
53 static struct sysdev_class oprofile_sysclass
= {
54 set_kset_name("oprofile"),
56 .suspend
= nmi_suspend
,
60 static struct sys_device device_oprofile
= {
62 .cls
= &oprofile_sysclass
,
66 static int __init
init_driverfs(void)
69 if (!(error
= sysdev_class_register(&oprofile_sysclass
)))
70 error
= sysdev_register(&device_oprofile
);
75 static void exit_driverfs(void)
77 sysdev_unregister(&device_oprofile
);
78 sysdev_class_unregister(&oprofile_sysclass
);
82 #define init_driverfs() do { } while (0)
83 #define exit_driverfs() do { } while (0)
84 #endif /* CONFIG_PM */
86 static int profile_exceptions_notify(struct notifier_block
*self
,
87 unsigned long val
, void *data
)
89 struct die_args
*args
= (struct die_args
*)data
;
90 int ret
= NOTIFY_DONE
;
91 int cpu
= smp_processor_id();
95 if (model
->check_ctrs(args
->regs
, &cpu_msrs
[cpu
]))
104 static void nmi_cpu_save_registers(struct op_msrs
* msrs
)
106 unsigned int const nr_ctrs
= model
->num_counters
;
107 unsigned int const nr_ctrls
= model
->num_controls
;
108 struct op_msr
* counters
= msrs
->counters
;
109 struct op_msr
* controls
= msrs
->controls
;
112 for (i
= 0; i
< nr_ctrs
; ++i
) {
113 if (counters
[i
].addr
){
114 rdmsr(counters
[i
].addr
,
115 counters
[i
].saved
.low
,
116 counters
[i
].saved
.high
);
120 for (i
= 0; i
< nr_ctrls
; ++i
) {
121 if (controls
[i
].addr
){
122 rdmsr(controls
[i
].addr
,
123 controls
[i
].saved
.low
,
124 controls
[i
].saved
.high
);
130 static void nmi_save_registers(void * dummy
)
132 int cpu
= smp_processor_id();
133 struct op_msrs
* msrs
= &cpu_msrs
[cpu
];
134 model
->fill_in_addresses(msrs
);
135 nmi_cpu_save_registers(msrs
);
139 static void free_msrs(void)
142 for_each_possible_cpu(i
) {
143 kfree(cpu_msrs
[i
].counters
);
144 cpu_msrs
[i
].counters
= NULL
;
145 kfree(cpu_msrs
[i
].controls
);
146 cpu_msrs
[i
].controls
= NULL
;
151 static int allocate_msrs(void)
154 size_t controls_size
= sizeof(struct op_msr
) * model
->num_controls
;
155 size_t counters_size
= sizeof(struct op_msr
) * model
->num_counters
;
158 for_each_online_cpu(i
) {
159 cpu_msrs
[i
].counters
= kmalloc(counters_size
, GFP_KERNEL
);
160 if (!cpu_msrs
[i
].counters
) {
164 cpu_msrs
[i
].controls
= kmalloc(controls_size
, GFP_KERNEL
);
165 if (!cpu_msrs
[i
].controls
) {
178 static void nmi_cpu_setup(void * dummy
)
180 int cpu
= smp_processor_id();
181 struct op_msrs
* msrs
= &cpu_msrs
[cpu
];
182 spin_lock(&oprofilefs_lock
);
183 model
->setup_ctrs(msrs
);
184 spin_unlock(&oprofilefs_lock
);
185 saved_lvtpc
[cpu
] = apic_read(APIC_LVTPC
);
186 apic_write(APIC_LVTPC
, APIC_DM_NMI
);
189 static struct notifier_block profile_exceptions_nb
= {
190 .notifier_call
= profile_exceptions_notify
,
195 static int nmi_setup(void)
199 if (!allocate_msrs())
202 if ((err
= register_die_notifier(&profile_exceptions_nb
))){
207 /* We need to serialize save and setup for HT because the subset
208 * of msrs are distinct for save and setup operations
210 on_each_cpu(nmi_save_registers
, NULL
, 0, 1);
211 on_each_cpu(nmi_cpu_setup
, NULL
, 0, 1);
217 static void nmi_restore_registers(struct op_msrs
* msrs
)
219 unsigned int const nr_ctrs
= model
->num_counters
;
220 unsigned int const nr_ctrls
= model
->num_controls
;
221 struct op_msr
* counters
= msrs
->counters
;
222 struct op_msr
* controls
= msrs
->controls
;
225 for (i
= 0; i
< nr_ctrls
; ++i
) {
226 if (controls
[i
].addr
){
227 wrmsr(controls
[i
].addr
,
228 controls
[i
].saved
.low
,
229 controls
[i
].saved
.high
);
233 for (i
= 0; i
< nr_ctrs
; ++i
) {
234 if (counters
[i
].addr
){
235 wrmsr(counters
[i
].addr
,
236 counters
[i
].saved
.low
,
237 counters
[i
].saved
.high
);
243 static void nmi_cpu_shutdown(void * dummy
)
246 int cpu
= smp_processor_id();
247 struct op_msrs
* msrs
= &cpu_msrs
[cpu
];
249 /* restoring APIC_LVTPC can trigger an apic error because the delivery
250 * mode and vector nr combination can be illegal. That's by design: on
251 * power on apic lvt contain a zero vector nr which are legal only for
252 * NMI delivery mode. So inhibit apic err before restoring lvtpc
254 v
= apic_read(APIC_LVTERR
);
255 apic_write(APIC_LVTERR
, v
| APIC_LVT_MASKED
);
256 apic_write(APIC_LVTPC
, saved_lvtpc
[cpu
]);
257 apic_write(APIC_LVTERR
, v
);
258 nmi_restore_registers(msrs
);
259 model
->shutdown(msrs
);
263 static void nmi_shutdown(void)
266 on_each_cpu(nmi_cpu_shutdown
, NULL
, 0, 1);
267 unregister_die_notifier(&profile_exceptions_nb
);
272 static void nmi_cpu_start(void * dummy
)
274 struct op_msrs
const * msrs
= &cpu_msrs
[smp_processor_id()];
279 static int nmi_start(void)
281 on_each_cpu(nmi_cpu_start
, NULL
, 0, 1);
286 static void nmi_cpu_stop(void * dummy
)
288 struct op_msrs
const * msrs
= &cpu_msrs
[smp_processor_id()];
293 static void nmi_stop(void)
295 on_each_cpu(nmi_cpu_stop
, NULL
, 0, 1);
299 struct op_counter_config counter_config
[OP_MAX_COUNTER
];
301 static int nmi_create_files(struct super_block
* sb
, struct dentry
* root
)
305 for (i
= 0; i
< model
->num_counters
; ++i
) {
309 /* quick little hack to _not_ expose a counter if it is not
310 * available for use. This should protect userspace app.
311 * NOTE: assumes 1:1 mapping here (that counters are organized
312 * sequentially in their struct assignment).
314 if (unlikely(!avail_to_resrv_perfctr_nmi_bit(i
)))
317 snprintf(buf
, sizeof(buf
), "%d", i
);
318 dir
= oprofilefs_mkdir(sb
, root
, buf
);
319 oprofilefs_create_ulong(sb
, dir
, "enabled", &counter_config
[i
].enabled
);
320 oprofilefs_create_ulong(sb
, dir
, "event", &counter_config
[i
].event
);
321 oprofilefs_create_ulong(sb
, dir
, "count", &counter_config
[i
].count
);
322 oprofilefs_create_ulong(sb
, dir
, "unit_mask", &counter_config
[i
].unit_mask
);
323 oprofilefs_create_ulong(sb
, dir
, "kernel", &counter_config
[i
].kernel
);
324 oprofilefs_create_ulong(sb
, dir
, "user", &counter_config
[i
].user
);
331 module_param(p4force
, int, 0);
333 static int __init
p4_init(char ** cpu_type
)
335 __u8 cpu_model
= boot_cpu_data
.x86_model
;
337 if (!p4force
&& (cpu_model
> 6 || cpu_model
== 5))
341 *cpu_type
= "i386/p4";
345 switch (smp_num_siblings
) {
347 *cpu_type
= "i386/p4";
352 *cpu_type
= "i386/p4-ht";
353 model
= &op_p4_ht2_spec
;
358 printk(KERN_INFO
"oprofile: P4 HyperThreading detected with > 2 threads\n");
359 printk(KERN_INFO
"oprofile: Reverting to timer mode.\n");
364 static int __init
ppro_init(char ** cpu_type
)
366 __u8 cpu_model
= boot_cpu_data
.x86_model
;
369 *cpu_type
= "i386/core";
370 else if (cpu_model
== 15)
371 *cpu_type
= "i386/core_2";
372 else if (cpu_model
> 0xd)
374 else if (cpu_model
== 9) {
375 *cpu_type
= "i386/p6_mobile";
376 } else if (cpu_model
> 5) {
377 *cpu_type
= "i386/piii";
378 } else if (cpu_model
> 2) {
379 *cpu_type
= "i386/pii";
381 *cpu_type
= "i386/ppro";
384 model
= &op_ppro_spec
;
388 /* in order to get driverfs right */
389 static int using_nmi
;
391 int __init
op_nmi_init(struct oprofile_operations
*ops
)
393 __u8 vendor
= boot_cpu_data
.x86_vendor
;
394 __u8 family
= boot_cpu_data
.x86
;
402 /* Needs to be at least an Athlon (or hammer in 32bit mode) */
408 model
= &op_athlon_spec
;
409 cpu_type
= "i386/athlon";
412 model
= &op_athlon_spec
;
413 /* Actually it could be i386/hammer too, but give
414 user space an consistent name. */
415 cpu_type
= "x86-64/hammer";
420 case X86_VENDOR_INTEL
:
424 if (!p4_init(&cpu_type
))
428 /* A P6-class processor */
430 if (!ppro_init(&cpu_type
))
445 ops
->create_files
= nmi_create_files
;
446 ops
->setup
= nmi_setup
;
447 ops
->shutdown
= nmi_shutdown
;
448 ops
->start
= nmi_start
;
449 ops
->stop
= nmi_stop
;
450 ops
->cpu_type
= cpu_type
;
451 printk(KERN_INFO
"oprofile: using NMI interrupt.\n");
456 void op_nmi_exit(void)