From owner-cvs-src-old@FreeBSD.ORG Fri Jan 29 10:12:10 2010 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 5EA941065679 for ; Fri, 29 Jan 2010 10:12:10 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2F2948FC1D for ; Fri, 29 Jan 2010 10:12:10 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o0TACA9C020798 for ; Fri, 29 Jan 2010 10:12:10 GMT (envelope-from rpaulo@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o0TACANK020797 for cvs-src-old@freebsd.org; Fri, 29 Jan 2010 10:12:10 GMT (envelope-from rpaulo@repoman.freebsd.org) Message-Id: <201001291012.o0TACANK020797@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rpaulo@repoman.freebsd.org using -f From: Rui Paulo Date: Fri, 29 Jan 2010 10:10:14 +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 ah_eeprom_v4k.h src/sys/dev/ath/ath_hal/ar5212 ar5212_power.c ar5212reg.h src/sys/dev/ath/ath_hal/ar5416 ar5416.h ar5416_ani.c ar5416_attach.c ar5416_cal.c ar5416_cal.h ar5416_gpio.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: Fri, 29 Jan 2010 10:12:10 -0000 rpaulo 2010-01-29 10:10:14 UTC FreeBSD src repository Modified files: sys/conf files sys/dev/ath/ath_hal ah_eeprom_v4k.h sys/dev/ath/ath_hal/ar5212 ar5212_power.c ar5212reg.h sys/dev/ath/ath_hal/ar5416 ar5416.h ar5416_ani.c ar5416_attach.c ar5416_cal.c ar5416_cal.h ar5416_gpio.c ar5416_reset.c ar5416phy.h ar5416reg.h ar9160_attach.c ar9280_attach.c Added files: sys/dev/ath/ath_hal/ar5416 ar9285.ini ar9285v2.ini Log: SVN rev 203159 on 2010-01-29 10:10:14Z by rpaulo Add support for the AR9285 chipset, which is found on many netbooks available today. This card is a low power 802.11bgn that only does 11n rates up to MCS 7 (that's 65 Mbps in 20Mhz mode and 135 in 40Mhz mode). 802.11n is not yet supported, but will be in the future. The driver still has a problem regarding to the setting of txpower on the card, so don't expect good performance yet. After fixing this problem, an MFC is possible. Special thanks to iXsystems and S Smirnov for help with the purchase of a netbook with this card. Sponsored by: iXsystems, Inc. Revision Changes Path 1.1496 +52 -34 src/sys/conf/files 1.2 +2 -4 src/sys/dev/ath/ath_hal/ah_eeprom_v4k.h 1.2 +3 -3 src/sys/dev/ath/ath_hal/ar5212/ar5212_power.c 1.4 +1 -0 src/sys/dev/ath/ath_hal/ar5212/ar5212reg.h 1.9 +1 -0 src/sys/dev/ath/ath_hal/ar5416/ar5416.h 1.3 +3 -3 src/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c 1.11 +1 -1 src/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c 1.4 +60 -2 src/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c 1.3 +1 -1 src/sys/dev/ath/ath_hal/ar5416/ar5416_cal.h 1.5 +3 -1 src/sys/dev/ath/ath_hal/ar5416/ar5416_gpio.c 1.12 +271 -96 src/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c 1.2 +5 -1 src/sys/dev/ath/ath_hal/ar5416/ar5416phy.h 1.5 +102 -34 src/sys/dev/ath/ath_hal/ar5416/ar5416reg.h 1.8 +1 -1 src/sys/dev/ath/ath_hal/ar5416/ar9160_attach.c 1.2 +52 -9 src/sys/dev/ath/ath_hal/ar5416/ar9280_attach.c 1.1 +699 -0 src/sys/dev/ath/ath_hal/ar5416/ar9285.ini (new) 1.1 +746 -0 src/sys/dev/ath/ath_hal/ar5416/ar9285v2.ini (new)