3 * athlon / K7 / K8 / Family 10h model-specific MSR operations
5 * @remark Copyright 2002-2009 OProfile authors
6 * @remark Read the file COPYING
9 * @author Philippe Elie
10 * @author Graydon Hoare
11 * @author Robert Richter <robert.richter@amd.com>
12 * @author Barry Kasindorf <barry.kasindorf@amd.com>
13 * @author Jason Yeh <jason.yeh@amd.com>
14 * @author Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
17 #include <linux/oprofile.h>
18 #include <linux/device.h>
19 #include <linux/pci.h>
20 #include <linux/percpu.h>
22 #include <asm/ptrace.h>
26 #include <asm/processor.h>
27 #include <asm/cpufeature.h>
29 #include "op_x86_model.h"
30 #include "op_counter.h"
32 #define NUM_COUNTERS 4
33 #define NUM_COUNTERS_F15H 6
34 #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
35 #define NUM_VIRT_COUNTERS 32
37 #define NUM_VIRT_COUNTERS 0
40 #define OP_EVENT_MASK 0x0FFF
41 #define OP_CTR_OVERFLOW (1ULL<<31)
43 #define MSR_AMD_EVENTSEL_RESERVED ((0xFFFFFCF0ULL<<32)|(1ULL<<21))
45 static int num_counters
;
46 static unsigned long reset_value
[OP_MAX_COUNTER
];
48 #define IBS_FETCH_SIZE 6
49 #define IBS_OP_SIZE 12
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 unsigned long branch_target
;
66 unsigned long sample_size
;
69 static struct ibs_config ibs_config
;
70 static struct ibs_state ibs_state
;
73 * IBS cpuid feature detection
76 #define IBS_CPUID_FEATURES 0x8000001b
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.
82 #define IBS_CAPS_AVAIL (1U<<0)
83 #define IBS_CAPS_FETCHSAM (1U<<1)
84 #define IBS_CAPS_OPSAM (1U<<2)
85 #define IBS_CAPS_RDWROPCNT (1U<<3)
86 #define IBS_CAPS_OPCNT (1U<<4)
87 #define IBS_CAPS_BRNTRGT (1U<<5)
88 #define IBS_CAPS_OPCNTEXT (1U<<6)
90 #define IBS_CAPS_DEFAULT (IBS_CAPS_AVAIL \
98 #define IBSCTL_LVT_OFFSET_VALID (1ULL<<8)
99 #define IBSCTL_LVT_OFFSET_MASK 0x0F
102 * IBS randomization macros
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))
108 static u32
get_ibs_caps(void)
111 unsigned int max_level
;
113 if (!boot_cpu_has(X86_FEATURE_IBS
))
116 /* check IBS cpuid feature flags */
117 max_level
= cpuid_eax(0x80000000);
118 if (max_level
< IBS_CPUID_FEATURES
)
119 return IBS_CAPS_DEFAULT
;
121 ibs_caps
= cpuid_eax(IBS_CPUID_FEATURES
);
122 if (!(ibs_caps
& IBS_CAPS_AVAIL
))
123 /* cpuid flags not valid */
124 return IBS_CAPS_DEFAULT
;
130 * 16-bit Linear Feedback Shift Register (LFSR)
133 * Feedback polynomial = X + X + X + X + 1
135 static unsigned int lfsr_random(void)
137 static unsigned int lfsr_value
= 0xF00D;
140 /* Compute next bit to shift in */
141 bit
= ((lfsr_value
>> 0) ^
144 (lfsr_value
>> 5)) & 0x0001;
146 /* Advance to next register value */
147 lfsr_value
= (lfsr_value
>> 1) | (bit
<< 15);
153 * IBS software randomization
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.
159 static inline u64
op_amd_randomize_ibs_op(u64 val
)
161 unsigned int random
= lfsr_random();
163 if (!(ibs_caps
& IBS_CAPS_RDWROPCNT
))
165 * Work around if the hw can not write to IbsOpCurCnt
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).
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
177 val
+= (s8
)(random
>> 4);
179 val
|= (u64
)(random
& IBS_RANDOM_MASK
) << 32;
185 op_amd_handle_ibs(struct pt_regs
* const regs
,
186 struct op_msrs
const * const msrs
)
189 struct op_entry entry
;
194 if (ibs_config
.fetch_enabled
) {
195 rdmsrl(MSR_AMD64_IBSFETCHCTL
, ctl
);
196 if (ctl
& IBS_FETCH_VAL
) {
197 rdmsrl(MSR_AMD64_IBSFETCHLINAD
, val
);
198 oprofile_write_reserve(&entry
, regs
, val
,
199 IBS_FETCH_CODE
, IBS_FETCH_SIZE
);
200 oprofile_add_data64(&entry
, val
);
201 oprofile_add_data64(&entry
, ctl
);
202 rdmsrl(MSR_AMD64_IBSFETCHPHYSAD
, val
);
203 oprofile_add_data64(&entry
, val
);
204 oprofile_write_commit(&entry
);
206 /* reenable the IRQ */
207 ctl
&= ~(IBS_FETCH_VAL
| IBS_FETCH_CNT
);
208 ctl
|= IBS_FETCH_ENABLE
;
209 wrmsrl(MSR_AMD64_IBSFETCHCTL
, ctl
);
213 if (ibs_config
.op_enabled
) {
214 rdmsrl(MSR_AMD64_IBSOPCTL
, ctl
);
215 if (ctl
& IBS_OP_VAL
) {
216 rdmsrl(MSR_AMD64_IBSOPRIP
, val
);
217 oprofile_write_reserve(&entry
, regs
, val
, IBS_OP_CODE
,
218 ibs_state
.sample_size
);
219 oprofile_add_data64(&entry
, val
);
220 rdmsrl(MSR_AMD64_IBSOPDATA
, val
);
221 oprofile_add_data64(&entry
, val
);
222 rdmsrl(MSR_AMD64_IBSOPDATA2
, val
);
223 oprofile_add_data64(&entry
, val
);
224 rdmsrl(MSR_AMD64_IBSOPDATA3
, val
);
225 oprofile_add_data64(&entry
, val
);
226 rdmsrl(MSR_AMD64_IBSDCLINAD
, val
);
227 oprofile_add_data64(&entry
, val
);
228 rdmsrl(MSR_AMD64_IBSDCPHYSAD
, val
);
229 oprofile_add_data64(&entry
, val
);
230 if (ibs_state
.branch_target
) {
231 rdmsrl(MSR_AMD64_IBSBRTARGET
, val
);
232 oprofile_add_data(&entry
, (unsigned long)val
);
234 oprofile_write_commit(&entry
);
236 /* reenable the IRQ */
237 ctl
= op_amd_randomize_ibs_op(ibs_state
.ibs_op_ctl
);
238 wrmsrl(MSR_AMD64_IBSOPCTL
, ctl
);
243 static inline void op_amd_start_ibs(void)
250 memset(&ibs_state
, 0, sizeof(ibs_state
));
253 * Note: Since the max count settings may out of range we
254 * write back the actual used values so that userland can read
258 if (ibs_config
.fetch_enabled
) {
259 val
= ibs_config
.max_cnt_fetch
>> 4;
260 val
= min(val
, IBS_FETCH_MAX_CNT
);
261 ibs_config
.max_cnt_fetch
= val
<< 4;
262 val
|= ibs_config
.rand_en
? IBS_FETCH_RAND_EN
: 0;
263 val
|= IBS_FETCH_ENABLE
;
264 wrmsrl(MSR_AMD64_IBSFETCHCTL
, val
);
267 if (ibs_config
.op_enabled
) {
268 val
= ibs_config
.max_cnt_op
>> 4;
269 if (!(ibs_caps
& IBS_CAPS_RDWROPCNT
)) {
271 * IbsOpCurCnt not supported. See
272 * op_amd_randomize_ibs_op() for details.
274 val
= clamp(val
, 0x0081ULL
, 0xFF80ULL
);
275 ibs_config
.max_cnt_op
= val
<< 4;
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
283 val
+= IBS_RANDOM_MAXCNT_OFFSET
;
284 if (ibs_caps
& IBS_CAPS_OPCNTEXT
)
285 val
= min(val
, IBS_OP_MAX_CNT_EXT
);
287 val
= min(val
, IBS_OP_MAX_CNT
);
288 ibs_config
.max_cnt_op
=
289 (val
- IBS_RANDOM_MAXCNT_OFFSET
) << 4;
291 val
= ((val
& ~IBS_OP_MAX_CNT
) << 4) | (val
& IBS_OP_MAX_CNT
);
292 val
|= ibs_config
.dispatched_ops
? IBS_OP_CNT_CTL
: 0;
293 val
|= IBS_OP_ENABLE
;
294 ibs_state
.ibs_op_ctl
= val
;
295 ibs_state
.sample_size
= IBS_OP_SIZE
;
296 if (ibs_config
.branch_target
) {
297 ibs_state
.branch_target
= 1;
298 ibs_state
.sample_size
++;
300 val
= op_amd_randomize_ibs_op(ibs_state
.ibs_op_ctl
);
301 wrmsrl(MSR_AMD64_IBSOPCTL
, val
);
305 static void op_amd_stop_ibs(void)
310 if (ibs_config
.fetch_enabled
)
311 /* clear max count and enable */
312 wrmsrl(MSR_AMD64_IBSFETCHCTL
, 0);
314 if (ibs_config
.op_enabled
)
315 /* clear max count and enable */
316 wrmsrl(MSR_AMD64_IBSOPCTL
, 0);
319 static inline int get_eilvt(int offset
)
321 return !setup_APIC_eilvt(offset
, 0, APIC_EILVT_MSG_NMI
, 1);
324 static inline int put_eilvt(int offset
)
326 return !setup_APIC_eilvt(offset
, 0, 0, 1);
329 static inline int ibs_eilvt_valid(void)
337 rdmsrl(MSR_AMD64_IBSCTL
, val
);
338 offset
= val
& IBSCTL_LVT_OFFSET_MASK
;
340 if (!(val
& IBSCTL_LVT_OFFSET_VALID
)) {
341 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
);
346 if (!get_eilvt(offset
)) {
347 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
);
359 static inline int get_ibs_offset(void)
363 rdmsrl(MSR_AMD64_IBSCTL
, val
);
364 if (!(val
& IBSCTL_LVT_OFFSET_VALID
))
367 return val
& IBSCTL_LVT_OFFSET_MASK
;
370 static void setup_APIC_ibs(void)
374 offset
= get_ibs_offset();
378 if (!setup_APIC_eilvt(offset
, 0, APIC_EILVT_MSG_NMI
, 0))
381 pr_warn("oprofile: IBS APIC setup failed on cpu #%d\n",
385 static void clear_APIC_ibs(void)
389 offset
= get_ibs_offset();
391 setup_APIC_eilvt(offset
, 0, APIC_EILVT_MSG_FIX
, 1);
394 #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
396 static void op_mux_switch_ctrl(struct op_x86_model_spec
const *model
,
397 struct op_msrs
const * const msrs
)
402 /* enable active counters */
403 for (i
= 0; i
< num_counters
; ++i
) {
404 int virt
= op_x86_phys_to_virt(i
);
405 if (!reset_value
[virt
])
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
);
416 /* functions for op_amd_spec */
418 static void op_amd_shutdown(struct op_msrs
const * const msrs
)
422 for (i
= 0; i
< num_counters
; ++i
) {
423 if (!msrs
->counters
[i
].addr
)
425 release_perfctr_nmi(MSR_K7_PERFCTR0
+ i
);
426 release_evntsel_nmi(MSR_K7_EVNTSEL0
+ i
);
430 static int op_amd_fill_in_addresses(struct op_msrs
* const msrs
)
434 for (i
= 0; i
< num_counters
; i
++) {
435 if (!reserve_perfctr_nmi(MSR_K7_PERFCTR0
+ i
))
437 if (!reserve_evntsel_nmi(MSR_K7_EVNTSEL0
+ i
)) {
438 release_perfctr_nmi(MSR_K7_PERFCTR0
+ i
);
441 /* both registers must be reserved */
442 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);
446 msrs
->controls
[i
].addr
= MSR_K7_EVNTSEL0
+ i
;
447 msrs
->counters
[i
].addr
= MSR_K7_PERFCTR0
+ i
;
451 if (!counter_config
[i
].enabled
)
453 op_x86_warn_reserved(i
);
454 op_amd_shutdown(msrs
);
461 static void op_amd_setup_ctrs(struct op_x86_model_spec
const *model
,
462 struct op_msrs
const * const msrs
)
467 /* setup reset_value */
468 for (i
= 0; i
< OP_MAX_COUNTER
; ++i
) {
469 if (counter_config
[i
].enabled
470 && msrs
->counters
[op_x86_virt_to_phys(i
)].addr
)
471 reset_value
[i
] = counter_config
[i
].count
;
476 /* clear all counters */
477 for (i
= 0; i
< num_counters
; ++i
) {
478 if (!msrs
->controls
[i
].addr
)
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
);
486 * avoid a false detection of ctr overflows in NMI
489 wrmsrl(msrs
->counters
[i
].addr
, -1LL);
492 /* enable active counters */
493 for (i
= 0; i
< num_counters
; ++i
) {
494 int virt
= op_x86_phys_to_virt(i
);
495 if (!reset_value
[virt
])
498 /* setup counter registers */
499 wrmsrl(msrs
->counters
[i
].addr
, -(u64
)reset_value
[virt
]);
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
);
512 static void op_amd_cpu_shutdown(void)
518 static int op_amd_check_ctrs(struct pt_regs
* const regs
,
519 struct op_msrs
const * const msrs
)
524 for (i
= 0; i
< num_counters
; ++i
) {
525 int virt
= op_x86_phys_to_virt(i
);
526 if (!reset_value
[virt
])
528 rdmsrl(msrs
->counters
[i
].addr
, val
);
529 /* bit is clear if overflowed: */
530 if (val
& OP_CTR_OVERFLOW
)
532 oprofile_add_sample(regs
, virt
);
533 wrmsrl(msrs
->counters
[i
].addr
, -(u64
)reset_value
[virt
]);
536 op_amd_handle_ibs(regs
, msrs
);
538 /* See op_model_ppro.c */
542 static void op_amd_start(struct op_msrs
const * const msrs
)
547 for (i
= 0; i
< num_counters
; ++i
) {
548 if (!reset_value
[op_x86_phys_to_virt(i
)])
550 rdmsrl(msrs
->controls
[i
].addr
, val
);
551 val
|= ARCH_PERFMON_EVENTSEL_ENABLE
;
552 wrmsrl(msrs
->controls
[i
].addr
, val
);
558 static void op_amd_stop(struct op_msrs
const * const msrs
)
564 * Subtle: stop on all counters to avoid race with setting our
567 for (i
= 0; i
< num_counters
; ++i
) {
568 if (!reset_value
[op_x86_phys_to_virt(i
)])
570 rdmsrl(msrs
->controls
[i
].addr
, val
);
571 val
&= ~ARCH_PERFMON_EVENTSEL_ENABLE
;
572 wrmsrl(msrs
->controls
[i
].addr
, val
);
578 static int setup_ibs_ctl(int ibs_eilvt_off
)
580 struct pci_dev
*cpu_cfg
;
587 cpu_cfg
= pci_get_device(PCI_VENDOR_ID_AMD
,
588 PCI_DEVICE_ID_AMD_10H_NB_MISC
,
593 pci_write_config_dword(cpu_cfg
, IBSCTL
, ibs_eilvt_off
594 | IBSCTL_LVT_OFFSET_VALID
);
595 pci_read_config_dword(cpu_cfg
, IBSCTL
, &value
);
596 if (value
!= (ibs_eilvt_off
| IBSCTL_LVT_OFFSET_VALID
)) {
597 pci_dev_put(cpu_cfg
);
598 printk(KERN_DEBUG
"Failed to setup IBS LVT offset, "
599 "IBSCTL = 0x%08x\n", value
);
605 printk(KERN_DEBUG
"No CPU node configured for IBS\n");
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.
620 static int force_ibs_eilvt_setup(void)
626 /* find the next free available EILVT entry, skip offset 0 */
627 for (offset
= 1; offset
< APIC_EILVT_NR_MAX
; offset
++) {
628 if (get_eilvt(offset
))
633 if (offset
== APIC_EILVT_NR_MAX
) {
634 printk(KERN_DEBUG
"No EILVT entry available\n");
638 ret
= setup_ibs_ctl(offset
);
642 if (!ibs_eilvt_valid()) {
647 pr_err(FW_BUG
"using offset %d for IBS interrupts\n", offset
);
648 pr_err(FW_BUG
"workaround enabled for IBS LVT offset\n");
659 * check and reserve APIC extended interrupt LVT offset for IBS if
663 static void init_ibs(void)
665 ibs_caps
= get_ibs_caps();
670 if (ibs_eilvt_valid())
673 if (!force_ibs_eilvt_setup())
676 /* Failed to setup ibs */
681 printk(KERN_INFO
"oprofile: AMD IBS detected (0x%08x)\n", ibs_caps
);
684 static int (*create_arch_files
)(struct super_block
*sb
, struct dentry
*root
);
686 static int setup_ibs_files(struct super_block
*sb
, struct dentry
*root
)
691 /* architecture specific files */
692 if (create_arch_files
)
693 ret
= create_arch_files(sb
, root
);
701 /* model specific files */
703 /* setup some reasonable defaults */
704 memset(&ibs_config
, 0, sizeof(ibs_config
));
705 ibs_config
.max_cnt_fetch
= 250000;
706 ibs_config
.max_cnt_op
= 250000;
708 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
);
718 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
);
727 if (ibs_caps
& IBS_CAPS_BRNTRGT
)
728 oprofilefs_create_ulong(sb
, dir
, "branch_target",
729 &ibs_config
.branch_target
);
735 struct op_x86_model_spec op_amd_spec
;
737 static int op_amd_init(struct oprofile_operations
*ops
)
740 create_arch_files
= ops
->create_files
;
741 ops
->create_files
= setup_ibs_files
;
743 if (boot_cpu_data
.x86
== 0x15) {
744 num_counters
= NUM_COUNTERS_F15H
;
746 num_counters
= NUM_COUNTERS
;
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
);
756 struct op_x86_model_spec op_amd_spec
= {
757 /* num_counters/num_controls filled in at runtime */
758 .reserved
= MSR_AMD_EVENTSEL_RESERVED
,
759 .event_mask
= OP_EVENT_MASK
,
761 .fill_in_addresses
= &op_amd_fill_in_addresses
,
762 .setup_ctrs
= &op_amd_setup_ctrs
,
763 .cpu_down
= &op_amd_cpu_shutdown
,
764 .check_ctrs
= &op_amd_check_ctrs
,
765 .start
= &op_amd_start
,
766 .stop
= &op_amd_stop
,
767 .shutdown
= &op_amd_shutdown
,
768 #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
769 .switch_ctrl
= &op_mux_switch_ctrl
,