Merge branch 'auto' of git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile...
[pandora-kernel.git] / arch / x86 / oprofile / op_model_amd.c
1 /*
2  * @file op_model_amd.c
3  * athlon / K7 / K8 / Family 10h model-specific MSR operations
4  *
5  * @remark Copyright 2002-2009 OProfile authors
6  * @remark Read the file COPYING
7  *
8  * @author John Levon
9  * @author Philippe Elie
10  * @author Graydon Hoare
11  * @author Robert Richter <robert.richter@amd.com>
12  * @author Barry Kasindorf
13  */
14
15 #include <linux/oprofile.h>
16 #include <linux/device.h>
17 #include <linux/pci.h>
18
19 #include <asm/ptrace.h>
20 #include <asm/msr.h>
21 #include <asm/nmi.h>
22
23 #include "op_x86_model.h"
24 #include "op_counter.h"
25
26 #define NUM_COUNTERS 4
27 #define NUM_CONTROLS 4
28 #define OP_EVENT_MASK                   0x0FFF
29 #define OP_CTR_OVERFLOW                 (1ULL<<31)
30
31 #define MSR_AMD_EVENTSEL_RESERVED       ((0xFFFFFCF0ULL<<32)|(1ULL<<21))
32
33 static unsigned long reset_value[NUM_COUNTERS];
34
35 #ifdef CONFIG_OPROFILE_IBS
36
37 /* IbsFetchCtl bits/masks */
38 #define IBS_FETCH_RAND_EN               (1ULL<<57)
39 #define IBS_FETCH_VAL                   (1ULL<<49)
40 #define IBS_FETCH_ENABLE                (1ULL<<48)
41 #define IBS_FETCH_CNT_MASK              0xFFFF0000ULL
42
43 /*IbsOpCtl bits */
44 #define IBS_OP_CNT_CTL                  (1ULL<<19)
45 #define IBS_OP_VAL                      (1ULL<<18)
46 #define IBS_OP_ENABLE                   (1ULL<<17)
47
48 #define IBS_FETCH_SIZE                  6
49 #define IBS_OP_SIZE                     12
50
51 static int has_ibs;     /* AMD Family10h and later */
52
53 struct op_ibs_config {
54         unsigned long op_enabled;
55         unsigned long fetch_enabled;
56         unsigned long max_cnt_fetch;
57         unsigned long max_cnt_op;
58         unsigned long rand_en;
59         unsigned long dispatched_ops;
60 };
61
62 static struct op_ibs_config ibs_config;
63
64 #endif
65
66 /* functions for op_amd_spec */
67
68 static void op_amd_fill_in_addresses(struct op_msrs * const msrs)
69 {
70         int i;
71
72         for (i = 0; i < NUM_COUNTERS; i++) {
73                 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
74                         msrs->counters[i].addr = MSR_K7_PERFCTR0 + i;
75                 else
76                         msrs->counters[i].addr = 0;
77         }
78
79         for (i = 0; i < NUM_CONTROLS; i++) {
80                 if (reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i))
81                         msrs->controls[i].addr = MSR_K7_EVNTSEL0 + i;
82                 else
83                         msrs->controls[i].addr = 0;
84         }
85 }
86
87 static void op_amd_setup_ctrs(struct op_x86_model_spec const *model,
88                               struct op_msrs const * const msrs)
89 {
90         u64 val;
91         int i;
92
93         /* clear all counters */
94         for (i = 0 ; i < NUM_CONTROLS; ++i) {
95                 if (unlikely(!msrs->controls[i].addr))
96                         continue;
97                 rdmsrl(msrs->controls[i].addr, val);
98                 val &= model->reserved;
99                 wrmsrl(msrs->controls[i].addr, val);
100         }
101
102         /* avoid a false detection of ctr overflows in NMI handler */
103         for (i = 0; i < NUM_COUNTERS; ++i) {
104                 if (unlikely(!msrs->counters[i].addr))
105                         continue;
106                 wrmsrl(msrs->counters[i].addr, -1LL);
107         }
108
109         /* enable active counters */
110         for (i = 0; i < NUM_COUNTERS; ++i) {
111                 if (counter_config[i].enabled && msrs->counters[i].addr) {
112                         reset_value[i] = counter_config[i].count;
113                         wrmsrl(msrs->counters[i].addr,
114                                -(s64)counter_config[i].count);
115                         rdmsrl(msrs->controls[i].addr, val);
116                         val &= model->reserved;
117                         val |= op_x86_get_ctrl(model, &counter_config[i]);
118                         wrmsrl(msrs->controls[i].addr, val);
119                 } else {
120                         reset_value[i] = 0;
121                 }
122         }
123 }
124
125 #ifdef CONFIG_OPROFILE_IBS
126
127 static inline int
128 op_amd_handle_ibs(struct pt_regs * const regs,
129                   struct op_msrs const * const msrs)
130 {
131         u64 val, ctl;
132         struct op_entry entry;
133
134         if (!has_ibs)
135                 return 1;
136
137         if (ibs_config.fetch_enabled) {
138                 rdmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
139                 if (ctl & IBS_FETCH_VAL) {
140                         rdmsrl(MSR_AMD64_IBSFETCHLINAD, val);
141                         oprofile_write_reserve(&entry, regs, val,
142                                                IBS_FETCH_CODE, IBS_FETCH_SIZE);
143                         oprofile_add_data64(&entry, val);
144                         oprofile_add_data64(&entry, ctl);
145                         rdmsrl(MSR_AMD64_IBSFETCHPHYSAD, val);
146                         oprofile_add_data64(&entry, val);
147                         oprofile_write_commit(&entry);
148
149                         /* reenable the IRQ */
150                         ctl &= ~(IBS_FETCH_VAL | IBS_FETCH_CNT_MASK);
151                         ctl |= IBS_FETCH_ENABLE;
152                         wrmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
153                 }
154         }
155
156         if (ibs_config.op_enabled) {
157                 rdmsrl(MSR_AMD64_IBSOPCTL, ctl);
158                 if (ctl & IBS_OP_VAL) {
159                         rdmsrl(MSR_AMD64_IBSOPRIP, val);
160                         oprofile_write_reserve(&entry, regs, val,
161                                                IBS_OP_CODE, IBS_OP_SIZE);
162                         oprofile_add_data64(&entry, val);
163                         rdmsrl(MSR_AMD64_IBSOPDATA, val);
164                         oprofile_add_data64(&entry, val);
165                         rdmsrl(MSR_AMD64_IBSOPDATA2, val);
166                         oprofile_add_data64(&entry, val);
167                         rdmsrl(MSR_AMD64_IBSOPDATA3, val);
168                         oprofile_add_data64(&entry, val);
169                         rdmsrl(MSR_AMD64_IBSDCLINAD, val);
170                         oprofile_add_data64(&entry, val);
171                         rdmsrl(MSR_AMD64_IBSDCPHYSAD, val);
172                         oprofile_add_data64(&entry, val);
173                         oprofile_write_commit(&entry);
174
175                         /* reenable the IRQ */
176                         ctl &= ~IBS_OP_VAL & 0xFFFFFFFF;
177                         ctl |= IBS_OP_ENABLE;
178                         wrmsrl(MSR_AMD64_IBSOPCTL, ctl);
179                 }
180         }
181
182         return 1;
183 }
184
185 static inline void op_amd_start_ibs(void)
186 {
187         u64 val;
188         if (has_ibs && ibs_config.fetch_enabled) {
189                 val = (ibs_config.max_cnt_fetch >> 4) & 0xFFFF;
190                 val |= ibs_config.rand_en ? IBS_FETCH_RAND_EN : 0;
191                 val |= IBS_FETCH_ENABLE;
192                 wrmsrl(MSR_AMD64_IBSFETCHCTL, val);
193         }
194
195         if (has_ibs && ibs_config.op_enabled) {
196                 val = (ibs_config.max_cnt_op >> 4) & 0xFFFF;
197                 val |= ibs_config.dispatched_ops ? IBS_OP_CNT_CTL : 0;
198                 val |= IBS_OP_ENABLE;
199                 wrmsrl(MSR_AMD64_IBSOPCTL, val);
200         }
201 }
202
203 static void op_amd_stop_ibs(void)
204 {
205         if (has_ibs && ibs_config.fetch_enabled)
206                 /* clear max count and enable */
207                 wrmsrl(MSR_AMD64_IBSFETCHCTL, 0);
208
209         if (has_ibs && ibs_config.op_enabled)
210                 /* clear max count and enable */
211                 wrmsrl(MSR_AMD64_IBSOPCTL, 0);
212 }
213
214 #else
215
216 static inline int op_amd_handle_ibs(struct pt_regs * const regs,
217                                     struct op_msrs const * const msrs) { }
218 static inline void op_amd_start_ibs(void) { }
219 static inline void op_amd_stop_ibs(void) { }
220
221 #endif
222
223 static int op_amd_check_ctrs(struct pt_regs * const regs,
224                              struct op_msrs const * const msrs)
225 {
226         u64 val;
227         int i;
228
229         for (i = 0 ; i < NUM_COUNTERS; ++i) {
230                 if (!reset_value[i])
231                         continue;
232                 rdmsrl(msrs->counters[i].addr, val);
233                 /* bit is clear if overflowed: */
234                 if (val & OP_CTR_OVERFLOW)
235                         continue;
236                 oprofile_add_sample(regs, i);
237                 wrmsrl(msrs->counters[i].addr, -(s64)reset_value[i]);
238         }
239
240         op_amd_handle_ibs(regs, msrs);
241
242         /* See op_model_ppro.c */
243         return 1;
244 }
245
246 static void op_amd_start(struct op_msrs const * const msrs)
247 {
248         u64 val;
249         int i;
250         for (i = 0 ; i < NUM_COUNTERS ; ++i) {
251                 if (reset_value[i]) {
252                         rdmsrl(msrs->controls[i].addr, val);
253                         val |= ARCH_PERFMON_EVENTSEL0_ENABLE;
254                         wrmsrl(msrs->controls[i].addr, val);
255                 }
256         }
257
258         op_amd_start_ibs();
259 }
260
261 static void op_amd_stop(struct op_msrs const * const msrs)
262 {
263         u64 val;
264         int i;
265
266         /*
267          * Subtle: stop on all counters to avoid race with setting our
268          * pm callback
269          */
270         for (i = 0 ; i < NUM_COUNTERS ; ++i) {
271                 if (!reset_value[i])
272                         continue;
273                 rdmsrl(msrs->controls[i].addr, val);
274                 val &= ~ARCH_PERFMON_EVENTSEL0_ENABLE;
275                 wrmsrl(msrs->controls[i].addr, val);
276         }
277
278         op_amd_stop_ibs();
279 }
280
281 static void op_amd_shutdown(struct op_msrs const * const msrs)
282 {
283         int i;
284
285         for (i = 0 ; i < NUM_COUNTERS ; ++i) {
286                 if (msrs->counters[i].addr)
287                         release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
288         }
289         for (i = 0 ; i < NUM_CONTROLS ; ++i) {
290                 if (msrs->controls[i].addr)
291                         release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
292         }
293 }
294
295 #ifdef CONFIG_OPROFILE_IBS
296
297 static u8 ibs_eilvt_off;
298
299 static inline void apic_init_ibs_nmi_per_cpu(void *arg)
300 {
301         ibs_eilvt_off = setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_NMI, 0);
302 }
303
304 static inline void apic_clear_ibs_nmi_per_cpu(void *arg)
305 {
306         setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_FIX, 1);
307 }
308
309 static int init_ibs_nmi(void)
310 {
311 #define IBSCTL_LVTOFFSETVAL             (1 << 8)
312 #define IBSCTL                          0x1cc
313         struct pci_dev *cpu_cfg;
314         int nodes;
315         u32 value = 0;
316
317         /* per CPU setup */
318         on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 1);
319
320         nodes = 0;
321         cpu_cfg = NULL;
322         do {
323                 cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
324                                          PCI_DEVICE_ID_AMD_10H_NB_MISC,
325                                          cpu_cfg);
326                 if (!cpu_cfg)
327                         break;
328                 ++nodes;
329                 pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
330                                        | IBSCTL_LVTOFFSETVAL);
331                 pci_read_config_dword(cpu_cfg, IBSCTL, &value);
332                 if (value != (ibs_eilvt_off | IBSCTL_LVTOFFSETVAL)) {
333                         pci_dev_put(cpu_cfg);
334                         printk(KERN_DEBUG "Failed to setup IBS LVT offset, "
335                                 "IBSCTL = 0x%08x", value);
336                         return 1;
337                 }
338         } while (1);
339
340         if (!nodes) {
341                 printk(KERN_DEBUG "No CPU node configured for IBS");
342                 return 1;
343         }
344
345 #ifdef CONFIG_NUMA
346         /* Sanity check */
347         /* Works only for 64bit with proper numa implementation. */
348         if (nodes != num_possible_nodes()) {
349                 printk(KERN_DEBUG "Failed to setup CPU node(s) for IBS, "
350                         "found: %d, expected %d",
351                         nodes, num_possible_nodes());
352                 return 1;
353         }
354 #endif
355         return 0;
356 }
357
358 /* uninitialize the APIC for the IBS interrupts if needed */
359 static void clear_ibs_nmi(void)
360 {
361         if (has_ibs)
362                 on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1);
363 }
364
365 /* initialize the APIC for the IBS interrupts if available */
366 static void ibs_init(void)
367 {
368         has_ibs = boot_cpu_has(X86_FEATURE_IBS);
369
370         if (!has_ibs)
371                 return;
372
373         if (init_ibs_nmi()) {
374                 has_ibs = 0;
375                 return;
376         }
377
378         printk(KERN_INFO "oprofile: AMD IBS detected\n");
379 }
380
381 static void ibs_exit(void)
382 {
383         if (!has_ibs)
384                 return;
385
386         clear_ibs_nmi();
387 }
388
389 static int (*create_arch_files)(struct super_block *sb, struct dentry *root);
390
391 static int setup_ibs_files(struct super_block *sb, struct dentry *root)
392 {
393         struct dentry *dir;
394         int ret = 0;
395
396         /* architecture specific files */
397         if (create_arch_files)
398                 ret = create_arch_files(sb, root);
399
400         if (ret)
401                 return ret;
402
403         if (!has_ibs)
404                 return ret;
405
406         /* model specific files */
407
408         /* setup some reasonable defaults */
409         ibs_config.max_cnt_fetch = 250000;
410         ibs_config.fetch_enabled = 0;
411         ibs_config.max_cnt_op = 250000;
412         ibs_config.op_enabled = 0;
413         ibs_config.dispatched_ops = 1;
414
415         dir = oprofilefs_mkdir(sb, root, "ibs_fetch");
416         oprofilefs_create_ulong(sb, dir, "enable",
417                                 &ibs_config.fetch_enabled);
418         oprofilefs_create_ulong(sb, dir, "max_count",
419                                 &ibs_config.max_cnt_fetch);
420         oprofilefs_create_ulong(sb, dir, "rand_enable",
421                                 &ibs_config.rand_en);
422
423         dir = oprofilefs_mkdir(sb, root, "ibs_op");
424         oprofilefs_create_ulong(sb, dir, "enable",
425                                 &ibs_config.op_enabled);
426         oprofilefs_create_ulong(sb, dir, "max_count",
427                                 &ibs_config.max_cnt_op);
428         oprofilefs_create_ulong(sb, dir, "dispatched_ops",
429                                 &ibs_config.dispatched_ops);
430
431         return 0;
432 }
433
434 static int op_amd_init(struct oprofile_operations *ops)
435 {
436         ibs_init();
437         create_arch_files = ops->create_files;
438         ops->create_files = setup_ibs_files;
439         return 0;
440 }
441
442 static void op_amd_exit(void)
443 {
444         ibs_exit();
445 }
446
447 #else
448
449 /* no IBS support */
450
451 static int op_amd_init(struct oprofile_operations *ops)
452 {
453         return 0;
454 }
455
456 static void op_amd_exit(void) {}
457
458 #endif /* CONFIG_OPROFILE_IBS */
459
460 struct op_x86_model_spec const op_amd_spec = {
461         .num_counters           = NUM_COUNTERS,
462         .num_controls           = NUM_CONTROLS,
463         .reserved               = MSR_AMD_EVENTSEL_RESERVED,
464         .event_mask             = OP_EVENT_MASK,
465         .init                   = op_amd_init,
466         .exit                   = op_amd_exit,
467         .fill_in_addresses      = &op_amd_fill_in_addresses,
468         .setup_ctrs             = &op_amd_setup_ctrs,
469         .check_ctrs             = &op_amd_check_ctrs,
470         .start                  = &op_amd_start,
471         .stop                   = &op_amd_stop,
472         .shutdown               = &op_amd_shutdown,
473 };