rc.h 5.8 KB
Newer Older
1 2 3
/*
 * Copyright (c) 2004 Sam Leffler, Errno Consulting
 * Copyright (c) 2004 Video54 Technologies, Inc.
4
 * Copyright (c) 2008-2009 Atheros Communications Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * 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 RC_H
#define RC_H

struct ath_softc;

S
Sujith 已提交
24 25 26
#define ATH_RATE_MAX     30
#define RATE_TABLE_SIZE  64
#define MAX_TX_RATE_PHY  48
27

S
Sujith 已提交
28 29 30 31 32
/* VALID_ALL - valid for 20/40/Legacy,
 * VALID - Legacy only,
 * VALID_20 - HT 20 only,
 * VALID_40 - HT 40 only */

S
Sujith 已提交
33 34 35 36 37 38
#define INVALID    0x0
#define VALID      0x1
#define VALID_20   0x2
#define VALID_40   0x4
#define VALID_2040 (VALID_20|VALID_40)
#define VALID_ALL  (VALID_2040|VALID)
39

S
Sujith 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53
enum {
	WLAN_RC_PHY_OFDM,
	WLAN_RC_PHY_CCK,
	WLAN_RC_PHY_HT_20_SS,
	WLAN_RC_PHY_HT_20_DS,
	WLAN_RC_PHY_HT_40_SS,
	WLAN_RC_PHY_HT_40_DS,
	WLAN_RC_PHY_HT_20_SS_HGI,
	WLAN_RC_PHY_HT_20_DS_HGI,
	WLAN_RC_PHY_HT_40_SS_HGI,
	WLAN_RC_PHY_HT_40_DS_HGI,
	WLAN_RC_PHY_MAX
};

S
Sujith 已提交
54 55 56 57 58 59 60 61
#define WLAN_RC_PHY_DS(_phy)   ((_phy == WLAN_RC_PHY_HT_20_DS)		\
				|| (_phy == WLAN_RC_PHY_HT_40_DS)	\
				|| (_phy == WLAN_RC_PHY_HT_20_DS_HGI)	\
				|| (_phy == WLAN_RC_PHY_HT_40_DS_HGI))
#define WLAN_RC_PHY_40(_phy)   ((_phy == WLAN_RC_PHY_HT_40_SS)		\
				|| (_phy == WLAN_RC_PHY_HT_40_DS)	\
				|| (_phy == WLAN_RC_PHY_HT_40_SS_HGI)	\
				|| (_phy == WLAN_RC_PHY_HT_40_DS_HGI))
62
#define WLAN_RC_PHY_SGI(_phy)  ((_phy == WLAN_RC_PHY_HT_20_SS_HGI)      \
S
Sujith 已提交
63 64 65
				|| (_phy == WLAN_RC_PHY_HT_20_DS_HGI)   \
				|| (_phy == WLAN_RC_PHY_HT_40_SS_HGI)   \
				|| (_phy == WLAN_RC_PHY_HT_40_DS_HGI))
66 67 68 69

#define WLAN_RC_PHY_HT(_phy)    (_phy >= WLAN_RC_PHY_HT_20_SS)

#define WLAN_RC_CAP_MODE(capflag) (((capflag & WLAN_RC_HT_FLAG) ?	\
S
Sujith 已提交
70
		(capflag & WLAN_RC_40_FLAG) ? VALID_40 : VALID_20 : VALID))
71 72 73 74 75

/* Return TRUE if flag supports HT20 && client supports HT20 or
 * return TRUE if flag supports HT40 && client supports HT40.
 * This is used becos some rates overlap between HT20/HT40.
 */
S
Sujith 已提交
76 77 78
#define WLAN_RC_PHY_HT_VALID(flag, capflag)			\
	(((flag & VALID_20) && !(capflag & WLAN_RC_40_FLAG)) || \
	 ((flag & VALID_40) && (capflag & WLAN_RC_40_FLAG)))
79 80 81 82 83 84

#define WLAN_RC_DS_FLAG         (0x01)
#define WLAN_RC_40_FLAG         (0x02)
#define WLAN_RC_SGI_FLAG        (0x04)
#define WLAN_RC_HT_FLAG         (0x08)

S
Sujith 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
/**
 * struct ath_rate_table - Rate Control table
 * @valid: valid for use in rate control
 * @valid_single_stream: valid for use in rate control for
 * 	single stream operation
 * @phy: CCK/OFDM
 * @ratekbps: rate in Kbits per second
 * @user_ratekbps: user rate in Kbits per second
 * @ratecode: rate that goes into HW descriptors
 * @short_preamble: Mask for enabling short preamble in ratecode for CCK
 * @dot11rate: value that goes into supported
 * 	rates info element of MLME
 * @ctrl_rate: Index of next lower basic rate, used for duration computation
 * @max_4ms_framelen: maximum frame length(bytes) for tx duration
 * @probe_interval: interval for rate control to probe for other rates
 * @rssi_reduce_interval: interval for rate control to reduce rssi
S
Sujith 已提交
101
 * @initial_ratemax: initial ratemax value
S
Sujith 已提交
102
 */
103 104 105
struct ath_rate_table {
	int rate_cnt;
	struct {
S
Sujith 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119
		int valid;
		int valid_single_stream;
		u8 phy;
		u32 ratekbps;
		u32 user_ratekbps;
		u8 ratecode;
		u8 short_preamble;
		u8 dot11rate;
		u8 ctrl_rate;
		u8 base_index;
		u8 cw40index;
		u8 sgi_index;
		u8 ht_index;
		u32 max_4ms_framelen;
120
	} info[RATE_TABLE_SIZE];
S
Sujith 已提交
121 122 123
	u32 probe_interval;
	u32 rssi_reduce_interval;
	u8 initial_ratemax;
124 125 126
};

struct ath_tx_ratectrl_state {
S
Sujith 已提交
127
	u8 per;			/* recent estimate of packet error rate (%) */
128 129
};

130 131 132 133 134
struct ath_rateset {
	u8 rs_nrates;
	u8 rs_rates[ATH_RATE_MAX];
};

S
Sujith 已提交
135
/**
S
Sujith 已提交
136
 * struct ath_rate_priv - Rate Control priv data
S
Sujith 已提交
137 138 139 140 141 142 143 144 145
 * @state: RC state
 * @probe_rate: rate we are probing at
 * @probe_time: msec timestamp for last probe
 * @hw_maxretry_pktcnt: num of packets since we got HW max retry error
 * @max_valid_rate: maximum number of valid rate
 * @per_down_time: msec timestamp for last PER down step
 * @valid_phy_ratecnt: valid rate count
 * @rate_max_phy: phy index for the max rate
 * @probe_interval: interval for ratectrl to probe for other rates
146 147 148 149
 * @prev_data_rix: rate idx of last data frame
 * @ht_cap: HT capabilities
 * @neg_rates: Negotatied rates
 * @neg_ht_rates: Negotiated HT rates
S
Sujith 已提交
150
 */
S
Sujith 已提交
151
struct ath_rate_priv {
S
Sujith 已提交
152 153 154 155
	u8 rate_table_size;
	u8 probe_rate;
	u8 hw_maxretry_pktcnt;
	u8 max_valid_rate;
S
Sujith 已提交
156
	u8 valid_rate_index[RATE_TABLE_SIZE];
157
	u8 ht_cap;
S
Sujith 已提交
158
	u8 valid_phy_ratecnt[WLAN_RC_PHY_MAX];
S
Sujith 已提交
159
	u8 valid_phy_rateidx[WLAN_RC_PHY_MAX][RATE_TABLE_SIZE];
S
Sujith 已提交
160
	u8 rate_max_phy;
161 162
	u32 probe_time;
	u32 per_down_time;
S
Sujith 已提交
163 164
	u32 probe_interval;
	u32 prev_data_rix;
S
Sujith 已提交
165
	u32 tx_triglevel_max;
S
Sujith 已提交
166
	struct ath_tx_ratectrl_state state[RATE_TABLE_SIZE];
S
Sujith 已提交
167 168 169
	struct ath_rateset neg_rates;
	struct ath_rateset neg_ht_rates;
	struct ath_rate_softc *asc;
170 171
};

172 173 174 175 176 177
enum ath9k_internal_frame_type {
	ATH9K_NOT_INTERNAL,
	ATH9K_INT_PAUSE,
	ATH9K_INT_UNPAUSE
};

178
struct ath_tx_info_priv {
179
	struct ath_wiphy *aphy;
180 181 182
	struct ath_tx_status tx;
	int n_frames;
	int n_bad_frames;
183
	bool update_rc;
184
	enum ath9k_internal_frame_type frame_type;
185 186
};

S
Sujith 已提交
187 188 189
#define ATH_TX_INFO_PRIV(tx_info) \
	((struct ath_tx_info_priv *)((tx_info)->rate_driver_data[0]))

S
Sujith 已提交
190
void ath_rate_attach(struct ath_softc *sc);
S
Sujith 已提交
191
u8 ath_rate_findrateix(struct ath_softc *sc, u8 dot11_rate);
192 193 194 195
int ath_rate_control_register(void);
void ath_rate_control_unregister(void);

#endif /* RC_H */