blob: 3d8d40cdc99ee2f934cf13109a54a4b604ccf2a9 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
2 * Copyright (c) 2004 Sam Leffler, Errno Consulting
3 * Copyright (c) 2004 Video54 Technologies, Inc.
Sujithcee075a2009-03-13 09:07:23 +05304 * Copyright (c) 2008-2009 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07005 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19#ifndef RC_H
20#define RC_H
21
Luis R. Rodriguezdb86f072009-11-05 08:44:39 -080022#include "hw.h"
23
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070024struct ath_softc;
25
Sujith46d14a52008-11-18 09:08:13 +053026#define ATH_RATE_MAX 30
27#define RATE_TABLE_SIZE 64
28#define MAX_TX_RATE_PHY 48
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070029
Sujith2c5a7442008-11-18 09:08:33 +053030/* VALID_ALL - valid for 20/40/Legacy,
31 * VALID - Legacy only,
32 * VALID_20 - HT 20 only,
33 * VALID_40 - HT 40 only */
34
Sujith46d14a52008-11-18 09:08:13 +053035#define INVALID 0x0
36#define VALID 0x1
37#define VALID_20 0x2
38#define VALID_40 0x4
39#define VALID_2040 (VALID_20|VALID_40)
40#define VALID_ALL (VALID_2040|VALID)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070041
Sujith394cf0a2009-02-09 13:26:54 +053042enum {
43 WLAN_RC_PHY_OFDM,
44 WLAN_RC_PHY_CCK,
45 WLAN_RC_PHY_HT_20_SS,
46 WLAN_RC_PHY_HT_20_DS,
47 WLAN_RC_PHY_HT_40_SS,
48 WLAN_RC_PHY_HT_40_DS,
49 WLAN_RC_PHY_HT_20_SS_HGI,
50 WLAN_RC_PHY_HT_20_DS_HGI,
51 WLAN_RC_PHY_HT_40_SS_HGI,
52 WLAN_RC_PHY_HT_40_DS_HGI,
53 WLAN_RC_PHY_MAX
54};
55
Sujith5701ed82008-08-26 08:11:26 +053056#define WLAN_RC_PHY_DS(_phy) ((_phy == WLAN_RC_PHY_HT_20_DS) \
57 || (_phy == WLAN_RC_PHY_HT_40_DS) \
58 || (_phy == WLAN_RC_PHY_HT_20_DS_HGI) \
59 || (_phy == WLAN_RC_PHY_HT_40_DS_HGI))
Luis R. Rodriguezc755ad32009-12-07 12:38:41 -050060#define WLAN_RC_PHY_20(_phy) ((_phy == WLAN_RC_PHY_HT_20_SS) \
61 || (_phy == WLAN_RC_PHY_HT_20_DS) \
62 || (_phy == WLAN_RC_PHY_HT_20_SS_HGI) \
63 || (_phy == WLAN_RC_PHY_HT_20_DS_HGI))
Sujith5701ed82008-08-26 08:11:26 +053064#define WLAN_RC_PHY_40(_phy) ((_phy == WLAN_RC_PHY_HT_40_SS) \
65 || (_phy == WLAN_RC_PHY_HT_40_DS) \
66 || (_phy == WLAN_RC_PHY_HT_40_SS_HGI) \
67 || (_phy == WLAN_RC_PHY_HT_40_DS_HGI))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070068#define WLAN_RC_PHY_SGI(_phy) ((_phy == WLAN_RC_PHY_HT_20_SS_HGI) \
Sujith5701ed82008-08-26 08:11:26 +053069 || (_phy == WLAN_RC_PHY_HT_20_DS_HGI) \
70 || (_phy == WLAN_RC_PHY_HT_40_SS_HGI) \
71 || (_phy == WLAN_RC_PHY_HT_40_DS_HGI))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070072
73#define WLAN_RC_PHY_HT(_phy) (_phy >= WLAN_RC_PHY_HT_20_SS)
74
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070075#define WLAN_RC_CAP_MODE(capflag) (((capflag & WLAN_RC_HT_FLAG) ? \
Sujith46d14a52008-11-18 09:08:13 +053076 (capflag & WLAN_RC_40_FLAG) ? VALID_40 : VALID_20 : VALID))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070077
78/* Return TRUE if flag supports HT20 && client supports HT20 or
79 * return TRUE if flag supports HT40 && client supports HT40.
80 * This is used becos some rates overlap between HT20/HT40.
81 */
Sujith46d14a52008-11-18 09:08:13 +053082#define WLAN_RC_PHY_HT_VALID(flag, capflag) \
83 (((flag & VALID_20) && !(capflag & WLAN_RC_40_FLAG)) || \
84 ((flag & VALID_40) && (capflag & WLAN_RC_40_FLAG)))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070085
86#define WLAN_RC_DS_FLAG (0x01)
87#define WLAN_RC_40_FLAG (0x02)
88#define WLAN_RC_SGI_FLAG (0x04)
89#define WLAN_RC_HT_FLAG (0x08)
90
Sujith5701ed82008-08-26 08:11:26 +053091/**
92 * struct ath_rate_table - Rate Control table
93 * @valid: valid for use in rate control
94 * @valid_single_stream: valid for use in rate control for
95 * single stream operation
96 * @phy: CCK/OFDM
97 * @ratekbps: rate in Kbits per second
98 * @user_ratekbps: user rate in Kbits per second
99 * @ratecode: rate that goes into HW descriptors
100 * @short_preamble: Mask for enabling short preamble in ratecode for CCK
101 * @dot11rate: value that goes into supported
102 * rates info element of MLME
103 * @ctrl_rate: Index of next lower basic rate, used for duration computation
104 * @max_4ms_framelen: maximum frame length(bytes) for tx duration
105 * @probe_interval: interval for rate control to probe for other rates
106 * @rssi_reduce_interval: interval for rate control to reduce rssi
Sujith46d14a52008-11-18 09:08:13 +0530107 * @initial_ratemax: initial ratemax value
Sujith5701ed82008-08-26 08:11:26 +0530108 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700109struct ath_rate_table {
110 int rate_cnt;
Felix Fietkau545750d2009-11-23 22:21:01 +0100111 int mcs_start;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700112 struct {
Ming Leie21247c2010-03-01 23:13:29 +0800113 u8 valid;
114 u8 valid_single_stream;
Sujith5701ed82008-08-26 08:11:26 +0530115 u8 phy;
116 u32 ratekbps;
117 u32 user_ratekbps;
118 u8 ratecode;
Sujith5701ed82008-08-26 08:11:26 +0530119 u8 dot11rate;
120 u8 ctrl_rate;
Sujith5701ed82008-08-26 08:11:26 +0530121 u8 base_index;
122 u8 cw40index;
123 u8 sgi_index;
124 u8 ht_index;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700125 } info[RATE_TABLE_SIZE];
Sujith5701ed82008-08-26 08:11:26 +0530126 u32 probe_interval;
Sujith5701ed82008-08-26 08:11:26 +0530127 u8 initial_ratemax;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700128};
129
Sujith256b7752008-11-18 09:03:12 +0530130struct ath_rateset {
131 u8 rs_nrates;
132 u8 rs_rates[ATH_RATE_MAX];
133};
134
Sujith5701ed82008-08-26 08:11:26 +0530135/**
Sujith46d14a52008-11-18 09:08:13 +0530136 * struct ath_rate_priv - Rate Control priv data
Sujith5701ed82008-08-26 08:11:26 +0530137 * @state: RC state
Sujith5701ed82008-08-26 08:11:26 +0530138 * @probe_rate: rate we are probing at
Sujith5701ed82008-08-26 08:11:26 +0530139 * @probe_time: msec timestamp for last probe
140 * @hw_maxretry_pktcnt: num of packets since we got HW max retry error
141 * @max_valid_rate: maximum number of valid rate
142 * @per_down_time: msec timestamp for last PER down step
143 * @valid_phy_ratecnt: valid rate count
144 * @rate_max_phy: phy index for the max rate
Vasanthakumar Thiagarajan922bac62009-07-14 20:14:13 -0400145 * @per: PER for every valid rate in %
Sujith5701ed82008-08-26 08:11:26 +0530146 * @probe_interval: interval for ratectrl to probe for other rates
Sujith256b7752008-11-18 09:03:12 +0530147 * @prev_data_rix: rate idx of last data frame
148 * @ht_cap: HT capabilities
Sujith256b7752008-11-18 09:03:12 +0530149 * @neg_rates: Negotatied rates
150 * @neg_ht_rates: Negotiated HT rates
Sujith5701ed82008-08-26 08:11:26 +0530151 */
Sujith46d14a52008-11-18 09:08:13 +0530152struct ath_rate_priv {
Sujith5701ed82008-08-26 08:11:26 +0530153 u8 rate_table_size;
154 u8 probe_rate;
Sujith5701ed82008-08-26 08:11:26 +0530155 u8 hw_maxretry_pktcnt;
156 u8 max_valid_rate;
Sujith46d14a52008-11-18 09:08:13 +0530157 u8 valid_rate_index[RATE_TABLE_SIZE];
Sujith256b7752008-11-18 09:03:12 +0530158 u8 ht_cap;
Sujith5701ed82008-08-26 08:11:26 +0530159 u8 valid_phy_ratecnt[WLAN_RC_PHY_MAX];
Sujith46d14a52008-11-18 09:08:13 +0530160 u8 valid_phy_rateidx[WLAN_RC_PHY_MAX][RATE_TABLE_SIZE];
Sujith5701ed82008-08-26 08:11:26 +0530161 u8 rate_max_phy;
Vasanthakumar Thiagarajan922bac62009-07-14 20:14:13 -0400162 u8 per[RATE_TABLE_SIZE];
Sujith256b7752008-11-18 09:03:12 +0530163 u32 probe_time;
164 u32 per_down_time;
Sujith5701ed82008-08-26 08:11:26 +0530165 u32 probe_interval;
Sujith5701ed82008-08-26 08:11:26 +0530166 u32 prev_data_rix;
Sujithfe7f4a72008-11-18 09:07:06 +0530167 u32 tx_triglevel_max;
Sujith5701ed82008-08-26 08:11:26 +0530168 struct ath_rateset neg_rates;
Sujith5701ed82008-08-26 08:11:26 +0530169 struct ath_rateset neg_ht_rates;
Sujith5701ed82008-08-26 08:11:26 +0530170 struct ath_rate_softc *asc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700171};
172
Felix Fietkau827e69b2009-11-15 23:09:25 +0100173#define ATH_TX_INFO_FRAME_TYPE_INTERNAL (1 << 0)
174#define ATH_TX_INFO_FRAME_TYPE_PAUSE (1 << 1)
Felix Fietkau827e69b2009-11-15 23:09:25 +0100175#define ATH_TX_INFO_XRETRY (1 << 3)
176#define ATH_TX_INFO_UNDERRUN (1 << 4)
177
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200178enum ath9k_internal_frame_type {
Pavel Roskinc81494d2010-03-31 18:05:25 -0400179 ATH9K_IFT_NOT_INTERNAL,
180 ATH9K_IFT_PAUSE,
181 ATH9K_IFT_UNPAUSE
Jouni Malinenf0ed85c2009-03-03 19:23:31 +0200182};
183
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700184int ath_rate_control_register(void);
185void ath_rate_control_unregister(void);
186
187#endif /* RC_H */