ani.h 4.0 KB
Newer Older
S
Sujith 已提交
1
/*
2
 * Copyright (c) 2008-2011 Atheros Communications Inc.
S
Sujith 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef ANI_H
#define ANI_H

#define HAL_PROCESS_ANI           0x00000001

22
#define DO_ANI(ah) (((ah)->proc_phyerr & HAL_PROCESS_ANI) && ah->curchan)
S
Sujith 已提交
23

24
#define BEACON_RSSI(ahp) (ahp->stats.avgbrssi)
S
Sujith 已提交
25

26
/* units are errors per second */
27
#define ATH9K_ANI_OFDM_TRIG_HIGH          3500
28
#define ATH9K_ANI_OFDM_TRIG_HIGH_BELOW_INI 1000
29 30

/* units are errors per second */
31
#define ATH9K_ANI_OFDM_TRIG_LOW           400
32
#define ATH9K_ANI_OFDM_TRIG_LOW_ABOVE_INI 900
33 34

/* units are errors per second */
35
#define ATH9K_ANI_CCK_TRIG_HIGH           600
36 37

/* units are errors per second */
38
#define ATH9K_ANI_CCK_TRIG_LOW            300
39

S
Sujith 已提交
40 41 42
#define ATH9K_ANI_NOISE_IMMUNE_LVL        4
#define ATH9K_ANI_USE_OFDM_WEAK_SIG       true
#define ATH9K_ANI_CCK_WEAK_SIG_THR        false
43

44
#define ATH9K_ANI_SPUR_IMMUNE_LVL         3
45

46
#define ATH9K_ANI_FIRSTEP_LVL             2
47

S
Sujith 已提交
48 49
#define ATH9K_ANI_RSSI_THR_HIGH           40
#define ATH9K_ANI_RSSI_THR_LOW            7
50

51
#define ATH9K_ANI_PERIOD                  300
52 53

/* in ms */
54
#define ATH9K_ANI_POLLINTERVAL            1000
S
Sujith 已提交
55 56 57 58 59

#define HAL_NOISE_IMMUNE_MAX              4
#define HAL_SPUR_IMMUNE_MAX               7
#define HAL_FIRST_STEP_MAX                2

60 61 62 63 64 65 66
#define ATH9K_SIG_FIRSTEP_SETTING_MIN     0
#define ATH9K_SIG_FIRSTEP_SETTING_MAX     20
#define ATH9K_SIG_SPUR_IMM_SETTING_MIN    0
#define ATH9K_SIG_SPUR_IMM_SETTING_MAX    22

/* values here are relative to the INI */

S
Sujith 已提交
67 68 69 70 71 72 73 74 75
enum ath9k_ani_cmd {
	ATH9K_ANI_PRESENT = 0x1,
	ATH9K_ANI_NOISE_IMMUNITY_LEVEL = 0x2,
	ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION = 0x4,
	ATH9K_ANI_CCK_WEAK_SIGNAL_THR = 0x8,
	ATH9K_ANI_FIRSTEP_LEVEL = 0x10,
	ATH9K_ANI_SPUR_IMMUNITY_LEVEL = 0x20,
	ATH9K_ANI_MODE = 0x40,
	ATH9K_ANI_PHYERR_RESET = 0x80,
76 77
	ATH9K_ANI_MRC_CCK = 0x100,
	ATH9K_ANI_ALL = 0xfff
S
Sujith 已提交
78 79 80 81 82 83 84 85 86 87
};

struct ath9k_mib_stats {
	u32 ackrcv_bad;
	u32 rts_bad;
	u32 rts_good;
	u32 fcs_bad;
	u32 beacons;
};

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
/* INI default values for ANI registers */
struct ath9k_ani_default {
	u16 m1ThreshLow;
	u16 m2ThreshLow;
	u16 m1Thresh;
	u16 m2Thresh;
	u16 m2CountThr;
	u16 m2CountThrLow;
	u16 m1ThreshLowExt;
	u16 m2ThreshLowExt;
	u16 m1ThreshExt;
	u16 m2ThreshExt;
	u16 firstep;
	u16 firstepLow;
	u16 cycpwrThr1;
	u16 cycpwrThr1Ext;
};

S
Sujith 已提交
106 107 108
struct ar5416AniState {
	struct ath9k_channel *c;
	u8 noiseImmunityLevel;
109 110 111
	u8 ofdmNoiseImmunityLevel;
	u8 cckNoiseImmunityLevel;
	bool ofdmsTurn;
112
	u8 mrcCCK;
S
Sujith 已提交
113 114
	u8 spurImmunityLevel;
	u8 firstepLevel;
115
	u8 ofdmWeakSigDetect;
S
Sujith 已提交
116 117 118 119 120 121 122 123 124
	u8 cckWeakSigThreshold;
	u32 listenTime;
	int32_t rssiThrLow;
	int32_t rssiThrHigh;
	u32 ofdmPhyErrCount;
	u32 cckPhyErrCount;
	int16_t pktRssi[2];
	int16_t ofdmErrRssi[2];
	int16_t cckErrRssi[2];
125
	struct ath9k_ani_default iniDef;
S
Sujith 已提交
126 127
};

S
Sujith 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140 141
struct ar5416Stats {
	u32 ast_ani_niup;
	u32 ast_ani_nidown;
	u32 ast_ani_spurup;
	u32 ast_ani_spurdown;
	u32 ast_ani_ofdmon;
	u32 ast_ani_ofdmoff;
	u32 ast_ani_cckhigh;
	u32 ast_ani_ccklow;
	u32 ast_ani_stepup;
	u32 ast_ani_stepdown;
	u32 ast_ani_ofdmerrs;
	u32 ast_ani_cckerrs;
	u32 ast_ani_reset;
142
	u32 ast_ani_lneg_or_lzero;
143
	u32 avgbrssi;
S
Sujith 已提交
144 145
	struct ath9k_mib_stats ast_mibstats;
};
146
#define ah_mibStats stats.ast_mibstats
S
Sujith 已提交
147

148 149 150
void ath9k_enable_mib_counters(struct ath_hw *ah);
void ath9k_hw_disable_mib_counters(struct ath_hw *ah);
void ath9k_hw_ani_setup(struct ath_hw *ah);
151
void ath9k_hw_ani_init(struct ath_hw *ah);
S
Sujith 已提交
152 153

#endif /* ANI_H */