]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Re-work Cx handling to be per-cpu and asymmetrical, fixing support on
authorNate Lawson <njl@FreeBSD.org>
Sun, 7 Jan 2007 21:53:42 +0000 (21:53 +0000)
committerNate Lawson <njl@FreeBSD.org>
Sun, 7 Jan 2007 21:53:42 +0000 (21:53 +0000)
commit907b6777c1e03f6539c50fbb8944ab00fb896fad
tree16075cfd1c6adf88fd5fbbfe69ad4675109b22ae
parent435c077c33b3bbd57feb909a33728b19ea18e351
Re-work Cx handling to be per-cpu and asymmetrical, fixing support on
modern dual-core systems as well.

- Parse the _CST packages for each cpu and track all the states individually,
on a per-cpu basis.

- Revert to generic FADT/P_BLK based Cx control if the _CST package
is not present on all cpus. In that case, the new driver will
still support per-cpu Cx state handling. The driver will determine the
highest Cx level that can be supported by all the cpus and configure the
available Cx state based on that.

- Fixed the case where multiple cpus in the system share the same
registers for Cx state handling. To do that, added a new flag
parameter to the acpi_PkgGas and acpi_bus_alloc_gas functions that
enable the caller to add the RF_SHAREABLE flag.  This flag could also be
useful to other callers (acpi_throttle?) in the tree but this change is
not yet made.

- For Core Duo cpus, both cores seems to be taken out of C3 state when
any one of the cores need to transition out. This broke the short sleep
detection logic.  It is disabled now if there is more than one cpu in
the system for now as it fixed it in my case.  This quirk may need to
be re-enabled later differently.

- Added support to control cx_lowest on a per-cpu basis. There is still
a generic cx_lowest to enable changing cx_lowest for all cpus with a single
sysctl and for ease of use.  Sample output for the new sysctl:

dev.cpu.0.cx_supported: C1/1 C2/1 C3/57
dev.cpu.0.cx_lowest: C3
dev.cpu.0.cx_usage: 0.00% 43.16% 56.83%
dev.cpu.1.cx_supported: C1/1 C2/1 C3/57
dev.cpu.1.cx_lowest: C3
dev.cpu.1.cx_usage: 0.00% 45.65% 54.34%
hw.acpi.cpu.cx_lowest: C3

This work was done by Stephane E. Potvin with some simple reworking by
myself.  Thank you.

Submitted by: Stephane E. Potvin <sepotvin / videotron.ca>
MFC after: 2 weeks
etc/rc.d/power_profile
sys/dev/acpica/acpi.c
sys/dev/acpica/acpi_cpu.c
sys/dev/acpica/acpi_package.c
sys/dev/acpica/acpi_perf.c
sys/dev/acpica/acpi_throttle.c
sys/dev/acpica/acpivar.h