9 #if defined(__i386__) || defined(__x86_64__)
19 #define MSR_PKG_C3_RESIDENCY 0x3F8
20 #define MSR_PKG_C6_RESIDENCY 0x3F9
21 #define MSR_CORE_C3_RESIDENCY 0x3FC
22 #define MSR_CORE_C6_RESIDENCY 0x3FD
26 #define NHM_CSTATE_COUNT 4
28 enum intel_nhm_id {
C3 = 0,
C6,
PC3,
PC6, TSC = 0xFFFF };
30 static int nhm_get_count_percent(
unsigned int self_id,
double *
percent,
33 static cstate_t nhm_cstates[NHM_CSTATE_COUNT] = {
36 .desc =
N_(
"Processor Core C3"),
39 .get_count_percent = nhm_get_count_percent,
43 .desc =
N_(
"Processor Core C6"),
46 .get_count_percent = nhm_get_count_percent,
51 .desc =
N_(
"Processor Package C3"),
54 .get_count_percent = nhm_get_count_percent,
58 .desc =
N_(
"Processor Package C6"),
61 .get_count_percent = nhm_get_count_percent,
65 static unsigned long long tsc_at_measure_start;
66 static unsigned long long tsc_at_measure_end;
67 static unsigned long long *previous_count[NHM_CSTATE_COUNT];
68 static unsigned long long *current_count[NHM_CSTATE_COUNT];
72 static int nhm_get_count(
enum intel_nhm_id
id,
unsigned long long *
val,
96 if (read_msr(cpu, msr, val))
102 static int nhm_get_count_percent(
unsigned int id,
double *
percent,
111 (current_count[
id][
cpu] - previous_count[
id][
cpu])) /
112 (tsc_at_measure_end - tsc_at_measure_start);
114 dprint(
"%s: previous: %llu - current: %llu - (%u)\n",
115 nhm_cstates[
id].
name, previous_count[
id][cpu],
116 current_count[
id][cpu], cpu);
118 dprint(
"%s: tsc_diff: %llu - count_diff: %llu - percent: %2.f (%u)\n",
119 nhm_cstates[
id].
name,
120 (
unsigned long long) tsc_at_measure_end - tsc_at_measure_start,
121 current_count[
id][cpu] - previous_count[
id][cpu],
127 static int nhm_start(
void)
130 unsigned long long dbg,
val;
132 nhm_get_count(TSC, &tsc_at_measure_start, 0);
134 for (num = 0; num < NHM_CSTATE_COUNT; num++) {
136 is_valid[
cpu] = !nhm_get_count(num, &val, cpu);
137 previous_count[num][
cpu] =
val;
140 nhm_get_count(TSC, &dbg, 0);
141 dprint(
"TSC diff: %llu\n", dbg - tsc_at_measure_start);
145 static int nhm_stop(
void)
147 unsigned long long val;
148 unsigned long long dbg;
151 nhm_get_count(TSC, &tsc_at_measure_end, 0);
153 for (num = 0; num < NHM_CSTATE_COUNT; num++) {
155 is_valid[
cpu] = !nhm_get_count(num, &val, cpu);
156 current_count[num][
cpu] =
val;
159 nhm_get_count(TSC, &dbg, 0);
160 dprint(
"TSC diff: %llu\n", dbg - tsc_at_measure_end);
181 is_valid = calloc(
cpu_count,
sizeof(
int));
182 for (num = 0; num < NHM_CSTATE_COUNT; num++) {
184 sizeof(
unsigned long long));
186 sizeof(
unsigned long long));
189 intel_nhm_monitor.name_len =
strlen(intel_nhm_monitor.name);
190 return &intel_nhm_monitor;
193 void intel_nhm_unregister(
void)
197 for (num = 0; num < NHM_CSTATE_COUNT; num++) {
198 free(previous_count[num]);
199 free(current_count[num]);
206 .hw_states_num = NHM_CSTATE_COUNT,
207 .hw_states = nhm_cstates,
210 .do_register = intel_nhm_register,
211 .unregister = intel_nhm_unregister,
213 .overflow_s = 922000000