From owner-cvs-src-old@FreeBSD.ORG Thu Oct 29 16:01:21 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06917106568B for ; Thu, 29 Oct 2009 16:01:21 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E6B048FC25 for ; Thu, 29 Oct 2009 16:01:20 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n9TG1KSF097701 for ; Thu, 29 Oct 2009 16:01:20 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n9TG1KaB097700 for cvs-src-old@freebsd.org; Thu, 29 Oct 2009 16:01:20 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200910291601.n9TG1KaB097700@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Thu, 29 Oct 2009 16:00:27 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/amd64/acpica acpi_machdep.c madt.c src/sys/amd64/include acpica_machdep.h src/sys/dev/acpica acpi.c acpivar.h src/sys/i386/acpica acpi_machdep.c madt.c src/sys/i386/include acpica_machdep.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2009 16:01:21 -0000 jhb 2009-10-29 16:00:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/amd64/acpica acpi_machdep.c madt.c sys/amd64/include acpica_machdep.h sys/dev/acpica acpi.c acpivar.h sys/i386/acpica acpi_machdep.c madt.c sys/i386/include acpica_machdep.h Log: SVN rev 198610 on 2009-10-29 16:00:27Z by jhb MFC 197439: Extract the code to find and map the MADT ACPI table during early kernel startup and genericize it so it can be reused to map other tables as well: - Add a routine to walk a list of ACPI subtables such as those used in the APIC and SRAT tables in the MI acpi(4) driver. - Move the routines for mapping and unmapping an ACPI table as well as mapping the RSDT or XSDT and searching for a table with a given signature out into acpica_machdep.c for both amd64 and i386. Revision Changes Path 1.21.2.2 +244 -0 src/sys/amd64/acpica/acpi_machdep.c 1.28.2.2 +9 -222 src/sys/amd64/acpica/madt.c 1.7.10.2 +3 -0 src/sys/amd64/include/acpica_machdep.h 1.265.2.4 +22 -0 src/sys/dev/acpica/acpi.c 1.111.2.2 +5 -0 src/sys/dev/acpica/acpivar.h 1.44.2.3 +240 -0 src/sys/i386/acpica/acpi_machdep.c 1.32.2.2 +9 -221 src/sys/i386/acpica/madt.c 1.8.10.2 +3 -0 src/sys/i386/include/acpica_machdep.h