From owner-cvs-src@FreeBSD.ORG Fri Jan 5 22:55:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9953D16A40F; Fri, 5 Jan 2007 22:55:20 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 75B5113C448; Fri, 5 Jan 2007 22:55:20 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l05MtKuG057191; Fri, 5 Jan 2007 22:55:20 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l05MtKVg057190; Fri, 5 Jan 2007 22:55:20 GMT (envelope-from jkim) Message-Id: <200701052255.l05MtKVg057190@repoman.freebsd.org> From: Jung-uk Kim Date: Fri, 5 Jan 2007 22:55:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/pci agp_intel.c agpreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 05 Jan 2007 22:55:20 -0000 jkim 2007-01-05 22:55:20 UTC FreeBSD src repository Modified files: sys/pci agp_intel.c agpreg.h Log: - Clean up Aperture Access Global Enable (APEN) bit access. - Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM. - Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked because the actual offset is the same. In fact, all three families have the bit at the exact same place. Only differences are name and width of the registers, i.e., NBXCFG (0x50, dword), RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on the family of the chipsets. Revision Changes Path 1.33 +39 -48 src/sys/pci/agp_intel.c 1.18 +2 -2 src/sys/pci/agpreg.h