blob: 827beecb67a4c6e6da0cda97c28605b19dee227f [file] [log] [blame]
Paolo Ciarrocchid4413732008-02-19 23:51:27 +01001/*
Robert Richter6852fd92008-07-22 21:09:08 +02002 * @file op_model_amd.c
Barry Kasindorfbd87f1f2007-12-18 18:05:58 +01003 * athlon / K7 / K8 / Family 10h model-specific MSR operations
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Robert Richterae735e92008-12-25 17:26:07 +01005 * @remark Copyright 2002-2009 OProfile authors
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * @remark Read the file COPYING
7 *
8 * @author John Levon
9 * @author Philippe Elie
10 * @author Graydon Hoare
Robert Richteradf5ec02008-07-22 21:08:48 +020011 * @author Robert Richter <robert.richter@amd.com>
Jason Yeh4d4036e2009-07-08 13:49:38 +020012 * @author Barry Kasindorf <barry.kasindorf@amd.com>
13 * @author Jason Yeh <jason.yeh@amd.com>
14 * @author Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Robert Richterae735e92008-12-25 17:26:07 +010015 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#include <linux/oprofile.h>
Barry Kasindorf56784f12008-07-22 21:08:55 +020018#include <linux/device.h>
19#include <linux/pci.h>
Jason Yeh4d4036e2009-07-08 13:49:38 +020020#include <linux/percpu.h>
Barry Kasindorf56784f12008-07-22 21:08:55 +020021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/ptrace.h>
23#include <asm/msr.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020024#include <asm/nmi.h>
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "op_x86_model.h"
27#include "op_counter.h"
28
Robert Richter4c168ea2008-09-24 11:08:52 +020029#define NUM_COUNTERS 4
30#define NUM_CONTROLS 4
Jason Yeh4d4036e2009-07-08 13:49:38 +020031#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
32#define NUM_VIRT_COUNTERS 32
33#define NUM_VIRT_CONTROLS 32
34#else
35#define NUM_VIRT_COUNTERS NUM_COUNTERS
36#define NUM_VIRT_CONTROLS NUM_CONTROLS
37#endif
38
Robert Richter3370d352009-05-25 15:10:32 +020039#define OP_EVENT_MASK 0x0FFF
Robert Richter42399ad2009-05-25 17:59:06 +020040#define OP_CTR_OVERFLOW (1ULL<<31)
Robert Richter3370d352009-05-25 15:10:32 +020041
42#define MSR_AMD_EVENTSEL_RESERVED ((0xFFFFFCF0ULL<<32)|(1ULL<<21))
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Jason Yeh4d4036e2009-07-08 13:49:38 +020044static unsigned long reset_value[NUM_VIRT_COUNTERS];
Robert Richter852402c2008-07-22 21:09:06 +020045
46#ifdef CONFIG_OPROFILE_IBS
47
Robert Richter87f0bac2008-07-22 21:09:03 +020048/* IbsFetchCtl bits/masks */
Robert Richterc572ae42009-06-03 20:10:39 +020049#define IBS_FETCH_RAND_EN (1ULL<<57)
50#define IBS_FETCH_VAL (1ULL<<49)
51#define IBS_FETCH_ENABLE (1ULL<<48)
52#define IBS_FETCH_CNT_MASK 0xFFFF0000ULL
Barry Kasindorf56784f12008-07-22 21:08:55 +020053
Robert Richter87f0bac2008-07-22 21:09:03 +020054/*IbsOpCtl bits */
Robert Richterc572ae42009-06-03 20:10:39 +020055#define IBS_OP_CNT_CTL (1ULL<<19)
56#define IBS_OP_VAL (1ULL<<18)
57#define IBS_OP_ENABLE (1ULL<<17)
Barry Kasindorf56784f12008-07-22 21:08:55 +020058
Robert Richterc572ae42009-06-03 20:10:39 +020059#define IBS_FETCH_SIZE 6
60#define IBS_OP_SIZE 12
Barry Kasindorf56784f12008-07-22 21:08:55 +020061
Robert Richterfc81be82008-12-18 00:28:27 +010062static int has_ibs; /* AMD Family10h and later */
Barry Kasindorf56784f12008-07-22 21:08:55 +020063
64struct op_ibs_config {
65 unsigned long op_enabled;
66 unsigned long fetch_enabled;
67 unsigned long max_cnt_fetch;
68 unsigned long max_cnt_op;
69 unsigned long rand_en;
70 unsigned long dispatched_ops;
71};
72
73static struct op_ibs_config ibs_config;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010074
Robert Richter852402c2008-07-22 21:09:06 +020075#endif
76
Robert Richter7e7478c2009-07-16 13:09:53 +020077#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
78
79static void op_mux_fill_in_addresses(struct op_msrs * const msrs)
80{
81 int i;
82
83 for (i = 0; i < NUM_VIRT_COUNTERS; i++) {
Robert Richter61d149d2009-07-10 15:47:17 +020084 int hw_counter = op_x86_virt_to_phys(i);
Robert Richter7e7478c2009-07-16 13:09:53 +020085 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
86 msrs->multiplex[i].addr = MSR_K7_PERFCTR0 + hw_counter;
87 else
88 msrs->multiplex[i].addr = 0;
89 }
90}
91
92static void op_mux_switch_ctrl(struct op_x86_model_spec const *model,
93 struct op_msrs const * const msrs)
94{
95 u64 val;
96 int i;
97
98 /* enable active counters */
99 for (i = 0; i < NUM_COUNTERS; ++i) {
100 int virt = op_x86_phys_to_virt(i);
101 if (!counter_config[virt].enabled)
102 continue;
103 rdmsrl(msrs->controls[i].addr, val);
104 val &= model->reserved;
105 val |= op_x86_get_ctrl(model, &counter_config[virt]);
106 wrmsrl(msrs->controls[i].addr, val);
107 }
108}
109
110#else
111
112static inline void op_mux_fill_in_addresses(struct op_msrs * const msrs) { }
113
114#endif
115
Robert Richter6657fe42008-07-22 21:08:50 +0200116/* functions for op_amd_spec */
Robert Richterdfa15422008-07-22 21:08:49 +0200117
Robert Richter6657fe42008-07-22 21:08:50 +0200118static void op_amd_fill_in_addresses(struct op_msrs * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Don Zickuscb9c4482006-09-26 10:52:26 +0200120 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100122 for (i = 0; i < NUM_COUNTERS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +0200123 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
124 msrs->counters[i].addr = MSR_K7_PERFCTR0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200125 else
126 msrs->counters[i].addr = 0;
127 }
128
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100129 for (i = 0; i < NUM_CONTROLS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +0200130 if (reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i))
131 msrs->controls[i].addr = MSR_K7_EVNTSEL0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200132 else
133 msrs->controls[i].addr = 0;
134 }
Jason Yeh4d4036e2009-07-08 13:49:38 +0200135
Robert Richter7e7478c2009-07-16 13:09:53 +0200136 op_mux_fill_in_addresses(msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Robert Richteref8828d2009-05-25 19:31:44 +0200139static void op_amd_setup_ctrs(struct op_x86_model_spec const *model,
140 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Robert Richter3370d352009-05-25 15:10:32 +0200142 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 int i;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100144
Jason Yeh4d4036e2009-07-08 13:49:38 +0200145 /* setup reset_value */
146 for (i = 0; i < NUM_VIRT_COUNTERS; ++i) {
Robert Richterc5500912009-07-16 13:11:16 +0200147 if (counter_config[i].enabled)
Jason Yeh4d4036e2009-07-08 13:49:38 +0200148 reset_value[i] = counter_config[i].count;
Robert Richterc5500912009-07-16 13:11:16 +0200149 else
Jason Yeh4d4036e2009-07-08 13:49:38 +0200150 reset_value[i] = 0;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200151 }
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /* clear all counters */
Robert Richter6e63ea42009-07-07 19:25:39 +0200154 for (i = 0; i < NUM_CONTROLS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200155 if (unlikely(!msrs->controls[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +0200156 continue;
Robert Richter3370d352009-05-25 15:10:32 +0200157 rdmsrl(msrs->controls[i].addr, val);
158 val &= model->reserved;
159 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
Don Zickuscb9c4482006-09-26 10:52:26 +0200161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 /* avoid a false detection of ctr overflows in NMI handler */
Robert Richter4c168ea2008-09-24 11:08:52 +0200163 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200164 if (unlikely(!msrs->counters[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +0200165 continue;
Robert Richterbbc59862009-05-25 17:38:19 +0200166 wrmsrl(msrs->counters[i].addr, -1LL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
168
169 /* enable active counters */
Robert Richter4c168ea2008-09-24 11:08:52 +0200170 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200171 int virt = op_x86_phys_to_virt(i);
172 if (!counter_config[virt].enabled)
173 continue;
174 if (!msrs->counters[i].addr)
175 continue;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200176
Robert Richterd8471ad2009-07-16 13:04:43 +0200177 /* setup counter registers */
178 wrmsrl(msrs->counters[i].addr, -(u64)reset_value[virt]);
179
180 /* setup control registers */
181 rdmsrl(msrs->controls[i].addr, val);
182 val &= model->reserved;
183 val |= op_x86_get_ctrl(model, &counter_config[virt]);
184 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186}
187
Robert Richter852402c2008-07-22 21:09:06 +0200188#ifdef CONFIG_OPROFILE_IBS
189
Robert Richter7939d2b2008-07-22 21:08:56 +0200190static inline int
191op_amd_handle_ibs(struct pt_regs * const regs,
192 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Robert Richterc572ae42009-06-03 20:10:39 +0200194 u64 val, ctl;
Robert Richter1acda872009-01-05 10:35:31 +0100195 struct op_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Robert Richterfc81be82008-12-18 00:28:27 +0100197 if (!has_ibs)
Jaswinder Singh Rajput21e70872009-06-18 17:09:27 +0530198 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Robert Richter7939d2b2008-07-22 21:08:56 +0200200 if (ibs_config.fetch_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200201 rdmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
202 if (ctl & IBS_FETCH_VAL) {
203 rdmsrl(MSR_AMD64_IBSFETCHLINAD, val);
204 oprofile_write_reserve(&entry, regs, val,
Robert Richter14f0ca82009-01-07 21:50:22 +0100205 IBS_FETCH_CODE, IBS_FETCH_SIZE);
Robert Richter51563a02009-06-03 20:54:56 +0200206 oprofile_add_data64(&entry, val);
207 oprofile_add_data64(&entry, ctl);
Robert Richterc572ae42009-06-03 20:10:39 +0200208 rdmsrl(MSR_AMD64_IBSFETCHPHYSAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200209 oprofile_add_data64(&entry, val);
Robert Richter14f0ca82009-01-07 21:50:22 +0100210 oprofile_write_commit(&entry);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200211
Robert Richterfd13f6c2008-10-19 21:00:09 +0200212 /* reenable the IRQ */
Robert Richterc572ae42009-06-03 20:10:39 +0200213 ctl &= ~(IBS_FETCH_VAL | IBS_FETCH_CNT_MASK);
214 ctl |= IBS_FETCH_ENABLE;
215 wrmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200216 }
217 }
218
Robert Richter7939d2b2008-07-22 21:08:56 +0200219 if (ibs_config.op_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200220 rdmsrl(MSR_AMD64_IBSOPCTL, ctl);
221 if (ctl & IBS_OP_VAL) {
222 rdmsrl(MSR_AMD64_IBSOPRIP, val);
223 oprofile_write_reserve(&entry, regs, val,
Robert Richter14f0ca82009-01-07 21:50:22 +0100224 IBS_OP_CODE, IBS_OP_SIZE);
Robert Richter51563a02009-06-03 20:54:56 +0200225 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200226 rdmsrl(MSR_AMD64_IBSOPDATA, val);
Robert Richter51563a02009-06-03 20:54:56 +0200227 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200228 rdmsrl(MSR_AMD64_IBSOPDATA2, val);
Robert Richter51563a02009-06-03 20:54:56 +0200229 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200230 rdmsrl(MSR_AMD64_IBSOPDATA3, val);
Robert Richter51563a02009-06-03 20:54:56 +0200231 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200232 rdmsrl(MSR_AMD64_IBSDCLINAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200233 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200234 rdmsrl(MSR_AMD64_IBSDCPHYSAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200235 oprofile_add_data64(&entry, val);
Robert Richter14f0ca82009-01-07 21:50:22 +0100236 oprofile_write_commit(&entry);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200237
238 /* reenable the IRQ */
Robert Richterc572ae42009-06-03 20:10:39 +0200239 ctl &= ~IBS_OP_VAL & 0xFFFFFFFF;
240 ctl |= IBS_OP_ENABLE;
241 wrmsrl(MSR_AMD64_IBSOPCTL, ctl);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200242 }
243 }
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return 1;
246}
247
Robert Richter90637592009-03-10 19:15:57 +0100248static inline void op_amd_start_ibs(void)
249{
Robert Richterc572ae42009-06-03 20:10:39 +0200250 u64 val;
Robert Richter90637592009-03-10 19:15:57 +0100251 if (has_ibs && ibs_config.fetch_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200252 val = (ibs_config.max_cnt_fetch >> 4) & 0xFFFF;
253 val |= ibs_config.rand_en ? IBS_FETCH_RAND_EN : 0;
254 val |= IBS_FETCH_ENABLE;
255 wrmsrl(MSR_AMD64_IBSFETCHCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100256 }
257
258 if (has_ibs && ibs_config.op_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200259 val = (ibs_config.max_cnt_op >> 4) & 0xFFFF;
260 val |= ibs_config.dispatched_ops ? IBS_OP_CNT_CTL : 0;
261 val |= IBS_OP_ENABLE;
262 wrmsrl(MSR_AMD64_IBSOPCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100263 }
264}
265
266static void op_amd_stop_ibs(void)
267{
Robert Richterc572ae42009-06-03 20:10:39 +0200268 if (has_ibs && ibs_config.fetch_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100269 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200270 wrmsrl(MSR_AMD64_IBSFETCHCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100271
Robert Richterc572ae42009-06-03 20:10:39 +0200272 if (has_ibs && ibs_config.op_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100273 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200274 wrmsrl(MSR_AMD64_IBSOPCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100275}
276
277#else
278
279static inline int op_amd_handle_ibs(struct pt_regs * const regs,
Jaswinder Singh Rajput21e70872009-06-18 17:09:27 +0530280 struct op_msrs const * const msrs)
281{
282 return 0;
283}
Robert Richter90637592009-03-10 19:15:57 +0100284static inline void op_amd_start_ibs(void) { }
285static inline void op_amd_stop_ibs(void) { }
286
Robert Richter852402c2008-07-22 21:09:06 +0200287#endif
288
Robert Richter7939d2b2008-07-22 21:08:56 +0200289static int op_amd_check_ctrs(struct pt_regs * const regs,
290 struct op_msrs const * const msrs)
291{
Robert Richter42399ad2009-05-25 17:59:06 +0200292 u64 val;
Robert Richter7939d2b2008-07-22 21:08:56 +0200293 int i;
294
Robert Richter6e63ea42009-07-07 19:25:39 +0200295 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200296 int virt = op_x86_phys_to_virt(i);
297 if (!reset_value[virt])
Robert Richter7939d2b2008-07-22 21:08:56 +0200298 continue;
Robert Richter42399ad2009-05-25 17:59:06 +0200299 rdmsrl(msrs->counters[i].addr, val);
300 /* bit is clear if overflowed: */
301 if (val & OP_CTR_OVERFLOW)
302 continue;
Robert Richterd8471ad2009-07-16 13:04:43 +0200303 oprofile_add_sample(regs, virt);
304 wrmsrl(msrs->counters[i].addr, -(u64)reset_value[virt]);
Robert Richter7939d2b2008-07-22 21:08:56 +0200305 }
306
307 op_amd_handle_ibs(regs, msrs);
308
309 /* See op_model_ppro.c */
310 return 1;
311}
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100312
Robert Richter6657fe42008-07-22 21:08:50 +0200313static void op_amd_start(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Robert Richterdea37662009-05-25 18:11:52 +0200315 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 int i;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200317
Robert Richter6e63ea42009-07-07 19:25:39 +0200318 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200319 if (!reset_value[op_x86_phys_to_virt(i)])
320 continue;
321 rdmsrl(msrs->controls[i].addr, val);
322 val |= ARCH_PERFMON_EVENTSEL0_ENABLE;
323 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
Robert Richter852402c2008-07-22 21:09:06 +0200325
Robert Richter90637592009-03-10 19:15:57 +0100326 op_amd_start_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Robert Richter6657fe42008-07-22 21:08:50 +0200329static void op_amd_stop(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Robert Richterdea37662009-05-25 18:11:52 +0200331 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 int i;
333
Robert Richterfd13f6c2008-10-19 21:00:09 +0200334 /*
335 * Subtle: stop on all counters to avoid race with setting our
336 * pm callback
337 */
Robert Richter6e63ea42009-07-07 19:25:39 +0200338 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200339 if (!reset_value[op_x86_phys_to_virt(i)])
Don Zickuscb9c4482006-09-26 10:52:26 +0200340 continue;
Robert Richterdea37662009-05-25 18:11:52 +0200341 rdmsrl(msrs->controls[i].addr, val);
342 val &= ~ARCH_PERFMON_EVENTSEL0_ENABLE;
343 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
Barry Kasindorf56784f12008-07-22 21:08:55 +0200345
Robert Richter90637592009-03-10 19:15:57 +0100346 op_amd_stop_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Robert Richter6657fe42008-07-22 21:08:50 +0200349static void op_amd_shutdown(struct op_msrs const * const msrs)
Don Zickuscb9c4482006-09-26 10:52:26 +0200350{
351 int i;
352
Robert Richter6e63ea42009-07-07 19:25:39 +0200353 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200354 if (msrs->counters[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200355 release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
356 }
Robert Richter5e766e32009-07-08 14:54:17 +0200357 for (i = 0; i < NUM_CONTROLS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200358 if (msrs->controls[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200359 release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
360 }
361}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Robert Richter9fa68122008-11-24 14:21:03 +0100363#ifdef CONFIG_OPROFILE_IBS
Robert Richtera4c408a2008-07-22 21:09:02 +0200364
Robert Richter7d77f2d2008-07-22 21:08:57 +0200365static u8 ibs_eilvt_off;
366
Barry Kasindorf56784f12008-07-22 21:08:55 +0200367static inline void apic_init_ibs_nmi_per_cpu(void *arg)
368{
Robert Richter7d77f2d2008-07-22 21:08:57 +0200369 ibs_eilvt_off = setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_NMI, 0);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200370}
371
372static inline void apic_clear_ibs_nmi_per_cpu(void *arg)
373{
374 setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_FIX, 1);
375}
376
Robert Richterfe615cb2008-11-24 14:58:03 +0100377static int init_ibs_nmi(void)
Robert Richter7d77f2d2008-07-22 21:08:57 +0200378{
379#define IBSCTL_LVTOFFSETVAL (1 << 8)
380#define IBSCTL 0x1cc
381 struct pci_dev *cpu_cfg;
382 int nodes;
383 u32 value = 0;
384
385 /* per CPU setup */
Robert Richterebb535d2008-07-22 21:08:59 +0200386 on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 1);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200387
388 nodes = 0;
389 cpu_cfg = NULL;
390 do {
391 cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
392 PCI_DEVICE_ID_AMD_10H_NB_MISC,
393 cpu_cfg);
394 if (!cpu_cfg)
395 break;
396 ++nodes;
397 pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
398 | IBSCTL_LVTOFFSETVAL);
399 pci_read_config_dword(cpu_cfg, IBSCTL, &value);
400 if (value != (ibs_eilvt_off | IBSCTL_LVTOFFSETVAL)) {
Robert Richter83bd9242008-12-15 15:09:50 +0100401 pci_dev_put(cpu_cfg);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200402 printk(KERN_DEBUG "Failed to setup IBS LVT offset, "
403 "IBSCTL = 0x%08x", value);
404 return 1;
405 }
406 } while (1);
407
408 if (!nodes) {
409 printk(KERN_DEBUG "No CPU node configured for IBS");
410 return 1;
411 }
412
413#ifdef CONFIG_NUMA
414 /* Sanity check */
415 /* Works only for 64bit with proper numa implementation. */
416 if (nodes != num_possible_nodes()) {
417 printk(KERN_DEBUG "Failed to setup CPU node(s) for IBS, "
418 "found: %d, expected %d",
419 nodes, num_possible_nodes());
420 return 1;
421 }
422#endif
423 return 0;
424}
425
Robert Richterfe615cb2008-11-24 14:58:03 +0100426/* uninitialize the APIC for the IBS interrupts if needed */
427static void clear_ibs_nmi(void)
428{
Robert Richterfc81be82008-12-18 00:28:27 +0100429 if (has_ibs)
Robert Richterfe615cb2008-11-24 14:58:03 +0100430 on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1);
431}
432
Robert Richterfd13f6c2008-10-19 21:00:09 +0200433/* initialize the APIC for the IBS interrupts if available */
Robert Richterfe615cb2008-11-24 14:58:03 +0100434static void ibs_init(void)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200435{
Robert Richterfc81be82008-12-18 00:28:27 +0100436 has_ibs = boot_cpu_has(X86_FEATURE_IBS);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200437
Robert Richterfc81be82008-12-18 00:28:27 +0100438 if (!has_ibs)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200439 return;
440
Robert Richterfe615cb2008-11-24 14:58:03 +0100441 if (init_ibs_nmi()) {
Robert Richterfc81be82008-12-18 00:28:27 +0100442 has_ibs = 0;
Robert Richter852402c2008-07-22 21:09:06 +0200443 return;
444 }
445
446 printk(KERN_INFO "oprofile: AMD IBS detected\n");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200447}
448
Robert Richterfe615cb2008-11-24 14:58:03 +0100449static void ibs_exit(void)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200450{
Robert Richterfc81be82008-12-18 00:28:27 +0100451 if (!has_ibs)
Robert Richterfe615cb2008-11-24 14:58:03 +0100452 return;
453
454 clear_ibs_nmi();
Barry Kasindorf56784f12008-07-22 21:08:55 +0200455}
456
Robert Richter25ad2912008-09-05 17:12:36 +0200457static int (*create_arch_files)(struct super_block *sb, struct dentry *root);
Robert Richter270d3e12008-07-22 21:09:01 +0200458
Robert Richter25ad2912008-09-05 17:12:36 +0200459static int setup_ibs_files(struct super_block *sb, struct dentry *root)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200460{
Barry Kasindorf56784f12008-07-22 21:08:55 +0200461 struct dentry *dir;
Robert Richter270d3e12008-07-22 21:09:01 +0200462 int ret = 0;
463
464 /* architecture specific files */
465 if (create_arch_files)
466 ret = create_arch_files(sb, root);
467
468 if (ret)
469 return ret;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200470
Robert Richterfc81be82008-12-18 00:28:27 +0100471 if (!has_ibs)
Robert Richter270d3e12008-07-22 21:09:01 +0200472 return ret;
473
474 /* model specific files */
Barry Kasindorf56784f12008-07-22 21:08:55 +0200475
476 /* setup some reasonable defaults */
477 ibs_config.max_cnt_fetch = 250000;
478 ibs_config.fetch_enabled = 0;
479 ibs_config.max_cnt_op = 250000;
480 ibs_config.op_enabled = 0;
481 ibs_config.dispatched_ops = 1;
Robert Richter2d55a472008-07-18 17:56:05 +0200482
483 dir = oprofilefs_mkdir(sb, root, "ibs_fetch");
484 oprofilefs_create_ulong(sb, dir, "enable",
485 &ibs_config.fetch_enabled);
486 oprofilefs_create_ulong(sb, dir, "max_count",
487 &ibs_config.max_cnt_fetch);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200488 oprofilefs_create_ulong(sb, dir, "rand_enable",
489 &ibs_config.rand_en);
Robert Richter2d55a472008-07-18 17:56:05 +0200490
Robert Richterccd755c2008-07-29 16:57:10 +0200491 dir = oprofilefs_mkdir(sb, root, "ibs_op");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200492 oprofilefs_create_ulong(sb, dir, "enable",
Robert Richter2d55a472008-07-18 17:56:05 +0200493 &ibs_config.op_enabled);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200494 oprofilefs_create_ulong(sb, dir, "max_count",
Robert Richter2d55a472008-07-18 17:56:05 +0200495 &ibs_config.max_cnt_op);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200496 oprofilefs_create_ulong(sb, dir, "dispatched_ops",
Robert Richter2d55a472008-07-18 17:56:05 +0200497 &ibs_config.dispatched_ops);
Robert Richterfc2bd732008-07-22 21:09:00 +0200498
499 return 0;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200500}
501
Robert Richteradf5ec02008-07-22 21:08:48 +0200502static int op_amd_init(struct oprofile_operations *ops)
503{
Robert Richterfe615cb2008-11-24 14:58:03 +0100504 ibs_init();
Robert Richter270d3e12008-07-22 21:09:01 +0200505 create_arch_files = ops->create_files;
506 ops->create_files = setup_ibs_files;
Robert Richteradf5ec02008-07-22 21:08:48 +0200507 return 0;
508}
509
510static void op_amd_exit(void)
511{
Robert Richterfe615cb2008-11-24 14:58:03 +0100512 ibs_exit();
Robert Richteradf5ec02008-07-22 21:08:48 +0200513}
514
Robert Richter9fa68122008-11-24 14:21:03 +0100515#else
516
517/* no IBS support */
518
519static int op_amd_init(struct oprofile_operations *ops)
520{
521 return 0;
522}
523
524static void op_amd_exit(void) {}
525
526#endif /* CONFIG_OPROFILE_IBS */
Robert Richtera4c408a2008-07-22 21:09:02 +0200527
Robert Richter259a83a2009-07-09 15:12:35 +0200528struct op_x86_model_spec op_amd_spec = {
Robert Richterc92960f2008-09-05 17:12:36 +0200529 .num_counters = NUM_COUNTERS,
530 .num_controls = NUM_CONTROLS,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200531 .num_virt_counters = NUM_VIRT_COUNTERS,
Robert Richter3370d352009-05-25 15:10:32 +0200532 .reserved = MSR_AMD_EVENTSEL_RESERVED,
533 .event_mask = OP_EVENT_MASK,
534 .init = op_amd_init,
535 .exit = op_amd_exit,
Robert Richterc92960f2008-09-05 17:12:36 +0200536 .fill_in_addresses = &op_amd_fill_in_addresses,
537 .setup_ctrs = &op_amd_setup_ctrs,
538 .check_ctrs = &op_amd_check_ctrs,
539 .start = &op_amd_start,
540 .stop = &op_amd_stop,
Robert Richter3370d352009-05-25 15:10:32 +0200541 .shutdown = &op_amd_shutdown,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200542#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
Robert Richter7e7478c2009-07-16 13:09:53 +0200543 .switch_ctrl = &op_mux_switch_ctrl,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200544#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545};