From owner-cvs-src-old@FreeBSD.ORG Fri Mar 11 11:59:20 2011 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 52DFC1065672 for ; Fri, 11 Mar 2011 11:59:20 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 22F3E8FC0C for ; Fri, 11 Mar 2011 11:59:20 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p2BBxK3F072544 for ; Fri, 11 Mar 2011 11:59:20 GMT (envelope-from adrian@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p2BBxKVc072543 for cvs-src-old@freebsd.org; Fri, 11 Mar 2011 11:59:20 GMT (envelope-from adrian@repoman.freebsd.org) Message-Id: <201103111159.p2BBxKVc072543@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to adrian@repoman.freebsd.org using -f From: Adrian Chadd Date: Fri, 11 Mar 2011 11:58:54 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/dev/ath/ath_hal/ar9002 ar9285.h ar9285_attach.c ar9285_cal.c ar9285_cal.h ar9285phy.h src/sys/modules/ath Makefile 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: Fri, 11 Mar 2011 11:59:20 -0000 adrian 2011-03-11 11:58:54 UTC FreeBSD src repository Modified files: sys/conf files sys/dev/ath/ath_hal/ar9002 ar9285.h ar9285_attach.c sys/modules/ath Makefile Added files: sys/dev/ath/ath_hal/ar9002 ar9285_cal.c ar9285_cal.h ar9285phy.h Log: SVN rev 219481 on 2011-03-11 11:58:54Z by adrian Port over the AR9285 PA calibration and initial calibration code from Linux ath9k. The ath9k ar9002_hw_init_cal() isn't entirely clear about what is supposed to be called for what chipsets, so I'm ignoring the rest of it and just porting the AR9285 init cal path as-is and leaving the rest alone. Subsequent commits may also tidy up the Merlin (AR9285) and other chipset support. Obtained from: Linux ath9k Revision Changes Path 1.1572 +2 -0 src/sys/conf/files 1.3 +6 -0 src/sys/dev/ath/ath_hal/ar9002/ar9285.h 1.10 +6 -0 src/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c 1.1 +269 -0 src/sys/dev/ath/ath_hal/ar9002/ar9285_cal.c (new) 1.1 +34 -0 src/sys/dev/ath/ath_hal/ar9002/ar9285_cal.h (new) 1.1 +130 -0 src/sys/dev/ath/ath_hal/ar9002/ar9285phy.h (new) 1.21 +1 -1 src/sys/modules/ath/Makefile