92 lines · plain
1.TH "CPUPOWER-IDLE-INFO" "1" "0.1" "" "cpupower Manual"2.SH "NAME"3.LP4cpupower\-idle\-info \- Utility to retrieve cpu idle kernel information5.SH "SYNTAX"6.LP7cpupower [ \-c cpulist ] idle\-info [\fIoptions\fP]8.SH "DESCRIPTION"9.LP10A tool which prints out per cpu idle information helpful to developers and interested users.11.SH "OPTIONS"12.LP13.TP14\fB\-f\fR \fB\-\-silent\fR15Only print a summary of all available C-states in the system.16.TP17\fB\-e\fR \fB\-\-proc\fR18deprecated.19Prints out idle information in old /proc/acpi/processor/*/power format. This20interface has been removed from the kernel for quite some time, do not let21further code depend on this option, best do not use it.22 23.SH IDLE\-INFO DESCRIPTIONS24CPU sleep state statistics and descriptions are retrieved from sysfs files,25exported by the cpuidle kernel subsystem. The kernel only updates these26statistics when it enters or leaves an idle state, therefore on a very idle or27a very busy system, these statistics may not be accurate. They still provide a28good overview about the usage and availability of processor sleep states on29the platform.30 31Be aware that the sleep states as exported by the hardware or BIOS and used by32the Linux kernel may not exactly reflect the capabilities of the33processor. This often is the case on the X86 architecture when the acpi_idle34driver is used. It is also possible that the hardware overrules the kernel35requests, due to internal activity monitors or other reasons.36On recent X86 platforms it is often possible to read out hardware registers37which monitor the duration of sleep states the processor resided in. The38cpupower monitor tool (cpupower\-monitor(1)) can be used to show real sleep39state residencies. Please refer to the architecture specific description40section below.41 42.SH IDLE\-INFO ARCHITECTURE SPECIFIC DESCRIPTIONS43.SS "X86"44POLL idle state45 46If cpuidle is active, X86 platforms have one special idle state.47The POLL idle state is not a real idle state, it does not save any48power. Instead, a busy\-loop is executed doing nothing for a short period of49time. This state is used if the kernel knows that work has to be processed50very soon and entering any real hardware idle state may result in a slight51performance penalty.52 53There exist two different cpuidle drivers on the X86 architecture platform:54 55"acpi_idle" cpuidle driver56 57The acpi_idle cpuidle driver retrieves available sleep states (C\-states) from58the ACPI BIOS tables (from the _CST ACPI function on recent platforms or from59the FADT BIOS table on older ones).60The C1 state is not retrieved from ACPI tables. If the C1 state is entered,61the kernel will call the hlt instruction (or mwait on Intel).62 63"intel_idle" cpuidle driver64 65In kernel 2.6.36 the intel_idle driver was introduced.66It only serves recent Intel CPUs (Nehalem, Westmere, Sandybridge, Atoms or67newer). On older Intel CPUs the acpi_idle driver is still used (if the BIOS68provides C\-state ACPI tables).69The intel_idle driver knows the sleep state capabilities of the processor and70ignores ACPI BIOS exported processor sleep states tables.71 72.SH "REMARKS"73.LP74By default only values of core zero are displayed. How to display settings of75other cores is described in the cpupower(1) manpage in the \-\-cpu option76section.77.SH REFERENCES78https://uefi.org/specifications79.SH "FILES"80.nf81\fI/sys/devices/system/cpu/cpu*/cpuidle/state*\fP82\fI/sys/devices/system/cpu/cpuidle/*\fP83.fi84.SH "AUTHORS"85.nf86Thomas Renninger <trenn@suse.de>87.fi88.SH "SEE ALSO"89.LP90cpupower(1), cpupower\-monitor(1), cpupower\-info(1), cpupower\-set(1),91cpupower\-idle\-set(1)92