linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* question about ath9k/hw.c,mac.c
@ 2010-03-10 12:36 Julia Lawall
  2010-03-11  7:16 ` Pavel Roskin
  0 siblings, 1 reply; 2+ messages in thread
From: Julia Lawall @ 2010-03-10 12:36 UTC (permalink / raw)
  To: Luis R. Rodriguez, Jouni Malinen, Sujith Manoharan,
	Vasanthakumar Thiagarajan, Senthil Balasubramanian, ath9k-devel,
	linux-wireless

hw.c contains the following code:

static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
                                          enum nl80211_iftype opmode)
{
        ah->mask_reg = AR_IMR_TXERR |
                AR_IMR_TXURN |
                AR_IMR_RXERR |
                AR_IMR_RXORN |
                AR_IMR_BCNMISC;

        if (ah->intr_mitigation)
                ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
        else
                ah->mask_reg |= AR_IMR_RXOK;
...
}

mac.c contains the following code:

omask = ath9k_hw_set_interrupts(ah, ah->mask_reg & ~ATH9K_INT_GLOBAL);

ATH9K_INT_GLOBAL is 0x80000000 (hw.h)

reg.h contains the following definitions:

#define AR_IMR_TXMINTR       0x00080000
#define AR_IMR_RXMINTR       0x01000000
#define AR_IMR_TXINTM        0x40000000
#define AR_IMR_RXINTM        0x80000000

Is it correct that the call to ath9k_hw_set_interrupts is masking out what 
appears to be the flag AR_IMR_RXINTM?  I don't know enough about the code 
to know what it all means, but at least in the definition of the mask_reg 
field in hw.c, AR_IMR_RXINTM seems to be used in a manner that is quite 
parallel to AR_IMR_RXMINTR, and AR_IMR_RXINTM seems to be conceptually 
similar to AR_IMR_TXINTM, but neither of them is masked out.

thanks,
julia


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: question about ath9k/hw.c,mac.c
  2010-03-10 12:36 question about ath9k/hw.c,mac.c Julia Lawall
@ 2010-03-11  7:16 ` Pavel Roskin
  0 siblings, 0 replies; 2+ messages in thread
From: Pavel Roskin @ 2010-03-11  7:16 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Luis R. Rodriguez, Jouni Malinen, Sujith Manoharan,
	Vasanthakumar Thiagarajan, Senthil Balasubramanian, ath9k-devel,
	linux-wireless

On Wed, 2010-03-10 at 13:36 +0100, Julia Lawall wrote:

> mac.c contains the following code:
> 
> omask = ath9k_hw_set_interrupts(ah, ah->mask_reg & ~ATH9K_INT_GLOBAL);
...
> Is it correct that the call to ath9k_hw_set_interrupts is masking out what 
> appears to be the flag AR_IMR_RXINTM?

Thank you for asking this question!

I checked the code, and I see several cases when
ath9k_hw_set_interrupts() is called with constants beginning with
"ATH9K_INT_" in the second argument.

On the other hand, the use of ah->mask_reg appears to be inconsistent
across the code.  Sometimes it's used with "ATH9K_INT_", sometimes with
"AR_IMR_".

While at that, using enum ath9k_int appears to be a bad idea, especially
for storing values that don't fit int, such as ATH9K_INT_GLOBAL.  If the
goal is to use sparse to check for errors, I would use bitwise types
like gfp_t.  Perhaps sparse could be patched to allow mutually
incompatible bitwise types.

My guess is that ath9k_hw_init_interrupt_masks() should be using a local
variable instead of ah->mask_reg:

diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
index 1fb14ed..97cc35f 100644
--- a/drivers/net/wireless/ath/ath9k/hw.c
+++ b/drivers/net/wireless/ath/ath9k/hw.c
@@ -1134,23 +1134,23 @@ static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
 static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
 					  enum nl80211_iftype opmode)
 {
-	ah->mask_reg = AR_IMR_TXERR |
+	u32 imr_mask = AR_IMR_TXERR |
 		AR_IMR_TXURN |
 		AR_IMR_RXERR |
 		AR_IMR_RXORN |
 		AR_IMR_BCNMISC;
 
 	if (ah->config.rx_intr_mitigation)
-		ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
+		imr_mask |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
 	else
-		ah->mask_reg |= AR_IMR_RXOK;
+		imr_mask |= AR_IMR_RXOK;
 
-	ah->mask_reg |= AR_IMR_TXOK;
+	imr_mask |= AR_IMR_TXOK;
 
 	if (opmode == NL80211_IFTYPE_AP)
-		ah->mask_reg |= AR_IMR_MIB;
+		imr_mask |= AR_IMR_MIB;
 
-	REG_WRITE(ah, AR_IMR, ah->mask_reg);
+	REG_WRITE(ah, AR_IMR, imr_mask);
 	ah->imrs2_reg |= AR_IMR_S2_GTT;
 	REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
 

-- 
Regards,
Pavel Roskin

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-03-11  7:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-10 12:36 question about ath9k/hw.c,mac.c Julia Lawall
2010-03-11  7:16 ` Pavel Roskin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).