⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ar5212_recv.c

📁 Atheros wifi driver source code
💻 C
字号:
/* * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting * Copyright (c) 2002-2005 Atheros Communications, Inc. * All rights reserved. * * $Id: ar5212_recv.c,v 1.1.1.1 2006/09/12 03:45:26 steven Exp $ */#include "opt_ah.h"#ifdef AH_SUPPORT_AR5212#include "ah.h"#include "ah_internal.h"#include "ar5212/ar5212.h"#include "ar5212/ar5212reg.h"#include "ar5212/ar5212desc.h"/* * Get the RXDP. */u_int32_tar5212GetRxDP(struct ath_hal *ath){	return OS_REG_READ(ath, AR_RXDP);}/* * Set the RxDP. */voidar5212SetRxDP(struct ath_hal *ah, u_int32_t rxdp){	OS_REG_WRITE(ah, AR_RXDP, rxdp);	HALASSERT(OS_REG_READ(ah, AR_RXDP) == rxdp);}/* * Set Receive Enable bits. */voidar5212EnableReceive(struct ath_hal *ah){	OS_REG_WRITE(ah, AR_CR, AR_CR_RXE);}/* * Stop Receive at the DMA engine */HAL_BOOLar5212StopDmaReceive(struct ath_hal *ah){	OS_REG_WRITE(ah, AR_CR, AR_CR_RXD);	/* Set receive disable bit */	if (!ath_hal_wait(ah, AR_CR, AR_CR_RXE, 0)) {#ifdef AH_DEBUG		ath_hal_printf(ah, "%s: dma failed to stop in 10ms\n"			"AR_CR=0x%08x\nAR_DIAG_SW=0x%08x\n",			__func__,			OS_REG_READ(ah, AR_CR),			OS_REG_READ(ah, AR_DIAG_SW));#endif		return AH_FALSE;	} else {		return AH_TRUE;	}}/* * Start Transmit at the PCU engine (unpause receive) */voidar5212StartPcuReceive(struct ath_hal *ah){	OS_REG_WRITE(ah, AR_DIAG_SW,		OS_REG_READ(ah, AR_DIAG_SW) &~ AR_DIAG_RX_DIS);	ar5212EnableMIBCounters(ah);	ar5212AniReset(ah);}/* * Stop Transmit at the PCU engine (pause receive) */voidar5212StopPcuReceive(struct ath_hal *ah){#ifdef AH_SUPPORT_DFS	u_int32_t val;#endif	OS_REG_WRITE(ah, AR_DIAG_SW,		OS_REG_READ(ah, AR_DIAG_SW) | AR_DIAG_RX_DIS);	ar5212DisableMIBCounters(ah);#ifdef AH_SUPPORT_DFS	val = ar5212GetRxFilter(ah);	val &= ~HAL_RX_FILTER_PHYRADAR;	ar5212SetRxFilter(ah, val);#endif}/* * Set multicast filter 0 (lower 32-bits) *               filter 1 (upper 32-bits) */voidar5212SetMulticastFilter(struct ath_hal *ah, u_int32_t filter0, u_int32_t filter1){	OS_REG_WRITE(ah, AR_MCAST_FIL0, filter0);	OS_REG_WRITE(ah, AR_MCAST_FIL1, filter1);}/* * Clear multicast filter by index */HAL_BOOLar5212ClrMulticastFilterIndex(struct ath_hal *ah, u_int32_t ix){	u_int32_t val;	if (ix >= 64)		return AH_FALSE;	if (ix >= 32) {		val = OS_REG_READ(ah, AR_MCAST_FIL1);		OS_REG_WRITE(ah, AR_MCAST_FIL1, (val &~ (1<<(ix-32))));	} else {		val = OS_REG_READ(ah, AR_MCAST_FIL0);		OS_REG_WRITE(ah, AR_MCAST_FIL0, (val &~ (1<<ix)));	}	return AH_TRUE;}/* * Set multicast filter by index */HAL_BOOLar5212SetMulticastFilterIndex(struct ath_hal *ah, u_int32_t ix){	u_int32_t val;	if (ix >= 64)		return AH_FALSE;	if (ix >= 32) {		val = OS_REG_READ(ah, AR_MCAST_FIL1);		OS_REG_WRITE(ah, AR_MCAST_FIL1, (val | (1<<(ix-32))));	} else {		val = OS_REG_READ(ah, AR_MCAST_FIL0);		OS_REG_WRITE(ah, AR_MCAST_FIL0, (val | (1<<ix)));	}	return AH_TRUE;}/* * Get the receive filter. */u_int32_tar5212GetRxFilter(struct ath_hal *ah){	u_int32_t bits = OS_REG_READ(ah, AR_RX_FILTER);	u_int32_t phybits = OS_REG_READ(ah, AR_PHY_ERR);	if (phybits & AR_PHY_ERR_RADAR)		bits |= HAL_RX_FILTER_PHYRADAR;	if (phybits & (AR_PHY_ERR_OFDM_TIMING|AR_PHY_ERR_CCK_TIMING))		bits |= HAL_RX_FILTER_PHYERR;	return bits;}/* * Set the receive filter. */voidar5212SetRxFilter(struct ath_hal *ah, u_int32_t bits){	u_int32_t phybits;	OS_REG_WRITE(ah, AR_RX_FILTER, bits & 0xff);	phybits = 0;	if (bits & HAL_RX_FILTER_PHYRADAR)		phybits |= AR_PHY_ERR_RADAR;	if (bits & HAL_RX_FILTER_PHYERR)		phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;	OS_REG_WRITE(ah, AR_PHY_ERR, phybits);	if (phybits) {		OS_REG_WRITE(ah, AR_RXCFG,			OS_REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);	} else {		OS_REG_WRITE(ah, AR_RXCFG,			OS_REG_READ(ah, AR_RXCFG) &~ AR_RXCFG_ZLFDMA);	}}/* * Initialize RX descriptor, by clearing the status and setting * the size (and any other flags). */HAL_BOOLar5212SetupRxDesc(struct ath_hal *ah, struct ath_desc *ds,	u_int32_t size, u_int flags){	struct ar5212_desc *ads = AR5212DESC(ds);	HALASSERT((size &~ AR_BufLen) == 0);	ads->ds_ctl0 = 0;	ads->ds_ctl1 = size & AR_BufLen;	if (flags & HAL_RXDESC_INTREQ)		ads->ds_ctl1 |= AR_RxInterReq;	ads->ds_rxstatus0 = ads->ds_rxstatus1 = 0;	return AH_TRUE;}/* * Process an RX descriptor, and return the status to the caller. * Copy some hardware specific items into the software portion * of the descriptor. * * NB: the caller is responsible for validating the memory contents *     of the descriptor (e.g. flushing any cached copy). */HAL_STATUSar5212ProcRxDesc(struct ath_hal *ah, struct ath_desc *ds,	u_int32_t pa, struct ath_desc *nds, u_int64_t tsf){	struct ar5212_desc *ads = AR5212DESC(ds);	struct ar5212_desc *ands = AR5212DESC(nds);	if ((ads->ds_rxstatus1 & AR_Done) == 0)		return HAL_EINPROGRESS;	/*	 * Given the use of a self-linked tail be very sure that the hw is	 * done with this descriptor; the hw may have done this descriptor	 * once and picked it up again...make sure the hw has moved on.	 */	if ((ands->ds_rxstatus1&AR_Done) == 0 && OS_REG_READ(ah, AR_RXDP) == pa)		return HAL_EINPROGRESS;	ds->ds_rxstat->rs_datalen = ads->ds_rxstatus0 & AR_DataLen;	ds->ds_rxstat->rs_tstamp = MS(ads->ds_rxstatus1, AR_RcvTimestamp);	ds->ds_rxstat->rs_status = 0;	/* XXX what about KeyCacheMiss? */	ds->ds_rxstat->rs_rssi = MS(ads->ds_rxstatus0, AR_RcvSigStrength);	if (ads->ds_rxstatus1 & AR_KeyIdxValid)		ds->ds_rxstat->rs_keyix = MS(ads->ds_rxstatus1, AR_KeyIdx);	else		ds->ds_rxstat->rs_keyix = HAL_RXKEYIX_INVALID;	/* NB: caller expected to do rate table mapping */	ds->ds_rxstat->rs_rate = MS(ads->ds_rxstatus0, AR_RcvRate);	ds->ds_rxstat->rs_antenna  = MS(ads->ds_rxstatus0, AR_RcvAntenna);	ds->ds_rxstat->rs_more = (ads->ds_rxstatus0 & AR_More) ? 1 : 0;	if ((ads->ds_rxstatus1 & AR_FrmRcvOK) == 0) {		/*		 * These four bits should not be set together.  The		 * 5212 spec states a Michael error can only occur if		 * DecryptCRCErr not set (and TKIP is used).  Experience		 * indicates however that you can also get Michael errors		 * when a CRC error is detected, but these are specious.		 * Consequently we filter them out here so we don't		 * confuse and/or complicate drivers.		 */		if (ads->ds_rxstatus1 & AR_CRCErr)			ds->ds_rxstat->rs_status |= HAL_RXERR_CRC;		else if (ads->ds_rxstatus1 & AR_PHYErr) {			u_int phyerr;			ds->ds_rxstat->rs_status |= HAL_RXERR_PHY;			phyerr = MS(ads->ds_rxstatus1, AR_PHYErrCode);			ds->ds_rxstat->rs_phyerr = phyerr;			if ((!AH5212(ah)->ah_hasHwPhyCounters) &&			    (phyerr != HAL_PHYERR_RADAR))				ar5212AniPhyErrReport(ah, ds->ds_rxstat);		} else if (ads->ds_rxstatus1 & AR_DecryptCRCErr)			ds->ds_rxstat->rs_status |= HAL_RXERR_DECRYPT;		else if (ads->ds_rxstatus1 & AR_MichaelErr)			ds->ds_rxstat->rs_status |= HAL_RXERR_MIC;	}	return HAL_OK;}#endif /* AH_SUPPORT_AR5212 */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -