From owner-cvs-src-old@FreeBSD.ORG Tue Feb 1 03:51: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 7A89B106566B for ; Tue, 1 Feb 2011 03:51: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 648ED8FC12 for ; Tue, 1 Feb 2011 03:51: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 p113pufM015640 for ; Tue, 1 Feb 2011 03:51:56 GMT (envelope-from adrian@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p113puU8015639 for cvs-src-old@freebsd.org; Tue, 1 Feb 2011 03:51:56 GMT (envelope-from adrian@repoman.freebsd.org) Message-Id: <201102010351.p113puU8015639@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to adrian@repoman.freebsd.org using -f From: Adrian Chadd Date: Tue, 1 Feb 2011 03:51:35 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ath/ath_hal ah.c ah.h ah_internal.h src/sys/dev/ath/ath_hal/ar5416 ar5416_attach.c src/sys/dev/ath/ath_hal/ar9001 ar9160_attach.c src/sys/dev/ath/ath_hal/ar9002 ar9280_attach.c ar9285_attach.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, 01 Feb 2011 03:51:56 -0000 adrian 2011-02-01 03:51:35 UTC FreeBSD src repository Modified files: sys/dev/ath/ath_hal ah.c ah.h ah_internal.h sys/dev/ath/ath_hal/ar5416 ar5416_attach.c sys/dev/ath/ath_hal/ar9001 ar9160_attach.c sys/dev/ath/ath_hal/ar9002 ar9280_attach.c ar9285_attach.c Log: SVN rev 218150 on 2011-02-01 03:51:35Z by adrian Add a new capability which reports the number of spatial streams a device supports. The higher levels (net80211, if_ath, ath_rate) need this to make correct choices about what MCS capabilities to advertise and what MCS rates are able to be TXed. In summary: * AR5416 - 2/3 antennas, 2x2 streams * AR9160 - 2/3 antennas, 2x2 streams * AR9220 - 2 antennas, 2x2 sstraems * AR9280 - 2 antennas, 2x2 streams * AR9285 - 2 antennas but with antenna diversity, 1x1 stream Revision Changes Path 1.19 +11 -0 src/sys/dev/ath/ath_hal/ah.c 1.20 +1 -0 src/sys/dev/ath/ath_hal/ah.h 1.20 +2 -0 src/sys/dev/ath/ath_hal/ah_internal.h 1.21 +3 -0 src/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c 1.3 +4 -0 src/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c 1.5 +4 -0 src/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c 1.5 +4 -0 src/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c