blob: 67f830d12e0e51e1eb2c59945f6289c6d2633a8d [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 Richter6657fe42008-07-22 21:08:50 +020077/* functions for op_amd_spec */
Robert Richterdfa15422008-07-22 21:08:49 +020078
Robert Richter6657fe42008-07-22 21:08:50 +020079static void op_amd_fill_in_addresses(struct op_msrs * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Don Zickuscb9c4482006-09-26 10:52:26 +020081 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010083 for (i = 0; i < NUM_COUNTERS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +020084 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
85 msrs->counters[i].addr = MSR_K7_PERFCTR0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +020086 else
87 msrs->counters[i].addr = 0;
88 }
89
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010090 for (i = 0; i < NUM_CONTROLS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +020091 if (reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i))
92 msrs->controls[i].addr = MSR_K7_EVNTSEL0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +020093 else
94 msrs->controls[i].addr = 0;
95 }
Jason Yeh4d4036e2009-07-08 13:49:38 +020096
97#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
98 for (i = 0; i < NUM_VIRT_COUNTERS; i++) {
Robert Richter5e766e32009-07-08 14:54:17 +020099 int hw_counter = i % NUM_COUNTERS;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200100 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
101 msrs->multiplex[i].addr = MSR_K7_PERFCTR0 + hw_counter;
102 else
103 msrs->multiplex[i].addr = 0;
104 }
105#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Robert Richteref8828d2009-05-25 19:31:44 +0200108static void op_amd_setup_ctrs(struct op_x86_model_spec const *model,
109 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Robert Richter3370d352009-05-25 15:10:32 +0200111 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 int i;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100113
Jason Yeh4d4036e2009-07-08 13:49:38 +0200114 /* setup reset_value */
115 for (i = 0; i < NUM_VIRT_COUNTERS; ++i) {
116 if (counter_config[i].enabled) {
117 reset_value[i] = counter_config[i].count;
118 } else {
119 reset_value[i] = 0;
120 }
121 }
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /* clear all counters */
Robert Richter6e63ea42009-07-07 19:25:39 +0200124 for (i = 0; i < NUM_CONTROLS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200125 if (unlikely(!msrs->controls[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +0200126 continue;
Robert Richter3370d352009-05-25 15:10:32 +0200127 rdmsrl(msrs->controls[i].addr, val);
128 val &= model->reserved;
129 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
Don Zickuscb9c4482006-09-26 10:52:26 +0200131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /* avoid a false detection of ctr overflows in NMI handler */
Robert Richter4c168ea2008-09-24 11:08:52 +0200133 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200134 if (unlikely(!msrs->counters[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +0200135 continue;
Robert Richterbbc59862009-05-25 17:38:19 +0200136 wrmsrl(msrs->counters[i].addr, -1LL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
138
139 /* enable active counters */
Robert Richter4c168ea2008-09-24 11:08:52 +0200140 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200141 int virt = op_x86_phys_to_virt(i);
142 if (!counter_config[virt].enabled)
143 continue;
144 if (!msrs->counters[i].addr)
145 continue;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200146
Robert Richterd8471ad2009-07-16 13:04:43 +0200147 /* setup counter registers */
148 wrmsrl(msrs->counters[i].addr, -(u64)reset_value[virt]);
149
150 /* setup control registers */
151 rdmsrl(msrs->controls[i].addr, val);
152 val &= model->reserved;
153 val |= op_x86_get_ctrl(model, &counter_config[virt]);
154 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156}
157
Jason Yeh4d4036e2009-07-08 13:49:38 +0200158
159#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
160
161static void op_amd_switch_ctrl(struct op_x86_model_spec const *model,
162 struct op_msrs const * const msrs)
163{
164 u64 val;
165 int i;
166
167 /* enable active counters */
168 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200169 int virt = op_x86_phys_to_virt(i);
170 if (!counter_config[virt].enabled)
171 continue;
172 rdmsrl(msrs->controls[i].addr, val);
173 val &= model->reserved;
174 val |= op_x86_get_ctrl(model, &counter_config[virt]);
175 wrmsrl(msrs->controls[i].addr, val);
Jason Yeh4d4036e2009-07-08 13:49:38 +0200176 }
177}
178
179#endif
180
181
Robert Richter852402c2008-07-22 21:09:06 +0200182#ifdef CONFIG_OPROFILE_IBS
183
Robert Richter7939d2b2008-07-22 21:08:56 +0200184static inline int
185op_amd_handle_ibs(struct pt_regs * const regs,
186 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Robert Richterc572ae42009-06-03 20:10:39 +0200188 u64 val, ctl;
Robert Richter1acda872009-01-05 10:35:31 +0100189 struct op_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Robert Richterfc81be82008-12-18 00:28:27 +0100191 if (!has_ibs)
Jaswinder Singh Rajput21e70872009-06-18 17:09:27 +0530192 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Robert Richter7939d2b2008-07-22 21:08:56 +0200194 if (ibs_config.fetch_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200195 rdmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
196 if (ctl & IBS_FETCH_VAL) {
197 rdmsrl(MSR_AMD64_IBSFETCHLINAD, val);
198 oprofile_write_reserve(&entry, regs, val,
Robert Richter14f0ca82009-01-07 21:50:22 +0100199 IBS_FETCH_CODE, IBS_FETCH_SIZE);
Robert Richter51563a02009-06-03 20:54:56 +0200200 oprofile_add_data64(&entry, val);
201 oprofile_add_data64(&entry, ctl);
Robert Richterc572ae42009-06-03 20:10:39 +0200202 rdmsrl(MSR_AMD64_IBSFETCHPHYSAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200203 oprofile_add_data64(&entry, val);
Robert Richter14f0ca82009-01-07 21:50:22 +0100204 oprofile_write_commit(&entry);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200205
Robert Richterfd13f6c2008-10-19 21:00:09 +0200206 /* reenable the IRQ */
Robert Richterc572ae42009-06-03 20:10:39 +0200207 ctl &= ~(IBS_FETCH_VAL | IBS_FETCH_CNT_MASK);
208 ctl |= IBS_FETCH_ENABLE;
209 wrmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200210 }
211 }
212
Robert Richter7939d2b2008-07-22 21:08:56 +0200213 if (ibs_config.op_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200214 rdmsrl(MSR_AMD64_IBSOPCTL, ctl);
215 if (ctl & IBS_OP_VAL) {
216 rdmsrl(MSR_AMD64_IBSOPRIP, val);
217 oprofile_write_reserve(&entry, regs, val,
Robert Richter14f0ca82009-01-07 21:50:22 +0100218 IBS_OP_CODE, IBS_OP_SIZE);
Robert Richter51563a02009-06-03 20:54:56 +0200219 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200220 rdmsrl(MSR_AMD64_IBSOPDATA, val);
Robert Richter51563a02009-06-03 20:54:56 +0200221 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200222 rdmsrl(MSR_AMD64_IBSOPDATA2, val);
Robert Richter51563a02009-06-03 20:54:56 +0200223 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200224 rdmsrl(MSR_AMD64_IBSOPDATA3, val);
Robert Richter51563a02009-06-03 20:54:56 +0200225 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200226 rdmsrl(MSR_AMD64_IBSDCLINAD, 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_IBSDCPHYSAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200229 oprofile_add_data64(&entry, val);
Robert Richter14f0ca82009-01-07 21:50:22 +0100230 oprofile_write_commit(&entry);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200231
232 /* reenable the IRQ */
Robert Richterc572ae42009-06-03 20:10:39 +0200233 ctl &= ~IBS_OP_VAL & 0xFFFFFFFF;
234 ctl |= IBS_OP_ENABLE;
235 wrmsrl(MSR_AMD64_IBSOPCTL, ctl);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200236 }
237 }
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return 1;
240}
241
Robert Richter90637592009-03-10 19:15:57 +0100242static inline void op_amd_start_ibs(void)
243{
Robert Richterc572ae42009-06-03 20:10:39 +0200244 u64 val;
Robert Richter90637592009-03-10 19:15:57 +0100245 if (has_ibs && ibs_config.fetch_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200246 val = (ibs_config.max_cnt_fetch >> 4) & 0xFFFF;
247 val |= ibs_config.rand_en ? IBS_FETCH_RAND_EN : 0;
248 val |= IBS_FETCH_ENABLE;
249 wrmsrl(MSR_AMD64_IBSFETCHCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100250 }
251
252 if (has_ibs && ibs_config.op_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200253 val = (ibs_config.max_cnt_op >> 4) & 0xFFFF;
254 val |= ibs_config.dispatched_ops ? IBS_OP_CNT_CTL : 0;
255 val |= IBS_OP_ENABLE;
256 wrmsrl(MSR_AMD64_IBSOPCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100257 }
258}
259
260static void op_amd_stop_ibs(void)
261{
Robert Richterc572ae42009-06-03 20:10:39 +0200262 if (has_ibs && ibs_config.fetch_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100263 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200264 wrmsrl(MSR_AMD64_IBSFETCHCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100265
Robert Richterc572ae42009-06-03 20:10:39 +0200266 if (has_ibs && ibs_config.op_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100267 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200268 wrmsrl(MSR_AMD64_IBSOPCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100269}
270
271#else
272
273static inline int op_amd_handle_ibs(struct pt_regs * const regs,
Jaswinder Singh Rajput21e70872009-06-18 17:09:27 +0530274 struct op_msrs const * const msrs)
275{
276 return 0;
277}
Robert Richter90637592009-03-10 19:15:57 +0100278static inline void op_amd_start_ibs(void) { }
279static inline void op_amd_stop_ibs(void) { }
280
Robert Richter852402c2008-07-22 21:09:06 +0200281#endif
282
Robert Richter7939d2b2008-07-22 21:08:56 +0200283static int op_amd_check_ctrs(struct pt_regs * const regs,
284 struct op_msrs const * const msrs)
285{
Robert Richter42399ad2009-05-25 17:59:06 +0200286 u64 val;
Robert Richter7939d2b2008-07-22 21:08:56 +0200287 int i;
288
Robert Richter6e63ea42009-07-07 19:25:39 +0200289 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200290 int virt = op_x86_phys_to_virt(i);
291 if (!reset_value[virt])
Robert Richter7939d2b2008-07-22 21:08:56 +0200292 continue;
Robert Richter42399ad2009-05-25 17:59:06 +0200293 rdmsrl(msrs->counters[i].addr, val);
294 /* bit is clear if overflowed: */
295 if (val & OP_CTR_OVERFLOW)
296 continue;
Robert Richterd8471ad2009-07-16 13:04:43 +0200297 oprofile_add_sample(regs, virt);
298 wrmsrl(msrs->counters[i].addr, -(u64)reset_value[virt]);
Robert Richter7939d2b2008-07-22 21:08:56 +0200299 }
300
301 op_amd_handle_ibs(regs, msrs);
302
303 /* See op_model_ppro.c */
304 return 1;
305}
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100306
Robert Richter6657fe42008-07-22 21:08:50 +0200307static void op_amd_start(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Robert Richterdea37662009-05-25 18:11:52 +0200309 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 int i;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200311
Robert Richter6e63ea42009-07-07 19:25:39 +0200312 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200313 if (!reset_value[op_x86_phys_to_virt(i)])
314 continue;
315 rdmsrl(msrs->controls[i].addr, val);
316 val |= ARCH_PERFMON_EVENTSEL0_ENABLE;
317 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Robert Richter852402c2008-07-22 21:09:06 +0200319
Robert Richter90637592009-03-10 19:15:57 +0100320 op_amd_start_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Robert Richter6657fe42008-07-22 21:08:50 +0200323static void op_amd_stop(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Robert Richterdea37662009-05-25 18:11:52 +0200325 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 int i;
327
Robert Richterfd13f6c2008-10-19 21:00:09 +0200328 /*
329 * Subtle: stop on all counters to avoid race with setting our
330 * pm callback
331 */
Robert Richter6e63ea42009-07-07 19:25:39 +0200332 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200333 if (!reset_value[op_x86_phys_to_virt(i)])
Don Zickuscb9c4482006-09-26 10:52:26 +0200334 continue;
Robert Richterdea37662009-05-25 18:11:52 +0200335 rdmsrl(msrs->controls[i].addr, val);
336 val &= ~ARCH_PERFMON_EVENTSEL0_ENABLE;
337 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
Barry Kasindorf56784f12008-07-22 21:08:55 +0200339
Robert Richter90637592009-03-10 19:15:57 +0100340 op_amd_stop_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Robert Richter6657fe42008-07-22 21:08:50 +0200343static void op_amd_shutdown(struct op_msrs const * const msrs)
Don Zickuscb9c4482006-09-26 10:52:26 +0200344{
345 int i;
346
Robert Richter6e63ea42009-07-07 19:25:39 +0200347 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200348 if (msrs->counters[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200349 release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
350 }
Robert Richter5e766e32009-07-08 14:54:17 +0200351 for (i = 0; i < NUM_CONTROLS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200352 if (msrs->controls[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200353 release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
354 }
355}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Robert Richter9fa68122008-11-24 14:21:03 +0100357#ifdef CONFIG_OPROFILE_IBS
Robert Richtera4c408a2008-07-22 21:09:02 +0200358
Robert Richter7d77f2d2008-07-22 21:08:57 +0200359static u8 ibs_eilvt_off;
360
Barry Kasindorf56784f12008-07-22 21:08:55 +0200361static inline void apic_init_ibs_nmi_per_cpu(void *arg)
362{
Robert Richter7d77f2d2008-07-22 21:08:57 +0200363 ibs_eilvt_off = setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_NMI, 0);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200364}
365
366static inline void apic_clear_ibs_nmi_per_cpu(void *arg)
367{
368 setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_FIX, 1);
369}
370
Robert Richterfe615cb2008-11-24 14:58:03 +0100371static int init_ibs_nmi(void)
Robert Richter7d77f2d2008-07-22 21:08:57 +0200372{
373#define IBSCTL_LVTOFFSETVAL (1 << 8)
374#define IBSCTL 0x1cc
375 struct pci_dev *cpu_cfg;
376 int nodes;
377 u32 value = 0;
378
379 /* per CPU setup */
Robert Richterebb535d2008-07-22 21:08:59 +0200380 on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 1);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200381
382 nodes = 0;
383 cpu_cfg = NULL;
384 do {
385 cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
386 PCI_DEVICE_ID_AMD_10H_NB_MISC,
387 cpu_cfg);
388 if (!cpu_cfg)
389 break;
390 ++nodes;
391 pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
392 | IBSCTL_LVTOFFSETVAL);
393 pci_read_config_dword(cpu_cfg, IBSCTL, &value);
394 if (value != (ibs_eilvt_off | IBSCTL_LVTOFFSETVAL)) {
Robert Richter83bd9242008-12-15 15:09:50 +0100395 pci_dev_put(cpu_cfg);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200396 printk(KERN_DEBUG "Failed to setup IBS LVT offset, "
397 "IBSCTL = 0x%08x", value);
398 return 1;
399 }
400 } while (1);
401
402 if (!nodes) {
403 printk(KERN_DEBUG "No CPU node configured for IBS");
404 return 1;
405 }
406
407#ifdef CONFIG_NUMA
408 /* Sanity check */
409 /* Works only for 64bit with proper numa implementation. */
410 if (nodes != num_possible_nodes()) {
411 printk(KERN_DEBUG "Failed to setup CPU node(s) for IBS, "
412 "found: %d, expected %d",
413 nodes, num_possible_nodes());
414 return 1;
415 }
416#endif
417 return 0;
418}
419
Robert Richterfe615cb2008-11-24 14:58:03 +0100420/* uninitialize the APIC for the IBS interrupts if needed */
421static void clear_ibs_nmi(void)
422{
Robert Richterfc81be82008-12-18 00:28:27 +0100423 if (has_ibs)
Robert Richterfe615cb2008-11-24 14:58:03 +0100424 on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1);
425}
426
Robert Richterfd13f6c2008-10-19 21:00:09 +0200427/* initialize the APIC for the IBS interrupts if available */
Robert Richterfe615cb2008-11-24 14:58:03 +0100428static void ibs_init(void)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200429{
Robert Richterfc81be82008-12-18 00:28:27 +0100430 has_ibs = boot_cpu_has(X86_FEATURE_IBS);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200431
Robert Richterfc81be82008-12-18 00:28:27 +0100432 if (!has_ibs)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200433 return;
434
Robert Richterfe615cb2008-11-24 14:58:03 +0100435 if (init_ibs_nmi()) {
Robert Richterfc81be82008-12-18 00:28:27 +0100436 has_ibs = 0;
Robert Richter852402c2008-07-22 21:09:06 +0200437 return;
438 }
439
440 printk(KERN_INFO "oprofile: AMD IBS detected\n");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200441}
442
Robert Richterfe615cb2008-11-24 14:58:03 +0100443static void ibs_exit(void)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200444{
Robert Richterfc81be82008-12-18 00:28:27 +0100445 if (!has_ibs)
Robert Richterfe615cb2008-11-24 14:58:03 +0100446 return;
447
448 clear_ibs_nmi();
Barry Kasindorf56784f12008-07-22 21:08:55 +0200449}
450
Robert Richter25ad29132008-09-05 17:12:36 +0200451static int (*create_arch_files)(struct super_block *sb, struct dentry *root);
Robert Richter270d3e12008-07-22 21:09:01 +0200452
Robert Richter25ad29132008-09-05 17:12:36 +0200453static int setup_ibs_files(struct super_block *sb, struct dentry *root)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200454{
Barry Kasindorf56784f12008-07-22 21:08:55 +0200455 struct dentry *dir;
Robert Richter270d3e12008-07-22 21:09:01 +0200456 int ret = 0;
457
458 /* architecture specific files */
459 if (create_arch_files)
460 ret = create_arch_files(sb, root);
461
462 if (ret)
463 return ret;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200464
Robert Richterfc81be82008-12-18 00:28:27 +0100465 if (!has_ibs)
Robert Richter270d3e12008-07-22 21:09:01 +0200466 return ret;
467
468 /* model specific files */
Barry Kasindorf56784f12008-07-22 21:08:55 +0200469
470 /* setup some reasonable defaults */
471 ibs_config.max_cnt_fetch = 250000;
472 ibs_config.fetch_enabled = 0;
473 ibs_config.max_cnt_op = 250000;
474 ibs_config.op_enabled = 0;
475 ibs_config.dispatched_ops = 1;
Robert Richter2d55a472008-07-18 17:56:05 +0200476
477 dir = oprofilefs_mkdir(sb, root, "ibs_fetch");
478 oprofilefs_create_ulong(sb, dir, "enable",
479 &ibs_config.fetch_enabled);
480 oprofilefs_create_ulong(sb, dir, "max_count",
481 &ibs_config.max_cnt_fetch);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200482 oprofilefs_create_ulong(sb, dir, "rand_enable",
483 &ibs_config.rand_en);
Robert Richter2d55a472008-07-18 17:56:05 +0200484
Robert Richterccd755c2008-07-29 16:57:10 +0200485 dir = oprofilefs_mkdir(sb, root, "ibs_op");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200486 oprofilefs_create_ulong(sb, dir, "enable",
Robert Richter2d55a472008-07-18 17:56:05 +0200487 &ibs_config.op_enabled);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200488 oprofilefs_create_ulong(sb, dir, "max_count",
Robert Richter2d55a472008-07-18 17:56:05 +0200489 &ibs_config.max_cnt_op);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200490 oprofilefs_create_ulong(sb, dir, "dispatched_ops",
Robert Richter2d55a472008-07-18 17:56:05 +0200491 &ibs_config.dispatched_ops);
Robert Richterfc2bd732008-07-22 21:09:00 +0200492
493 return 0;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200494}
495
Robert Richteradf5ec02008-07-22 21:08:48 +0200496static int op_amd_init(struct oprofile_operations *ops)
497{
Robert Richterfe615cb2008-11-24 14:58:03 +0100498 ibs_init();
Robert Richter270d3e12008-07-22 21:09:01 +0200499 create_arch_files = ops->create_files;
500 ops->create_files = setup_ibs_files;
Robert Richteradf5ec02008-07-22 21:08:48 +0200501 return 0;
502}
503
504static void op_amd_exit(void)
505{
Robert Richterfe615cb2008-11-24 14:58:03 +0100506 ibs_exit();
Robert Richteradf5ec02008-07-22 21:08:48 +0200507}
508
Robert Richter9fa68122008-11-24 14:21:03 +0100509#else
510
511/* no IBS support */
512
513static int op_amd_init(struct oprofile_operations *ops)
514{
515 return 0;
516}
517
518static void op_amd_exit(void) {}
519
520#endif /* CONFIG_OPROFILE_IBS */
Robert Richtera4c408a2008-07-22 21:09:02 +0200521
Robert Richter6657fe42008-07-22 21:08:50 +0200522struct op_x86_model_spec const op_amd_spec = {
Robert Richterc92960f2008-09-05 17:12:36 +0200523 .num_counters = NUM_COUNTERS,
524 .num_controls = NUM_CONTROLS,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200525 .num_virt_counters = NUM_VIRT_COUNTERS,
526 .num_virt_controls = NUM_VIRT_CONTROLS,
Robert Richter3370d352009-05-25 15:10:32 +0200527 .reserved = MSR_AMD_EVENTSEL_RESERVED,
528 .event_mask = OP_EVENT_MASK,
529 .init = op_amd_init,
530 .exit = op_amd_exit,
Robert Richterc92960f2008-09-05 17:12:36 +0200531 .fill_in_addresses = &op_amd_fill_in_addresses,
532 .setup_ctrs = &op_amd_setup_ctrs,
533 .check_ctrs = &op_amd_check_ctrs,
534 .start = &op_amd_start,
535 .stop = &op_amd_stop,
Robert Richter3370d352009-05-25 15:10:32 +0200536 .shutdown = &op_amd_shutdown,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200537#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
538 .switch_ctrl = &op_amd_switch_ctrl,
539#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540};