From owner-cvs-src@FreeBSD.ORG Sun Feb 6 20:12:29 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E15216A4CE; Sun, 6 Feb 2005 20:12:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D79EC43D1F; Sun, 6 Feb 2005 20:12:28 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j16KCS0o040839; Sun, 6 Feb 2005 20:12:28 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j16KCSKb040838; Sun, 6 Feb 2005 20:12:28 GMT (envelope-from njl) Message-Id: <200502062012.j16KCSKb040838@repoman.freebsd.org> From: Nate Lawson Date: Sun, 6 Feb 2005 20:12:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_cpu.c acpi_perf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Feb 2005 20:12:29 -0000 njl 2005-02-06 20:12:28 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_cpu.c acpi_perf.c Log: Notify the OS that we're taking over Px states in acpi_perf(4) instead of doing it in the cpu driver. The previous code was incorrect anyway since this value controls Px states, not throttling as the comment said. Since we didn't support Px states before, there was no impact. Also, note that we delay the write to SMI_CMD until after booting is complete since it sometimes triggers a change in the frequency and we want to have all drivers ready to detect/handle this. Revision Changes Path 1.51 +0 -9 src/sys/dev/acpica/acpi_cpu.c 1.4 +15 -2 src/sys/dev/acpica/acpi_perf.c