blob: f676f8825a3f54b096e5dd773944a4d04d2361d5 [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>
Barry Kasindorf56784f12008-07-22 21:08:55 +020012 * @author Barry Kasindorf
Robert Richterae735e92008-12-25 17:26:07 +010013 */
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
Robert Richter3370d352009-05-25 15:10:32 +020028#define OP_EVENT_MASK 0x0FFF
Robert Richter42399ad2009-05-25 17:59:06 +020029#define OP_CTR_OVERFLOW (1ULL<<31)
Robert Richter3370d352009-05-25 15:10:32 +020030
31#define MSR_AMD_EVENTSEL_RESERVED ((0xFFFFFCF0ULL<<32)|(1ULL<<21))
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Robert Richter852402c2008-07-22 21:09:06 +020033static unsigned long reset_value[NUM_COUNTERS];
34
35#ifdef CONFIG_OPROFILE_IBS
36
Robert Richter87f0bac2008-07-22 21:09:03 +020037/* IbsFetchCtl bits/masks */
Robert Richterc572ae42009-06-03 20:10:39 +020038#define IBS_FETCH_RAND_EN (1ULL<<57)
39#define IBS_FETCH_VAL (1ULL<<49)
40#define IBS_FETCH_ENABLE (1ULL<<48)
41#define IBS_FETCH_CNT_MASK 0xFFFF0000ULL
Barry Kasindorf56784f12008-07-22 21:08:55 +020042
Robert Richter87f0bac2008-07-22 21:09:03 +020043/*IbsOpCtl bits */
Robert Richterc572ae42009-06-03 20:10:39 +020044#define IBS_OP_CNT_CTL (1ULL<<19)
45#define IBS_OP_VAL (1ULL<<18)
46#define IBS_OP_ENABLE (1ULL<<17)
Barry Kasindorf56784f12008-07-22 21:08:55 +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 Richterfc81be82008-12-18 00:28:27 +010051static int has_ibs; /* AMD Family10h and later */
Barry Kasindorf56784f12008-07-22 21:08:55 +020052
53struct op_ibs_config {
54 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;
60};
61
62static struct op_ibs_config ibs_config;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010063
Robert Richter852402c2008-07-22 21:09:06 +020064#endif
65
Robert Richter6657fe42008-07-22 21:08:50 +020066/* functions for op_amd_spec */
Robert Richterdfa15422008-07-22 21:08:49 +020067
Robert Richter6657fe42008-07-22 21:08:50 +020068static void op_amd_fill_in_addresses(struct op_msrs * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Don Zickuscb9c4482006-09-26 10:52:26 +020070 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010072 for (i = 0; i < NUM_COUNTERS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +020073 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
74 msrs->counters[i].addr = MSR_K7_PERFCTR0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +020075 else
76 msrs->counters[i].addr = 0;
77 }
78
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010079 for (i = 0; i < NUM_CONTROLS; i++) {
Robert Richter4c168ea2008-09-24 11:08:52 +020080 if (reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i))
81 msrs->controls[i].addr = MSR_K7_EVNTSEL0 + i;
Don Zickuscb9c4482006-09-26 10:52:26 +020082 else
83 msrs->controls[i].addr = 0;
84 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Robert Richteref8828d2009-05-25 19:31:44 +020087static void op_amd_setup_ctrs(struct op_x86_model_spec const *model,
88 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Robert Richter3370d352009-05-25 15:10:32 +020090 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 int i;
Paolo Ciarrocchid4413732008-02-19 23:51:27 +010092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 /* clear all counters */
Robert Richter6e63ea42009-07-07 19:25:39 +020094 for (i = 0; i < NUM_CONTROLS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +020095 if (unlikely(!msrs->controls[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +020096 continue;
Robert Richter3370d352009-05-25 15:10:32 +020097 rdmsrl(msrs->controls[i].addr, val);
98 val &= model->reserved;
99 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
Don Zickuscb9c4482006-09-26 10:52:26 +0200101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 /* avoid a false detection of ctr overflows in NMI handler */
Robert Richter4c168ea2008-09-24 11:08:52 +0200103 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200104 if (unlikely(!msrs->counters[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +0200105 continue;
Robert Richterbbc59862009-05-25 17:38:19 +0200106 wrmsrl(msrs->counters[i].addr, -1LL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108
109 /* enable active counters */
Robert Richter4c168ea2008-09-24 11:08:52 +0200110 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200111 if (counter_config[i].enabled && msrs->counters[i].addr) {
Robert Richter4c168ea2008-09-24 11:08:52 +0200112 reset_value[i] = counter_config[i].count;
Robert Richterbbc59862009-05-25 17:38:19 +0200113 wrmsrl(msrs->counters[i].addr,
Robert Richter8045a4c2009-07-07 19:30:25 +0200114 -(u64)counter_config[i].count);
Robert Richter3370d352009-05-25 15:10:32 +0200115 rdmsrl(msrs->controls[i].addr, val);
116 val &= model->reserved;
117 val |= op_x86_get_ctrl(model, &counter_config[i]);
118 wrmsrl(msrs->controls[i].addr, val);
Robert Richter4c168ea2008-09-24 11:08:52 +0200119 } else {
120 reset_value[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122 }
123}
124
Robert Richter852402c2008-07-22 21:09:06 +0200125#ifdef CONFIG_OPROFILE_IBS
126
Robert Richter7939d2b2008-07-22 21:08:56 +0200127static inline int
128op_amd_handle_ibs(struct pt_regs * const regs,
129 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Robert Richterc572ae42009-06-03 20:10:39 +0200131 u64 val, ctl;
Robert Richter1acda872009-01-05 10:35:31 +0100132 struct op_entry entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Robert Richterfc81be82008-12-18 00:28:27 +0100134 if (!has_ibs)
Jaswinder Singh Rajput21e70872009-06-18 17:09:27 +0530135 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Robert Richter7939d2b2008-07-22 21:08:56 +0200137 if (ibs_config.fetch_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200138 rdmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
139 if (ctl & IBS_FETCH_VAL) {
140 rdmsrl(MSR_AMD64_IBSFETCHLINAD, val);
141 oprofile_write_reserve(&entry, regs, val,
Robert Richter14f0ca82009-01-07 21:50:22 +0100142 IBS_FETCH_CODE, IBS_FETCH_SIZE);
Robert Richter51563a02009-06-03 20:54:56 +0200143 oprofile_add_data64(&entry, val);
144 oprofile_add_data64(&entry, ctl);
Robert Richterc572ae42009-06-03 20:10:39 +0200145 rdmsrl(MSR_AMD64_IBSFETCHPHYSAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200146 oprofile_add_data64(&entry, val);
Robert Richter14f0ca82009-01-07 21:50:22 +0100147 oprofile_write_commit(&entry);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200148
Robert Richterfd13f6c2008-10-19 21:00:09 +0200149 /* reenable the IRQ */
Robert Richterc572ae42009-06-03 20:10:39 +0200150 ctl &= ~(IBS_FETCH_VAL | IBS_FETCH_CNT_MASK);
151 ctl |= IBS_FETCH_ENABLE;
152 wrmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200153 }
154 }
155
Robert Richter7939d2b2008-07-22 21:08:56 +0200156 if (ibs_config.op_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200157 rdmsrl(MSR_AMD64_IBSOPCTL, ctl);
158 if (ctl & IBS_OP_VAL) {
159 rdmsrl(MSR_AMD64_IBSOPRIP, val);
160 oprofile_write_reserve(&entry, regs, val,
Robert Richter14f0ca82009-01-07 21:50:22 +0100161 IBS_OP_CODE, IBS_OP_SIZE);
Robert Richter51563a02009-06-03 20:54:56 +0200162 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200163 rdmsrl(MSR_AMD64_IBSOPDATA, val);
Robert Richter51563a02009-06-03 20:54:56 +0200164 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200165 rdmsrl(MSR_AMD64_IBSOPDATA2, val);
Robert Richter51563a02009-06-03 20:54:56 +0200166 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200167 rdmsrl(MSR_AMD64_IBSOPDATA3, val);
Robert Richter51563a02009-06-03 20:54:56 +0200168 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200169 rdmsrl(MSR_AMD64_IBSDCLINAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200170 oprofile_add_data64(&entry, val);
Robert Richterc572ae42009-06-03 20:10:39 +0200171 rdmsrl(MSR_AMD64_IBSDCPHYSAD, val);
Robert Richter51563a02009-06-03 20:54:56 +0200172 oprofile_add_data64(&entry, val);
Robert Richter14f0ca82009-01-07 21:50:22 +0100173 oprofile_write_commit(&entry);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200174
175 /* reenable the IRQ */
Robert Richterc572ae42009-06-03 20:10:39 +0200176 ctl &= ~IBS_OP_VAL & 0xFFFFFFFF;
177 ctl |= IBS_OP_ENABLE;
178 wrmsrl(MSR_AMD64_IBSOPCTL, ctl);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200179 }
180 }
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return 1;
183}
184
Robert Richter90637592009-03-10 19:15:57 +0100185static inline void op_amd_start_ibs(void)
186{
Robert Richterc572ae42009-06-03 20:10:39 +0200187 u64 val;
Robert Richter90637592009-03-10 19:15:57 +0100188 if (has_ibs && ibs_config.fetch_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200189 val = (ibs_config.max_cnt_fetch >> 4) & 0xFFFF;
190 val |= ibs_config.rand_en ? IBS_FETCH_RAND_EN : 0;
191 val |= IBS_FETCH_ENABLE;
192 wrmsrl(MSR_AMD64_IBSFETCHCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100193 }
194
195 if (has_ibs && ibs_config.op_enabled) {
Robert Richterc572ae42009-06-03 20:10:39 +0200196 val = (ibs_config.max_cnt_op >> 4) & 0xFFFF;
197 val |= ibs_config.dispatched_ops ? IBS_OP_CNT_CTL : 0;
198 val |= IBS_OP_ENABLE;
199 wrmsrl(MSR_AMD64_IBSOPCTL, val);
Robert Richter90637592009-03-10 19:15:57 +0100200 }
201}
202
203static void op_amd_stop_ibs(void)
204{
Robert Richterc572ae42009-06-03 20:10:39 +0200205 if (has_ibs && ibs_config.fetch_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100206 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200207 wrmsrl(MSR_AMD64_IBSFETCHCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100208
Robert Richterc572ae42009-06-03 20:10:39 +0200209 if (has_ibs && ibs_config.op_enabled)
Robert Richter90637592009-03-10 19:15:57 +0100210 /* clear max count and enable */
Robert Richterc572ae42009-06-03 20:10:39 +0200211 wrmsrl(MSR_AMD64_IBSOPCTL, 0);
Robert Richter90637592009-03-10 19:15:57 +0100212}
213
214#else
215
216static inline int op_amd_handle_ibs(struct pt_regs * const regs,
Jaswinder Singh Rajput21e70872009-06-18 17:09:27 +0530217 struct op_msrs const * const msrs)
218{
219 return 0;
220}
Robert Richter90637592009-03-10 19:15:57 +0100221static inline void op_amd_start_ibs(void) { }
222static inline void op_amd_stop_ibs(void) { }
223
Robert Richter852402c2008-07-22 21:09:06 +0200224#endif
225
Robert Richter7939d2b2008-07-22 21:08:56 +0200226static int op_amd_check_ctrs(struct pt_regs * const regs,
227 struct op_msrs const * const msrs)
228{
Robert Richter42399ad2009-05-25 17:59:06 +0200229 u64 val;
Robert Richter7939d2b2008-07-22 21:08:56 +0200230 int i;
231
Robert Richter6e63ea42009-07-07 19:25:39 +0200232 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter4c168ea2008-09-24 11:08:52 +0200233 if (!reset_value[i])
Robert Richter7939d2b2008-07-22 21:08:56 +0200234 continue;
Robert Richter42399ad2009-05-25 17:59:06 +0200235 rdmsrl(msrs->counters[i].addr, val);
236 /* bit is clear if overflowed: */
237 if (val & OP_CTR_OVERFLOW)
238 continue;
239 oprofile_add_sample(regs, i);
Robert Richter8045a4c2009-07-07 19:30:25 +0200240 wrmsrl(msrs->counters[i].addr, -(u64)reset_value[i]);
Robert Richter7939d2b2008-07-22 21:08:56 +0200241 }
242
243 op_amd_handle_ibs(regs, msrs);
244
245 /* See op_model_ppro.c */
246 return 1;
247}
Paolo Ciarrocchid4413732008-02-19 23:51:27 +0100248
Robert Richter6657fe42008-07-22 21:08:50 +0200249static void op_amd_start(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Robert Richterdea37662009-05-25 18:11:52 +0200251 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 int i;
Robert Richter6e63ea42009-07-07 19:25:39 +0200253 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter4c168ea2008-09-24 11:08:52 +0200254 if (reset_value[i]) {
Robert Richterdea37662009-05-25 18:11:52 +0200255 rdmsrl(msrs->controls[i].addr, val);
256 val |= ARCH_PERFMON_EVENTSEL0_ENABLE;
257 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
259 }
Robert Richter852402c2008-07-22 21:09:06 +0200260
Robert Richter90637592009-03-10 19:15:57 +0100261 op_amd_start_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Robert Richter6657fe42008-07-22 21:08:50 +0200264static void op_amd_stop(struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Robert Richterdea37662009-05-25 18:11:52 +0200266 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 int i;
268
Robert Richterfd13f6c2008-10-19 21:00:09 +0200269 /*
270 * Subtle: stop on all counters to avoid race with setting our
271 * pm callback
272 */
Robert Richter6e63ea42009-07-07 19:25:39 +0200273 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter4c168ea2008-09-24 11:08:52 +0200274 if (!reset_value[i])
Don Zickuscb9c4482006-09-26 10:52:26 +0200275 continue;
Robert Richterdea37662009-05-25 18:11:52 +0200276 rdmsrl(msrs->controls[i].addr, val);
277 val &= ~ARCH_PERFMON_EVENTSEL0_ENABLE;
278 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
Barry Kasindorf56784f12008-07-22 21:08:55 +0200280
Robert Richter90637592009-03-10 19:15:57 +0100281 op_amd_stop_ibs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Robert Richter6657fe42008-07-22 21:08:50 +0200284static void op_amd_shutdown(struct op_msrs const * const msrs)
Don Zickuscb9c4482006-09-26 10:52:26 +0200285{
286 int i;
287
Robert Richter6e63ea42009-07-07 19:25:39 +0200288 for (i = 0; i < NUM_COUNTERS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200289 if (msrs->counters[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200290 release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
291 }
Robert Richter6e63ea42009-07-07 19:25:39 +0200292 for (i = 0; i < NUM_CONTROLS; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200293 if (msrs->controls[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200294 release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
295 }
296}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Robert Richter9fa68122008-11-24 14:21:03 +0100298#ifdef CONFIG_OPROFILE_IBS
Robert Richtera4c408a2008-07-22 21:09:02 +0200299
Robert Richter7d77f2d2008-07-22 21:08:57 +0200300static u8 ibs_eilvt_off;
301
Barry Kasindorf56784f12008-07-22 21:08:55 +0200302static inline void apic_init_ibs_nmi_per_cpu(void *arg)
303{
Robert Richter7d77f2d2008-07-22 21:08:57 +0200304 ibs_eilvt_off = setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_NMI, 0);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200305}
306
307static inline void apic_clear_ibs_nmi_per_cpu(void *arg)
308{
309 setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_FIX, 1);
310}
311
Robert Richterfe615cb2008-11-24 14:58:03 +0100312static int init_ibs_nmi(void)
Robert Richter7d77f2d2008-07-22 21:08:57 +0200313{
314#define IBSCTL_LVTOFFSETVAL (1 << 8)
315#define IBSCTL 0x1cc
316 struct pci_dev *cpu_cfg;
317 int nodes;
318 u32 value = 0;
319
320 /* per CPU setup */
Robert Richterebb535d2008-07-22 21:08:59 +0200321 on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 1);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200322
323 nodes = 0;
324 cpu_cfg = NULL;
325 do {
326 cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
327 PCI_DEVICE_ID_AMD_10H_NB_MISC,
328 cpu_cfg);
329 if (!cpu_cfg)
330 break;
331 ++nodes;
332 pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
333 | IBSCTL_LVTOFFSETVAL);
334 pci_read_config_dword(cpu_cfg, IBSCTL, &value);
335 if (value != (ibs_eilvt_off | IBSCTL_LVTOFFSETVAL)) {
Robert Richter83bd9242008-12-15 15:09:50 +0100336 pci_dev_put(cpu_cfg);
Robert Richter7d77f2d2008-07-22 21:08:57 +0200337 printk(KERN_DEBUG "Failed to setup IBS LVT offset, "
338 "IBSCTL = 0x%08x", value);
339 return 1;
340 }
341 } while (1);
342
343 if (!nodes) {
344 printk(KERN_DEBUG "No CPU node configured for IBS");
345 return 1;
346 }
347
348#ifdef CONFIG_NUMA
349 /* Sanity check */
350 /* Works only for 64bit with proper numa implementation. */
351 if (nodes != num_possible_nodes()) {
352 printk(KERN_DEBUG "Failed to setup CPU node(s) for IBS, "
353 "found: %d, expected %d",
354 nodes, num_possible_nodes());
355 return 1;
356 }
357#endif
358 return 0;
359}
360
Robert Richterfe615cb2008-11-24 14:58:03 +0100361/* uninitialize the APIC for the IBS interrupts if needed */
362static void clear_ibs_nmi(void)
363{
Robert Richterfc81be82008-12-18 00:28:27 +0100364 if (has_ibs)
Robert Richterfe615cb2008-11-24 14:58:03 +0100365 on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1);
366}
367
Robert Richterfd13f6c2008-10-19 21:00:09 +0200368/* initialize the APIC for the IBS interrupts if available */
Robert Richterfe615cb2008-11-24 14:58:03 +0100369static void ibs_init(void)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200370{
Robert Richterfc81be82008-12-18 00:28:27 +0100371 has_ibs = boot_cpu_has(X86_FEATURE_IBS);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200372
Robert Richterfc81be82008-12-18 00:28:27 +0100373 if (!has_ibs)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200374 return;
375
Robert Richterfe615cb2008-11-24 14:58:03 +0100376 if (init_ibs_nmi()) {
Robert Richterfc81be82008-12-18 00:28:27 +0100377 has_ibs = 0;
Robert Richter852402c2008-07-22 21:09:06 +0200378 return;
379 }
380
381 printk(KERN_INFO "oprofile: AMD IBS detected\n");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200382}
383
Robert Richterfe615cb2008-11-24 14:58:03 +0100384static void ibs_exit(void)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200385{
Robert Richterfc81be82008-12-18 00:28:27 +0100386 if (!has_ibs)
Robert Richterfe615cb2008-11-24 14:58:03 +0100387 return;
388
389 clear_ibs_nmi();
Barry Kasindorf56784f12008-07-22 21:08:55 +0200390}
391
Robert Richter25ad2912008-09-05 17:12:36 +0200392static int (*create_arch_files)(struct super_block *sb, struct dentry *root);
Robert Richter270d3e12008-07-22 21:09:01 +0200393
Robert Richter25ad2912008-09-05 17:12:36 +0200394static int setup_ibs_files(struct super_block *sb, struct dentry *root)
Barry Kasindorf56784f12008-07-22 21:08:55 +0200395{
Barry Kasindorf56784f12008-07-22 21:08:55 +0200396 struct dentry *dir;
Robert Richter270d3e12008-07-22 21:09:01 +0200397 int ret = 0;
398
399 /* architecture specific files */
400 if (create_arch_files)
401 ret = create_arch_files(sb, root);
402
403 if (ret)
404 return ret;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200405
Robert Richterfc81be82008-12-18 00:28:27 +0100406 if (!has_ibs)
Robert Richter270d3e12008-07-22 21:09:01 +0200407 return ret;
408
409 /* model specific files */
Barry Kasindorf56784f12008-07-22 21:08:55 +0200410
411 /* setup some reasonable defaults */
412 ibs_config.max_cnt_fetch = 250000;
413 ibs_config.fetch_enabled = 0;
414 ibs_config.max_cnt_op = 250000;
415 ibs_config.op_enabled = 0;
416 ibs_config.dispatched_ops = 1;
Robert Richter2d55a472008-07-18 17:56:05 +0200417
418 dir = oprofilefs_mkdir(sb, root, "ibs_fetch");
419 oprofilefs_create_ulong(sb, dir, "enable",
420 &ibs_config.fetch_enabled);
421 oprofilefs_create_ulong(sb, dir, "max_count",
422 &ibs_config.max_cnt_fetch);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200423 oprofilefs_create_ulong(sb, dir, "rand_enable",
424 &ibs_config.rand_en);
Robert Richter2d55a472008-07-18 17:56:05 +0200425
Robert Richterccd755c2008-07-29 16:57:10 +0200426 dir = oprofilefs_mkdir(sb, root, "ibs_op");
Barry Kasindorf56784f12008-07-22 21:08:55 +0200427 oprofilefs_create_ulong(sb, dir, "enable",
Robert Richter2d55a472008-07-18 17:56:05 +0200428 &ibs_config.op_enabled);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200429 oprofilefs_create_ulong(sb, dir, "max_count",
Robert Richter2d55a472008-07-18 17:56:05 +0200430 &ibs_config.max_cnt_op);
Barry Kasindorf56784f12008-07-22 21:08:55 +0200431 oprofilefs_create_ulong(sb, dir, "dispatched_ops",
Robert Richter2d55a472008-07-18 17:56:05 +0200432 &ibs_config.dispatched_ops);
Robert Richterfc2bd732008-07-22 21:09:00 +0200433
434 return 0;
Barry Kasindorf56784f12008-07-22 21:08:55 +0200435}
436
Robert Richteradf5ec02008-07-22 21:08:48 +0200437static int op_amd_init(struct oprofile_operations *ops)
438{
Robert Richterfe615cb2008-11-24 14:58:03 +0100439 ibs_init();
Robert Richter270d3e12008-07-22 21:09:01 +0200440 create_arch_files = ops->create_files;
441 ops->create_files = setup_ibs_files;
Robert Richteradf5ec02008-07-22 21:08:48 +0200442 return 0;
443}
444
445static void op_amd_exit(void)
446{
Robert Richterfe615cb2008-11-24 14:58:03 +0100447 ibs_exit();
Robert Richteradf5ec02008-07-22 21:08:48 +0200448}
449
Robert Richter9fa68122008-11-24 14:21:03 +0100450#else
451
452/* no IBS support */
453
454static int op_amd_init(struct oprofile_operations *ops)
455{
456 return 0;
457}
458
459static void op_amd_exit(void) {}
460
461#endif /* CONFIG_OPROFILE_IBS */
Robert Richtera4c408a2008-07-22 21:09:02 +0200462
Robert Richter6657fe42008-07-22 21:08:50 +0200463struct op_x86_model_spec const op_amd_spec = {
Robert Richterc92960f2008-09-05 17:12:36 +0200464 .num_counters = NUM_COUNTERS,
465 .num_controls = NUM_CONTROLS,
Robert Richter3370d352009-05-25 15:10:32 +0200466 .reserved = MSR_AMD_EVENTSEL_RESERVED,
467 .event_mask = OP_EVENT_MASK,
468 .init = op_amd_init,
469 .exit = op_amd_exit,
Robert Richterc92960f2008-09-05 17:12:36 +0200470 .fill_in_addresses = &op_amd_fill_in_addresses,
471 .setup_ctrs = &op_amd_setup_ctrs,
472 .check_ctrs = &op_amd_check_ctrs,
473 .start = &op_amd_start,
474 .stop = &op_amd_stop,
Robert Richter3370d352009-05-25 15:10:32 +0200475 .shutdown = &op_amd_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476};