From owner-cvs-src@FreeBSD.ORG Sat Sep 6 06:56:57 2003 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 01F4616A4BF; Sat, 6 Sep 2003 06:56:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91B5943FBD; Sat, 6 Sep 2003 06:56:56 -0700 (PDT) (envelope-from dfr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h86Duu0U040274; Sat, 6 Sep 2003 06:56:56 -0700 (PDT) (envelope-from dfr@repoman.freebsd.org) Received: (from dfr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h86DuuR5040273; Sat, 6 Sep 2003 06:56:56 -0700 (PDT) Message-Id: <200309061356.h86DuuR5040273@repoman.freebsd.org> From: Doug Rabson Date: Sat, 6 Sep 2003 06:56:56 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci amdpm.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: Sat, 06 Sep 2003 13:56:57 -0000 dfr 2003/09/06 06:56:56 PDT FreeBSD src repository Modified files: sys/pci amdpm.c Log: When recording resources for the amdpm driver, only describe the ports we actually use. Originally, the code reserved 0x8000 to 0x80ff inclusive which on my hardware conflicts with the acpi timer. This broke the amdpm driver since it was actually given ports 0x800c to 0x810b (which should not have happened, IMHO). This also allows us to considerably simplify the handling of the nForce smb driver, removing the need for a separate nfpm driver. With this, SMB accesses appear to work on my Tyan Tiger MP board. Your mileage may vary. In particular, the nForce changes have not been tested. Revision Changes Path 1.10 +36 -101 src/sys/pci/amdpm.c