blob: 573cb26077a9ae3c286a1f2a1781ed806e8e1af7 [file] [log] [blame]
Kalle Valobdcd8172011-07-18 00:22:30 +03001/*
2 * Copyright (c) 2004-2011 Atheros Communications Inc.
Vasanthakumar Thiagarajan1b2df402012-02-06 20:15:53 +05303 * Copyright (c) 2011-2012 Qualcomm Atheros, Inc.
Kalle Valobdcd8172011-07-18 00:22:30 +03004 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#include <linux/ip.h>
19#include "core.h"
20#include "debug.h"
Kalle Valo003353b0d2011-09-01 10:14:21 +030021#include "testmode.h"
Vivek Natarajan06033762011-09-06 13:01:36 +053022#include "../regd.h"
23#include "../regd_common.h"
Kalle Valobdcd8172011-07-18 00:22:30 +030024
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +053025static int ath6kl_wmi_sync_point(struct wmi *wmi, u8 if_idx);
Kalle Valobdcd8172011-07-18 00:22:30 +030026
27static const s32 wmi_rate_tbl[][2] = {
28 /* {W/O SGI, with SGI} */
29 {1000, 1000},
30 {2000, 2000},
31 {5500, 5500},
32 {11000, 11000},
33 {6000, 6000},
34 {9000, 9000},
35 {12000, 12000},
36 {18000, 18000},
37 {24000, 24000},
38 {36000, 36000},
39 {48000, 48000},
40 {54000, 54000},
41 {6500, 7200},
42 {13000, 14400},
43 {19500, 21700},
44 {26000, 28900},
45 {39000, 43300},
46 {52000, 57800},
47 {58500, 65000},
48 {65000, 72200},
49 {13500, 15000},
50 {27000, 30000},
51 {40500, 45000},
52 {54000, 60000},
53 {81000, 90000},
54 {108000, 120000},
55 {121500, 135000},
56 {135000, 150000},
57 {0, 0}
58};
59
60/* 802.1d to AC mapping. Refer pg 57 of WMM-test-plan-v1.2 */
61static const u8 up_to_ac[] = {
62 WMM_AC_BE,
63 WMM_AC_BK,
64 WMM_AC_BK,
65 WMM_AC_BE,
66 WMM_AC_VI,
67 WMM_AC_VI,
68 WMM_AC_VO,
69 WMM_AC_VO,
70};
71
72void ath6kl_wmi_set_control_ep(struct wmi *wmi, enum htc_endpoint_id ep_id)
73{
74 if (WARN_ON(ep_id == ENDPOINT_UNUSED || ep_id >= ENDPOINT_MAX))
75 return;
76
77 wmi->ep_id = ep_id;
78}
79
80enum htc_endpoint_id ath6kl_wmi_get_control_ep(struct wmi *wmi)
81{
82 return wmi->ep_id;
83}
84
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +053085struct ath6kl_vif *ath6kl_get_vif_by_index(struct ath6kl *ar, u8 if_idx)
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +053086{
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +053087 struct ath6kl_vif *vif, *found = NULL;
88
Kalle Valo71f96ee2011-11-14 19:31:30 +020089 if (WARN_ON(if_idx > (ar->vif_max - 1)))
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +053090 return NULL;
91
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +053092 /* FIXME: Locking */
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +053093 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +053094 list_for_each_entry(vif, &ar->vif_list, list) {
95 if (vif->fw_vif_idx == if_idx) {
96 found = vif;
97 break;
98 }
99 }
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +0530100 spin_unlock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +0530101
102 return found;
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530103}
104
Kalle Valobdcd8172011-07-18 00:22:30 +0300105/* Performs DIX to 802.3 encapsulation for transmit packets.
106 * Assumes the entire DIX header is contigous and that there is
107 * enough room in the buffer for a 802.3 mac header and LLC+SNAP headers.
108 */
109int ath6kl_wmi_dix_2_dot3(struct wmi *wmi, struct sk_buff *skb)
110{
111 struct ath6kl_llc_snap_hdr *llc_hdr;
112 struct ethhdr *eth_hdr;
113 size_t new_len;
114 __be16 type;
115 u8 *datap;
116 u16 size;
117
118 if (WARN_ON(skb == NULL))
119 return -EINVAL;
120
121 size = sizeof(struct ath6kl_llc_snap_hdr) + sizeof(struct wmi_data_hdr);
122 if (skb_headroom(skb) < size)
123 return -ENOMEM;
124
125 eth_hdr = (struct ethhdr *) skb->data;
126 type = eth_hdr->h_proto;
127
128 if (!is_ethertype(be16_to_cpu(type))) {
129 ath6kl_dbg(ATH6KL_DBG_WMI,
130 "%s: pkt is already in 802.3 format\n", __func__);
131 return 0;
132 }
133
134 new_len = skb->len - sizeof(*eth_hdr) + sizeof(*llc_hdr);
135
136 skb_push(skb, sizeof(struct ath6kl_llc_snap_hdr));
137 datap = skb->data;
138
139 eth_hdr->h_proto = cpu_to_be16(new_len);
140
141 memcpy(datap, eth_hdr, sizeof(*eth_hdr));
142
143 llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap + sizeof(*eth_hdr));
144 llc_hdr->dsap = 0xAA;
145 llc_hdr->ssap = 0xAA;
146 llc_hdr->cntl = 0x03;
147 llc_hdr->org_code[0] = 0x0;
148 llc_hdr->org_code[1] = 0x0;
149 llc_hdr->org_code[2] = 0x0;
150 llc_hdr->eth_type = type;
151
152 return 0;
153}
154
155static int ath6kl_wmi_meta_add(struct wmi *wmi, struct sk_buff *skb,
156 u8 *version, void *tx_meta_info)
157{
158 struct wmi_tx_meta_v1 *v1;
159 struct wmi_tx_meta_v2 *v2;
160
161 if (WARN_ON(skb == NULL || version == NULL))
162 return -EINVAL;
163
164 switch (*version) {
165 case WMI_META_VERSION_1:
166 skb_push(skb, WMI_MAX_TX_META_SZ);
167 v1 = (struct wmi_tx_meta_v1 *) skb->data;
168 v1->pkt_id = 0;
169 v1->rate_plcy_id = 0;
170 *version = WMI_META_VERSION_1;
171 break;
172 case WMI_META_VERSION_2:
173 skb_push(skb, WMI_MAX_TX_META_SZ);
174 v2 = (struct wmi_tx_meta_v2 *) skb->data;
175 memcpy(v2, (struct wmi_tx_meta_v2 *) tx_meta_info,
176 sizeof(struct wmi_tx_meta_v2));
177 break;
178 }
179
180 return 0;
181}
182
183int ath6kl_wmi_data_hdr_add(struct wmi *wmi, struct sk_buff *skb,
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530184 u8 msg_type, u32 flags,
Kalle Valobdcd8172011-07-18 00:22:30 +0300185 enum wmi_data_hdr_data_type data_type,
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +0530186 u8 meta_ver, void *tx_meta_info, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +0300187{
188 struct wmi_data_hdr *data_hdr;
189 int ret;
190
Kalle Valo71f96ee2011-11-14 19:31:30 +0200191 if (WARN_ON(skb == NULL || (if_idx > wmi->parent_dev->vif_max - 1)))
Kalle Valobdcd8172011-07-18 00:22:30 +0300192 return -EINVAL;
193
Vasanthakumar Thiagarajan3ce6ff52011-08-22 20:40:21 +0530194 if (tx_meta_info) {
195 ret = ath6kl_wmi_meta_add(wmi, skb, &meta_ver, tx_meta_info);
196 if (ret)
197 return ret;
198 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300199
200 skb_push(skb, sizeof(struct wmi_data_hdr));
201
202 data_hdr = (struct wmi_data_hdr *)skb->data;
203 memset(data_hdr, 0, sizeof(struct wmi_data_hdr));
204
205 data_hdr->info = msg_type << WMI_DATA_HDR_MSG_TYPE_SHIFT;
206 data_hdr->info |= data_type << WMI_DATA_HDR_DATA_TYPE_SHIFT;
207
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530208 if (flags & WMI_DATA_HDR_FLAGS_MORE)
209 data_hdr->info |= WMI_DATA_HDR_MORE;
Kalle Valobdcd8172011-07-18 00:22:30 +0300210
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530211 if (flags & WMI_DATA_HDR_FLAGS_EOSP)
212 data_hdr->info3 |= cpu_to_le16(WMI_DATA_HDR_EOSP);
213
214 data_hdr->info2 |= cpu_to_le16(meta_ver << WMI_DATA_HDR_META_SHIFT);
215 data_hdr->info3 |= cpu_to_le16(if_idx & WMI_DATA_HDR_IF_IDX_MASK);
Kalle Valobdcd8172011-07-18 00:22:30 +0300216
217 return 0;
218}
219
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530220u8 ath6kl_wmi_determine_user_priority(u8 *pkt, u32 layer2_pri)
Kalle Valobdcd8172011-07-18 00:22:30 +0300221{
222 struct iphdr *ip_hdr = (struct iphdr *) pkt;
223 u8 ip_pri;
224
225 /*
226 * Determine IPTOS priority
227 *
228 * IP-TOS - 8bits
229 * : DSCP(6-bits) ECN(2-bits)
230 * : DSCP - P2 P1 P0 X X X
231 * where (P2 P1 P0) form 802.1D
232 */
233 ip_pri = ip_hdr->tos >> 5;
234 ip_pri &= 0x7;
235
236 if ((layer2_pri & 0x7) > ip_pri)
237 return (u8) layer2_pri & 0x7;
238 else
239 return ip_pri;
240}
241
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530242u8 ath6kl_wmi_get_traffic_class(u8 user_priority)
243{
244 return up_to_ac[user_priority & 0x7];
245}
246
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530247int ath6kl_wmi_implicit_create_pstream(struct wmi *wmi, u8 if_idx,
248 struct sk_buff *skb,
Kalle Valobdcd8172011-07-18 00:22:30 +0300249 u32 layer2_priority, bool wmm_enabled,
250 u8 *ac)
251{
252 struct wmi_data_hdr *data_hdr;
253 struct ath6kl_llc_snap_hdr *llc_hdr;
254 struct wmi_create_pstream_cmd cmd;
255 u32 meta_size, hdr_size;
256 u16 ip_type = IP_ETHERTYPE;
257 u8 stream_exist, usr_pri;
258 u8 traffic_class = WMM_AC_BE;
259 u8 *datap;
260
261 if (WARN_ON(skb == NULL))
262 return -EINVAL;
263
264 datap = skb->data;
265 data_hdr = (struct wmi_data_hdr *) datap;
266
267 meta_size = ((le16_to_cpu(data_hdr->info2) >> WMI_DATA_HDR_META_SHIFT) &
268 WMI_DATA_HDR_META_MASK) ? WMI_MAX_TX_META_SZ : 0;
269
270 if (!wmm_enabled) {
271 /* If WMM is disabled all traffic goes as BE traffic */
272 usr_pri = 0;
273 } else {
274 hdr_size = sizeof(struct ethhdr);
275
276 llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap +
277 sizeof(struct
278 wmi_data_hdr) +
279 meta_size + hdr_size);
280
281 if (llc_hdr->eth_type == htons(ip_type)) {
282 /*
283 * Extract the endpoint info from the TOS field
284 * in the IP header.
285 */
286 usr_pri =
287 ath6kl_wmi_determine_user_priority(((u8 *) llc_hdr) +
288 sizeof(struct ath6kl_llc_snap_hdr),
289 layer2_priority);
290 } else
291 usr_pri = layer2_priority & 0x7;
292 }
293
Kalle Valoa7f0c582011-10-05 12:23:05 +0300294 /*
295 * workaround for WMM S5
296 *
297 * FIXME: wmi->traffic_class is always 100 so this test doesn't
298 * make sense
299 */
Kalle Valobdcd8172011-07-18 00:22:30 +0300300 if ((wmi->traffic_class == WMM_AC_VI) &&
301 ((usr_pri == 5) || (usr_pri == 4)))
302 usr_pri = 1;
303
304 /* Convert user priority to traffic class */
305 traffic_class = up_to_ac[usr_pri & 0x7];
306
307 wmi_data_hdr_set_up(data_hdr, usr_pri);
308
309 spin_lock_bh(&wmi->lock);
310 stream_exist = wmi->fat_pipe_exist;
311 spin_unlock_bh(&wmi->lock);
312
313 if (!(stream_exist & (1 << traffic_class))) {
314 memset(&cmd, 0, sizeof(cmd));
315 cmd.traffic_class = traffic_class;
316 cmd.user_pri = usr_pri;
317 cmd.inactivity_int =
318 cpu_to_le32(WMI_IMPLICIT_PSTREAM_INACTIVITY_INT);
319 /* Implicit streams are created with TSID 0xFF */
320 cmd.tsid = WMI_IMPLICIT_PSTREAM;
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530321 ath6kl_wmi_create_pstream_cmd(wmi, if_idx, &cmd);
Kalle Valobdcd8172011-07-18 00:22:30 +0300322 }
323
324 *ac = traffic_class;
325
326 return 0;
327}
328
329int ath6kl_wmi_dot11_hdr_remove(struct wmi *wmi, struct sk_buff *skb)
330{
331 struct ieee80211_hdr_3addr *pwh, wh;
332 struct ath6kl_llc_snap_hdr *llc_hdr;
333 struct ethhdr eth_hdr;
334 u32 hdr_size;
335 u8 *datap;
336 __le16 sub_type;
337
338 if (WARN_ON(skb == NULL))
339 return -EINVAL;
340
341 datap = skb->data;
342 pwh = (struct ieee80211_hdr_3addr *) datap;
343
344 sub_type = pwh->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE);
345
346 memcpy((u8 *) &wh, datap, sizeof(struct ieee80211_hdr_3addr));
347
348 /* Strip off the 802.11 header */
349 if (sub_type == cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
350 hdr_size = roundup(sizeof(struct ieee80211_qos_hdr),
351 sizeof(u32));
352 skb_pull(skb, hdr_size);
353 } else if (sub_type == cpu_to_le16(IEEE80211_STYPE_DATA))
354 skb_pull(skb, sizeof(struct ieee80211_hdr_3addr));
355
356 datap = skb->data;
357 llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap);
358
Raja Manic8790cba2011-07-19 19:27:32 +0530359 memset(&eth_hdr, 0, sizeof(eth_hdr));
Kalle Valobdcd8172011-07-18 00:22:30 +0300360 eth_hdr.h_proto = llc_hdr->eth_type;
Kalle Valobdcd8172011-07-18 00:22:30 +0300361
362 switch ((le16_to_cpu(wh.frame_control)) &
363 (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
364 case 0:
365 memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN);
366 memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN);
367 break;
368 case IEEE80211_FCTL_TODS:
369 memcpy(eth_hdr.h_dest, wh.addr3, ETH_ALEN);
370 memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN);
371 break;
372 case IEEE80211_FCTL_FROMDS:
373 memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN);
374 memcpy(eth_hdr.h_source, wh.addr3, ETH_ALEN);
375 break;
376 case IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS:
377 break;
378 }
379
380 skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr));
381 skb_push(skb, sizeof(eth_hdr));
382
383 datap = skb->data;
384
385 memcpy(datap, &eth_hdr, sizeof(eth_hdr));
386
387 return 0;
388}
389
390/*
391 * Performs 802.3 to DIX encapsulation for received packets.
392 * Assumes the entire 802.3 header is contigous.
393 */
394int ath6kl_wmi_dot3_2_dix(struct sk_buff *skb)
395{
396 struct ath6kl_llc_snap_hdr *llc_hdr;
397 struct ethhdr eth_hdr;
398 u8 *datap;
399
400 if (WARN_ON(skb == NULL))
401 return -EINVAL;
402
403 datap = skb->data;
404
405 memcpy(&eth_hdr, datap, sizeof(eth_hdr));
406
407 llc_hdr = (struct ath6kl_llc_snap_hdr *) (datap + sizeof(eth_hdr));
408 eth_hdr.h_proto = llc_hdr->eth_type;
409
410 skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr));
411 datap = skb->data;
412
413 memcpy(datap, &eth_hdr, sizeof(eth_hdr));
414
415 return 0;
416}
417
Kalle Valobdcd8172011-07-18 00:22:30 +0300418static int ath6kl_wmi_tx_complete_event_rx(u8 *datap, int len)
419{
420 struct tx_complete_msg_v1 *msg_v1;
421 struct wmi_tx_complete_event *evt;
422 int index;
423 u16 size;
424
425 evt = (struct wmi_tx_complete_event *) datap;
426
427 ath6kl_dbg(ATH6KL_DBG_WMI, "comp: %d %d %d\n",
428 evt->num_msg, evt->msg_len, evt->msg_type);
429
Kalle Valobdcd8172011-07-18 00:22:30 +0300430 for (index = 0; index < evt->num_msg; index++) {
431 size = sizeof(struct wmi_tx_complete_event) +
432 (index * sizeof(struct tx_complete_msg_v1));
433 msg_v1 = (struct tx_complete_msg_v1 *)(datap + size);
434
435 ath6kl_dbg(ATH6KL_DBG_WMI, "msg: %d %d %d %d\n",
436 msg_v1->status, msg_v1->pkt_id,
437 msg_v1->rate_idx, msg_v1->ack_failures);
438 }
439
440 return 0;
441}
442
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300443static int ath6kl_wmi_remain_on_chnl_event_rx(struct wmi *wmi, u8 *datap,
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530444 int len, struct ath6kl_vif *vif)
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300445{
446 struct wmi_remain_on_chnl_event *ev;
447 u32 freq;
448 u32 dur;
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300449 struct ieee80211_channel *chan;
450 struct ath6kl *ar = wmi->parent_dev;
Jouni Malinen10522612011-10-27 16:00:13 +0300451 u32 id;
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300452
453 if (len < sizeof(*ev))
454 return -EINVAL;
455
456 ev = (struct wmi_remain_on_chnl_event *) datap;
457 freq = le32_to_cpu(ev->freq);
458 dur = le32_to_cpu(ev->duration);
459 ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl: freq=%u dur=%u\n",
460 freq, dur);
Vasanthakumar Thiagarajanbe98e3a2011-10-25 19:33:57 +0530461 chan = ieee80211_get_channel(ar->wiphy, freq);
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300462 if (!chan) {
463 ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl: Unknown channel "
464 "(freq=%u)\n", freq);
465 return -EINVAL;
466 }
Jouni Malinen10522612011-10-27 16:00:13 +0300467 id = vif->last_roc_id;
468 cfg80211_ready_on_channel(vif->ndev, id, chan, NL80211_CHAN_NO_HT,
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300469 dur, GFP_ATOMIC);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300470
471 return 0;
472}
473
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300474static int ath6kl_wmi_cancel_remain_on_chnl_event_rx(struct wmi *wmi,
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530475 u8 *datap, int len,
476 struct ath6kl_vif *vif)
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300477{
478 struct wmi_cancel_remain_on_chnl_event *ev;
479 u32 freq;
480 u32 dur;
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300481 struct ieee80211_channel *chan;
482 struct ath6kl *ar = wmi->parent_dev;
Jouni Malinen10522612011-10-27 16:00:13 +0300483 u32 id;
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300484
485 if (len < sizeof(*ev))
486 return -EINVAL;
487
488 ev = (struct wmi_cancel_remain_on_chnl_event *) datap;
489 freq = le32_to_cpu(ev->freq);
490 dur = le32_to_cpu(ev->duration);
491 ath6kl_dbg(ATH6KL_DBG_WMI, "cancel_remain_on_chnl: freq=%u dur=%u "
492 "status=%u\n", freq, dur, ev->status);
Vasanthakumar Thiagarajanbe98e3a2011-10-25 19:33:57 +0530493 chan = ieee80211_get_channel(ar->wiphy, freq);
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300494 if (!chan) {
495 ath6kl_dbg(ATH6KL_DBG_WMI, "cancel_remain_on_chnl: Unknown "
496 "channel (freq=%u)\n", freq);
497 return -EINVAL;
498 }
Jouni Malinen10522612011-10-27 16:00:13 +0300499 if (vif->last_cancel_roc_id &&
500 vif->last_cancel_roc_id + 1 == vif->last_roc_id)
501 id = vif->last_cancel_roc_id; /* event for cancel command */
502 else
503 id = vif->last_roc_id; /* timeout on uncanceled r-o-c */
504 vif->last_cancel_roc_id = 0;
505 cfg80211_remain_on_channel_expired(vif->ndev, id, chan,
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300506 NL80211_CHAN_NO_HT, GFP_ATOMIC);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300507
508 return 0;
509}
510
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530511static int ath6kl_wmi_tx_status_event_rx(struct wmi *wmi, u8 *datap, int len,
512 struct ath6kl_vif *vif)
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300513{
514 struct wmi_tx_status_event *ev;
515 u32 id;
516
517 if (len < sizeof(*ev))
518 return -EINVAL;
519
520 ev = (struct wmi_tx_status_event *) datap;
521 id = le32_to_cpu(ev->id);
522 ath6kl_dbg(ATH6KL_DBG_WMI, "tx_status: id=%x ack_status=%u\n",
523 id, ev->ack_status);
Jouni Malinena0df5db2011-08-30 21:58:02 +0300524 if (wmi->last_mgmt_tx_frame) {
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530525 cfg80211_mgmt_tx_status(vif->ndev, id,
Jouni Malinena0df5db2011-08-30 21:58:02 +0300526 wmi->last_mgmt_tx_frame,
527 wmi->last_mgmt_tx_frame_len,
528 !!ev->ack_status, GFP_ATOMIC);
529 kfree(wmi->last_mgmt_tx_frame);
530 wmi->last_mgmt_tx_frame = NULL;
531 wmi->last_mgmt_tx_frame_len = 0;
532 }
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300533
534 return 0;
535}
536
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530537static int ath6kl_wmi_rx_probe_req_event_rx(struct wmi *wmi, u8 *datap, int len,
538 struct ath6kl_vif *vif)
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300539{
540 struct wmi_p2p_rx_probe_req_event *ev;
Jouni Malinenae32c302011-08-30 21:58:01 +0300541 u32 freq;
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300542 u16 dlen;
543
544 if (len < sizeof(*ev))
545 return -EINVAL;
546
547 ev = (struct wmi_p2p_rx_probe_req_event *) datap;
Jouni Malinenae32c302011-08-30 21:58:01 +0300548 freq = le32_to_cpu(ev->freq);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300549 dlen = le16_to_cpu(ev->len);
Jouni Malinenae32c302011-08-30 21:58:01 +0300550 if (datap + len < ev->data + dlen) {
551 ath6kl_err("invalid wmi_p2p_rx_probe_req_event: "
552 "len=%d dlen=%u\n", len, dlen);
553 return -EINVAL;
554 }
555 ath6kl_dbg(ATH6KL_DBG_WMI, "rx_probe_req: len=%u freq=%u "
556 "probe_req_report=%d\n",
Vasanthakumar Thiagarajancf5333d2011-10-25 19:34:10 +0530557 dlen, freq, vif->probe_req_report);
Jouni Malinenae32c302011-08-30 21:58:01 +0300558
Vasanthakumar Thiagarajancf5333d2011-10-25 19:34:10 +0530559 if (vif->probe_req_report || vif->nw_type == AP_NETWORK)
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530560 cfg80211_rx_mgmt(vif->ndev, freq, ev->data, dlen, GFP_ATOMIC);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300561
562 return 0;
563}
564
565static int ath6kl_wmi_p2p_capabilities_event_rx(u8 *datap, int len)
566{
567 struct wmi_p2p_capabilities_event *ev;
568 u16 dlen;
569
570 if (len < sizeof(*ev))
571 return -EINVAL;
572
573 ev = (struct wmi_p2p_capabilities_event *) datap;
574 dlen = le16_to_cpu(ev->len);
575 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_capab: len=%u\n", dlen);
576
577 return 0;
578}
579
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530580static int ath6kl_wmi_rx_action_event_rx(struct wmi *wmi, u8 *datap, int len,
581 struct ath6kl_vif *vif)
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300582{
583 struct wmi_rx_action_event *ev;
Jouni Malinen9809d8e2011-08-30 21:58:03 +0300584 u32 freq;
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300585 u16 dlen;
586
587 if (len < sizeof(*ev))
588 return -EINVAL;
589
590 ev = (struct wmi_rx_action_event *) datap;
Jouni Malinen9809d8e2011-08-30 21:58:03 +0300591 freq = le32_to_cpu(ev->freq);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300592 dlen = le16_to_cpu(ev->len);
Jouni Malinen9809d8e2011-08-30 21:58:03 +0300593 if (datap + len < ev->data + dlen) {
594 ath6kl_err("invalid wmi_rx_action_event: "
595 "len=%d dlen=%u\n", len, dlen);
596 return -EINVAL;
597 }
598 ath6kl_dbg(ATH6KL_DBG_WMI, "rx_action: len=%u freq=%u\n", dlen, freq);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530599 cfg80211_rx_mgmt(vif->ndev, freq, ev->data, dlen, GFP_ATOMIC);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300600
601 return 0;
602}
603
604static int ath6kl_wmi_p2p_info_event_rx(u8 *datap, int len)
605{
606 struct wmi_p2p_info_event *ev;
607 u32 flags;
608 u16 dlen;
609
610 if (len < sizeof(*ev))
611 return -EINVAL;
612
613 ev = (struct wmi_p2p_info_event *) datap;
614 flags = le32_to_cpu(ev->info_req_flags);
615 dlen = le16_to_cpu(ev->len);
616 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: flags=%x len=%d\n", flags, dlen);
617
618 if (flags & P2P_FLAG_CAPABILITIES_REQ) {
619 struct wmi_p2p_capabilities *cap;
620 if (dlen < sizeof(*cap))
621 return -EINVAL;
622 cap = (struct wmi_p2p_capabilities *) ev->data;
623 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: GO Power Save = %d\n",
624 cap->go_power_save);
625 }
626
627 if (flags & P2P_FLAG_MACADDR_REQ) {
628 struct wmi_p2p_macaddr *mac;
629 if (dlen < sizeof(*mac))
630 return -EINVAL;
631 mac = (struct wmi_p2p_macaddr *) ev->data;
632 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: MAC Address = %pM\n",
633 mac->mac_addr);
634 }
635
636 if (flags & P2P_FLAG_HMODEL_REQ) {
637 struct wmi_p2p_hmodel *mod;
638 if (dlen < sizeof(*mod))
639 return -EINVAL;
640 mod = (struct wmi_p2p_hmodel *) ev->data;
641 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: P2P Model = %d (%s)\n",
642 mod->p2p_model,
643 mod->p2p_model ? "host" : "firmware");
644 }
645 return 0;
646}
647
Kalle Valobdcd8172011-07-18 00:22:30 +0300648static inline struct sk_buff *ath6kl_wmi_get_new_buf(u32 size)
649{
650 struct sk_buff *skb;
651
652 skb = ath6kl_buf_alloc(size);
653 if (!skb)
654 return NULL;
655
656 skb_put(skb, size);
657 if (size)
658 memset(skb->data, 0, size);
659
660 return skb;
661}
662
663/* Send a "simple" wmi command -- one with no arguments */
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530664static int ath6kl_wmi_simple_cmd(struct wmi *wmi, u8 if_idx,
665 enum wmi_cmd_id cmd_id)
Kalle Valobdcd8172011-07-18 00:22:30 +0300666{
667 struct sk_buff *skb;
668 int ret;
669
670 skb = ath6kl_wmi_get_new_buf(0);
671 if (!skb)
672 return -ENOMEM;
673
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530674 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, cmd_id, NO_SYNC_WMIFLAG);
Kalle Valobdcd8172011-07-18 00:22:30 +0300675
676 return ret;
677}
678
679static int ath6kl_wmi_ready_event_rx(struct wmi *wmi, u8 *datap, int len)
680{
681 struct wmi_ready_event_2 *ev = (struct wmi_ready_event_2 *) datap;
682
683 if (len < sizeof(struct wmi_ready_event_2))
684 return -EINVAL;
685
Kalle Valobdcd8172011-07-18 00:22:30 +0300686 ath6kl_ready_event(wmi->parent_dev, ev->mac_addr,
687 le32_to_cpu(ev->sw_version),
688 le32_to_cpu(ev->abi_version));
689
690 return 0;
691}
692
Vivek Natarajane5090442011-08-31 15:02:19 +0530693/*
694 * Mechanism to modify the roaming behavior in the firmware. The lower rssi
695 * at which the station has to roam can be passed with
696 * WMI_SET_LRSSI_SCAN_PARAMS. Subtract 96 from RSSI to get the signal level
697 * in dBm.
698 */
699int ath6kl_wmi_set_roam_lrssi_cmd(struct wmi *wmi, u8 lrssi)
700{
701 struct sk_buff *skb;
702 struct roam_ctrl_cmd *cmd;
703
704 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
705 if (!skb)
706 return -ENOMEM;
707
708 cmd = (struct roam_ctrl_cmd *) skb->data;
709
710 cmd->info.params.lrssi_scan_period = cpu_to_le16(DEF_LRSSI_SCAN_PERIOD);
711 cmd->info.params.lrssi_scan_threshold = a_cpu_to_sle16(lrssi +
712 DEF_SCAN_FOR_ROAM_INTVL);
713 cmd->info.params.lrssi_roam_threshold = a_cpu_to_sle16(lrssi);
714 cmd->info.params.roam_rssi_floor = DEF_LRSSI_ROAM_FLOOR;
715 cmd->roam_ctrl = WMI_SET_LRSSI_SCAN_PARAMS;
716
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530717 ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID,
718 NO_SYNC_WMIFLAG);
Vivek Natarajane5090442011-08-31 15:02:19 +0530719
720 return 0;
721}
722
Jouni Malinen12618752011-10-11 17:31:55 +0300723int ath6kl_wmi_force_roam_cmd(struct wmi *wmi, const u8 *bssid)
724{
725 struct sk_buff *skb;
726 struct roam_ctrl_cmd *cmd;
727
728 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
729 if (!skb)
730 return -ENOMEM;
731
732 cmd = (struct roam_ctrl_cmd *) skb->data;
733 memset(cmd, 0, sizeof(*cmd));
734
735 memcpy(cmd->info.bssid, bssid, ETH_ALEN);
736 cmd->roam_ctrl = WMI_FORCE_ROAM;
737
738 ath6kl_dbg(ATH6KL_DBG_WMI, "force roam to %pM\n", bssid);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530739 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID,
Jouni Malinen12618752011-10-11 17:31:55 +0300740 NO_SYNC_WMIFLAG);
741}
742
743int ath6kl_wmi_set_roam_mode_cmd(struct wmi *wmi, enum wmi_roam_mode mode)
744{
745 struct sk_buff *skb;
746 struct roam_ctrl_cmd *cmd;
747
748 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
749 if (!skb)
750 return -ENOMEM;
751
752 cmd = (struct roam_ctrl_cmd *) skb->data;
753 memset(cmd, 0, sizeof(*cmd));
754
755 cmd->info.roam_mode = mode;
756 cmd->roam_ctrl = WMI_SET_ROAM_MODE;
757
758 ath6kl_dbg(ATH6KL_DBG_WMI, "set roam mode %d\n", mode);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530759 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID,
Jouni Malinen12618752011-10-11 17:31:55 +0300760 NO_SYNC_WMIFLAG);
761}
762
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530763static int ath6kl_wmi_connect_event_rx(struct wmi *wmi, u8 *datap, int len,
764 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300765{
766 struct wmi_connect_event *ev;
767 u8 *pie, *peie;
768
769 if (len < sizeof(struct wmi_connect_event))
770 return -EINVAL;
771
772 ev = (struct wmi_connect_event *) datap;
773
Vasanthakumar Thiagarajanf5938f22011-10-25 19:34:03 +0530774 if (vif->nw_type == AP_NETWORK) {
Jouni Malinen572e27c2011-09-05 17:38:45 +0300775 /* AP mode start/STA connected event */
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530776 struct net_device *dev = vif->ndev;
Jouni Malinen572e27c2011-09-05 17:38:45 +0300777 if (memcmp(dev->dev_addr, ev->u.ap_bss.bssid, ETH_ALEN) == 0) {
778 ath6kl_dbg(ATH6KL_DBG_WMI, "%s: freq %d bssid %pM "
779 "(AP started)\n",
780 __func__, le16_to_cpu(ev->u.ap_bss.ch),
781 ev->u.ap_bss.bssid);
782 ath6kl_connect_ap_mode_bss(
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530783 vif, le16_to_cpu(ev->u.ap_bss.ch));
Jouni Malinen572e27c2011-09-05 17:38:45 +0300784 } else {
785 ath6kl_dbg(ATH6KL_DBG_WMI, "%s: aid %u mac_addr %pM "
786 "auth=%u keymgmt=%u cipher=%u apsd_info=%u "
787 "(STA connected)\n",
788 __func__, ev->u.ap_sta.aid,
789 ev->u.ap_sta.mac_addr,
790 ev->u.ap_sta.auth,
791 ev->u.ap_sta.keymgmt,
792 le16_to_cpu(ev->u.ap_sta.cipher),
793 ev->u.ap_sta.apsd_info);
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530794
Jouni Malinen572e27c2011-09-05 17:38:45 +0300795 ath6kl_connect_ap_mode_sta(
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530796 vif, ev->u.ap_sta.aid, ev->u.ap_sta.mac_addr,
Jouni Malinen572e27c2011-09-05 17:38:45 +0300797 ev->u.ap_sta.keymgmt,
798 le16_to_cpu(ev->u.ap_sta.cipher),
799 ev->u.ap_sta.auth, ev->assoc_req_len,
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530800 ev->assoc_info + ev->beacon_ie_len,
801 ev->u.ap_sta.apsd_info);
Jouni Malinen572e27c2011-09-05 17:38:45 +0300802 }
803 return 0;
804 }
805
806 /* STA/IBSS mode connection event */
807
Kalle Valob9b6ee62011-09-27 14:31:21 +0300808 ath6kl_dbg(ATH6KL_DBG_WMI,
809 "wmi event connect freq %d bssid %pM listen_intvl %d beacon_intvl %d type %d\n",
810 le16_to_cpu(ev->u.sta.ch), ev->u.sta.bssid,
811 le16_to_cpu(ev->u.sta.listen_intvl),
812 le16_to_cpu(ev->u.sta.beacon_intvl),
813 le32_to_cpu(ev->u.sta.nw_type));
Kalle Valobdcd8172011-07-18 00:22:30 +0300814
Kalle Valobdcd8172011-07-18 00:22:30 +0300815 /* Start of assoc rsp IEs */
816 pie = ev->assoc_info + ev->beacon_ie_len +
817 ev->assoc_req_len + (sizeof(u16) * 3); /* capinfo, status, aid */
818
819 /* End of assoc rsp IEs */
820 peie = ev->assoc_info + ev->beacon_ie_len + ev->assoc_req_len +
821 ev->assoc_resp_len;
822
823 while (pie < peie) {
824 switch (*pie) {
825 case WLAN_EID_VENDOR_SPECIFIC:
826 if (pie[1] > 3 && pie[2] == 0x00 && pie[3] == 0x50 &&
827 pie[4] == 0xf2 && pie[5] == WMM_OUI_TYPE) {
828 /* WMM OUT (00:50:F2) */
829 if (pie[1] > 5
830 && pie[6] == WMM_PARAM_OUI_SUBTYPE)
831 wmi->is_wmm_enabled = true;
832 }
833 break;
834 }
835
836 if (wmi->is_wmm_enabled)
837 break;
838
839 pie += pie[1] + 2;
840 }
841
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530842 ath6kl_connect_event(vif, le16_to_cpu(ev->u.sta.ch),
Jouni Malinen572e27c2011-09-05 17:38:45 +0300843 ev->u.sta.bssid,
844 le16_to_cpu(ev->u.sta.listen_intvl),
845 le16_to_cpu(ev->u.sta.beacon_intvl),
846 le32_to_cpu(ev->u.sta.nw_type),
Kalle Valobdcd8172011-07-18 00:22:30 +0300847 ev->beacon_ie_len, ev->assoc_req_len,
848 ev->assoc_resp_len, ev->assoc_info);
849
850 return 0;
851}
852
Vivek Natarajan06033762011-09-06 13:01:36 +0530853static struct country_code_to_enum_rd *
854ath6kl_regd_find_country(u16 countryCode)
855{
856 int i;
857
858 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
859 if (allCountries[i].countryCode == countryCode)
860 return &allCountries[i];
861 }
862
863 return NULL;
864}
865
866static struct reg_dmn_pair_mapping *
867ath6kl_get_regpair(u16 regdmn)
868{
869 int i;
870
871 if (regdmn == NO_ENUMRD)
872 return NULL;
873
874 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) {
875 if (regDomainPairs[i].regDmnEnum == regdmn)
876 return &regDomainPairs[i];
877 }
878
879 return NULL;
880}
881
882static struct country_code_to_enum_rd *
883ath6kl_regd_find_country_by_rd(u16 regdmn)
884{
885 int i;
886
887 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
888 if (allCountries[i].regDmnEnum == regdmn)
889 return &allCountries[i];
890 }
891
892 return NULL;
893}
894
895static void ath6kl_wmi_regdomain_event(struct wmi *wmi, u8 *datap, int len)
896{
897
898 struct ath6kl_wmi_regdomain *ev;
899 struct country_code_to_enum_rd *country = NULL;
900 struct reg_dmn_pair_mapping *regpair = NULL;
901 char alpha2[2];
902 u32 reg_code;
903
904 ev = (struct ath6kl_wmi_regdomain *) datap;
905 reg_code = le32_to_cpu(ev->reg_code);
906
907 if ((reg_code >> ATH6KL_COUNTRY_RD_SHIFT) & COUNTRY_ERD_FLAG)
908 country = ath6kl_regd_find_country((u16) reg_code);
909 else if (!(((u16) reg_code & WORLD_SKU_MASK) == WORLD_SKU_PREFIX)) {
910
911 regpair = ath6kl_get_regpair((u16) reg_code);
912 country = ath6kl_regd_find_country_by_rd((u16) reg_code);
Kalle Valob9b6ee62011-09-27 14:31:21 +0300913 ath6kl_dbg(ATH6KL_DBG_WMI, "Regpair used: 0x%0x\n",
Vivek Natarajan06033762011-09-06 13:01:36 +0530914 regpair->regDmnEnum);
915 }
916
Vasanthakumar Thiagarajane5348a12012-02-25 14:43:17 +0530917 if (country && wmi->parent_dev->wiphy_registered) {
Vivek Natarajan06033762011-09-06 13:01:36 +0530918 alpha2[0] = country->isoName[0];
919 alpha2[1] = country->isoName[1];
920
Vasanthakumar Thiagarajanbe98e3a2011-10-25 19:33:57 +0530921 regulatory_hint(wmi->parent_dev->wiphy, alpha2);
Vivek Natarajan06033762011-09-06 13:01:36 +0530922
Kalle Valob9b6ee62011-09-27 14:31:21 +0300923 ath6kl_dbg(ATH6KL_DBG_WMI, "Country alpha2 being used: %c%c\n",
Vivek Natarajan06033762011-09-06 13:01:36 +0530924 alpha2[0], alpha2[1]);
925 }
926}
927
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530928static int ath6kl_wmi_disconnect_event_rx(struct wmi *wmi, u8 *datap, int len,
929 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300930{
931 struct wmi_disconnect_event *ev;
932 wmi->traffic_class = 100;
933
934 if (len < sizeof(struct wmi_disconnect_event))
935 return -EINVAL;
936
937 ev = (struct wmi_disconnect_event *) datap;
Kalle Valobdcd8172011-07-18 00:22:30 +0300938
Kalle Valob9b6ee62011-09-27 14:31:21 +0300939 ath6kl_dbg(ATH6KL_DBG_WMI,
940 "wmi event disconnect proto_reason %d bssid %pM wmi_reason %d assoc_resp_len %d\n",
941 le16_to_cpu(ev->proto_reason_status), ev->bssid,
942 ev->disconn_reason, ev->assoc_resp_len);
943
Kalle Valobdcd8172011-07-18 00:22:30 +0300944 wmi->is_wmm_enabled = false;
Kalle Valobdcd8172011-07-18 00:22:30 +0300945
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530946 ath6kl_disconnect_event(vif, ev->disconn_reason,
Kalle Valobdcd8172011-07-18 00:22:30 +0300947 ev->bssid, ev->assoc_resp_len, ev->assoc_info,
948 le16_to_cpu(ev->proto_reason_status));
949
950 return 0;
951}
952
953static int ath6kl_wmi_peer_node_event_rx(struct wmi *wmi, u8 *datap, int len)
954{
955 struct wmi_peer_node_event *ev;
956
957 if (len < sizeof(struct wmi_peer_node_event))
958 return -EINVAL;
959
960 ev = (struct wmi_peer_node_event *) datap;
961
962 if (ev->event_code == PEER_NODE_JOIN_EVENT)
963 ath6kl_dbg(ATH6KL_DBG_WMI, "joined node with mac addr: %pM\n",
964 ev->peer_mac_addr);
965 else if (ev->event_code == PEER_NODE_LEAVE_EVENT)
966 ath6kl_dbg(ATH6KL_DBG_WMI, "left node with mac addr: %pM\n",
967 ev->peer_mac_addr);
968
969 return 0;
970}
971
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530972static int ath6kl_wmi_tkip_micerr_event_rx(struct wmi *wmi, u8 *datap, int len,
973 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300974{
975 struct wmi_tkip_micerr_event *ev;
976
977 if (len < sizeof(struct wmi_tkip_micerr_event))
978 return -EINVAL;
979
980 ev = (struct wmi_tkip_micerr_event *) datap;
981
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530982 ath6kl_tkip_micerr_event(vif, ev->key_id, ev->is_mcast);
Kalle Valobdcd8172011-07-18 00:22:30 +0300983
984 return 0;
985}
986
Kalle Valo10509f92011-12-13 14:52:07 +0200987void ath6kl_wmi_sscan_timer(unsigned long ptr)
988{
989 struct ath6kl_vif *vif = (struct ath6kl_vif *) ptr;
990
991 cfg80211_sched_scan_results(vif->ar->wiphy);
992}
993
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530994static int ath6kl_wmi_bssinfo_event_rx(struct wmi *wmi, u8 *datap, int len,
995 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300996{
Jouni Malinen82e14f52011-09-19 19:15:05 +0300997 struct wmi_bss_info_hdr2 *bih;
Jouni Malinen1aaa8c72011-09-19 19:15:03 +0300998 u8 *buf;
999 struct ieee80211_channel *channel;
1000 struct ath6kl *ar = wmi->parent_dev;
1001 struct ieee80211_mgmt *mgmt;
1002 struct cfg80211_bss *bss;
Kalle Valobdcd8172011-07-18 00:22:30 +03001003
Jouni Malinen82e14f52011-09-19 19:15:05 +03001004 if (len <= sizeof(struct wmi_bss_info_hdr2))
Kalle Valobdcd8172011-07-18 00:22:30 +03001005 return -EINVAL;
1006
Jouni Malinen82e14f52011-09-19 19:15:05 +03001007 bih = (struct wmi_bss_info_hdr2 *) datap;
1008 buf = datap + sizeof(struct wmi_bss_info_hdr2);
1009 len -= sizeof(struct wmi_bss_info_hdr2);
Kalle Valobdcd8172011-07-18 00:22:30 +03001010
1011 ath6kl_dbg(ATH6KL_DBG_WMI,
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001012 "bss info evt - ch %u, snr %d, rssi %d, bssid \"%pM\" "
1013 "frame_type=%d\n",
Jouni Malinen82e14f52011-09-19 19:15:05 +03001014 bih->ch, bih->snr, bih->snr - 95, bih->bssid,
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001015 bih->frame_type);
Kalle Valobdcd8172011-07-18 00:22:30 +03001016
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001017 if (bih->frame_type != BEACON_FTYPE &&
1018 bih->frame_type != PROBERESP_FTYPE)
1019 return 0; /* Only update BSS table for now */
Kalle Valobdcd8172011-07-18 00:22:30 +03001020
Jouni Malinen551185c2011-09-19 19:15:06 +03001021 if (bih->frame_type == BEACON_FTYPE &&
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +05301022 test_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags)) {
1023 clear_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301024 ath6kl_wmi_bssfilter_cmd(ar->wmi, vif->fw_vif_idx,
1025 NONE_BSS_FILTER, 0);
Jouni Malinen551185c2011-09-19 19:15:06 +03001026 }
1027
Vasanthakumar Thiagarajanbe98e3a2011-10-25 19:33:57 +05301028 channel = ieee80211_get_channel(ar->wiphy, le16_to_cpu(bih->ch));
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001029 if (channel == NULL)
1030 return -EINVAL;
Kalle Valobdcd8172011-07-18 00:22:30 +03001031
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001032 if (len < 8 + 2 + 2)
1033 return -EINVAL;
Kalle Valobdcd8172011-07-18 00:22:30 +03001034
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +05301035 if (bih->frame_type == BEACON_FTYPE && test_bit(CONNECTED, &vif->flags)
Vasanthakumar Thiagarajan8c8b65e2011-10-25 19:34:04 +05301036 && memcmp(bih->bssid, vif->bssid, ETH_ALEN) == 0) {
Jouni Malinen32c10872011-09-19 19:15:07 +03001037 const u8 *tim;
1038 tim = cfg80211_find_ie(WLAN_EID_TIM, buf + 8 + 2 + 2,
1039 len - 8 - 2 - 2);
1040 if (tim && tim[1] >= 2) {
Vasanthakumar Thiagarajancf5333d2011-10-25 19:34:10 +05301041 vif->assoc_bss_dtim_period = tim[3];
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +05301042 set_bit(DTIM_PERIOD_AVAIL, &vif->flags);
Jouni Malinen32c10872011-09-19 19:15:07 +03001043 }
1044 }
1045
Kalle Valobdcd8172011-07-18 00:22:30 +03001046 /*
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001047 * In theory, use of cfg80211_inform_bss() would be more natural here
1048 * since we do not have the full frame. However, at least for now,
1049 * cfg80211 can only distinguish Beacon and Probe Response frames from
1050 * each other when using cfg80211_inform_bss_frame(), so let's build a
1051 * fake IEEE 802.11 header to be able to take benefit of this.
Kalle Valobdcd8172011-07-18 00:22:30 +03001052 */
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001053 mgmt = kmalloc(24 + len, GFP_ATOMIC);
1054 if (mgmt == NULL)
1055 return -EINVAL;
Kalle Valobdcd8172011-07-18 00:22:30 +03001056
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001057 if (bih->frame_type == BEACON_FTYPE) {
1058 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1059 IEEE80211_STYPE_BEACON);
1060 memset(mgmt->da, 0xff, ETH_ALEN);
1061 } else {
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301062 struct net_device *dev = vif->ndev;
Kalle Valobdcd8172011-07-18 00:22:30 +03001063
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001064 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1065 IEEE80211_STYPE_PROBE_RESP);
1066 memcpy(mgmt->da, dev->dev_addr, ETH_ALEN);
Kalle Valobdcd8172011-07-18 00:22:30 +03001067 }
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001068 mgmt->duration = cpu_to_le16(0);
1069 memcpy(mgmt->sa, bih->bssid, ETH_ALEN);
1070 memcpy(mgmt->bssid, bih->bssid, ETH_ALEN);
1071 mgmt->seq_ctrl = cpu_to_le16(0);
Kalle Valobdcd8172011-07-18 00:22:30 +03001072
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001073 memcpy(&mgmt->u.beacon, buf, len);
1074
Vasanthakumar Thiagarajanbe98e3a2011-10-25 19:33:57 +05301075 bss = cfg80211_inform_bss_frame(ar->wiphy, channel, mgmt,
Jouni Malinen82e14f52011-09-19 19:15:05 +03001076 24 + len, (bih->snr - 95) * 100,
1077 GFP_ATOMIC);
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001078 kfree(mgmt);
1079 if (bss == NULL)
Kalle Valobdcd8172011-07-18 00:22:30 +03001080 return -ENOMEM;
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001081 cfg80211_put_bss(bss);
Kalle Valobdcd8172011-07-18 00:22:30 +03001082
Kalle Valo10509f92011-12-13 14:52:07 +02001083 /*
1084 * Firmware doesn't return any event when scheduled scan has
1085 * finished, so we need to use a timer to find out when there are
1086 * no more results.
1087 *
1088 * The timer is started from the first bss info received, otherwise
1089 * the timer would not ever fire if the scan interval is short
1090 * enough.
1091 */
1092 if (ar->state == ATH6KL_STATE_SCHED_SCAN &&
1093 !timer_pending(&vif->sched_scan_timer)) {
1094 mod_timer(&vif->sched_scan_timer, jiffies +
1095 msecs_to_jiffies(ATH6KL_SCHED_SCAN_RESULT_DELAY));
1096 }
1097
Kalle Valobdcd8172011-07-18 00:22:30 +03001098 return 0;
1099}
1100
Kalle Valobdcd8172011-07-18 00:22:30 +03001101/* Inactivity timeout of a fatpipe(pstream) at the target */
1102static int ath6kl_wmi_pstream_timeout_event_rx(struct wmi *wmi, u8 *datap,
1103 int len)
1104{
1105 struct wmi_pstream_timeout_event *ev;
1106
1107 if (len < sizeof(struct wmi_pstream_timeout_event))
1108 return -EINVAL;
1109
1110 ev = (struct wmi_pstream_timeout_event *) datap;
1111
1112 /*
1113 * When the pstream (fat pipe == AC) timesout, it means there were
1114 * no thinStreams within this pstream & it got implicitly created
1115 * due to data flow on this AC. We start the inactivity timer only
1116 * for implicitly created pstream. Just reset the host state.
1117 */
1118 spin_lock_bh(&wmi->lock);
1119 wmi->stream_exist_for_ac[ev->traffic_class] = 0;
1120 wmi->fat_pipe_exist &= ~(1 << ev->traffic_class);
1121 spin_unlock_bh(&wmi->lock);
1122
1123 /* Indicate inactivity to driver layer for this fatpipe (pstream) */
1124 ath6kl_indicate_tx_activity(wmi->parent_dev, ev->traffic_class, false);
1125
1126 return 0;
1127}
1128
1129static int ath6kl_wmi_bitrate_reply_rx(struct wmi *wmi, u8 *datap, int len)
1130{
1131 struct wmi_bit_rate_reply *reply;
1132 s32 rate;
1133 u32 sgi, index;
1134
1135 if (len < sizeof(struct wmi_bit_rate_reply))
1136 return -EINVAL;
1137
1138 reply = (struct wmi_bit_rate_reply *) datap;
1139
1140 ath6kl_dbg(ATH6KL_DBG_WMI, "rateindex %d\n", reply->rate_index);
1141
1142 if (reply->rate_index == (s8) RATE_AUTO) {
1143 rate = RATE_AUTO;
1144 } else {
1145 index = reply->rate_index & 0x7f;
1146 sgi = (reply->rate_index & 0x80) ? 1 : 0;
1147 rate = wmi_rate_tbl[index][sgi];
1148 }
1149
1150 ath6kl_wakeup_event(wmi->parent_dev);
1151
1152 return 0;
1153}
1154
Thomas Pedersen4f34dac2011-12-30 01:57:00 -08001155static int ath6kl_wmi_test_rx(struct wmi *wmi, u8 *datap, int len)
Kalle Valo003353b0d2011-09-01 10:14:21 +03001156{
Thomas Pedersen4f34dac2011-12-30 01:57:00 -08001157 ath6kl_tm_rx_event(wmi->parent_dev, datap, len);
Kalle Valo003353b0d2011-09-01 10:14:21 +03001158
1159 return 0;
1160}
1161
Kalle Valobdcd8172011-07-18 00:22:30 +03001162static int ath6kl_wmi_ratemask_reply_rx(struct wmi *wmi, u8 *datap, int len)
1163{
1164 if (len < sizeof(struct wmi_fix_rates_reply))
1165 return -EINVAL;
1166
1167 ath6kl_wakeup_event(wmi->parent_dev);
1168
1169 return 0;
1170}
1171
1172static int ath6kl_wmi_ch_list_reply_rx(struct wmi *wmi, u8 *datap, int len)
1173{
1174 if (len < sizeof(struct wmi_channel_list_reply))
1175 return -EINVAL;
1176
1177 ath6kl_wakeup_event(wmi->parent_dev);
1178
1179 return 0;
1180}
1181
1182static int ath6kl_wmi_tx_pwr_reply_rx(struct wmi *wmi, u8 *datap, int len)
1183{
1184 struct wmi_tx_pwr_reply *reply;
1185
1186 if (len < sizeof(struct wmi_tx_pwr_reply))
1187 return -EINVAL;
1188
1189 reply = (struct wmi_tx_pwr_reply *) datap;
1190 ath6kl_txpwr_rx_evt(wmi->parent_dev, reply->dbM);
1191
1192 return 0;
1193}
1194
1195static int ath6kl_wmi_keepalive_reply_rx(struct wmi *wmi, u8 *datap, int len)
1196{
1197 if (len < sizeof(struct wmi_get_keepalive_cmd))
1198 return -EINVAL;
1199
1200 ath6kl_wakeup_event(wmi->parent_dev);
1201
1202 return 0;
1203}
1204
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301205static int ath6kl_wmi_scan_complete_rx(struct wmi *wmi, u8 *datap, int len,
1206 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03001207{
1208 struct wmi_scan_complete_event *ev;
1209
1210 ev = (struct wmi_scan_complete_event *) datap;
1211
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301212 ath6kl_scan_complete_evt(vif, a_sle32_to_cpu(ev->status));
Kalle Valobdcd8172011-07-18 00:22:30 +03001213 wmi->is_probe_ssid = false;
1214
1215 return 0;
1216}
1217
Jouni Malinen86512132011-09-21 16:57:29 +03001218static int ath6kl_wmi_neighbor_report_event_rx(struct wmi *wmi, u8 *datap,
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301219 int len, struct ath6kl_vif *vif)
Jouni Malinen86512132011-09-21 16:57:29 +03001220{
1221 struct wmi_neighbor_report_event *ev;
1222 u8 i;
1223
1224 if (len < sizeof(*ev))
1225 return -EINVAL;
1226 ev = (struct wmi_neighbor_report_event *) datap;
1227 if (sizeof(*ev) + ev->num_neighbors * sizeof(struct wmi_neighbor_info)
1228 > len) {
1229 ath6kl_dbg(ATH6KL_DBG_WMI, "truncated neighbor event "
1230 "(num=%d len=%d)\n", ev->num_neighbors, len);
1231 return -EINVAL;
1232 }
1233 for (i = 0; i < ev->num_neighbors; i++) {
1234 ath6kl_dbg(ATH6KL_DBG_WMI, "neighbor %d/%d - %pM 0x%x\n",
1235 i + 1, ev->num_neighbors, ev->neighbor[i].bssid,
1236 ev->neighbor[i].bss_flags);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301237 cfg80211_pmksa_candidate_notify(vif->ndev, i,
Jouni Malinen86512132011-09-21 16:57:29 +03001238 ev->neighbor[i].bssid,
1239 !!(ev->neighbor[i].bss_flags &
1240 WMI_PREAUTH_CAPABLE_BSS),
1241 GFP_ATOMIC);
1242 }
1243
1244 return 0;
1245}
1246
Kalle Valobdcd8172011-07-18 00:22:30 +03001247/*
1248 * Target is reporting a programming error. This is for
1249 * developer aid only. Target only checks a few common violations
1250 * and it is responsibility of host to do all error checking.
1251 * Behavior of target after wmi error event is undefined.
1252 * A reset is recommended.
1253 */
1254static int ath6kl_wmi_error_event_rx(struct wmi *wmi, u8 *datap, int len)
1255{
1256 const char *type = "unknown error";
1257 struct wmi_cmd_error_event *ev;
1258 ev = (struct wmi_cmd_error_event *) datap;
1259
1260 switch (ev->err_code) {
1261 case INVALID_PARAM:
1262 type = "invalid parameter";
1263 break;
1264 case ILLEGAL_STATE:
1265 type = "invalid state";
1266 break;
1267 case INTERNAL_ERROR:
1268 type = "internal error";
1269 break;
1270 }
1271
1272 ath6kl_dbg(ATH6KL_DBG_WMI, "programming error, cmd=%d %s\n",
1273 ev->cmd_id, type);
1274
1275 return 0;
1276}
1277
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301278static int ath6kl_wmi_stats_event_rx(struct wmi *wmi, u8 *datap, int len,
1279 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03001280{
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301281 ath6kl_tgt_stats_event(vif, datap, len);
Kalle Valobdcd8172011-07-18 00:22:30 +03001282
1283 return 0;
1284}
1285
1286static u8 ath6kl_wmi_get_upper_threshold(s16 rssi,
1287 struct sq_threshold_params *sq_thresh,
1288 u32 size)
1289{
1290 u32 index;
1291 u8 threshold = (u8) sq_thresh->upper_threshold[size - 1];
1292
1293 /* The list is already in sorted order. Get the next lower value */
1294 for (index = 0; index < size; index++) {
1295 if (rssi < sq_thresh->upper_threshold[index]) {
1296 threshold = (u8) sq_thresh->upper_threshold[index];
1297 break;
1298 }
1299 }
1300
1301 return threshold;
1302}
1303
1304static u8 ath6kl_wmi_get_lower_threshold(s16 rssi,
1305 struct sq_threshold_params *sq_thresh,
1306 u32 size)
1307{
1308 u32 index;
1309 u8 threshold = (u8) sq_thresh->lower_threshold[size - 1];
1310
1311 /* The list is already in sorted order. Get the next lower value */
1312 for (index = 0; index < size; index++) {
1313 if (rssi > sq_thresh->lower_threshold[index]) {
1314 threshold = (u8) sq_thresh->lower_threshold[index];
1315 break;
1316 }
1317 }
1318
1319 return threshold;
1320}
1321
1322static int ath6kl_wmi_send_rssi_threshold_params(struct wmi *wmi,
1323 struct wmi_rssi_threshold_params_cmd *rssi_cmd)
1324{
1325 struct sk_buff *skb;
1326 struct wmi_rssi_threshold_params_cmd *cmd;
1327
1328 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1329 if (!skb)
1330 return -ENOMEM;
1331
1332 cmd = (struct wmi_rssi_threshold_params_cmd *) skb->data;
1333 memcpy(cmd, rssi_cmd, sizeof(struct wmi_rssi_threshold_params_cmd));
1334
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301335 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_RSSI_THRESHOLD_PARAMS_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03001336 NO_SYNC_WMIFLAG);
1337}
1338
1339static int ath6kl_wmi_rssi_threshold_event_rx(struct wmi *wmi, u8 *datap,
1340 int len)
1341{
1342 struct wmi_rssi_threshold_event *reply;
1343 struct wmi_rssi_threshold_params_cmd cmd;
1344 struct sq_threshold_params *sq_thresh;
1345 enum wmi_rssi_threshold_val new_threshold;
1346 u8 upper_rssi_threshold, lower_rssi_threshold;
1347 s16 rssi;
1348 int ret;
1349
1350 if (len < sizeof(struct wmi_rssi_threshold_event))
1351 return -EINVAL;
1352
1353 reply = (struct wmi_rssi_threshold_event *) datap;
1354 new_threshold = (enum wmi_rssi_threshold_val) reply->range;
1355 rssi = a_sle16_to_cpu(reply->rssi);
1356
1357 sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_RSSI];
1358
1359 /*
1360 * Identify the threshold breached and communicate that to the app.
1361 * After that install a new set of thresholds based on the signal
1362 * quality reported by the target
1363 */
1364 if (new_threshold) {
1365 /* Upper threshold breached */
1366 if (rssi < sq_thresh->upper_threshold[0]) {
1367 ath6kl_dbg(ATH6KL_DBG_WMI,
1368 "spurious upper rssi threshold event: %d\n",
1369 rssi);
1370 } else if ((rssi < sq_thresh->upper_threshold[1]) &&
1371 (rssi >= sq_thresh->upper_threshold[0])) {
1372 new_threshold = WMI_RSSI_THRESHOLD1_ABOVE;
1373 } else if ((rssi < sq_thresh->upper_threshold[2]) &&
1374 (rssi >= sq_thresh->upper_threshold[1])) {
1375 new_threshold = WMI_RSSI_THRESHOLD2_ABOVE;
1376 } else if ((rssi < sq_thresh->upper_threshold[3]) &&
1377 (rssi >= sq_thresh->upper_threshold[2])) {
1378 new_threshold = WMI_RSSI_THRESHOLD3_ABOVE;
1379 } else if ((rssi < sq_thresh->upper_threshold[4]) &&
1380 (rssi >= sq_thresh->upper_threshold[3])) {
1381 new_threshold = WMI_RSSI_THRESHOLD4_ABOVE;
1382 } else if ((rssi < sq_thresh->upper_threshold[5]) &&
1383 (rssi >= sq_thresh->upper_threshold[4])) {
1384 new_threshold = WMI_RSSI_THRESHOLD5_ABOVE;
1385 } else if (rssi >= sq_thresh->upper_threshold[5]) {
1386 new_threshold = WMI_RSSI_THRESHOLD6_ABOVE;
1387 }
1388 } else {
1389 /* Lower threshold breached */
1390 if (rssi > sq_thresh->lower_threshold[0]) {
1391 ath6kl_dbg(ATH6KL_DBG_WMI,
1392 "spurious lower rssi threshold event: %d %d\n",
1393 rssi, sq_thresh->lower_threshold[0]);
1394 } else if ((rssi > sq_thresh->lower_threshold[1]) &&
1395 (rssi <= sq_thresh->lower_threshold[0])) {
1396 new_threshold = WMI_RSSI_THRESHOLD6_BELOW;
1397 } else if ((rssi > sq_thresh->lower_threshold[2]) &&
1398 (rssi <= sq_thresh->lower_threshold[1])) {
1399 new_threshold = WMI_RSSI_THRESHOLD5_BELOW;
1400 } else if ((rssi > sq_thresh->lower_threshold[3]) &&
1401 (rssi <= sq_thresh->lower_threshold[2])) {
1402 new_threshold = WMI_RSSI_THRESHOLD4_BELOW;
1403 } else if ((rssi > sq_thresh->lower_threshold[4]) &&
1404 (rssi <= sq_thresh->lower_threshold[3])) {
1405 new_threshold = WMI_RSSI_THRESHOLD3_BELOW;
1406 } else if ((rssi > sq_thresh->lower_threshold[5]) &&
1407 (rssi <= sq_thresh->lower_threshold[4])) {
1408 new_threshold = WMI_RSSI_THRESHOLD2_BELOW;
1409 } else if (rssi <= sq_thresh->lower_threshold[5]) {
1410 new_threshold = WMI_RSSI_THRESHOLD1_BELOW;
1411 }
1412 }
1413
1414 /* Calculate and install the next set of thresholds */
1415 lower_rssi_threshold = ath6kl_wmi_get_lower_threshold(rssi, sq_thresh,
1416 sq_thresh->lower_threshold_valid_count);
1417 upper_rssi_threshold = ath6kl_wmi_get_upper_threshold(rssi, sq_thresh,
1418 sq_thresh->upper_threshold_valid_count);
1419
1420 /* Issue a wmi command to install the thresholds */
1421 cmd.thresh_above1_val = a_cpu_to_sle16(upper_rssi_threshold);
1422 cmd.thresh_below1_val = a_cpu_to_sle16(lower_rssi_threshold);
1423 cmd.weight = sq_thresh->weight;
1424 cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval);
1425
1426 ret = ath6kl_wmi_send_rssi_threshold_params(wmi, &cmd);
1427 if (ret) {
1428 ath6kl_err("unable to configure rssi thresholds\n");
1429 return -EIO;
1430 }
1431
1432 return 0;
1433}
1434
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301435static int ath6kl_wmi_cac_event_rx(struct wmi *wmi, u8 *datap, int len,
1436 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03001437{
1438 struct wmi_cac_event *reply;
1439 struct ieee80211_tspec_ie *ts;
1440 u16 active_tsids, tsinfo;
1441 u8 tsid, index;
1442 u8 ts_id;
1443
1444 if (len < sizeof(struct wmi_cac_event))
1445 return -EINVAL;
1446
1447 reply = (struct wmi_cac_event *) datap;
1448
1449 if ((reply->cac_indication == CAC_INDICATION_ADMISSION_RESP) &&
1450 (reply->status_code != IEEE80211_TSPEC_STATUS_ADMISS_ACCEPTED)) {
1451
1452 ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion);
1453 tsinfo = le16_to_cpu(ts->tsinfo);
1454 tsid = (tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) &
1455 IEEE80211_WMM_IE_TSPEC_TID_MASK;
1456
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301457 ath6kl_wmi_delete_pstream_cmd(wmi, vif->fw_vif_idx,
1458 reply->ac, tsid);
Kalle Valobdcd8172011-07-18 00:22:30 +03001459 } else if (reply->cac_indication == CAC_INDICATION_NO_RESP) {
1460 /*
1461 * Following assumes that there is only one outstanding
1462 * ADDTS request when this event is received
1463 */
1464 spin_lock_bh(&wmi->lock);
1465 active_tsids = wmi->stream_exist_for_ac[reply->ac];
1466 spin_unlock_bh(&wmi->lock);
1467
1468 for (index = 0; index < sizeof(active_tsids) * 8; index++) {
1469 if ((active_tsids >> index) & 1)
1470 break;
1471 }
1472 if (index < (sizeof(active_tsids) * 8))
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301473 ath6kl_wmi_delete_pstream_cmd(wmi, vif->fw_vif_idx,
1474 reply->ac, index);
Kalle Valobdcd8172011-07-18 00:22:30 +03001475 }
1476
1477 /*
1478 * Clear active tsids and Add missing handling
1479 * for delete qos stream from AP
1480 */
1481 else if (reply->cac_indication == CAC_INDICATION_DELETE) {
1482
1483 ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion);
1484 tsinfo = le16_to_cpu(ts->tsinfo);
1485 ts_id = ((tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) &
1486 IEEE80211_WMM_IE_TSPEC_TID_MASK);
1487
1488 spin_lock_bh(&wmi->lock);
1489 wmi->stream_exist_for_ac[reply->ac] &= ~(1 << ts_id);
1490 active_tsids = wmi->stream_exist_for_ac[reply->ac];
1491 spin_unlock_bh(&wmi->lock);
1492
1493 /* Indicate stream inactivity to driver layer only if all tsids
1494 * within this AC are deleted.
1495 */
1496 if (!active_tsids) {
1497 ath6kl_indicate_tx_activity(wmi->parent_dev, reply->ac,
1498 false);
1499 wmi->fat_pipe_exist &= ~(1 << reply->ac);
1500 }
1501 }
1502
1503 return 0;
1504}
1505
1506static int ath6kl_wmi_send_snr_threshold_params(struct wmi *wmi,
1507 struct wmi_snr_threshold_params_cmd *snr_cmd)
1508{
1509 struct sk_buff *skb;
1510 struct wmi_snr_threshold_params_cmd *cmd;
1511
1512 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1513 if (!skb)
1514 return -ENOMEM;
1515
1516 cmd = (struct wmi_snr_threshold_params_cmd *) skb->data;
1517 memcpy(cmd, snr_cmd, sizeof(struct wmi_snr_threshold_params_cmd));
1518
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301519 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SNR_THRESHOLD_PARAMS_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03001520 NO_SYNC_WMIFLAG);
1521}
1522
1523static int ath6kl_wmi_snr_threshold_event_rx(struct wmi *wmi, u8 *datap,
1524 int len)
1525{
1526 struct wmi_snr_threshold_event *reply;
1527 struct sq_threshold_params *sq_thresh;
1528 struct wmi_snr_threshold_params_cmd cmd;
1529 enum wmi_snr_threshold_val new_threshold;
1530 u8 upper_snr_threshold, lower_snr_threshold;
1531 s16 snr;
1532 int ret;
1533
1534 if (len < sizeof(struct wmi_snr_threshold_event))
1535 return -EINVAL;
1536
1537 reply = (struct wmi_snr_threshold_event *) datap;
1538
1539 new_threshold = (enum wmi_snr_threshold_val) reply->range;
1540 snr = reply->snr;
1541
1542 sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_SNR];
1543
1544 /*
1545 * Identify the threshold breached and communicate that to the app.
1546 * After that install a new set of thresholds based on the signal
1547 * quality reported by the target.
1548 */
1549 if (new_threshold) {
1550 /* Upper threshold breached */
1551 if (snr < sq_thresh->upper_threshold[0]) {
1552 ath6kl_dbg(ATH6KL_DBG_WMI,
1553 "spurious upper snr threshold event: %d\n",
1554 snr);
1555 } else if ((snr < sq_thresh->upper_threshold[1]) &&
1556 (snr >= sq_thresh->upper_threshold[0])) {
1557 new_threshold = WMI_SNR_THRESHOLD1_ABOVE;
1558 } else if ((snr < sq_thresh->upper_threshold[2]) &&
1559 (snr >= sq_thresh->upper_threshold[1])) {
1560 new_threshold = WMI_SNR_THRESHOLD2_ABOVE;
1561 } else if ((snr < sq_thresh->upper_threshold[3]) &&
1562 (snr >= sq_thresh->upper_threshold[2])) {
1563 new_threshold = WMI_SNR_THRESHOLD3_ABOVE;
1564 } else if (snr >= sq_thresh->upper_threshold[3]) {
1565 new_threshold = WMI_SNR_THRESHOLD4_ABOVE;
1566 }
1567 } else {
1568 /* Lower threshold breached */
1569 if (snr > sq_thresh->lower_threshold[0]) {
1570 ath6kl_dbg(ATH6KL_DBG_WMI,
1571 "spurious lower snr threshold event: %d\n",
1572 sq_thresh->lower_threshold[0]);
1573 } else if ((snr > sq_thresh->lower_threshold[1]) &&
1574 (snr <= sq_thresh->lower_threshold[0])) {
1575 new_threshold = WMI_SNR_THRESHOLD4_BELOW;
1576 } else if ((snr > sq_thresh->lower_threshold[2]) &&
1577 (snr <= sq_thresh->lower_threshold[1])) {
1578 new_threshold = WMI_SNR_THRESHOLD3_BELOW;
1579 } else if ((snr > sq_thresh->lower_threshold[3]) &&
1580 (snr <= sq_thresh->lower_threshold[2])) {
1581 new_threshold = WMI_SNR_THRESHOLD2_BELOW;
1582 } else if (snr <= sq_thresh->lower_threshold[3]) {
1583 new_threshold = WMI_SNR_THRESHOLD1_BELOW;
1584 }
1585 }
1586
1587 /* Calculate and install the next set of thresholds */
1588 lower_snr_threshold = ath6kl_wmi_get_lower_threshold(snr, sq_thresh,
1589 sq_thresh->lower_threshold_valid_count);
1590 upper_snr_threshold = ath6kl_wmi_get_upper_threshold(snr, sq_thresh,
1591 sq_thresh->upper_threshold_valid_count);
1592
1593 /* Issue a wmi command to install the thresholds */
1594 cmd.thresh_above1_val = upper_snr_threshold;
1595 cmd.thresh_below1_val = lower_snr_threshold;
1596 cmd.weight = sq_thresh->weight;
1597 cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval);
1598
1599 ath6kl_dbg(ATH6KL_DBG_WMI,
1600 "snr: %d, threshold: %d, lower: %d, upper: %d\n",
1601 snr, new_threshold,
1602 lower_snr_threshold, upper_snr_threshold);
1603
1604 ret = ath6kl_wmi_send_snr_threshold_params(wmi, &cmd);
1605 if (ret) {
1606 ath6kl_err("unable to configure snr threshold\n");
1607 return -EIO;
1608 }
1609
1610 return 0;
1611}
1612
1613static int ath6kl_wmi_aplist_event_rx(struct wmi *wmi, u8 *datap, int len)
1614{
1615 u16 ap_info_entry_size;
1616 struct wmi_aplist_event *ev = (struct wmi_aplist_event *) datap;
1617 struct wmi_ap_info_v1 *ap_info_v1;
1618 u8 index;
1619
1620 if (len < sizeof(struct wmi_aplist_event) ||
1621 ev->ap_list_ver != APLIST_VER1)
1622 return -EINVAL;
1623
1624 ap_info_entry_size = sizeof(struct wmi_ap_info_v1);
1625 ap_info_v1 = (struct wmi_ap_info_v1 *) ev->ap_list;
1626
1627 ath6kl_dbg(ATH6KL_DBG_WMI,
1628 "number of APs in aplist event: %d\n", ev->num_ap);
1629
1630 if (len < (int) (sizeof(struct wmi_aplist_event) +
1631 (ev->num_ap - 1) * ap_info_entry_size))
1632 return -EINVAL;
1633
1634 /* AP list version 1 contents */
1635 for (index = 0; index < ev->num_ap; index++) {
1636 ath6kl_dbg(ATH6KL_DBG_WMI, "AP#%d BSSID %pM Channel %d\n",
1637 index, ap_info_v1->bssid, ap_info_v1->channel);
1638 ap_info_v1++;
1639 }
1640
1641 return 0;
1642}
1643
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301644int ath6kl_wmi_cmd_send(struct wmi *wmi, u8 if_idx, struct sk_buff *skb,
Kalle Valobdcd8172011-07-18 00:22:30 +03001645 enum wmi_cmd_id cmd_id, enum wmi_sync_flag sync_flag)
1646{
1647 struct wmi_cmd_hdr *cmd_hdr;
1648 enum htc_endpoint_id ep_id = wmi->ep_id;
1649 int ret;
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301650 u16 info1;
Kalle Valobdcd8172011-07-18 00:22:30 +03001651
Kalle Valo71f96ee2011-11-14 19:31:30 +02001652 if (WARN_ON(skb == NULL || (if_idx > (wmi->parent_dev->vif_max - 1))))
Kalle Valobdcd8172011-07-18 00:22:30 +03001653 return -EINVAL;
1654
Kalle Valob9b6ee62011-09-27 14:31:21 +03001655 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi tx id %d len %d flag %d\n",
1656 cmd_id, skb->len, sync_flag);
1657 ath6kl_dbg_dump(ATH6KL_DBG_WMI_DUMP, NULL, "wmi tx ",
1658 skb->data, skb->len);
1659
Kalle Valobdcd8172011-07-18 00:22:30 +03001660 if (sync_flag >= END_WMIFLAG) {
1661 dev_kfree_skb(skb);
1662 return -EINVAL;
1663 }
1664
1665 if ((sync_flag == SYNC_BEFORE_WMIFLAG) ||
1666 (sync_flag == SYNC_BOTH_WMIFLAG)) {
1667 /*
1668 * Make sure all data currently queued is transmitted before
1669 * the cmd execution. Establish a new sync point.
1670 */
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301671 ath6kl_wmi_sync_point(wmi, if_idx);
Kalle Valobdcd8172011-07-18 00:22:30 +03001672 }
1673
1674 skb_push(skb, sizeof(struct wmi_cmd_hdr));
1675
1676 cmd_hdr = (struct wmi_cmd_hdr *) skb->data;
1677 cmd_hdr->cmd_id = cpu_to_le16(cmd_id);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301678 info1 = if_idx & WMI_CMD_HDR_IF_ID_MASK;
1679 cmd_hdr->info1 = cpu_to_le16(info1);
Kalle Valobdcd8172011-07-18 00:22:30 +03001680
1681 /* Only for OPT_TX_CMD, use BE endpoint. */
1682 if (cmd_id == WMI_OPT_TX_FRAME_CMDID) {
1683 ret = ath6kl_wmi_data_hdr_add(wmi, skb, OPT_MSGTYPE,
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +05301684 false, false, 0, NULL, if_idx);
Kalle Valobdcd8172011-07-18 00:22:30 +03001685 if (ret) {
1686 dev_kfree_skb(skb);
1687 return ret;
1688 }
1689 ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev, WMM_AC_BE);
1690 }
1691
1692 ath6kl_control_tx(wmi->parent_dev, skb, ep_id);
1693
1694 if ((sync_flag == SYNC_AFTER_WMIFLAG) ||
1695 (sync_flag == SYNC_BOTH_WMIFLAG)) {
1696 /*
1697 * Make sure all new data queued waits for the command to
1698 * execute. Establish a new sync point.
1699 */
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301700 ath6kl_wmi_sync_point(wmi, if_idx);
Kalle Valobdcd8172011-07-18 00:22:30 +03001701 }
1702
1703 return 0;
1704}
1705
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301706int ath6kl_wmi_connect_cmd(struct wmi *wmi, u8 if_idx,
1707 enum network_type nw_type,
Kalle Valobdcd8172011-07-18 00:22:30 +03001708 enum dot11_auth_mode dot11_auth_mode,
1709 enum auth_mode auth_mode,
1710 enum crypto_type pairwise_crypto,
1711 u8 pairwise_crypto_len,
1712 enum crypto_type group_crypto,
1713 u8 group_crypto_len, int ssid_len, u8 *ssid,
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08001714 u8 *bssid, u16 channel, u32 ctrl_flags,
1715 u8 nw_subtype)
Kalle Valobdcd8172011-07-18 00:22:30 +03001716{
1717 struct sk_buff *skb;
1718 struct wmi_connect_cmd *cc;
1719 int ret;
1720
Kalle Valob9b6ee62011-09-27 14:31:21 +03001721 ath6kl_dbg(ATH6KL_DBG_WMI,
1722 "wmi connect bssid %pM freq %d flags 0x%x ssid_len %d "
1723 "type %d dot11_auth %d auth %d pairwise %d group %d\n",
1724 bssid, channel, ctrl_flags, ssid_len, nw_type,
1725 dot11_auth_mode, auth_mode, pairwise_crypto, group_crypto);
1726 ath6kl_dbg_dump(ATH6KL_DBG_WMI, NULL, "ssid ", ssid, ssid_len);
1727
Kalle Valobdcd8172011-07-18 00:22:30 +03001728 wmi->traffic_class = 100;
1729
1730 if ((pairwise_crypto == NONE_CRYPT) && (group_crypto != NONE_CRYPT))
1731 return -EINVAL;
1732
1733 if ((pairwise_crypto != NONE_CRYPT) && (group_crypto == NONE_CRYPT))
1734 return -EINVAL;
1735
1736 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_connect_cmd));
1737 if (!skb)
1738 return -ENOMEM;
1739
1740 cc = (struct wmi_connect_cmd *) skb->data;
1741
1742 if (ssid_len)
1743 memcpy(cc->ssid, ssid, ssid_len);
1744
1745 cc->ssid_len = ssid_len;
1746 cc->nw_type = nw_type;
1747 cc->dot11_auth_mode = dot11_auth_mode;
1748 cc->auth_mode = auth_mode;
1749 cc->prwise_crypto_type = pairwise_crypto;
1750 cc->prwise_crypto_len = pairwise_crypto_len;
1751 cc->grp_crypto_type = group_crypto;
1752 cc->grp_crypto_len = group_crypto_len;
1753 cc->ch = cpu_to_le16(channel);
1754 cc->ctrl_flags = cpu_to_le32(ctrl_flags);
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08001755 cc->nw_subtype = nw_subtype;
Kalle Valobdcd8172011-07-18 00:22:30 +03001756
1757 if (bssid != NULL)
1758 memcpy(cc->bssid, bssid, ETH_ALEN);
1759
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301760 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_CONNECT_CMDID,
1761 NO_SYNC_WMIFLAG);
Kalle Valobdcd8172011-07-18 00:22:30 +03001762
1763 return ret;
1764}
1765
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301766int ath6kl_wmi_reconnect_cmd(struct wmi *wmi, u8 if_idx, u8 *bssid,
1767 u16 channel)
Kalle Valobdcd8172011-07-18 00:22:30 +03001768{
1769 struct sk_buff *skb;
1770 struct wmi_reconnect_cmd *cc;
1771 int ret;
1772
Kalle Valob9b6ee62011-09-27 14:31:21 +03001773 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi reconnect bssid %pM freq %d\n",
1774 bssid, channel);
1775
Kalle Valobdcd8172011-07-18 00:22:30 +03001776 wmi->traffic_class = 100;
1777
1778 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_reconnect_cmd));
1779 if (!skb)
1780 return -ENOMEM;
1781
1782 cc = (struct wmi_reconnect_cmd *) skb->data;
1783 cc->channel = cpu_to_le16(channel);
1784
1785 if (bssid != NULL)
1786 memcpy(cc->bssid, bssid, ETH_ALEN);
1787
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301788 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_RECONNECT_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03001789 NO_SYNC_WMIFLAG);
1790
1791 return ret;
1792}
1793
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301794int ath6kl_wmi_disconnect_cmd(struct wmi *wmi, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +03001795{
1796 int ret;
1797
Kalle Valob9b6ee62011-09-27 14:31:21 +03001798 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi disconnect\n");
1799
Kalle Valobdcd8172011-07-18 00:22:30 +03001800 wmi->traffic_class = 100;
1801
1802 /* Disconnect command does not need to do a SYNC before. */
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301803 ret = ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_DISCONNECT_CMDID);
Kalle Valobdcd8172011-07-18 00:22:30 +03001804
1805 return ret;
1806}
1807
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08001808int ath6kl_wmi_beginscan_cmd(struct wmi *wmi, u8 if_idx,
1809 enum wmi_scan_type scan_type,
1810 u32 force_fgscan, u32 is_legacy,
1811 u32 home_dwell_time, u32 force_scan_interval,
1812 s8 num_chan, u16 *ch_list, u32 no_cck, u32 *rates)
1813{
1814 struct sk_buff *skb;
1815 struct wmi_begin_scan_cmd *sc;
1816 s8 size;
1817 int i, band, ret;
1818 struct ath6kl *ar = wmi->parent_dev;
1819 int num_rates;
1820
1821 size = sizeof(struct wmi_begin_scan_cmd);
1822
1823 if ((scan_type != WMI_LONG_SCAN) && (scan_type != WMI_SHORT_SCAN))
1824 return -EINVAL;
1825
1826 if (num_chan > WMI_MAX_CHANNELS)
1827 return -EINVAL;
1828
1829 if (num_chan)
1830 size += sizeof(u16) * (num_chan - 1);
1831
1832 skb = ath6kl_wmi_get_new_buf(size);
1833 if (!skb)
1834 return -ENOMEM;
1835
1836 sc = (struct wmi_begin_scan_cmd *) skb->data;
1837 sc->scan_type = scan_type;
1838 sc->force_fg_scan = cpu_to_le32(force_fgscan);
1839 sc->is_legacy = cpu_to_le32(is_legacy);
1840 sc->home_dwell_time = cpu_to_le32(home_dwell_time);
1841 sc->force_scan_intvl = cpu_to_le32(force_scan_interval);
1842 sc->no_cck = cpu_to_le32(no_cck);
1843 sc->num_ch = num_chan;
1844
1845 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1846 struct ieee80211_supported_band *sband =
1847 ar->wiphy->bands[band];
1848 u32 ratemask = rates[band];
1849 u8 *supp_rates = sc->supp_rates[band].rates;
1850 num_rates = 0;
1851
1852 for (i = 0; i < sband->n_bitrates; i++) {
1853 if ((BIT(i) & ratemask) == 0)
1854 continue; /* skip rate */
1855 supp_rates[num_rates++] =
1856 (u8) (sband->bitrates[i].bitrate / 5);
1857 }
1858 sc->supp_rates[band].nrates = num_rates;
1859 }
1860
1861 for (i = 0; i < num_chan; i++)
1862 sc->ch_list[i] = cpu_to_le16(ch_list[i]);
1863
1864 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_BEGIN_SCAN_CMDID,
1865 NO_SYNC_WMIFLAG);
1866
1867 return ret;
1868}
1869
1870/* ath6kl_wmi_start_scan_cmd is to be deprecated. Use
1871 * ath6kl_wmi_begin_scan_cmd instead. The new function supports P2P
1872 * mgmt operations using station interface.
1873 */
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301874int ath6kl_wmi_startscan_cmd(struct wmi *wmi, u8 if_idx,
1875 enum wmi_scan_type scan_type,
Kalle Valobdcd8172011-07-18 00:22:30 +03001876 u32 force_fgscan, u32 is_legacy,
1877 u32 home_dwell_time, u32 force_scan_interval,
1878 s8 num_chan, u16 *ch_list)
1879{
1880 struct sk_buff *skb;
1881 struct wmi_start_scan_cmd *sc;
1882 s8 size;
Edward Lu1276c9e2011-08-30 21:58:00 +03001883 int i, ret;
Kalle Valobdcd8172011-07-18 00:22:30 +03001884
1885 size = sizeof(struct wmi_start_scan_cmd);
1886
1887 if ((scan_type != WMI_LONG_SCAN) && (scan_type != WMI_SHORT_SCAN))
1888 return -EINVAL;
1889
1890 if (num_chan > WMI_MAX_CHANNELS)
1891 return -EINVAL;
1892
1893 if (num_chan)
1894 size += sizeof(u16) * (num_chan - 1);
1895
1896 skb = ath6kl_wmi_get_new_buf(size);
1897 if (!skb)
1898 return -ENOMEM;
1899
1900 sc = (struct wmi_start_scan_cmd *) skb->data;
1901 sc->scan_type = scan_type;
1902 sc->force_fg_scan = cpu_to_le32(force_fgscan);
1903 sc->is_legacy = cpu_to_le32(is_legacy);
1904 sc->home_dwell_time = cpu_to_le32(home_dwell_time);
1905 sc->force_scan_intvl = cpu_to_le32(force_scan_interval);
1906 sc->num_ch = num_chan;
1907
Edward Lu1276c9e2011-08-30 21:58:00 +03001908 for (i = 0; i < num_chan; i++)
1909 sc->ch_list[i] = cpu_to_le16(ch_list[i]);
Kalle Valobdcd8172011-07-18 00:22:30 +03001910
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301911 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_START_SCAN_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03001912 NO_SYNC_WMIFLAG);
1913
1914 return ret;
1915}
1916
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301917int ath6kl_wmi_scanparams_cmd(struct wmi *wmi, u8 if_idx,
1918 u16 fg_start_sec,
Kalle Valobdcd8172011-07-18 00:22:30 +03001919 u16 fg_end_sec, u16 bg_sec,
1920 u16 minact_chdw_msec, u16 maxact_chdw_msec,
1921 u16 pas_chdw_msec, u8 short_scan_ratio,
1922 u8 scan_ctrl_flag, u32 max_dfsch_act_time,
1923 u16 maxact_scan_per_ssid)
1924{
1925 struct sk_buff *skb;
1926 struct wmi_scan_params_cmd *sc;
1927 int ret;
1928
1929 skb = ath6kl_wmi_get_new_buf(sizeof(*sc));
1930 if (!skb)
1931 return -ENOMEM;
1932
1933 sc = (struct wmi_scan_params_cmd *) skb->data;
1934 sc->fg_start_period = cpu_to_le16(fg_start_sec);
1935 sc->fg_end_period = cpu_to_le16(fg_end_sec);
1936 sc->bg_period = cpu_to_le16(bg_sec);
1937 sc->minact_chdwell_time = cpu_to_le16(minact_chdw_msec);
1938 sc->maxact_chdwell_time = cpu_to_le16(maxact_chdw_msec);
1939 sc->pas_chdwell_time = cpu_to_le16(pas_chdw_msec);
1940 sc->short_scan_ratio = short_scan_ratio;
1941 sc->scan_ctrl_flags = scan_ctrl_flag;
1942 sc->max_dfsch_act_time = cpu_to_le32(max_dfsch_act_time);
1943 sc->maxact_scan_per_ssid = cpu_to_le16(maxact_scan_per_ssid);
1944
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301945 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_SCAN_PARAMS_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03001946 NO_SYNC_WMIFLAG);
1947 return ret;
1948}
1949
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301950int ath6kl_wmi_bssfilter_cmd(struct wmi *wmi, u8 if_idx, u8 filter, u32 ie_mask)
Kalle Valobdcd8172011-07-18 00:22:30 +03001951{
1952 struct sk_buff *skb;
1953 struct wmi_bss_filter_cmd *cmd;
1954 int ret;
1955
1956 if (filter >= LAST_BSS_FILTER)
1957 return -EINVAL;
1958
1959 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1960 if (!skb)
1961 return -ENOMEM;
1962
1963 cmd = (struct wmi_bss_filter_cmd *) skb->data;
1964 cmd->bss_filter = filter;
1965 cmd->ie_mask = cpu_to_le32(ie_mask);
1966
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301967 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_BSS_FILTER_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03001968 NO_SYNC_WMIFLAG);
1969 return ret;
1970}
1971
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301972int ath6kl_wmi_probedssid_cmd(struct wmi *wmi, u8 if_idx, u8 index, u8 flag,
Kalle Valobdcd8172011-07-18 00:22:30 +03001973 u8 ssid_len, u8 *ssid)
1974{
1975 struct sk_buff *skb;
1976 struct wmi_probed_ssid_cmd *cmd;
1977 int ret;
1978
1979 if (index > MAX_PROBED_SSID_INDEX)
1980 return -EINVAL;
1981
1982 if (ssid_len > sizeof(cmd->ssid))
1983 return -EINVAL;
1984
1985 if ((flag & (DISABLE_SSID_FLAG | ANY_SSID_FLAG)) && (ssid_len > 0))
1986 return -EINVAL;
1987
1988 if ((flag & SPECIFIC_SSID_FLAG) && !ssid_len)
1989 return -EINVAL;
1990
1991 if (flag & SPECIFIC_SSID_FLAG)
1992 wmi->is_probe_ssid = true;
1993
1994 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1995 if (!skb)
1996 return -ENOMEM;
1997
1998 cmd = (struct wmi_probed_ssid_cmd *) skb->data;
1999 cmd->entry_index = index;
2000 cmd->flag = flag;
2001 cmd->ssid_len = ssid_len;
2002 memcpy(cmd->ssid, ssid, ssid_len);
2003
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302004 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_PROBED_SSID_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002005 NO_SYNC_WMIFLAG);
2006 return ret;
2007}
2008
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302009int ath6kl_wmi_listeninterval_cmd(struct wmi *wmi, u8 if_idx,
2010 u16 listen_interval,
Kalle Valobdcd8172011-07-18 00:22:30 +03002011 u16 listen_beacons)
2012{
2013 struct sk_buff *skb;
2014 struct wmi_listen_int_cmd *cmd;
2015 int ret;
2016
2017 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2018 if (!skb)
2019 return -ENOMEM;
2020
2021 cmd = (struct wmi_listen_int_cmd *) skb->data;
2022 cmd->listen_intvl = cpu_to_le16(listen_interval);
2023 cmd->num_beacons = cpu_to_le16(listen_beacons);
2024
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302025 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_LISTEN_INT_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002026 NO_SYNC_WMIFLAG);
2027 return ret;
2028}
2029
Raja Manice0dc0c2012-02-20 19:08:08 +05302030int ath6kl_wmi_bmisstime_cmd(struct wmi *wmi, u8 if_idx,
2031 u16 bmiss_time, u16 num_beacons)
2032{
2033 struct sk_buff *skb;
2034 struct wmi_bmiss_time_cmd *cmd;
2035 int ret;
2036
2037 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2038 if (!skb)
2039 return -ENOMEM;
2040
2041 cmd = (struct wmi_bmiss_time_cmd *) skb->data;
2042 cmd->bmiss_time = cpu_to_le16(bmiss_time);
2043 cmd->num_beacons = cpu_to_le16(num_beacons);
2044
2045 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_BMISS_TIME_CMDID,
2046 NO_SYNC_WMIFLAG);
2047 return ret;
2048}
2049
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302050int ath6kl_wmi_powermode_cmd(struct wmi *wmi, u8 if_idx, u8 pwr_mode)
Kalle Valobdcd8172011-07-18 00:22:30 +03002051{
2052 struct sk_buff *skb;
2053 struct wmi_power_mode_cmd *cmd;
2054 int ret;
2055
2056 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2057 if (!skb)
2058 return -ENOMEM;
2059
2060 cmd = (struct wmi_power_mode_cmd *) skb->data;
2061 cmd->pwr_mode = pwr_mode;
2062 wmi->pwr_mode = pwr_mode;
2063
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302064 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_POWER_MODE_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002065 NO_SYNC_WMIFLAG);
2066 return ret;
2067}
2068
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302069int ath6kl_wmi_pmparams_cmd(struct wmi *wmi, u8 if_idx, u16 idle_period,
Kalle Valobdcd8172011-07-18 00:22:30 +03002070 u16 ps_poll_num, u16 dtim_policy,
2071 u16 tx_wakeup_policy, u16 num_tx_to_wakeup,
2072 u16 ps_fail_event_policy)
2073{
2074 struct sk_buff *skb;
2075 struct wmi_power_params_cmd *pm;
2076 int ret;
2077
2078 skb = ath6kl_wmi_get_new_buf(sizeof(*pm));
2079 if (!skb)
2080 return -ENOMEM;
2081
2082 pm = (struct wmi_power_params_cmd *)skb->data;
2083 pm->idle_period = cpu_to_le16(idle_period);
2084 pm->pspoll_number = cpu_to_le16(ps_poll_num);
2085 pm->dtim_policy = cpu_to_le16(dtim_policy);
2086 pm->tx_wakeup_policy = cpu_to_le16(tx_wakeup_policy);
2087 pm->num_tx_to_wakeup = cpu_to_le16(num_tx_to_wakeup);
2088 pm->ps_fail_event_policy = cpu_to_le16(ps_fail_event_policy);
2089
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302090 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_POWER_PARAMS_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002091 NO_SYNC_WMIFLAG);
2092 return ret;
2093}
2094
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302095int ath6kl_wmi_disctimeout_cmd(struct wmi *wmi, u8 if_idx, u8 timeout)
Kalle Valobdcd8172011-07-18 00:22:30 +03002096{
2097 struct sk_buff *skb;
2098 struct wmi_disc_timeout_cmd *cmd;
2099 int ret;
2100
2101 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2102 if (!skb)
2103 return -ENOMEM;
2104
2105 cmd = (struct wmi_disc_timeout_cmd *) skb->data;
2106 cmd->discon_timeout = timeout;
2107
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302108 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_DISC_TIMEOUT_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002109 NO_SYNC_WMIFLAG);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302110
Jouni Malinenff0b0072011-10-11 17:31:56 +03002111 if (ret == 0)
2112 ath6kl_debug_set_disconnect_timeout(wmi->parent_dev, timeout);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302113
Kalle Valobdcd8172011-07-18 00:22:30 +03002114 return ret;
2115}
2116
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302117int ath6kl_wmi_addkey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index,
Kalle Valobdcd8172011-07-18 00:22:30 +03002118 enum crypto_type key_type,
2119 u8 key_usage, u8 key_len,
Jouni Malinenf4bb9a62011-11-02 23:45:55 +02002120 u8 *key_rsc, unsigned int key_rsc_len,
2121 u8 *key_material,
Kalle Valobdcd8172011-07-18 00:22:30 +03002122 u8 key_op_ctrl, u8 *mac_addr,
2123 enum wmi_sync_flag sync_flag)
2124{
2125 struct sk_buff *skb;
2126 struct wmi_add_cipher_key_cmd *cmd;
2127 int ret;
2128
Jouni Malinen9a5b1312011-08-30 21:57:52 +03002129 ath6kl_dbg(ATH6KL_DBG_WMI, "addkey cmd: key_index=%u key_type=%d "
2130 "key_usage=%d key_len=%d key_op_ctrl=%d\n",
2131 key_index, key_type, key_usage, key_len, key_op_ctrl);
2132
Kalle Valobdcd8172011-07-18 00:22:30 +03002133 if ((key_index > WMI_MAX_KEY_INDEX) || (key_len > WMI_MAX_KEY_LEN) ||
Jouni Malinenf4bb9a62011-11-02 23:45:55 +02002134 (key_material == NULL) || key_rsc_len > 8)
Kalle Valobdcd8172011-07-18 00:22:30 +03002135 return -EINVAL;
2136
2137 if ((WEP_CRYPT != key_type) && (NULL == key_rsc))
2138 return -EINVAL;
2139
2140 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2141 if (!skb)
2142 return -ENOMEM;
2143
2144 cmd = (struct wmi_add_cipher_key_cmd *) skb->data;
2145 cmd->key_index = key_index;
2146 cmd->key_type = key_type;
2147 cmd->key_usage = key_usage;
2148 cmd->key_len = key_len;
2149 memcpy(cmd->key, key_material, key_len);
2150
2151 if (key_rsc != NULL)
Jouni Malinenf4bb9a62011-11-02 23:45:55 +02002152 memcpy(cmd->key_rsc, key_rsc, key_rsc_len);
Kalle Valobdcd8172011-07-18 00:22:30 +03002153
2154 cmd->key_op_ctrl = key_op_ctrl;
2155
2156 if (mac_addr)
2157 memcpy(cmd->key_mac_addr, mac_addr, ETH_ALEN);
2158
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302159 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_CIPHER_KEY_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002160 sync_flag);
2161
2162 return ret;
2163}
2164
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302165int ath6kl_wmi_add_krk_cmd(struct wmi *wmi, u8 if_idx, u8 *krk)
Kalle Valobdcd8172011-07-18 00:22:30 +03002166{
2167 struct sk_buff *skb;
2168 struct wmi_add_krk_cmd *cmd;
2169 int ret;
2170
2171 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2172 if (!skb)
2173 return -ENOMEM;
2174
2175 cmd = (struct wmi_add_krk_cmd *) skb->data;
2176 memcpy(cmd->krk, krk, WMI_KRK_LEN);
2177
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302178 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_KRK_CMDID,
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302179 NO_SYNC_WMIFLAG);
Kalle Valobdcd8172011-07-18 00:22:30 +03002180
2181 return ret;
2182}
2183
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302184int ath6kl_wmi_deletekey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index)
Kalle Valobdcd8172011-07-18 00:22:30 +03002185{
2186 struct sk_buff *skb;
2187 struct wmi_delete_cipher_key_cmd *cmd;
2188 int ret;
2189
2190 if (key_index > WMI_MAX_KEY_INDEX)
2191 return -EINVAL;
2192
2193 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2194 if (!skb)
2195 return -ENOMEM;
2196
2197 cmd = (struct wmi_delete_cipher_key_cmd *) skb->data;
2198 cmd->key_index = key_index;
2199
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302200 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DELETE_CIPHER_KEY_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002201 NO_SYNC_WMIFLAG);
2202
2203 return ret;
2204}
2205
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302206int ath6kl_wmi_setpmkid_cmd(struct wmi *wmi, u8 if_idx, const u8 *bssid,
Kalle Valobdcd8172011-07-18 00:22:30 +03002207 const u8 *pmkid, bool set)
2208{
2209 struct sk_buff *skb;
2210 struct wmi_setpmkid_cmd *cmd;
2211 int ret;
2212
2213 if (bssid == NULL)
2214 return -EINVAL;
2215
2216 if (set && pmkid == NULL)
2217 return -EINVAL;
2218
2219 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2220 if (!skb)
2221 return -ENOMEM;
2222
2223 cmd = (struct wmi_setpmkid_cmd *) skb->data;
2224 memcpy(cmd->bssid, bssid, ETH_ALEN);
2225 if (set) {
2226 memcpy(cmd->pmkid, pmkid, sizeof(cmd->pmkid));
2227 cmd->enable = PMKID_ENABLE;
2228 } else {
2229 memset(cmd->pmkid, 0, sizeof(cmd->pmkid));
2230 cmd->enable = PMKID_DISABLE;
2231 }
2232
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302233 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_PMKID_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002234 NO_SYNC_WMIFLAG);
2235
2236 return ret;
2237}
2238
2239static int ath6kl_wmi_data_sync_send(struct wmi *wmi, struct sk_buff *skb,
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +05302240 enum htc_endpoint_id ep_id, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +03002241{
2242 struct wmi_data_hdr *data_hdr;
2243 int ret;
2244
2245 if (WARN_ON(skb == NULL || ep_id == wmi->ep_id))
2246 return -EINVAL;
2247
2248 skb_push(skb, sizeof(struct wmi_data_hdr));
2249
2250 data_hdr = (struct wmi_data_hdr *) skb->data;
2251 data_hdr->info = SYNC_MSGTYPE << WMI_DATA_HDR_MSG_TYPE_SHIFT;
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +05302252 data_hdr->info3 = cpu_to_le16(if_idx & WMI_DATA_HDR_IF_IDX_MASK);
Kalle Valobdcd8172011-07-18 00:22:30 +03002253
2254 ret = ath6kl_control_tx(wmi->parent_dev, skb, ep_id);
2255
2256 return ret;
2257}
2258
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302259static int ath6kl_wmi_sync_point(struct wmi *wmi, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +03002260{
2261 struct sk_buff *skb;
2262 struct wmi_sync_cmd *cmd;
2263 struct wmi_data_sync_bufs data_sync_bufs[WMM_NUM_AC];
2264 enum htc_endpoint_id ep_id;
2265 u8 index, num_pri_streams = 0;
2266 int ret = 0;
2267
2268 memset(data_sync_bufs, 0, sizeof(data_sync_bufs));
2269
2270 spin_lock_bh(&wmi->lock);
2271
2272 for (index = 0; index < WMM_NUM_AC; index++) {
2273 if (wmi->fat_pipe_exist & (1 << index)) {
2274 num_pri_streams++;
2275 data_sync_bufs[num_pri_streams - 1].traffic_class =
2276 index;
2277 }
2278 }
2279
2280 spin_unlock_bh(&wmi->lock);
2281
2282 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2283 if (!skb) {
2284 ret = -ENOMEM;
2285 goto free_skb;
2286 }
2287
2288 cmd = (struct wmi_sync_cmd *) skb->data;
2289
2290 /*
2291 * In the SYNC cmd sent on the control Ep, send a bitmap
2292 * of the data eps on which the Data Sync will be sent
2293 */
2294 cmd->data_sync_map = wmi->fat_pipe_exist;
2295
2296 for (index = 0; index < num_pri_streams; index++) {
2297 data_sync_bufs[index].skb = ath6kl_buf_alloc(0);
2298 if (data_sync_bufs[index].skb == NULL) {
2299 ret = -ENOMEM;
2300 break;
2301 }
2302 }
2303
2304 /*
2305 * If buffer allocation for any of the dataSync fails,
2306 * then do not send the Synchronize cmd on the control ep
2307 */
2308 if (ret)
2309 goto free_skb;
2310
2311 /*
2312 * Send sync cmd followed by sync data messages on all
2313 * endpoints being used
2314 */
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302315 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SYNCHRONIZE_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002316 NO_SYNC_WMIFLAG);
2317
2318 if (ret)
2319 goto free_skb;
2320
2321 /* cmd buffer sent, we no longer own it */
2322 skb = NULL;
2323
2324 for (index = 0; index < num_pri_streams; index++) {
2325
2326 if (WARN_ON(!data_sync_bufs[index].skb))
2327 break;
2328
2329 ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev,
2330 data_sync_bufs[index].
2331 traffic_class);
2332 ret =
2333 ath6kl_wmi_data_sync_send(wmi, data_sync_bufs[index].skb,
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +05302334 ep_id, if_idx);
Kalle Valobdcd8172011-07-18 00:22:30 +03002335
2336 if (ret)
2337 break;
2338
2339 data_sync_bufs[index].skb = NULL;
2340 }
2341
2342free_skb:
2343 /* free up any resources left over (possibly due to an error) */
2344 if (skb)
2345 dev_kfree_skb(skb);
2346
2347 for (index = 0; index < num_pri_streams; index++) {
2348 if (data_sync_bufs[index].skb != NULL) {
2349 dev_kfree_skb((struct sk_buff *)data_sync_bufs[index].
2350 skb);
2351 }
2352 }
2353
2354 return ret;
2355}
2356
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302357int ath6kl_wmi_create_pstream_cmd(struct wmi *wmi, u8 if_idx,
Kalle Valobdcd8172011-07-18 00:22:30 +03002358 struct wmi_create_pstream_cmd *params)
2359{
2360 struct sk_buff *skb;
2361 struct wmi_create_pstream_cmd *cmd;
2362 u8 fatpipe_exist_for_ac = 0;
2363 s32 min_phy = 0;
2364 s32 nominal_phy = 0;
2365 int ret;
2366
2367 if (!((params->user_pri < 8) &&
2368 (params->user_pri <= 0x7) &&
2369 (up_to_ac[params->user_pri & 0x7] == params->traffic_class) &&
2370 (params->traffic_direc == UPLINK_TRAFFIC ||
2371 params->traffic_direc == DNLINK_TRAFFIC ||
2372 params->traffic_direc == BIDIR_TRAFFIC) &&
2373 (params->traffic_type == TRAFFIC_TYPE_APERIODIC ||
2374 params->traffic_type == TRAFFIC_TYPE_PERIODIC) &&
2375 (params->voice_psc_cap == DISABLE_FOR_THIS_AC ||
2376 params->voice_psc_cap == ENABLE_FOR_THIS_AC ||
2377 params->voice_psc_cap == ENABLE_FOR_ALL_AC) &&
2378 (params->tsid == WMI_IMPLICIT_PSTREAM ||
2379 params->tsid <= WMI_MAX_THINSTREAM))) {
2380 return -EINVAL;
2381 }
2382
2383 /*
2384 * Check nominal PHY rate is >= minimalPHY,
2385 * so that DUT can allow TSRS IE
2386 */
2387
2388 /* Get the physical rate (units of bps) */
2389 min_phy = ((le32_to_cpu(params->min_phy_rate) / 1000) / 1000);
2390
2391 /* Check minimal phy < nominal phy rate */
2392 if (params->nominal_phy >= min_phy) {
2393 /* unit of 500 kbps */
2394 nominal_phy = (params->nominal_phy * 1000) / 500;
2395 ath6kl_dbg(ATH6KL_DBG_WMI,
2396 "TSRS IE enabled::MinPhy %x->NominalPhy ===> %x\n",
2397 min_phy, nominal_phy);
2398
2399 params->nominal_phy = nominal_phy;
2400 } else {
2401 params->nominal_phy = 0;
2402 }
2403
2404 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2405 if (!skb)
2406 return -ENOMEM;
2407
2408 ath6kl_dbg(ATH6KL_DBG_WMI,
2409 "sending create_pstream_cmd: ac=%d tsid:%d\n",
2410 params->traffic_class, params->tsid);
2411
2412 cmd = (struct wmi_create_pstream_cmd *) skb->data;
2413 memcpy(cmd, params, sizeof(*cmd));
2414
2415 /* This is an implicitly created Fat pipe */
2416 if ((u32) params->tsid == (u32) WMI_IMPLICIT_PSTREAM) {
2417 spin_lock_bh(&wmi->lock);
2418 fatpipe_exist_for_ac = (wmi->fat_pipe_exist &
2419 (1 << params->traffic_class));
2420 wmi->fat_pipe_exist |= (1 << params->traffic_class);
2421 spin_unlock_bh(&wmi->lock);
2422 } else {
2423 /* explicitly created thin stream within a fat pipe */
2424 spin_lock_bh(&wmi->lock);
2425 fatpipe_exist_for_ac = (wmi->fat_pipe_exist &
2426 (1 << params->traffic_class));
2427 wmi->stream_exist_for_ac[params->traffic_class] |=
2428 (1 << params->tsid);
2429 /*
2430 * If a thinstream becomes active, the fat pipe automatically
2431 * becomes active
2432 */
2433 wmi->fat_pipe_exist |= (1 << params->traffic_class);
2434 spin_unlock_bh(&wmi->lock);
2435 }
2436
2437 /*
2438 * Indicate activty change to driver layer only if this is the
2439 * first TSID to get created in this AC explicitly or an implicit
2440 * fat pipe is getting created.
2441 */
2442 if (!fatpipe_exist_for_ac)
2443 ath6kl_indicate_tx_activity(wmi->parent_dev,
2444 params->traffic_class, true);
2445
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302446 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_CREATE_PSTREAM_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002447 NO_SYNC_WMIFLAG);
2448 return ret;
2449}
2450
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302451int ath6kl_wmi_delete_pstream_cmd(struct wmi *wmi, u8 if_idx, u8 traffic_class,
2452 u8 tsid)
Kalle Valobdcd8172011-07-18 00:22:30 +03002453{
2454 struct sk_buff *skb;
2455 struct wmi_delete_pstream_cmd *cmd;
2456 u16 active_tsids = 0;
2457 int ret;
2458
2459 if (traffic_class > 3) {
2460 ath6kl_err("invalid traffic class: %d\n", traffic_class);
2461 return -EINVAL;
2462 }
2463
2464 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2465 if (!skb)
2466 return -ENOMEM;
2467
2468 cmd = (struct wmi_delete_pstream_cmd *) skb->data;
2469 cmd->traffic_class = traffic_class;
2470 cmd->tsid = tsid;
2471
2472 spin_lock_bh(&wmi->lock);
2473 active_tsids = wmi->stream_exist_for_ac[traffic_class];
2474 spin_unlock_bh(&wmi->lock);
2475
2476 if (!(active_tsids & (1 << tsid))) {
2477 dev_kfree_skb(skb);
2478 ath6kl_dbg(ATH6KL_DBG_WMI,
2479 "TSID %d doesn't exist for traffic class: %d\n",
2480 tsid, traffic_class);
2481 return -ENODATA;
2482 }
2483
2484 ath6kl_dbg(ATH6KL_DBG_WMI,
2485 "sending delete_pstream_cmd: traffic class: %d tsid=%d\n",
2486 traffic_class, tsid);
2487
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302488 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DELETE_PSTREAM_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002489 SYNC_BEFORE_WMIFLAG);
2490
2491 spin_lock_bh(&wmi->lock);
2492 wmi->stream_exist_for_ac[traffic_class] &= ~(1 << tsid);
2493 active_tsids = wmi->stream_exist_for_ac[traffic_class];
2494 spin_unlock_bh(&wmi->lock);
2495
2496 /*
2497 * Indicate stream inactivity to driver layer only if all tsids
2498 * within this AC are deleted.
2499 */
2500 if (!active_tsids) {
2501 ath6kl_indicate_tx_activity(wmi->parent_dev,
2502 traffic_class, false);
2503 wmi->fat_pipe_exist &= ~(1 << traffic_class);
2504 }
2505
2506 return ret;
2507}
2508
Raja Manica1d16a2011-12-16 14:24:23 +05302509int ath6kl_wmi_set_ip_cmd(struct wmi *wmi, u8 if_idx,
2510 __be32 ips0, __be32 ips1)
Kalle Valobdcd8172011-07-18 00:22:30 +03002511{
2512 struct sk_buff *skb;
2513 struct wmi_set_ip_cmd *cmd;
2514 int ret;
2515
2516 /* Multicast address are not valid */
Raja Manica1d16a2011-12-16 14:24:23 +05302517 if (ipv4_is_multicast(ips0) ||
2518 ipv4_is_multicast(ips1))
Kalle Valobdcd8172011-07-18 00:22:30 +03002519 return -EINVAL;
2520
2521 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_ip_cmd));
2522 if (!skb)
2523 return -ENOMEM;
2524
2525 cmd = (struct wmi_set_ip_cmd *) skb->data;
Raja Manica1d16a2011-12-16 14:24:23 +05302526 cmd->ips[0] = ips0;
2527 cmd->ips[1] = ips1;
Kalle Valobdcd8172011-07-18 00:22:30 +03002528
Raja Manica1d16a2011-12-16 14:24:23 +05302529 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_IP_CMDID,
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302530 NO_SYNC_WMIFLAG);
Kalle Valobdcd8172011-07-18 00:22:30 +03002531 return ret;
2532}
2533
Raja Mani45cf1102011-11-07 22:52:45 +02002534static void ath6kl_wmi_relinquish_implicit_pstream_credits(struct wmi *wmi)
2535{
2536 u16 active_tsids;
2537 u8 stream_exist;
2538 int i;
2539
2540 /*
2541 * Relinquish credits from all implicitly created pstreams
2542 * since when we go to sleep. If user created explicit
2543 * thinstreams exists with in a fatpipe leave them intact
2544 * for the user to delete.
2545 */
2546 spin_lock_bh(&wmi->lock);
2547 stream_exist = wmi->fat_pipe_exist;
2548 spin_unlock_bh(&wmi->lock);
2549
2550 for (i = 0; i < WMM_NUM_AC; i++) {
2551 if (stream_exist & (1 << i)) {
2552
2553 /*
2554 * FIXME: Is this lock & unlock inside
2555 * for loop correct? may need rework.
2556 */
2557 spin_lock_bh(&wmi->lock);
2558 active_tsids = wmi->stream_exist_for_ac[i];
2559 spin_unlock_bh(&wmi->lock);
2560
2561 /*
2562 * If there are no user created thin streams
2563 * delete the fatpipe
2564 */
2565 if (!active_tsids) {
2566 stream_exist &= ~(1 << i);
2567 /*
2568 * Indicate inactivity to driver layer for
2569 * this fatpipe (pstream)
2570 */
2571 ath6kl_indicate_tx_activity(wmi->parent_dev,
2572 i, false);
2573 }
2574 }
2575 }
2576
2577 /* FIXME: Can we do this assignment without locking ? */
2578 spin_lock_bh(&wmi->lock);
2579 wmi->fat_pipe_exist = stream_exist;
2580 spin_unlock_bh(&wmi->lock);
2581}
2582
2583int ath6kl_wmi_set_host_sleep_mode_cmd(struct wmi *wmi, u8 if_idx,
2584 enum ath6kl_host_mode host_mode)
2585{
2586 struct sk_buff *skb;
2587 struct wmi_set_host_sleep_mode_cmd *cmd;
2588 int ret;
2589
2590 if ((host_mode != ATH6KL_HOST_MODE_ASLEEP) &&
2591 (host_mode != ATH6KL_HOST_MODE_AWAKE)) {
2592 ath6kl_err("invalid host sleep mode: %d\n", host_mode);
2593 return -EINVAL;
2594 }
2595
2596 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2597 if (!skb)
2598 return -ENOMEM;
2599
2600 cmd = (struct wmi_set_host_sleep_mode_cmd *) skb->data;
2601
2602 if (host_mode == ATH6KL_HOST_MODE_ASLEEP) {
2603 ath6kl_wmi_relinquish_implicit_pstream_credits(wmi);
2604 cmd->asleep = cpu_to_le32(1);
2605 } else
2606 cmd->awake = cpu_to_le32(1);
2607
2608 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb,
2609 WMI_SET_HOST_SLEEP_MODE_CMDID,
2610 NO_SYNC_WMIFLAG);
2611 return ret;
2612}
2613
Raja Mani081c7a82012-01-30 17:13:11 +05302614/* This command has zero length payload */
2615static int ath6kl_wmi_host_sleep_mode_cmd_prcd_evt_rx(struct wmi *wmi,
2616 struct ath6kl_vif *vif)
2617{
2618 struct ath6kl *ar = wmi->parent_dev;
2619
2620 set_bit(HOST_SLEEP_MODE_CMD_PROCESSED, &vif->flags);
2621 wake_up(&ar->event_wq);
2622
2623 return 0;
2624}
2625
Raja Mani45cf1102011-11-07 22:52:45 +02002626int ath6kl_wmi_set_wow_mode_cmd(struct wmi *wmi, u8 if_idx,
2627 enum ath6kl_wow_mode wow_mode,
2628 u32 filter, u16 host_req_delay)
2629{
2630 struct sk_buff *skb;
2631 struct wmi_set_wow_mode_cmd *cmd;
2632 int ret;
2633
2634 if ((wow_mode != ATH6KL_WOW_MODE_ENABLE) &&
2635 wow_mode != ATH6KL_WOW_MODE_DISABLE) {
2636 ath6kl_err("invalid wow mode: %d\n", wow_mode);
2637 return -EINVAL;
2638 }
2639
2640 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2641 if (!skb)
2642 return -ENOMEM;
2643
2644 cmd = (struct wmi_set_wow_mode_cmd *) skb->data;
2645 cmd->enable_wow = cpu_to_le32(wow_mode);
2646 cmd->filter = cpu_to_le32(filter);
2647 cmd->host_req_delay = cpu_to_le16(host_req_delay);
2648
2649 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_WOW_MODE_CMDID,
2650 NO_SYNC_WMIFLAG);
2651 return ret;
2652}
2653
Raja Mani5c9b4fa12011-11-07 22:52:45 +02002654int ath6kl_wmi_add_wow_pattern_cmd(struct wmi *wmi, u8 if_idx,
2655 u8 list_id, u8 filter_size,
Raja Manid91e8ee2012-01-30 17:13:10 +05302656 u8 filter_offset, const u8 *filter,
2657 const u8 *mask)
Raja Mani5c9b4fa12011-11-07 22:52:45 +02002658{
2659 struct sk_buff *skb;
2660 struct wmi_add_wow_pattern_cmd *cmd;
2661 u16 size;
2662 u8 *filter_mask;
2663 int ret;
2664
2665 /*
2666 * Allocate additional memory in the buffer to hold
2667 * filter and mask value, which is twice of filter_size.
2668 */
2669 size = sizeof(*cmd) + (2 * filter_size);
2670
2671 skb = ath6kl_wmi_get_new_buf(size);
2672 if (!skb)
2673 return -ENOMEM;
2674
2675 cmd = (struct wmi_add_wow_pattern_cmd *) skb->data;
2676 cmd->filter_list_id = list_id;
2677 cmd->filter_size = filter_size;
2678 cmd->filter_offset = filter_offset;
2679
2680 memcpy(cmd->filter, filter, filter_size);
2681
2682 filter_mask = (u8 *) (cmd->filter + filter_size);
2683 memcpy(filter_mask, mask, filter_size);
2684
2685 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_WOW_PATTERN_CMDID,
2686 NO_SYNC_WMIFLAG);
2687
2688 return ret;
2689}
2690
2691int ath6kl_wmi_del_wow_pattern_cmd(struct wmi *wmi, u8 if_idx,
2692 u16 list_id, u16 filter_id)
2693{
2694 struct sk_buff *skb;
2695 struct wmi_del_wow_pattern_cmd *cmd;
2696 int ret;
2697
2698 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2699 if (!skb)
2700 return -ENOMEM;
2701
2702 cmd = (struct wmi_del_wow_pattern_cmd *) skb->data;
2703 cmd->filter_list_id = cpu_to_le16(list_id);
2704 cmd->filter_id = cpu_to_le16(filter_id);
2705
2706 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DEL_WOW_PATTERN_CMDID,
2707 NO_SYNC_WMIFLAG);
2708 return ret;
2709}
2710
Kalle Valobdcd8172011-07-18 00:22:30 +03002711static int ath6kl_wmi_cmd_send_xtnd(struct wmi *wmi, struct sk_buff *skb,
2712 enum wmix_command_id cmd_id,
2713 enum wmi_sync_flag sync_flag)
2714{
2715 struct wmix_cmd_hdr *cmd_hdr;
2716 int ret;
2717
2718 skb_push(skb, sizeof(struct wmix_cmd_hdr));
2719
2720 cmd_hdr = (struct wmix_cmd_hdr *) skb->data;
2721 cmd_hdr->cmd_id = cpu_to_le32(cmd_id);
2722
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302723 ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_EXTENSION_CMDID, sync_flag);
Kalle Valobdcd8172011-07-18 00:22:30 +03002724
2725 return ret;
2726}
2727
2728int ath6kl_wmi_get_challenge_resp_cmd(struct wmi *wmi, u32 cookie, u32 source)
2729{
2730 struct sk_buff *skb;
2731 struct wmix_hb_challenge_resp_cmd *cmd;
2732 int ret;
2733
2734 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2735 if (!skb)
2736 return -ENOMEM;
2737
2738 cmd = (struct wmix_hb_challenge_resp_cmd *) skb->data;
2739 cmd->cookie = cpu_to_le32(cookie);
2740 cmd->source = cpu_to_le32(source);
2741
2742 ret = ath6kl_wmi_cmd_send_xtnd(wmi, skb, WMIX_HB_CHALLENGE_RESP_CMDID,
2743 NO_SYNC_WMIFLAG);
2744 return ret;
2745}
2746
Kalle Valo939f1cc2011-09-02 10:32:04 +03002747int ath6kl_wmi_config_debug_module_cmd(struct wmi *wmi, u32 valid, u32 config)
2748{
2749 struct ath6kl_wmix_dbglog_cfg_module_cmd *cmd;
2750 struct sk_buff *skb;
2751 int ret;
2752
2753 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2754 if (!skb)
2755 return -ENOMEM;
2756
2757 cmd = (struct ath6kl_wmix_dbglog_cfg_module_cmd *) skb->data;
2758 cmd->valid = cpu_to_le32(valid);
2759 cmd->config = cpu_to_le32(config);
2760
2761 ret = ath6kl_wmi_cmd_send_xtnd(wmi, skb, WMIX_DBGLOG_CFG_MODULE_CMDID,
2762 NO_SYNC_WMIFLAG);
2763 return ret;
2764}
2765
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302766int ath6kl_wmi_get_stats_cmd(struct wmi *wmi, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +03002767{
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302768 return ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_GET_STATISTICS_CMDID);
Kalle Valobdcd8172011-07-18 00:22:30 +03002769}
2770
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05302771int ath6kl_wmi_set_tx_pwr_cmd(struct wmi *wmi, u8 if_idx, u8 dbM)
Kalle Valobdcd8172011-07-18 00:22:30 +03002772{
2773 struct sk_buff *skb;
2774 struct wmi_set_tx_pwr_cmd *cmd;
2775 int ret;
2776
2777 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_tx_pwr_cmd));
2778 if (!skb)
2779 return -ENOMEM;
2780
2781 cmd = (struct wmi_set_tx_pwr_cmd *) skb->data;
2782 cmd->dbM = dbM;
2783
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05302784 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_TX_PWR_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002785 NO_SYNC_WMIFLAG);
2786
2787 return ret;
2788}
2789
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05302790int ath6kl_wmi_get_tx_pwr_cmd(struct wmi *wmi, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +03002791{
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05302792 return ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_GET_TX_PWR_CMDID);
Kalle Valobdcd8172011-07-18 00:22:30 +03002793}
2794
Jouni Malinen4b28a802011-10-11 17:31:54 +03002795int ath6kl_wmi_get_roam_tbl_cmd(struct wmi *wmi)
2796{
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302797 return ath6kl_wmi_simple_cmd(wmi, 0, WMI_GET_ROAM_TBL_CMDID);
Jouni Malinen4b28a802011-10-11 17:31:54 +03002798}
2799
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302800int ath6kl_wmi_set_lpreamble_cmd(struct wmi *wmi, u8 if_idx, u8 status,
2801 u8 preamble_policy)
Kalle Valobdcd8172011-07-18 00:22:30 +03002802{
2803 struct sk_buff *skb;
2804 struct wmi_set_lpreamble_cmd *cmd;
2805 int ret;
2806
2807 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_lpreamble_cmd));
2808 if (!skb)
2809 return -ENOMEM;
2810
2811 cmd = (struct wmi_set_lpreamble_cmd *) skb->data;
2812 cmd->status = status;
2813 cmd->preamble_policy = preamble_policy;
2814
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302815 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_LPREAMBLE_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002816 NO_SYNC_WMIFLAG);
2817 return ret;
2818}
2819
2820int ath6kl_wmi_set_rts_cmd(struct wmi *wmi, u16 threshold)
2821{
2822 struct sk_buff *skb;
2823 struct wmi_set_rts_cmd *cmd;
2824 int ret;
2825
2826 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_rts_cmd));
2827 if (!skb)
2828 return -ENOMEM;
2829
2830 cmd = (struct wmi_set_rts_cmd *) skb->data;
2831 cmd->threshold = cpu_to_le16(threshold);
2832
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302833 ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_RTS_CMDID,
2834 NO_SYNC_WMIFLAG);
Kalle Valobdcd8172011-07-18 00:22:30 +03002835 return ret;
2836}
2837
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302838int ath6kl_wmi_set_wmm_txop(struct wmi *wmi, u8 if_idx, enum wmi_txop_cfg cfg)
Kalle Valobdcd8172011-07-18 00:22:30 +03002839{
2840 struct sk_buff *skb;
2841 struct wmi_set_wmm_txop_cmd *cmd;
2842 int ret;
2843
2844 if (!((cfg == WMI_TXOP_DISABLED) || (cfg == WMI_TXOP_ENABLED)))
2845 return -EINVAL;
2846
2847 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_wmm_txop_cmd));
2848 if (!skb)
2849 return -ENOMEM;
2850
2851 cmd = (struct wmi_set_wmm_txop_cmd *) skb->data;
2852 cmd->txop_enable = cfg;
2853
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302854 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_WMM_TXOP_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002855 NO_SYNC_WMIFLAG);
2856 return ret;
2857}
2858
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302859int ath6kl_wmi_set_keepalive_cmd(struct wmi *wmi, u8 if_idx,
2860 u8 keep_alive_intvl)
Kalle Valobdcd8172011-07-18 00:22:30 +03002861{
2862 struct sk_buff *skb;
2863 struct wmi_set_keepalive_cmd *cmd;
2864 int ret;
2865
2866 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2867 if (!skb)
2868 return -ENOMEM;
2869
2870 cmd = (struct wmi_set_keepalive_cmd *) skb->data;
2871 cmd->keep_alive_intvl = keep_alive_intvl;
Kalle Valobdcd8172011-07-18 00:22:30 +03002872
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302873 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_KEEPALIVE_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002874 NO_SYNC_WMIFLAG);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302875
Jouni Malinenff0b0072011-10-11 17:31:56 +03002876 if (ret == 0)
2877 ath6kl_debug_set_keepalive(wmi->parent_dev, keep_alive_intvl);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302878
Kalle Valobdcd8172011-07-18 00:22:30 +03002879 return ret;
2880}
2881
Kalle Valo003353b0d2011-09-01 10:14:21 +03002882int ath6kl_wmi_test_cmd(struct wmi *wmi, void *buf, size_t len)
2883{
2884 struct sk_buff *skb;
2885 int ret;
2886
2887 skb = ath6kl_wmi_get_new_buf(len);
2888 if (!skb)
2889 return -ENOMEM;
2890
2891 memcpy(skb->data, buf, len);
2892
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302893 ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_TEST_CMDID, NO_SYNC_WMIFLAG);
Kalle Valo003353b0d2011-09-01 10:14:21 +03002894
2895 return ret;
2896}
2897
Vasanthakumar Thiagarajan3f3c4ee2012-01-03 14:41:59 +05302898int ath6kl_wmi_mcast_filter_cmd(struct wmi *wmi, u8 if_idx, bool mc_all_on)
2899{
2900 struct sk_buff *skb;
2901 struct wmi_mcast_filter_cmd *cmd;
2902 int ret;
2903
2904 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2905 if (!skb)
2906 return -ENOMEM;
2907
2908 cmd = (struct wmi_mcast_filter_cmd *) skb->data;
2909 cmd->mcast_all_enable = mc_all_on;
2910
2911 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_MCAST_FILTER_CMDID,
2912 NO_SYNC_WMIFLAG);
2913 return ret;
2914}
Kalle Valo003353b0d2011-09-01 10:14:21 +03002915
Vasanthakumar Thiagarajanf914edd2012-01-03 14:42:00 +05302916int ath6kl_wmi_add_del_mcast_filter_cmd(struct wmi *wmi, u8 if_idx,
2917 u8 *filter, bool add_filter)
2918{
2919 struct sk_buff *skb;
2920 struct wmi_mcast_filter_add_del_cmd *cmd;
2921 int ret;
2922
2923 if ((filter[0] != 0x33 || filter[1] != 0x33) &&
2924 (filter[0] != 0x01 || filter[1] != 0x00 ||
2925 filter[2] != 0x5e || filter[3] > 0x7f)) {
2926 ath6kl_warn("invalid multicast filter address\n");
2927 return -EINVAL;
2928 }
2929
2930 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2931 if (!skb)
2932 return -ENOMEM;
2933
2934 cmd = (struct wmi_mcast_filter_add_del_cmd *) skb->data;
2935 memcpy(cmd->mcast_mac, filter, ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE);
2936 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb,
2937 add_filter ? WMI_SET_MCAST_FILTER_CMDID :
2938 WMI_DEL_MCAST_FILTER_CMDID,
2939 NO_SYNC_WMIFLAG);
2940
2941 return ret;
2942}
2943
Kalle Valobdcd8172011-07-18 00:22:30 +03002944s32 ath6kl_wmi_get_rate(s8 rate_index)
2945{
2946 if (rate_index == RATE_AUTO)
2947 return 0;
2948
2949 return wmi_rate_tbl[(u32) rate_index][0];
2950}
2951
Kalle Valobdcd8172011-07-18 00:22:30 +03002952static int ath6kl_wmi_get_pmkid_list_event_rx(struct wmi *wmi, u8 *datap,
2953 u32 len)
2954{
2955 struct wmi_pmkid_list_reply *reply;
2956 u32 expected_len;
2957
2958 if (len < sizeof(struct wmi_pmkid_list_reply))
2959 return -EINVAL;
2960
2961 reply = (struct wmi_pmkid_list_reply *)datap;
2962 expected_len = sizeof(reply->num_pmkid) +
2963 le32_to_cpu(reply->num_pmkid) * WMI_PMKID_LEN;
2964
2965 if (len < expected_len)
2966 return -EINVAL;
2967
2968 return 0;
2969}
2970
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302971static int ath6kl_wmi_addba_req_event_rx(struct wmi *wmi, u8 *datap, int len,
2972 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03002973{
2974 struct wmi_addba_req_event *cmd = (struct wmi_addba_req_event *) datap;
2975
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302976 aggr_recv_addba_req_evt(vif, cmd->tid,
Kalle Valobdcd8172011-07-18 00:22:30 +03002977 le16_to_cpu(cmd->st_seq_no), cmd->win_sz);
2978
2979 return 0;
2980}
2981
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302982static int ath6kl_wmi_delba_req_event_rx(struct wmi *wmi, u8 *datap, int len,
2983 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03002984{
2985 struct wmi_delba_event *cmd = (struct wmi_delba_event *) datap;
2986
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302987 aggr_recv_delba_req_evt(vif, cmd->tid);
Kalle Valobdcd8172011-07-18 00:22:30 +03002988
2989 return 0;
2990}
2991
2992/* AP mode functions */
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03002993
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302994int ath6kl_wmi_ap_profile_commit(struct wmi *wmip, u8 if_idx,
2995 struct wmi_connect_cmd *p)
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03002996{
2997 struct sk_buff *skb;
2998 struct wmi_connect_cmd *cm;
2999 int res;
3000
3001 skb = ath6kl_wmi_get_new_buf(sizeof(*cm));
3002 if (!skb)
3003 return -ENOMEM;
3004
3005 cm = (struct wmi_connect_cmd *) skb->data;
3006 memcpy(cm, p, sizeof(*cm));
3007
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303008 res = ath6kl_wmi_cmd_send(wmip, if_idx, skb, WMI_AP_CONFIG_COMMIT_CMDID,
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03003009 NO_SYNC_WMIFLAG);
3010 ath6kl_dbg(ATH6KL_DBG_WMI, "%s: nw_type=%u auth_mode=%u ch=%u "
3011 "ctrl_flags=0x%x-> res=%d\n",
3012 __func__, p->nw_type, p->auth_mode, le16_to_cpu(p->ch),
3013 le32_to_cpu(p->ctrl_flags), res);
3014 return res;
3015}
3016
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303017int ath6kl_wmi_ap_set_mlme(struct wmi *wmip, u8 if_idx, u8 cmd, const u8 *mac,
3018 u16 reason)
Jouni Malinen23875132011-08-30 21:57:53 +03003019{
3020 struct sk_buff *skb;
3021 struct wmi_ap_set_mlme_cmd *cm;
3022
3023 skb = ath6kl_wmi_get_new_buf(sizeof(*cm));
3024 if (!skb)
3025 return -ENOMEM;
3026
3027 cm = (struct wmi_ap_set_mlme_cmd *) skb->data;
3028 memcpy(cm->mac, mac, ETH_ALEN);
3029 cm->reason = cpu_to_le16(reason);
3030 cm->cmd = cmd;
3031
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303032 return ath6kl_wmi_cmd_send(wmip, if_idx, skb, WMI_AP_SET_MLME_CMDID,
Jouni Malinen23875132011-08-30 21:57:53 +03003033 NO_SYNC_WMIFLAG);
3034}
3035
Thomas Pedersen67cd22e2012-02-28 15:08:46 -08003036int ath6kl_wmi_ap_hidden_ssid(struct wmi *wmi, u8 if_idx, bool enable)
3037{
3038 struct sk_buff *skb;
3039 struct wmi_ap_hidden_ssid_cmd *cmd;
3040
3041 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3042 if (!skb)
3043 return -ENOMEM;
3044
3045 cmd = (struct wmi_ap_hidden_ssid_cmd *) skb->data;
3046 cmd->hidden_ssid = enable ? 1 : 0;
3047
3048 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_HIDDEN_SSID_CMDID,
3049 NO_SYNC_WMIFLAG);
3050}
3051
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +05303052/* This command will be used to enable/disable AP uAPSD feature */
3053int ath6kl_wmi_ap_set_apsd(struct wmi *wmi, u8 if_idx, u8 enable)
3054{
3055 struct wmi_ap_set_apsd_cmd *cmd;
3056 struct sk_buff *skb;
3057
3058 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3059 if (!skb)
3060 return -ENOMEM;
3061
3062 cmd = (struct wmi_ap_set_apsd_cmd *)skb->data;
3063 cmd->enable = enable;
3064
3065 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_SET_APSD_CMDID,
3066 NO_SYNC_WMIFLAG);
3067}
3068
3069int ath6kl_wmi_set_apsd_bfrd_traf(struct wmi *wmi, u8 if_idx,
3070 u16 aid, u16 bitmap, u32 flags)
3071{
3072 struct wmi_ap_apsd_buffered_traffic_cmd *cmd;
3073 struct sk_buff *skb;
3074
3075 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3076 if (!skb)
3077 return -ENOMEM;
3078
3079 cmd = (struct wmi_ap_apsd_buffered_traffic_cmd *)skb->data;
3080 cmd->aid = cpu_to_le16(aid);
3081 cmd->bitmap = cpu_to_le16(bitmap);
3082 cmd->flags = cpu_to_le32(flags);
3083
3084 return ath6kl_wmi_cmd_send(wmi, if_idx, skb,
3085 WMI_AP_APSD_BUFFERED_TRAFFIC_CMDID,
3086 NO_SYNC_WMIFLAG);
3087}
3088
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303089static int ath6kl_wmi_pspoll_event_rx(struct wmi *wmi, u8 *datap, int len,
3090 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03003091{
3092 struct wmi_pspoll_event *ev;
3093
3094 if (len < sizeof(struct wmi_pspoll_event))
3095 return -EINVAL;
3096
3097 ev = (struct wmi_pspoll_event *) datap;
3098
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303099 ath6kl_pspoll_event(vif, le16_to_cpu(ev->aid));
Kalle Valobdcd8172011-07-18 00:22:30 +03003100
3101 return 0;
3102}
3103
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303104static int ath6kl_wmi_dtimexpiry_event_rx(struct wmi *wmi, u8 *datap, int len,
3105 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03003106{
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303107 ath6kl_dtimexpiry_event(vif);
Kalle Valobdcd8172011-07-18 00:22:30 +03003108
3109 return 0;
3110}
3111
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303112int ath6kl_wmi_set_pvb_cmd(struct wmi *wmi, u8 if_idx, u16 aid,
3113 bool flag)
Kalle Valobdcd8172011-07-18 00:22:30 +03003114{
3115 struct sk_buff *skb;
3116 struct wmi_ap_set_pvb_cmd *cmd;
3117 int ret;
3118
3119 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_ap_set_pvb_cmd));
3120 if (!skb)
3121 return -ENOMEM;
3122
3123 cmd = (struct wmi_ap_set_pvb_cmd *) skb->data;
3124 cmd->aid = cpu_to_le16(aid);
Jouni Malinend6e51e62011-09-05 17:38:44 +03003125 cmd->rsvd = cpu_to_le16(0);
Kalle Valobdcd8172011-07-18 00:22:30 +03003126 cmd->flag = cpu_to_le32(flag);
3127
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303128 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_SET_PVB_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03003129 NO_SYNC_WMIFLAG);
3130
3131 return 0;
3132}
3133
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303134int ath6kl_wmi_set_rx_frame_format_cmd(struct wmi *wmi, u8 if_idx,
3135 u8 rx_meta_ver,
Kalle Valobdcd8172011-07-18 00:22:30 +03003136 bool rx_dot11_hdr, bool defrag_on_host)
3137{
3138 struct sk_buff *skb;
3139 struct wmi_rx_frame_format_cmd *cmd;
3140 int ret;
3141
3142 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3143 if (!skb)
3144 return -ENOMEM;
3145
3146 cmd = (struct wmi_rx_frame_format_cmd *) skb->data;
3147 cmd->dot11_hdr = rx_dot11_hdr ? 1 : 0;
3148 cmd->defrag_on_host = defrag_on_host ? 1 : 0;
3149 cmd->meta_ver = rx_meta_ver;
3150
3151 /* Delete the local aggr state, on host */
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303152 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_RX_FRAME_FORMAT_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03003153 NO_SYNC_WMIFLAG);
3154
3155 return ret;
3156}
3157
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303158int ath6kl_wmi_set_appie_cmd(struct wmi *wmi, u8 if_idx, u8 mgmt_frm_type,
3159 const u8 *ie, u8 ie_len)
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03003160{
3161 struct sk_buff *skb;
3162 struct wmi_set_appie_cmd *p;
3163
3164 skb = ath6kl_wmi_get_new_buf(sizeof(*p) + ie_len);
3165 if (!skb)
3166 return -ENOMEM;
3167
3168 ath6kl_dbg(ATH6KL_DBG_WMI, "set_appie_cmd: mgmt_frm_type=%u "
3169 "ie_len=%u\n", mgmt_frm_type, ie_len);
3170 p = (struct wmi_set_appie_cmd *) skb->data;
3171 p->mgmt_frm_type = mgmt_frm_type;
3172 p->ie_len = ie_len;
Kalle Valo10509f92011-12-13 14:52:07 +02003173
3174 if (ie != NULL && ie_len > 0)
3175 memcpy(p->ie_info, ie, ie_len);
3176
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303177 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_APPIE_CMDID,
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03003178 NO_SYNC_WMIFLAG);
3179}
3180
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003181int ath6kl_wmi_disable_11b_rates_cmd(struct wmi *wmi, bool disable)
3182{
3183 struct sk_buff *skb;
3184 struct wmi_disable_11b_rates_cmd *cmd;
3185
3186 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3187 if (!skb)
3188 return -ENOMEM;
3189
3190 ath6kl_dbg(ATH6KL_DBG_WMI, "disable_11b_rates_cmd: disable=%u\n",
3191 disable);
3192 cmd = (struct wmi_disable_11b_rates_cmd *) skb->data;
3193 cmd->disable = disable ? 1 : 0;
3194
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303195 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_DISABLE_11B_RATES_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003196 NO_SYNC_WMIFLAG);
3197}
3198
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303199int ath6kl_wmi_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx, u32 freq, u32 dur)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003200{
3201 struct sk_buff *skb;
3202 struct wmi_remain_on_chnl_cmd *p;
3203
3204 skb = ath6kl_wmi_get_new_buf(sizeof(*p));
3205 if (!skb)
3206 return -ENOMEM;
3207
3208 ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl_cmd: freq=%u dur=%u\n",
3209 freq, dur);
3210 p = (struct wmi_remain_on_chnl_cmd *) skb->data;
3211 p->freq = cpu_to_le32(freq);
3212 p->duration = cpu_to_le32(dur);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303213 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_REMAIN_ON_CHNL_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003214 NO_SYNC_WMIFLAG);
3215}
3216
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08003217/* ath6kl_wmi_send_action_cmd is to be deprecated. Use
3218 * ath6kl_wmi_send_mgmt_cmd instead. The new function supports P2P
3219 * mgmt operations using station interface.
3220 */
Naveen Gangadharand0ff7382012-02-08 17:51:36 -08003221static int ath6kl_wmi_send_action_cmd(struct wmi *wmi, u8 if_idx, u32 id,
3222 u32 freq, u32 wait, const u8 *data,
3223 u16 data_len)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003224{
3225 struct sk_buff *skb;
3226 struct wmi_send_action_cmd *p;
Jouni Malinena0df5db2011-08-30 21:58:02 +03003227 u8 *buf;
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003228
3229 if (wait)
3230 return -EINVAL; /* Offload for wait not supported */
3231
Jouni Malinena0df5db2011-08-30 21:58:02 +03003232 buf = kmalloc(data_len, GFP_KERNEL);
3233 if (!buf)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003234 return -ENOMEM;
3235
Jouni Malinena0df5db2011-08-30 21:58:02 +03003236 skb = ath6kl_wmi_get_new_buf(sizeof(*p) + data_len);
3237 if (!skb) {
3238 kfree(buf);
3239 return -ENOMEM;
3240 }
3241
3242 kfree(wmi->last_mgmt_tx_frame);
Aarthi Thiruvengadam3101ede2011-10-27 09:35:56 -07003243 memcpy(buf, data, data_len);
Jouni Malinena0df5db2011-08-30 21:58:02 +03003244 wmi->last_mgmt_tx_frame = buf;
3245 wmi->last_mgmt_tx_frame_len = data_len;
3246
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003247 ath6kl_dbg(ATH6KL_DBG_WMI, "send_action_cmd: id=%u freq=%u wait=%u "
3248 "len=%u\n", id, freq, wait, data_len);
3249 p = (struct wmi_send_action_cmd *) skb->data;
3250 p->id = cpu_to_le32(id);
3251 p->freq = cpu_to_le32(freq);
3252 p->wait = cpu_to_le32(wait);
3253 p->len = cpu_to_le16(data_len);
3254 memcpy(p->data, data, data_len);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303255 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SEND_ACTION_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003256 NO_SYNC_WMIFLAG);
3257}
3258
Naveen Gangadharand0ff7382012-02-08 17:51:36 -08003259static int __ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id,
3260 u32 freq, u32 wait, const u8 *data,
3261 u16 data_len, u32 no_cck)
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08003262{
3263 struct sk_buff *skb;
3264 struct wmi_send_mgmt_cmd *p;
3265 u8 *buf;
3266
3267 if (wait)
3268 return -EINVAL; /* Offload for wait not supported */
3269
3270 buf = kmalloc(data_len, GFP_KERNEL);
3271 if (!buf)
3272 return -ENOMEM;
3273
3274 skb = ath6kl_wmi_get_new_buf(sizeof(*p) + data_len);
3275 if (!skb) {
3276 kfree(buf);
3277 return -ENOMEM;
3278 }
3279
3280 kfree(wmi->last_mgmt_tx_frame);
3281 memcpy(buf, data, data_len);
3282 wmi->last_mgmt_tx_frame = buf;
3283 wmi->last_mgmt_tx_frame_len = data_len;
3284
3285 ath6kl_dbg(ATH6KL_DBG_WMI, "send_action_cmd: id=%u freq=%u wait=%u "
3286 "len=%u\n", id, freq, wait, data_len);
3287 p = (struct wmi_send_mgmt_cmd *) skb->data;
3288 p->id = cpu_to_le32(id);
3289 p->freq = cpu_to_le32(freq);
3290 p->wait = cpu_to_le32(wait);
3291 p->no_cck = cpu_to_le32(no_cck);
3292 p->len = cpu_to_le16(data_len);
3293 memcpy(p->data, data, data_len);
3294 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SEND_MGMT_CMDID,
3295 NO_SYNC_WMIFLAG);
3296}
3297
Naveen Gangadharand0ff7382012-02-08 17:51:36 -08003298int ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id, u32 freq,
3299 u32 wait, const u8 *data, u16 data_len,
3300 u32 no_cck)
3301{
3302 int status;
3303 struct ath6kl *ar = wmi->parent_dev;
3304
3305 if (test_bit(ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX,
3306 ar->fw_capabilities)) {
3307 /*
3308 * If capable of doing P2P mgmt operations using
3309 * station interface, send additional information like
3310 * supported rates to advertise and xmit rates for
3311 * probe requests
3312 */
3313 status = __ath6kl_wmi_send_mgmt_cmd(ar->wmi, if_idx, id, freq,
3314 wait, data, data_len,
3315 no_cck);
3316 } else {
3317 status = ath6kl_wmi_send_action_cmd(ar->wmi, if_idx, id, freq,
3318 wait, data, data_len);
3319 }
3320
3321 return status;
3322}
3323
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303324int ath6kl_wmi_send_probe_response_cmd(struct wmi *wmi, u8 if_idx, u32 freq,
3325 const u8 *dst, const u8 *data,
3326 u16 data_len)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003327{
3328 struct sk_buff *skb;
3329 struct wmi_p2p_probe_response_cmd *p;
Aarthi Thiruvengadambd24a502011-11-09 10:05:56 -08003330 size_t cmd_len = sizeof(*p) + data_len;
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003331
Aarthi Thiruvengadambd24a502011-11-09 10:05:56 -08003332 if (data_len == 0)
3333 cmd_len++; /* work around target minimum length requirement */
3334
3335 skb = ath6kl_wmi_get_new_buf(cmd_len);
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003336 if (!skb)
3337 return -ENOMEM;
3338
3339 ath6kl_dbg(ATH6KL_DBG_WMI, "send_probe_response_cmd: freq=%u dst=%pM "
3340 "len=%u\n", freq, dst, data_len);
3341 p = (struct wmi_p2p_probe_response_cmd *) skb->data;
3342 p->freq = cpu_to_le32(freq);
3343 memcpy(p->destination_addr, dst, ETH_ALEN);
3344 p->len = cpu_to_le16(data_len);
3345 memcpy(p->data, data, data_len);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303346 return ath6kl_wmi_cmd_send(wmi, if_idx, skb,
3347 WMI_SEND_PROBE_RESPONSE_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003348 NO_SYNC_WMIFLAG);
3349}
3350
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303351int ath6kl_wmi_probe_report_req_cmd(struct wmi *wmi, u8 if_idx, bool enable)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003352{
3353 struct sk_buff *skb;
3354 struct wmi_probe_req_report_cmd *p;
3355
3356 skb = ath6kl_wmi_get_new_buf(sizeof(*p));
3357 if (!skb)
3358 return -ENOMEM;
3359
3360 ath6kl_dbg(ATH6KL_DBG_WMI, "probe_report_req_cmd: enable=%u\n",
3361 enable);
3362 p = (struct wmi_probe_req_report_cmd *) skb->data;
3363 p->enable = enable ? 1 : 0;
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303364 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_PROBE_REQ_REPORT_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003365 NO_SYNC_WMIFLAG);
3366}
3367
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303368int ath6kl_wmi_info_req_cmd(struct wmi *wmi, u8 if_idx, u32 info_req_flags)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003369{
3370 struct sk_buff *skb;
3371 struct wmi_get_p2p_info *p;
3372
3373 skb = ath6kl_wmi_get_new_buf(sizeof(*p));
3374 if (!skb)
3375 return -ENOMEM;
3376
3377 ath6kl_dbg(ATH6KL_DBG_WMI, "info_req_cmd: flags=%x\n",
3378 info_req_flags);
3379 p = (struct wmi_get_p2p_info *) skb->data;
3380 p->info_req_flags = cpu_to_le32(info_req_flags);
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303381 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_GET_P2P_INFO_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003382 NO_SYNC_WMIFLAG);
3383}
3384
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303385int ath6kl_wmi_cancel_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003386{
3387 ath6kl_dbg(ATH6KL_DBG_WMI, "cancel_remain_on_chnl_cmd\n");
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303388 return ath6kl_wmi_simple_cmd(wmi, if_idx,
3389 WMI_CANCEL_REMAIN_ON_CHNL_CMDID);
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003390}
3391
Kalle Valobdcd8172011-07-18 00:22:30 +03003392static int ath6kl_wmi_control_rx_xtnd(struct wmi *wmi, struct sk_buff *skb)
3393{
3394 struct wmix_cmd_hdr *cmd;
3395 u32 len;
3396 u16 id;
3397 u8 *datap;
3398 int ret = 0;
3399
3400 if (skb->len < sizeof(struct wmix_cmd_hdr)) {
3401 ath6kl_err("bad packet 1\n");
Kalle Valobdcd8172011-07-18 00:22:30 +03003402 return -EINVAL;
3403 }
3404
3405 cmd = (struct wmix_cmd_hdr *) skb->data;
3406 id = le32_to_cpu(cmd->cmd_id);
3407
3408 skb_pull(skb, sizeof(struct wmix_cmd_hdr));
3409
3410 datap = skb->data;
3411 len = skb->len;
3412
3413 switch (id) {
3414 case WMIX_HB_CHALLENGE_RESP_EVENTID:
Kalle Valob9b6ee62011-09-27 14:31:21 +03003415 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi event hb challenge resp\n");
Kalle Valobdcd8172011-07-18 00:22:30 +03003416 break;
3417 case WMIX_DBGLOG_EVENTID:
Kalle Valob9b6ee62011-09-27 14:31:21 +03003418 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi event dbglog len %d\n", len);
Kalle Valobdf53962011-09-02 10:32:04 +03003419 ath6kl_debug_fwlog_event(wmi->parent_dev, datap, len);
Kalle Valobdcd8172011-07-18 00:22:30 +03003420 break;
3421 default:
Kalle Valob9b6ee62011-09-27 14:31:21 +03003422 ath6kl_warn("unknown cmd id 0x%x\n", id);
Kalle Valobdcd8172011-07-18 00:22:30 +03003423 ret = -EINVAL;
3424 break;
3425 }
3426
3427 return ret;
3428}
3429
Jouni Malinen4b28a802011-10-11 17:31:54 +03003430static int ath6kl_wmi_roam_tbl_event_rx(struct wmi *wmi, u8 *datap, int len)
3431{
3432 return ath6kl_debug_roam_tbl_event(wmi->parent_dev, datap, len);
3433}
3434
Vasanthakumar Thiagarajan5dbc8112012-02-28 20:20:21 +05303435/* Process interface specific wmi events, caller would free the datap */
3436static int ath6kl_wmi_proc_events_vif(struct wmi *wmi, u16 if_idx, u16 cmd_id,
3437 u8 *datap, u32 len)
Kalle Valobdcd8172011-07-18 00:22:30 +03003438{
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303439 struct ath6kl_vif *vif;
Kalle Valobdcd8172011-07-18 00:22:30 +03003440
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303441 vif = ath6kl_get_vif_by_index(wmi->parent_dev, if_idx);
3442 if (!vif) {
3443 ath6kl_dbg(ATH6KL_DBG_WMI,
3444 "Wmi event for unavailable vif, vif_index:%d\n",
3445 if_idx);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303446 return -EINVAL;
3447 }
3448
Vasanthakumar Thiagarajan5dbc8112012-02-28 20:20:21 +05303449 switch (cmd_id) {
3450 case WMI_CONNECT_EVENTID:
3451 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CONNECT_EVENTID\n");
3452 return ath6kl_wmi_connect_event_rx(wmi, datap, len, vif);
3453 case WMI_DISCONNECT_EVENTID:
3454 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DISCONNECT_EVENTID\n");
3455 return ath6kl_wmi_disconnect_event_rx(wmi, datap, len, vif);
3456 case WMI_TKIP_MICERR_EVENTID:
3457 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TKIP_MICERR_EVENTID\n");
3458 return ath6kl_wmi_tkip_micerr_event_rx(wmi, datap, len, vif);
3459 case WMI_BSSINFO_EVENTID:
3460 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_BSSINFO_EVENTID\n");
3461 return ath6kl_wmi_bssinfo_event_rx(wmi, datap, len, vif);
3462 case WMI_NEIGHBOR_REPORT_EVENTID:
3463 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_NEIGHBOR_REPORT_EVENTID\n");
3464 return ath6kl_wmi_neighbor_report_event_rx(wmi, datap, len,
3465 vif);
3466 case WMI_SCAN_COMPLETE_EVENTID:
3467 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SCAN_COMPLETE_EVENTID\n");
3468 return ath6kl_wmi_scan_complete_rx(wmi, datap, len, vif);
3469 case WMI_REPORT_STATISTICS_EVENTID:
3470 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_STATISTICS_EVENTID\n");
3471 return ath6kl_wmi_stats_event_rx(wmi, datap, len, vif);
3472 case WMI_CAC_EVENTID:
3473 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CAC_EVENTID\n");
3474 return ath6kl_wmi_cac_event_rx(wmi, datap, len, vif);
3475 case WMI_PSPOLL_EVENTID:
3476 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSPOLL_EVENTID\n");
3477 return ath6kl_wmi_pspoll_event_rx(wmi, datap, len, vif);
3478 case WMI_DTIMEXPIRY_EVENTID:
3479 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DTIMEXPIRY_EVENTID\n");
3480 return ath6kl_wmi_dtimexpiry_event_rx(wmi, datap, len, vif);
3481 case WMI_ADDBA_REQ_EVENTID:
3482 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_REQ_EVENTID\n");
3483 return ath6kl_wmi_addba_req_event_rx(wmi, datap, len, vif);
3484 case WMI_DELBA_REQ_EVENTID:
3485 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DELBA_REQ_EVENTID\n");
3486 return ath6kl_wmi_delba_req_event_rx(wmi, datap, len, vif);
3487 case WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID:
3488 ath6kl_dbg(ATH6KL_DBG_WMI,
3489 "WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID");
3490 return ath6kl_wmi_host_sleep_mode_cmd_prcd_evt_rx(wmi, vif);
3491 case WMI_REMAIN_ON_CHNL_EVENTID:
3492 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REMAIN_ON_CHNL_EVENTID\n");
3493 return ath6kl_wmi_remain_on_chnl_event_rx(wmi, datap, len, vif);
3494 case WMI_CANCEL_REMAIN_ON_CHNL_EVENTID:
3495 ath6kl_dbg(ATH6KL_DBG_WMI,
3496 "WMI_CANCEL_REMAIN_ON_CHNL_EVENTID\n");
3497 return ath6kl_wmi_cancel_remain_on_chnl_event_rx(wmi, datap,
3498 len, vif);
3499 case WMI_TX_STATUS_EVENTID:
3500 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_STATUS_EVENTID\n");
3501 return ath6kl_wmi_tx_status_event_rx(wmi, datap, len, vif);
3502 case WMI_RX_PROBE_REQ_EVENTID:
3503 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RX_PROBE_REQ_EVENTID\n");
3504 return ath6kl_wmi_rx_probe_req_event_rx(wmi, datap, len, vif);
3505 case WMI_RX_ACTION_EVENTID:
3506 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RX_ACTION_EVENTID\n");
3507 return ath6kl_wmi_rx_action_event_rx(wmi, datap, len, vif);
3508 default:
3509 ath6kl_dbg(ATH6KL_DBG_WMI, "unknown cmd id 0x%x\n", cmd_id);
3510 return -EINVAL;
3511 }
3512
3513 return 0;
3514}
3515
3516static int ath6kl_wmi_proc_events(struct wmi *wmi, struct sk_buff *skb)
3517{
3518 struct wmi_cmd_hdr *cmd;
3519 int ret = 0;
3520 u32 len;
3521 u16 id;
3522 u8 if_idx;
3523 u8 *datap;
3524
3525 cmd = (struct wmi_cmd_hdr *) skb->data;
3526 id = le16_to_cpu(cmd->cmd_id);
3527 if_idx = le16_to_cpu(cmd->info1) & WMI_CMD_HDR_IF_ID_MASK;
3528
3529 skb_pull(skb, sizeof(struct wmi_cmd_hdr));
3530 datap = skb->data;
3531 len = skb->len;
3532
3533 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi rx id %d len %d\n", id, len);
3534 ath6kl_dbg_dump(ATH6KL_DBG_WMI_DUMP, NULL, "wmi rx ",
3535 datap, len);
3536
Kalle Valobdcd8172011-07-18 00:22:30 +03003537 switch (id) {
3538 case WMI_GET_BITRATE_CMDID:
3539 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_BITRATE_CMDID\n");
3540 ret = ath6kl_wmi_bitrate_reply_rx(wmi, datap, len);
3541 break;
3542 case WMI_GET_CHANNEL_LIST_CMDID:
3543 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_CHANNEL_LIST_CMDID\n");
3544 ret = ath6kl_wmi_ch_list_reply_rx(wmi, datap, len);
3545 break;
3546 case WMI_GET_TX_PWR_CMDID:
3547 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_TX_PWR_CMDID\n");
3548 ret = ath6kl_wmi_tx_pwr_reply_rx(wmi, datap, len);
3549 break;
3550 case WMI_READY_EVENTID:
3551 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_READY_EVENTID\n");
3552 ret = ath6kl_wmi_ready_event_rx(wmi, datap, len);
3553 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003554 case WMI_PEER_NODE_EVENTID:
3555 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PEER_NODE_EVENTID\n");
3556 ret = ath6kl_wmi_peer_node_event_rx(wmi, datap, len);
3557 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003558 case WMI_REGDOMAIN_EVENTID:
3559 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REGDOMAIN_EVENTID\n");
Vivek Natarajan06033762011-09-06 13:01:36 +05303560 ath6kl_wmi_regdomain_event(wmi, datap, len);
Kalle Valobdcd8172011-07-18 00:22:30 +03003561 break;
3562 case WMI_PSTREAM_TIMEOUT_EVENTID:
3563 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSTREAM_TIMEOUT_EVENTID\n");
3564 ret = ath6kl_wmi_pstream_timeout_event_rx(wmi, datap, len);
3565 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003566 case WMI_CMDERROR_EVENTID:
3567 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CMDERROR_EVENTID\n");
3568 ret = ath6kl_wmi_error_event_rx(wmi, datap, len);
3569 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003570 case WMI_RSSI_THRESHOLD_EVENTID:
3571 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RSSI_THRESHOLD_EVENTID\n");
3572 ret = ath6kl_wmi_rssi_threshold_event_rx(wmi, datap, len);
3573 break;
3574 case WMI_ERROR_REPORT_EVENTID:
3575 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ERROR_REPORT_EVENTID\n");
3576 break;
3577 case WMI_OPT_RX_FRAME_EVENTID:
3578 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_OPT_RX_FRAME_EVENTID\n");
Jouni Malinenf195d502011-09-19 19:15:00 +03003579 /* this event has been deprecated */
Kalle Valobdcd8172011-07-18 00:22:30 +03003580 break;
3581 case WMI_REPORT_ROAM_TBL_EVENTID:
3582 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_TBL_EVENTID\n");
Jouni Malinen4b28a802011-10-11 17:31:54 +03003583 ret = ath6kl_wmi_roam_tbl_event_rx(wmi, datap, len);
Kalle Valobdcd8172011-07-18 00:22:30 +03003584 break;
3585 case WMI_EXTENSION_EVENTID:
3586 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_EXTENSION_EVENTID\n");
3587 ret = ath6kl_wmi_control_rx_xtnd(wmi, skb);
3588 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003589 case WMI_CHANNEL_CHANGE_EVENTID:
3590 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CHANNEL_CHANGE_EVENTID\n");
3591 break;
3592 case WMI_REPORT_ROAM_DATA_EVENTID:
3593 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_DATA_EVENTID\n");
3594 break;
Kalle Valo003353b0d2011-09-01 10:14:21 +03003595 case WMI_TEST_EVENTID:
3596 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TEST_EVENTID\n");
Thomas Pedersen4f34dac2011-12-30 01:57:00 -08003597 ret = ath6kl_wmi_test_rx(wmi, datap, len);
Kalle Valo003353b0d2011-09-01 10:14:21 +03003598 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003599 case WMI_GET_FIXRATES_CMDID:
3600 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_FIXRATES_CMDID\n");
3601 ret = ath6kl_wmi_ratemask_reply_rx(wmi, datap, len);
3602 break;
3603 case WMI_TX_RETRY_ERR_EVENTID:
3604 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_RETRY_ERR_EVENTID\n");
3605 break;
3606 case WMI_SNR_THRESHOLD_EVENTID:
3607 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SNR_THRESHOLD_EVENTID\n");
3608 ret = ath6kl_wmi_snr_threshold_event_rx(wmi, datap, len);
3609 break;
3610 case WMI_LQ_THRESHOLD_EVENTID:
3611 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_LQ_THRESHOLD_EVENTID\n");
3612 break;
3613 case WMI_APLIST_EVENTID:
3614 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_APLIST_EVENTID\n");
3615 ret = ath6kl_wmi_aplist_event_rx(wmi, datap, len);
3616 break;
3617 case WMI_GET_KEEPALIVE_CMDID:
3618 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_KEEPALIVE_CMDID\n");
3619 ret = ath6kl_wmi_keepalive_reply_rx(wmi, datap, len);
3620 break;
3621 case WMI_GET_WOW_LIST_EVENTID:
3622 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_WOW_LIST_EVENTID\n");
Kalle Valobdcd8172011-07-18 00:22:30 +03003623 break;
3624 case WMI_GET_PMKID_LIST_EVENTID:
3625 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_PMKID_LIST_EVENTID\n");
3626 ret = ath6kl_wmi_get_pmkid_list_event_rx(wmi, datap, len);
3627 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003628 case WMI_SET_PARAMS_REPLY_EVENTID:
3629 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SET_PARAMS_REPLY_EVENTID\n");
3630 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003631 case WMI_ADDBA_RESP_EVENTID:
3632 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_RESP_EVENTID\n");
3633 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003634 case WMI_REPORT_BTCOEX_CONFIG_EVENTID:
3635 ath6kl_dbg(ATH6KL_DBG_WMI,
3636 "WMI_REPORT_BTCOEX_CONFIG_EVENTID\n");
3637 break;
3638 case WMI_REPORT_BTCOEX_STATS_EVENTID:
3639 ath6kl_dbg(ATH6KL_DBG_WMI,
3640 "WMI_REPORT_BTCOEX_STATS_EVENTID\n");
3641 break;
3642 case WMI_TX_COMPLETE_EVENTID:
3643 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_COMPLETE_EVENTID\n");
3644 ret = ath6kl_wmi_tx_complete_event_rx(datap, len);
3645 break;
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003646 case WMI_P2P_CAPABILITIES_EVENTID:
3647 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_P2P_CAPABILITIES_EVENTID\n");
3648 ret = ath6kl_wmi_p2p_capabilities_event_rx(datap, len);
3649 break;
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003650 case WMI_P2P_INFO_EVENTID:
3651 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_P2P_INFO_EVENTID\n");
3652 ret = ath6kl_wmi_p2p_info_event_rx(datap, len);
3653 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003654 default:
Vasanthakumar Thiagarajan5dbc8112012-02-28 20:20:21 +05303655 /* may be the event is interface specific */
3656 ret = ath6kl_wmi_proc_events_vif(wmi, if_idx, id, datap, len);
Kalle Valobdcd8172011-07-18 00:22:30 +03003657 break;
3658 }
3659
3660 dev_kfree_skb(skb);
Kalle Valobdcd8172011-07-18 00:22:30 +03003661 return ret;
3662}
3663
Vasanthakumar Thiagarajan5dbc8112012-02-28 20:20:21 +05303664/* Control Path */
3665int ath6kl_wmi_control_rx(struct wmi *wmi, struct sk_buff *skb)
3666{
3667 if (WARN_ON(skb == NULL))
3668 return -EINVAL;
3669
3670 if (skb->len < sizeof(struct wmi_cmd_hdr)) {
3671 ath6kl_err("bad packet 1\n");
3672 dev_kfree_skb(skb);
3673 return -EINVAL;
3674 }
3675
3676 return ath6kl_wmi_proc_events(wmi, skb);
3677}
3678
Kalle Valoc89c5912011-10-27 18:48:00 +03003679void ath6kl_wmi_reset(struct wmi *wmi)
Kalle Valobdcd8172011-07-18 00:22:30 +03003680{
Kalle Valobdcd8172011-07-18 00:22:30 +03003681 spin_lock_bh(&wmi->lock);
3682
3683 wmi->fat_pipe_exist = 0;
3684 memset(wmi->stream_exist_for_ac, 0, sizeof(wmi->stream_exist_for_ac));
3685
3686 spin_unlock_bh(&wmi->lock);
3687}
3688
Vasanthakumar Thiagarajan28657852011-07-21 12:00:49 +05303689void *ath6kl_wmi_init(struct ath6kl *dev)
Kalle Valobdcd8172011-07-18 00:22:30 +03003690{
3691 struct wmi *wmi;
3692
3693 wmi = kzalloc(sizeof(struct wmi), GFP_KERNEL);
3694 if (!wmi)
3695 return NULL;
3696
3697 spin_lock_init(&wmi->lock);
3698
3699 wmi->parent_dev = dev;
3700
Kalle Valobdcd8172011-07-18 00:22:30 +03003701 wmi->pwr_mode = REC_POWER;
Kalle Valobdcd8172011-07-18 00:22:30 +03003702
Kalle Valoc89c5912011-10-27 18:48:00 +03003703 ath6kl_wmi_reset(wmi);
Kalle Valobdcd8172011-07-18 00:22:30 +03003704
3705 return wmi;
3706}
3707
3708void ath6kl_wmi_shutdown(struct wmi *wmi)
3709{
3710 if (!wmi)
3711 return;
3712
Jouni Malinena0df5db2011-08-30 21:58:02 +03003713 kfree(wmi->last_mgmt_tx_frame);
Kalle Valobdcd8172011-07-18 00:22:30 +03003714 kfree(wmi);
3715}