aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2012-10-31 01:29:52 -0400
committerLen Brown <len.brown@intel.com>2012-11-23 21:40:04 -0500
commit9c63a650bb100e7553d60c991ba0c5db9c743239 (patch)
treebaa57daf942bbf8e121400c0a79528e6a5f63fb7 /tools
parentd91bb17c2a874493603c4d99db305d8caf2d180c (diff)
tools/power/x86/turbostat: share kernel MSR #defines
Now that turbostat is built in the kernel tree, it can share MSR #defines with the kernel. Signed-off-by: Len Brown <len.brown@intel.com> Cc: x86@kernel.org
Diffstat (limited to 'tools')
-rw-r--r--tools/power/x86/turbostat/Makefile1
-rw-r--r--tools/power/x86/turbostat/turbostat.c26
2 files changed, 8 insertions, 19 deletions
diff --git a/tools/power/x86/turbostat/Makefile b/tools/power/x86/turbostat/Makefile
index f85649554191..51880e8467b3 100644
--- a/tools/power/x86/turbostat/Makefile
+++ b/tools/power/x86/turbostat/Makefile
@@ -1,5 +1,6 @@
1turbostat : turbostat.c 1turbostat : turbostat.c
2CFLAGS += -Wall 2CFLAGS += -Wall
3CFLAGS += -I../../../../arch/x86/include/
3 4
4clean : 5clean :
5 rm -f turbostat 6 rm -f turbostat
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c
index ea095abbe97e..3c063a00f3bf 100644
--- a/tools/power/x86/turbostat/turbostat.c
+++ b/tools/power/x86/turbostat/turbostat.c
@@ -20,6 +20,7 @@
20 */ 20 */
21 21
22#define _GNU_SOURCE 22#define _GNU_SOURCE
23#include <asm/msr.h>
23#include <stdio.h> 24#include <stdio.h>
24#include <unistd.h> 25#include <unistd.h>
25#include <sys/types.h> 26#include <sys/types.h>
@@ -35,19 +36,6 @@
35#include <ctype.h> 36#include <ctype.h>
36#include <sched.h> 37#include <sched.h>
37 38
38#define MSR_NEHALEM_PLATFORM_INFO 0xCE
39#define MSR_NEHALEM_TURBO_RATIO_LIMIT 0x1AD
40#define MSR_IVT_TURBO_RATIO_LIMIT 0x1AE
41#define MSR_APERF 0xE8
42#define MSR_MPERF 0xE7
43#define MSR_PKG_C2_RESIDENCY 0x60D /* SNB only */
44#define MSR_PKG_C3_RESIDENCY 0x3F8
45#define MSR_PKG_C6_RESIDENCY 0x3F9
46#define MSR_PKG_C7_RESIDENCY 0x3FA /* SNB only */
47#define MSR_CORE_C3_RESIDENCY 0x3FC
48#define MSR_CORE_C6_RESIDENCY 0x3FD
49#define MSR_CORE_C7_RESIDENCY 0x3FE /* SNB only */
50
51char *proc_stat = "/proc/stat"; 39char *proc_stat = "/proc/stat";
52unsigned int interval_sec = 5; /* set with -i interval_sec */ 40unsigned int interval_sec = 5; /* set with -i interval_sec */
53unsigned int verbose; /* set with -v */ 41unsigned int verbose; /* set with -v */
@@ -674,9 +662,9 @@ int get_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
674 t->tsc = rdtsc(); /* we are running on local CPU of interest */ 662 t->tsc = rdtsc(); /* we are running on local CPU of interest */
675 663
676 if (has_aperf) { 664 if (has_aperf) {
677 if (get_msr(cpu, MSR_APERF, &t->aperf)) 665 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
678 return -3; 666 return -3;
679 if (get_msr(cpu, MSR_MPERF, &t->mperf)) 667 if (get_msr(cpu, MSR_IA32_MPERF, &t->mperf))
680 return -4; 668 return -4;
681 } 669 }
682 670
@@ -742,10 +730,10 @@ void print_verbose_header(void)
742 if (!do_nehalem_platform_info) 730 if (!do_nehalem_platform_info)
743 return; 731 return;
744 732
745 get_msr(0, MSR_NEHALEM_PLATFORM_INFO, &msr); 733 get_msr(0, MSR_NHM_PLATFORM_INFO, &msr);
746 734
747 if (verbose > 1) 735 if (verbose > 1)
748 fprintf(stderr, "MSR_NEHALEM_PLATFORM_INFO: 0x%llx\n", msr); 736 fprintf(stderr, "MSR_NHM_PLATFORM_INFO: 0x%llx\n", msr);
749 737
750 ratio = (msr >> 40) & 0xFF; 738 ratio = (msr >> 40) & 0xFF;
751 fprintf(stderr, "%d * %.0f = %.0f MHz max efficiency\n", 739 fprintf(stderr, "%d * %.0f = %.0f MHz max efficiency\n",
@@ -808,10 +796,10 @@ print_nhm_turbo_ratio_limits:
808 if (!do_nehalem_turbo_ratio_limit) 796 if (!do_nehalem_turbo_ratio_limit)
809 return; 797 return;
810 798
811 get_msr(0, MSR_NEHALEM_TURBO_RATIO_LIMIT, &msr); 799 get_msr(0, MSR_NHM_TURBO_RATIO_LIMIT, &msr);
812 800
813 if (verbose > 1) 801 if (verbose > 1)
814 fprintf(stderr, "MSR_NEHALEM_TURBO_RATIO_LIMIT: 0x%llx\n", msr); 802 fprintf(stderr, "MSR_NHM_TURBO_RATIO_LIMIT: 0x%llx\n", msr);
815 803
816 ratio = (msr >> 56) & 0xFF; 804 ratio = (msr >> 56) & 0xFF;
817 if (ratio) 805 if (ratio)