diff options
Diffstat (limited to 'drivers/net/wireless/bcm43xx/bcm43xx_ilt.h')
-rw-r--r-- | drivers/net/wireless/bcm43xx/bcm43xx_ilt.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/drivers/net/wireless/bcm43xx/bcm43xx_ilt.h b/drivers/net/wireless/bcm43xx/bcm43xx_ilt.h new file mode 100644 index 000000000000..464521abf73c --- /dev/null +++ b/drivers/net/wireless/bcm43xx/bcm43xx_ilt.h | |||
@@ -0,0 +1,32 @@ | |||
1 | #ifndef BCM43xx_ILT_H_ | ||
2 | #define BCM43xx_ILT_H_ | ||
3 | |||
4 | #define BCM43xx_ILT_ROTOR_SIZE 53 | ||
5 | extern const u32 bcm43xx_ilt_rotor[BCM43xx_ILT_ROTOR_SIZE]; | ||
6 | #define BCM43xx_ILT_RETARD_SIZE 53 | ||
7 | extern const u32 bcm43xx_ilt_retard[BCM43xx_ILT_RETARD_SIZE]; | ||
8 | #define BCM43xx_ILT_FINEFREQA_SIZE 256 | ||
9 | extern const u16 bcm43xx_ilt_finefreqa[BCM43xx_ILT_FINEFREQA_SIZE]; | ||
10 | #define BCM43xx_ILT_FINEFREQG_SIZE 256 | ||
11 | extern const u16 bcm43xx_ilt_finefreqg[BCM43xx_ILT_FINEFREQG_SIZE]; | ||
12 | #define BCM43xx_ILT_NOISEA2_SIZE 8 | ||
13 | extern const u16 bcm43xx_ilt_noisea2[BCM43xx_ILT_NOISEA2_SIZE]; | ||
14 | #define BCM43xx_ILT_NOISEA3_SIZE 8 | ||
15 | extern const u16 bcm43xx_ilt_noisea3[BCM43xx_ILT_NOISEA3_SIZE]; | ||
16 | #define BCM43xx_ILT_NOISEG1_SIZE 8 | ||
17 | extern const u16 bcm43xx_ilt_noiseg1[BCM43xx_ILT_NOISEG1_SIZE]; | ||
18 | #define BCM43xx_ILT_NOISEG2_SIZE 8 | ||
19 | extern const u16 bcm43xx_ilt_noiseg2[BCM43xx_ILT_NOISEG2_SIZE]; | ||
20 | #define BCM43xx_ILT_NOISESCALEG_SIZE 27 | ||
21 | extern const u16 bcm43xx_ilt_noisescaleg1[BCM43xx_ILT_NOISESCALEG_SIZE]; | ||
22 | extern const u16 bcm43xx_ilt_noisescaleg2[BCM43xx_ILT_NOISESCALEG_SIZE]; | ||
23 | extern const u16 bcm43xx_ilt_noisescaleg3[BCM43xx_ILT_NOISESCALEG_SIZE]; | ||
24 | #define BCM43xx_ILT_SIGMASQR_SIZE 53 | ||
25 | extern const u16 bcm43xx_ilt_sigmasqr1[BCM43xx_ILT_SIGMASQR_SIZE]; | ||
26 | extern const u16 bcm43xx_ilt_sigmasqr2[BCM43xx_ILT_SIGMASQR_SIZE]; | ||
27 | |||
28 | |||
29 | void bcm43xx_ilt_write(struct bcm43xx_private *bcm, u16 offset, u16 val); | ||
30 | u16 bcm43xx_ilt_read(struct bcm43xx_private *bcm, u16 offset); | ||
31 | |||
32 | #endif /* BCM43xx_ILT_H_ */ | ||