blob: 2b9c68d868eda10cae63f9823a4c196754079c1a [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>
Robert Richter013cfc52010-01-28 18:05:26 +010025#include <asm/apic.h>
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "op_x86_model.h"
28#include "op_counter.h"
29
Robert Richter4c168ea2008-09-24 11:08:52 +020030#define NUM_COUNTERS 4
31#define NUM_CONTROLS 4
Jason Yeh4d4036e2009-07-08 13:49:38 +020032#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
33#define NUM_VIRT_COUNTERS 32
34#define NUM_VIRT_CONTROLS 32
35#else
36#define NUM_VIRT_COUNTERS NUM_COUNTERS
37#define NUM_VIRT_CONTROLS NUM_CONTROLS
38#endif
39
Robert Richter3370d352009-05-25 15:10:32 +020040#define OP_EVENT_MASK 0x0FFF
Robert Richter42399ad2009-05-25 17:59:06 +020041#define OP_CTR_OVERFLOW (1ULL<<31)
Robert Richter3370d352009-05-25 15:10:32 +020042
43#define MSR_AMD_EVENTSEL_RESERVED ((0xFFFFFCF0ULL<<32)|(1ULL<<21))
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Jason Yeh4d4036e2009-07-08 13:49:38 +020045static unsigned long reset_value[NUM_VIRT_COUNTERS];
Robert Richter852402c2008-07-22 21:09:06 +020046
Robert Richter87f0bac2008-07-22 21:09:03 +020047/* IbsFetchCtl bits/masks */
Robert Richterc572ae42009-06-03 20:10:39 +020048#define IBS_FETCH_RAND_EN (1ULL<<57)
49#define IBS_FETCH_VAL (1ULL<<49)
50#define IBS_FETCH_ENABLE (1ULL<<48)
51#define IBS_FETCH_CNT_MASK 0xFFFF0000ULL
Barry Kasindorf56784f12008-07-22 21:08:55 +020052
Robert Richter87f0bac2008-07-22 21:09:03 +020053/*IbsOpCtl bits */
Robert Richterc572ae42009-06-03 20:10:39 +020054#define IBS_OP_CNT_CTL (1ULL<<19)
55#define IBS_OP_VAL (1ULL<<18)
56#define IBS_OP_ENABLE (1ULL<<17)
Barry Kasindorf56784f12008-07-22 21:08:55 +020057
Robert Richterc572ae42009-06-03 20:10:39 +020058#define IBS_FETCH_SIZE 6
59#define IBS_OP_SIZE 12
Barry Kasindorf56784f12008-07-22 21:08:55 +020060
Robert Richterfc81be82008-12-18 00:28:27 +010061static int has_ibs; /* AMD Family10h and later */
Barry Kasindorf56784f12008-07-22 21:08:55 +020062
63struct op_ibs_config {
64 unsigned long op_enabled;
65 unsigned long fetch_enabled;
66 unsigned long max_cnt_fetch;
67 unsigned long max_cnt_op;
68 unsigned long rand_en;
69 unsigned long dispatched_ops;
70};
71
72static struct op_ibs_config ibs_config;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010073
Robert Richter7e7478c2009-07-16 13:09:53 +020074#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
75
76static void op_mux_fill_in_addresses(struct op_msrs * const msrs)
77{
78 int i;
79
80 for (i = 0; i < NUM_VIRT_COUNTERS; i++) {
Robert Richter61d149d2009-07-10 15:47:17 +020081 int hw_counter = op_x86_virt_to_phys(i);
Robert Richter7e7478c2009-07-16 13:09:53 +020082 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
83 msrs->multiplex[i].addr = MSR_K7_PERFCTR0 + hw_counter;
84 else
85 msrs->multiplex[i].addr = 0;
86 }
87}
88
89static void op_mux_switch_ctrl(struct op_x86_model_spec const *model,
90 struct op_msrs const * const msrs)
91{
92 u64 val;
93 int i;
94
95 /* enable active counters */
96 for (i = 0; i < NUM_COUNTERS; ++i) {
97 int virt = op_x86_phys_to_virt(i);
98 if (!counter_config[virt].enabled)
99 continue;
100 rdmsrl(msrs->controls[i].addr, val);
101 val &= model->reserved;
102 val |= op_x86_get_ctrl(model, &counter_config[virt]);
103 wrmsrl(msrs->controls[i].addr, val);
104 }
105}
106
107#else
108
109static inline void op_mux_fill_in_addresses(struct op_msrs * const msrs) { }
110
111#endif
112
Robert Richter6657fe42008-07-22 21:08:50 +0200113/* functions for op_amd_spec */
Robert Richterdfa15422008-07-22 21:08:49 +0200114
Robert Richter6657fe42008-07-22 21:08:50 +0200115static void op_amd_fill_in_addresses(struct op_msrs * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Don Zickuscb9c4482006-09-26 10:52:26 +0200117 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100119 for (i = 0; i < NUM_COUNTERS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +0200120 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
121 msrs->counters[i].addr = MSR_K7_PERFCTR0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200122 else
123 msrs->counters[i].addr = 0;
124 }
125
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100126 for (i = 0; i < NUM_CONTROLS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +0200127 if (reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i))
128 msrs->controls[i].addr = MSR_K7_EVNTSEL0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200129 else
130 msrs->controls[i].addr = 0;
131 }
Jason Yeh4d4036e2009-07-08 13:49:38 +0200132
Robert Richter7e7478c2009-07-16 13:09:53 +0200133 op_mux_fill_in_addresses(msrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
Robert Richteref8828d2009-05-25 19:31:44 +0200136static void op_amd_setup_ctrs(struct op_x86_model_spec const *model,
137 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Robert Richter3370d352009-05-25 15:10:32 +0200139 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int i;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100141
Jason Yeh4d4036e2009-07-08 13:49:38 +0200142 /* setup reset_value */
143 for (i = 0; i < NUM_VIRT_COUNTERS; ++i) {
Robert Richterc5500912009-07-16 13:11:16 +0200144 if (counter_config[i].enabled)
Jason Yeh4d4036e2009-07-08 13:49:38 +0200145 reset_value[i] = counter_config[i].count;
Robert Richterc5500912009-07-16 13:11:16 +0200146 else
Jason Yeh4d4036e2009-07-08 13:49:38 +0200147 reset_value[i] = 0;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200148 }
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 /* clear all counters */
Robert Richter6e63ea42009-07-07 19:25:39 +0200151 for (i = 0; i < NUM_CONTROLS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200152 if (unlikely(!msrs->controls[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +0200153 continue;
Robert Richter3370d352009-05-25 15:10:32 +0200154 rdmsrl(msrs->controls[i].addr, val);
155 val &= model->reserved;
156 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
Don Zickuscb9c4482006-09-26 10:52:26 +0200158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 /* avoid a false detection of ctr overflows in NMI handler */
Robert Richter4c168ea2008-09-24 11:08:52 +0200160 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200161 if (unlikely(!msrs->counters[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +0200162 continue;
Robert Richterbbc59862009-05-25 17:38:19 +0200163 wrmsrl(msrs->counters[i].addr, -1LL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165
166 /* enable active counters */
Robert Richter4c168ea2008-09-24 11:08:52 +0200167 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200168 int virt = op_x86_phys_to_virt(i);
169 if (!counter_config[virt].enabled)
170 continue;
171 if (!msrs->counters[i].addr)
172 continue;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200173
Robert Richterd8471ad2009-07-16 13:04:43 +0200174 /* setup counter registers */
175 wrmsrl(msrs->counters[i].addr, -(u64)reset_value[virt]);
176
177 /* setup control registers */
178 rdmsrl(msrs->controls[i].addr, val);
179 val &= model->reserved;
180 val |= op_x86_get_ctrl(model, &counter_config[virt]);
181 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183}
184
Andrew Morton4680e642009-06-23 12:36:08 -0700185static inline void
Robert Richter7939d2b2008-07-22 21:08:56 +0200186op_amd_handle_ibs(struct pt_regs * const regs,
187 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Robert Richterc572ae42009-06-03 20:10:39 +0200189 u64 val, ctl;
Robert Richter1acda872009-01-05 10:35:31 +0100190 struct op_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Robert Richterfc81be82008-12-18 00:28:27 +0100192 if (!has_ibs)
Andrew Morton4680e642009-06-23 12:36:08 -0700193 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Robert Richter7939d2b2008-07-22 21:08:56 +0200195 if (ibs_config.fetch_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200196 rdmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
197 if (ctl & IBS_FETCH_VAL) {
198 rdmsrl(MSR_AMD64_IBSFETCHLINAD, val);
199 oprofile_write_reserve(&entry, regs, val,
Robert Richter14f0ca82009-01-07 21:50:22 +0100200 IBS_FETCH_CODE, IBS_FETCH_SIZE);
Robert Richter51563a02009-06-03 20:54:56 +0200201 oprofile_add_data64(&entry, val);
202 oprofile_add_data64(&entry, ctl);
Robert Richterc572ae42009-06-03 20:10:39 +0200203 rdmsrl(MSR_AMD64_IBSFETCHPHYSAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200204 oprofile_add_data64(&entry, val);
Robert Richter14f0ca82009-01-07 21:50:22 +0100205 oprofile_write_commit(&entry);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200206
Robert Richterfd13f6c2008-10-19 21:00:09 +0200207 /* reenable the IRQ */
Robert Richterc572ae42009-06-03 20:10:39 +0200208 ctl &= ~(IBS_FETCH_VAL | IBS_FETCH_CNT_MASK);
209 ctl |= IBS_FETCH_ENABLE;
210 wrmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200211 }
212 }
213
Robert Richter7939d2b2008-07-22 21:08:56 +0200214 if (ibs_config.op_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200215 rdmsrl(MSR_AMD64_IBSOPCTL, ctl);
216 if (ctl & IBS_OP_VAL) {
217 rdmsrl(MSR_AMD64_IBSOPRIP, val);
218 oprofile_write_reserve(&entry, regs, val,
Robert Richter14f0ca82009-01-07 21:50:22 +0100219 IBS_OP_CODE, IBS_OP_SIZE);
Robert Richter51563a02009-06-03 20:54:56 +0200220 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200221 rdmsrl(MSR_AMD64_IBSOPDATA, val);
Robert Richter51563a02009-06-03 20:54:56 +0200222 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200223 rdmsrl(MSR_AMD64_IBSOPDATA2, val);
Robert Richter51563a02009-06-03 20:54:56 +0200224 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200225 rdmsrl(MSR_AMD64_IBSOPDATA3, 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_IBSDCLINAD, 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_IBSDCPHYSAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200230 oprofile_add_data64(&entry, val);
Robert Richter14f0ca82009-01-07 21:50:22 +0100231 oprofile_write_commit(&entry);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200232
233 /* reenable the IRQ */
Robert Richterc572ae42009-06-03 20:10:39 +0200234 ctl &= ~IBS_OP_VAL & 0xFFFFFFFF;
235 ctl |= IBS_OP_ENABLE;
236 wrmsrl(MSR_AMD64_IBSOPCTL, ctl);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200237 }
238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Robert Richter90637592009-03-10 19:15:57 +0100241static inline void op_amd_start_ibs(void)
242{
Robert Richterc572ae42009-06-03 20:10:39 +0200243 u64 val;
Robert Richter90637592009-03-10 19:15:57 +0100244 if (has_ibs && ibs_config.fetch_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200245 val = (ibs_config.max_cnt_fetch >> 4) & 0xFFFF;
246 val |= ibs_config.rand_en ? IBS_FETCH_RAND_EN : 0;
247 val |= IBS_FETCH_ENABLE;
248 wrmsrl(MSR_AMD64_IBSFETCHCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100249 }
250
251 if (has_ibs && ibs_config.op_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200252 val = (ibs_config.max_cnt_op >> 4) & 0xFFFF;
253 val |= ibs_config.dispatched_ops ? IBS_OP_CNT_CTL : 0;
254 val |= IBS_OP_ENABLE;
255 wrmsrl(MSR_AMD64_IBSOPCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100256 }
257}
258
259static void op_amd_stop_ibs(void)
260{
Robert Richterc572ae42009-06-03 20:10:39 +0200261 if (has_ibs && ibs_config.fetch_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100262 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200263 wrmsrl(MSR_AMD64_IBSFETCHCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100264
Robert Richterc572ae42009-06-03 20:10:39 +0200265 if (has_ibs && ibs_config.op_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100266 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200267 wrmsrl(MSR_AMD64_IBSOPCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100268}
269
Robert Richter7939d2b2008-07-22 21:08:56 +0200270static int op_amd_check_ctrs(struct pt_regs * const regs,
271 struct op_msrs const * const msrs)
272{
Robert Richter42399ad2009-05-25 17:59:06 +0200273 u64 val;
Robert Richter7939d2b2008-07-22 21:08:56 +0200274 int i;
275
Robert Richter6e63ea42009-07-07 19:25:39 +0200276 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200277 int virt = op_x86_phys_to_virt(i);
278 if (!reset_value[virt])
Robert Richter7939d2b2008-07-22 21:08:56 +0200279 continue;
Robert Richter42399ad2009-05-25 17:59:06 +0200280 rdmsrl(msrs->counters[i].addr, val);
281 /* bit is clear if overflowed: */
282 if (val & OP_CTR_OVERFLOW)
283 continue;
Robert Richterd8471ad2009-07-16 13:04:43 +0200284 oprofile_add_sample(regs, virt);
285 wrmsrl(msrs->counters[i].addr, -(u64)reset_value[virt]);
Robert Richter7939d2b2008-07-22 21:08:56 +0200286 }
287
288 op_amd_handle_ibs(regs, msrs);
289
290 /* See op_model_ppro.c */
291 return 1;
292}
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100293
Robert Richter6657fe42008-07-22 21:08:50 +0200294static void op_amd_start(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Robert Richterdea37662009-05-25 18:11:52 +0200296 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 int i;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200298
Robert Richter6e63ea42009-07-07 19:25:39 +0200299 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200300 if (!reset_value[op_x86_phys_to_virt(i)])
301 continue;
302 rdmsrl(msrs->controls[i].addr, val);
303 val |= ARCH_PERFMON_EVENTSEL0_ENABLE;
304 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
Robert Richter852402c2008-07-22 21:09:06 +0200306
Robert Richter90637592009-03-10 19:15:57 +0100307 op_amd_start_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Robert Richter6657fe42008-07-22 21:08:50 +0200310static void op_amd_stop(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Robert Richterdea37662009-05-25 18:11:52 +0200312 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 int i;
314
Robert Richterfd13f6c2008-10-19 21:00:09 +0200315 /*
316 * Subtle: stop on all counters to avoid race with setting our
317 * pm callback
318 */
Robert Richter6e63ea42009-07-07 19:25:39 +0200319 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200320 if (!reset_value[op_x86_phys_to_virt(i)])
Don Zickuscb9c4482006-09-26 10:52:26 +0200321 continue;
Robert Richterdea37662009-05-25 18:11:52 +0200322 rdmsrl(msrs->controls[i].addr, val);
323 val &= ~ARCH_PERFMON_EVENTSEL0_ENABLE;
324 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
Barry Kasindorf56784f12008-07-22 21:08:55 +0200326
Robert Richter90637592009-03-10 19:15:57 +0100327 op_amd_stop_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Robert Richter6657fe42008-07-22 21:08:50 +0200330static void op_amd_shutdown(struct op_msrs const * const msrs)
Don Zickuscb9c4482006-09-26 10:52:26 +0200331{
332 int i;
333
Robert Richter6e63ea42009-07-07 19:25:39 +0200334 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200335 if (msrs->counters[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200336 release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
337 }
Robert Richter5e766e32009-07-08 14:54:17 +0200338 for (i = 0; i < NUM_CONTROLS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200339 if (msrs->controls[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200340 release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
341 }
342}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Robert Richter7d77f2d2008-07-22 21:08:57 +0200344static u8 ibs_eilvt_off;
345
Barry Kasindorf56784f12008-07-22 21:08:55 +0200346static inline void apic_init_ibs_nmi_per_cpu(void *arg)
347{
Robert Richter7d77f2d2008-07-22 21:08:57 +0200348 ibs_eilvt_off = setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_NMI, 0);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200349}
350
351static inline void apic_clear_ibs_nmi_per_cpu(void *arg)
352{
353 setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_FIX, 1);
354}
355
Robert Richterfe615cb2008-11-24 14:58:03 +0100356static int init_ibs_nmi(void)
Robert Richter7d77f2d2008-07-22 21:08:57 +0200357{
358#define IBSCTL_LVTOFFSETVAL (1 << 8)
359#define IBSCTL 0x1cc
360 struct pci_dev *cpu_cfg;
361 int nodes;
362 u32 value = 0;
363
364 /* per CPU setup */
Robert Richterebb535d2008-07-22 21:08:59 +0200365 on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 1);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200366
367 nodes = 0;
368 cpu_cfg = NULL;
369 do {
370 cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
371 PCI_DEVICE_ID_AMD_10H_NB_MISC,
372 cpu_cfg);
373 if (!cpu_cfg)
374 break;
375 ++nodes;
376 pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
377 | IBSCTL_LVTOFFSETVAL);
378 pci_read_config_dword(cpu_cfg, IBSCTL, &value);
379 if (value != (ibs_eilvt_off | IBSCTL_LVTOFFSETVAL)) {
Robert Richter83bd9242008-12-15 15:09:50 +0100380 pci_dev_put(cpu_cfg);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200381 printk(KERN_DEBUG "Failed to setup IBS LVT offset, "
382 "IBSCTL = 0x%08x", value);
383 return 1;
384 }
385 } while (1);
386
387 if (!nodes) {
388 printk(KERN_DEBUG "No CPU node configured for IBS");
389 return 1;
390 }
391
392#ifdef CONFIG_NUMA
393 /* Sanity check */
394 /* Works only for 64bit with proper numa implementation. */
395 if (nodes != num_possible_nodes()) {
396 printk(KERN_DEBUG "Failed to setup CPU node(s) for IBS, "
397 "found: %d, expected %d",
398 nodes, num_possible_nodes());
399 return 1;
400 }
401#endif
402 return 0;
403}
404
Robert Richterfe615cb2008-11-24 14:58:03 +0100405/* uninitialize the APIC for the IBS interrupts if needed */
406static void clear_ibs_nmi(void)
407{
Robert Richterfc81be82008-12-18 00:28:27 +0100408 if (has_ibs)
Robert Richterfe615cb2008-11-24 14:58:03 +0100409 on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1);
410}
411
Robert Richterfd13f6c2008-10-19 21:00:09 +0200412/* initialize the APIC for the IBS interrupts if available */
Robert Richterfe615cb2008-11-24 14:58:03 +0100413static void ibs_init(void)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200414{
Robert Richterfc81be82008-12-18 00:28:27 +0100415 has_ibs = boot_cpu_has(X86_FEATURE_IBS);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200416
Robert Richterfc81be82008-12-18 00:28:27 +0100417 if (!has_ibs)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200418 return;
419
Robert Richterfe615cb2008-11-24 14:58:03 +0100420 if (init_ibs_nmi()) {
Robert Richterfc81be82008-12-18 00:28:27 +0100421 has_ibs = 0;
Robert Richter852402c2008-07-22 21:09:06 +0200422 return;
423 }
424
425 printk(KERN_INFO "oprofile: AMD IBS detected\n");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200426}
427
Robert Richterfe615cb2008-11-24 14:58:03 +0100428static void ibs_exit(void)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200429{
Robert Richterfc81be82008-12-18 00:28:27 +0100430 if (!has_ibs)
Robert Richterfe615cb2008-11-24 14:58:03 +0100431 return;
432
433 clear_ibs_nmi();
Barry Kasindorf56784f12008-07-22 21:08:55 +0200434}
435
Robert Richter25ad2912008-09-05 17:12:36 +0200436static int (*create_arch_files)(struct super_block *sb, struct dentry *root);
Robert Richter270d3e12008-07-22 21:09:01 +0200437
Robert Richter25ad2912008-09-05 17:12:36 +0200438static int setup_ibs_files(struct super_block *sb, struct dentry *root)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200439{
Barry Kasindorf56784f12008-07-22 21:08:55 +0200440 struct dentry *dir;
Robert Richter270d3e12008-07-22 21:09:01 +0200441 int ret = 0;
442
443 /* architecture specific files */
444 if (create_arch_files)
445 ret = create_arch_files(sb, root);
446
447 if (ret)
448 return ret;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200449
Robert Richterfc81be82008-12-18 00:28:27 +0100450 if (!has_ibs)
Robert Richter270d3e12008-07-22 21:09:01 +0200451 return ret;
452
453 /* model specific files */
Barry Kasindorf56784f12008-07-22 21:08:55 +0200454
455 /* setup some reasonable defaults */
456 ibs_config.max_cnt_fetch = 250000;
457 ibs_config.fetch_enabled = 0;
458 ibs_config.max_cnt_op = 250000;
459 ibs_config.op_enabled = 0;
460 ibs_config.dispatched_ops = 1;
Robert Richter2d55a472008-07-18 17:56:05 +0200461
462 dir = oprofilefs_mkdir(sb, root, "ibs_fetch");
463 oprofilefs_create_ulong(sb, dir, "enable",
464 &ibs_config.fetch_enabled);
465 oprofilefs_create_ulong(sb, dir, "max_count",
466 &ibs_config.max_cnt_fetch);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200467 oprofilefs_create_ulong(sb, dir, "rand_enable",
468 &ibs_config.rand_en);
Robert Richter2d55a472008-07-18 17:56:05 +0200469
Robert Richterccd755c2008-07-29 16:57:10 +0200470 dir = oprofilefs_mkdir(sb, root, "ibs_op");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200471 oprofilefs_create_ulong(sb, dir, "enable",
Robert Richter2d55a472008-07-18 17:56:05 +0200472 &ibs_config.op_enabled);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200473 oprofilefs_create_ulong(sb, dir, "max_count",
Robert Richter2d55a472008-07-18 17:56:05 +0200474 &ibs_config.max_cnt_op);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200475 oprofilefs_create_ulong(sb, dir, "dispatched_ops",
Robert Richter2d55a472008-07-18 17:56:05 +0200476 &ibs_config.dispatched_ops);
Robert Richterfc2bd732008-07-22 21:09:00 +0200477
478 return 0;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200479}
480
Robert Richteradf5ec02008-07-22 21:08:48 +0200481static int op_amd_init(struct oprofile_operations *ops)
482{
Robert Richterfe615cb2008-11-24 14:58:03 +0100483 ibs_init();
Robert Richter270d3e12008-07-22 21:09:01 +0200484 create_arch_files = ops->create_files;
485 ops->create_files = setup_ibs_files;
Robert Richteradf5ec02008-07-22 21:08:48 +0200486 return 0;
487}
488
489static void op_amd_exit(void)
490{
Robert Richterfe615cb2008-11-24 14:58:03 +0100491 ibs_exit();
Robert Richteradf5ec02008-07-22 21:08:48 +0200492}
493
Robert Richter259a83a2009-07-09 15:12:35 +0200494struct op_x86_model_spec op_amd_spec = {
Robert Richterc92960f2008-09-05 17:12:36 +0200495 .num_counters = NUM_COUNTERS,
496 .num_controls = NUM_CONTROLS,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200497 .num_virt_counters = NUM_VIRT_COUNTERS,
Robert Richter3370d352009-05-25 15:10:32 +0200498 .reserved = MSR_AMD_EVENTSEL_RESERVED,
499 .event_mask = OP_EVENT_MASK,
500 .init = op_amd_init,
501 .exit = op_amd_exit,
Robert Richterc92960f2008-09-05 17:12:36 +0200502 .fill_in_addresses = &op_amd_fill_in_addresses,
503 .setup_ctrs = &op_amd_setup_ctrs,
504 .check_ctrs = &op_amd_check_ctrs,
505 .start = &op_amd_start,
506 .stop = &op_amd_stop,
Robert Richter3370d352009-05-25 15:10:32 +0200507 .shutdown = &op_amd_shutdown,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200508#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
Robert Richter7e7478c2009-07-16 13:09:53 +0200509 .switch_ctrl = &op_mux_switch_ctrl,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200510#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511};