blob: da6d2ab31c6c3e19dce2484f38e35636b346e6a5 [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 Richter52805142009-07-09 16:02:44 +0200261static inline void mux_init(struct oprofile_operations *ops)
262{
263 if (has_mux())
264 ops->switch_events = nmi_switch_event;
265}
266
Robert Richter4d015f72009-07-09 21:42:51 +0200267static 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
Robert Richterd8471ad2009-07-16 13:04:43 +0200277#else
278
279inline int op_x86_phys_to_virt(int phys) { return phys; }
Robert Richter6ab82f92009-07-09 14:40:04 +0200280static inline void nmi_shutdown_mux(void) { }
281static inline int nmi_setup_mux(void) { return 1; }
Robert Richter48fb4b42009-07-09 14:38:49 +0200282static inline void
283nmi_cpu_setup_mux(int cpu, struct op_msrs const * const msrs) { }
Robert Richter52805142009-07-09 16:02:44 +0200284static inline void mux_init(struct oprofile_operations *ops) { }
Robert Richter4d015f72009-07-09 21:42:51 +0200285static void mux_clone(int cpu) { }
Robert Richterd8471ad2009-07-16 13:04:43 +0200286
287#endif
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289static void free_msrs(void)
290{
291 int i;
KAMEZAWA Hiroyukic8912592006-03-28 01:56:39 -0800292 for_each_possible_cpu(i) {
Mike Travisd18d00f2008-03-25 15:06:59 -0700293 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300static int allocate_msrs(void)
301{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 size_t controls_size = sizeof(struct op_msr) * model->num_controls;
303 size_t counters_size = sizeof(struct op_msr) * model->num_counters;
304
Robert Richter4c168ea2008-09-24 11:08:52 +0200305 int i;
Chris Wright0939c172007-06-01 00:46:39 -0700306 for_each_possible_cpu(i) {
Mike Travisd18d00f2008-03-25 15:06:59 -0700307 per_cpu(cpu_msrs, i).counters = kmalloc(counters_size,
Robert Richter6ab82f92009-07-09 14:40:04 +0200308 GFP_KERNEL);
309 if (!per_cpu(cpu_msrs, i).counters)
310 return 0;
Robert Richter4c168ea2008-09-24 11:08:52 +0200311 per_cpu(cpu_msrs, i).controls = kmalloc(controls_size,
Robert Richter6ab82f92009-07-09 14:40:04 +0200312 GFP_KERNEL);
313 if (!per_cpu(cpu_msrs, i).controls)
314 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316
Robert Richter6ab82f92009-07-09 14:40:04 +0200317 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100320static void nmi_cpu_setup(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 int cpu = smp_processor_id();
Mike Travisd18d00f2008-03-25 15:06:59 -0700323 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
Robert Richter44ab9a62009-07-09 18:33:02 +0200324 nmi_cpu_save_registers(msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 spin_lock(&oprofilefs_lock);
Robert Richteref8828d2009-05-25 19:31:44 +0200326 model->setup_ctrs(model, msrs);
Robert Richter6bfccd02009-07-09 19:23:50 +0200327 nmi_cpu_setup_mux(cpu, msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 spin_unlock(&oprofilefs_lock);
Mike Travisd18d00f2008-03-25 15:06:59 -0700329 per_cpu(saved_lvtpc, cpu) = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 apic_write(APIC_LVTPC, APIC_DM_NMI);
331}
332
Don Zickus2fbe7b22006-09-26 10:52:27 +0200333static struct notifier_block profile_exceptions_nb = {
334 .notifier_call = profile_exceptions_notify,
335 .next = NULL,
Mike Galbraith5b75af02009-02-04 17:11:34 +0100336 .priority = 2
Don Zickus2fbe7b22006-09-26 10:52:27 +0200337};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339static int nmi_setup(void)
340{
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100341 int err = 0;
Andi Kleen6c977aa2007-05-21 14:31:45 +0200342 int cpu;
Don Zickus2fbe7b22006-09-26 10:52:27 +0200343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (!allocate_msrs())
Robert Richter6ab82f92009-07-09 14:40:04 +0200345 err = -ENOMEM;
346 else if (!nmi_setup_mux())
347 err = -ENOMEM;
348 else
349 err = register_die_notifier(&profile_exceptions_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100351 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 free_msrs();
Robert Richter6ab82f92009-07-09 14:40:04 +0200353 nmi_shutdown_mux();
Don Zickus2fbe7b22006-09-26 10:52:27 +0200354 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
Don Zickus2fbe7b22006-09-26 10:52:27 +0200356
Robert Richter4c168ea2008-09-24 11:08:52 +0200357 /* We need to serialize save and setup for HT because the subset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 * of msrs are distinct for save and setup operations
359 */
Andi Kleen6c977aa2007-05-21 14:31:45 +0200360
361 /* Assume saved/restored counters are the same on all CPUs */
Mike Travisd18d00f2008-03-25 15:06:59 -0700362 model->fill_in_addresses(&per_cpu(cpu_msrs, 0));
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100363 for_each_possible_cpu(cpu) {
Robert Richter4d015f72009-07-09 21:42:51 +0200364 if (!cpu)
365 continue;
Chris Wright0939c172007-06-01 00:46:39 -0700366
Robert Richter4d015f72009-07-09 21:42:51 +0200367 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);
Andi Kleen6c977aa2007-05-21 14:31:45 +0200376 }
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200377 on_each_cpu(nmi_cpu_setup, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 nmi_enabled = 1;
379 return 0;
380}
381
Robert Richter44ab9a62009-07-09 18:33:02 +0200382static void nmi_cpu_restore_registers(struct op_msrs *msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100384 struct op_msr *counters = msrs->counters;
385 struct op_msr *controls = msrs->controls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 unsigned int i;
387
Robert Richter1a245c42009-06-05 15:54:24 +0200388 for (i = 0; i < model->num_controls; ++i) {
Robert Richter95e74e62009-06-03 19:09:27 +0200389 if (controls[i].addr)
390 wrmsrl(controls[i].addr, controls[i].saved);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100392
Robert Richter1a245c42009-06-05 15:54:24 +0200393 for (i = 0; i < model->num_counters; ++i) {
Robert Richter95e74e62009-06-03 19:09:27 +0200394 if (counters[i].addr)
395 wrmsrl(counters[i].addr, counters[i].saved);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100399static void nmi_cpu_shutdown(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 unsigned int v;
402 int cpu = smp_processor_id();
Robert Richter82a22522009-07-09 16:29:34 +0200403 struct op_msrs *msrs = &per_cpu(cpu_msrs, cpu);
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /* 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);
Mike Travisd18d00f2008-03-25 15:06:59 -0700412 apic_write(APIC_LVTPC, per_cpu(saved_lvtpc, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 apic_write(APIC_LVTERR, v);
Robert Richter44ab9a62009-07-09 18:33:02 +0200414 nmi_cpu_restore_registers(msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417static void nmi_shutdown(void)
418{
Andrea Righib61e06f2008-09-20 18:02:27 +0200419 struct op_msrs *msrs;
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 nmi_enabled = 0;
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200422 on_each_cpu(nmi_cpu_shutdown, NULL, 1);
Don Zickus2fbe7b22006-09-26 10:52:27 +0200423 unregister_die_notifier(&profile_exceptions_nb);
Robert Richter6ab82f92009-07-09 14:40:04 +0200424 nmi_shutdown_mux();
Andrea Righib61e06f2008-09-20 18:02:27 +0200425 msrs = &get_cpu_var(cpu_msrs);
Mike Travisd18d00f2008-03-25 15:06:59 -0700426 model->shutdown(msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 free_msrs();
Vegard Nossum93e1ade2008-06-22 09:40:18 +0200428 put_cpu_var(cpu_msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100431static int nmi_create_files(struct super_block *sb, struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 unsigned int i;
434
Jason Yeh4d4036e2009-07-08 13:49:38 +0200435 for (i = 0; i < model->num_virt_counters; ++i) {
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100436 struct dentry *dir;
Markus Armbruster0c6856f2006-06-26 00:24:34 -0700437 char buf[4];
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100438
Jason Yeh4d4036e2009-07-08 13:49:38 +0200439#ifndef CONFIG_OPROFILE_EVENT_MULTIPLEX
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100440 /* quick little hack to _not_ expose a counter if it is not
Don Zickuscb9c4482006-09-26 10:52:26 +0200441 * 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;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200447#endif /* CONFIG_OPROFILE_EVENT_MULTIPLEX */
Don Zickuscb9c4482006-09-26 10:52:26 +0200448
Markus Armbruster0c6856f2006-06-26 00:24:34 -0700449 snprintf(buf, sizeof(buf), "%d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 dir = oprofilefs_mkdir(sb, root, buf);
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100451 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458
459 return 0;
460}
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100461
Robert Richter69046d42008-09-05 12:17:40 +0200462#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
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100533static int __init p4_init(char **cpu_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 __u8 cpu_model = boot_cpu_data.x86_model;
536
Andi Kleen1f3d7b62009-04-27 17:44:12 +0200537 if (cpu_model > 6 || cpu_model == 5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 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) {
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100546 case 1:
547 *cpu_type = "i386/p4";
548 model = &op_p4_spec;
549 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100551 case 2:
552 *cpu_type = "i386/p4-ht";
553 model = &op_p4_ht2_spec;
554 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
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
Robert Richter7e4e0bd2009-05-06 12:10:23 +0200563static int force_arch_perfmon;
564static int force_cpu_type(const char *str, struct kernel_param *kp)
565{
Robert Richter8d7ff4f2009-06-23 11:48:14 +0200566 if (!strcmp(str, "arch_perfmon")) {
Robert Richter7e4e0bd2009-05-06 12:10:23 +0200567 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);
Andi Kleen1dcdb5a2009-04-27 17:44:11 +0200574
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100575static int __init ppro_init(char **cpu_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 __u8 cpu_model = boot_cpu_data.x86_model;
Robert Richter259a83a2009-07-09 15:12:35 +0200578 struct op_x86_model_spec *spec = &op_ppro_spec; /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Andi Kleen1dcdb5a2009-04-27 17:44:11 +0200580 if (force_arch_perfmon && cpu_has_arch_perfmon)
581 return 0;
582
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700583 switch (cpu_model) {
584 case 0 ... 2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 *cpu_type = "i386/ppro";
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700586 break;
587 case 3 ... 5:
588 *cpu_type = "i386/pii";
589 break;
590 case 6 ... 8:
William Cohen3d337c62008-11-30 15:39:10 -0500591 case 10 ... 11:
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700592 *cpu_type = "i386/piii";
593 break;
594 case 9:
William Cohen3d337c62008-11-30 15:39:10 -0500595 case 13:
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700596 *cpu_type = "i386/p6_mobile";
597 break;
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700598 case 14:
599 *cpu_type = "i386/core";
600 break;
601 case 15: case 23:
602 *cpu_type = "i386/core_2";
603 break;
Andi Kleen6adf4062009-04-27 17:44:13 +0200604 case 26:
Robert Richter802070f2009-06-12 18:32:07 +0200605 spec = &op_arch_perfmon_spec;
Andi Kleen6adf4062009-04-27 17:44:13 +0200606 *cpu_type = "i386/core_i7";
607 break;
608 case 28:
609 *cpu_type = "i386/atom";
610 break;
Linus Torvalds4b9f12a2008-07-24 17:29:00 -0700611 default:
612 /* Unknown */
613 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615
Robert Richter802070f2009-06-12 18:32:07 +0200616 model = spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return 1;
618}
619
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100620/* in order to get sysfs right */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621static int using_nmi;
622
David Gibson96d08212005-09-06 15:17:26 -0700623int __init op_nmi_init(struct oprofile_operations *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 __u8 vendor = boot_cpu_data.x86_vendor;
626 __u8 family = boot_cpu_data.x86;
Andi Kleenb9917022008-08-18 14:50:31 +0200627 char *cpu_type = NULL;
Robert Richteradf5ec02008-07-22 21:08:48 +0200628 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 if (!cpu_has_apic)
631 return -ENODEV;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 switch (vendor) {
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100634 case X86_VENDOR_AMD:
635 /* Needs to be at least an Athlon (or hammer in 32bit mode) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100637 switch (family) {
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100638 case 6:
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100639 cpu_type = "i386/athlon";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 break;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100641 case 0xf:
Robert Richterd20f24c2009-01-11 13:01:16 +0100642 /*
643 * Actually it could be i386/hammer too, but
644 * give user space an consistent name.
645 */
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100646 cpu_type = "x86-64/hammer";
647 break;
648 case 0x10:
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100649 cpu_type = "x86-64/family10";
650 break;
Barry Kasindorf12f2b262008-07-22 21:08:47 +0200651 case 0x11:
Barry Kasindorf12f2b262008-07-22 21:08:47 +0200652 cpu_type = "x86-64/family11h";
653 break;
Robert Richterd20f24c2009-01-11 13:01:16 +0100654 default:
655 return -ENODEV;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100656 }
Robert Richterd20f24c2009-01-11 13:01:16 +0100657 model = &op_amd_spec;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100658 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100660 case X86_VENDOR_INTEL:
661 switch (family) {
662 /* Pentium IV */
663 case 0xf:
Andi Kleenb9917022008-08-18 14:50:31 +0200664 p4_init(&cpu_type);
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100665 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100667 /* A P6-class processor */
668 case 6:
Andi Kleenb9917022008-08-18 14:50:31 +0200669 ppro_init(&cpu_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 break;
671
672 default:
Andi Kleenb9917022008-08-18 14:50:31 +0200673 break;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100674 }
Andi Kleenb9917022008-08-18 14:50:31 +0200675
Robert Richtere4192942008-10-12 15:12:34 -0400676 if (cpu_type)
677 break;
678
679 if (!cpu_has_arch_perfmon)
Andi Kleenb9917022008-08-18 14:50:31 +0200680 return -ENODEV;
Robert Richtere4192942008-10-12 15:12:34 -0400681
682 /* use arch perfmon as fallback */
683 cpu_type = "i386/arch_perfmon";
684 model = &op_arch_perfmon_spec;
Carlos R. Mafrab75f53d2008-01-30 13:32:33 +0100685 break;
686
687 default:
688 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
Andi Kleen80a8c9f2008-08-19 03:13:38 +0200691#ifdef CONFIG_SMP
692 register_cpu_notifier(&oprofile_cpu_nb);
693#endif
Robert Richter270d3e12008-07-22 21:09:01 +0200694 /* default values, can be overwritten by model */
Robert Richter6e63ea42009-07-07 19:25:39 +0200695 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;
Robert Richter270d3e12008-07-22 21:09:01 +0200701
Robert Richteradf5ec02008-07-22 21:08:48 +0200702 if (model->init)
703 ret = model->init(ops);
704 if (ret)
705 return ret;
706
Robert Richter52471c62009-07-06 14:43:55 +0200707 if (!model->num_virt_counters)
708 model->num_virt_counters = model->num_counters;
709
Robert Richter52805142009-07-09 16:02:44 +0200710 mux_init(ops);
711
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100712 init_sysfs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 using_nmi = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 printk(KERN_INFO "oprofile: using NMI interrupt.\n");
715 return 0;
716}
717
David Gibson96d08212005-09-06 15:17:26 -0700718void op_nmi_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Andi Kleen80a8c9f2008-08-19 03:13:38 +0200720 if (using_nmi) {
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100721 exit_sysfs();
Andi Kleen80a8c9f2008-08-19 03:13:38 +0200722#ifdef CONFIG_SMP
723 unregister_cpu_notifier(&oprofile_cpu_nb);
724#endif
725 }
Robert Richteradf5ec02008-07-22 21:08:48 +0200726 if (model->exit)
727 model->exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}