From owner-svn-src-head@FreeBSD.ORG Tue Feb 24 01:09:33 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A528106564A; Tue, 24 Feb 2009 01:09:33 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.freebsd.org (Postfix) with ESMTP id 1EED68FC08; Tue, 24 Feb 2009 01:09:32 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from trouble.errno.com (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id n1O19WbP021277 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 23 Feb 2009 17:09:32 -0800 (PST) (envelope-from sam@freebsd.org) Message-ID: <49A348CC.9070305@freebsd.org> Date: Mon, 23 Feb 2009 17:09:32 -0800 From: Sam Leffler Organization: FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (X11/20081209) MIME-Version: 1.0 To: src-committers@freebsd.org References: <200902240107.n1O176dq046398@svn.freebsd.org> In-Reply-To: <200902240107.n1O176dq046398@svn.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-DCC-sonic.net-Metrics: ebb.errno.com; whitelist Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org Subject: Re: svn commit: r188979 - in head/sys/dev/ath/ath_hal: . ar5210 ar5211 ar5212 ar5416 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Feb 2009 01:09:33 -0000 Sam Leffler wrote: > Author: sam > Date: Tue Feb 24 01:07:06 2009 > New Revision: 188979 > URL: http://svn.freebsd.org/changeset/base/188979 > > Log: > 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 > Note this _may_ reduce power consumption for pcie cards; no promises. Still need to hookup to the driver for suspend/resume so beware of regressions (I think worst case it'll just drop back to the previous power usage). Sam