blob: dca7240aeb269a007ebeeb253d3dfbdb65688d28 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * @file nmi_int.c
3 *
Jason Yeh4d4036e2009-07-08 13:49:38 +02004 * @remark Copyright 2002-2009 OProfile authors
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * @remark Read the file COPYING
6 *
7 * @author John Levon <levon@movementarian.org>
Robert Richteradf5ec02008-07-22 21:08:48 +02008 * @author Robert Richter <robert.richter@amd.com>
Jason Yeh4d4036e2009-07-08 13:49:38 +02009 * @author Barry Kasindorf <barry.kasindorf@amd.com>
10 * @author Jason Yeh <jason.yeh@amd.com>
11 * @author Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
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>
Andi Kleen1cfcea12006-07-10 17:06:21 +020020#include <linux/moduleparam.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070021#include <linux/kdebug.h>
Andi Kleen80a8c9f2008-08-19 03:13:38 +020022#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/nmi.h>
24#include <asm/msr.h>
25#include <asm/apic.h>
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +010026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "op_counter.h"
28#include "op_x86_model.h"
Don Zickus2fbe7b22006-09-26 10:52:27 +020029
Robert Richter259a83a2009-07-09 15:12:35 +020030static struct op_x86_model_spec *model;
Mike Travisd18d00f2008-03-25 15:06:59 -070031static DEFINE_PER_CPU(struct op_msrs, cpu_msrs);
32static DEFINE_PER_CPU(unsigned long, saved_lvtpc);
Don Zickus2fbe7b22006-09-26 10:52:27 +020033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/* 0 == registered but off, 1 == registered and on */
35static int nmi_enabled = 0;
36
Jason Yeh4d4036e2009-07-08 13:49:38 +020037
38#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
39extern atomic_t multiplex_counter;
40#endif
41
42struct op_counter_config counter_config[OP_MAX_COUNTER];
43
Robert Richter3370d352009-05-25 15:10:32 +020044/* 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
Adrian Bunkc7c19f82006-09-26 10:52:27 +020064static int profile_exceptions_notify(struct notifier_block *self,
65 unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Don Zickus2fbe7b22006-09-26 10:52:27 +020067 struct die_args *args = (struct die_args *)data;
68 int ret = NOTIFY_DONE;
69 int cpu = smp_processor_id();
70
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +010071 switch (val) {
Don Zickus2fbe7b22006-09-26 10:52:27 +020072 case DIE_NMI:
Mike Galbraith5b75af02009-02-04 17:11:34 +010073 case DIE_NMI_IPI:
74 model->check_ctrs(args->regs, &per_cpu(cpu_msrs, cpu));
75 ret = NOTIFY_STOP;
Don Zickus2fbe7b22006-09-26 10:52:27 +020076 break;
77 default:
78 break;
79 }
80 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
Don Zickus2fbe7b22006-09-26 10:52:27 +020082
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +010083static void nmi_cpu_save_registers(struct op_msrs *msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +010085 struct op_msr *counters = msrs->counters;
86 struct op_msr *controls = msrs->controls;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 unsigned int i;
88
Robert Richter1a245c42009-06-05 15:54:24 +020089 for (i = 0; i < model->num_counters; ++i) {
Robert Richter95e74e62009-06-03 19:09:27 +020090 if (counters[i].addr)
91 rdmsrl(counters[i].addr, counters[i].saved);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +010093
Robert Richter1a245c42009-06-05 15:54:24 +020094 for (i = 0; i < model->num_controls; ++i) {
Robert Richter95e74e62009-06-03 19:09:27 +020095 if (controls[i].addr)
96 rdmsrl(controls[i].addr, controls[i].saved);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98}
99
Robert Richterb28d1b92009-07-09 14:38:49 +0200100static 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
Robert Richterd8471ad2009-07-16 13:04:43 +0200123#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
124
125static DEFINE_PER_CPU(int, switch_index);
126
Robert Richter39e97f42009-07-09 15:11:45 +0200127static inline int has_mux(void)
128{
129 return !!model->switch_ctrl;
130}
131
Robert Richterd8471ad2009-07-16 13:04:43 +0200132inline int op_x86_phys_to_virt(int phys)
133{
134 return __get_cpu_var(switch_index) + phys;
135}
136
Robert Richter6ab82f92009-07-09 14:40:04 +0200137static void nmi_shutdown_mux(void)
138{
139 int i;
Robert Richter39e97f42009-07-09 15:11:45 +0200140
141 if (!has_mux())
142 return;
143
Robert Richter6ab82f92009-07-09 14:40:04 +0200144 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;
Robert Richter39e97f42009-07-09 15:11:45 +0200156
157 if (!has_mux())
158 return 1;
159
Robert Richter6ab82f92009-07-09 14:40:04 +0200160 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 }
Robert Richter39e97f42009-07-09 15:11:45 +0200166
Robert Richter6ab82f92009-07-09 14:40:04 +0200167 return 1;
168}
169
Robert Richter48fb4b42009-07-09 14:38:49 +0200170static 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
Robert Richter39e97f42009-07-09 15:11:45 +0200175 if (!has_mux())
176 return;
177
Robert Richter48fb4b42009-07-09 14:38:49 +0200178 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
Robert Richterd0f585d2009-07-09 14:38:49 +0200190static 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
Robert Richterb28d1b92009-07-09 14:38:49 +0200214static 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{
Robert Richter39e97f42009-07-09 15:11:45 +0200249 if (!has_mux())
Robert Richterb28d1b92009-07-09 14:38:49 +0200250 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
Robert Richterd8471ad2009-07-16 13:04:43 +0200261#else
262
263inline int op_x86_phys_to_virt(int phys) { return phys; }
Robert Richter6ab82f92009-07-09 14:40:04 +0200264static inline void nmi_shutdown_mux(void) { }
265static inline int nmi_setup_mux(void) { return 1; }
Robert Richter48fb4b42009-07-09 14:38:49 +0200266static inline void
267nmi_cpu_setup_mux(int cpu, struct op_msrs const * const msrs) { }
Robert Richterd8471ad2009-07-16 13:04:43 +0200268
269#endif
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271static void free_msrs(void)
272{
273 int i;
KAMEZAWA Hiroyukic8912592006-03-28 01:56:39 -0800274 for_each_possible_cpu(i) {
Mike Travisd18d00f2008-03-25 15:06:59 -0700275 kfree(per_cpu(cpu_msrs, i).counters);
276 per_cpu(cpu_msrs, i).counters = NULL;
277 kfree(per_cpu(cpu_msrs, i).controls);
278 per_cpu(cpu_msrs, i).controls = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282static int allocate_msrs(void)
283{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 size_t controls_size = sizeof(struct op_msr) * model->num_controls;
285 size_t counters_size = sizeof(struct op_msr) * model->num_counters;
286
Robert Richter4c168ea2008-09-24 11:08:52 +0200287 int i;
Chris Wright0939c172007-06-01 00:46:39 -0700288 for_each_possible_cpu(i) {
Mike Travisd18d00f2008-03-25 15:06:59 -0700289 per_cpu(cpu_msrs, i).counters = kmalloc(counters_size,
Robert Richter6ab82f92009-07-09 14:40:04 +0200290 GFP_KERNEL);
291 if (!per_cpu(cpu_msrs, i).counters)
292 return 0;
Robert Richter4c168ea2008-09-24 11:08:52 +0200293 per_cpu(cpu_msrs, i).controls = kmalloc(controls_size,
Robert Richter6ab82f92009-07-09 14:40:04 +0200294 GFP_KERNEL);
295 if (!per_cpu(cpu_msrs, i).controls)
296 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298
Robert Richter6ab82f92009-07-09 14:40:04 +0200299 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100302static void nmi_cpu_setup(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 int cpu = smp_processor_id();
Mike Travisd18d00f2008-03-25 15:06:59 -0700305 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
Robert Richter44ab9a62009-07-09 18:33:02 +0200306 nmi_cpu_save_registers(msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 spin_lock(&oprofilefs_lock);
Robert Richteref8828d2009-05-25 19:31:44 +0200308 model->setup_ctrs(model, msrs);
Robert Richter6bfccd02009-07-09 19:23:50 +0200309 nmi_cpu_setup_mux(cpu, msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 spin_unlock(&oprofilefs_lock);
Mike Travisd18d00f2008-03-25 15:06:59 -0700311 per_cpu(saved_lvtpc, cpu) = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 apic_write(APIC_LVTPC, APIC_DM_NMI);
313}
314
Don Zickus2fbe7b22006-09-26 10:52:27 +0200315static struct notifier_block profile_exceptions_nb = {
316 .notifier_call = profile_exceptions_notify,
317 .next = NULL,
Mike Galbraith5b75af02009-02-04 17:11:34 +0100318 .priority = 2
Don Zickus2fbe7b22006-09-26 10:52:27 +0200319};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321static int nmi_setup(void)
322{
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100323 int err = 0;
Andi Kleen6c977aa2007-05-21 14:31:45 +0200324 int cpu;
Don Zickus2fbe7b22006-09-26 10:52:27 +0200325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (!allocate_msrs())
Robert Richter6ab82f92009-07-09 14:40:04 +0200327 err = -ENOMEM;
328 else if (!nmi_setup_mux())
329 err = -ENOMEM;
330 else
331 err = register_die_notifier(&profile_exceptions_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100333 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 free_msrs();
Robert Richter6ab82f92009-07-09 14:40:04 +0200335 nmi_shutdown_mux();
Don Zickus2fbe7b22006-09-26 10:52:27 +0200336 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
Don Zickus2fbe7b22006-09-26 10:52:27 +0200338
Robert Richter4c168ea2008-09-24 11:08:52 +0200339 /* We need to serialize save and setup for HT because the subset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 * of msrs are distinct for save and setup operations
341 */
Andi Kleen6c977aa2007-05-21 14:31:45 +0200342
343 /* Assume saved/restored counters are the same on all CPUs */
Mike Travisd18d00f2008-03-25 15:06:59 -0700344 model->fill_in_addresses(&per_cpu(cpu_msrs, 0));
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100345 for_each_possible_cpu(cpu) {
Chris Wright0939c172007-06-01 00:46:39 -0700346 if (cpu != 0) {
Mike Travisd18d00f2008-03-25 15:06:59 -0700347 memcpy(per_cpu(cpu_msrs, cpu).counters,
348 per_cpu(cpu_msrs, 0).counters,
Chris Wright0939c172007-06-01 00:46:39 -0700349 sizeof(struct op_msr) * model->num_counters);
350
Mike Travisd18d00f2008-03-25 15:06:59 -0700351 memcpy(per_cpu(cpu_msrs, cpu).controls,
352 per_cpu(cpu_msrs, 0).controls,
Chris Wright0939c172007-06-01 00:46:39 -0700353 sizeof(struct op_msr) * model->num_controls);
Jason Yeh4d4036e2009-07-08 13:49:38 +0200354#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
355 memcpy(per_cpu(cpu_msrs, cpu).multiplex,
356 per_cpu(cpu_msrs, 0).multiplex,
357 sizeof(struct op_msr) * model->num_virt_counters);
358#endif
Chris Wright0939c172007-06-01 00:46:39 -0700359 }
Andi Kleen6c977aa2007-05-21 14:31:45 +0200360 }
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200361 on_each_cpu(nmi_cpu_setup, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 nmi_enabled = 1;
363 return 0;
364}
365
Robert Richter44ab9a62009-07-09 18:33:02 +0200366static void nmi_cpu_restore_registers(struct op_msrs *msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100368 struct op_msr *counters = msrs->counters;
369 struct op_msr *controls = msrs->controls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 unsigned int i;
371
Robert Richter1a245c42009-06-05 15:54:24 +0200372 for (i = 0; i < model->num_controls; ++i) {
Robert Richter95e74e62009-06-03 19:09:27 +0200373 if (controls[i].addr)
374 wrmsrl(controls[i].addr, controls[i].saved);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100376
Robert Richter1a245c42009-06-05 15:54:24 +0200377 for (i = 0; i < model->num_counters; ++i) {
Robert Richter95e74e62009-06-03 19:09:27 +0200378 if (counters[i].addr)
379 wrmsrl(counters[i].addr, counters[i].saved);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100383static void nmi_cpu_shutdown(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 unsigned int v;
386 int cpu = smp_processor_id();
Robert Richter82a22522009-07-09 16:29:34 +0200387 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /* restoring APIC_LVTPC can trigger an apic error because the delivery
390 * mode and vector nr combination can be illegal. That's by design: on
391 * power on apic lvt contain a zero vector nr which are legal only for
392 * NMI delivery mode. So inhibit apic err before restoring lvtpc
393 */
394 v = apic_read(APIC_LVTERR);
395 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Mike Travisd18d00f2008-03-25 15:06:59 -0700396 apic_write(APIC_LVTPC, per_cpu(saved_lvtpc, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 apic_write(APIC_LVTERR, v);
Robert Richter44ab9a62009-07-09 18:33:02 +0200398 nmi_cpu_restore_registers(msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401static void nmi_shutdown(void)
402{
Andrea Righib61e06f2008-09-20 18:02:27 +0200403 struct op_msrs *msrs;
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 nmi_enabled = 0;
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200406 on_each_cpu(nmi_cpu_shutdown, NULL, 1);
Don Zickus2fbe7b22006-09-26 10:52:27 +0200407 unregister_die_notifier(&profile_exceptions_nb);
Robert Richter6ab82f92009-07-09 14:40:04 +0200408 nmi_shutdown_mux();
Andrea Righib61e06f2008-09-20 18:02:27 +0200409 msrs = &get_cpu_var(cpu_msrs);
Mike Travisd18d00f2008-03-25 15:06:59 -0700410 model->shutdown(msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 free_msrs();
Vegard Nossum93e1ade2008-06-22 09:40:18 +0200412 put_cpu_var(cpu_msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100415static int nmi_create_files(struct super_block *sb, struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 unsigned int i;
418
Jason Yeh4d4036e2009-07-08 13:49:38 +0200419 for (i = 0; i < model->num_virt_counters; ++i) {
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100420 struct dentry *dir;
Markus Armbruster0c6856f2006-06-26 00:24:34 -0700421 char buf[4];
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100422
Jason Yeh4d4036e2009-07-08 13:49:38 +0200423#ifndef CONFIG_OPROFILE_EVENT_MULTIPLEX
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100424 /* quick little hack to _not_ expose a counter if it is not
Don Zickuscb9c4482006-09-26 10:52:26 +0200425 * available for use. This should protect userspace app.
426 * NOTE: assumes 1:1 mapping here (that counters are organized
427 * sequentially in their struct assignment).
428 */
429 if (unlikely(!avail_to_resrv_perfctr_nmi_bit(i)))
430 continue;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200431#endif /* CONFIG_OPROFILE_EVENT_MULTIPLEX */
Don Zickuscb9c4482006-09-26 10:52:26 +0200432
Markus Armbruster0c6856f2006-06-26 00:24:34 -0700433 snprintf(buf, sizeof(buf), "%d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 dir = oprofilefs_mkdir(sb, root, buf);
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100435 oprofilefs_create_ulong(sb, dir, "enabled", &counter_config[i].enabled);
436 oprofilefs_create_ulong(sb, dir, "event", &counter_config[i].event);
437 oprofilefs_create_ulong(sb, dir, "count", &counter_config[i].count);
438 oprofilefs_create_ulong(sb, dir, "unit_mask", &counter_config[i].unit_mask);
439 oprofilefs_create_ulong(sb, dir, "kernel", &counter_config[i].kernel);
440 oprofilefs_create_ulong(sb, dir, "user", &counter_config[i].user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
443 return 0;
444}
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100445
Robert Richter69046d42008-09-05 12:17:40 +0200446#ifdef CONFIG_SMP
447static int oprofile_cpu_notifier(struct notifier_block *b, unsigned long action,
448 void *data)
449{
450 int cpu = (unsigned long)data;
451 switch (action) {
452 case CPU_DOWN_FAILED:
453 case CPU_ONLINE:
454 smp_call_function_single(cpu, nmi_cpu_start, NULL, 0);
455 break;
456 case CPU_DOWN_PREPARE:
457 smp_call_function_single(cpu, nmi_cpu_stop, NULL, 1);
458 break;
459 }
460 return NOTIFY_DONE;
461}
462
463static struct notifier_block oprofile_cpu_nb = {
464 .notifier_call = oprofile_cpu_notifier
465};
466#endif
467
468#ifdef CONFIG_PM
469
470static int nmi_suspend(struct sys_device *dev, pm_message_t state)
471{
472 /* Only one CPU left, just stop that one */
473 if (nmi_enabled == 1)
474 nmi_cpu_stop(NULL);
475 return 0;
476}
477
478static int nmi_resume(struct sys_device *dev)
479{
480 if (nmi_enabled == 1)
481 nmi_cpu_start(NULL);
482 return 0;
483}
484
485static struct sysdev_class oprofile_sysclass = {
486 .name = "oprofile",
487 .resume = nmi_resume,
488 .suspend = nmi_suspend,
489};
490
491static struct sys_device device_oprofile = {
492 .id = 0,
493 .cls = &oprofile_sysclass,
494};
495
496static int __init init_sysfs(void)
497{
498 int error;
499
500 error = sysdev_class_register(&oprofile_sysclass);
501 if (!error)
502 error = sysdev_register(&device_oprofile);
503 return error;
504}
505
506static void exit_sysfs(void)
507{
508 sysdev_unregister(&device_oprofile);
509 sysdev_class_unregister(&oprofile_sysclass);
510}
511
512#else
513#define init_sysfs() do { } while (0)
514#define exit_sysfs() do { } while (0)
515#endif /* CONFIG_PM */
516
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100517static int __init p4_init(char **cpu_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 __u8 cpu_model = boot_cpu_data.x86_model;
520
Andi Kleen1f3d7b62009-04-27 17:44:12 +0200521 if (cpu_model > 6 || cpu_model == 5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return 0;
523
524#ifndef CONFIG_SMP
525 *cpu_type = "i386/p4";
526 model = &op_p4_spec;
527 return 1;
528#else
529 switch (smp_num_siblings) {
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100530 case 1:
531 *cpu_type = "i386/p4";
532 model = &op_p4_spec;
533 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100535 case 2:
536 *cpu_type = "i386/p4-ht";
537 model = &op_p4_ht2_spec;
538 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540#endif
541
542 printk(KERN_INFO "oprofile: P4 HyperThreading detected with > 2 threads\n");
543 printk(KERN_INFO "oprofile: Reverting to timer mode.\n");
544 return 0;
545}
546
Robert Richter7e4e0bd2009-05-06 12:10:23 +0200547static int force_arch_perfmon;
548static int force_cpu_type(const char *str, struct kernel_param *kp)
549{
Robert Richter8d7ff4f2009-06-23 11:48:14 +0200550 if (!strcmp(str, "arch_perfmon")) {
Robert Richter7e4e0bd2009-05-06 12:10:23 +0200551 force_arch_perfmon = 1;
552 printk(KERN_INFO "oprofile: forcing architectural perfmon\n");
553 }
554
555 return 0;
556}
557module_param_call(cpu_type, force_cpu_type, NULL, NULL, 0);
Andi Kleen1dcdb5a2009-04-27 17:44:11 +0200558
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100559static int __init ppro_init(char **cpu_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 __u8 cpu_model = boot_cpu_data.x86_model;
Robert Richter259a83a2009-07-09 15:12:35 +0200562 struct op_x86_model_spec *spec = &op_ppro_spec; /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Andi Kleen1dcdb5a2009-04-27 17:44:11 +0200564 if (force_arch_perfmon && cpu_has_arch_perfmon)
565 return 0;
566
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700567 switch (cpu_model) {
568 case 0 ... 2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 *cpu_type = "i386/ppro";
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700570 break;
571 case 3 ... 5:
572 *cpu_type = "i386/pii";
573 break;
574 case 6 ... 8:
William Cohen3d337c62008-11-30 15:39:10 -0500575 case 10 ... 11:
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700576 *cpu_type = "i386/piii";
577 break;
578 case 9:
William Cohen3d337c62008-11-30 15:39:10 -0500579 case 13:
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700580 *cpu_type = "i386/p6_mobile";
581 break;
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700582 case 14:
583 *cpu_type = "i386/core";
584 break;
585 case 15: case 23:
586 *cpu_type = "i386/core_2";
587 break;
Andi Kleen6adf4062009-04-27 17:44:13 +0200588 case 26:
Robert Richter802070f2009-06-12 18:32:07 +0200589 spec = &op_arch_perfmon_spec;
Andi Kleen6adf4062009-04-27 17:44:13 +0200590 *cpu_type = "i386/core_i7";
591 break;
592 case 28:
593 *cpu_type = "i386/atom";
594 break;
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700595 default:
596 /* Unknown */
597 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599
Robert Richter802070f2009-06-12 18:32:07 +0200600 model = spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return 1;
602}
603
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100604/* in order to get sysfs right */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605static int using_nmi;
606
David Gibson96d08212005-09-06 15:17:26 -0700607int __init op_nmi_init(struct oprofile_operations *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
609 __u8 vendor = boot_cpu_data.x86_vendor;
610 __u8 family = boot_cpu_data.x86;
Andi Kleenb9917022008-08-18 14:50:31 +0200611 char *cpu_type = NULL;
Robert Richteradf5ec02008-07-22 21:08:48 +0200612 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 if (!cpu_has_apic)
615 return -ENODEV;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 switch (vendor) {
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100618 case X86_VENDOR_AMD:
619 /* Needs to be at least an Athlon (or hammer in 32bit mode) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100621 switch (family) {
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100622 case 6:
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100623 cpu_type = "i386/athlon";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 break;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100625 case 0xf:
Robert Richterd20f24c2009-01-11 13:01:16 +0100626 /*
627 * Actually it could be i386/hammer too, but
628 * give user space an consistent name.
629 */
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100630 cpu_type = "x86-64/hammer";
631 break;
632 case 0x10:
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100633 cpu_type = "x86-64/family10";
634 break;
Barry Kasindorf12f2b262008-07-22 21:08:47 +0200635 case 0x11:
Barry Kasindorf12f2b262008-07-22 21:08:47 +0200636 cpu_type = "x86-64/family11h";
637 break;
Robert Richterd20f24c2009-01-11 13:01:16 +0100638 default:
639 return -ENODEV;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100640 }
Robert Richterd20f24c2009-01-11 13:01:16 +0100641 model = &op_amd_spec;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100642 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100644 case X86_VENDOR_INTEL:
645 switch (family) {
646 /* Pentium IV */
647 case 0xf:
Andi Kleenb9917022008-08-18 14:50:31 +0200648 p4_init(&cpu_type);
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100649 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100651 /* A P6-class processor */
652 case 6:
Andi Kleenb9917022008-08-18 14:50:31 +0200653 ppro_init(&cpu_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 break;
655
656 default:
Andi Kleenb9917022008-08-18 14:50:31 +0200657 break;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100658 }
Andi Kleenb9917022008-08-18 14:50:31 +0200659
Robert Richtere4192942008-10-12 15:12:34 -0400660 if (cpu_type)
661 break;
662
663 if (!cpu_has_arch_perfmon)
Andi Kleenb9917022008-08-18 14:50:31 +0200664 return -ENODEV;
Robert Richtere4192942008-10-12 15:12:34 -0400665
666 /* use arch perfmon as fallback */
667 cpu_type = "i386/arch_perfmon";
668 model = &op_arch_perfmon_spec;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100669 break;
670
671 default:
672 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
Andi Kleen80a8c9f2008-08-19 03:13:38 +0200675#ifdef CONFIG_SMP
676 register_cpu_notifier(&oprofile_cpu_nb);
677#endif
Robert Richter270d3e12008-07-22 21:09:01 +0200678 /* default values, can be overwritten by model */
Robert Richter6e63ea42009-07-07 19:25:39 +0200679 ops->create_files = nmi_create_files;
680 ops->setup = nmi_setup;
681 ops->shutdown = nmi_shutdown;
682 ops->start = nmi_start;
683 ops->stop = nmi_stop;
684 ops->cpu_type = cpu_type;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200685#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
686 ops->switch_events = nmi_switch_event;
687#endif
Robert Richter270d3e12008-07-22 21:09:01 +0200688
Robert Richteradf5ec02008-07-22 21:08:48 +0200689 if (model->init)
690 ret = model->init(ops);
691 if (ret)
692 return ret;
693
Robert Richter52471c62009-07-06 14:43:55 +0200694 if (!model->num_virt_counters)
695 model->num_virt_counters = model->num_counters;
696
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100697 init_sysfs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 using_nmi = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 printk(KERN_INFO "oprofile: using NMI interrupt.\n");
700 return 0;
701}
702
David Gibson96d08212005-09-06 15:17:26 -0700703void op_nmi_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Andi Kleen80a8c9f2008-08-19 03:13:38 +0200705 if (using_nmi) {
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100706 exit_sysfs();
Andi Kleen80a8c9f2008-08-19 03:13:38 +0200707#ifdef CONFIG_SMP
708 unregister_cpu_notifier(&oprofile_cpu_nb);
709#endif
710 }
Robert Richteradf5ec02008-07-22 21:08:48 +0200711 if (model->exit)
712 model->exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}