blob: acb4acb71718e6680505b4362ce903a542231c33 [file] [log] [blame]
Kalle Valobdcd8172011-07-18 00:22:30 +03001/*
2 * Copyright (c) 2004-2011 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include "core.h"
18#include "hif-ops.h"
19#include "cfg80211.h"
20#include "target.h"
21#include "debug.h"
22
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +053023struct ath6kl_sta *ath6kl_find_sta(struct ath6kl_vif *vif, u8 *node_addr)
Kalle Valobdcd8172011-07-18 00:22:30 +030024{
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +053025 struct ath6kl *ar = vif->ar;
Kalle Valobdcd8172011-07-18 00:22:30 +030026 struct ath6kl_sta *conn = NULL;
27 u8 i, max_conn;
28
Vasanthakumar Thiagarajanf5938f22011-10-25 19:34:03 +053029 max_conn = (vif->nw_type == AP_NETWORK) ? AP_MAX_NUM_STA : 0;
Kalle Valobdcd8172011-07-18 00:22:30 +030030
31 for (i = 0; i < max_conn; i++) {
32 if (memcmp(node_addr, ar->sta_list[i].mac, ETH_ALEN) == 0) {
33 conn = &ar->sta_list[i];
34 break;
35 }
36 }
37
38 return conn;
39}
40
41struct ath6kl_sta *ath6kl_find_sta_by_aid(struct ath6kl *ar, u8 aid)
42{
43 struct ath6kl_sta *conn = NULL;
44 u8 ctr;
45
46 for (ctr = 0; ctr < AP_MAX_NUM_STA; ctr++) {
47 if (ar->sta_list[ctr].aid == aid) {
48 conn = &ar->sta_list[ctr];
49 break;
50 }
51 }
52 return conn;
53}
54
Vasanthakumar Thiagarajan17741c82012-01-21 15:22:51 +053055static void ath6kl_add_new_sta(struct ath6kl_vif *vif, u8 *mac, u16 aid,
56 u8 *wpaie, size_t ielen, u8 keymgmt,
57 u8 ucipher, u8 auth, u8 apsd_info)
Kalle Valobdcd8172011-07-18 00:22:30 +030058{
Vasanthakumar Thiagarajan17741c82012-01-21 15:22:51 +053059 struct ath6kl *ar = vif->ar;
Kalle Valobdcd8172011-07-18 00:22:30 +030060 struct ath6kl_sta *sta;
61 u8 free_slot;
62
63 free_slot = aid - 1;
64
65 sta = &ar->sta_list[free_slot];
66 memcpy(sta->mac, mac, ETH_ALEN);
Jouni Malinen3c774bb2011-08-30 21:57:51 +030067 if (ielen <= ATH6KL_MAX_IE)
68 memcpy(sta->wpa_ie, wpaie, ielen);
Kalle Valobdcd8172011-07-18 00:22:30 +030069 sta->aid = aid;
70 sta->keymgmt = keymgmt;
71 sta->ucipher = ucipher;
72 sta->auth = auth;
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +053073 sta->apsd_info = apsd_info;
Kalle Valobdcd8172011-07-18 00:22:30 +030074
75 ar->sta_list_index = ar->sta_list_index | (1 << free_slot);
76 ar->ap_stats.sta[free_slot].aid = cpu_to_le32(aid);
77}
78
79static void ath6kl_sta_cleanup(struct ath6kl *ar, u8 i)
80{
81 struct ath6kl_sta *sta = &ar->sta_list[i];
82
83 /* empty the queued pkts in the PS queue if any */
84 spin_lock_bh(&sta->psq_lock);
85 skb_queue_purge(&sta->psq);
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +053086 skb_queue_purge(&sta->apsdq);
Kalle Valobdcd8172011-07-18 00:22:30 +030087 spin_unlock_bh(&sta->psq_lock);
88
89 memset(&ar->ap_stats.sta[sta->aid - 1], 0,
90 sizeof(struct wmi_per_sta_stat));
91 memset(sta->mac, 0, ETH_ALEN);
92 memset(sta->wpa_ie, 0, ATH6KL_MAX_IE);
93 sta->aid = 0;
94 sta->sta_flags = 0;
95
96 ar->sta_list_index = ar->sta_list_index & ~(1 << i);
97
98}
99
100static u8 ath6kl_remove_sta(struct ath6kl *ar, u8 *mac, u16 reason)
101{
102 u8 i, removed = 0;
103
104 if (is_zero_ether_addr(mac))
105 return removed;
106
107 if (is_broadcast_ether_addr(mac)) {
108 ath6kl_dbg(ATH6KL_DBG_TRC, "deleting all station\n");
109
110 for (i = 0; i < AP_MAX_NUM_STA; i++) {
111 if (!is_zero_ether_addr(ar->sta_list[i].mac)) {
112 ath6kl_sta_cleanup(ar, i);
113 removed = 1;
114 }
115 }
116 } else {
117 for (i = 0; i < AP_MAX_NUM_STA; i++) {
118 if (memcmp(ar->sta_list[i].mac, mac, ETH_ALEN) == 0) {
119 ath6kl_dbg(ATH6KL_DBG_TRC,
120 "deleting station %pM aid=%d reason=%d\n",
121 mac, ar->sta_list[i].aid, reason);
122 ath6kl_sta_cleanup(ar, i);
123 removed = 1;
124 break;
125 }
126 }
127 }
128
129 return removed;
130}
131
132enum htc_endpoint_id ath6kl_ac2_endpoint_id(void *devt, u8 ac)
133{
134 struct ath6kl *ar = devt;
135 return ar->ac2ep_map[ac];
136}
137
138struct ath6kl_cookie *ath6kl_alloc_cookie(struct ath6kl *ar)
139{
140 struct ath6kl_cookie *cookie;
141
142 cookie = ar->cookie_list;
143 if (cookie != NULL) {
144 ar->cookie_list = cookie->arc_list_next;
145 ar->cookie_count--;
146 }
147
148 return cookie;
149}
150
151void ath6kl_cookie_init(struct ath6kl *ar)
152{
153 u32 i;
154
155 ar->cookie_list = NULL;
156 ar->cookie_count = 0;
157
158 memset(ar->cookie_mem, 0, sizeof(ar->cookie_mem));
159
160 for (i = 0; i < MAX_COOKIE_NUM; i++)
161 ath6kl_free_cookie(ar, &ar->cookie_mem[i]);
162}
163
164void ath6kl_cookie_cleanup(struct ath6kl *ar)
165{
166 ar->cookie_list = NULL;
167 ar->cookie_count = 0;
168}
169
170void ath6kl_free_cookie(struct ath6kl *ar, struct ath6kl_cookie *cookie)
171{
172 /* Insert first */
173
174 if (!ar || !cookie)
175 return;
176
177 cookie->arc_list_next = ar->cookie_list;
178 ar->cookie_list = cookie;
179 ar->cookie_count++;
180}
181
Kalle Valobdcd8172011-07-18 00:22:30 +0300182/*
Kalle Valoaddb44b2011-09-02 10:32:05 +0300183 * Read from the hardware through its diagnostic window. No cooperation
184 * from the firmware is required for this.
Kalle Valobdcd8172011-07-18 00:22:30 +0300185 */
Kalle Valoaddb44b2011-09-02 10:32:05 +0300186int ath6kl_diag_read32(struct ath6kl *ar, u32 address, u32 *value)
Kalle Valobdcd8172011-07-18 00:22:30 +0300187{
Kalle Valoaddb44b2011-09-02 10:32:05 +0300188 int ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300189
Kalle Valoc7111492011-11-11 12:17:51 +0200190 ret = ath6kl_hif_diag_read32(ar, address, value);
Kalle Valoaddb44b2011-09-02 10:32:05 +0300191 if (ret) {
192 ath6kl_warn("failed to read32 through diagnose window: %d\n",
193 ret);
194 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300195 }
196
Kalle Valoaddb44b2011-09-02 10:32:05 +0300197 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300198}
199
Kalle Valobdcd8172011-07-18 00:22:30 +0300200/*
201 * Write to the ATH6KL through its diagnostic window. No cooperation from
202 * the Target is required for this.
203 */
Vasanthakumar Thiagarajanf9ea0752011-09-05 11:19:46 +0300204int ath6kl_diag_write32(struct ath6kl *ar, u32 address, __le32 value)
Kalle Valobdcd8172011-07-18 00:22:30 +0300205{
Kalle Valoaddb44b2011-09-02 10:32:05 +0300206 int ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300207
Kalle Valoc7111492011-11-11 12:17:51 +0200208 ret = ath6kl_hif_diag_write32(ar, address, value);
209
Kalle Valoaddb44b2011-09-02 10:32:05 +0300210 if (ret) {
211 ath6kl_err("failed to write 0x%x during diagnose window to 0x%d\n",
212 address, value);
213 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300214 }
215
Kalle Valoc7111492011-11-11 12:17:51 +0200216 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300217}
218
Kalle Valoaddb44b2011-09-02 10:32:05 +0300219int ath6kl_diag_read(struct ath6kl *ar, u32 address, void *data, u32 length)
Kalle Valobdcd8172011-07-18 00:22:30 +0300220{
Kalle Valoaddb44b2011-09-02 10:32:05 +0300221 u32 count, *buf = data;
222 int ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300223
Kalle Valoaddb44b2011-09-02 10:32:05 +0300224 if (WARN_ON(length % 4))
225 return -EINVAL;
226
227 for (count = 0; count < length / 4; count++, address += 4) {
228 ret = ath6kl_diag_read32(ar, address, &buf[count]);
229 if (ret)
230 return ret;
Kalle Valobdcd8172011-07-18 00:22:30 +0300231 }
232
Kalle Valoaddb44b2011-09-02 10:32:05 +0300233 return 0;
234}
235
236int ath6kl_diag_write(struct ath6kl *ar, u32 address, void *data, u32 length)
237{
Vasanthakumar Thiagarajanf9ea0752011-09-05 11:19:46 +0300238 u32 count;
239 __le32 *buf = data;
Kalle Valoaddb44b2011-09-02 10:32:05 +0300240 int ret;
241
242 if (WARN_ON(length % 4))
243 return -EINVAL;
244
245 for (count = 0; count < length / 4; count++, address += 4) {
246 ret = ath6kl_diag_write32(ar, address, buf[count]);
247 if (ret)
248 return ret;
249 }
250
251 return 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300252}
253
Kalle Valobc07ddb2011-09-02 10:32:05 +0300254int ath6kl_read_fwlogs(struct ath6kl *ar)
255{
256 struct ath6kl_dbglog_hdr debug_hdr;
257 struct ath6kl_dbglog_buf debug_buf;
258 u32 address, length, dropped, firstbuf, debug_hdr_addr;
Raja Manie80ec842012-01-12 15:01:48 +0530259 int ret, loop;
Kalle Valobc07ddb2011-09-02 10:32:05 +0300260 u8 *buf;
261
262 buf = kmalloc(ATH6KL_FWLOG_PAYLOAD_SIZE, GFP_KERNEL);
263 if (!buf)
264 return -ENOMEM;
265
266 address = TARG_VTOP(ar->target_type,
267 ath6kl_get_hi_item_addr(ar,
268 HI_ITEM(hi_dbglog_hdr)));
269
270 ret = ath6kl_diag_read32(ar, address, &debug_hdr_addr);
271 if (ret)
272 goto out;
273
274 /* Get the contents of the ring buffer */
275 if (debug_hdr_addr == 0) {
276 ath6kl_warn("Invalid address for debug_hdr_addr\n");
277 ret = -EINVAL;
278 goto out;
279 }
280
281 address = TARG_VTOP(ar->target_type, debug_hdr_addr);
282 ath6kl_diag_read(ar, address, &debug_hdr, sizeof(debug_hdr));
283
284 address = TARG_VTOP(ar->target_type,
285 le32_to_cpu(debug_hdr.dbuf_addr));
286 firstbuf = address;
287 dropped = le32_to_cpu(debug_hdr.dropped);
288 ath6kl_diag_read(ar, address, &debug_buf, sizeof(debug_buf));
289
290 loop = 100;
291
292 do {
293 address = TARG_VTOP(ar->target_type,
294 le32_to_cpu(debug_buf.buffer_addr));
295 length = le32_to_cpu(debug_buf.length);
296
297 if (length != 0 && (le32_to_cpu(debug_buf.length) <=
298 le32_to_cpu(debug_buf.bufsize))) {
299 length = ALIGN(length, 4);
300
301 ret = ath6kl_diag_read(ar, address,
302 buf, length);
303 if (ret)
304 goto out;
305
306 ath6kl_debug_fwlog_event(ar, buf, length);
307 }
308
309 address = TARG_VTOP(ar->target_type,
310 le32_to_cpu(debug_buf.next));
311 ath6kl_diag_read(ar, address, &debug_buf, sizeof(debug_buf));
312 if (ret)
313 goto out;
314
315 loop--;
316
317 if (WARN_ON(loop == 0)) {
318 ret = -ETIMEDOUT;
319 goto out;
320 }
321 } while (address != firstbuf);
322
323out:
324 kfree(buf);
325
326 return ret;
327}
328
Kevin Fang31024d92011-07-11 17:14:13 +0800329/* FIXME: move to a better place, target.h? */
330#define AR6003_RESET_CONTROL_ADDRESS 0x00004000
331#define AR6004_RESET_CONTROL_ADDRESS 0x00004000
332
Vasanthakumar Thiagarajan6db8fa52011-10-25 19:34:16 +0530333void ath6kl_reset_device(struct ath6kl *ar, u32 target_type,
334 bool wait_fot_compltn, bool cold_reset)
Kalle Valobdcd8172011-07-18 00:22:30 +0300335{
336 int status = 0;
337 u32 address;
Vasanthakumar Thiagarajanf9ea0752011-09-05 11:19:46 +0300338 __le32 data;
Kalle Valobdcd8172011-07-18 00:22:30 +0300339
Kevin Fang31024d92011-07-11 17:14:13 +0800340 if (target_type != TARGET_TYPE_AR6003 &&
341 target_type != TARGET_TYPE_AR6004)
Kalle Valobdcd8172011-07-18 00:22:30 +0300342 return;
343
Vasanthakumar Thiagarajanf9ea0752011-09-05 11:19:46 +0300344 data = cold_reset ? cpu_to_le32(RESET_CONTROL_COLD_RST) :
345 cpu_to_le32(RESET_CONTROL_MBOX_RST);
Kalle Valobdcd8172011-07-18 00:22:30 +0300346
Kevin Fang31024d92011-07-11 17:14:13 +0800347 switch (target_type) {
348 case TARGET_TYPE_AR6003:
349 address = AR6003_RESET_CONTROL_ADDRESS;
350 break;
351 case TARGET_TYPE_AR6004:
352 address = AR6004_RESET_CONTROL_ADDRESS;
353 break;
Kevin Fang31024d92011-07-11 17:14:13 +0800354 }
355
Kalle Valoaddb44b2011-09-02 10:32:05 +0300356 status = ath6kl_diag_write32(ar, address, data);
Kalle Valobdcd8172011-07-18 00:22:30 +0300357
358 if (status)
359 ath6kl_err("failed to reset target\n");
360}
361
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530362static void ath6kl_install_static_wep_keys(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300363{
364 u8 index;
365 u8 keyusage;
366
Vivek Natarajan792ecb32011-12-29 16:18:39 +0530367 for (index = 0; index <= WMI_MAX_KEY_INDEX; index++) {
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530368 if (vif->wep_key_list[index].key_len) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300369 keyusage = GROUP_USAGE;
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530370 if (index == vif->def_txkey_index)
Kalle Valobdcd8172011-07-18 00:22:30 +0300371 keyusage |= TX_USAGE;
372
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530373 ath6kl_wmi_addkey_cmd(vif->ar->wmi, vif->fw_vif_idx,
Kalle Valobdcd8172011-07-18 00:22:30 +0300374 index,
375 WEP_CRYPT,
376 keyusage,
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530377 vif->wep_key_list[index].key_len,
Jouni Malinenf4bb9a62011-11-02 23:45:55 +0200378 NULL, 0,
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530379 vif->wep_key_list[index].key,
Kalle Valobdcd8172011-07-18 00:22:30 +0300380 KEY_OP_INIT_VAL, NULL,
381 NO_SYNC_WMIFLAG);
382 }
383 }
384}
385
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530386void ath6kl_connect_ap_mode_bss(struct ath6kl_vif *vif, u16 channel)
Kalle Valobdcd8172011-07-18 00:22:30 +0300387{
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530388 struct ath6kl *ar = vif->ar;
Kalle Valobdcd8172011-07-18 00:22:30 +0300389 struct ath6kl_req_key *ik;
Jouni Malinen9a5b1312011-08-30 21:57:52 +0300390 int res;
391 u8 key_rsc[ATH6KL_KEY_SEQ_LEN];
Kalle Valobdcd8172011-07-18 00:22:30 +0300392
Jouni Malinen572e27c2011-09-05 17:38:45 +0300393 ik = &ar->ap_mode_bkey;
Kalle Valobdcd8172011-07-18 00:22:30 +0300394
Jouni Malinen572e27c2011-09-05 17:38:45 +0300395 ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "AP mode started on %u MHz\n", channel);
Jouni Malinen9a5b1312011-08-30 21:57:52 +0300396
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530397 switch (vif->auth_mode) {
Jouni Malinen572e27c2011-09-05 17:38:45 +0300398 case NONE_AUTH:
Vasanthakumar Thiagarajan34503342011-10-25 19:34:02 +0530399 if (vif->prwise_crypto == WEP_CRYPT)
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530400 ath6kl_install_static_wep_keys(vif);
Jouni Malinen47032902011-12-08 16:50:30 +0200401 if (!ik->valid || ik->key_type != WAPI_CRYPT)
402 break;
403 /* for WAPI, we need to set the delayed group key, continue: */
Jouni Malinen572e27c2011-09-05 17:38:45 +0300404 case WPA_PSK_AUTH:
405 case WPA2_PSK_AUTH:
406 case (WPA_PSK_AUTH | WPA2_PSK_AUTH):
407 if (!ik->valid)
Kalle Valobdcd8172011-07-18 00:22:30 +0300408 break;
Jouni Malinen9a5b1312011-08-30 21:57:52 +0300409
Jouni Malinen572e27c2011-09-05 17:38:45 +0300410 ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "Delayed addkey for "
411 "the initial group key for AP mode\n");
412 memset(key_rsc, 0, sizeof(key_rsc));
413 res = ath6kl_wmi_addkey_cmd(
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530414 ar->wmi, vif->fw_vif_idx, ik->key_index, ik->key_type,
Jouni Malinenf4bb9a62011-11-02 23:45:55 +0200415 GROUP_USAGE, ik->key_len, key_rsc, ATH6KL_KEY_SEQ_LEN,
416 ik->key,
Jouni Malinen572e27c2011-09-05 17:38:45 +0300417 KEY_OP_INIT_VAL, NULL, SYNC_BOTH_WMIFLAG);
418 if (res) {
419 ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "Delayed "
420 "addkey failed: %d\n", res);
Kalle Valobdcd8172011-07-18 00:22:30 +0300421 }
Jouni Malinen572e27c2011-09-05 17:38:45 +0300422 break;
Kalle Valobdcd8172011-07-18 00:22:30 +0300423 }
424
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530425 ath6kl_wmi_bssfilter_cmd(ar->wmi, vif->fw_vif_idx, NONE_BSS_FILTER, 0);
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530426 set_bit(CONNECTED, &vif->flags);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530427 netif_carrier_on(vif->ndev);
Jouni Malinen572e27c2011-09-05 17:38:45 +0300428}
429
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530430void ath6kl_connect_ap_mode_sta(struct ath6kl_vif *vif, u16 aid, u8 *mac_addr,
Jouni Malinen572e27c2011-09-05 17:38:45 +0300431 u8 keymgmt, u8 ucipher, u8 auth,
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530432 u8 assoc_req_len, u8 *assoc_info, u8 apsd_info)
Jouni Malinen572e27c2011-09-05 17:38:45 +0300433{
434 u8 *ies = NULL, *wpa_ie = NULL, *pos;
435 size_t ies_len = 0;
436 struct station_info sinfo;
437
438 ath6kl_dbg(ATH6KL_DBG_TRC, "new station %pM aid=%d\n", mac_addr, aid);
Kalle Valobdcd8172011-07-18 00:22:30 +0300439
Jouni Malinen3c774bb2011-08-30 21:57:51 +0300440 if (assoc_req_len > sizeof(struct ieee80211_hdr_3addr)) {
441 struct ieee80211_mgmt *mgmt =
442 (struct ieee80211_mgmt *) assoc_info;
443 if (ieee80211_is_assoc_req(mgmt->frame_control) &&
444 assoc_req_len >= sizeof(struct ieee80211_hdr_3addr) +
445 sizeof(mgmt->u.assoc_req)) {
446 ies = mgmt->u.assoc_req.variable;
447 ies_len = assoc_info + assoc_req_len - ies;
448 } else if (ieee80211_is_reassoc_req(mgmt->frame_control) &&
449 assoc_req_len >= sizeof(struct ieee80211_hdr_3addr)
450 + sizeof(mgmt->u.reassoc_req)) {
451 ies = mgmt->u.reassoc_req.variable;
452 ies_len = assoc_info + assoc_req_len - ies;
453 }
454 }
455
456 pos = ies;
457 while (pos && pos + 1 < ies + ies_len) {
458 if (pos + 2 + pos[1] > ies + ies_len)
459 break;
460 if (pos[0] == WLAN_EID_RSN)
461 wpa_ie = pos; /* RSN IE */
462 else if (pos[0] == WLAN_EID_VENDOR_SPECIFIC &&
463 pos[1] >= 4 &&
464 pos[2] == 0x00 && pos[3] == 0x50 && pos[4] == 0xf2) {
465 if (pos[5] == 0x01)
466 wpa_ie = pos; /* WPA IE */
467 else if (pos[5] == 0x04) {
468 wpa_ie = pos; /* WPS IE */
469 break; /* overrides WPA/RSN IE */
470 }
Dai Shuibing30677ae2011-11-03 11:39:39 +0200471 } else if (pos[0] == 0x44 && wpa_ie == NULL) {
472 /*
473 * Note: WAPI Parameter Set IE re-uses Element ID that
474 * was officially allocated for BSS AC Access Delay. As
475 * such, we need to be a bit more careful on when
476 * parsing the frame. However, BSS AC Access Delay
477 * element is not supposed to be included in
478 * (Re)Association Request frames, so this should not
479 * cause problems.
480 */
481 wpa_ie = pos; /* WAPI IE */
482 break;
Jouni Malinen3c774bb2011-08-30 21:57:51 +0300483 }
484 pos += 2 + pos[1];
485 }
486
Vasanthakumar Thiagarajan17741c82012-01-21 15:22:51 +0530487 ath6kl_add_new_sta(vif, mac_addr, aid, wpa_ie,
Jouni Malinen3c774bb2011-08-30 21:57:51 +0300488 wpa_ie ? 2 + wpa_ie[1] : 0,
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530489 keymgmt, ucipher, auth, apsd_info);
Kalle Valobdcd8172011-07-18 00:22:30 +0300490
491 /* send event to application */
492 memset(&sinfo, 0, sizeof(sinfo));
493
494 /* TODO: sinfo.generation */
Jouni Malinen3c774bb2011-08-30 21:57:51 +0300495
496 sinfo.assoc_req_ies = ies;
497 sinfo.assoc_req_ies_len = ies_len;
498 sinfo.filled |= STATION_INFO_ASSOC_REQ_IES;
499
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530500 cfg80211_new_sta(vif->ndev, mac_addr, &sinfo, GFP_KERNEL);
Kalle Valobdcd8172011-07-18 00:22:30 +0300501
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530502 netif_wake_queue(vif->ndev);
Kalle Valobdcd8172011-07-18 00:22:30 +0300503}
504
Kalle Valobdcd8172011-07-18 00:22:30 +0300505void disconnect_timer_handler(unsigned long ptr)
506{
507 struct net_device *dev = (struct net_device *)ptr;
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530508 struct ath6kl_vif *vif = netdev_priv(dev);
Kalle Valobdcd8172011-07-18 00:22:30 +0300509
Vasanthakumar Thiagarajane29f25f2011-10-25 19:34:15 +0530510 ath6kl_init_profile_info(vif);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530511 ath6kl_disconnect(vif);
Kalle Valobdcd8172011-07-18 00:22:30 +0300512}
513
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530514void ath6kl_disconnect(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300515{
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530516 if (test_bit(CONNECTED, &vif->flags) ||
517 test_bit(CONNECT_PEND, &vif->flags)) {
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530518 ath6kl_wmi_disconnect_cmd(vif->ar->wmi, vif->fw_vif_idx);
Kalle Valobdcd8172011-07-18 00:22:30 +0300519 /*
520 * Disconnect command is issued, clear the connect pending
521 * flag. The connected flag will be cleared in
522 * disconnect event notification.
523 */
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530524 clear_bit(CONNECT_PEND, &vif->flags);
Kalle Valobdcd8172011-07-18 00:22:30 +0300525 }
526}
527
528/* WMI Event handlers */
529
Kalle Valobdcd8172011-07-18 00:22:30 +0300530void ath6kl_ready_event(void *devt, u8 *datap, u32 sw_ver, u32 abi_ver)
531{
532 struct ath6kl *ar = devt;
Kalle Valobdcd8172011-07-18 00:22:30 +0300533
Vasanthakumar Thiagarajand66ea4f2011-10-25 19:34:18 +0530534 memcpy(ar->mac_addr, datap, ETH_ALEN);
Kalle Valobdcd8172011-07-18 00:22:30 +0300535 ath6kl_dbg(ATH6KL_DBG_TRC, "%s: mac addr = %pM\n",
Vasanthakumar Thiagarajand66ea4f2011-10-25 19:34:18 +0530536 __func__, ar->mac_addr);
Kalle Valobdcd8172011-07-18 00:22:30 +0300537
538 ar->version.wlan_ver = sw_ver;
539 ar->version.abi_ver = abi_ver;
540
Vasanthakumar Thiagarajanbe98e3a2011-10-25 19:33:57 +0530541 snprintf(ar->wiphy->fw_version,
542 sizeof(ar->wiphy->fw_version),
Kalle Valobdcd8172011-07-18 00:22:30 +0300543 "%u.%u.%u.%u",
544 (ar->version.wlan_ver & 0xf0000000) >> 28,
545 (ar->version.wlan_ver & 0x0f000000) >> 24,
546 (ar->version.wlan_ver & 0x00ff0000) >> 16,
547 (ar->version.wlan_ver & 0x0000ffff));
548
549 /* indicate to the waiting thread that the ready event was received */
550 set_bit(WMI_READY, &ar->flag);
551 wake_up(&ar->event_wq);
Kalle Valobdcd8172011-07-18 00:22:30 +0300552}
553
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530554void ath6kl_scan_complete_evt(struct ath6kl_vif *vif, int status)
Kalle Valobdcd8172011-07-18 00:22:30 +0300555{
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530556 struct ath6kl *ar = vif->ar;
Kalle Valo1c17d312011-11-01 08:43:56 +0200557 bool aborted = false;
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530558
Kalle Valo1c17d312011-11-01 08:43:56 +0200559 if (status != WMI_SCAN_STATUS_SUCCESS)
560 aborted = true;
561
562 ath6kl_cfg80211_scan_complete_event(vif, aborted);
Kalle Valobdcd8172011-07-18 00:22:30 +0300563
Jouni Malinen551185c2011-09-19 19:15:06 +0300564 if (!ar->usr_bss_filter) {
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530565 clear_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530566 ath6kl_wmi_bssfilter_cmd(ar->wmi, vif->fw_vif_idx,
567 NONE_BSS_FILTER, 0);
Jouni Malinen551185c2011-09-19 19:15:06 +0300568 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300569
Kalle Valod23ace72011-10-24 12:17:51 +0300570 ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "scan complete: %d\n", status);
Kalle Valobdcd8172011-07-18 00:22:30 +0300571}
572
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530573void ath6kl_connect_event(struct ath6kl_vif *vif, u16 channel, u8 *bssid,
Kalle Valobdcd8172011-07-18 00:22:30 +0300574 u16 listen_int, u16 beacon_int,
575 enum network_type net_type, u8 beacon_ie_len,
576 u8 assoc_req_len, u8 assoc_resp_len,
577 u8 *assoc_info)
578{
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530579 struct ath6kl *ar = vif->ar;
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530580
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530581 ath6kl_cfg80211_connect_event(vif, channel, bssid,
Kalle Valobdcd8172011-07-18 00:22:30 +0300582 listen_int, beacon_int,
583 net_type, beacon_ie_len,
584 assoc_req_len, assoc_resp_len,
585 assoc_info);
586
Vasanthakumar Thiagarajan8c8b65e2011-10-25 19:34:04 +0530587 memcpy(vif->bssid, bssid, sizeof(vif->bssid));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530588 vif->bss_ch = channel;
Kalle Valobdcd8172011-07-18 00:22:30 +0300589
Sujith Manoharan82327362012-01-10 09:54:10 +0530590 if ((vif->nw_type == INFRA_NETWORK)) {
591 ar->listen_intvl_b = listen_int;
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530592 ath6kl_wmi_listeninterval_cmd(ar->wmi, vif->fw_vif_idx,
Sujith Manoharan82327362012-01-10 09:54:10 +0530593 0, ar->listen_intvl_b);
594 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300595
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530596 netif_wake_queue(vif->ndev);
Kalle Valobdcd8172011-07-18 00:22:30 +0300597
598 /* Update connect & link status atomically */
Vasanthakumar Thiagarajan478ac022011-10-25 19:34:19 +0530599 spin_lock_bh(&vif->if_lock);
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530600 set_bit(CONNECTED, &vif->flags);
601 clear_bit(CONNECT_PEND, &vif->flags);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530602 netif_carrier_on(vif->ndev);
Vasanthakumar Thiagarajan478ac022011-10-25 19:34:19 +0530603 spin_unlock_bh(&vif->if_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300604
Vasanthakumar Thiagarajan2132c692011-10-25 19:34:07 +0530605 aggr_reset_state(vif->aggr_cntxt);
Vasanthakumar Thiagarajancf5333d2011-10-25 19:34:10 +0530606 vif->reconnect_flag = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300607
Vasanthakumar Thiagarajanf5938f22011-10-25 19:34:03 +0530608 if ((vif->nw_type == ADHOC_NETWORK) && ar->ibss_ps_enable) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300609 memset(ar->node_map, 0, sizeof(ar->node_map));
610 ar->node_num = 0;
611 ar->next_ep_id = ENDPOINT_2;
612 }
613
Jouni Malinen551185c2011-09-19 19:15:06 +0300614 if (!ar->usr_bss_filter) {
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530615 set_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530616 ath6kl_wmi_bssfilter_cmd(ar->wmi, vif->fw_vif_idx,
617 CURRENT_BSS_FILTER, 0);
Jouni Malinen551185c2011-09-19 19:15:06 +0300618 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300619}
620
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530621void ath6kl_tkip_micerr_event(struct ath6kl_vif *vif, u8 keyid, bool ismcast)
Kalle Valobdcd8172011-07-18 00:22:30 +0300622{
623 struct ath6kl_sta *sta;
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530624 struct ath6kl *ar = vif->ar;
Kalle Valobdcd8172011-07-18 00:22:30 +0300625 u8 tsc[6];
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530626
Kalle Valobdcd8172011-07-18 00:22:30 +0300627 /*
628 * For AP case, keyid will have aid of STA which sent pkt with
629 * MIC error. Use this aid to get MAC & send it to hostapd.
630 */
Vasanthakumar Thiagarajanf5938f22011-10-25 19:34:03 +0530631 if (vif->nw_type == AP_NETWORK) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300632 sta = ath6kl_find_sta_by_aid(ar, (keyid >> 2));
633 if (!sta)
634 return;
635
636 ath6kl_dbg(ATH6KL_DBG_TRC,
637 "ap tkip mic error received from aid=%d\n", keyid);
638
639 memset(tsc, 0, sizeof(tsc)); /* FIX: get correct TSC */
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530640 cfg80211_michael_mic_failure(vif->ndev, sta->mac,
Kalle Valobdcd8172011-07-18 00:22:30 +0300641 NL80211_KEYTYPE_PAIRWISE, keyid,
642 tsc, GFP_KERNEL);
643 } else
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530644 ath6kl_cfg80211_tkip_micerr_event(vif, keyid, ismcast);
Kalle Valobdcd8172011-07-18 00:22:30 +0300645
646}
647
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530648static void ath6kl_update_target_stats(struct ath6kl_vif *vif, u8 *ptr, u32 len)
Kalle Valobdcd8172011-07-18 00:22:30 +0300649{
650 struct wmi_target_stats *tgt_stats =
651 (struct wmi_target_stats *) ptr;
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530652 struct ath6kl *ar = vif->ar;
Vasanthakumar Thiagarajanb95907a2011-10-25 19:34:11 +0530653 struct target_stats *stats = &vif->target_stats;
Kalle Valobdcd8172011-07-18 00:22:30 +0300654 struct tkip_ccmp_stats *ccmp_stats;
Kalle Valobdcd8172011-07-18 00:22:30 +0300655 u8 ac;
656
657 if (len < sizeof(*tgt_stats))
658 return;
659
Kalle Valobdcd8172011-07-18 00:22:30 +0300660 ath6kl_dbg(ATH6KL_DBG_TRC, "updating target stats\n");
661
662 stats->tx_pkt += le32_to_cpu(tgt_stats->stats.tx.pkt);
663 stats->tx_byte += le32_to_cpu(tgt_stats->stats.tx.byte);
664 stats->tx_ucast_pkt += le32_to_cpu(tgt_stats->stats.tx.ucast_pkt);
665 stats->tx_ucast_byte += le32_to_cpu(tgt_stats->stats.tx.ucast_byte);
666 stats->tx_mcast_pkt += le32_to_cpu(tgt_stats->stats.tx.mcast_pkt);
667 stats->tx_mcast_byte += le32_to_cpu(tgt_stats->stats.tx.mcast_byte);
668 stats->tx_bcast_pkt += le32_to_cpu(tgt_stats->stats.tx.bcast_pkt);
669 stats->tx_bcast_byte += le32_to_cpu(tgt_stats->stats.tx.bcast_byte);
670 stats->tx_rts_success_cnt +=
671 le32_to_cpu(tgt_stats->stats.tx.rts_success_cnt);
672
673 for (ac = 0; ac < WMM_NUM_AC; ac++)
674 stats->tx_pkt_per_ac[ac] +=
675 le32_to_cpu(tgt_stats->stats.tx.pkt_per_ac[ac]);
676
677 stats->tx_err += le32_to_cpu(tgt_stats->stats.tx.err);
678 stats->tx_fail_cnt += le32_to_cpu(tgt_stats->stats.tx.fail_cnt);
679 stats->tx_retry_cnt += le32_to_cpu(tgt_stats->stats.tx.retry_cnt);
680 stats->tx_mult_retry_cnt +=
681 le32_to_cpu(tgt_stats->stats.tx.mult_retry_cnt);
682 stats->tx_rts_fail_cnt +=
683 le32_to_cpu(tgt_stats->stats.tx.rts_fail_cnt);
684 stats->tx_ucast_rate =
685 ath6kl_wmi_get_rate(a_sle32_to_cpu(tgt_stats->stats.tx.ucast_rate));
686
687 stats->rx_pkt += le32_to_cpu(tgt_stats->stats.rx.pkt);
688 stats->rx_byte += le32_to_cpu(tgt_stats->stats.rx.byte);
689 stats->rx_ucast_pkt += le32_to_cpu(tgt_stats->stats.rx.ucast_pkt);
690 stats->rx_ucast_byte += le32_to_cpu(tgt_stats->stats.rx.ucast_byte);
691 stats->rx_mcast_pkt += le32_to_cpu(tgt_stats->stats.rx.mcast_pkt);
692 stats->rx_mcast_byte += le32_to_cpu(tgt_stats->stats.rx.mcast_byte);
693 stats->rx_bcast_pkt += le32_to_cpu(tgt_stats->stats.rx.bcast_pkt);
694 stats->rx_bcast_byte += le32_to_cpu(tgt_stats->stats.rx.bcast_byte);
695 stats->rx_frgment_pkt += le32_to_cpu(tgt_stats->stats.rx.frgment_pkt);
696 stats->rx_err += le32_to_cpu(tgt_stats->stats.rx.err);
697 stats->rx_crc_err += le32_to_cpu(tgt_stats->stats.rx.crc_err);
698 stats->rx_key_cache_miss +=
699 le32_to_cpu(tgt_stats->stats.rx.key_cache_miss);
700 stats->rx_decrypt_err += le32_to_cpu(tgt_stats->stats.rx.decrypt_err);
701 stats->rx_dupl_frame += le32_to_cpu(tgt_stats->stats.rx.dupl_frame);
702 stats->rx_ucast_rate =
703 ath6kl_wmi_get_rate(a_sle32_to_cpu(tgt_stats->stats.rx.ucast_rate));
704
705 ccmp_stats = &tgt_stats->stats.tkip_ccmp_stats;
706
707 stats->tkip_local_mic_fail +=
708 le32_to_cpu(ccmp_stats->tkip_local_mic_fail);
709 stats->tkip_cnter_measures_invoked +=
710 le32_to_cpu(ccmp_stats->tkip_cnter_measures_invoked);
711 stats->tkip_fmt_err += le32_to_cpu(ccmp_stats->tkip_fmt_err);
712
713 stats->ccmp_fmt_err += le32_to_cpu(ccmp_stats->ccmp_fmt_err);
714 stats->ccmp_replays += le32_to_cpu(ccmp_stats->ccmp_replays);
715
716 stats->pwr_save_fail_cnt +=
717 le32_to_cpu(tgt_stats->pm_stats.pwr_save_failure_cnt);
718 stats->noise_floor_calib =
719 a_sle32_to_cpu(tgt_stats->noise_floor_calib);
720
721 stats->cs_bmiss_cnt +=
722 le32_to_cpu(tgt_stats->cserv_stats.cs_bmiss_cnt);
723 stats->cs_low_rssi_cnt +=
724 le32_to_cpu(tgt_stats->cserv_stats.cs_low_rssi_cnt);
725 stats->cs_connect_cnt +=
726 le16_to_cpu(tgt_stats->cserv_stats.cs_connect_cnt);
727 stats->cs_discon_cnt +=
728 le16_to_cpu(tgt_stats->cserv_stats.cs_discon_cnt);
729
730 stats->cs_ave_beacon_rssi =
731 a_sle16_to_cpu(tgt_stats->cserv_stats.cs_ave_beacon_rssi);
732
733 stats->cs_last_roam_msec =
734 tgt_stats->cserv_stats.cs_last_roam_msec;
735 stats->cs_snr = tgt_stats->cserv_stats.cs_snr;
736 stats->cs_rssi = a_sle16_to_cpu(tgt_stats->cserv_stats.cs_rssi);
737
738 stats->lq_val = le32_to_cpu(tgt_stats->lq_val);
739
740 stats->wow_pkt_dropped +=
741 le32_to_cpu(tgt_stats->wow_stats.wow_pkt_dropped);
742 stats->wow_host_pkt_wakeups +=
743 tgt_stats->wow_stats.wow_host_pkt_wakeups;
744 stats->wow_host_evt_wakeups +=
745 tgt_stats->wow_stats.wow_host_evt_wakeups;
746 stats->wow_evt_discarded +=
747 le16_to_cpu(tgt_stats->wow_stats.wow_evt_discarded);
748
Vasanthakumar Thiagarajanb95907a2011-10-25 19:34:11 +0530749 if (test_bit(STATS_UPDATE_PEND, &vif->flags)) {
750 clear_bit(STATS_UPDATE_PEND, &vif->flags);
Kalle Valobdcd8172011-07-18 00:22:30 +0300751 wake_up(&ar->event_wq);
752 }
753}
754
755static void ath6kl_add_le32(__le32 *var, __le32 val)
756{
757 *var = cpu_to_le32(le32_to_cpu(*var) + le32_to_cpu(val));
758}
759
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530760void ath6kl_tgt_stats_event(struct ath6kl_vif *vif, u8 *ptr, u32 len)
Kalle Valobdcd8172011-07-18 00:22:30 +0300761{
762 struct wmi_ap_mode_stat *p = (struct wmi_ap_mode_stat *) ptr;
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530763 struct ath6kl *ar = vif->ar;
Kalle Valobdcd8172011-07-18 00:22:30 +0300764 struct wmi_ap_mode_stat *ap = &ar->ap_stats;
765 struct wmi_per_sta_stat *st_ap, *st_p;
766 u8 ac;
767
Vasanthakumar Thiagarajanf5938f22011-10-25 19:34:03 +0530768 if (vif->nw_type == AP_NETWORK) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300769 if (len < sizeof(*p))
770 return;
771
772 for (ac = 0; ac < AP_MAX_NUM_STA; ac++) {
773 st_ap = &ap->sta[ac];
774 st_p = &p->sta[ac];
775
776 ath6kl_add_le32(&st_ap->tx_bytes, st_p->tx_bytes);
777 ath6kl_add_le32(&st_ap->tx_pkts, st_p->tx_pkts);
778 ath6kl_add_le32(&st_ap->tx_error, st_p->tx_error);
779 ath6kl_add_le32(&st_ap->tx_discard, st_p->tx_discard);
780 ath6kl_add_le32(&st_ap->rx_bytes, st_p->rx_bytes);
781 ath6kl_add_le32(&st_ap->rx_pkts, st_p->rx_pkts);
782 ath6kl_add_le32(&st_ap->rx_error, st_p->rx_error);
783 ath6kl_add_le32(&st_ap->rx_discard, st_p->rx_discard);
784 }
785
786 } else {
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530787 ath6kl_update_target_stats(vif, ptr, len);
Kalle Valobdcd8172011-07-18 00:22:30 +0300788 }
789}
790
791void ath6kl_wakeup_event(void *dev)
792{
793 struct ath6kl *ar = (struct ath6kl *) dev;
794
795 wake_up(&ar->event_wq);
796}
797
798void ath6kl_txpwr_rx_evt(void *devt, u8 tx_pwr)
799{
800 struct ath6kl *ar = (struct ath6kl *) devt;
801
802 ar->tx_pwr = tx_pwr;
803 wake_up(&ar->event_wq);
804}
805
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530806void ath6kl_pspoll_event(struct ath6kl_vif *vif, u8 aid)
Kalle Valobdcd8172011-07-18 00:22:30 +0300807{
808 struct ath6kl_sta *conn;
809 struct sk_buff *skb;
810 bool psq_empty = false;
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530811 struct ath6kl *ar = vif->ar;
Kalle Valobdcd8172011-07-18 00:22:30 +0300812
813 conn = ath6kl_find_sta_by_aid(ar, aid);
814
815 if (!conn)
816 return;
817 /*
818 * Send out a packet queued on ps queue. When the ps queue
819 * becomes empty update the PVB for this station.
820 */
821 spin_lock_bh(&conn->psq_lock);
822 psq_empty = skb_queue_empty(&conn->psq);
823 spin_unlock_bh(&conn->psq_lock);
824
825 if (psq_empty)
826 /* TODO: Send out a NULL data frame */
827 return;
828
829 spin_lock_bh(&conn->psq_lock);
830 skb = skb_dequeue(&conn->psq);
831 spin_unlock_bh(&conn->psq_lock);
832
833 conn->sta_flags |= STA_PS_POLLED;
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530834 ath6kl_data_tx(skb, vif->ndev);
Kalle Valobdcd8172011-07-18 00:22:30 +0300835 conn->sta_flags &= ~STA_PS_POLLED;
836
837 spin_lock_bh(&conn->psq_lock);
838 psq_empty = skb_queue_empty(&conn->psq);
839 spin_unlock_bh(&conn->psq_lock);
840
841 if (psq_empty)
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530842 ath6kl_wmi_set_pvb_cmd(ar->wmi, vif->fw_vif_idx, conn->aid, 0);
Kalle Valobdcd8172011-07-18 00:22:30 +0300843}
844
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530845void ath6kl_dtimexpiry_event(struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300846{
847 bool mcastq_empty = false;
848 struct sk_buff *skb;
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530849 struct ath6kl *ar = vif->ar;
Kalle Valobdcd8172011-07-18 00:22:30 +0300850
851 /*
852 * If there are no associated STAs, ignore the DTIM expiry event.
853 * There can be potential race conditions where the last associated
854 * STA may disconnect & before the host could clear the 'Indicate
855 * DTIM' request to the firmware, the firmware would have just
856 * indicated a DTIM expiry event. The race is between 'clear DTIM
857 * expiry cmd' going from the host to the firmware & the DTIM
858 * expiry event happening from the firmware to the host.
859 */
860 if (!ar->sta_list_index)
861 return;
862
863 spin_lock_bh(&ar->mcastpsq_lock);
864 mcastq_empty = skb_queue_empty(&ar->mcastpsq);
865 spin_unlock_bh(&ar->mcastpsq_lock);
866
867 if (mcastq_empty)
868 return;
869
870 /* set the STA flag to dtim_expired for the frame to go out */
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530871 set_bit(DTIM_EXPIRED, &vif->flags);
Kalle Valobdcd8172011-07-18 00:22:30 +0300872
873 spin_lock_bh(&ar->mcastpsq_lock);
874 while ((skb = skb_dequeue(&ar->mcastpsq)) != NULL) {
875 spin_unlock_bh(&ar->mcastpsq_lock);
876
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530877 ath6kl_data_tx(skb, vif->ndev);
Kalle Valobdcd8172011-07-18 00:22:30 +0300878
879 spin_lock_bh(&ar->mcastpsq_lock);
880 }
881 spin_unlock_bh(&ar->mcastpsq_lock);
882
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530883 clear_bit(DTIM_EXPIRED, &vif->flags);
Kalle Valobdcd8172011-07-18 00:22:30 +0300884
885 /* clear the LSB of the BitMapCtl field of the TIM IE */
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530886 ath6kl_wmi_set_pvb_cmd(ar->wmi, vif->fw_vif_idx, MCAST_AID, 0);
Kalle Valobdcd8172011-07-18 00:22:30 +0300887}
888
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530889void ath6kl_disconnect_event(struct ath6kl_vif *vif, u8 reason, u8 *bssid,
Kalle Valobdcd8172011-07-18 00:22:30 +0300890 u8 assoc_resp_len, u8 *assoc_info,
891 u16 prot_reason_status)
892{
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530893 struct ath6kl *ar = vif->ar;
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530894
Vasanthakumar Thiagarajanf5938f22011-10-25 19:34:03 +0530895 if (vif->nw_type == AP_NETWORK) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300896 if (!ath6kl_remove_sta(ar, bssid, prot_reason_status))
897 return;
898
899 /* if no more associated STAs, empty the mcast PS q */
900 if (ar->sta_list_index == 0) {
901 spin_lock_bh(&ar->mcastpsq_lock);
902 skb_queue_purge(&ar->mcastpsq);
903 spin_unlock_bh(&ar->mcastpsq_lock);
904
905 /* clear the LSB of the TIM IE's BitMapCtl field */
906 if (test_bit(WMI_READY, &ar->flag))
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530907 ath6kl_wmi_set_pvb_cmd(ar->wmi, vif->fw_vif_idx,
908 MCAST_AID, 0);
Kalle Valobdcd8172011-07-18 00:22:30 +0300909 }
910
911 if (!is_broadcast_ether_addr(bssid)) {
912 /* send event to application */
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530913 cfg80211_del_sta(vif->ndev, bssid, GFP_KERNEL);
Kalle Valobdcd8172011-07-18 00:22:30 +0300914 }
915
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530916 if (memcmp(vif->ndev->dev_addr, bssid, ETH_ALEN) == 0) {
Vasanthakumar Thiagarajan6f2a73f2011-10-25 19:34:06 +0530917 memset(vif->wep_key_list, 0, sizeof(vif->wep_key_list));
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530918 clear_bit(CONNECTED, &vif->flags);
Jouni Malinen151411e2011-09-15 15:10:16 +0300919 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300920 return;
921 }
922
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530923 ath6kl_cfg80211_disconnect_event(vif, reason, bssid,
Kalle Valobdcd8172011-07-18 00:22:30 +0300924 assoc_resp_len, assoc_info,
925 prot_reason_status);
926
Vasanthakumar Thiagarajan2132c692011-10-25 19:34:07 +0530927 aggr_reset_state(vif->aggr_cntxt);
Kalle Valobdcd8172011-07-18 00:22:30 +0300928
Vasanthakumar Thiagarajande3ad712011-10-25 19:34:08 +0530929 del_timer(&vif->disconnect_timer);
Kalle Valobdcd8172011-07-18 00:22:30 +0300930
Kalle Valod23ace72011-10-24 12:17:51 +0300931 ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "disconnect reason is %d\n", reason);
Kalle Valobdcd8172011-07-18 00:22:30 +0300932
933 /*
934 * If the event is due to disconnect cmd from the host, only they
935 * the target would stop trying to connect. Under any other
936 * condition, target would keep trying to connect.
937 */
938 if (reason == DISCONNECT_CMD) {
939 if (!ar->usr_bss_filter && test_bit(WMI_READY, &ar->flag))
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530940 ath6kl_wmi_bssfilter_cmd(ar->wmi, vif->fw_vif_idx,
941 NONE_BSS_FILTER, 0);
Kalle Valobdcd8172011-07-18 00:22:30 +0300942 } else {
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530943 set_bit(CONNECT_PEND, &vif->flags);
Kalle Valobdcd8172011-07-18 00:22:30 +0300944 if (((reason == ASSOC_FAILED) &&
945 (prot_reason_status == 0x11)) ||
946 ((reason == ASSOC_FAILED) && (prot_reason_status == 0x0)
Vasanthakumar Thiagarajancf5333d2011-10-25 19:34:10 +0530947 && (vif->reconnect_flag == 1))) {
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530948 set_bit(CONNECTED, &vif->flags);
Kalle Valobdcd8172011-07-18 00:22:30 +0300949 return;
950 }
951 }
952
Kalle Valobdcd8172011-07-18 00:22:30 +0300953 /* update connect & link status atomically */
Vasanthakumar Thiagarajan478ac022011-10-25 19:34:19 +0530954 spin_lock_bh(&vif->if_lock);
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530955 clear_bit(CONNECTED, &vif->flags);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530956 netif_carrier_off(vif->ndev);
Vasanthakumar Thiagarajan478ac022011-10-25 19:34:19 +0530957 spin_unlock_bh(&vif->if_lock);
Kalle Valobdcd8172011-07-18 00:22:30 +0300958
Vasanthakumar Thiagarajancf5333d2011-10-25 19:34:10 +0530959 if ((reason != CSERV_DISCONNECT) || (vif->reconnect_flag != 1))
960 vif->reconnect_flag = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300961
962 if (reason != CSERV_DISCONNECT)
963 ar->user_key_ctrl = 0;
964
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530965 netif_stop_queue(vif->ndev);
Vasanthakumar Thiagarajan8c8b65e2011-10-25 19:34:04 +0530966 memset(vif->bssid, 0, sizeof(vif->bssid));
Vasanthakumar Thiagarajanf74bac52011-10-25 19:34:05 +0530967 vif->bss_ch = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300968
969 ath6kl_tx_data_cleanup(ar);
970}
971
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +0530972struct ath6kl_vif *ath6kl_vif_first(struct ath6kl *ar)
973{
974 struct ath6kl_vif *vif;
975
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +0530976 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +0530977 if (list_empty(&ar->vif_list)) {
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +0530978 spin_unlock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +0530979 return NULL;
980 }
981
982 vif = list_first_entry(&ar->vif_list, struct ath6kl_vif, list);
983
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +0530984 spin_unlock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +0530985
986 return vif;
987}
988
Kalle Valobdcd8172011-07-18 00:22:30 +0300989static int ath6kl_open(struct net_device *dev)
990{
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530991 struct ath6kl_vif *vif = netdev_priv(dev);
Kalle Valobdcd8172011-07-18 00:22:30 +0300992
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530993 set_bit(WLAN_ENABLED, &vif->flags);
Kalle Valobdcd8172011-07-18 00:22:30 +0300994
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +0530995 if (test_bit(CONNECTED, &vif->flags)) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300996 netif_carrier_on(dev);
997 netif_wake_queue(dev);
998 } else
999 netif_carrier_off(dev);
1000
Kalle Valobdcd8172011-07-18 00:22:30 +03001001 return 0;
1002}
1003
1004static int ath6kl_close(struct net_device *dev)
1005{
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +05301006 struct ath6kl_vif *vif = netdev_priv(dev);
Kalle Valobdcd8172011-07-18 00:22:30 +03001007
1008 netif_stop_queue(dev);
1009
Kalle Valo7125f012011-12-13 14:51:37 +02001010 ath6kl_cfg80211_stop(vif);
Kalle Valobdcd8172011-07-18 00:22:30 +03001011
Kalle Valo68469342011-10-30 21:16:33 +02001012 clear_bit(WLAN_ENABLED, &vif->flags);
1013
Kalle Valobdcd8172011-07-18 00:22:30 +03001014 return 0;
1015}
1016
1017static struct net_device_stats *ath6kl_get_stats(struct net_device *dev)
1018{
Vasanthakumar Thiagarajanb95907a2011-10-25 19:34:11 +05301019 struct ath6kl_vif *vif = netdev_priv(dev);
Kalle Valobdcd8172011-07-18 00:22:30 +03001020
Vasanthakumar Thiagarajanb95907a2011-10-25 19:34:11 +05301021 return &vif->net_stats;
Kalle Valobdcd8172011-07-18 00:22:30 +03001022}
1023
Kalle Valod6f80262012-01-17 15:05:19 +02001024static int ath6kl_set_features(struct net_device *dev,
1025 netdev_features_t features)
Rishi Panjwanibc48ad32011-12-27 14:28:00 -08001026{
1027 struct ath6kl_vif *vif = netdev_priv(dev);
1028 struct ath6kl *ar = vif->ar;
1029 int err = 0;
1030
1031 if ((features & NETIF_F_RXCSUM) &&
1032 (ar->rx_meta_ver != WMI_META_VERSION_2)) {
1033 ar->rx_meta_ver = WMI_META_VERSION_2;
1034 err = ath6kl_wmi_set_rx_frame_format_cmd(ar->wmi,
1035 vif->fw_vif_idx,
1036 ar->rx_meta_ver, 0, 0);
1037 if (err) {
1038 dev->features = features & ~NETIF_F_RXCSUM;
1039 return err;
1040 }
1041 } else if (!(features & NETIF_F_RXCSUM) &&
1042 (ar->rx_meta_ver == WMI_META_VERSION_2)) {
1043 ar->rx_meta_ver = 0;
1044 err = ath6kl_wmi_set_rx_frame_format_cmd(ar->wmi,
1045 vif->fw_vif_idx,
1046 ar->rx_meta_ver, 0, 0);
1047 if (err) {
1048 dev->features = features | NETIF_F_RXCSUM;
1049 return err;
1050 }
1051
1052 }
1053
1054 return err;
1055}
1056
Vasanthakumar Thiagarajan80abaf92012-01-03 14:42:01 +05301057static void ath6kl_set_multicast_list(struct net_device *ndev)
1058{
1059 struct ath6kl_vif *vif = netdev_priv(ndev);
1060 bool mc_all_on = false, mc_all_off = false;
1061 int mc_count = netdev_mc_count(ndev);
1062 struct netdev_hw_addr *ha;
1063 bool found;
1064 struct ath6kl_mc_filter *mc_filter, *tmp;
1065 struct list_head mc_filter_new;
1066 int ret;
1067
1068 if (!test_bit(WMI_READY, &vif->ar->flag) ||
1069 !test_bit(WLAN_ENABLED, &vif->flags))
1070 return;
1071
1072 mc_all_on = !!(ndev->flags & IFF_PROMISC) ||
1073 !!(ndev->flags & IFF_ALLMULTI) ||
1074 !!(mc_count > ATH6K_MAX_MC_FILTERS_PER_LIST);
1075
1076 mc_all_off = !(ndev->flags & IFF_MULTICAST) || mc_count == 0;
1077
1078 if (mc_all_on || mc_all_off) {
1079 /* Enable/disable all multicast */
1080 ath6kl_dbg(ATH6KL_DBG_TRC, "%s multicast filter\n",
1081 mc_all_on ? "enabling" : "disabling");
1082 ret = ath6kl_wmi_mcast_filter_cmd(vif->ar->wmi, vif->fw_vif_idx,
1083 mc_all_on);
1084 if (ret)
1085 ath6kl_warn("Failed to %s multicast receive\n",
1086 mc_all_on ? "enable" : "disable");
1087 return;
1088 }
1089
1090 list_for_each_entry_safe(mc_filter, tmp, &vif->mc_filter, list) {
1091 found = false;
1092 netdev_for_each_mc_addr(ha, ndev) {
1093 if (memcmp(ha->addr, mc_filter->hw_addr,
1094 ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE) == 0) {
1095 found = true;
1096 break;
1097 }
1098 }
1099
1100 if (!found) {
1101 /*
1102 * Delete the filter which was previously set
1103 * but not in the new request.
1104 */
1105 ath6kl_dbg(ATH6KL_DBG_TRC,
1106 "Removing %pM from multicast filter\n",
1107 mc_filter->hw_addr);
1108 ret = ath6kl_wmi_add_del_mcast_filter_cmd(vif->ar->wmi,
1109 vif->fw_vif_idx, mc_filter->hw_addr,
1110 false);
1111 if (ret) {
1112 ath6kl_warn("Failed to remove multicast filter:%pM\n",
1113 mc_filter->hw_addr);
1114 return;
1115 }
1116
1117 list_del(&mc_filter->list);
1118 kfree(mc_filter);
1119 }
1120 }
1121
1122 INIT_LIST_HEAD(&mc_filter_new);
1123
1124 netdev_for_each_mc_addr(ha, ndev) {
1125 found = false;
1126 list_for_each_entry(mc_filter, &vif->mc_filter, list) {
1127 if (memcmp(ha->addr, mc_filter->hw_addr,
1128 ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE) == 0) {
1129 found = true;
1130 break;
1131 }
1132 }
1133
1134 if (!found) {
1135 mc_filter = kzalloc(sizeof(struct ath6kl_mc_filter),
1136 GFP_ATOMIC);
1137 if (!mc_filter) {
1138 WARN_ON(1);
1139 goto out;
1140 }
1141
1142 memcpy(mc_filter->hw_addr, ha->addr,
1143 ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE);
1144 /* Set the multicast filter */
1145 ath6kl_dbg(ATH6KL_DBG_TRC,
1146 "Adding %pM to multicast filter list\n",
1147 mc_filter->hw_addr);
1148 ret = ath6kl_wmi_add_del_mcast_filter_cmd(vif->ar->wmi,
1149 vif->fw_vif_idx, mc_filter->hw_addr,
1150 true);
1151 if (ret) {
1152 ath6kl_warn("Failed to add multicast filter :%pM\n",
1153 mc_filter->hw_addr);
1154 kfree(mc_filter);
1155 goto out;
1156 }
1157
1158 list_add_tail(&mc_filter->list, &mc_filter_new);
1159 }
1160 }
1161
1162out:
1163 list_splice_tail(&mc_filter_new, &vif->mc_filter);
1164}
1165
Stephen Hemminger4269a932012-01-05 10:39:48 -08001166static const struct net_device_ops ath6kl_netdev_ops = {
Kalle Valobdcd8172011-07-18 00:22:30 +03001167 .ndo_open = ath6kl_open,
1168 .ndo_stop = ath6kl_close,
1169 .ndo_start_xmit = ath6kl_data_tx,
1170 .ndo_get_stats = ath6kl_get_stats,
Rishi Panjwanibc48ad32011-12-27 14:28:00 -08001171 .ndo_set_features = ath6kl_set_features,
Vasanthakumar Thiagarajan80abaf92012-01-03 14:42:01 +05301172 .ndo_set_rx_mode = ath6kl_set_multicast_list,
Kalle Valobdcd8172011-07-18 00:22:30 +03001173};
1174
1175void init_netdev(struct net_device *dev)
1176{
1177 dev->netdev_ops = &ath6kl_netdev_ops;
Vasanthakumar Thiagarajan27929722011-10-25 19:34:21 +05301178 dev->destructor = free_netdev;
Kalle Valobdcd8172011-07-18 00:22:30 +03001179 dev->watchdog_timeo = ATH6KL_TX_TIMEOUT;
1180
1181 dev->needed_headroom = ETH_HLEN;
1182 dev->needed_headroom += sizeof(struct ath6kl_llc_snap_hdr) +
1183 sizeof(struct wmi_data_hdr) + HTC_HDR_LENGTH
Vasanthakumar Thiagarajan1df94a82011-08-17 18:45:10 +05301184 + WMI_MAX_TX_META_SZ + ATH6KL_HTC_ALIGN_BYTES;
Kalle Valobdcd8172011-07-18 00:22:30 +03001185
1186 return;
1187}