blob: fdbed3a0c877404c56ba198e6822337051b63574 [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];
45#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
46DECLARE_PER_CPU(int, switch_index);
47#endif
Robert Richter852402c2008-07-22 21:09:06 +020048
49#ifdef CONFIG_OPROFILE_IBS
50
Robert Richter87f0bac2008-07-22 21:09:03 +020051/* IbsFetchCtl bits/masks */
Robert Richterc572ae42009-06-03 20:10:39 +020052#define IBS_FETCH_RAND_EN (1ULL<<57)
53#define IBS_FETCH_VAL (1ULL<<49)
54#define IBS_FETCH_ENABLE (1ULL<<48)
55#define IBS_FETCH_CNT_MASK 0xFFFF0000ULL
Barry Kasindorf56784f12008-07-22 21:08:55 +020056
Robert Richter87f0bac2008-07-22 21:09:03 +020057/*IbsOpCtl bits */
Robert Richterc572ae42009-06-03 20:10:39 +020058#define IBS_OP_CNT_CTL (1ULL<<19)
59#define IBS_OP_VAL (1ULL<<18)
60#define IBS_OP_ENABLE (1ULL<<17)
Barry Kasindorf56784f12008-07-22 21:08:55 +020061
Robert Richterc572ae42009-06-03 20:10:39 +020062#define IBS_FETCH_SIZE 6
63#define IBS_OP_SIZE 12
Barry Kasindorf56784f12008-07-22 21:08:55 +020064
Robert Richterfc81be82008-12-18 00:28:27 +010065static int has_ibs; /* AMD Family10h and later */
Barry Kasindorf56784f12008-07-22 21:08:55 +020066
67struct op_ibs_config {
68 unsigned long op_enabled;
69 unsigned long fetch_enabled;
70 unsigned long max_cnt_fetch;
71 unsigned long max_cnt_op;
72 unsigned long rand_en;
73 unsigned long dispatched_ops;
74};
75
76static struct op_ibs_config ibs_config;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010077
Robert Richter852402c2008-07-22 21:09:06 +020078#endif
79
Robert Richter6657fe42008-07-22 21:08:50 +020080/* functions for op_amd_spec */
Robert Richterdfa15422008-07-22 21:08:49 +020081
Robert Richter6657fe42008-07-22 21:08:50 +020082static void op_amd_fill_in_addresses(struct op_msrs * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Don Zickuscb9c4482006-09-26 10:52:26 +020084 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010086 for (i = 0; i < NUM_COUNTERS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +020087 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
88 msrs->counters[i].addr = MSR_K7_PERFCTR0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +020089 else
90 msrs->counters[i].addr = 0;
91 }
92
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010093 for (i = 0; i < NUM_CONTROLS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +020094 if (reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i))
95 msrs->controls[i].addr = MSR_K7_EVNTSEL0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +020096 else
97 msrs->controls[i].addr = 0;
98 }
Jason Yeh4d4036e2009-07-08 13:49:38 +020099
100#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
101 for (i = 0; i < NUM_VIRT_COUNTERS; i++) {
102 int hw_counter = i % NUM_CONTROLS;
103 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
104 msrs->multiplex[i].addr = MSR_K7_PERFCTR0 + hw_counter;
105 else
106 msrs->multiplex[i].addr = 0;
107 }
108#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Robert Richteref8828d2009-05-25 19:31:44 +0200111static void op_amd_setup_ctrs(struct op_x86_model_spec const *model,
112 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Robert Richter3370d352009-05-25 15:10:32 +0200114 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 int i;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100116
Jason Yeh4d4036e2009-07-08 13:49:38 +0200117 /* setup reset_value */
118 for (i = 0; i < NUM_VIRT_COUNTERS; ++i) {
119 if (counter_config[i].enabled) {
120 reset_value[i] = counter_config[i].count;
121 } else {
122 reset_value[i] = 0;
123 }
124 }
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 /* clear all counters */
Robert Richter6e63ea42009-07-07 19:25:39 +0200127 for (i = 0; i < NUM_CONTROLS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200128 if (unlikely(!msrs->controls[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +0200129 continue;
Robert Richter3370d352009-05-25 15:10:32 +0200130 rdmsrl(msrs->controls[i].addr, val);
131 val &= model->reserved;
132 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
Don Zickuscb9c4482006-09-26 10:52:26 +0200134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 /* avoid a false detection of ctr overflows in NMI handler */
Robert Richter4c168ea2008-09-24 11:08:52 +0200136 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200137 if (unlikely(!msrs->counters[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +0200138 continue;
Robert Richterbbc59862009-05-25 17:38:19 +0200139 wrmsrl(msrs->counters[i].addr, -1LL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141
142 /* enable active counters */
Robert Richter4c168ea2008-09-24 11:08:52 +0200143 for (i = 0; i < NUM_COUNTERS; ++i) {
Jason Yeh4d4036e2009-07-08 13:49:38 +0200144#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
145 int offset = i + __get_cpu_var(switch_index);
146#else
147 int offset = i;
148#endif
149 if (counter_config[offset].enabled && msrs->counters[i].addr) {
150 /* setup counter registers */
151 wrmsrl(msrs->counters[i].addr, -(u64)reset_value[offset]);
152
153 /* setup control registers */
Robert Richter3370d352009-05-25 15:10:32 +0200154 rdmsrl(msrs->controls[i].addr, val);
155 val &= model->reserved;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200156 val |= op_x86_get_ctrl(model, &counter_config[offset]);
Robert Richter3370d352009-05-25 15:10:32 +0200157 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159 }
160}
161
Jason Yeh4d4036e2009-07-08 13:49:38 +0200162
163#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
164
165static void op_amd_switch_ctrl(struct op_x86_model_spec const *model,
166 struct op_msrs const * const msrs)
167{
168 u64 val;
169 int i;
170
171 /* enable active counters */
172 for (i = 0; i < NUM_COUNTERS; ++i) {
173 int offset = i + __get_cpu_var(switch_index);
174 if (counter_config[offset].enabled) {
175 /* setup control registers */
176 rdmsrl(msrs->controls[i].addr, val);
177 val &= model->reserved;
178 val |= op_x86_get_ctrl(model, &counter_config[offset]);
179 wrmsrl(msrs->controls[i].addr, val);
180 }
181 }
182}
183
184#endif
185
186
Robert Richter852402c2008-07-22 21:09:06 +0200187#ifdef CONFIG_OPROFILE_IBS
188
Robert Richter7939d2b2008-07-22 21:08:56 +0200189static inline int
190op_amd_handle_ibs(struct pt_regs * const regs,
191 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Robert Richterc572ae42009-06-03 20:10:39 +0200193 u64 val, ctl;
Robert Richter1acda872009-01-05 10:35:31 +0100194 struct op_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Robert Richterfc81be82008-12-18 00:28:27 +0100196 if (!has_ibs)
Jaswinder Singh Rajput21e70872009-06-18 17:09:27 +0530197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Robert Richter7939d2b2008-07-22 21:08:56 +0200199 if (ibs_config.fetch_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200200 rdmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
201 if (ctl & IBS_FETCH_VAL) {
202 rdmsrl(MSR_AMD64_IBSFETCHLINAD, val);
203 oprofile_write_reserve(&entry, regs, val,
Robert Richter14f0ca82009-01-07 21:50:22 +0100204 IBS_FETCH_CODE, IBS_FETCH_SIZE);
Robert Richter51563a02009-06-03 20:54:56 +0200205 oprofile_add_data64(&entry, val);
206 oprofile_add_data64(&entry, ctl);
Robert Richterc572ae42009-06-03 20:10:39 +0200207 rdmsrl(MSR_AMD64_IBSFETCHPHYSAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200208 oprofile_add_data64(&entry, val);
Robert Richter14f0ca82009-01-07 21:50:22 +0100209 oprofile_write_commit(&entry);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200210
Robert Richterfd13f6c2008-10-19 21:00:09 +0200211 /* reenable the IRQ */
Robert Richterc572ae42009-06-03 20:10:39 +0200212 ctl &= ~(IBS_FETCH_VAL | IBS_FETCH_CNT_MASK);
213 ctl |= IBS_FETCH_ENABLE;
214 wrmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200215 }
216 }
217
Robert Richter7939d2b2008-07-22 21:08:56 +0200218 if (ibs_config.op_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200219 rdmsrl(MSR_AMD64_IBSOPCTL, ctl);
220 if (ctl & IBS_OP_VAL) {
221 rdmsrl(MSR_AMD64_IBSOPRIP, val);
222 oprofile_write_reserve(&entry, regs, val,
Robert Richter14f0ca82009-01-07 21:50:22 +0100223 IBS_OP_CODE, IBS_OP_SIZE);
Robert Richter51563a02009-06-03 20:54:56 +0200224 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200225 rdmsrl(MSR_AMD64_IBSOPDATA, val);
Robert Richter51563a02009-06-03 20:54:56 +0200226 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200227 rdmsrl(MSR_AMD64_IBSOPDATA2, val);
Robert Richter51563a02009-06-03 20:54:56 +0200228 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200229 rdmsrl(MSR_AMD64_IBSOPDATA3, val);
Robert Richter51563a02009-06-03 20:54:56 +0200230 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200231 rdmsrl(MSR_AMD64_IBSDCLINAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200232 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200233 rdmsrl(MSR_AMD64_IBSDCPHYSAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200234 oprofile_add_data64(&entry, val);
Robert Richter14f0ca82009-01-07 21:50:22 +0100235 oprofile_write_commit(&entry);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200236
237 /* reenable the IRQ */
Robert Richterc572ae42009-06-03 20:10:39 +0200238 ctl &= ~IBS_OP_VAL & 0xFFFFFFFF;
239 ctl |= IBS_OP_ENABLE;
240 wrmsrl(MSR_AMD64_IBSOPCTL, ctl);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200241 }
242 }
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return 1;
245}
246
Robert Richter90637592009-03-10 19:15:57 +0100247static inline void op_amd_start_ibs(void)
248{
Robert Richterc572ae42009-06-03 20:10:39 +0200249 u64 val;
Robert Richter90637592009-03-10 19:15:57 +0100250 if (has_ibs && ibs_config.fetch_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200251 val = (ibs_config.max_cnt_fetch >> 4) & 0xFFFF;
252 val |= ibs_config.rand_en ? IBS_FETCH_RAND_EN : 0;
253 val |= IBS_FETCH_ENABLE;
254 wrmsrl(MSR_AMD64_IBSFETCHCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100255 }
256
257 if (has_ibs && ibs_config.op_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200258 val = (ibs_config.max_cnt_op >> 4) & 0xFFFF;
259 val |= ibs_config.dispatched_ops ? IBS_OP_CNT_CTL : 0;
260 val |= IBS_OP_ENABLE;
261 wrmsrl(MSR_AMD64_IBSOPCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100262 }
263}
264
265static void op_amd_stop_ibs(void)
266{
Robert Richterc572ae42009-06-03 20:10:39 +0200267 if (has_ibs && ibs_config.fetch_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100268 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200269 wrmsrl(MSR_AMD64_IBSFETCHCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100270
Robert Richterc572ae42009-06-03 20:10:39 +0200271 if (has_ibs && ibs_config.op_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100272 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200273 wrmsrl(MSR_AMD64_IBSOPCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100274}
275
276#else
277
278static inline int op_amd_handle_ibs(struct pt_regs * const regs,
Jaswinder Singh Rajput21e70872009-06-18 17:09:27 +0530279 struct op_msrs const * const msrs)
280{
281 return 0;
282}
Robert Richter90637592009-03-10 19:15:57 +0100283static inline void op_amd_start_ibs(void) { }
284static inline void op_amd_stop_ibs(void) { }
285
Robert Richter852402c2008-07-22 21:09:06 +0200286#endif
287
Robert Richter7939d2b2008-07-22 21:08:56 +0200288static int op_amd_check_ctrs(struct pt_regs * const regs,
289 struct op_msrs const * const msrs)
290{
Robert Richter42399ad2009-05-25 17:59:06 +0200291 u64 val;
Robert Richter7939d2b2008-07-22 21:08:56 +0200292 int i;
293
Robert Richter6e63ea42009-07-07 19:25:39 +0200294 for (i = 0; i < NUM_COUNTERS; ++i) {
Jason Yeh4d4036e2009-07-08 13:49:38 +0200295#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
296 int offset = i + __get_cpu_var(switch_index);
297#else
298 int offset = i;
299#endif
300 if (!reset_value[offset])
Robert Richter7939d2b2008-07-22 21:08:56 +0200301 continue;
Robert Richter42399ad2009-05-25 17:59:06 +0200302 rdmsrl(msrs->counters[i].addr, val);
303 /* bit is clear if overflowed: */
304 if (val & OP_CTR_OVERFLOW)
305 continue;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200306 oprofile_add_sample(regs, offset);
307 wrmsrl(msrs->counters[i].addr, -(u64)reset_value[offset]);
Robert Richter7939d2b2008-07-22 21:08:56 +0200308 }
309
310 op_amd_handle_ibs(regs, msrs);
311
312 /* See op_model_ppro.c */
313 return 1;
314}
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100315
Robert Richter6657fe42008-07-22 21:08:50 +0200316static void op_amd_start(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Robert Richterdea37662009-05-25 18:11:52 +0200318 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 int i;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200320
Robert Richter6e63ea42009-07-07 19:25:39 +0200321 for (i = 0; i < NUM_COUNTERS; ++i) {
Jason Yeh4d4036e2009-07-08 13:49:38 +0200322#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
323 int offset = i + __get_cpu_var(switch_index);
324#else
325 int offset = i;
326#endif
327 if (reset_value[offset]) {
Robert Richterdea37662009-05-25 18:11:52 +0200328 rdmsrl(msrs->controls[i].addr, val);
329 val |= ARCH_PERFMON_EVENTSEL0_ENABLE;
330 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332 }
Robert Richter852402c2008-07-22 21:09:06 +0200333
Robert Richter90637592009-03-10 19:15:57 +0100334 op_amd_start_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Robert Richter6657fe42008-07-22 21:08:50 +0200337static void op_amd_stop(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Robert Richterdea37662009-05-25 18:11:52 +0200339 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 int i;
341
Robert Richterfd13f6c2008-10-19 21:00:09 +0200342 /*
343 * Subtle: stop on all counters to avoid race with setting our
344 * pm callback
345 */
Robert Richter6e63ea42009-07-07 19:25:39 +0200346 for (i = 0; i < NUM_COUNTERS; ++i) {
Jason Yeh4d4036e2009-07-08 13:49:38 +0200347#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
348 if (!reset_value[i + per_cpu(switch_index, smp_processor_id())])
349#else
Robert Richter4c168ea2008-09-24 11:08:52 +0200350 if (!reset_value[i])
Jason Yeh4d4036e2009-07-08 13:49:38 +0200351#endif
Don Zickuscb9c4482006-09-26 10:52:26 +0200352 continue;
Robert Richterdea37662009-05-25 18:11:52 +0200353 rdmsrl(msrs->controls[i].addr, val);
354 val &= ~ARCH_PERFMON_EVENTSEL0_ENABLE;
355 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
Barry Kasindorf56784f12008-07-22 21:08:55 +0200357
Robert Richter90637592009-03-10 19:15:57 +0100358 op_amd_stop_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Robert Richter6657fe42008-07-22 21:08:50 +0200361static void op_amd_shutdown(struct op_msrs const * const msrs)
Don Zickuscb9c4482006-09-26 10:52:26 +0200362{
363 int i;
364
Robert Richter6e63ea42009-07-07 19:25:39 +0200365 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200366 if (msrs->counters[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200367 release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
368 }
Jason Yeh4d4036e2009-07-08 13:49:38 +0200369 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200370 if (msrs->controls[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200371 release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
372 }
373}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Robert Richter9fa68122008-11-24 14:21:03 +0100375#ifdef CONFIG_OPROFILE_IBS
Robert Richtera4c408a2008-07-22 21:09:02 +0200376
Robert Richter7d77f2d2008-07-22 21:08:57 +0200377static u8 ibs_eilvt_off;
378
Barry Kasindorf56784f12008-07-22 21:08:55 +0200379static inline void apic_init_ibs_nmi_per_cpu(void *arg)
380{
Robert Richter7d77f2d2008-07-22 21:08:57 +0200381 ibs_eilvt_off = setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_NMI, 0);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200382}
383
384static inline void apic_clear_ibs_nmi_per_cpu(void *arg)
385{
386 setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_FIX, 1);
387}
388
Robert Richterfe615cb2008-11-24 14:58:03 +0100389static int init_ibs_nmi(void)
Robert Richter7d77f2d2008-07-22 21:08:57 +0200390{
391#define IBSCTL_LVTOFFSETVAL (1 << 8)
392#define IBSCTL 0x1cc
393 struct pci_dev *cpu_cfg;
394 int nodes;
395 u32 value = 0;
396
397 /* per CPU setup */
Robert Richterebb535d2008-07-22 21:08:59 +0200398 on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 1);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200399
400 nodes = 0;
401 cpu_cfg = NULL;
402 do {
403 cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
404 PCI_DEVICE_ID_AMD_10H_NB_MISC,
405 cpu_cfg);
406 if (!cpu_cfg)
407 break;
408 ++nodes;
409 pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
410 | IBSCTL_LVTOFFSETVAL);
411 pci_read_config_dword(cpu_cfg, IBSCTL, &value);
412 if (value != (ibs_eilvt_off | IBSCTL_LVTOFFSETVAL)) {
Robert Richter83bd9242008-12-15 15:09:50 +0100413 pci_dev_put(cpu_cfg);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200414 printk(KERN_DEBUG "Failed to setup IBS LVT offset, "
415 "IBSCTL = 0x%08x", value);
416 return 1;
417 }
418 } while (1);
419
420 if (!nodes) {
421 printk(KERN_DEBUG "No CPU node configured for IBS");
422 return 1;
423 }
424
425#ifdef CONFIG_NUMA
426 /* Sanity check */
427 /* Works only for 64bit with proper numa implementation. */
428 if (nodes != num_possible_nodes()) {
429 printk(KERN_DEBUG "Failed to setup CPU node(s) for IBS, "
430 "found: %d, expected %d",
431 nodes, num_possible_nodes());
432 return 1;
433 }
434#endif
435 return 0;
436}
437
Robert Richterfe615cb2008-11-24 14:58:03 +0100438/* uninitialize the APIC for the IBS interrupts if needed */
439static void clear_ibs_nmi(void)
440{
Robert Richterfc81be82008-12-18 00:28:27 +0100441 if (has_ibs)
Robert Richterfe615cb2008-11-24 14:58:03 +0100442 on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1);
443}
444
Robert Richterfd13f6c2008-10-19 21:00:09 +0200445/* initialize the APIC for the IBS interrupts if available */
Robert Richterfe615cb2008-11-24 14:58:03 +0100446static void ibs_init(void)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200447{
Robert Richterfc81be82008-12-18 00:28:27 +0100448 has_ibs = boot_cpu_has(X86_FEATURE_IBS);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200449
Robert Richterfc81be82008-12-18 00:28:27 +0100450 if (!has_ibs)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200451 return;
452
Robert Richterfe615cb2008-11-24 14:58:03 +0100453 if (init_ibs_nmi()) {
Robert Richterfc81be82008-12-18 00:28:27 +0100454 has_ibs = 0;
Robert Richter852402c2008-07-22 21:09:06 +0200455 return;
456 }
457
458 printk(KERN_INFO "oprofile: AMD IBS detected\n");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200459}
460
Robert Richterfe615cb2008-11-24 14:58:03 +0100461static void ibs_exit(void)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200462{
Robert Richterfc81be82008-12-18 00:28:27 +0100463 if (!has_ibs)
Robert Richterfe615cb2008-11-24 14:58:03 +0100464 return;
465
466 clear_ibs_nmi();
Barry Kasindorf56784f12008-07-22 21:08:55 +0200467}
468
Robert Richter25ad2912008-09-05 17:12:36 +0200469static int (*create_arch_files)(struct super_block *sb, struct dentry *root);
Robert Richter270d3e12008-07-22 21:09:01 +0200470
Robert Richter25ad2912008-09-05 17:12:36 +0200471static int setup_ibs_files(struct super_block *sb, struct dentry *root)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200472{
Barry Kasindorf56784f12008-07-22 21:08:55 +0200473 struct dentry *dir;
Robert Richter270d3e12008-07-22 21:09:01 +0200474 int ret = 0;
475
476 /* architecture specific files */
477 if (create_arch_files)
478 ret = create_arch_files(sb, root);
479
480 if (ret)
481 return ret;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200482
Robert Richterfc81be82008-12-18 00:28:27 +0100483 if (!has_ibs)
Robert Richter270d3e12008-07-22 21:09:01 +0200484 return ret;
485
486 /* model specific files */
Barry Kasindorf56784f12008-07-22 21:08:55 +0200487
488 /* setup some reasonable defaults */
489 ibs_config.max_cnt_fetch = 250000;
490 ibs_config.fetch_enabled = 0;
491 ibs_config.max_cnt_op = 250000;
492 ibs_config.op_enabled = 0;
493 ibs_config.dispatched_ops = 1;
Robert Richter2d55a472008-07-18 17:56:05 +0200494
495 dir = oprofilefs_mkdir(sb, root, "ibs_fetch");
496 oprofilefs_create_ulong(sb, dir, "enable",
497 &ibs_config.fetch_enabled);
498 oprofilefs_create_ulong(sb, dir, "max_count",
499 &ibs_config.max_cnt_fetch);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200500 oprofilefs_create_ulong(sb, dir, "rand_enable",
501 &ibs_config.rand_en);
Robert Richter2d55a472008-07-18 17:56:05 +0200502
Robert Richterccd755c2008-07-29 16:57:10 +0200503 dir = oprofilefs_mkdir(sb, root, "ibs_op");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200504 oprofilefs_create_ulong(sb, dir, "enable",
Robert Richter2d55a472008-07-18 17:56:05 +0200505 &ibs_config.op_enabled);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200506 oprofilefs_create_ulong(sb, dir, "max_count",
Robert Richter2d55a472008-07-18 17:56:05 +0200507 &ibs_config.max_cnt_op);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200508 oprofilefs_create_ulong(sb, dir, "dispatched_ops",
Robert Richter2d55a472008-07-18 17:56:05 +0200509 &ibs_config.dispatched_ops);
Robert Richterfc2bd732008-07-22 21:09:00 +0200510
511 return 0;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200512}
513
Robert Richteradf5ec02008-07-22 21:08:48 +0200514static int op_amd_init(struct oprofile_operations *ops)
515{
Robert Richterfe615cb2008-11-24 14:58:03 +0100516 ibs_init();
Robert Richter270d3e12008-07-22 21:09:01 +0200517 create_arch_files = ops->create_files;
518 ops->create_files = setup_ibs_files;
Robert Richteradf5ec02008-07-22 21:08:48 +0200519 return 0;
520}
521
522static void op_amd_exit(void)
523{
Robert Richterfe615cb2008-11-24 14:58:03 +0100524 ibs_exit();
Robert Richteradf5ec02008-07-22 21:08:48 +0200525}
526
Robert Richter9fa68122008-11-24 14:21:03 +0100527#else
528
529/* no IBS support */
530
531static int op_amd_init(struct oprofile_operations *ops)
532{
533 return 0;
534}
535
536static void op_amd_exit(void) {}
537
538#endif /* CONFIG_OPROFILE_IBS */
Robert Richtera4c408a2008-07-22 21:09:02 +0200539
Robert Richter6657fe42008-07-22 21:08:50 +0200540struct op_x86_model_spec const op_amd_spec = {
Robert Richterc92960f2008-09-05 17:12:36 +0200541 .num_counters = NUM_COUNTERS,
542 .num_controls = NUM_CONTROLS,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200543 .num_virt_counters = NUM_VIRT_COUNTERS,
544 .num_virt_controls = NUM_VIRT_CONTROLS,
Robert Richter3370d352009-05-25 15:10:32 +0200545 .reserved = MSR_AMD_EVENTSEL_RESERVED,
546 .event_mask = OP_EVENT_MASK,
547 .init = op_amd_init,
548 .exit = op_amd_exit,
Robert Richterc92960f2008-09-05 17:12:36 +0200549 .fill_in_addresses = &op_amd_fill_in_addresses,
550 .setup_ctrs = &op_amd_setup_ctrs,
551 .check_ctrs = &op_amd_check_ctrs,
552 .start = &op_amd_start,
553 .stop = &op_amd_stop,
Robert Richter3370d352009-05-25 15:10:32 +0200554 .shutdown = &op_amd_shutdown,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200555#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
556 .switch_ctrl = &op_amd_switch_ctrl,
557#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558};