mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-10-29 15:28:50 +01:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
77
tools/power/cpupower/man/cpupower-frequency-info.1
Normal file
77
tools/power/cpupower/man/cpupower-frequency-info.1
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
.TH "CPUPOWER\-FREQUENCY\-INFO" "1" "0.1" "" "cpupower Manual"
|
||||
.SH "NAME"
|
||||
.LP
|
||||
cpupower frequency\-info \- Utility to retrieve cpufreq kernel information
|
||||
.SH "SYNTAX"
|
||||
.LP
|
||||
cpupower [ \-c cpulist ] frequency\-info [\fIoptions\fP]
|
||||
.SH "DESCRIPTION"
|
||||
.LP
|
||||
A small tool which prints out cpufreq information helpful to developers and interested users.
|
||||
.SH "OPTIONS"
|
||||
.LP
|
||||
.TP
|
||||
\fB\-e\fR \fB\-\-debug\fR
|
||||
Prints out debug information.
|
||||
.TP
|
||||
\fB\-f\fR \fB\-\-freq\fR
|
||||
Get frequency the CPU currently runs at, according to the cpufreq core.
|
||||
.TP
|
||||
\fB\-w\fR \fB\-\-hwfreq\fR
|
||||
Get frequency the CPU currently runs at, by reading it from hardware (only available to root).
|
||||
.TP
|
||||
\fB\-l\fR \fB\-\-hwlimits\fR
|
||||
Determine the minimum and maximum CPU frequency allowed.
|
||||
.TP
|
||||
\fB\-d\fR \fB\-\-driver\fR
|
||||
Determines the used cpufreq kernel driver.
|
||||
.TP
|
||||
\fB\-p\fR \fB\-\-policy\fR
|
||||
Gets the currently used cpufreq policy.
|
||||
.TP
|
||||
\fB\-g\fR \fB\-\-governors\fR
|
||||
Determines available cpufreq governors.
|
||||
.TP
|
||||
\fB\-a\fR \fB\-\-related\-cpus\fR
|
||||
Determines which CPUs run at the same hardware frequency.
|
||||
.TP
|
||||
\fB\-a\fR \fB\-\-affected\-cpus\fR
|
||||
Determines which CPUs need to have their frequency coordinated by software.
|
||||
.TP
|
||||
\fB\-s\fR \fB\-\-stats\fR
|
||||
Shows cpufreq statistics if available.
|
||||
.TP
|
||||
\fB\-y\fR \fB\-\-latency\fR
|
||||
Determines the maximum latency on CPU frequency changes.
|
||||
.TP
|
||||
\fB\-o\fR \fB\-\-proc\fR
|
||||
Prints out information like provided by the /proc/cpufreq interface in 2.4. and early 2.6. kernels.
|
||||
.TP
|
||||
\fB\-m\fR \fB\-\-human\fR
|
||||
human\-readable output for the \-f, \-w, \-s and \-y parameters.
|
||||
.TP
|
||||
\fB\-n\fR \fB\-\-no-rounding\fR
|
||||
Output frequencies and latencies without rounding off values.
|
||||
.TP
|
||||
.SH "REMARKS"
|
||||
.LP
|
||||
By default only values of core zero are displayed. How to display settings of
|
||||
other cores is described in the cpupower(1) manpage in the \-\-cpu option section.
|
||||
.LP
|
||||
You can't specify more than one of the output specific options \-o \-e \-a \-g \-p \-d \-l \-w \-f \-y.
|
||||
.LP
|
||||
You also can't specify the \-o option combined with the \-c option.
|
||||
.SH "FILES"
|
||||
.nf
|
||||
\fI/sys/devices/system/cpu/cpu*/cpufreq/\fP
|
||||
\fI/proc/cpufreq\fP (deprecated)
|
||||
\fI/proc/sys/cpu/\fP (deprecated)
|
||||
.fi
|
||||
.SH "AUTHORS"
|
||||
.nf
|
||||
Dominik Brodowski <linux@brodo.de> \- author
|
||||
Mattia Dongili<malattia@gmail.com> \- first autolibtoolization
|
||||
.fi
|
||||
.SH "SEE ALSO"
|
||||
.LP
|
||||
cpupower\-frequency\-set(1), cpupower(1)
|
||||
52
tools/power/cpupower/man/cpupower-frequency-set.1
Normal file
52
tools/power/cpupower/man/cpupower-frequency-set.1
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
.TH "CPUPOWER\-FREQUENCY\-SET" "1" "0.1" "" "cpupower Manual"
|
||||
.SH "NAME"
|
||||
.LP
|
||||
cpupower frequency\-set \- A small tool which allows to modify cpufreq settings.
|
||||
.SH "SYNTAX"
|
||||
.LP
|
||||
cpupower [ \-c cpu ] frequency\-set [\fIoptions\fP]
|
||||
.SH "DESCRIPTION"
|
||||
.LP
|
||||
cpupower frequency\-set allows you to modify cpufreq settings without having to type e.g. "/sys/devices/system/cpu/cpu0/cpufreq/scaling_set_speed" all the time.
|
||||
.SH "OPTIONS"
|
||||
.LP
|
||||
.TP
|
||||
\fB\-d\fR \fB\-\-min\fR <FREQ>
|
||||
new minimum CPU frequency the governor may select.
|
||||
.TP
|
||||
\fB\-u\fR \fB\-\-max\fR <FREQ>
|
||||
new maximum CPU frequency the governor may select.
|
||||
.TP
|
||||
\fB\-g\fR \fB\-\-governor\fR <GOV>
|
||||
new cpufreq governor.
|
||||
.TP
|
||||
\fB\-f\fR \fB\-\-freq\fR <FREQ>
|
||||
specific frequency to be set. Requires userspace governor to be available and loaded.
|
||||
.TP
|
||||
\fB\-r\fR \fB\-\-related\fR
|
||||
modify all hardware-related CPUs at the same time
|
||||
.TP
|
||||
.SH "REMARKS"
|
||||
.LP
|
||||
By default values are applied on all cores. How to modify single core
|
||||
configurations is described in the cpupower(1) manpage in the \-\-cpu option section.
|
||||
.LP
|
||||
The \-f FREQ, \-\-freq FREQ parameter cannot be combined with any other parameter.
|
||||
.LP
|
||||
FREQuencies can be passed in Hz, kHz (default), MHz, GHz, or THz by postfixing the value with the wanted unit name, without any space (frequency in kHz =^ Hz * 0.001 =^ MHz * 1000 =^ GHz * 1000000).
|
||||
.LP
|
||||
On Linux kernels up to 2.6.29, the \-r or \-\-related parameter is ignored.
|
||||
.SH "FILES"
|
||||
.nf
|
||||
\fI/sys/devices/system/cpu/cpu*/cpufreq/\fP
|
||||
\fI/proc/cpufreq\fP (deprecated)
|
||||
\fI/proc/sys/cpu/\fP (deprecated)
|
||||
.fi
|
||||
.SH "AUTHORS"
|
||||
.nf
|
||||
Dominik Brodowski <linux@brodo.de> \- author
|
||||
Mattia Dongili<malattia@gmail.com> \- first autolibtoolization
|
||||
.fi
|
||||
.SH "SEE ALSO"
|
||||
.LP
|
||||
cpupower\-frequency\-info(1), cpupower(1)
|
||||
91
tools/power/cpupower/man/cpupower-idle-info.1
Normal file
91
tools/power/cpupower/man/cpupower-idle-info.1
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
.TH "CPUPOWER-IDLE-INFO" "1" "0.1" "" "cpupower Manual"
|
||||
.SH "NAME"
|
||||
.LP
|
||||
cpupower idle\-info \- Utility to retrieve cpu idle kernel information
|
||||
.SH "SYNTAX"
|
||||
.LP
|
||||
cpupower [ \-c cpulist ] idle\-info [\fIoptions\fP]
|
||||
.SH "DESCRIPTION"
|
||||
.LP
|
||||
A tool which prints out per cpu idle information helpful to developers and interested users.
|
||||
.SH "OPTIONS"
|
||||
.LP
|
||||
.TP
|
||||
\fB\-f\fR \fB\-\-silent\fR
|
||||
Only print a summary of all available C-states in the system.
|
||||
.TP
|
||||
\fB\-e\fR \fB\-\-proc\fR
|
||||
deprecated.
|
||||
Prints out idle information in old /proc/acpi/processor/*/power format. This
|
||||
interface has been removed from the kernel for quite some time, do not let
|
||||
further code depend on this option, best do not use it.
|
||||
|
||||
.SH IDLE\-INFO DESCRIPTIONS
|
||||
CPU sleep state statistics and descriptions are retrieved from sysfs files,
|
||||
exported by the cpuidle kernel subsystem. The kernel only updates these
|
||||
statistics when it enters or leaves an idle state, therefore on a very idle or
|
||||
a very busy system, these statistics may not be accurate. They still provide a
|
||||
good overview about the usage and availability of processor sleep states on
|
||||
the platform.
|
||||
|
||||
Be aware that the sleep states as exported by the hardware or BIOS and used by
|
||||
the Linux kernel may not exactly reflect the capabilities of the
|
||||
processor. This often is the case on the X86 architecture when the acpi_idle
|
||||
driver is used. It is also possible that the hardware overrules the kernel
|
||||
requests, due to internal activity monitors or other reasons.
|
||||
On recent X86 platforms it is often possible to read out hardware registers
|
||||
which monitor the duration of sleep states the processor resided in. The
|
||||
cpupower monitor tool (cpupower\-monitor(1)) can be used to show real sleep
|
||||
state residencies. Please refer to the architecture specific description
|
||||
section below.
|
||||
|
||||
.SH IDLE\-INFO ARCHITECTURE SPECIFIC DESCRIPTIONS
|
||||
.SS "X86"
|
||||
POLL idle state
|
||||
|
||||
If cpuidle is active, X86 platforms have one special idle state.
|
||||
The POLL idle state is not a real idle state, it does not save any
|
||||
power. Instead, a busy\-loop is executed doing nothing for a short period of
|
||||
time. This state is used if the kernel knows that work has to be processed
|
||||
very soon and entering any real hardware idle state may result in a slight
|
||||
performance penalty.
|
||||
|
||||
There exist two different cpuidle drivers on the X86 architecture platform:
|
||||
|
||||
"acpi_idle" cpuidle driver
|
||||
|
||||
The acpi_idle cpuidle driver retrieves available sleep states (C\-states) from
|
||||
the ACPI BIOS tables (from the _CST ACPI function on recent platforms or from
|
||||
the FADT BIOS table on older ones).
|
||||
The C1 state is not retrieved from ACPI tables. If the C1 state is entered,
|
||||
the kernel will call the hlt instruction (or mwait on Intel).
|
||||
|
||||
"intel_idle" cpuidle driver
|
||||
|
||||
In kernel 2.6.36 the intel_idle driver was introduced.
|
||||
It only serves recent Intel CPUs (Nehalem, Westmere, Sandybridge, Atoms or
|
||||
newer). On older Intel CPUs the acpi_idle driver is still used (if the BIOS
|
||||
provides C\-state ACPI tables).
|
||||
The intel_idle driver knows the sleep state capabilities of the processor and
|
||||
ignores ACPI BIOS exported processor sleep states tables.
|
||||
|
||||
.SH "REMARKS"
|
||||
.LP
|
||||
By default only values of core zero are displayed. How to display settings of
|
||||
other cores is described in the cpupower(1) manpage in the \-\-cpu option
|
||||
section.
|
||||
.SH REFERENCES
|
||||
http://www.acpi.info/spec.htm
|
||||
.SH "FILES"
|
||||
.nf
|
||||
\fI/sys/devices/system/cpu/cpu*/cpuidle/state*\fP
|
||||
\fI/sys/devices/system/cpu/cpuidle/*\fP
|
||||
.fi
|
||||
.SH "AUTHORS"
|
||||
.nf
|
||||
Thomas Renninger <trenn@suse.de>
|
||||
.fi
|
||||
.SH "SEE ALSO"
|
||||
.LP
|
||||
cpupower(1), cpupower\-monitor(1), cpupower\-info(1), cpupower\-set(1),
|
||||
cpupower\-idle\-set(1)
|
||||
77
tools/power/cpupower/man/cpupower-idle-set.1
Normal file
77
tools/power/cpupower/man/cpupower-idle-set.1
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
.TH "CPUPOWER-IDLE-SET" "1" "0.1" "" "cpupower Manual"
|
||||
.SH "NAME"
|
||||
.LP
|
||||
cpupower idle\-set \- Utility to set cpu idle state specific kernel options
|
||||
.SH "SYNTAX"
|
||||
.LP
|
||||
cpupower [ \-c cpulist ] idle\-info [\fIoptions\fP]
|
||||
.SH "DESCRIPTION"
|
||||
.LP
|
||||
The cpupower idle\-set subcommand allows to set cpu idle, also called cpu
|
||||
sleep state, specific options offered by the kernel. One example is disabling
|
||||
sleep states. This can be handy for power vs performance tuning.
|
||||
.SH "OPTIONS"
|
||||
.LP
|
||||
.TP
|
||||
\fB\-d\fR \fB\-\-disable\fR <STATE_NO>
|
||||
Disable a specific processor sleep state.
|
||||
.TP
|
||||
\fB\-e\fR \fB\-\-enable\fR <STATE_NO>
|
||||
Enable a specific processor sleep state.
|
||||
.TP
|
||||
\fB\-D\fR \fB\-\-disable-by-latency\fR <LATENCY>
|
||||
Disable all idle states with a equal or higher latency than <LATENCY>
|
||||
.TP
|
||||
\fB\-E\fR \fB\-\-enable-all\fR
|
||||
Enable all idle states if not enabled already.
|
||||
|
||||
.SH "REMARKS"
|
||||
.LP
|
||||
Cpuidle Governors Policy on Disabling Sleep States
|
||||
|
||||
.RS 4
|
||||
Depending on the used cpuidle governor, implementing the kernel policy
|
||||
how to choose sleep states, subsequent sleep states on this core, might get
|
||||
disabled as well.
|
||||
|
||||
There are two cpuidle governors ladder and menu. While the ladder
|
||||
governor is always available, if CONFIG_CPU_IDLE is selected, the
|
||||
menu governor additionally requires CONFIG_NO_HZ.
|
||||
|
||||
The behavior and the effect of the disable variable depends on the
|
||||
implementation of a particular governor. In the ladder governor, for
|
||||
example, it is not coherent, i.e. if one is disabling a light state,
|
||||
then all deeper states are disabled as well. Likewise, if one enables a
|
||||
deep state but a lighter state still is disabled, then this has no effect.
|
||||
.RE
|
||||
.LP
|
||||
Disabling the Lightest Sleep State may not have any Affect
|
||||
|
||||
.RS 4
|
||||
If criteria are not met to enter deeper sleep states and the lightest sleep
|
||||
state is chosen when idle, the kernel may still enter this sleep state,
|
||||
irrespective of whether it is disabled or not. This is also reflected in
|
||||
the usage count of the disabled sleep state when using the cpupower idle-info
|
||||
command.
|
||||
.RE
|
||||
.LP
|
||||
Selecting specific CPU Cores
|
||||
|
||||
.RS 4
|
||||
By default processor sleep states of all CPU cores are set. Please refer
|
||||
to the cpupower(1) manpage in the \-\-cpu option section how to disable
|
||||
C-states of specific cores.
|
||||
.RE
|
||||
.SH "FILES"
|
||||
.nf
|
||||
\fI/sys/devices/system/cpu/cpu*/cpuidle/state*\fP
|
||||
\fI/sys/devices/system/cpu/cpuidle/*\fP
|
||||
.fi
|
||||
.SH "AUTHORS"
|
||||
.nf
|
||||
Thomas Renninger <trenn@suse.de>
|
||||
.fi
|
||||
.SH "SEE ALSO"
|
||||
.LP
|
||||
cpupower(1), cpupower\-monitor(1), cpupower\-info(1), cpupower\-set(1),
|
||||
cpupower\-idle\-info(1)
|
||||
19
tools/power/cpupower/man/cpupower-info.1
Normal file
19
tools/power/cpupower/man/cpupower-info.1
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
.TH CPUPOWER\-INFO "1" "22/02/2011" "" "cpupower Manual"
|
||||
.SH NAME
|
||||
cpupower\-info \- Shows processor power related kernel or hardware configurations
|
||||
.SH SYNOPSIS
|
||||
.ft B
|
||||
.B cpupower info [ \-b ]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBcpupower info \fP shows kernel configurations or processor hardware
|
||||
registers affecting processor power saving policies.
|
||||
|
||||
Some options are platform wide, some affect single cores. By default values
|
||||
of core zero are displayed only. cpupower --cpu all cpuinfo will show the
|
||||
settings of all cores, see cpupower(1) how to choose specific cores.
|
||||
|
||||
.SH "SEE ALSO"
|
||||
Options are described in detail in:
|
||||
|
||||
cpupower(1), cpupower-set(1)
|
||||
198
tools/power/cpupower/man/cpupower-monitor.1
Normal file
198
tools/power/cpupower/man/cpupower-monitor.1
Normal file
|
|
@ -0,0 +1,198 @@
|
|||
.TH CPUPOWER\-MONITOR "1" "22/02/2011" "" "cpupower Manual"
|
||||
.SH NAME
|
||||
cpupower\-monitor \- Report processor frequency and idle statistics
|
||||
.SH SYNOPSIS
|
||||
.ft B
|
||||
.B cpupower monitor
|
||||
.RB "\-l"
|
||||
|
||||
.B cpupower monitor
|
||||
.RB [ -c ] [ "\-m <mon1>," [ "<mon2>,..." ] ]
|
||||
.RB [ "\-i seconds" ]
|
||||
.br
|
||||
.B cpupower monitor
|
||||
.RB [ -c ][ "\-m <mon1>," [ "<mon2>,..." ] ]
|
||||
.RB command
|
||||
.br
|
||||
.SH DESCRIPTION
|
||||
\fBcpupower-monitor \fP reports processor topology, frequency and idle power
|
||||
state statistics. Either \fBcommand\fP is forked and
|
||||
statistics are printed upon its completion, or statistics are printed periodically.
|
||||
|
||||
\fBcpupower-monitor \fP implements independent processor sleep state and
|
||||
frequency counters. Some are retrieved from kernel statistics, some are
|
||||
directly reading out hardware registers. Use \-l to get an overview which are
|
||||
supported on your system.
|
||||
|
||||
.SH Options
|
||||
.PP
|
||||
\-l
|
||||
.RS 4
|
||||
List available monitors on your system. Additional details about each monitor
|
||||
are shown:
|
||||
.RS 2
|
||||
.IP \(bu
|
||||
The name in quotation marks which can be passed to the \-m parameter.
|
||||
.IP \(bu
|
||||
The number of different counters the monitor supports in brackets.
|
||||
.IP \(bu
|
||||
The amount of time in seconds the counters might overflow, due to
|
||||
implementation constraints.
|
||||
.IP \(bu
|
||||
The name and a description of each counter and its processor hierarchy level
|
||||
coverage in square brackets:
|
||||
.RS 4
|
||||
.IP \(bu
|
||||
[T] \-> Thread
|
||||
.IP \(bu
|
||||
[C] \-> Core
|
||||
.IP \(bu
|
||||
[P] \-> Processor Package (Socket)
|
||||
.IP \(bu
|
||||
[M] \-> Machine/Platform wide counter
|
||||
.RE
|
||||
.RE
|
||||
.RE
|
||||
.PP
|
||||
\-m <mon1>,<mon2>,...
|
||||
.RS 4
|
||||
Only display specific monitors. Use the monitor string(s) provided by \-l option.
|
||||
.RE
|
||||
.PP
|
||||
\-i seconds
|
||||
.RS 4
|
||||
Measure intervall.
|
||||
.RE
|
||||
.PP
|
||||
\-c
|
||||
.RS 4
|
||||
Schedule the process on every core before starting and ending measuring.
|
||||
This could be needed for the Idle_Stats monitor when no other MSR based
|
||||
monitor (has to be run on the core that is measured) is run in parallel.
|
||||
This is to wake up the processors from deeper sleep states and let the
|
||||
kernel re
|
||||
-account its cpuidle (C-state) information before reading the
|
||||
cpuidle timings from sysfs.
|
||||
.RE
|
||||
.PP
|
||||
command
|
||||
.RS 4
|
||||
Measure idle and frequency characteristics of an arbitrary command/workload.
|
||||
The executable \fBcommand\fP is forked and upon its exit, statistics gathered since it was
|
||||
forked are displayed.
|
||||
.RE
|
||||
.PP
|
||||
\-v
|
||||
.RS 4
|
||||
Increase verbosity if the binary was compiled with the DEBUG option set.
|
||||
.RE
|
||||
|
||||
.SH MONITOR DESCRIPTIONS
|
||||
.SS "Idle_Stats"
|
||||
Shows statistics of the cpuidle kernel subsystem. Values are retrieved from
|
||||
/sys/devices/system/cpu/cpu*/cpuidle/state*/.
|
||||
The kernel updates these values every time an idle state is entered or
|
||||
left. Therefore there can be some inaccuracy when cores are in an idle
|
||||
state for some time when the measure starts or ends. In worst case it can happen
|
||||
that one core stayed in an idle state for the whole measure time and the idle
|
||||
state usage time as exported by the kernel did not get updated. In this case
|
||||
a state residency of 0 percent is shown while it was 100.
|
||||
|
||||
.SS "Mperf"
|
||||
The name comes from the aperf/mperf (average and maximum) MSR registers used
|
||||
which are available on recent X86 processors. It shows the average frequency
|
||||
(including boost frequencies).
|
||||
The fact that on all recent hardware the mperf timer stops ticking in any idle
|
||||
state it is also used to show C0 (processor is active) and Cx (processor is in
|
||||
any sleep state) times. These counters do not have the inaccuracy restrictions
|
||||
the "Idle_Stats" counters may show.
|
||||
May work poorly on Linux-2.6.20 through 2.6.29, as the \fBacpi-cpufreq \fP
|
||||
kernel frequency driver periodically cleared aperf/mperf registers in those
|
||||
kernels.
|
||||
|
||||
.SS "Nehalem" "SandyBridge" "HaswellExtended"
|
||||
Intel Core and Package sleep state counters.
|
||||
Threads (hyperthreaded cores) may not be able to enter deeper core states if
|
||||
its sibling is utilized.
|
||||
Deepest package sleep states may in reality show up as machine/platform wide
|
||||
sleep states and can only be entered if all cores are idle. Look up Intel
|
||||
manuals (some are provided in the References section) for further details.
|
||||
The monitors are named after the CPU family where the sleep state capabilities
|
||||
got introduced and may not match exactly the CPU name of the platform.
|
||||
For example an IvyBridge processor has sleep state capabilities which got
|
||||
introduced in Nehalem and SandyBridge processor families.
|
||||
Thus on an IvyBridge processor one will get Nehalem and SandyBridge sleep
|
||||
state monitors.
|
||||
HaswellExtended extra package sleep state capabilities are available only in a
|
||||
specific Haswell (family 0x45) and probably also other future processors.
|
||||
|
||||
.SS "Fam_12h" "Fam_14h"
|
||||
AMD laptop and desktop processor (family 12h and 14h) sleep state counters.
|
||||
The registers are accessed via PCI and therefore can still be read out while
|
||||
cores have been offlined.
|
||||
|
||||
There is one special counter: NBP1 (North Bridge P1).
|
||||
This one always returns 0 or 1, depending on whether the North Bridge P1
|
||||
power state got entered at least once during measure time.
|
||||
Being able to enter NBP1 state also depends on graphics power management.
|
||||
Therefore this counter can be used to verify whether the graphics' driver
|
||||
power management is working as expected.
|
||||
|
||||
.SH EXAMPLES
|
||||
|
||||
cpupower monitor -l" may show:
|
||||
.RS 4
|
||||
Monitor "Mperf" (3 states) \- Might overflow after 922000000 s
|
||||
|
||||
...
|
||||
|
||||
Monitor "Idle_Stats" (3 states) \- Might overflow after 4294967295 s
|
||||
|
||||
...
|
||||
|
||||
.RE
|
||||
cpupower monitor \-m "Idle_Stats,Mperf" scp /tmp/test /nfs/tmp
|
||||
|
||||
Monitor the scp command, show both Mperf and Idle_Stats states counter
|
||||
statistics, but in exchanged order.
|
||||
|
||||
|
||||
|
||||
.RE
|
||||
Be careful that the typical command to fully utilize one CPU by doing:
|
||||
|
||||
cpupower monitor cat /dev/zero >/dev/null
|
||||
|
||||
Does not work as expected, because the measured output is redirected to
|
||||
/dev/null. This could get workarounded by putting the line into an own, tiny
|
||||
shell script. Hit CTRL\-c to terminate the command and get the measure output
|
||||
displayed.
|
||||
|
||||
.SH REFERENCES
|
||||
"BIOS and Kernel Developer’s Guide (BKDG) for AMD Family 14h Processors"
|
||||
http://support.amd.com/us/Processor_TechDocs/43170.pdf
|
||||
|
||||
"Intel® Turbo Boost Technology
|
||||
in Intel® Core™ Microarchitecture (Nehalem) Based Processors"
|
||||
http://download.intel.com/design/processor/applnots/320354.pdf
|
||||
|
||||
"Intel® 64 and IA-32 Architectures Software Developer's Manual
|
||||
Volume 3B: System Programming Guide"
|
||||
http://www.intel.com/products/processor/manuals
|
||||
|
||||
.SH FILES
|
||||
.ta
|
||||
.nf
|
||||
/dev/cpu/*/msr
|
||||
/sys/devices/system/cpu/cpu*/cpuidle/state*/.
|
||||
.fi
|
||||
|
||||
.SH "SEE ALSO"
|
||||
powertop(8), msr(4), vmstat(8)
|
||||
.PP
|
||||
.SH AUTHORS
|
||||
.nf
|
||||
Written by Thomas Renninger <trenn@suse.de>
|
||||
|
||||
Nehalem, SandyBridge monitors and command passing
|
||||
based on turbostat.8 from Len Brown <len.brown@intel.com>
|
||||
65
tools/power/cpupower/man/cpupower-set.1
Normal file
65
tools/power/cpupower/man/cpupower-set.1
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
.TH CPUPOWER\-SET "1" "22/02/2011" "" "cpupower Manual"
|
||||
.SH NAME
|
||||
cpupower\-set \- Set processor power related kernel or hardware configurations
|
||||
.SH SYNOPSIS
|
||||
.ft B
|
||||
.B cpupower set [ \-b VAL ]
|
||||
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBcpupower set \fP sets kernel configurations or directly accesses hardware
|
||||
registers affecting processor power saving policies.
|
||||
|
||||
Some options are platform wide, some affect single cores. By default values
|
||||
are applied on all cores. How to modify single core configurations is
|
||||
described in the cpupower(1) manpage in the \-\-cpu option section. Whether an
|
||||
option affects the whole system or can be applied to individual cores is
|
||||
described in the Options sections.
|
||||
|
||||
Use \fBcpupower info \fP to read out current settings and whether they are
|
||||
supported on the system at all.
|
||||
|
||||
.SH Options
|
||||
.PP
|
||||
\-\-perf-bias, \-b
|
||||
.RS 4
|
||||
Sets a register on supported Intel processore which allows software to convey
|
||||
its policy for the relative importance of performance versus energy savings to
|
||||
the processor.
|
||||
|
||||
The range of valid numbers is 0-15, where 0 is maximum
|
||||
performance and 15 is maximum energy efficiency.
|
||||
|
||||
The processor uses this information in model-specific ways
|
||||
when it must select trade-offs between performance and
|
||||
energy efficiency.
|
||||
|
||||
This policy hint does not supersede Processor Performance states
|
||||
(P-states) or CPU Idle power states (C-states), but allows
|
||||
software to have influence where it would otherwise be unable
|
||||
to express a preference.
|
||||
|
||||
For example, this setting may tell the hardware how
|
||||
aggressively or conservatively to control frequency
|
||||
in the "turbo range" above the explicitly OS-controlled
|
||||
P-state frequency range. It may also tell the hardware
|
||||
how aggressively it should enter the OS requested C-states.
|
||||
|
||||
This option can be applied to individual cores only via the \-\-cpu option,
|
||||
cpupower(1).
|
||||
|
||||
Setting the performance bias value on one CPU can modify the setting on
|
||||
related CPUs as well (for example all CPUs on one socket), because of
|
||||
hardware restrictions.
|
||||
Use \fBcpupower -c all info -b\fP to verify.
|
||||
|
||||
This options needs the msr kernel driver (CONFIG_X86_MSR) loaded.
|
||||
.RE
|
||||
|
||||
.SH "SEE ALSO"
|
||||
cpupower-info(1), cpupower-monitor(1), powertop(1)
|
||||
.PP
|
||||
.SH AUTHORS
|
||||
.nf
|
||||
\-\-perf\-bias parts written by Len Brown <len.brown@intel.com>
|
||||
Thomas Renninger <trenn@suse.de>
|
||||
72
tools/power/cpupower/man/cpupower.1
Normal file
72
tools/power/cpupower/man/cpupower.1
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
.TH CPUPOWER "1" "07/03/2011" "" "cpupower Manual"
|
||||
.SH NAME
|
||||
cpupower \- Shows and sets processor power related values
|
||||
.SH SYNOPSIS
|
||||
.ft B
|
||||
.B cpupower [ \-c cpulist ] <command> [ARGS]
|
||||
|
||||
.B cpupower \-v|\-\-version
|
||||
|
||||
.B cpupower \-h|\-\-help
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBcpupower \fP is a collection of tools to examine and tune power saving
|
||||
related features of your processor.
|
||||
|
||||
The manpages of the commands (cpupower\-<command>(1)) provide detailed
|
||||
descriptions of supported features. Run \fBcpupower help\fP to get an overview
|
||||
of supported commands.
|
||||
|
||||
.SH Options
|
||||
.PP
|
||||
\-\-help, \-h
|
||||
.RS 4
|
||||
Shows supported commands and general usage.
|
||||
.RE
|
||||
.PP
|
||||
\-\-cpu cpulist, \-c cpulist
|
||||
.RS 4
|
||||
Only show or set values for specific cores.
|
||||
This option is not supported by all commands, details can be found in the
|
||||
manpages of the commands.
|
||||
|
||||
Some commands access all cores (typically the *\-set commands), some only
|
||||
the first core (typically the *\-info commands) by default.
|
||||
|
||||
The syntax for <cpulist> is based on how the kernel exports CPU bitmasks via
|
||||
sysfs files. Some examples:
|
||||
.RS 4
|
||||
.TP 16
|
||||
Input
|
||||
Equivalent to
|
||||
.TP
|
||||
all
|
||||
all cores
|
||||
.TP
|
||||
0\-3
|
||||
0,1,2,3
|
||||
.TP
|
||||
0\-7:2
|
||||
0,2,4,6
|
||||
.TP
|
||||
1,3,5-7
|
||||
1,3,5,6,7
|
||||
.TP
|
||||
0\-3:2,8\-15:4
|
||||
0,2,8,12
|
||||
.RE
|
||||
.RE
|
||||
.PP
|
||||
\-\-version, \-v
|
||||
.RS 4
|
||||
Print the package name and version number.
|
||||
|
||||
.SH "SEE ALSO"
|
||||
cpupower-set(1), cpupower-info(1), cpupower-idle(1),
|
||||
cpupower-frequency-set(1), cpupower-frequency-info(1), cpupower-monitor(1),
|
||||
powertop(1)
|
||||
.PP
|
||||
.SH AUTHORS
|
||||
.nf
|
||||
\-\-perf\-bias parts written by Len Brown <len.brown@intel.com>
|
||||
Thomas Renninger <trenn@suse.de>
|
||||
Loading…
Add table
Add a link
Reference in a new issue