blob: 9cbb710dc94b6ee8c6df0fec2004173ac667d882 [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>
Robert Richter64683da2010-02-04 10:57:23 +010026#include <asm/processor.h>
27#include <asm/cpufeature.h>
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "op_x86_model.h"
30#include "op_counter.h"
31
Robert Richterda169f52010-09-24 15:54:43 +020032#define NUM_COUNTERS 4
33#define NUM_COUNTERS_F15H 6
Jason Yeh4d4036e2009-07-08 13:49:38 +020034#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
Robert Richterda169f52010-09-24 15:54:43 +020035#define NUM_VIRT_COUNTERS 32
Jason Yeh4d4036e2009-07-08 13:49:38 +020036#else
Robert Richterda169f52010-09-24 15:54:43 +020037#define NUM_VIRT_COUNTERS 0
Jason Yeh4d4036e2009-07-08 13:49:38 +020038#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
Robert Richterda169f52010-09-24 15:54:43 +020045static int num_counters;
46static unsigned long reset_value[OP_MAX_COUNTER];
Robert Richter852402c2008-07-22 21:09:06 +020047
Robert Richterc572ae42009-06-03 20:10:39 +020048#define IBS_FETCH_SIZE 6
49#define IBS_OP_SIZE 12
Barry Kasindorf56784f12008-07-22 21:08:55 +020050
Robert Richter64683da2010-02-04 10:57:23 +010051static u32 ibs_caps;
Barry Kasindorf56784f12008-07-22 21:08:55 +020052
Robert Richter53b39e92010-09-21 17:58:15 +020053struct ibs_config {
Barry Kasindorf56784f12008-07-22 21:08:55 +020054 unsigned long op_enabled;
55 unsigned long fetch_enabled;
56 unsigned long max_cnt_fetch;
57 unsigned long max_cnt_op;
58 unsigned long rand_en;
59 unsigned long dispatched_ops;
Robert Richter25da6952010-09-21 15:49:31 +020060 unsigned long branch_target;
Barry Kasindorf56784f12008-07-22 21:08:55 +020061};
62
Robert Richter53b39e92010-09-21 17:58:15 +020063struct ibs_state {
Robert Richter25da6952010-09-21 15:49:31 +020064 u64 ibs_op_ctl;
65 int branch_target;
66 unsigned long sample_size;
Robert Richter53b39e92010-09-21 17:58:15 +020067};
68
69static struct ibs_config ibs_config;
70static struct ibs_state ibs_state;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010071
Robert Richter64683da2010-02-04 10:57:23 +010072/*
73 * IBS cpuid feature detection
74 */
75
Robert Richter27afdf22010-10-06 12:27:54 +020076#define IBS_CPUID_FEATURES 0x8000001b
Robert Richter64683da2010-02-04 10:57:23 +010077
78/*
79 * Same bit mask as for IBS cpuid feature flags (Fn8000_001B_EAX), but
80 * bit 0 is used to indicate the existence of IBS.
81 */
Robert Richter27afdf22010-10-06 12:27:54 +020082#define IBS_CAPS_AVAIL (1U<<0)
Robert Richter4ac945f2010-09-21 15:58:32 +020083#define IBS_CAPS_FETCHSAM (1U<<1)
84#define IBS_CAPS_OPSAM (1U<<2)
Robert Richter27afdf22010-10-06 12:27:54 +020085#define IBS_CAPS_RDWROPCNT (1U<<3)
86#define IBS_CAPS_OPCNT (1U<<4)
Robert Richter25da6952010-09-21 15:49:31 +020087#define IBS_CAPS_BRNTRGT (1U<<5)
Robert Richterb47fad32010-09-22 17:45:39 +020088#define IBS_CAPS_OPCNTEXT (1U<<6)
Robert Richter4ac945f2010-09-21 15:58:32 +020089
90#define IBS_CAPS_DEFAULT (IBS_CAPS_AVAIL \
91 | IBS_CAPS_FETCHSAM \
92 | IBS_CAPS_OPSAM)
Robert Richter27afdf22010-10-06 12:27:54 +020093
94/*
95 * IBS APIC setup
96 */
97#define IBSCTL 0x1cc
98#define IBSCTL_LVT_OFFSET_VALID (1ULL<<8)
99#define IBSCTL_LVT_OFFSET_MASK 0x0F
Robert Richter64683da2010-02-04 10:57:23 +0100100
Robert Richterba520782010-02-23 15:46:49 +0100101/*
102 * IBS randomization macros
103 */
104#define IBS_RANDOM_BITS 12
105#define IBS_RANDOM_MASK ((1ULL << IBS_RANDOM_BITS) - 1)
106#define IBS_RANDOM_MAXCNT_OFFSET (1ULL << (IBS_RANDOM_BITS - 5))
107
Robert Richter64683da2010-02-04 10:57:23 +0100108static u32 get_ibs_caps(void)
109{
110 u32 ibs_caps;
111 unsigned int max_level;
112
113 if (!boot_cpu_has(X86_FEATURE_IBS))
114 return 0;
115
116 /* check IBS cpuid feature flags */
117 max_level = cpuid_eax(0x80000000);
118 if (max_level < IBS_CPUID_FEATURES)
Robert Richter4ac945f2010-09-21 15:58:32 +0200119 return IBS_CAPS_DEFAULT;
Robert Richter64683da2010-02-04 10:57:23 +0100120
121 ibs_caps = cpuid_eax(IBS_CPUID_FEATURES);
122 if (!(ibs_caps & IBS_CAPS_AVAIL))
123 /* cpuid flags not valid */
Robert Richter4ac945f2010-09-21 15:58:32 +0200124 return IBS_CAPS_DEFAULT;
Robert Richter64683da2010-02-04 10:57:23 +0100125
126 return ibs_caps;
127}
128
Suravee Suthikulpanitf125be12010-01-18 11:25:45 -0600129/*
130 * 16-bit Linear Feedback Shift Register (LFSR)
131 *
132 * 16 14 13 11
133 * Feedback polynomial = X + X + X + X + 1
134 */
135static unsigned int lfsr_random(void)
136{
137 static unsigned int lfsr_value = 0xF00D;
138 unsigned int bit;
139
140 /* Compute next bit to shift in */
141 bit = ((lfsr_value >> 0) ^
142 (lfsr_value >> 2) ^
143 (lfsr_value >> 3) ^
144 (lfsr_value >> 5)) & 0x0001;
145
146 /* Advance to next register value */
147 lfsr_value = (lfsr_value >> 1) | (bit << 15);
148
149 return lfsr_value;
150}
151
Robert Richterba520782010-02-23 15:46:49 +0100152/*
153 * IBS software randomization
154 *
155 * The IBS periodic op counter is randomized in software. The lower 12
156 * bits of the 20 bit counter are randomized. IbsOpCurCnt is
157 * initialized with a 12 bit random value.
158 */
159static inline u64 op_amd_randomize_ibs_op(u64 val)
160{
161 unsigned int random = lfsr_random();
162
163 if (!(ibs_caps & IBS_CAPS_RDWROPCNT))
164 /*
165 * Work around if the hw can not write to IbsOpCurCnt
166 *
167 * Randomize the lower 8 bits of the 16 bit
168 * IbsOpMaxCnt [15:0] value in the range of -128 to
169 * +127 by adding/subtracting an offset to the
170 * maximum count (IbsOpMaxCnt).
171 *
172 * To avoid over or underflows and protect upper bits
173 * starting at bit 16, the initial value for
174 * IbsOpMaxCnt must fit in the range from 0x0081 to
175 * 0xff80.
176 */
177 val += (s8)(random >> 4);
178 else
179 val |= (u64)(random & IBS_RANDOM_MASK) << 32;
180
181 return val;
182}
183
Andrew Morton4680e642009-06-23 12:36:08 -0700184static inline void
Robert Richter7939d2b2008-07-22 21:08:56 +0200185op_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 Richter64683da2010-02-04 10:57:23 +0100191 if (!ibs_caps)
Andrew Morton4680e642009-06-23 12:36:08 -0700192 return;
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 Richtera163b102010-02-25 19:43:07 +0100207 ctl &= ~(IBS_FETCH_VAL | IBS_FETCH_CNT);
Robert Richterc572ae42009-06-03 20:10:39 +0200208 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);
Robert Richter25da6952010-09-21 15:49:31 +0200217 oprofile_write_reserve(&entry, regs, val, IBS_OP_CODE,
218 ibs_state.sample_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 Richter25da6952010-09-21 15:49:31 +0200230 if (ibs_state.branch_target) {
231 rdmsrl(MSR_AMD64_IBSBRTARGET, val);
232 oprofile_add_data(&entry, (unsigned long)val);
233 }
Robert Richter14f0ca82009-01-07 21:50:22 +0100234 oprofile_write_commit(&entry);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200235
236 /* reenable the IRQ */
Robert Richter53b39e92010-09-21 17:58:15 +0200237 ctl = op_amd_randomize_ibs_op(ibs_state.ibs_op_ctl);
Robert Richterc572ae42009-06-03 20:10:39 +0200238 wrmsrl(MSR_AMD64_IBSOPCTL, ctl);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200239 }
240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Robert Richter90637592009-03-10 19:15:57 +0100243static inline void op_amd_start_ibs(void)
244{
Robert Richterc572ae42009-06-03 20:10:39 +0200245 u64 val;
Robert Richter64683da2010-02-04 10:57:23 +0100246
247 if (!ibs_caps)
248 return;
249
Robert Richter53b39e92010-09-21 17:58:15 +0200250 memset(&ibs_state, 0, sizeof(ibs_state));
251
Robert Richterb47fad32010-09-22 17:45:39 +0200252 /*
253 * Note: Since the max count settings may out of range we
254 * write back the actual used values so that userland can read
255 * it.
256 */
257
Robert Richter64683da2010-02-04 10:57:23 +0100258 if (ibs_config.fetch_enabled) {
Robert Richterb47fad32010-09-22 17:45:39 +0200259 val = ibs_config.max_cnt_fetch >> 4;
260 val = min(val, IBS_FETCH_MAX_CNT);
261 ibs_config.max_cnt_fetch = val << 4;
Robert Richterc572ae42009-06-03 20:10:39 +0200262 val |= ibs_config.rand_en ? IBS_FETCH_RAND_EN : 0;
263 val |= IBS_FETCH_ENABLE;
264 wrmsrl(MSR_AMD64_IBSFETCHCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100265 }
266
Robert Richter64683da2010-02-04 10:57:23 +0100267 if (ibs_config.op_enabled) {
Robert Richter53b39e92010-09-21 17:58:15 +0200268 val = ibs_config.max_cnt_op >> 4;
Robert Richterba520782010-02-23 15:46:49 +0100269 if (!(ibs_caps & IBS_CAPS_RDWROPCNT)) {
270 /*
271 * IbsOpCurCnt not supported. See
272 * op_amd_randomize_ibs_op() for details.
273 */
Robert Richter53b39e92010-09-21 17:58:15 +0200274 val = clamp(val, 0x0081ULL, 0xFF80ULL);
Robert Richterb47fad32010-09-22 17:45:39 +0200275 ibs_config.max_cnt_op = val << 4;
Robert Richterba520782010-02-23 15:46:49 +0100276 } else {
277 /*
278 * The start value is randomized with a
279 * positive offset, we need to compensate it
280 * with the half of the randomized range. Also
281 * avoid underflows.
282 */
Robert Richterb47fad32010-09-22 17:45:39 +0200283 val += IBS_RANDOM_MAXCNT_OFFSET;
284 if (ibs_caps & IBS_CAPS_OPCNTEXT)
285 val = min(val, IBS_OP_MAX_CNT_EXT);
286 else
287 val = min(val, IBS_OP_MAX_CNT);
288 ibs_config.max_cnt_op =
289 (val - IBS_RANDOM_MAXCNT_OFFSET) << 4;
Robert Richterba520782010-02-23 15:46:49 +0100290 }
Robert Richterb47fad32010-09-22 17:45:39 +0200291 val = ((val & ~IBS_OP_MAX_CNT) << 4) | (val & IBS_OP_MAX_CNT);
Robert Richter53b39e92010-09-21 17:58:15 +0200292 val |= ibs_config.dispatched_ops ? IBS_OP_CNT_CTL : 0;
293 val |= IBS_OP_ENABLE;
294 ibs_state.ibs_op_ctl = val;
Robert Richter25da6952010-09-21 15:49:31 +0200295 ibs_state.sample_size = IBS_OP_SIZE;
296 if (ibs_config.branch_target) {
297 ibs_state.branch_target = 1;
298 ibs_state.sample_size++;
299 }
Robert Richter53b39e92010-09-21 17:58:15 +0200300 val = op_amd_randomize_ibs_op(ibs_state.ibs_op_ctl);
Robert Richterc572ae42009-06-03 20:10:39 +0200301 wrmsrl(MSR_AMD64_IBSOPCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100302 }
303}
304
305static void op_amd_stop_ibs(void)
306{
Robert Richter64683da2010-02-04 10:57:23 +0100307 if (!ibs_caps)
308 return;
309
310 if (ibs_config.fetch_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100311 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200312 wrmsrl(MSR_AMD64_IBSFETCHCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100313
Robert Richter64683da2010-02-04 10:57:23 +0100314 if (ibs_config.op_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100315 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200316 wrmsrl(MSR_AMD64_IBSOPCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100317}
318
Robert Richter3d2606f2011-05-20 09:46:54 +0200319static inline int get_eilvt(int offset)
Robert Richter27afdf22010-10-06 12:27:54 +0200320{
Robert Richter27afdf22010-10-06 12:27:54 +0200321 return !setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_NMI, 1);
322}
323
Robert Richter3d2606f2011-05-20 09:46:54 +0200324static inline int put_eilvt(int offset)
325{
326 return !setup_APIC_eilvt(offset, 0, 0, 1);
327}
328
Robert Richter27afdf22010-10-06 12:27:54 +0200329static inline int ibs_eilvt_valid(void)
330{
Robert Richter27afdf22010-10-06 12:27:54 +0200331 int offset;
Ingo Molnar2c78ffe2010-10-25 08:41:09 +0200332 u64 val;
Robert Richter3d2606f2011-05-20 09:46:54 +0200333 int valid = 0;
334
335 preempt_disable();
Robert Richter27afdf22010-10-06 12:27:54 +0200336
337 rdmsrl(MSR_AMD64_IBSCTL, val);
Ingo Molnar2c78ffe2010-10-25 08:41:09 +0200338 offset = val & IBSCTL_LVT_OFFSET_MASK;
339
Robert Richter27afdf22010-10-06 12:27:54 +0200340 if (!(val & IBSCTL_LVT_OFFSET_VALID)) {
Ingo Molnar2c78ffe2010-10-25 08:41:09 +0200341 pr_err(FW_BUG "cpu %d, invalid IBS interrupt offset %d (MSR%08X=0x%016llx)\n",
342 smp_processor_id(), offset, MSR_AMD64_IBSCTL, val);
Robert Richter3d2606f2011-05-20 09:46:54 +0200343 goto out;
Robert Richter27afdf22010-10-06 12:27:54 +0200344 }
345
Robert Richter3d2606f2011-05-20 09:46:54 +0200346 if (!get_eilvt(offset)) {
Ingo Molnar2c78ffe2010-10-25 08:41:09 +0200347 pr_err(FW_BUG "cpu %d, IBS interrupt offset %d not available (MSR%08X=0x%016llx)\n",
348 smp_processor_id(), offset, MSR_AMD64_IBSCTL, val);
Robert Richter3d2606f2011-05-20 09:46:54 +0200349 goto out;
Ingo Molnar2c78ffe2010-10-25 08:41:09 +0200350 }
Robert Richter27afdf22010-10-06 12:27:54 +0200351
Robert Richter3d2606f2011-05-20 09:46:54 +0200352 valid = 1;
353out:
354 preempt_enable();
355
356 return valid;
Robert Richter27afdf22010-10-06 12:27:54 +0200357}
358
359static inline int get_ibs_offset(void)
360{
361 u64 val;
362
363 rdmsrl(MSR_AMD64_IBSCTL, val);
364 if (!(val & IBSCTL_LVT_OFFSET_VALID))
365 return -EINVAL;
366
367 return val & IBSCTL_LVT_OFFSET_MASK;
368}
369
370static void setup_APIC_ibs(void)
371{
372 int offset;
373
374 offset = get_ibs_offset();
375 if (offset < 0)
376 goto failed;
377
378 if (!setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_NMI, 0))
379 return;
380failed:
381 pr_warn("oprofile: IBS APIC setup failed on cpu #%d\n",
382 smp_processor_id());
383}
384
385static void clear_APIC_ibs(void)
386{
387 int offset;
388
389 offset = get_ibs_offset();
390 if (offset >= 0)
391 setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_FIX, 1);
392}
393
Robert Richterda759fe2010-02-26 10:54:56 +0100394#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
395
396static void op_mux_switch_ctrl(struct op_x86_model_spec const *model,
397 struct op_msrs const * const msrs)
398{
399 u64 val;
400 int i;
401
402 /* enable active counters */
Robert Richterda169f52010-09-24 15:54:43 +0200403 for (i = 0; i < num_counters; ++i) {
Robert Richterda759fe2010-02-26 10:54:56 +0100404 int virt = op_x86_phys_to_virt(i);
405 if (!reset_value[virt])
406 continue;
407 rdmsrl(msrs->controls[i].addr, val);
408 val &= model->reserved;
409 val |= op_x86_get_ctrl(model, &counter_config[virt]);
410 wrmsrl(msrs->controls[i].addr, val);
411 }
412}
413
414#endif
415
416/* functions for op_amd_spec */
417
418static void op_amd_shutdown(struct op_msrs const * const msrs)
419{
420 int i;
421
Robert Richterda169f52010-09-24 15:54:43 +0200422 for (i = 0; i < num_counters; ++i) {
Robert Richterda759fe2010-02-26 10:54:56 +0100423 if (!msrs->counters[i].addr)
424 continue;
425 release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
426 release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
427 }
428}
429
430static int op_amd_fill_in_addresses(struct op_msrs * const msrs)
431{
432 int i;
433
Robert Richterda169f52010-09-24 15:54:43 +0200434 for (i = 0; i < num_counters; i++) {
Robert Richterda759fe2010-02-26 10:54:56 +0100435 if (!reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
436 goto fail;
437 if (!reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i)) {
438 release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
439 goto fail;
440 }
441 /* both registers must be reserved */
Robert Richterda169f52010-09-24 15:54:43 +0200442 if (num_counters == NUM_COUNTERS_F15H) {
443 msrs->counters[i].addr = MSR_F15H_PERF_CTR + (i << 1);
444 msrs->controls[i].addr = MSR_F15H_PERF_CTL + (i << 1);
445 } else {
446 msrs->controls[i].addr = MSR_K7_EVNTSEL0 + i;
447 msrs->counters[i].addr = MSR_K7_PERFCTR0 + i;
448 }
Robert Richterda759fe2010-02-26 10:54:56 +0100449 continue;
450 fail:
451 if (!counter_config[i].enabled)
452 continue;
453 op_x86_warn_reserved(i);
454 op_amd_shutdown(msrs);
455 return -EBUSY;
456 }
457
458 return 0;
459}
460
461static void op_amd_setup_ctrs(struct op_x86_model_spec const *model,
462 struct op_msrs const * const msrs)
463{
464 u64 val;
465 int i;
466
467 /* setup reset_value */
Robert Richterda169f52010-09-24 15:54:43 +0200468 for (i = 0; i < OP_MAX_COUNTER; ++i) {
Robert Richterda759fe2010-02-26 10:54:56 +0100469 if (counter_config[i].enabled
470 && msrs->counters[op_x86_virt_to_phys(i)].addr)
471 reset_value[i] = counter_config[i].count;
472 else
473 reset_value[i] = 0;
474 }
475
476 /* clear all counters */
Robert Richterda169f52010-09-24 15:54:43 +0200477 for (i = 0; i < num_counters; ++i) {
Robert Richterda759fe2010-02-26 10:54:56 +0100478 if (!msrs->controls[i].addr)
479 continue;
480 rdmsrl(msrs->controls[i].addr, val);
481 if (val & ARCH_PERFMON_EVENTSEL_ENABLE)
482 op_x86_warn_in_use(i);
483 val &= model->reserved;
484 wrmsrl(msrs->controls[i].addr, val);
485 /*
486 * avoid a false detection of ctr overflows in NMI
487 * handler
488 */
489 wrmsrl(msrs->counters[i].addr, -1LL);
490 }
491
492 /* enable active counters */
Robert Richterda169f52010-09-24 15:54:43 +0200493 for (i = 0; i < num_counters; ++i) {
Robert Richterda759fe2010-02-26 10:54:56 +0100494 int virt = op_x86_phys_to_virt(i);
495 if (!reset_value[virt])
496 continue;
497
498 /* setup counter registers */
499 wrmsrl(msrs->counters[i].addr, -(u64)reset_value[virt]);
500
501 /* setup control registers */
502 rdmsrl(msrs->controls[i].addr, val);
503 val &= model->reserved;
504 val |= op_x86_get_ctrl(model, &counter_config[virt]);
505 wrmsrl(msrs->controls[i].addr, val);
506 }
Robert Richterbae663b2010-05-05 17:47:17 +0200507
508 if (ibs_caps)
Robert Richter27afdf22010-10-06 12:27:54 +0200509 setup_APIC_ibs();
Robert Richterbae663b2010-05-05 17:47:17 +0200510}
511
512static void op_amd_cpu_shutdown(void)
513{
514 if (ibs_caps)
Robert Richter27afdf22010-10-06 12:27:54 +0200515 clear_APIC_ibs();
Robert Richterda759fe2010-02-26 10:54:56 +0100516}
517
Robert Richter7939d2b2008-07-22 21:08:56 +0200518static int op_amd_check_ctrs(struct pt_regs * const regs,
519 struct op_msrs const * const msrs)
520{
Robert Richter42399ad2009-05-25 17:59:06 +0200521 u64 val;
Robert Richter7939d2b2008-07-22 21:08:56 +0200522 int i;
523
Robert Richterda169f52010-09-24 15:54:43 +0200524 for (i = 0; i < num_counters; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200525 int virt = op_x86_phys_to_virt(i);
526 if (!reset_value[virt])
Robert Richter7939d2b2008-07-22 21:08:56 +0200527 continue;
Robert Richter42399ad2009-05-25 17:59:06 +0200528 rdmsrl(msrs->counters[i].addr, val);
529 /* bit is clear if overflowed: */
530 if (val & OP_CTR_OVERFLOW)
531 continue;
Robert Richterd8471ad2009-07-16 13:04:43 +0200532 oprofile_add_sample(regs, virt);
533 wrmsrl(msrs->counters[i].addr, -(u64)reset_value[virt]);
Robert Richter7939d2b2008-07-22 21:08:56 +0200534 }
535
536 op_amd_handle_ibs(regs, msrs);
537
538 /* See op_model_ppro.c */
539 return 1;
540}
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100541
Robert Richter6657fe42008-07-22 21:08:50 +0200542static void op_amd_start(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Robert Richterdea37662009-05-25 18:11:52 +0200544 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 int i;
Jason Yeh4d4036e2009-07-08 13:49:38 +0200546
Robert Richterda169f52010-09-24 15:54:43 +0200547 for (i = 0; i < num_counters; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200548 if (!reset_value[op_x86_phys_to_virt(i)])
549 continue;
550 rdmsrl(msrs->controls[i].addr, val);
Robert Richterbb1165d2010-03-01 14:21:23 +0100551 val |= ARCH_PERFMON_EVENTSEL_ENABLE;
Robert Richterd8471ad2009-07-16 13:04:43 +0200552 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
Robert Richter852402c2008-07-22 21:09:06 +0200554
Robert Richter90637592009-03-10 19:15:57 +0100555 op_amd_start_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Robert Richter6657fe42008-07-22 21:08:50 +0200558static void op_amd_stop(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Robert Richterdea37662009-05-25 18:11:52 +0200560 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 int i;
562
Robert Richterfd13f6c2008-10-19 21:00:09 +0200563 /*
564 * Subtle: stop on all counters to avoid race with setting our
565 * pm callback
566 */
Robert Richterda169f52010-09-24 15:54:43 +0200567 for (i = 0; i < num_counters; ++i) {
Robert Richterd8471ad2009-07-16 13:04:43 +0200568 if (!reset_value[op_x86_phys_to_virt(i)])
Don Zickuscb9c4482006-09-26 10:52:26 +0200569 continue;
Robert Richterdea37662009-05-25 18:11:52 +0200570 rdmsrl(msrs->controls[i].addr, val);
Robert Richterbb1165d2010-03-01 14:21:23 +0100571 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
Robert Richterdea37662009-05-25 18:11:52 +0200572 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
Barry Kasindorf56784f12008-07-22 21:08:55 +0200574
Robert Richter90637592009-03-10 19:15:57 +0100575 op_amd_stop_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Robert Richter27afdf22010-10-06 12:27:54 +0200578static int setup_ibs_ctl(int ibs_eilvt_off)
Robert Richter7d77f2d2008-07-22 21:08:57 +0200579{
Robert Richter7d77f2d2008-07-22 21:08:57 +0200580 struct pci_dev *cpu_cfg;
581 int nodes;
582 u32 value = 0;
Robert Richter7d77f2d2008-07-22 21:08:57 +0200583
584 nodes = 0;
585 cpu_cfg = NULL;
586 do {
587 cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
588 PCI_DEVICE_ID_AMD_10H_NB_MISC,
589 cpu_cfg);
590 if (!cpu_cfg)
591 break;
592 ++nodes;
593 pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
Robert Richter27afdf22010-10-06 12:27:54 +0200594 | IBSCTL_LVT_OFFSET_VALID);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200595 pci_read_config_dword(cpu_cfg, IBSCTL, &value);
Robert Richter27afdf22010-10-06 12:27:54 +0200596 if (value != (ibs_eilvt_off | IBSCTL_LVT_OFFSET_VALID)) {
Robert Richter83bd9242008-12-15 15:09:50 +0100597 pci_dev_put(cpu_cfg);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200598 printk(KERN_DEBUG "Failed to setup IBS LVT offset, "
Robert Richter27afdf22010-10-06 12:27:54 +0200599 "IBSCTL = 0x%08x\n", value);
600 return -EINVAL;
Robert Richter7d77f2d2008-07-22 21:08:57 +0200601 }
602 } while (1);
603
604 if (!nodes) {
Robert Richter27afdf22010-10-06 12:27:54 +0200605 printk(KERN_DEBUG "No CPU node configured for IBS\n");
606 return -ENODEV;
Robert Richter7d77f2d2008-07-22 21:08:57 +0200607 }
608
Robert Richter7d77f2d2008-07-22 21:08:57 +0200609 return 0;
610}
611
Robert Richtercbf74ce2011-05-30 16:31:11 +0200612/*
613 * This runs only on the current cpu. We try to find an LVT offset and
614 * setup the local APIC. For this we must disable preemption. On
615 * success we initialize all nodes with this offset. This updates then
616 * the offset in the IBS_CTL per-node msr. The per-core APIC setup of
617 * the IBS interrupt vector is called from op_amd_setup_ctrs()/op_-
618 * amd_cpu_shutdown() using the new offset.
619 */
Robert Richter27afdf22010-10-06 12:27:54 +0200620static int force_ibs_eilvt_setup(void)
621{
Robert Richter3d2606f2011-05-20 09:46:54 +0200622 int offset;
Robert Richter27afdf22010-10-06 12:27:54 +0200623 int ret;
624
Robert Richter3d2606f2011-05-20 09:46:54 +0200625 preempt_disable();
Robert Richtercbf74ce2011-05-30 16:31:11 +0200626 /* find the next free available EILVT entry, skip offset 0 */
Robert Richter3d2606f2011-05-20 09:46:54 +0200627 for (offset = 1; offset < APIC_EILVT_NR_MAX; offset++) {
628 if (get_eilvt(offset))
629 break;
630 }
631 preempt_enable();
632
633 if (offset == APIC_EILVT_NR_MAX) {
634 printk(KERN_DEBUG "No EILVT entry available\n");
635 return -EBUSY;
Robert Richter27afdf22010-10-06 12:27:54 +0200636 }
637
Robert Richter3d2606f2011-05-20 09:46:54 +0200638 ret = setup_ibs_ctl(offset);
Robert Richter27afdf22010-10-06 12:27:54 +0200639 if (ret)
Robert Richter3d2606f2011-05-20 09:46:54 +0200640 goto out;
Robert Richter27afdf22010-10-06 12:27:54 +0200641
Robert Richter3d2606f2011-05-20 09:46:54 +0200642 if (!ibs_eilvt_valid()) {
643 ret = -EFAULT;
644 goto out;
645 }
Robert Richter27afdf22010-10-06 12:27:54 +0200646
Robert Richter3d2606f2011-05-20 09:46:54 +0200647 pr_err(FW_BUG "using offset %d for IBS interrupts\n", offset);
Robert Richter27afdf22010-10-06 12:27:54 +0200648 pr_err(FW_BUG "workaround enabled for IBS LVT offset\n");
649
650 return 0;
Robert Richter3d2606f2011-05-20 09:46:54 +0200651out:
652 preempt_disable();
653 put_eilvt(offset);
654 preempt_enable();
655 return ret;
Robert Richter27afdf22010-10-06 12:27:54 +0200656}
657
Robert Richterc7c25802011-01-03 12:15:14 +0100658/*
659 * check and reserve APIC extended interrupt LVT offset for IBS if
660 * available
Robert Richterc7c25802011-01-03 12:15:14 +0100661 */
662
Robert Richterbae663b2010-05-05 17:47:17 +0200663static void init_ibs(void)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200664{
Robert Richter64683da2010-02-04 10:57:23 +0100665 ibs_caps = get_ibs_caps();
Robert Richter3d2606f2011-05-20 09:46:54 +0200666
Robert Richter64683da2010-02-04 10:57:23 +0100667 if (!ibs_caps)
Robert Richter3d2606f2011-05-20 09:46:54 +0200668 return;
669
670 if (ibs_eilvt_valid())
Robert Richterc7c25802011-01-03 12:15:14 +0100671 goto out;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200672
Robert Richter3d2606f2011-05-20 09:46:54 +0200673 if (!force_ibs_eilvt_setup())
674 goto out;
675
676 /* Failed to setup ibs */
677 ibs_caps = 0;
678 return;
Robert Richter852402c2008-07-22 21:09:06 +0200679
Robert Richterc7c25802011-01-03 12:15:14 +0100680out:
Robert Richter3d2606f2011-05-20 09:46:54 +0200681 printk(KERN_INFO "oprofile: AMD IBS detected (0x%08x)\n", ibs_caps);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200682}
683
Robert Richter25ad29132008-09-05 17:12:36 +0200684static int (*create_arch_files)(struct super_block *sb, struct dentry *root);
Robert Richter270d3e12008-07-22 21:09:01 +0200685
Robert Richter25ad29132008-09-05 17:12:36 +0200686static int setup_ibs_files(struct super_block *sb, struct dentry *root)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200687{
Barry Kasindorf56784f12008-07-22 21:08:55 +0200688 struct dentry *dir;
Robert Richter270d3e12008-07-22 21:09:01 +0200689 int ret = 0;
690
691 /* architecture specific files */
692 if (create_arch_files)
693 ret = create_arch_files(sb, root);
694
695 if (ret)
696 return ret;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200697
Robert Richter64683da2010-02-04 10:57:23 +0100698 if (!ibs_caps)
Robert Richter270d3e12008-07-22 21:09:01 +0200699 return ret;
700
701 /* model specific files */
Barry Kasindorf56784f12008-07-22 21:08:55 +0200702
703 /* setup some reasonable defaults */
Robert Richter25da6952010-09-21 15:49:31 +0200704 memset(&ibs_config, 0, sizeof(ibs_config));
Barry Kasindorf56784f12008-07-22 21:08:55 +0200705 ibs_config.max_cnt_fetch = 250000;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200706 ibs_config.max_cnt_op = 250000;
Robert Richter2d55a472008-07-18 17:56:05 +0200707
Robert Richter4ac945f2010-09-21 15:58:32 +0200708 if (ibs_caps & IBS_CAPS_FETCHSAM) {
709 dir = oprofilefs_mkdir(sb, root, "ibs_fetch");
710 oprofilefs_create_ulong(sb, dir, "enable",
711 &ibs_config.fetch_enabled);
712 oprofilefs_create_ulong(sb, dir, "max_count",
713 &ibs_config.max_cnt_fetch);
714 oprofilefs_create_ulong(sb, dir, "rand_enable",
715 &ibs_config.rand_en);
716 }
Robert Richter2d55a472008-07-18 17:56:05 +0200717
Robert Richter4ac945f2010-09-21 15:58:32 +0200718 if (ibs_caps & IBS_CAPS_OPSAM) {
719 dir = oprofilefs_mkdir(sb, root, "ibs_op");
720 oprofilefs_create_ulong(sb, dir, "enable",
721 &ibs_config.op_enabled);
722 oprofilefs_create_ulong(sb, dir, "max_count",
723 &ibs_config.max_cnt_op);
724 if (ibs_caps & IBS_CAPS_OPCNT)
725 oprofilefs_create_ulong(sb, dir, "dispatched_ops",
726 &ibs_config.dispatched_ops);
Robert Richter25da6952010-09-21 15:49:31 +0200727 if (ibs_caps & IBS_CAPS_BRNTRGT)
728 oprofilefs_create_ulong(sb, dir, "branch_target",
729 &ibs_config.branch_target);
Robert Richter4ac945f2010-09-21 15:58:32 +0200730 }
Robert Richterfc2bd732008-07-22 21:09:00 +0200731
732 return 0;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200733}
734
Robert Richterda169f52010-09-24 15:54:43 +0200735struct op_x86_model_spec op_amd_spec;
736
Robert Richteradf5ec02008-07-22 21:08:48 +0200737static int op_amd_init(struct oprofile_operations *ops)
738{
Robert Richterbae663b2010-05-05 17:47:17 +0200739 init_ibs();
Robert Richter270d3e12008-07-22 21:09:01 +0200740 create_arch_files = ops->create_files;
741 ops->create_files = setup_ibs_files;
Robert Richterda169f52010-09-24 15:54:43 +0200742
743 if (boot_cpu_data.x86 == 0x15) {
744 num_counters = NUM_COUNTERS_F15H;
745 } else {
746 num_counters = NUM_COUNTERS;
747 }
748
749 op_amd_spec.num_counters = num_counters;
750 op_amd_spec.num_controls = num_counters;
751 op_amd_spec.num_virt_counters = max(num_counters, NUM_VIRT_COUNTERS);
752
Robert Richteradf5ec02008-07-22 21:08:48 +0200753 return 0;
754}
755
Robert Richter259a83a2009-07-09 15:12:35 +0200756struct op_x86_model_spec op_amd_spec = {
Robert Richterda169f52010-09-24 15:54:43 +0200757 /* num_counters/num_controls filled in at runtime */
Robert Richter3370d352009-05-25 15:10:32 +0200758 .reserved = MSR_AMD_EVENTSEL_RESERVED,
759 .event_mask = OP_EVENT_MASK,
760 .init = op_amd_init,
Robert Richterc92960f2008-09-05 17:12:36 +0200761 .fill_in_addresses = &op_amd_fill_in_addresses,
762 .setup_ctrs = &op_amd_setup_ctrs,
Robert Richterbae663b2010-05-05 17:47:17 +0200763 .cpu_down = &op_amd_cpu_shutdown,
Robert Richterc92960f2008-09-05 17:12:36 +0200764 .check_ctrs = &op_amd_check_ctrs,
765 .start = &op_amd_start,
766 .stop = &op_amd_stop,
Robert Richter3370d352009-05-25 15:10:32 +0200767 .shutdown = &op_amd_shutdown,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200768#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
Robert Richter7e7478c2009-07-16 13:09:53 +0200769 .switch_ctrl = &op_mux_switch_ctrl,
Jason Yeh4d4036e2009-07-08 13:49:38 +0200770#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771};