1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#ifndef __TX_H__
26#define __TX_H__
27
28#define TX_HW_MGMT_PKT_LIFETIME_TU 2000
29#define TX_HW_AP_MODE_PKT_LIFETIME_TU 8000
30
31#define TX_HW_ATTR_SAVE_RETRIES BIT(0)
32#define TX_HW_ATTR_HEADER_PAD BIT(1)
33#define TX_HW_ATTR_SESSION_COUNTER (BIT(2) | BIT(3) | BIT(4))
34#define TX_HW_ATTR_RATE_POLICY (BIT(5) | BIT(6) | BIT(7) | \
35 BIT(8) | BIT(9))
36#define TX_HW_ATTR_LAST_WORD_PAD (BIT(10) | BIT(11))
37#define TX_HW_ATTR_TX_CMPLT_REQ BIT(12)
38#define TX_HW_ATTR_TX_DUMMY_REQ BIT(13)
39#define TX_HW_ATTR_HOST_ENCRYPT BIT(14)
40#define TX_HW_ATTR_EAPOL_FRAME BIT(15)
41
42#define TX_HW_ATTR_OFST_SAVE_RETRIES 0
43#define TX_HW_ATTR_OFST_HEADER_PAD 1
44#define TX_HW_ATTR_OFST_SESSION_COUNTER 2
45#define TX_HW_ATTR_OFST_RATE_POLICY 5
46#define TX_HW_ATTR_OFST_LAST_WORD_PAD 10
47#define TX_HW_ATTR_OFST_TX_CMPLT_REQ 12
48
49#define TX_HW_RESULT_QUEUE_LEN 16
50#define TX_HW_RESULT_QUEUE_LEN_MASK 0xf
51
52#define WL1271_TX_ALIGN_TO 4
53#define WL1271_EXTRA_SPACE_TKIP 4
54#define WL1271_EXTRA_SPACE_AES 8
55#define WL1271_EXTRA_SPACE_MAX 8
56
57
58#define WL1271_TID_MGMT 7
59
60
61#define WLCORE_PEND_AUTH_ROC_TIMEOUT 1000
62
63struct wl127x_tx_mem {
64
65
66
67
68
69 u8 extra_blocks;
70
71
72
73
74
75 u8 total_mem_blocks;
76} __packed;
77
78struct wl128x_tx_mem {
79
80
81
82
83 u8 total_mem_blocks;
84
85
86
87
88
89 u8 extra_bytes;
90} __packed;
91
92struct wl18xx_tx_mem {
93
94
95
96
97 u8 total_mem_blocks;
98
99
100
101
102 u8 ctrl;
103} __packed;
104
105
106
107
108
109
110
111#define WL12XX_BUS_BLOCK_SIZE min(512u, \
112 (1u << (8 * sizeof(((struct wl128x_tx_mem *) 0)->extra_bytes))))
113
114struct wl1271_tx_hw_descr {
115
116 __le16 length;
117 union {
118 struct wl127x_tx_mem wl127x_mem;
119 struct wl128x_tx_mem wl128x_mem;
120 struct wl18xx_tx_mem wl18xx_mem;
121 } __packed;
122
123 __le32 start_time;
124
125
126
127
128 __le16 life_time;
129
130 __le16 tx_attr;
131
132 u8 id;
133
134 u8 tid;
135
136 u8 hlid;
137
138 union {
139 u8 wl12xx_reserved;
140
141
142
143
144
145 u8 wl18xx_checksum_data;
146 } __packed;
147} __packed;
148
149enum wl1271_tx_hw_res_status {
150 TX_SUCCESS = 0,
151 TX_HW_ERROR = 1,
152 TX_DISABLED = 2,
153 TX_RETRY_EXCEEDED = 3,
154 TX_TIMEOUT = 4,
155 TX_KEY_NOT_FOUND = 5,
156 TX_PEER_NOT_FOUND = 6,
157 TX_SESSION_MISMATCH = 7,
158 TX_LINK_NOT_VALID = 8,
159};
160
161struct wl1271_tx_hw_res_descr {
162
163 u8 id;
164
165
166 u8 status;
167
168 __le16 medium_usage;
169
170 __le32 fw_handling_time;
171
172
173 __le32 medium_delay;
174
175 u8 tx_security_sequence_number_lsb;
176
177 u8 ack_failures;
178
179
180 u8 rate_class_index;
181
182 u8 spare;
183} __packed;
184
185struct wl1271_tx_hw_res_if {
186 __le32 tx_result_fw_counter;
187 __le32 tx_result_host_counter;
188 struct wl1271_tx_hw_res_descr tx_results_queue[TX_HW_RESULT_QUEUE_LEN];
189} __packed;
190
191enum wlcore_queue_stop_reason {
192 WLCORE_QUEUE_STOP_REASON_WATERMARK,
193 WLCORE_QUEUE_STOP_REASON_FW_RESTART,
194 WLCORE_QUEUE_STOP_REASON_FLUSH,
195 WLCORE_QUEUE_STOP_REASON_SPARE_BLK,
196};
197
198static inline int wl1271_tx_get_queue(int queue)
199{
200 switch (queue) {
201 case 0:
202 return CONF_TX_AC_VO;
203 case 1:
204 return CONF_TX_AC_VI;
205 case 2:
206 return CONF_TX_AC_BE;
207 case 3:
208 return CONF_TX_AC_BK;
209 default:
210 return CONF_TX_AC_BE;
211 }
212}
213
214static inline
215int wlcore_tx_get_mac80211_queue(struct wl12xx_vif *wlvif, int queue)
216{
217 int mac_queue = wlvif->hw_queue_base;
218
219 switch (queue) {
220 case CONF_TX_AC_VO:
221 return mac_queue + 0;
222 case CONF_TX_AC_VI:
223 return mac_queue + 1;
224 case CONF_TX_AC_BE:
225 return mac_queue + 2;
226 case CONF_TX_AC_BK:
227 return mac_queue + 3;
228 default:
229 return mac_queue + 2;
230 }
231}
232
233static inline int wl1271_tx_total_queue_count(struct wl1271 *wl)
234{
235 int i, count = 0;
236
237 for (i = 0; i < NUM_TX_QUEUES; i++)
238 count += wl->tx_queue_count[i];
239
240 return count;
241}
242
243void wl1271_tx_work(struct work_struct *work);
244int wlcore_tx_work_locked(struct wl1271 *wl);
245int wlcore_tx_complete(struct wl1271 *wl);
246void wl12xx_tx_reset_wlvif(struct wl1271 *wl, struct wl12xx_vif *wlvif);
247void wl12xx_tx_reset(struct wl1271 *wl);
248void wl1271_tx_flush(struct wl1271 *wl);
249u8 wlcore_rate_to_idx(struct wl1271 *wl, u8 rate, enum nl80211_band band);
250u32 wl1271_tx_enabled_rates_get(struct wl1271 *wl, u32 rate_set,
251 enum nl80211_band rate_band);
252u32 wl1271_tx_min_rate_get(struct wl1271 *wl, u32 rate_set);
253u8 wl12xx_tx_get_hlid(struct wl1271 *wl, struct wl12xx_vif *wlvif,
254 struct sk_buff *skb, struct ieee80211_sta *sta);
255void wl1271_tx_reset_link_queues(struct wl1271 *wl, u8 hlid);
256void wl1271_handle_tx_low_watermark(struct wl1271 *wl);
257bool wl12xx_is_dummy_packet(struct wl1271 *wl, struct sk_buff *skb);
258void wl12xx_rearm_rx_streaming(struct wl1271 *wl, unsigned long *active_hlids);
259unsigned int wlcore_calc_packet_alignment(struct wl1271 *wl,
260 unsigned int packet_length);
261void wl1271_free_tx_id(struct wl1271 *wl, int id);
262void wlcore_stop_queue_locked(struct wl1271 *wl, struct wl12xx_vif *wlvif,
263 u8 queue, enum wlcore_queue_stop_reason reason);
264void wlcore_stop_queue(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 queue,
265 enum wlcore_queue_stop_reason reason);
266void wlcore_wake_queue(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 queue,
267 enum wlcore_queue_stop_reason reason);
268void wlcore_stop_queues(struct wl1271 *wl,
269 enum wlcore_queue_stop_reason reason);
270void wlcore_wake_queues(struct wl1271 *wl,
271 enum wlcore_queue_stop_reason reason);
272bool wlcore_is_queue_stopped_by_reason(struct wl1271 *wl,
273 struct wl12xx_vif *wlvif, u8 queue,
274 enum wlcore_queue_stop_reason reason);
275bool
276wlcore_is_queue_stopped_by_reason_locked(struct wl1271 *wl,
277 struct wl12xx_vif *wlvif,
278 u8 queue,
279 enum wlcore_queue_stop_reason reason);
280bool wlcore_is_queue_stopped_locked(struct wl1271 *wl, struct wl12xx_vif *wlvif,
281 u8 queue);
282
283
284void wl1271_free_sta(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 hlid);
285void wl12xx_rearm_tx_watchdog_locked(struct wl1271 *wl);
286
287#endif
288