Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 1 | .TH CPUPOWER\-MONITOR "1" "22/02/2011" "" "cpupower Manual" |
| 2 | .SH NAME |
| 3 | cpupower\-monitor \- Report processor frequency and idle statistics |
| 4 | .SH SYNOPSIS |
| 5 | .ft B |
| 6 | .B cpupower monitor |
| 7 | .RB "\-l" |
| 8 | |
| 9 | .B cpupower monitor |
Thomas Renninger | c8cfc3c | 2012-11-27 13:17:48 +0100 | [diff] [blame] | 10 | .RB [ -c ] [ "\-m <mon1>," [ "<mon2>,..." ] ] |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 11 | .RB [ "\-i seconds" ] |
| 12 | .br |
| 13 | .B cpupower monitor |
Thomas Renninger | c8cfc3c | 2012-11-27 13:17:48 +0100 | [diff] [blame] | 14 | .RB [ -c ][ "\-m <mon1>," [ "<mon2>,..." ] ] |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 15 | .RB command |
| 16 | .br |
| 17 | .SH DESCRIPTION |
| 18 | \fBcpupower-monitor \fP reports processor topology, frequency and idle power |
| 19 | state statistics. Either \fBcommand\fP is forked and |
| 20 | statistics are printed upon its completion, or statistics are printed periodically. |
| 21 | |
| 22 | \fBcpupower-monitor \fP implements independent processor sleep state and |
| 23 | frequency counters. Some are retrieved from kernel statistics, some are |
| 24 | directly reading out hardware registers. Use \-l to get an overview which are |
| 25 | supported on your system. |
| 26 | |
| 27 | .SH Options |
| 28 | .PP |
| 29 | \-l |
| 30 | .RS 4 |
| 31 | List available monitors on your system. Additional details about each monitor |
| 32 | are shown: |
| 33 | .RS 2 |
| 34 | .IP \(bu |
| 35 | The name in quotation marks which can be passed to the \-m parameter. |
| 36 | .IP \(bu |
| 37 | The number of different counters the monitor supports in brackets. |
| 38 | .IP \(bu |
| 39 | The amount of time in seconds the counters might overflow, due to |
| 40 | implementation constraints. |
| 41 | .IP \(bu |
| 42 | The name and a description of each counter and its processor hierarchy level |
| 43 | coverage in square brackets: |
| 44 | .RS 4 |
| 45 | .IP \(bu |
| 46 | [T] \-> Thread |
| 47 | .IP \(bu |
| 48 | [C] \-> Core |
| 49 | .IP \(bu |
| 50 | [P] \-> Processor Package (Socket) |
| 51 | .IP \(bu |
| 52 | [M] \-> Machine/Platform wide counter |
| 53 | .RE |
| 54 | .RE |
| 55 | .RE |
| 56 | .PP |
| 57 | \-m <mon1>,<mon2>,... |
| 58 | .RS 4 |
| 59 | Only display specific monitors. Use the monitor string(s) provided by \-l option. |
| 60 | .RE |
| 61 | .PP |
| 62 | \-i seconds |
| 63 | .RS 4 |
| 64 | Measure intervall. |
| 65 | .RE |
| 66 | .PP |
Thomas Renninger | c8cfc3c | 2012-11-27 13:17:48 +0100 | [diff] [blame] | 67 | \-c |
| 68 | .RS 4 |
| 69 | Schedule the process on every core before starting and ending measuring. |
| 70 | This could be needed for the Idle_Stats monitor when no other MSR based |
| 71 | monitor (has to be run on the core that is measured) is run in parallel. |
| 72 | This is to wake up the processors from deeper sleep states and let the |
| 73 | kernel re |
| 74 | -account its cpuidle (C-state) information before reading the |
| 75 | cpuidle timings from sysfs. |
| 76 | .RE |
| 77 | .PP |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 78 | command |
| 79 | .RS 4 |
| 80 | Measure idle and frequency characteristics of an arbitrary command/workload. |
| 81 | The executable \fBcommand\fP is forked and upon its exit, statistics gathered since it was |
| 82 | forked are displayed. |
| 83 | .RE |
| 84 | .PP |
| 85 | \-v |
| 86 | .RS 4 |
| 87 | Increase verbosity if the binary was compiled with the DEBUG option set. |
| 88 | .RE |
| 89 | |
| 90 | .SH MONITOR DESCRIPTIONS |
| 91 | .SS "Idle_Stats" |
| 92 | Shows statistics of the cpuidle kernel subsystem. Values are retrieved from |
| 93 | /sys/devices/system/cpu/cpu*/cpuidle/state*/. |
| 94 | The kernel updates these values every time an idle state is entered or |
| 95 | left. Therefore there can be some inaccuracy when cores are in an idle |
| 96 | state for some time when the measure starts or ends. In worst case it can happen |
| 97 | that one core stayed in an idle state for the whole measure time and the idle |
| 98 | state usage time as exported by the kernel did not get updated. In this case |
| 99 | a state residency of 0 percent is shown while it was 100. |
| 100 | |
| 101 | .SS "Mperf" |
| 102 | The name comes from the aperf/mperf (average and maximum) MSR registers used |
| 103 | which are available on recent X86 processors. It shows the average frequency |
| 104 | (including boost frequencies). |
| 105 | The fact that on all recent hardware the mperf timer stops ticking in any idle |
| 106 | state it is also used to show C0 (processor is active) and Cx (processor is in |
| 107 | any sleep state) times. These counters do not have the inaccuracy restrictions |
| 108 | the "Idle_Stats" counters may show. |
| 109 | May work poorly on Linux-2.6.20 through 2.6.29, as the \fBacpi-cpufreq \fP |
| 110 | kernel frequency driver periodically cleared aperf/mperf registers in those |
| 111 | kernels. |
| 112 | |
Thomas Renninger | c4f3610 | 2013-06-28 15:34:31 +0200 | [diff] [blame] | 113 | .SS "Nehalem" "SandyBridge" "HaswellExtended" |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 114 | Intel Core and Package sleep state counters. |
| 115 | Threads (hyperthreaded cores) may not be able to enter deeper core states if |
| 116 | its sibling is utilized. |
| 117 | Deepest package sleep states may in reality show up as machine/platform wide |
| 118 | sleep states and can only be entered if all cores are idle. Look up Intel |
| 119 | manuals (some are provided in the References section) for further details. |
Thomas Renninger | c4f3610 | 2013-06-28 15:34:31 +0200 | [diff] [blame] | 120 | The monitors are named after the CPU family where the sleep state capabilities |
| 121 | got introduced and may not match exactly the CPU name of the platform. |
| 122 | For example an IvyBridge processor has sleep state capabilities which got |
| 123 | introduced in Nehalem and SandyBridge processor families. |
| 124 | Thus on an IvyBridge processor one will get Nehalem and SandyBridge sleep |
| 125 | state monitors. |
| 126 | HaswellExtended extra package sleep state capabilities are available only in a |
| 127 | specific Haswell (family 0x45) and probably also other future processors. |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 128 | |
Thomas Renninger | f642089 | 2011-10-11 15:33:51 +0200 | [diff] [blame] | 129 | .SS "Fam_12h" "Fam_14h" |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 130 | AMD laptop and desktop processor (family 12h and 14h) sleep state counters. |
| 131 | The registers are accessed via PCI and therefore can still be read out while |
| 132 | cores have been offlined. |
| 133 | |
| 134 | There is one special counter: NBP1 (North Bridge P1). |
| 135 | This one always returns 0 or 1, depending on whether the North Bridge P1 |
| 136 | power state got entered at least once during measure time. |
| 137 | Being able to enter NBP1 state also depends on graphics power management. |
| 138 | Therefore this counter can be used to verify whether the graphics' driver |
| 139 | power management is working as expected. |
| 140 | |
| 141 | .SH EXAMPLES |
| 142 | |
| 143 | cpupower monitor -l" may show: |
| 144 | .RS 4 |
| 145 | Monitor "Mperf" (3 states) \- Might overflow after 922000000 s |
| 146 | |
| 147 | ... |
| 148 | |
| 149 | Monitor "Idle_Stats" (3 states) \- Might overflow after 4294967295 s |
| 150 | |
| 151 | ... |
| 152 | |
| 153 | .RE |
| 154 | cpupower monitor \-m "Idle_Stats,Mperf" scp /tmp/test /nfs/tmp |
| 155 | |
| 156 | Monitor the scp command, show both Mperf and Idle_Stats states counter |
| 157 | statistics, but in exchanged order. |
| 158 | |
| 159 | |
| 160 | |
| 161 | .RE |
| 162 | Be careful that the typical command to fully utilize one CPU by doing: |
| 163 | |
| 164 | cpupower monitor cat /dev/zero >/dev/null |
| 165 | |
| 166 | Does not work as expected, because the measured output is redirected to |
| 167 | /dev/null. This could get workarounded by putting the line into an own, tiny |
| 168 | shell script. Hit CTRL\-c to terminate the command and get the measure output |
| 169 | displayed. |
| 170 | |
| 171 | .SH REFERENCES |
| 172 | "BIOS and Kernel Developer’s Guide (BKDG) for AMD Family 14h Processors" |
| 173 | http://support.amd.com/us/Processor_TechDocs/43170.pdf |
| 174 | |
| 175 | "Intel® Turbo Boost Technology |
| 176 | in Intel® Core™ Microarchitecture (Nehalem) Based Processors" |
| 177 | http://download.intel.com/design/processor/applnots/320354.pdf |
| 178 | |
| 179 | "Intel® 64 and IA-32 Architectures Software Developer's Manual |
| 180 | Volume 3B: System Programming Guide" |
| 181 | http://www.intel.com/products/processor/manuals |
| 182 | |
| 183 | .SH FILES |
| 184 | .ta |
| 185 | .nf |
| 186 | /dev/cpu/*/msr |
| 187 | /sys/devices/system/cpu/cpu*/cpuidle/state*/. |
| 188 | .fi |
| 189 | |
| 190 | .SH "SEE ALSO" |
| 191 | powertop(8), msr(4), vmstat(8) |
| 192 | .PP |
| 193 | .SH AUTHORS |
| 194 | .nf |
| 195 | Written by Thomas Renninger <trenn@suse.de> |
| 196 | |
| 197 | Nehalem, SandyBridge monitors and command passing |
| 198 | based on turbostat.8 from Len Brown <len.brown@intel.com> |