From owner-cvs-src-old@FreeBSD.ORG Thu May 26 09:15:56 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 33A991065744 for ; Thu, 26 May 2011 09:15:56 +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 1E3E08FC19 for ; Thu, 26 May 2011 09:15:56 +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 p4Q9FuqX006486 for ; Thu, 26 May 2011 09:15:56 GMT (envelope-from adrian@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p4Q9FuKQ006485 for cvs-src-old@freebsd.org; Thu, 26 May 2011 09:15:56 GMT (envelope-from adrian@repoman.freebsd.org) Message-Id: <201105260915.p4Q9FuKQ006485@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to adrian@repoman.freebsd.org using -f From: Adrian Chadd Date: Thu, 26 May 2011 09:15:33 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ath/ath_hal/ar5416 ar5416_reset.c ar5416phy.h ar5416reg.h src/sys/dev/ath/ath_hal/ar9002 ar9285_phy.c ar9287.c ar9287.h ar9287.ini ar9287_attach.c ar9287_cal.c ar9287_cal.h ar9287_olc.c ar9287_olc.h ar9287_reset.c ar9287_reset.h ar9287an.h ... 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: Thu, 26 May 2011 09:15:56 -0000 adrian 2011-05-26 09:15:33 UTC FreeBSD src repository Modified files: sys/dev/ath/ath_hal/ar5416 ar5416_reset.c ar5416phy.h ar5416reg.h sys/dev/ath/ath_hal/ar9002 ar9285_phy.c Added files: sys/dev/ath/ath_hal/ar9002 ar9287.c ar9287.h ar9287.ini ar9287_attach.c ar9287_cal.c ar9287_cal.h ar9287_olc.c ar9287_olc.h ar9287_reset.c ar9287_reset.h ar9287an.h ar9287phy.h Log: SVN rev 222301 on 2011-05-26 09:15:33Z by adrian Bring over my AR9287 work in progress. It isn't linked into the build because it's missing the TX power and PDADC programming code. This code is mostly based on the ath9k codebase, compared against the Atheros codebase as appropriate. What's implemented: * probe/attach * EEPROM board value programming * RX initial calibration * radio channel programming * general MAC / baseband setup * async fifo setup * open-loop tx power calibration What's missing before it can be enabled by default: * TX power / calibration setting code * closed-loop tx power calibration routines * TSF2 handling * generic timer support from ath9k Obtained from: Atheros, ath9k Revision Changes Path 1.72 +52 -0 src/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c 1.9 +2 -0 src/sys/dev/ath/ath_hal/ar5416/ar5416phy.h 1.25 +30 -1 src/sys/dev/ath/ath_hal/ar5416/ar5416reg.h 1.3 +2 -0 src/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c 1.1 +392 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287.c (new) 1.1 +62 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287.h (new) 1.1 +783 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287.ini (new) 1.1 +457 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c (new) 1.1 +73 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287_cal.c (new) 1.1 +33 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287_cal.h (new) 1.1 +94 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287_olc.c (new) 1.1 +25 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287_olc.h (new) 1.1 +186 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287_reset.c (new) 1.1 +27 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287_reset.h (new) 1.1 +49 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287an.h (new) 1.1 +26 -0 src/sys/dev/ath/ath_hal/ar9002/ar9287phy.h (new)