From owner-cvs-src-old@FreeBSD.ORG Tue Feb 24 01:07:24 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 C4721106564A for ; Tue, 24 Feb 2009 01:07:24 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 924428FC12 for ; Tue, 24 Feb 2009 01:07:24 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n1O17O9Q061565 for ; Tue, 24 Feb 2009 01:07:24 GMT (envelope-from sam@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n1O17Or1061564 for cvs-src-old@freebsd.org; Tue, 24 Feb 2009 01:07:24 GMT (envelope-from sam@repoman.freebsd.org) Message-Id: <200902240107.n1O17Or1061564@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to sam@repoman.freebsd.org using -f From: Sam Leffler Date: Tue, 24 Feb 2009 01:07:06 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ath/ath_hal ah.h ah_internal.h src/sys/dev/ath/ath_hal/ar5210 ar5210_attach.c src/sys/dev/ath/ath_hal/ar5211 ar5211_attach.c src/sys/dev/ath/ath_hal/ar5212 ar2425.c ar5212.h ar5212_attach.c ar5212_reset.c ar5413.c ... 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: Tue, 24 Feb 2009 01:07:25 -0000 sam 2009-02-24 01:07:06 UTC FreeBSD src repository Modified files: sys/dev/ath/ath_hal ah.h ah_internal.h sys/dev/ath/ath_hal/ar5210 ar5210_attach.c sys/dev/ath/ath_hal/ar5211 ar5211_attach.c sys/dev/ath/ath_hal/ar5212 ar2425.c ar5212.h ar5212_attach.c ar5212_reset.c ar5413.c sys/dev/ath/ath_hal/ar5416 ar5416.h ar5416.ini ar5416_attach.c ar5416reg.h ar9160.ini ar9160_attach.c Log: SVN rev 188979 on 2009-02-24 01:07:06Z by sam Add PCIE power control api: o add ah_configPCIE and ah_disablePCIE for drivers to configure PCIE power save operation (modeled after ath9k, may need changes) o add private state flag to indicate if device is PCIE (replaces private hack in 5212 code) o add serdes programming ini bits for 5416 and later parts and setup for each part (5416 and 9160 logic hand-crafted from existing routines); 5212 remains open-coded but is now hooked in via ah_configPCIE o add PCIE workaround gunk o add ar5416AttachPCIE for iodomatic code used by 5416 and later parts Revision Changes Path 1.6 +2 -0 src/sys/dev/ath/ath_hal/ah.h 1.10 +5 -0 src/sys/dev/ath/ath_hal/ah_internal.h 1.4 +15 -0 src/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c 1.5 +15 -0 src/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c 1.3 +1 -1 src/sys/dev/ath/ath_hal/ar5212/ar2425.c 1.6 +0 -2 src/sys/dev/ath/ath_hal/ar5212/ar5212.h 1.4 +46 -34 src/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c 1.9 +1 -1 src/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c 1.3 +1 -1 src/sys/dev/ath/ath_hal/ar5212/ar5413.c 1.7 +2 -0 src/sys/dev/ath/ath_hal/ar5416/ar5416.h 1.2 +15 -1 src/sys/dev/ath/ath_hal/ar5416/ar5416.ini 1.6 +27 -0 src/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c 1.4 +13 -0 src/sys/dev/ath/ath_hal/ar5416/ar5416reg.h 1.2 +15 -1 src/sys/dev/ath/ath_hal/ar5416/ar9160.ini 1.5 +4 -1 src/sys/dev/ath/ath_hal/ar5416/ar9160_attach.c