diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/dma.c')
| -rw-r--r-- | drivers/net/wireless/ath/ath5k/dma.c | 538 | 
1 files changed, 388 insertions, 150 deletions
diff --git a/drivers/net/wireless/ath/ath5k/dma.c b/drivers/net/wireless/ath/ath5k/dma.c index 923c9ca5c4f..e6c52f7c26e 100644 --- a/drivers/net/wireless/ath/ath5k/dma.c +++ b/drivers/net/wireless/ath/ath5k/dma.c @@ -20,44 +20,43 @@  * DMA and interrupt masking functions *  \*************************************/ -/* - * dma.c - DMA and interrupt masking functions +/** + * DOC: DMA and interrupt masking functions   *   * Here we setup descriptor pointers (rxdp/txdp) start/stop dma engine and   * handle queue setup for 5210 chipset (rest are handled on qcu.c). - * Also we setup interrupt mask register (IMR) and read the various iterrupt + * Also we setup interrupt mask register (IMR) and read the various interrupt   * status registers (ISR). - * - * TODO: Handle SISR on 5211+ and introduce a function to return the queue - * number that resulted the interrupt.   */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +  #include "ath5k.h"  #include "reg.h"  #include "debug.h" -#include "base.h" +  /*********\  * Receive *  \*********/  /** - * ath5k_hw_start_rx_dma - Start DMA receive - * + * ath5k_hw_start_rx_dma() - Start DMA receive   * @ah:	The &struct ath5k_hw   */ -void ath5k_hw_start_rx_dma(struct ath5k_hw *ah) +void +ath5k_hw_start_rx_dma(struct ath5k_hw *ah)  {  	ath5k_hw_reg_write(ah, AR5K_CR_RXE, AR5K_CR);  	ath5k_hw_reg_read(ah, AR5K_CR);  }  /** - * ath5k_hw_stop_rx_dma - Stop DMA receive - * + * ath5k_hw_stop_rx_dma() - Stop DMA receive   * @ah:	The &struct ath5k_hw   */ -int ath5k_hw_stop_rx_dma(struct ath5k_hw *ah) +static int +ath5k_hw_stop_rx_dma(struct ath5k_hw *ah)  {  	unsigned int i; @@ -69,32 +68,43 @@ int ath5k_hw_stop_rx_dma(struct ath5k_hw *ah)  	for (i = 1000; i > 0 &&  			(ath5k_hw_reg_read(ah, AR5K_CR) & AR5K_CR_RXE) != 0;  			i--) -		udelay(10); +		udelay(100); + +	if (!i) +		ATH5K_DBG(ah, ATH5K_DEBUG_DMA, +				"failed to stop RX DMA !\n");  	return i ? 0 : -EBUSY;  }  /** - * ath5k_hw_get_rxdp - Get RX Descriptor's address - * + * ath5k_hw_get_rxdp() - Get RX Descriptor's address   * @ah: The &struct ath5k_hw   */ -u32 ath5k_hw_get_rxdp(struct ath5k_hw *ah) +u32 +ath5k_hw_get_rxdp(struct ath5k_hw *ah)  {  	return ath5k_hw_reg_read(ah, AR5K_RXDP);  }  /** - * ath5k_hw_set_rxdp - Set RX Descriptor's address - * + * ath5k_hw_set_rxdp() - Set RX Descriptor's address   * @ah: The &struct ath5k_hw   * @phys_addr: RX descriptor address   * - * XXX: Should we check if rx is enabled before setting rxdp ? + * Returns -EIO if rx is active   */ -void ath5k_hw_set_rxdp(struct ath5k_hw *ah, u32 phys_addr) +int +ath5k_hw_set_rxdp(struct ath5k_hw *ah, u32 phys_addr)  { +	if (ath5k_hw_reg_read(ah, AR5K_CR) & AR5K_CR_RXE) { +		ATH5K_DBG(ah, ATH5K_DEBUG_DMA, +				"tried to set RXDP while rx was active !\n"); +		return -EIO; +	} +  	ath5k_hw_reg_write(ah, phys_addr, AR5K_RXDP); +	return 0;  } @@ -103,8 +113,7 @@ void ath5k_hw_set_rxdp(struct ath5k_hw *ah, u32 phys_addr)  \**********/  /** - * ath5k_hw_start_tx_dma - Start DMA transmit for a specific queue - * + * ath5k_hw_start_tx_dma() - Start DMA transmit for a specific queue   * @ah: The &struct ath5k_hw   * @queue: The hw queue number   * @@ -117,7 +126,8 @@ void ath5k_hw_set_rxdp(struct ath5k_hw *ah, u32 phys_addr)   * NOTE: Must be called after setting up tx control descriptor for that   * queue (see below).   */ -int ath5k_hw_start_tx_dma(struct ath5k_hw *ah, unsigned int queue) +int +ath5k_hw_start_tx_dma(struct ath5k_hw *ah, unsigned int queue)  {  	u32 tx_queue; @@ -125,7 +135,7 @@ int ath5k_hw_start_tx_dma(struct ath5k_hw *ah, unsigned int queue)  	/* Return if queue is declared inactive */  	if (ah->ah_txq[queue].tqi_type == AR5K_TX_QUEUE_INACTIVE) -		return -EIO; +		return -EINVAL;  	if (ah->ah_version == AR5K_AR5210) {  		tx_queue = ath5k_hw_reg_read(ah, AR5K_CR); @@ -166,17 +176,16 @@ int ath5k_hw_start_tx_dma(struct ath5k_hw *ah, unsigned int queue)  }  /** - * ath5k_hw_stop_tx_dma - Stop DMA transmit on a specific queue - * + * ath5k_hw_stop_tx_dma() - Stop DMA transmit on a specific queue   * @ah: The &struct ath5k_hw   * @queue: The hw queue number   *   * Stop DMA transmit on a specific hw queue and drain queue so we don't   * have any pending frames. Returns -EBUSY if we still have pending frames, - * -EINVAL if queue number is out of range. - * + * -EINVAL if queue number is out of range or inactive.   */ -int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue) +static int +ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue)  {  	unsigned int i = 40;  	u32 tx_queue, pending; @@ -185,7 +194,7 @@ int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue)  	/* Return if queue is declared inactive */  	if (ah->ah_txq[queue].tqi_type == AR5K_TX_QUEUE_INACTIVE) -		return -EIO; +		return -EINVAL;  	if (ah->ah_version == AR5K_AR5210) {  		tx_queue = ath5k_hw_reg_read(ah, AR5K_CR); @@ -211,12 +220,31 @@ int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue)  		ath5k_hw_reg_write(ah, tx_queue, AR5K_CR);  		ath5k_hw_reg_read(ah, AR5K_CR);  	} else { + +		/* +		 * Enable DCU early termination to quickly +		 * flush any pending frames from QCU +		 */ +		AR5K_REG_ENABLE_BITS(ah, AR5K_QUEUE_MISC(queue), +					AR5K_QCU_MISC_DCU_EARLY); +  		/*  		 * Schedule TX disable and wait until queue is empty  		 */  		AR5K_REG_WRITE_Q(ah, AR5K_QCU_TXD, queue); -		/*Check for pending frames*/ +		/* Wait for queue to stop */ +		for (i = 1000; i > 0 && +		(AR5K_REG_READ_Q(ah, AR5K_QCU_TXE, queue) != 0); +		i--) +			udelay(100); + +		if (AR5K_REG_READ_Q(ah, AR5K_QCU_TXE, queue)) +			ATH5K_DBG(ah, ATH5K_DEBUG_DMA, +				"queue %i didn't stop !\n", queue); + +		/* Check for pending frames */ +		i = 1000;  		do {  			pending = ath5k_hw_reg_read(ah,  				AR5K_QUEUE_STATUS(queue)) & @@ -227,7 +255,7 @@ int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue)  		/* For 2413+ order PCU to drop packets using  		 * QUIET mechanism */  		if (ah->ah_mac_version >= (AR5K_SREV_AR2414 >> 4) && -		pending){ +		    pending) {  			/* Set periodicity and duration */  			ath5k_hw_reg_write(ah,  				AR5K_REG_SM(100, AR5K_QUIET_CTL2_QT_PER)| @@ -247,12 +275,12 @@ int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue)  					AR5K_DIAG_SW_CHANNEL_IDLE_HIGH);  			/* Wait a while and disable mechanism */ -			udelay(200); +			udelay(400);  			AR5K_REG_DISABLE_BITS(ah, AR5K_QUIET_CTL1,  						AR5K_QUIET_CTL1_QT_EN);  			/* Re-check for pending frames */ -			i = 40; +			i = 100;  			do {  				pending = ath5k_hw_reg_read(ah,  					AR5K_QUEUE_STATUS(queue)) & @@ -262,12 +290,27 @@ int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue)  			AR5K_REG_DISABLE_BITS(ah, AR5K_DIAG_SW_5211,  					AR5K_DIAG_SW_CHANNEL_IDLE_HIGH); + +			if (pending) +				ATH5K_DBG(ah, ATH5K_DEBUG_DMA, +					"quiet mechanism didn't work q:%i !\n", +					queue);  		} +		/* +		 * Disable DCU early termination +		 */ +		AR5K_REG_DISABLE_BITS(ah, AR5K_QUEUE_MISC(queue), +					AR5K_QCU_MISC_DCU_EARLY); +  		/* Clear register */  		ath5k_hw_reg_write(ah, 0, AR5K_QCU_TXD); -		if (pending) +		if (pending) { +			ATH5K_DBG(ah, ATH5K_DEBUG_DMA, +					"tx dma didn't stop (q:%i, frm:%i) !\n", +					queue, pending);  			return -EBUSY; +		}  	}  	/* TODO: Check for success on 5210 else return error */ @@ -275,8 +318,27 @@ int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue)  }  /** - * ath5k_hw_get_txdp - Get TX Descriptor's address for a specific queue + * ath5k_hw_stop_beacon_queue() - Stop beacon queue + * @ah: The &struct ath5k_hw + * @queue: The queue number   * + * Returns -EIO if queue didn't stop + */ +int +ath5k_hw_stop_beacon_queue(struct ath5k_hw *ah, unsigned int queue) +{ +	int ret; +	ret = ath5k_hw_stop_tx_dma(ah, queue); +	if (ret) { +		ATH5K_DBG(ah, ATH5K_DEBUG_DMA, +				"beacon queue didn't stop !\n"); +		return -EIO; +	} +	return 0; +} + +/** + * ath5k_hw_get_txdp() - Get TX Descriptor's address for a specific queue   * @ah: The &struct ath5k_hw   * @queue: The hw queue number   * @@ -287,7 +349,8 @@ int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue)   *   * XXX: Is TXDP read and clear ?   */ -u32 ath5k_hw_get_txdp(struct ath5k_hw *ah, unsigned int queue) +u32 +ath5k_hw_get_txdp(struct ath5k_hw *ah, unsigned int queue)  {  	u16 tx_reg; @@ -317,10 +380,10 @@ u32 ath5k_hw_get_txdp(struct ath5k_hw *ah, unsigned int queue)  }  /** - * ath5k_hw_set_txdp - Set TX Descriptor's address for a specific queue - * + * ath5k_hw_set_txdp() - Set TX Descriptor's address for a specific queue   * @ah: The &struct ath5k_hw   * @queue: The hw queue number + * @phys_addr: The physical address   *   * Set TX descriptor's address for a specific queue. For 5210 we ignore   * the queue number and we use tx queue type since we only have 2 queues @@ -329,7 +392,8 @@ u32 ath5k_hw_get_txdp(struct ath5k_hw *ah, unsigned int queue)   * Returns -EINVAL if queue type is invalid for 5210 and -EIO if queue is still   * active.   */ -int ath5k_hw_set_txdp(struct ath5k_hw *ah, unsigned int queue, u32 phys_addr) +int +ath5k_hw_set_txdp(struct ath5k_hw *ah, unsigned int queue, u32 phys_addr)  {  	u16 tx_reg; @@ -370,8 +434,7 @@ int ath5k_hw_set_txdp(struct ath5k_hw *ah, unsigned int queue, u32 phys_addr)  }  /** - * ath5k_hw_update_tx_triglevel - Update tx trigger level - * + * ath5k_hw_update_tx_triglevel() - Update tx trigger level   * @ah: The &struct ath5k_hw   * @increase: Flag to force increase of trigger level   * @@ -379,15 +442,15 @@ int ath5k_hw_set_txdp(struct ath5k_hw *ah, unsigned int queue, u32 phys_addr)   * buffer (aka FIFO threshold) that is used to indicate when PCU flushes   * the buffer and transmits its data. Lowering this results sending small   * frames more quickly but can lead to tx underruns, raising it a lot can - * result other problems (i think bmiss is related). Right now we start with - * the lowest possible (64Bytes) and if we get tx underrun we increase it using - * the increase flag. Returns -EIO if we have reached maximum/minimum. + * result other problems. Right now we start with the lowest possible + * (64Bytes) and if we get tx underrun we increase it using the increase + * flag. Returns -EIO if we have reached maximum/minimum.   *   * XXX: Link this with tx DMA size ? - * XXX: Use it to save interrupts ? - * TODO: Needs testing, i think it's related to bmiss... + * XXX2: Use it to save interrupts ?   */ -int ath5k_hw_update_tx_triglevel(struct ath5k_hw *ah, bool increase) +int +ath5k_hw_update_tx_triglevel(struct ath5k_hw *ah, bool increase)  {  	u32 trigger_level, imr;  	int ret = -EIO; @@ -427,26 +490,26 @@ done:  	return ret;  } +  /*******************\  * Interrupt masking *  \*******************/  /** - * ath5k_hw_is_intr_pending - Check if we have pending interrupts - * + * ath5k_hw_is_intr_pending() - Check if we have pending interrupts   * @ah: The &struct ath5k_hw   *   * Check if we have pending interrupts to process. Returns 1 if we   * have pending interrupts and 0 if we haven't.   */ -bool ath5k_hw_is_intr_pending(struct ath5k_hw *ah) +bool +ath5k_hw_is_intr_pending(struct ath5k_hw *ah)  {  	return ath5k_hw_reg_read(ah, AR5K_INTPEND) == 1 ? 1 : 0;  }  /** - * ath5k_hw_get_isr - Get interrupt status - * + * ath5k_hw_get_isr() - Get interrupt status   * @ah: The @struct ath5k_hw   * @interrupt_mask: Driver's interrupt mask used to filter out   * interrupts in sw. @@ -457,62 +520,171 @@ bool ath5k_hw_is_intr_pending(struct ath5k_hw *ah)   * being mapped on some standard non hw-specific positions   * (check out &ath5k_int).   * - * NOTE: We use read-and-clear register, so after this function is called ISR - * is zeroed. + * NOTE: We do write-to-clear, so the active PISR/SISR bits at the time this + * function gets called are cleared on return.   */ -int ath5k_hw_get_isr(struct ath5k_hw *ah, enum ath5k_int *interrupt_mask) +int +ath5k_hw_get_isr(struct ath5k_hw *ah, enum ath5k_int *interrupt_mask)  { -	u32 data; +	u32 data = 0;  	/* -	 * Read interrupt status from the Interrupt Status register -	 * on 5210 +	 * Read interrupt status from Primary Interrupt +	 * Register. +	 * +	 * Note: PISR/SISR Not available on 5210  	 */  	if (ah->ah_version == AR5K_AR5210) { -		data = ath5k_hw_reg_read(ah, AR5K_ISR); -		if (unlikely(data == AR5K_INT_NOCARD)) { -			*interrupt_mask = data; +		u32 isr = 0; +		isr = ath5k_hw_reg_read(ah, AR5K_ISR); +		if (unlikely(isr == AR5K_INT_NOCARD)) { +			*interrupt_mask = isr;  			return -ENODEV;  		} -	} else { +  		/* -		 * Read interrupt status from Interrupt -		 * Status Register shadow copy (Read And Clear) -		 * -		 * Note: PISR/SISR Not available on 5210 +		 * Filter out the non-common bits from the interrupt +		 * status. +		 */ +		*interrupt_mask = (isr & AR5K_INT_COMMON) & ah->ah_imr; + +		/* Hanlde INT_FATAL */ +		if (unlikely(isr & (AR5K_ISR_SSERR | AR5K_ISR_MCABT +						| AR5K_ISR_DPERR))) +			*interrupt_mask |= AR5K_INT_FATAL; + +		/* +		 * XXX: BMISS interrupts may occur after association. +		 * I found this on 5210 code but it needs testing. If this is +		 * true we should disable them before assoc and re-enable them +		 * after a successful assoc + some jiffies. +			interrupt_mask &= ~AR5K_INT_BMISS;  		 */ -		data = ath5k_hw_reg_read(ah, AR5K_RAC_PISR); -		if (unlikely(data == AR5K_INT_NOCARD)) { -			*interrupt_mask = data; + +		data = isr; +	} else { +		u32 pisr = 0; +		u32 pisr_clear = 0; +		u32 sisr0 = 0; +		u32 sisr1 = 0; +		u32 sisr2 = 0; +		u32 sisr3 = 0; +		u32 sisr4 = 0; + +		/* Read PISR and SISRs... */ +		pisr = ath5k_hw_reg_read(ah, AR5K_PISR); +		if (unlikely(pisr == AR5K_INT_NOCARD)) { +			*interrupt_mask = pisr;  			return -ENODEV;  		} -	} -	/* -	 * Get abstract interrupt mask (driver-compatible) -	 */ -	*interrupt_mask = (data & AR5K_INT_COMMON) & ah->ah_imr; +		sisr0 = ath5k_hw_reg_read(ah, AR5K_SISR0); +		sisr1 = ath5k_hw_reg_read(ah, AR5K_SISR1); +		sisr2 = ath5k_hw_reg_read(ah, AR5K_SISR2); +		sisr3 = ath5k_hw_reg_read(ah, AR5K_SISR3); +		sisr4 = ath5k_hw_reg_read(ah, AR5K_SISR4); -	if (ah->ah_version != AR5K_AR5210) { -		u32 sisr2 = ath5k_hw_reg_read(ah, AR5K_RAC_SISR2); +		/* +		 * PISR holds the logical OR of interrupt bits +		 * from SISR registers: +		 * +		 * TXOK and TXDESC  -> Logical OR of TXOK and TXDESC +		 *			per-queue bits on SISR0 +		 * +		 * TXERR and TXEOL -> Logical OR of TXERR and TXEOL +		 *			per-queue bits on SISR1 +		 * +		 * TXURN -> Logical OR of TXURN per-queue bits on SISR2 +		 * +		 * HIUERR -> Logical OR of MCABT, SSERR and DPER bits on SISR2 +		 * +		 * BCNMISC -> Logical OR of TIM, CAB_END, DTIM_SYNC +		 *		BCN_TIMEOUT, CAB_TIMEOUT and DTIM +		 *		(and TSFOOR ?) bits on SISR2 +		 * +		 * QCBRORN and QCBRURN -> Logical OR of QCBRORN and +		 *			QCBRURN per-queue bits on SISR3 +		 * QTRIG -> Logical OR of QTRIG per-queue bits on SISR4 +		 * +		 * If we clean these bits on PISR we 'll also clear all +		 * related bits from SISRs, e.g. if we write the TXOK bit on +		 * PISR we 'll clean all TXOK bits from SISR0 so if a new TXOK +		 * interrupt got fired for another queue while we were reading +		 * the interrupt registers and we write back the TXOK bit on +		 * PISR we 'll lose it. So make sure that we don't write back +		 * on PISR any bits that come from SISRs. Clearing them from +		 * SISRs will also clear PISR so no need to worry here. +		 */ -		/*HIU = Host Interface Unit (PCI etc)*/ -		if (unlikely(data & (AR5K_ISR_HIUERR))) -			*interrupt_mask |= AR5K_INT_FATAL; +		/* XXX: There seems to be  an issue on some cards +		 *	with tx interrupt flags not being updated +		 *	on PISR despite that all Tx interrupt bits +		 * 	are cleared on SISRs. Since we handle all +		 *	Tx queues all together it shouldn't be an +		 *	issue if we clear Tx interrupt flags also +		 * 	on PISR to avoid that. +		 */ +		pisr_clear = (pisr & ~AR5K_ISR_BITS_FROM_SISRS) | +					(pisr & AR5K_INT_TX_ALL); -		/*Beacon Not Ready*/ -		if (unlikely(data & (AR5K_ISR_BNR))) -			*interrupt_mask |= AR5K_INT_BNR; +		/* +		 * Write to clear them... +		 * Note: This means that each bit we write back +		 * to the registers will get cleared, leaving the +		 * rest unaffected. So this won't affect new interrupts +		 * we didn't catch while reading/processing, we 'll get +		 * them next time get_isr gets called. +		 */ +		ath5k_hw_reg_write(ah, sisr0, AR5K_SISR0); +		ath5k_hw_reg_write(ah, sisr1, AR5K_SISR1); +		ath5k_hw_reg_write(ah, sisr2, AR5K_SISR2); +		ath5k_hw_reg_write(ah, sisr3, AR5K_SISR3); +		ath5k_hw_reg_write(ah, sisr4, AR5K_SISR4); +		ath5k_hw_reg_write(ah, pisr_clear, AR5K_PISR); +		/* Flush previous write */ +		ath5k_hw_reg_read(ah, AR5K_PISR); -		if (unlikely(sisr2 & (AR5K_SISR2_SSERR | -					AR5K_SISR2_DPERR | -					AR5K_SISR2_MCABT))) -			*interrupt_mask |= AR5K_INT_FATAL; +		/* +		 * Filter out the non-common bits from the interrupt +		 * status. +		 */ +		*interrupt_mask = (pisr & AR5K_INT_COMMON) & ah->ah_imr; + + +		/* We treat TXOK,TXDESC, TXERR and TXEOL +		 * the same way (schedule the tx tasklet) +		 * so we track them all together per queue */ +		if (pisr & AR5K_ISR_TXOK) +			ah->ah_txq_isr_txok_all |= AR5K_REG_MS(sisr0, +						AR5K_SISR0_QCU_TXOK); -		if (data & AR5K_ISR_TIM) +		if (pisr & AR5K_ISR_TXDESC) +			ah->ah_txq_isr_txok_all |= AR5K_REG_MS(sisr0, +						AR5K_SISR0_QCU_TXDESC); + +		if (pisr & AR5K_ISR_TXERR) +			ah->ah_txq_isr_txok_all |= AR5K_REG_MS(sisr1, +						AR5K_SISR1_QCU_TXERR); + +		if (pisr & AR5K_ISR_TXEOL) +			ah->ah_txq_isr_txok_all |= AR5K_REG_MS(sisr1, +						AR5K_SISR1_QCU_TXEOL); + +		/* Currently this is not much useful since we treat +		 * all queues the same way if we get a TXURN (update +		 * tx trigger level) but we might need it later on*/ +		if (pisr & AR5K_ISR_TXURN) +			ah->ah_txq_isr_txurn |= AR5K_REG_MS(sisr2, +						AR5K_SISR2_QCU_TXURN); + +		/* Misc Beacon related interrupts */ + +		/* For AR5211 */ +		if (pisr & AR5K_ISR_TIM)  			*interrupt_mask |= AR5K_INT_TIM; -		if (data & AR5K_ISR_BCNMISC) { +		/* For AR5212+ */ +		if (pisr & AR5K_ISR_BCNMISC) {  			if (sisr2 & AR5K_SISR2_TIM)  				*interrupt_mask |= AR5K_INT_TIM;  			if (sisr2 & AR5K_SISR2_DTIM) @@ -525,63 +697,39 @@ int ath5k_hw_get_isr(struct ath5k_hw *ah, enum ath5k_int *interrupt_mask)  				*interrupt_mask |= AR5K_INT_CAB_TIMEOUT;  		} -		if (data & AR5K_ISR_RXDOPPLER) -			*interrupt_mask |= AR5K_INT_RX_DOPPLER; -		if (data & AR5K_ISR_QCBRORN) { +		/* Below interrupts are unlikely to happen */ + +		/* HIU = Host Interface Unit (PCI etc) +		 * Can be one of MCABT, SSERR, DPERR from SISR2 */ +		if (unlikely(pisr & (AR5K_ISR_HIUERR))) +			*interrupt_mask |= AR5K_INT_FATAL; + +		/*Beacon Not Ready*/ +		if (unlikely(pisr & (AR5K_ISR_BNR))) +			*interrupt_mask |= AR5K_INT_BNR; + +		/* A queue got CBR overrun */ +		if (unlikely(pisr & (AR5K_ISR_QCBRORN))) {  			*interrupt_mask |= AR5K_INT_QCBRORN; -			ah->ah_txq_isr |= AR5K_REG_MS( -					ath5k_hw_reg_read(ah, AR5K_RAC_SISR3), -					AR5K_SISR3_QCBRORN); +			ah->ah_txq_isr_qcborn |= AR5K_REG_MS(sisr3, +						AR5K_SISR3_QCBRORN);  		} -		if (data & AR5K_ISR_QCBRURN) { + +		/* A queue got CBR underrun */ +		if (unlikely(pisr & (AR5K_ISR_QCBRURN))) {  			*interrupt_mask |= AR5K_INT_QCBRURN; -			ah->ah_txq_isr |= AR5K_REG_MS( -					ath5k_hw_reg_read(ah, AR5K_RAC_SISR3), -					AR5K_SISR3_QCBRURN); +			ah->ah_txq_isr_qcburn |= AR5K_REG_MS(sisr3, +						AR5K_SISR3_QCBRURN);  		} -		if (data & AR5K_ISR_QTRIG) { + +		/* A queue got triggered */ +		if (unlikely(pisr & (AR5K_ISR_QTRIG))) {  			*interrupt_mask |= AR5K_INT_QTRIG; -			ah->ah_txq_isr |= AR5K_REG_MS( -					ath5k_hw_reg_read(ah, AR5K_RAC_SISR4), -					AR5K_SISR4_QTRIG); +			ah->ah_txq_isr_qtrig |= AR5K_REG_MS(sisr4, +						AR5K_SISR4_QTRIG);  		} -		if (data & AR5K_ISR_TXOK) -			ah->ah_txq_isr |= AR5K_REG_MS( -					ath5k_hw_reg_read(ah, AR5K_RAC_SISR0), -					AR5K_SISR0_QCU_TXOK); - -		if (data & AR5K_ISR_TXDESC) -			ah->ah_txq_isr |= AR5K_REG_MS( -					ath5k_hw_reg_read(ah, AR5K_RAC_SISR0), -					AR5K_SISR0_QCU_TXDESC); - -		if (data & AR5K_ISR_TXERR) -			ah->ah_txq_isr |= AR5K_REG_MS( -					ath5k_hw_reg_read(ah, AR5K_RAC_SISR1), -					AR5K_SISR1_QCU_TXERR); - -		if (data & AR5K_ISR_TXEOL) -			ah->ah_txq_isr |= AR5K_REG_MS( -					ath5k_hw_reg_read(ah, AR5K_RAC_SISR1), -					AR5K_SISR1_QCU_TXEOL); - -		if (data & AR5K_ISR_TXURN) -			ah->ah_txq_isr |= AR5K_REG_MS( -					ath5k_hw_reg_read(ah, AR5K_RAC_SISR2), -					AR5K_SISR2_QCU_TXURN); -	} else { -		if (unlikely(data & (AR5K_ISR_SSERR | AR5K_ISR_MCABT -				| AR5K_ISR_HIUERR | AR5K_ISR_DPERR))) -			*interrupt_mask |= AR5K_INT_FATAL; - -		/* -		 * XXX: BMISS interrupts may occur after association. -		 * I found this on 5210 code but it needs testing. If this is -		 * true we should disable them before assoc and re-enable them -		 * after a successful assoc + some jiffies. -			interrupt_mask &= ~AR5K_INT_BMISS; -		 */ +		data = pisr;  	}  	/* @@ -595,8 +743,7 @@ int ath5k_hw_get_isr(struct ath5k_hw *ah, enum ath5k_int *interrupt_mask)  }  /** - * ath5k_hw_set_imr - Set interrupt mask - * + * ath5k_hw_set_imr() - Set interrupt mask   * @ah: The &struct ath5k_hw   * @new_mask: The new interrupt mask to be set   * @@ -604,7 +751,8 @@ int ath5k_hw_get_isr(struct ath5k_hw *ah, enum ath5k_int *interrupt_mask)   * ath5k_int bits to hw-specific bits to remove abstraction and writing   * Interrupt Mask Register.   */ -enum ath5k_int ath5k_hw_set_imr(struct ath5k_hw *ah, enum ath5k_int new_mask) +enum ath5k_int +ath5k_hw_set_imr(struct ath5k_hw *ah, enum ath5k_int new_mask)  {  	enum ath5k_int old_mask, int_mask; @@ -631,16 +779,14 @@ enum ath5k_int ath5k_hw_set_imr(struct ath5k_hw *ah, enum ath5k_int new_mask)  		u32 simr2 = ath5k_hw_reg_read(ah, AR5K_SIMR2)  				& AR5K_SIMR2_QCU_TXURN; +		/* Fatal interrupt abstraction for 5211+ */  		if (new_mask & AR5K_INT_FATAL) {  			int_mask |= AR5K_IMR_HIUERR;  			simr2 |= (AR5K_SIMR2_MCABT | AR5K_SIMR2_SSERR  				| AR5K_SIMR2_DPERR);  		} -		/*Beacon Not Ready*/ -		if (new_mask & AR5K_INT_BNR) -			int_mask |= AR5K_INT_BNR; - +		/* Misc beacon related interrupts */  		if (new_mask & AR5K_INT_TIM)  			int_mask |= AR5K_IMR_TIM; @@ -655,19 +801,22 @@ enum ath5k_int ath5k_hw_set_imr(struct ath5k_hw *ah, enum ath5k_int new_mask)  		if (new_mask & AR5K_INT_CAB_TIMEOUT)  			simr2 |= AR5K_SISR2_CAB_TIMEOUT; -		if (new_mask & AR5K_INT_RX_DOPPLER) -			int_mask |= AR5K_IMR_RXDOPPLER; +		/*Beacon Not Ready*/ +		if (new_mask & AR5K_INT_BNR) +			int_mask |= AR5K_INT_BNR;  		/* Note: Per queue interrupt masks -		 * are set via reset_tx_queue (qcu.c) */ +		 * are set via ath5k_hw_reset_tx_queue() (qcu.c) */  		ath5k_hw_reg_write(ah, int_mask, AR5K_PIMR);  		ath5k_hw_reg_write(ah, simr2, AR5K_SIMR2);  	} else { +		/* Fatal interrupt abstraction for 5210 */  		if (new_mask & AR5K_INT_FATAL)  			int_mask |= (AR5K_IMR_SSERR | AR5K_IMR_MCABT  				| AR5K_IMR_HIUERR | AR5K_IMR_DPERR); +		/* Only common interrupts left for 5210 (no SIMRs) */  		ath5k_hw_reg_write(ah, int_mask, AR5K_IMR);  	} @@ -688,3 +837,92 @@ enum ath5k_int ath5k_hw_set_imr(struct ath5k_hw *ah, enum ath5k_int new_mask)  	return old_mask;  } + +/********************\ + Init/Stop functions +\********************/ + +/** + * ath5k_hw_dma_init() - Initialize DMA unit + * @ah: The &struct ath5k_hw + * + * Set DMA size and pre-enable interrupts + * (driver handles tx/rx buffer setup and + * dma start/stop) + * + * XXX: Save/restore RXDP/TXDP registers ? + */ +void +ath5k_hw_dma_init(struct ath5k_hw *ah) +{ +	/* +	 * Set Rx/Tx DMA Configuration +	 * +	 * Set standard DMA size (128). Note that +	 * a DMA size of 512 causes rx overruns and tx errors +	 * on pci-e cards (tested on 5424 but since rx overruns +	 * also occur on 5416/5418 with madwifi we set 128 +	 * for all PCI-E cards to be safe). +	 * +	 * XXX: need to check 5210 for this +	 * TODO: Check out tx trigger level, it's always 64 on dumps but I +	 * guess we can tweak it and see how it goes ;-) +	 */ +	if (ah->ah_version != AR5K_AR5210) { +		AR5K_REG_WRITE_BITS(ah, AR5K_TXCFG, +			AR5K_TXCFG_SDMAMR, AR5K_DMASIZE_128B); +		AR5K_REG_WRITE_BITS(ah, AR5K_RXCFG, +			AR5K_RXCFG_SDMAMW, AR5K_DMASIZE_128B); +	} + +	/* Pre-enable interrupts on 5211/5212*/ +	if (ah->ah_version != AR5K_AR5210) +		ath5k_hw_set_imr(ah, ah->ah_imr); + +} + +/** + * ath5k_hw_dma_stop() - stop DMA unit + * @ah: The &struct ath5k_hw + * + * Stop tx/rx DMA and interrupts. Returns + * -EBUSY if tx or rx dma failed to stop. + * + * XXX: Sometimes DMA unit hangs and we have + * stuck frames on tx queues, only a reset + * can fix that. + */ +int +ath5k_hw_dma_stop(struct ath5k_hw *ah) +{ +	int i, qmax, err; +	err = 0; + +	/* Disable interrupts */ +	ath5k_hw_set_imr(ah, 0); + +	/* Stop rx dma */ +	err = ath5k_hw_stop_rx_dma(ah); +	if (err) +		return err; + +	/* Clear any pending interrupts +	 * and disable tx dma */ +	if (ah->ah_version != AR5K_AR5210) { +		ath5k_hw_reg_write(ah, 0xffffffff, AR5K_PISR); +		qmax = AR5K_NUM_TX_QUEUES; +	} else { +		/* PISR/SISR Not available on 5210 */ +		ath5k_hw_reg_read(ah, AR5K_ISR); +		qmax = AR5K_NUM_TX_QUEUES_NOQCU; +	} + +	for (i = 0; i < qmax; i++) { +		err = ath5k_hw_stop_tx_dma(ah, i); +		/* -EINVAL -> queue inactive */ +		if (err && err != -EINVAL) +			return err; +	} + +	return 0; +}  | 
