blob: 509513760a6e45c6ccade4b0054cf93f508add84 [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 Richteradf5ec02008-07-22 21:08:48 +02005 * @remark Copyright 2002-2008 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>
Barry Kasindorf56784f12008-07-22 21:08:55 +020012 * @author Barry Kasindorf
Robert Richteradf5ec02008-07-22 21:08:48 +020013*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#include <linux/oprofile.h>
Barry Kasindorf56784f12008-07-22 21:08:55 +020016#include <linux/device.h>
17#include <linux/pci.h>
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/ptrace.h>
20#include <asm/msr.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020021#include <asm/nmi.h>
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "op_x86_model.h"
24#include "op_counter.h"
25
Robert Richter4c168ea2008-09-24 11:08:52 +020026#define NUM_COUNTERS 4
27#define NUM_CONTROLS 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010029#define CTR_IS_RESERVED(msrs, c) (msrs->counters[(c)].addr ? 1 : 0)
30#define CTR_READ(l, h, msrs, c) do {rdmsr(msrs->counters[(c)].addr, (l), (h)); } while (0)
31#define CTR_WRITE(l, msrs, c) do {wrmsr(msrs->counters[(c)].addr, -(unsigned int)(l), -1); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define CTR_OVERFLOWED(n) (!((n) & (1U<<31)))
33
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010034#define CTRL_IS_RESERVED(msrs, c) (msrs->controls[(c)].addr ? 1 : 0)
35#define CTRL_READ(l, h, msrs, c) do {rdmsr(msrs->controls[(c)].addr, (l), (h)); } while (0)
36#define CTRL_WRITE(l, h, msrs, c) do {wrmsr(msrs->controls[(c)].addr, (l), (h)); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define CTRL_SET_ACTIVE(n) (n |= (1<<22))
38#define CTRL_SET_INACTIVE(n) (n &= ~(1<<22))
Barry Kasindorfbd87f1f2007-12-18 18:05:58 +010039#define CTRL_CLEAR_LO(x) (x &= (1<<21))
40#define CTRL_CLEAR_HI(x) (x &= 0xfffffcf0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define CTRL_SET_ENABLE(val) (val |= 1<<20)
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010042#define CTRL_SET_USR(val, u) (val |= ((u & 1) << 16))
43#define CTRL_SET_KERN(val, k) (val |= ((k & 1) << 17))
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define CTRL_SET_UM(val, m) (val |= (m << 8))
Barry Kasindorfbd87f1f2007-12-18 18:05:58 +010045#define CTRL_SET_EVENT_LOW(val, e) (val |= (e & 0xff))
46#define CTRL_SET_EVENT_HIGH(val, e) (val |= ((e >> 8) & 0xf))
47#define CTRL_SET_HOST_ONLY(val, h) (val |= ((h & 1) << 9))
48#define CTRL_SET_GUEST_ONLY(val, h) (val |= ((h & 1) << 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Robert Richter852402c2008-07-22 21:09:06 +020050static unsigned long reset_value[NUM_COUNTERS];
51
52#ifdef CONFIG_OPROFILE_IBS
53
Robert Richter87f0bac2008-07-22 21:09:03 +020054/* IbsFetchCtl bits/masks */
55#define IBS_FETCH_HIGH_VALID_BIT (1UL << 17) /* bit 49 */
56#define IBS_FETCH_HIGH_ENABLE (1UL << 16) /* bit 48 */
57#define IBS_FETCH_LOW_MAX_CNT_MASK 0x0000FFFFUL /* MaxCnt mask */
Barry Kasindorf56784f12008-07-22 21:08:55 +020058
Robert Richter87f0bac2008-07-22 21:09:03 +020059/*IbsOpCtl bits */
60#define IBS_OP_LOW_VALID_BIT (1ULL<<18) /* bit 18 */
61#define IBS_OP_LOW_ENABLE (1ULL<<17) /* bit 17 */
Barry Kasindorf56784f12008-07-22 21:08:55 +020062
63/* Codes used in cpu_buffer.c */
Robert Richter87f0bac2008-07-22 21:09:03 +020064/* This produces duplicate code, need to be fixed */
Barry Kasindorf56784f12008-07-22 21:08:55 +020065#define IBS_FETCH_BEGIN 3
66#define IBS_OP_BEGIN 4
67
Robert Richter90645702008-07-22 21:08:58 +020068/* The function interface needs to be fixed, something like add
69 data. Should then be added to linux/oprofile.h. */
Robert Richtere2fee272008-07-18 17:36:20 +020070extern void
71oprofile_add_ibs_sample(struct pt_regs *const regs,
Robert Richter25ad29132008-09-05 17:12:36 +020072 unsigned int *const ibs_sample, int ibs_code);
Robert Richter90645702008-07-22 21:08:58 +020073
Barry Kasindorf56784f12008-07-22 21:08:55 +020074struct ibs_fetch_sample {
75 /* MSRC001_1031 IBS Fetch Linear Address Register */
76 unsigned int ibs_fetch_lin_addr_low;
77 unsigned int ibs_fetch_lin_addr_high;
78 /* MSRC001_1030 IBS Fetch Control Register */
79 unsigned int ibs_fetch_ctl_low;
80 unsigned int ibs_fetch_ctl_high;
81 /* MSRC001_1032 IBS Fetch Physical Address Register */
82 unsigned int ibs_fetch_phys_addr_low;
83 unsigned int ibs_fetch_phys_addr_high;
84};
85
86struct ibs_op_sample {
87 /* MSRC001_1034 IBS Op Logical Address Register (IbsRIP) */
88 unsigned int ibs_op_rip_low;
89 unsigned int ibs_op_rip_high;
90 /* MSRC001_1035 IBS Op Data Register */
91 unsigned int ibs_op_data1_low;
92 unsigned int ibs_op_data1_high;
93 /* MSRC001_1036 IBS Op Data 2 Register */
94 unsigned int ibs_op_data2_low;
95 unsigned int ibs_op_data2_high;
96 /* MSRC001_1037 IBS Op Data 3 Register */
97 unsigned int ibs_op_data3_low;
98 unsigned int ibs_op_data3_high;
99 /* MSRC001_1038 IBS DC Linear Address Register (IbsDcLinAd) */
100 unsigned int ibs_dc_linear_low;
101 unsigned int ibs_dc_linear_high;
102 /* MSRC001_1039 IBS DC Physical Address Register (IbsDcPhysAd) */
103 unsigned int ibs_dc_phys_low;
104 unsigned int ibs_dc_phys_high;
105};
106
107/*
108 * unitialize the APIC for the IBS interrupts if needed on AMD Family10h+
109*/
110static void clear_ibs_nmi(void);
111
Barry Kasindorf56784f12008-07-22 21:08:55 +0200112static int ibs_allowed; /* AMD Family10h and later */
113
114struct op_ibs_config {
115 unsigned long op_enabled;
116 unsigned long fetch_enabled;
117 unsigned long max_cnt_fetch;
118 unsigned long max_cnt_op;
119 unsigned long rand_en;
120 unsigned long dispatched_ops;
121};
122
123static struct op_ibs_config ibs_config;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100124
Robert Richter852402c2008-07-22 21:09:06 +0200125#endif
126
Robert Richter6657fe42008-07-22 21:08:50 +0200127/* functions for op_amd_spec */
Robert Richterdfa15422008-07-22 21:08:49 +0200128
Robert Richter6657fe42008-07-22 21:08:50 +0200129static void op_amd_fill_in_addresses(struct op_msrs * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Don Zickuscb9c4482006-09-26 10:52:26 +0200131 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100133 for (i = 0; i < NUM_COUNTERS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +0200134 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
135 msrs->counters[i].addr = MSR_K7_PERFCTR0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200136 else
137 msrs->counters[i].addr = 0;
138 }
139
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100140 for (i = 0; i < NUM_CONTROLS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +0200141 if (reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i))
142 msrs->controls[i].addr = MSR_K7_EVNTSEL0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200143 else
144 msrs->controls[i].addr = 0;
145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100148
Robert Richter6657fe42008-07-22 21:08:50 +0200149static void op_amd_setup_ctrs(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 unsigned int low, high;
152 int i;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 /* clear all counters */
Robert Richter4c168ea2008-09-24 11:08:52 +0200155 for (i = 0 ; i < NUM_CONTROLS; ++i) {
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100156 if (unlikely(!CTRL_IS_RESERVED(msrs, i)))
Don Zickuscb9c4482006-09-26 10:52:26 +0200157 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 CTRL_READ(low, high, msrs, i);
Barry Kasindorfbd87f1f2007-12-18 18:05:58 +0100159 CTRL_CLEAR_LO(low);
160 CTRL_CLEAR_HI(high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 CTRL_WRITE(low, high, msrs, i);
162 }
Don Zickuscb9c4482006-09-26 10:52:26 +0200163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /* avoid a false detection of ctr overflows in NMI handler */
Robert Richter4c168ea2008-09-24 11:08:52 +0200165 for (i = 0; i < NUM_COUNTERS; ++i) {
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100166 if (unlikely(!CTR_IS_RESERVED(msrs, i)))
Don Zickuscb9c4482006-09-26 10:52:26 +0200167 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 CTR_WRITE(1, msrs, i);
169 }
170
171 /* enable active counters */
Robert Richter4c168ea2008-09-24 11:08:52 +0200172 for (i = 0; i < NUM_COUNTERS; ++i) {
173 if ((counter_config[i].enabled) && (CTR_IS_RESERVED(msrs, i))) {
174 reset_value[i] = counter_config[i].count;
175
176 CTR_WRITE(counter_config[i].count, msrs, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 CTRL_READ(low, high, msrs, i);
Barry Kasindorfbd87f1f2007-12-18 18:05:58 +0100179 CTRL_CLEAR_LO(low);
180 CTRL_CLEAR_HI(high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 CTRL_SET_ENABLE(low);
Robert Richter4c168ea2008-09-24 11:08:52 +0200182 CTRL_SET_USR(low, counter_config[i].user);
183 CTRL_SET_KERN(low, counter_config[i].kernel);
184 CTRL_SET_UM(low, counter_config[i].unit_mask);
185 CTRL_SET_EVENT_LOW(low, counter_config[i].event);
186 CTRL_SET_EVENT_HIGH(high, counter_config[i].event);
Barry Kasindorfbd87f1f2007-12-18 18:05:58 +0100187 CTRL_SET_HOST_ONLY(high, 0);
188 CTRL_SET_GUEST_ONLY(high, 0);
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 CTRL_WRITE(low, high, msrs, i);
Robert Richter4c168ea2008-09-24 11:08:52 +0200191 } else {
192 reset_value[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194 }
195}
196
Robert Richter852402c2008-07-22 21:09:06 +0200197#ifdef CONFIG_OPROFILE_IBS
198
Robert Richter7939d2b2008-07-22 21:08:56 +0200199static inline int
200op_amd_handle_ibs(struct pt_regs * const regs,
201 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 unsigned int low, high;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200204 struct ibs_fetch_sample ibs_fetch;
205 struct ibs_op_sample ibs_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Robert Richter7939d2b2008-07-22 21:08:56 +0200207 if (!ibs_allowed)
208 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Robert Richter7939d2b2008-07-22 21:08:56 +0200210 if (ibs_config.fetch_enabled) {
Barry Kasindorf56784f12008-07-22 21:08:55 +0200211 rdmsr(MSR_AMD64_IBSFETCHCTL, low, high);
Robert Richter87f0bac2008-07-22 21:09:03 +0200212 if (high & IBS_FETCH_HIGH_VALID_BIT) {
Barry Kasindorf56784f12008-07-22 21:08:55 +0200213 ibs_fetch.ibs_fetch_ctl_high = high;
214 ibs_fetch.ibs_fetch_ctl_low = low;
215 rdmsr(MSR_AMD64_IBSFETCHLINAD, low, high);
216 ibs_fetch.ibs_fetch_lin_addr_high = high;
217 ibs_fetch.ibs_fetch_lin_addr_low = low;
218 rdmsr(MSR_AMD64_IBSFETCHPHYSAD, low, high);
219 ibs_fetch.ibs_fetch_phys_addr_high = high;
220 ibs_fetch.ibs_fetch_phys_addr_low = low;
221
222 oprofile_add_ibs_sample(regs,
223 (unsigned int *)&ibs_fetch,
224 IBS_FETCH_BEGIN);
225
226 /*reenable the IRQ */
227 rdmsr(MSR_AMD64_IBSFETCHCTL, low, high);
Robert Richter87f0bac2008-07-22 21:09:03 +0200228 high &= ~IBS_FETCH_HIGH_VALID_BIT;
229 high |= IBS_FETCH_HIGH_ENABLE;
230 low &= IBS_FETCH_LOW_MAX_CNT_MASK;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200231 wrmsr(MSR_AMD64_IBSFETCHCTL, low, high);
232 }
233 }
234
Robert Richter7939d2b2008-07-22 21:08:56 +0200235 if (ibs_config.op_enabled) {
Barry Kasindorf56784f12008-07-22 21:08:55 +0200236 rdmsr(MSR_AMD64_IBSOPCTL, low, high);
Robert Richter87f0bac2008-07-22 21:09:03 +0200237 if (low & IBS_OP_LOW_VALID_BIT) {
Barry Kasindorf56784f12008-07-22 21:08:55 +0200238 rdmsr(MSR_AMD64_IBSOPRIP, low, high);
239 ibs_op.ibs_op_rip_low = low;
240 ibs_op.ibs_op_rip_high = high;
241 rdmsr(MSR_AMD64_IBSOPDATA, low, high);
242 ibs_op.ibs_op_data1_low = low;
243 ibs_op.ibs_op_data1_high = high;
244 rdmsr(MSR_AMD64_IBSOPDATA2, low, high);
245 ibs_op.ibs_op_data2_low = low;
246 ibs_op.ibs_op_data2_high = high;
247 rdmsr(MSR_AMD64_IBSOPDATA3, low, high);
248 ibs_op.ibs_op_data3_low = low;
249 ibs_op.ibs_op_data3_high = high;
250 rdmsr(MSR_AMD64_IBSDCLINAD, low, high);
251 ibs_op.ibs_dc_linear_low = low;
252 ibs_op.ibs_dc_linear_high = high;
253 rdmsr(MSR_AMD64_IBSDCPHYSAD, low, high);
254 ibs_op.ibs_dc_phys_low = low;
255 ibs_op.ibs_dc_phys_high = high;
256
257 /* reenable the IRQ */
258 oprofile_add_ibs_sample(regs,
259 (unsigned int *)&ibs_op,
260 IBS_OP_BEGIN);
261 rdmsr(MSR_AMD64_IBSOPCTL, low, high);
Robert Richter543a1572008-07-22 21:09:04 +0200262 high = 0;
Robert Richter87f0bac2008-07-22 21:09:03 +0200263 low &= ~IBS_OP_LOW_VALID_BIT;
264 low |= IBS_OP_LOW_ENABLE;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200265 wrmsr(MSR_AMD64_IBSOPCTL, low, high);
266 }
267 }
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return 1;
270}
271
Robert Richter852402c2008-07-22 21:09:06 +0200272#endif
273
Robert Richter7939d2b2008-07-22 21:08:56 +0200274static int op_amd_check_ctrs(struct pt_regs * const regs,
275 struct op_msrs const * const msrs)
276{
277 unsigned int low, high;
278 int i;
279
Robert Richter4c168ea2008-09-24 11:08:52 +0200280 for (i = 0 ; i < NUM_COUNTERS; ++i) {
281 if (!reset_value[i])
Robert Richter7939d2b2008-07-22 21:08:56 +0200282 continue;
283 CTR_READ(low, high, msrs, i);
284 if (CTR_OVERFLOWED(low)) {
Robert Richter4c168ea2008-09-24 11:08:52 +0200285 oprofile_add_sample(regs, i);
286 CTR_WRITE(reset_value[i], msrs, i);
Robert Richter7939d2b2008-07-22 21:08:56 +0200287 }
288 }
289
Robert Richter852402c2008-07-22 21:09:06 +0200290#ifdef CONFIG_OPROFILE_IBS
Robert Richter7939d2b2008-07-22 21:08:56 +0200291 op_amd_handle_ibs(regs, msrs);
Robert Richter852402c2008-07-22 21:09:06 +0200292#endif
Robert Richter7939d2b2008-07-22 21:08:56 +0200293
294 /* See op_model_ppro.c */
295 return 1;
296}
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100297
Robert Richter6657fe42008-07-22 21:08:50 +0200298static void op_amd_start(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 unsigned int low, high;
301 int i;
Robert Richter4c168ea2008-09-24 11:08:52 +0200302 for (i = 0 ; i < NUM_COUNTERS ; ++i) {
303 if (reset_value[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 CTRL_READ(low, high, msrs, i);
305 CTRL_SET_ACTIVE(low);
306 CTRL_WRITE(low, high, msrs, i);
307 }
308 }
Robert Richter852402c2008-07-22 21:09:06 +0200309
310#ifdef CONFIG_OPROFILE_IBS
Barry Kasindorf56784f12008-07-22 21:08:55 +0200311 if (ibs_allowed && ibs_config.fetch_enabled) {
312 low = (ibs_config.max_cnt_fetch >> 4) & 0xFFFF;
Suravee Suthikulpanit5f87dfb2008-10-15 08:15:51 -0500313 high = ((ibs_config.rand_en & 0x1) << 25) /* bit 57 */
314 + IBS_FETCH_HIGH_ENABLE;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200315 wrmsr(MSR_AMD64_IBSFETCHCTL, low, high);
316 }
317
318 if (ibs_allowed && ibs_config.op_enabled) {
Suravee Suthikulpanit5f87dfb2008-10-15 08:15:51 -0500319 low = ((ibs_config.max_cnt_op >> 4) & 0xFFFF)
320 + ((ibs_config.dispatched_ops & 0x1) << 19) /* bit 19 */
321 + IBS_OP_LOW_ENABLE;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200322 high = 0;
323 wrmsr(MSR_AMD64_IBSOPCTL, low, high);
324 }
Robert Richter852402c2008-07-22 21:09:06 +0200325#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
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{
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100331 unsigned int low, high;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 int i;
333
334 /* Subtle: stop on all counters to avoid race with
335 * setting our pm callback */
Robert Richter4c168ea2008-09-24 11:08:52 +0200336 for (i = 0 ; i < NUM_COUNTERS ; ++i) {
337 if (!reset_value[i])
Don Zickuscb9c4482006-09-26 10:52:26 +0200338 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 CTRL_READ(low, high, msrs, i);
340 CTRL_SET_INACTIVE(low);
341 CTRL_WRITE(low, high, msrs, i);
342 }
Barry Kasindorf56784f12008-07-22 21:08:55 +0200343
Robert Richter852402c2008-07-22 21:09:06 +0200344#ifdef CONFIG_OPROFILE_IBS
Barry Kasindorf56784f12008-07-22 21:08:55 +0200345 if (ibs_allowed && ibs_config.fetch_enabled) {
346 low = 0; /* clear max count and enable */
347 high = 0;
348 wrmsr(MSR_AMD64_IBSFETCHCTL, low, high);
349 }
350
351 if (ibs_allowed && ibs_config.op_enabled) {
352 low = 0; /* clear max count and enable */
353 high = 0;
354 wrmsr(MSR_AMD64_IBSOPCTL, low, high);
355 }
Robert Richter852402c2008-07-22 21:09:06 +0200356#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Robert Richter6657fe42008-07-22 21:08:50 +0200359static void op_amd_shutdown(struct op_msrs const * const msrs)
Don Zickuscb9c4482006-09-26 10:52:26 +0200360{
361 int i;
362
Robert Richter4c168ea2008-09-24 11:08:52 +0200363 for (i = 0 ; i < NUM_COUNTERS ; ++i) {
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100364 if (CTR_IS_RESERVED(msrs, i))
Don Zickuscb9c4482006-09-26 10:52:26 +0200365 release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
366 }
Robert Richter4c168ea2008-09-24 11:08:52 +0200367 for (i = 0 ; i < NUM_CONTROLS ; ++i) {
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100368 if (CTRL_IS_RESERVED(msrs, i))
Don Zickuscb9c4482006-09-26 10:52:26 +0200369 release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
370 }
371}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Robert Richter852402c2008-07-22 21:09:06 +0200373#ifndef CONFIG_OPROFILE_IBS
Robert Richtera4c408a2008-07-22 21:09:02 +0200374
375/* no IBS support */
376
Robert Richtera4c408a2008-07-22 21:09:02 +0200377static int op_amd_init(struct oprofile_operations *ops)
378{
379 return 0;
380}
381
382static void op_amd_exit(void) {}
383
384#else
385
Robert Richter7d77f2d2008-07-22 21:08:57 +0200386static u8 ibs_eilvt_off;
387
Barry Kasindorf56784f12008-07-22 21:08:55 +0200388static inline void apic_init_ibs_nmi_per_cpu(void *arg)
389{
Robert Richter7d77f2d2008-07-22 21:08:57 +0200390 ibs_eilvt_off = setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_NMI, 0);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200391}
392
393static inline void apic_clear_ibs_nmi_per_cpu(void *arg)
394{
395 setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_FIX, 1);
396}
397
Robert Richter7d77f2d2008-07-22 21:08:57 +0200398static int pfm_amd64_setup_eilvt(void)
399{
400#define IBSCTL_LVTOFFSETVAL (1 << 8)
401#define IBSCTL 0x1cc
402 struct pci_dev *cpu_cfg;
403 int nodes;
404 u32 value = 0;
405
406 /* per CPU setup */
Robert Richterebb535d2008-07-22 21:08:59 +0200407 on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 1);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200408
409 nodes = 0;
410 cpu_cfg = NULL;
411 do {
412 cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
413 PCI_DEVICE_ID_AMD_10H_NB_MISC,
414 cpu_cfg);
415 if (!cpu_cfg)
416 break;
417 ++nodes;
418 pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
419 | IBSCTL_LVTOFFSETVAL);
420 pci_read_config_dword(cpu_cfg, IBSCTL, &value);
421 if (value != (ibs_eilvt_off | IBSCTL_LVTOFFSETVAL)) {
422 printk(KERN_DEBUG "Failed to setup IBS LVT offset, "
423 "IBSCTL = 0x%08x", value);
424 return 1;
425 }
426 } while (1);
427
428 if (!nodes) {
429 printk(KERN_DEBUG "No CPU node configured for IBS");
430 return 1;
431 }
432
433#ifdef CONFIG_NUMA
434 /* Sanity check */
435 /* Works only for 64bit with proper numa implementation. */
436 if (nodes != num_possible_nodes()) {
437 printk(KERN_DEBUG "Failed to setup CPU node(s) for IBS, "
438 "found: %d, expected %d",
439 nodes, num_possible_nodes());
440 return 1;
441 }
442#endif
443 return 0;
444}
445
Barry Kasindorf56784f12008-07-22 21:08:55 +0200446/*
447 * initialize the APIC for the IBS interrupts
Robert Richter7d77f2d2008-07-22 21:08:57 +0200448 * if available (AMD Family10h rev B0 and later)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200449 */
450static void setup_ibs(void)
451{
Barry Kasindorf56784f12008-07-22 21:08:55 +0200452 ibs_allowed = boot_cpu_has(X86_FEATURE_IBS);
453
454 if (!ibs_allowed)
455 return;
456
Robert Richter852402c2008-07-22 21:09:06 +0200457 if (pfm_amd64_setup_eilvt()) {
Robert Richter7d77f2d2008-07-22 21:08:57 +0200458 ibs_allowed = 0;
Robert Richter852402c2008-07-22 21:09:06 +0200459 return;
460 }
461
462 printk(KERN_INFO "oprofile: AMD IBS detected\n");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200463}
464
465
466/*
467 * unitialize the APIC for the IBS interrupts if needed on AMD Family10h
468 * rev B0 and later */
469static void clear_ibs_nmi(void)
470{
471 if (ibs_allowed)
Robert Richterebb535d2008-07-22 21:08:59 +0200472 on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200473}
474
Robert Richter25ad29132008-09-05 17:12:36 +0200475static int (*create_arch_files)(struct super_block *sb, struct dentry *root);
Robert Richter270d3e12008-07-22 21:09:01 +0200476
Robert Richter25ad29132008-09-05 17:12:36 +0200477static int setup_ibs_files(struct super_block *sb, struct dentry *root)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200478{
Barry Kasindorf56784f12008-07-22 21:08:55 +0200479 struct dentry *dir;
Robert Richter270d3e12008-07-22 21:09:01 +0200480 int ret = 0;
481
482 /* architecture specific files */
483 if (create_arch_files)
484 ret = create_arch_files(sb, root);
485
486 if (ret)
487 return ret;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200488
489 if (!ibs_allowed)
Robert Richter270d3e12008-07-22 21:09:01 +0200490 return ret;
491
492 /* model specific files */
Barry Kasindorf56784f12008-07-22 21:08:55 +0200493
494 /* setup some reasonable defaults */
495 ibs_config.max_cnt_fetch = 250000;
496 ibs_config.fetch_enabled = 0;
497 ibs_config.max_cnt_op = 250000;
498 ibs_config.op_enabled = 0;
499 ibs_config.dispatched_ops = 1;
Robert Richter2d55a472008-07-18 17:56:05 +0200500
501 dir = oprofilefs_mkdir(sb, root, "ibs_fetch");
502 oprofilefs_create_ulong(sb, dir, "enable",
503 &ibs_config.fetch_enabled);
504 oprofilefs_create_ulong(sb, dir, "max_count",
505 &ibs_config.max_cnt_fetch);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200506 oprofilefs_create_ulong(sb, dir, "rand_enable",
507 &ibs_config.rand_en);
Robert Richter2d55a472008-07-18 17:56:05 +0200508
Robert Richterccd755c2008-07-29 16:57:10 +0200509 dir = oprofilefs_mkdir(sb, root, "ibs_op");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200510 oprofilefs_create_ulong(sb, dir, "enable",
Robert Richter2d55a472008-07-18 17:56:05 +0200511 &ibs_config.op_enabled);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200512 oprofilefs_create_ulong(sb, dir, "max_count",
Robert Richter2d55a472008-07-18 17:56:05 +0200513 &ibs_config.max_cnt_op);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200514 oprofilefs_create_ulong(sb, dir, "dispatched_ops",
Robert Richter2d55a472008-07-18 17:56:05 +0200515 &ibs_config.dispatched_ops);
Robert Richterfc2bd732008-07-22 21:09:00 +0200516
517 return 0;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200518}
519
Robert Richteradf5ec02008-07-22 21:08:48 +0200520static int op_amd_init(struct oprofile_operations *ops)
521{
Robert Richter270d3e12008-07-22 21:09:01 +0200522 setup_ibs();
523 create_arch_files = ops->create_files;
524 ops->create_files = setup_ibs_files;
Robert Richteradf5ec02008-07-22 21:08:48 +0200525 return 0;
526}
527
528static void op_amd_exit(void)
529{
Robert Richter270d3e12008-07-22 21:09:01 +0200530 clear_ibs_nmi();
Robert Richteradf5ec02008-07-22 21:08:48 +0200531}
532
Robert Richtera4c408a2008-07-22 21:09:02 +0200533#endif
534
Robert Richter6657fe42008-07-22 21:08:50 +0200535struct op_x86_model_spec const op_amd_spec = {
Robert Richterc92960f2008-09-05 17:12:36 +0200536 .init = op_amd_init,
537 .exit = op_amd_exit,
538 .num_counters = NUM_COUNTERS,
539 .num_controls = NUM_CONTROLS,
540 .fill_in_addresses = &op_amd_fill_in_addresses,
541 .setup_ctrs = &op_amd_setup_ctrs,
542 .check_ctrs = &op_amd_check_ctrs,
543 .start = &op_amd_start,
544 .stop = &op_amd_stop,
545 .shutdown = &op_amd_shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546};