initial commit with v2.6.9
[linux-2.6.9-moxart.git] / arch / i386 / oprofile / op_model_ppro.c
blob0cc80654db626cbc2f374880e395dbadcefd3594
1 /**
2 * @file op_model_ppro.h
3 * pentium pro / P6 model-specific MSR operations
5 * @remark Copyright 2002 OProfile authors
6 * @remark Read the file COPYING
8 * @author John Levon
9 * @author Philippe Elie
10 * @author Graydon Hoare
13 #include <linux/oprofile.h>
14 #include <asm/ptrace.h>
15 #include <asm/msr.h>
16 #include <asm/apic.h>
18 #include "op_x86_model.h"
19 #include "op_counter.h"
21 #define NUM_COUNTERS 2
22 #define NUM_CONTROLS 2
24 #define CTR_READ(l,h,msrs,c) do {rdmsr(msrs->counters[(c)].addr, (l), (h));} while (0)
25 #define CTR_WRITE(l,msrs,c) do {wrmsr(msrs->counters[(c)].addr, -(u32)(l), -1);} while (0)
26 #define CTR_OVERFLOWED(n) (!((n) & (1U<<31)))
28 #define CTRL_READ(l,h,msrs,c) do {rdmsr((msrs->controls[(c)].addr), (l), (h));} while (0)
29 #define CTRL_WRITE(l,h,msrs,c) do {wrmsr((msrs->controls[(c)].addr), (l), (h));} while (0)
30 #define CTRL_SET_ACTIVE(n) (n |= (1<<22))
31 #define CTRL_SET_INACTIVE(n) (n &= ~(1<<22))
32 #define CTRL_CLEAR(x) (x &= (1<<21))
33 #define CTRL_SET_ENABLE(val) (val |= 1<<20)
34 #define CTRL_SET_USR(val,u) (val |= ((u & 1) << 16))
35 #define CTRL_SET_KERN(val,k) (val |= ((k & 1) << 17))
36 #define CTRL_SET_UM(val, m) (val |= (m << 8))
37 #define CTRL_SET_EVENT(val, e) (val |= e)
39 static unsigned long reset_value[NUM_COUNTERS];
41 static void ppro_fill_in_addresses(struct op_msrs * const msrs)
43 msrs->counters[0].addr = MSR_P6_PERFCTR0;
44 msrs->counters[1].addr = MSR_P6_PERFCTR1;
46 msrs->controls[0].addr = MSR_P6_EVNTSEL0;
47 msrs->controls[1].addr = MSR_P6_EVNTSEL1;
51 static void ppro_setup_ctrs(struct op_msrs const * const msrs)
53 unsigned int low, high;
54 int i;
56 /* clear all counters */
57 for (i = 0 ; i < NUM_CONTROLS; ++i) {
58 CTRL_READ(low, high, msrs, i);
59 CTRL_CLEAR(low);
60 CTRL_WRITE(low, high, msrs, i);
63 /* avoid a false detection of ctr overflows in NMI handler */
64 for (i = 0; i < NUM_COUNTERS; ++i) {
65 CTR_WRITE(1, msrs, i);
68 /* enable active counters */
69 for (i = 0; i < NUM_COUNTERS; ++i) {
70 if (counter_config[i].enabled) {
71 reset_value[i] = counter_config[i].count;
73 CTR_WRITE(counter_config[i].count, msrs, i);
75 CTRL_READ(low, high, msrs, i);
76 CTRL_CLEAR(low);
77 CTRL_SET_ENABLE(low);
78 CTRL_SET_USR(low, counter_config[i].user);
79 CTRL_SET_KERN(low, counter_config[i].kernel);
80 CTRL_SET_UM(low, counter_config[i].unit_mask);
81 CTRL_SET_EVENT(low, counter_config[i].event);
82 CTRL_WRITE(low, high, msrs, i);
88 static int ppro_check_ctrs(unsigned int const cpu,
89 struct op_msrs const * const msrs,
90 struct pt_regs * const regs)
92 unsigned int low, high;
93 int i;
94 unsigned long eip = profile_pc(regs);
95 int is_kernel = !user_mode(regs);
97 for (i = 0 ; i < NUM_COUNTERS; ++i) {
98 CTR_READ(low, high, msrs, i);
99 if (CTR_OVERFLOWED(low)) {
100 oprofile_add_sample(eip, is_kernel, i, cpu);
101 CTR_WRITE(reset_value[i], msrs, i);
105 /* Only P6 based Pentium M need to re-unmask the apic vector but it
106 * doesn't hurt other P6 variant */
107 apic_write(APIC_LVTPC, apic_read(APIC_LVTPC) & ~APIC_LVT_MASKED);
109 /* We can't work out if we really handled an interrupt. We
110 * might have caught a *second* counter just after overflowing
111 * the interrupt for this counter then arrives
112 * and we don't find a counter that's overflowed, so we
113 * would return 0 and get dazed + confused. Instead we always
114 * assume we found an overflow. This sucks.
116 return 1;
120 static void ppro_start(struct op_msrs const * const msrs)
122 unsigned int low,high;
123 CTRL_READ(low, high, msrs, 0);
124 CTRL_SET_ACTIVE(low);
125 CTRL_WRITE(low, high, msrs, 0);
129 static void ppro_stop(struct op_msrs const * const msrs)
131 unsigned int low,high;
132 CTRL_READ(low, high, msrs, 0);
133 CTRL_SET_INACTIVE(low);
134 CTRL_WRITE(low, high, msrs, 0);
138 struct op_x86_model_spec const op_ppro_spec = {
139 .num_counters = NUM_COUNTERS,
140 .num_controls = NUM_CONTROLS,
141 .fill_in_addresses = &ppro_fill_in_addresses,
142 .setup_ctrs = &ppro_setup_ctrs,
143 .check_ctrs = &ppro_check_ctrs,
144 .start = &ppro_start,
145 .stop = &ppro_stop