ath6kl: Add wmi meta data information only it is available
[pandora-kernel.git] / drivers / net / wireless / ath / ath6kl / wmi.c
1 /*
2  * Copyright (c) 2004-2011 Atheros Communications Inc.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #include <linux/ip.h>
18 #include "core.h"
19 #include "debug.h"
20
21 static int ath6kl_wmi_sync_point(struct wmi *wmi);
22
23 static const s32 wmi_rate_tbl[][2] = {
24         /* {W/O SGI, with SGI} */
25         {1000, 1000},
26         {2000, 2000},
27         {5500, 5500},
28         {11000, 11000},
29         {6000, 6000},
30         {9000, 9000},
31         {12000, 12000},
32         {18000, 18000},
33         {24000, 24000},
34         {36000, 36000},
35         {48000, 48000},
36         {54000, 54000},
37         {6500, 7200},
38         {13000, 14400},
39         {19500, 21700},
40         {26000, 28900},
41         {39000, 43300},
42         {52000, 57800},
43         {58500, 65000},
44         {65000, 72200},
45         {13500, 15000},
46         {27000, 30000},
47         {40500, 45000},
48         {54000, 60000},
49         {81000, 90000},
50         {108000, 120000},
51         {121500, 135000},
52         {135000, 150000},
53         {0, 0}
54 };
55
56 /* 802.1d to AC mapping. Refer pg 57 of WMM-test-plan-v1.2 */
57 static const u8 up_to_ac[] = {
58         WMM_AC_BE,
59         WMM_AC_BK,
60         WMM_AC_BK,
61         WMM_AC_BE,
62         WMM_AC_VI,
63         WMM_AC_VI,
64         WMM_AC_VO,
65         WMM_AC_VO,
66 };
67
68 void ath6kl_wmi_set_control_ep(struct wmi *wmi, enum htc_endpoint_id ep_id)
69 {
70         if (WARN_ON(ep_id == ENDPOINT_UNUSED || ep_id >= ENDPOINT_MAX))
71                 return;
72
73         wmi->ep_id = ep_id;
74 }
75
76 enum htc_endpoint_id ath6kl_wmi_get_control_ep(struct wmi *wmi)
77 {
78         return wmi->ep_id;
79 }
80
81 /*  Performs DIX to 802.3 encapsulation for transmit packets.
82  *  Assumes the entire DIX header is contigous and that there is
83  *  enough room in the buffer for a 802.3 mac header and LLC+SNAP headers.
84  */
85 int ath6kl_wmi_dix_2_dot3(struct wmi *wmi, struct sk_buff *skb)
86 {
87         struct ath6kl_llc_snap_hdr *llc_hdr;
88         struct ethhdr *eth_hdr;
89         size_t new_len;
90         __be16 type;
91         u8 *datap;
92         u16 size;
93
94         if (WARN_ON(skb == NULL))
95                 return -EINVAL;
96
97         size = sizeof(struct ath6kl_llc_snap_hdr) + sizeof(struct wmi_data_hdr);
98         if (skb_headroom(skb) < size)
99                 return -ENOMEM;
100
101         eth_hdr = (struct ethhdr *) skb->data;
102         type = eth_hdr->h_proto;
103
104         if (!is_ethertype(be16_to_cpu(type))) {
105                 ath6kl_dbg(ATH6KL_DBG_WMI,
106                         "%s: pkt is already in 802.3 format\n", __func__);
107                 return 0;
108         }
109
110         new_len = skb->len - sizeof(*eth_hdr) + sizeof(*llc_hdr);
111
112         skb_push(skb, sizeof(struct ath6kl_llc_snap_hdr));
113         datap = skb->data;
114
115         eth_hdr->h_proto = cpu_to_be16(new_len);
116
117         memcpy(datap, eth_hdr, sizeof(*eth_hdr));
118
119         llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap + sizeof(*eth_hdr));
120         llc_hdr->dsap = 0xAA;
121         llc_hdr->ssap = 0xAA;
122         llc_hdr->cntl = 0x03;
123         llc_hdr->org_code[0] = 0x0;
124         llc_hdr->org_code[1] = 0x0;
125         llc_hdr->org_code[2] = 0x0;
126         llc_hdr->eth_type = type;
127
128         return 0;
129 }
130
131 static int ath6kl_wmi_meta_add(struct wmi *wmi, struct sk_buff *skb,
132                                u8 *version, void *tx_meta_info)
133 {
134         struct wmi_tx_meta_v1 *v1;
135         struct wmi_tx_meta_v2 *v2;
136
137         if (WARN_ON(skb == NULL || version == NULL))
138                 return -EINVAL;
139
140         switch (*version) {
141         case WMI_META_VERSION_1:
142                 skb_push(skb, WMI_MAX_TX_META_SZ);
143                 v1 = (struct wmi_tx_meta_v1 *) skb->data;
144                 v1->pkt_id = 0;
145                 v1->rate_plcy_id = 0;
146                 *version = WMI_META_VERSION_1;
147                 break;
148         case WMI_META_VERSION_2:
149                 skb_push(skb, WMI_MAX_TX_META_SZ);
150                 v2 = (struct wmi_tx_meta_v2 *) skb->data;
151                 memcpy(v2, (struct wmi_tx_meta_v2 *) tx_meta_info,
152                        sizeof(struct wmi_tx_meta_v2));
153                 break;
154         }
155
156         return 0;
157 }
158
159 int ath6kl_wmi_data_hdr_add(struct wmi *wmi, struct sk_buff *skb,
160                             u8 msg_type, bool more_data,
161                             enum wmi_data_hdr_data_type data_type,
162                             u8 meta_ver, void *tx_meta_info)
163 {
164         struct wmi_data_hdr *data_hdr;
165         int ret;
166
167         if (WARN_ON(skb == NULL))
168                 return -EINVAL;
169
170         if (tx_meta_info) {
171                 ret = ath6kl_wmi_meta_add(wmi, skb, &meta_ver, tx_meta_info);
172                 if (ret)
173                         return ret;
174         }
175
176         skb_push(skb, sizeof(struct wmi_data_hdr));
177
178         data_hdr = (struct wmi_data_hdr *)skb->data;
179         memset(data_hdr, 0, sizeof(struct wmi_data_hdr));
180
181         data_hdr->info = msg_type << WMI_DATA_HDR_MSG_TYPE_SHIFT;
182         data_hdr->info |= data_type << WMI_DATA_HDR_DATA_TYPE_SHIFT;
183
184         if (more_data)
185                 data_hdr->info |=
186                     WMI_DATA_HDR_MORE_MASK << WMI_DATA_HDR_MORE_SHIFT;
187
188         data_hdr->info2 = cpu_to_le16(meta_ver << WMI_DATA_HDR_META_SHIFT);
189         data_hdr->info3 = 0;
190
191         return 0;
192 }
193
194 static u8 ath6kl_wmi_determine_user_priority(u8 *pkt, u32 layer2_pri)
195 {
196         struct iphdr *ip_hdr = (struct iphdr *) pkt;
197         u8 ip_pri;
198
199         /*
200          * Determine IPTOS priority
201          *
202          * IP-TOS - 8bits
203          *          : DSCP(6-bits) ECN(2-bits)
204          *          : DSCP - P2 P1 P0 X X X
205          * where (P2 P1 P0) form 802.1D
206          */
207         ip_pri = ip_hdr->tos >> 5;
208         ip_pri &= 0x7;
209
210         if ((layer2_pri & 0x7) > ip_pri)
211                 return (u8) layer2_pri & 0x7;
212         else
213                 return ip_pri;
214 }
215
216 int ath6kl_wmi_implicit_create_pstream(struct wmi *wmi, struct sk_buff *skb,
217                                        u32 layer2_priority, bool wmm_enabled,
218                                        u8 *ac)
219 {
220         struct wmi_data_hdr *data_hdr;
221         struct ath6kl_llc_snap_hdr *llc_hdr;
222         struct wmi_create_pstream_cmd cmd;
223         u32 meta_size, hdr_size;
224         u16 ip_type = IP_ETHERTYPE;
225         u8 stream_exist, usr_pri;
226         u8 traffic_class = WMM_AC_BE;
227         u8 *datap;
228
229         if (WARN_ON(skb == NULL))
230                 return -EINVAL;
231
232         datap = skb->data;
233         data_hdr = (struct wmi_data_hdr *) datap;
234
235         meta_size = ((le16_to_cpu(data_hdr->info2) >> WMI_DATA_HDR_META_SHIFT) &
236                      WMI_DATA_HDR_META_MASK) ? WMI_MAX_TX_META_SZ : 0;
237
238         if (!wmm_enabled) {
239                 /* If WMM is disabled all traffic goes as BE traffic */
240                 usr_pri = 0;
241         } else {
242                 hdr_size = sizeof(struct ethhdr);
243
244                 llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap +
245                                                          sizeof(struct
246                                                                 wmi_data_hdr) +
247                                                          meta_size + hdr_size);
248
249                 if (llc_hdr->eth_type == htons(ip_type)) {
250                         /*
251                          * Extract the endpoint info from the TOS field
252                          * in the IP header.
253                          */
254                         usr_pri =
255                            ath6kl_wmi_determine_user_priority(((u8 *) llc_hdr) +
256                                         sizeof(struct ath6kl_llc_snap_hdr),
257                                         layer2_priority);
258                 } else
259                         usr_pri = layer2_priority & 0x7;
260         }
261
262         /* workaround for WMM S5 */
263         if ((wmi->traffic_class == WMM_AC_VI) &&
264             ((usr_pri == 5) || (usr_pri == 4)))
265                 usr_pri = 1;
266
267         /* Convert user priority to traffic class */
268         traffic_class = up_to_ac[usr_pri & 0x7];
269
270         wmi_data_hdr_set_up(data_hdr, usr_pri);
271
272         spin_lock_bh(&wmi->lock);
273         stream_exist = wmi->fat_pipe_exist;
274         spin_unlock_bh(&wmi->lock);
275
276         if (!(stream_exist & (1 << traffic_class))) {
277                 memset(&cmd, 0, sizeof(cmd));
278                 cmd.traffic_class = traffic_class;
279                 cmd.user_pri = usr_pri;
280                 cmd.inactivity_int =
281                         cpu_to_le32(WMI_IMPLICIT_PSTREAM_INACTIVITY_INT);
282                 /* Implicit streams are created with TSID 0xFF */
283                 cmd.tsid = WMI_IMPLICIT_PSTREAM;
284                 ath6kl_wmi_create_pstream_cmd(wmi, &cmd);
285         }
286
287         *ac = traffic_class;
288
289         return 0;
290 }
291
292 int ath6kl_wmi_dot11_hdr_remove(struct wmi *wmi, struct sk_buff *skb)
293 {
294         struct ieee80211_hdr_3addr *pwh, wh;
295         struct ath6kl_llc_snap_hdr *llc_hdr;
296         struct ethhdr eth_hdr;
297         u32 hdr_size;
298         u8 *datap;
299         __le16 sub_type;
300
301         if (WARN_ON(skb == NULL))
302                 return -EINVAL;
303
304         datap = skb->data;
305         pwh = (struct ieee80211_hdr_3addr *) datap;
306
307         sub_type = pwh->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE);
308
309         memcpy((u8 *) &wh, datap, sizeof(struct ieee80211_hdr_3addr));
310
311         /* Strip off the 802.11 header */
312         if (sub_type == cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
313                 hdr_size = roundup(sizeof(struct ieee80211_qos_hdr),
314                                    sizeof(u32));
315                 skb_pull(skb, hdr_size);
316         } else if (sub_type == cpu_to_le16(IEEE80211_STYPE_DATA))
317                 skb_pull(skb, sizeof(struct ieee80211_hdr_3addr));
318
319         datap = skb->data;
320         llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap);
321
322         memset(&eth_hdr, 0, sizeof(eth_hdr));
323         eth_hdr.h_proto = llc_hdr->eth_type;
324
325         switch ((le16_to_cpu(wh.frame_control)) &
326                 (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
327         case 0:
328                 memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN);
329                 memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN);
330                 break;
331         case IEEE80211_FCTL_TODS:
332                 memcpy(eth_hdr.h_dest, wh.addr3, ETH_ALEN);
333                 memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN);
334                 break;
335         case IEEE80211_FCTL_FROMDS:
336                 memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN);
337                 memcpy(eth_hdr.h_source, wh.addr3, ETH_ALEN);
338                 break;
339         case IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS:
340                 break;
341         }
342
343         skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr));
344         skb_push(skb, sizeof(eth_hdr));
345
346         datap = skb->data;
347
348         memcpy(datap, &eth_hdr, sizeof(eth_hdr));
349
350         return 0;
351 }
352
353 /*
354  * Performs 802.3 to DIX encapsulation for received packets.
355  * Assumes the entire 802.3 header is contigous.
356  */
357 int ath6kl_wmi_dot3_2_dix(struct sk_buff *skb)
358 {
359         struct ath6kl_llc_snap_hdr *llc_hdr;
360         struct ethhdr eth_hdr;
361         u8 *datap;
362
363         if (WARN_ON(skb == NULL))
364                 return -EINVAL;
365
366         datap = skb->data;
367
368         memcpy(&eth_hdr, datap, sizeof(eth_hdr));
369
370         llc_hdr = (struct ath6kl_llc_snap_hdr *) (datap + sizeof(eth_hdr));
371         eth_hdr.h_proto = llc_hdr->eth_type;
372
373         skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr));
374         datap = skb->data;
375
376         memcpy(datap, &eth_hdr, sizeof(eth_hdr));
377
378         return 0;
379 }
380
381 static void ath6kl_wmi_convert_bssinfo_hdr2_to_hdr(struct sk_buff *skb,
382                                                    u8 *datap)
383 {
384         struct wmi_bss_info_hdr2 bih2;
385         struct wmi_bss_info_hdr *bih;
386
387         memcpy(&bih2, datap, sizeof(struct wmi_bss_info_hdr2));
388
389         skb_push(skb, 4);
390         bih = (struct wmi_bss_info_hdr *) skb->data;
391
392         bih->ch = bih2.ch;
393         bih->frame_type = bih2.frame_type;
394         bih->snr = bih2.snr;
395         bih->rssi = a_cpu_to_sle16(bih2.snr - 95);
396         bih->ie_mask = cpu_to_le32(le16_to_cpu(bih2.ie_mask));
397         memcpy(bih->bssid, bih2.bssid, ETH_ALEN);
398 }
399
400 static int ath6kl_wmi_tx_complete_event_rx(u8 *datap, int len)
401 {
402         struct tx_complete_msg_v1 *msg_v1;
403         struct wmi_tx_complete_event *evt;
404         int index;
405         u16 size;
406
407         evt = (struct wmi_tx_complete_event *) datap;
408
409         ath6kl_dbg(ATH6KL_DBG_WMI, "comp: %d %d %d\n",
410                    evt->num_msg, evt->msg_len, evt->msg_type);
411
412         if (!AR_DBG_LVL_CHECK(ATH6KL_DBG_WMI))
413                 return 0;
414
415         for (index = 0; index < evt->num_msg; index++) {
416                 size = sizeof(struct wmi_tx_complete_event) +
417                     (index * sizeof(struct tx_complete_msg_v1));
418                 msg_v1 = (struct tx_complete_msg_v1 *)(datap + size);
419
420                 ath6kl_dbg(ATH6KL_DBG_WMI, "msg: %d %d %d %d\n",
421                            msg_v1->status, msg_v1->pkt_id,
422                            msg_v1->rate_idx, msg_v1->ack_failures);
423         }
424
425         return 0;
426 }
427
428 static inline struct sk_buff *ath6kl_wmi_get_new_buf(u32 size)
429 {
430         struct sk_buff *skb;
431
432         skb = ath6kl_buf_alloc(size);
433         if (!skb)
434                 return NULL;
435
436         skb_put(skb, size);
437         if (size)
438                 memset(skb->data, 0, size);
439
440         return skb;
441 }
442
443 /* Send a "simple" wmi command -- one with no arguments */
444 static int ath6kl_wmi_simple_cmd(struct wmi *wmi, enum wmi_cmd_id cmd_id)
445 {
446         struct sk_buff *skb;
447         int ret;
448
449         skb = ath6kl_wmi_get_new_buf(0);
450         if (!skb)
451                 return -ENOMEM;
452
453         ret = ath6kl_wmi_cmd_send(wmi, skb, cmd_id, NO_SYNC_WMIFLAG);
454
455         return ret;
456 }
457
458 static int ath6kl_wmi_ready_event_rx(struct wmi *wmi, u8 *datap, int len)
459 {
460         struct wmi_ready_event_2 *ev = (struct wmi_ready_event_2 *) datap;
461
462         if (len < sizeof(struct wmi_ready_event_2))
463                 return -EINVAL;
464
465         wmi->ready = true;
466         ath6kl_ready_event(wmi->parent_dev, ev->mac_addr,
467                            le32_to_cpu(ev->sw_version),
468                            le32_to_cpu(ev->abi_version));
469
470         return 0;
471 }
472
473 static int ath6kl_wmi_connect_event_rx(struct wmi *wmi, u8 *datap, int len)
474 {
475         struct wmi_connect_event *ev;
476         u8 *pie, *peie;
477
478         if (len < sizeof(struct wmi_connect_event))
479                 return -EINVAL;
480
481         ev = (struct wmi_connect_event *) datap;
482
483         ath6kl_dbg(ATH6KL_DBG_WMI, "%s: freq %d bssid %pM\n",
484                    __func__, ev->ch, ev->bssid);
485
486         /* Start of assoc rsp IEs */
487         pie = ev->assoc_info + ev->beacon_ie_len +
488               ev->assoc_req_len + (sizeof(u16) * 3); /* capinfo, status, aid */
489
490         /* End of assoc rsp IEs */
491         peie = ev->assoc_info + ev->beacon_ie_len + ev->assoc_req_len +
492             ev->assoc_resp_len;
493
494         while (pie < peie) {
495                 switch (*pie) {
496                 case WLAN_EID_VENDOR_SPECIFIC:
497                         if (pie[1] > 3 && pie[2] == 0x00 && pie[3] == 0x50 &&
498                             pie[4] == 0xf2 && pie[5] == WMM_OUI_TYPE) {
499                                 /* WMM OUT (00:50:F2) */
500                                 if (pie[1] > 5
501                                     && pie[6] == WMM_PARAM_OUI_SUBTYPE)
502                                         wmi->is_wmm_enabled = true;
503                         }
504                         break;
505                 }
506
507                 if (wmi->is_wmm_enabled)
508                         break;
509
510                 pie += pie[1] + 2;
511         }
512
513         ath6kl_connect_event(wmi->parent_dev, le16_to_cpu(ev->ch), ev->bssid,
514                              le16_to_cpu(ev->listen_intvl),
515                              le16_to_cpu(ev->beacon_intvl),
516                              le32_to_cpu(ev->nw_type),
517                              ev->beacon_ie_len, ev->assoc_req_len,
518                              ev->assoc_resp_len, ev->assoc_info);
519
520         return 0;
521 }
522
523 static int ath6kl_wmi_disconnect_event_rx(struct wmi *wmi, u8 *datap, int len)
524 {
525         struct wmi_disconnect_event *ev;
526         wmi->traffic_class = 100;
527
528         if (len < sizeof(struct wmi_disconnect_event))
529                 return -EINVAL;
530
531         ev = (struct wmi_disconnect_event *) datap;
532
533         wmi->is_wmm_enabled = false;
534         wmi->pair_crypto_type = NONE_CRYPT;
535         wmi->grp_crypto_type = NONE_CRYPT;
536
537         ath6kl_disconnect_event(wmi->parent_dev, ev->disconn_reason,
538                                 ev->bssid, ev->assoc_resp_len, ev->assoc_info,
539                                 le16_to_cpu(ev->proto_reason_status));
540
541         return 0;
542 }
543
544 static int ath6kl_wmi_peer_node_event_rx(struct wmi *wmi, u8 *datap, int len)
545 {
546         struct wmi_peer_node_event *ev;
547
548         if (len < sizeof(struct wmi_peer_node_event))
549                 return -EINVAL;
550
551         ev = (struct wmi_peer_node_event *) datap;
552
553         if (ev->event_code == PEER_NODE_JOIN_EVENT)
554                 ath6kl_dbg(ATH6KL_DBG_WMI, "joined node with mac addr: %pM\n",
555                            ev->peer_mac_addr);
556         else if (ev->event_code == PEER_NODE_LEAVE_EVENT)
557                 ath6kl_dbg(ATH6KL_DBG_WMI, "left node with mac addr: %pM\n",
558                            ev->peer_mac_addr);
559
560         return 0;
561 }
562
563 static int ath6kl_wmi_tkip_micerr_event_rx(struct wmi *wmi, u8 *datap, int len)
564 {
565         struct wmi_tkip_micerr_event *ev;
566
567         if (len < sizeof(struct wmi_tkip_micerr_event))
568                 return -EINVAL;
569
570         ev = (struct wmi_tkip_micerr_event *) datap;
571
572         ath6kl_tkip_micerr_event(wmi->parent_dev, ev->key_id, ev->is_mcast);
573
574         return 0;
575 }
576
577 static int ath6kl_wlan_parse_beacon(u8 *buf, int frame_len,
578                                     struct ath6kl_common_ie *cie)
579 {
580         u8 *frm, *efrm;
581         u8 elemid_ssid = false;
582
583         frm = buf;
584         efrm = (u8 *) (frm + frame_len);
585
586         /*
587          * beacon/probe response frame format
588          *  [8] time stamp
589          *  [2] beacon interval
590          *  [2] capability information
591          *  [tlv] ssid
592          *  [tlv] supported rates
593          *  [tlv] country information
594          *  [tlv] parameter set (FH/DS)
595          *  [tlv] erp information
596          *  [tlv] extended supported rates
597          *  [tlv] WMM
598          *  [tlv] WPA or RSN
599          *  [tlv] Atheros Advanced Capabilities
600          */
601         if ((efrm - frm) < 12)
602                 return -EINVAL;
603
604         memset(cie, 0, sizeof(*cie));
605
606         cie->ie_tstamp = frm;
607         frm += 8;
608         cie->ie_beaconInt = *(u16 *) frm;
609         frm += 2;
610         cie->ie_capInfo = *(u16 *) frm;
611         frm += 2;
612         cie->ie_chan = 0;
613
614         while (frm < efrm) {
615                 switch (*frm) {
616                 case WLAN_EID_SSID:
617                         if (!elemid_ssid) {
618                                 cie->ie_ssid = frm;
619                                 elemid_ssid = true;
620                         }
621                         break;
622                 case WLAN_EID_SUPP_RATES:
623                         cie->ie_rates = frm;
624                         break;
625                 case WLAN_EID_COUNTRY:
626                         cie->ie_country = frm;
627                         break;
628                 case WLAN_EID_FH_PARAMS:
629                         break;
630                 case WLAN_EID_DS_PARAMS:
631                         cie->ie_chan = frm[2];
632                         break;
633                 case WLAN_EID_TIM:
634                         cie->ie_tim = frm;
635                         break;
636                 case WLAN_EID_IBSS_PARAMS:
637                         break;
638                 case WLAN_EID_EXT_SUPP_RATES:
639                         cie->ie_xrates = frm;
640                         break;
641                 case WLAN_EID_ERP_INFO:
642                         if (frm[1] != 1)
643                                 return -EINVAL;
644
645                         cie->ie_erp = frm[2];
646                         break;
647                 case WLAN_EID_RSN:
648                         cie->ie_rsn = frm;
649                         break;
650                 case WLAN_EID_HT_CAPABILITY:
651                         cie->ie_htcap = frm;
652                         break;
653                 case WLAN_EID_HT_INFORMATION:
654                         cie->ie_htop = frm;
655                         break;
656                 case WLAN_EID_VENDOR_SPECIFIC:
657                         if (frm[1] > 3 && frm[2] == 0x00 && frm[3] == 0x50 &&
658                             frm[4] == 0xf2) {
659                                 /* OUT Type (00:50:F2) */
660
661                                 if (frm[5] == WPA_OUI_TYPE) {
662                                         /* WPA OUT */
663                                         cie->ie_wpa = frm;
664                                 } else if (frm[5] == WMM_OUI_TYPE) {
665                                         /* WMM OUT */
666                                         cie->ie_wmm = frm;
667                                 } else if (frm[5] == WSC_OUT_TYPE) {
668                                         /* WSC OUT */
669                                         cie->ie_wsc = frm;
670                                 }
671
672                         } else if (frm[1] > 3 && frm[2] == 0x00
673                                    && frm[3] == 0x03 && frm[4] == 0x7f
674                                    && frm[5] == ATH_OUI_TYPE) {
675                                 /* Atheros OUI (00:03:7f) */
676                                 cie->ie_ath = frm;
677                         }
678                         break;
679                 default:
680                         break;
681                 }
682                 frm += frm[1] + 2;
683         }
684
685         if ((cie->ie_rates == NULL)
686             || (cie->ie_rates[1] > ATH6KL_RATE_MAXSIZE))
687                 return -EINVAL;
688
689         if ((cie->ie_ssid == NULL)
690             || (cie->ie_ssid[1] > IEEE80211_MAX_SSID_LEN))
691                 return -EINVAL;
692
693         return 0;
694 }
695
696 static int ath6kl_wmi_bssinfo_event_rx(struct wmi *wmi, u8 *datap, int len)
697 {
698         struct bss *bss = NULL;
699         struct wmi_bss_info_hdr *bih;
700         u8 cached_ssid_len = 0;
701         u8 cached_ssid[IEEE80211_MAX_SSID_LEN] = { 0 };
702         u8 beacon_ssid_len = 0;
703         u8 *buf, *ie_ssid;
704         u8 *ni_buf;
705         int buf_len;
706
707         int ret;
708
709         if (len <= sizeof(struct wmi_bss_info_hdr))
710                 return -EINVAL;
711
712         bih = (struct wmi_bss_info_hdr *) datap;
713         bss = wlan_find_node(&wmi->parent_dev->scan_table, bih->bssid);
714
715         if (a_sle16_to_cpu(bih->rssi) > 0) {
716                 if (bss == NULL)
717                         return 0;
718                 else
719                         bih->rssi = a_cpu_to_sle16(bss->ni_rssi);
720         }
721
722         buf = datap + sizeof(struct wmi_bss_info_hdr);
723         len -= sizeof(struct wmi_bss_info_hdr);
724
725         ath6kl_dbg(ATH6KL_DBG_WMI,
726                    "bss info evt - ch %u, rssi %02x, bssid \"%pM\"\n",
727                    bih->ch, a_sle16_to_cpu(bih->rssi), bih->bssid);
728
729         if (bss != NULL) {
730                 /*
731                  * Free up the node. We are about to allocate a new node.
732                  * In case of hidden AP, beacon will not have ssid,
733                  * but a directed probe response will have it,
734                  * so cache the probe-resp-ssid if already present.
735                  */
736                 if (wmi->is_probe_ssid && (bih->frame_type == BEACON_FTYPE)) {
737                         ie_ssid = bss->ni_cie.ie_ssid;
738                         if (ie_ssid && (ie_ssid[1] <= IEEE80211_MAX_SSID_LEN) &&
739                             (ie_ssid[2] != 0)) {
740                                 cached_ssid_len = ie_ssid[1];
741                                 memcpy(cached_ssid, ie_ssid + 2,
742                                        cached_ssid_len);
743                         }
744                 }
745
746                 /*
747                  * Use the current average rssi of associated AP base on
748                  * assumption
749                  *   1. Most os with GUI will update RSSI by
750                  *      ath6kl_wmi_get_stats_cmd() periodically.
751                  *   2. ath6kl_wmi_get_stats_cmd(..) will be called when calling
752                  *      ath6kl_wmi_startscan_cmd(...)
753                  * The average value of RSSI give end-user better feeling for
754                  * instance value of scan result. It also sync up RSSI info
755                  * in GUI between scan result and RSSI signal icon.
756                  */
757                 if (memcmp(wmi->parent_dev->bssid, bih->bssid, ETH_ALEN) == 0) {
758                         bih->rssi = a_cpu_to_sle16(bss->ni_rssi);
759                         bih->snr = bss->ni_snr;
760                 }
761
762                 wlan_node_reclaim(&wmi->parent_dev->scan_table, bss);
763         }
764
765         /*
766          * beacon/probe response frame format
767          *  [8] time stamp
768          *  [2] beacon interval
769          *  [2] capability information
770          *  [tlv] ssid
771          */
772         beacon_ssid_len = buf[SSID_IE_LEN_INDEX];
773
774         /*
775          * If ssid is cached for this hidden AP, then change
776          * buffer len accordingly.
777          */
778         if (wmi->is_probe_ssid && (bih->frame_type == BEACON_FTYPE) &&
779             (cached_ssid_len != 0) &&
780             (beacon_ssid_len == 0 || (cached_ssid_len > beacon_ssid_len &&
781                                       buf[SSID_IE_LEN_INDEX + 1] == 0))) {
782
783                 len += (cached_ssid_len - beacon_ssid_len);
784         }
785
786         bss = wlan_node_alloc(len);
787         if (!bss)
788                 return -ENOMEM;
789
790         bss->ni_snr = bih->snr;
791         bss->ni_rssi = a_sle16_to_cpu(bih->rssi);
792
793         if (WARN_ON(!bss->ni_buf))
794                 return -EINVAL;
795
796         /*
797          * In case of hidden AP, beacon will not have ssid,
798          * but a directed probe response will have it,
799          * so place the cached-ssid(probe-resp) in the bss info.
800          */
801         if (wmi->is_probe_ssid && (bih->frame_type == BEACON_FTYPE) &&
802             (cached_ssid_len != 0) &&
803             (beacon_ssid_len == 0 || (beacon_ssid_len &&
804                                       buf[SSID_IE_LEN_INDEX + 1] == 0))) {
805                 ni_buf = bss->ni_buf;
806                 buf_len = len;
807
808                 /*
809                  * Copy the first 14 bytes:
810                  * time-stamp(8), beacon-interval(2),
811                  * cap-info(2), ssid-id(1), ssid-len(1).
812                  */
813                 memcpy(ni_buf, buf, SSID_IE_LEN_INDEX + 1);
814
815                 ni_buf[SSID_IE_LEN_INDEX] = cached_ssid_len;
816                 ni_buf += (SSID_IE_LEN_INDEX + 1);
817
818                 buf += (SSID_IE_LEN_INDEX + 1);
819                 buf_len -= (SSID_IE_LEN_INDEX + 1);
820
821                 memcpy(ni_buf, cached_ssid, cached_ssid_len);
822                 ni_buf += cached_ssid_len;
823
824                 buf += beacon_ssid_len;
825                 buf_len -= beacon_ssid_len;
826
827                 if (cached_ssid_len > beacon_ssid_len)
828                         buf_len -= (cached_ssid_len - beacon_ssid_len);
829
830                 memcpy(ni_buf, buf, buf_len);
831         } else
832                 memcpy(bss->ni_buf, buf, len);
833
834         bss->ni_framelen = len;
835
836         ret = ath6kl_wlan_parse_beacon(bss->ni_buf, len, &bss->ni_cie);
837         if (ret) {
838                 wlan_node_free(bss);
839                 return -EINVAL;
840         }
841
842         /*
843          * Update the frequency in ie_chan, overwriting of channel number
844          * which is done in ath6kl_wlan_parse_beacon
845          */
846         bss->ni_cie.ie_chan = le16_to_cpu(bih->ch);
847         wlan_setup_node(&wmi->parent_dev->scan_table, bss, bih->bssid);
848
849         return 0;
850 }
851
852 static int ath6kl_wmi_opt_frame_event_rx(struct wmi *wmi, u8 *datap, int len)
853 {
854         struct bss *bss;
855         struct wmi_opt_rx_info_hdr *bih;
856         u8 *buf;
857
858         if (len <= sizeof(struct wmi_opt_rx_info_hdr))
859                 return -EINVAL;
860
861         bih = (struct wmi_opt_rx_info_hdr *) datap;
862         buf = datap + sizeof(struct wmi_opt_rx_info_hdr);
863         len -= sizeof(struct wmi_opt_rx_info_hdr);
864
865         ath6kl_dbg(ATH6KL_DBG_WMI, "opt frame event %2.2x:%2.2x\n",
866                    bih->bssid[4], bih->bssid[5]);
867
868         bss = wlan_find_node(&wmi->parent_dev->scan_table, bih->bssid);
869         if (bss != NULL) {
870                 /* Free up the node. We are about to allocate a new node. */
871                 wlan_node_reclaim(&wmi->parent_dev->scan_table, bss);
872         }
873
874         bss = wlan_node_alloc(len);
875         if (!bss)
876                 return -ENOMEM;
877
878         bss->ni_snr = bih->snr;
879         bss->ni_cie.ie_chan = le16_to_cpu(bih->ch);
880
881         if (WARN_ON(!bss->ni_buf))
882                 return -EINVAL;
883
884         memcpy(bss->ni_buf, buf, len);
885         wlan_setup_node(&wmi->parent_dev->scan_table, bss, bih->bssid);
886
887         return 0;
888 }
889
890 /* Inactivity timeout of a fatpipe(pstream) at the target */
891 static int ath6kl_wmi_pstream_timeout_event_rx(struct wmi *wmi, u8 *datap,
892                                                int len)
893 {
894         struct wmi_pstream_timeout_event *ev;
895
896         if (len < sizeof(struct wmi_pstream_timeout_event))
897                 return -EINVAL;
898
899         ev = (struct wmi_pstream_timeout_event *) datap;
900
901         /*
902          * When the pstream (fat pipe == AC) timesout, it means there were
903          * no thinStreams within this pstream & it got implicitly created
904          * due to data flow on this AC. We start the inactivity timer only
905          * for implicitly created pstream. Just reset the host state.
906          */
907         spin_lock_bh(&wmi->lock);
908         wmi->stream_exist_for_ac[ev->traffic_class] = 0;
909         wmi->fat_pipe_exist &= ~(1 << ev->traffic_class);
910         spin_unlock_bh(&wmi->lock);
911
912         /* Indicate inactivity to driver layer for this fatpipe (pstream) */
913         ath6kl_indicate_tx_activity(wmi->parent_dev, ev->traffic_class, false);
914
915         return 0;
916 }
917
918 static int ath6kl_wmi_bitrate_reply_rx(struct wmi *wmi, u8 *datap, int len)
919 {
920         struct wmi_bit_rate_reply *reply;
921         s32 rate;
922         u32 sgi, index;
923
924         if (len < sizeof(struct wmi_bit_rate_reply))
925                 return -EINVAL;
926
927         reply = (struct wmi_bit_rate_reply *) datap;
928
929         ath6kl_dbg(ATH6KL_DBG_WMI, "rateindex %d\n", reply->rate_index);
930
931         if (reply->rate_index == (s8) RATE_AUTO) {
932                 rate = RATE_AUTO;
933         } else {
934                 index = reply->rate_index & 0x7f;
935                 sgi = (reply->rate_index & 0x80) ? 1 : 0;
936                 rate = wmi_rate_tbl[index][sgi];
937         }
938
939         ath6kl_wakeup_event(wmi->parent_dev);
940
941         return 0;
942 }
943
944 static int ath6kl_wmi_ratemask_reply_rx(struct wmi *wmi, u8 *datap, int len)
945 {
946         if (len < sizeof(struct wmi_fix_rates_reply))
947                 return -EINVAL;
948
949         ath6kl_wakeup_event(wmi->parent_dev);
950
951         return 0;
952 }
953
954 static int ath6kl_wmi_ch_list_reply_rx(struct wmi *wmi, u8 *datap, int len)
955 {
956         if (len < sizeof(struct wmi_channel_list_reply))
957                 return -EINVAL;
958
959         ath6kl_wakeup_event(wmi->parent_dev);
960
961         return 0;
962 }
963
964 static int ath6kl_wmi_tx_pwr_reply_rx(struct wmi *wmi, u8 *datap, int len)
965 {
966         struct wmi_tx_pwr_reply *reply;
967
968         if (len < sizeof(struct wmi_tx_pwr_reply))
969                 return -EINVAL;
970
971         reply = (struct wmi_tx_pwr_reply *) datap;
972         ath6kl_txpwr_rx_evt(wmi->parent_dev, reply->dbM);
973
974         return 0;
975 }
976
977 static int ath6kl_wmi_keepalive_reply_rx(struct wmi *wmi, u8 *datap, int len)
978 {
979         if (len < sizeof(struct wmi_get_keepalive_cmd))
980                 return -EINVAL;
981
982         ath6kl_wakeup_event(wmi->parent_dev);
983
984         return 0;
985 }
986
987 static int ath6kl_wmi_scan_complete_rx(struct wmi *wmi, u8 *datap, int len)
988 {
989         struct wmi_scan_complete_event *ev;
990
991         ev = (struct wmi_scan_complete_event *) datap;
992
993         if (a_sle32_to_cpu(ev->status) == 0)
994                 wlan_refresh_inactive_nodes(wmi->parent_dev);
995
996         ath6kl_scan_complete_evt(wmi->parent_dev, a_sle32_to_cpu(ev->status));
997         wmi->is_probe_ssid = false;
998
999         return 0;
1000 }
1001
1002 /*
1003  * Target is reporting a programming error.  This is for
1004  * developer aid only.  Target only checks a few common violations
1005  * and it is responsibility of host to do all error checking.
1006  * Behavior of target after wmi error event is undefined.
1007  * A reset is recommended.
1008  */
1009 static int ath6kl_wmi_error_event_rx(struct wmi *wmi, u8 *datap, int len)
1010 {
1011         const char *type = "unknown error";
1012         struct wmi_cmd_error_event *ev;
1013         ev = (struct wmi_cmd_error_event *) datap;
1014
1015         switch (ev->err_code) {
1016         case INVALID_PARAM:
1017                 type = "invalid parameter";
1018                 break;
1019         case ILLEGAL_STATE:
1020                 type = "invalid state";
1021                 break;
1022         case INTERNAL_ERROR:
1023                 type = "internal error";
1024                 break;
1025         }
1026
1027         ath6kl_dbg(ATH6KL_DBG_WMI, "programming error, cmd=%d %s\n",
1028                    ev->cmd_id, type);
1029
1030         return 0;
1031 }
1032
1033 static int ath6kl_wmi_stats_event_rx(struct wmi *wmi, u8 *datap, int len)
1034 {
1035         ath6kl_tgt_stats_event(wmi->parent_dev, datap, len);
1036
1037         return 0;
1038 }
1039
1040 static u8 ath6kl_wmi_get_upper_threshold(s16 rssi,
1041                                          struct sq_threshold_params *sq_thresh,
1042                                          u32 size)
1043 {
1044         u32 index;
1045         u8 threshold = (u8) sq_thresh->upper_threshold[size - 1];
1046
1047         /* The list is already in sorted order. Get the next lower value */
1048         for (index = 0; index < size; index++) {
1049                 if (rssi < sq_thresh->upper_threshold[index]) {
1050                         threshold = (u8) sq_thresh->upper_threshold[index];
1051                         break;
1052                 }
1053         }
1054
1055         return threshold;
1056 }
1057
1058 static u8 ath6kl_wmi_get_lower_threshold(s16 rssi,
1059                                          struct sq_threshold_params *sq_thresh,
1060                                          u32 size)
1061 {
1062         u32 index;
1063         u8 threshold = (u8) sq_thresh->lower_threshold[size - 1];
1064
1065         /* The list is already in sorted order. Get the next lower value */
1066         for (index = 0; index < size; index++) {
1067                 if (rssi > sq_thresh->lower_threshold[index]) {
1068                         threshold = (u8) sq_thresh->lower_threshold[index];
1069                         break;
1070                 }
1071         }
1072
1073         return threshold;
1074 }
1075
1076 static int ath6kl_wmi_send_rssi_threshold_params(struct wmi *wmi,
1077                         struct wmi_rssi_threshold_params_cmd *rssi_cmd)
1078 {
1079         struct sk_buff *skb;
1080         struct wmi_rssi_threshold_params_cmd *cmd;
1081
1082         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1083         if (!skb)
1084                 return -ENOMEM;
1085
1086         cmd = (struct wmi_rssi_threshold_params_cmd *) skb->data;
1087         memcpy(cmd, rssi_cmd, sizeof(struct wmi_rssi_threshold_params_cmd));
1088
1089         return ath6kl_wmi_cmd_send(wmi, skb, WMI_RSSI_THRESHOLD_PARAMS_CMDID,
1090                                    NO_SYNC_WMIFLAG);
1091 }
1092
1093 static int ath6kl_wmi_rssi_threshold_event_rx(struct wmi *wmi, u8 *datap,
1094                                               int len)
1095 {
1096         struct wmi_rssi_threshold_event *reply;
1097         struct wmi_rssi_threshold_params_cmd cmd;
1098         struct sq_threshold_params *sq_thresh;
1099         enum wmi_rssi_threshold_val new_threshold;
1100         u8 upper_rssi_threshold, lower_rssi_threshold;
1101         s16 rssi;
1102         int ret;
1103
1104         if (len < sizeof(struct wmi_rssi_threshold_event))
1105                 return -EINVAL;
1106
1107         reply = (struct wmi_rssi_threshold_event *) datap;
1108         new_threshold = (enum wmi_rssi_threshold_val) reply->range;
1109         rssi = a_sle16_to_cpu(reply->rssi);
1110
1111         sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_RSSI];
1112
1113         /*
1114          * Identify the threshold breached and communicate that to the app.
1115          * After that install a new set of thresholds based on the signal
1116          * quality reported by the target
1117          */
1118         if (new_threshold) {
1119                 /* Upper threshold breached */
1120                 if (rssi < sq_thresh->upper_threshold[0]) {
1121                         ath6kl_dbg(ATH6KL_DBG_WMI,
1122                                 "spurious upper rssi threshold event: %d\n",
1123                                 rssi);
1124                 } else if ((rssi < sq_thresh->upper_threshold[1]) &&
1125                            (rssi >= sq_thresh->upper_threshold[0])) {
1126                         new_threshold = WMI_RSSI_THRESHOLD1_ABOVE;
1127                 } else if ((rssi < sq_thresh->upper_threshold[2]) &&
1128                            (rssi >= sq_thresh->upper_threshold[1])) {
1129                         new_threshold = WMI_RSSI_THRESHOLD2_ABOVE;
1130                 } else if ((rssi < sq_thresh->upper_threshold[3]) &&
1131                            (rssi >= sq_thresh->upper_threshold[2])) {
1132                         new_threshold = WMI_RSSI_THRESHOLD3_ABOVE;
1133                 } else if ((rssi < sq_thresh->upper_threshold[4]) &&
1134                            (rssi >= sq_thresh->upper_threshold[3])) {
1135                         new_threshold = WMI_RSSI_THRESHOLD4_ABOVE;
1136                 } else if ((rssi < sq_thresh->upper_threshold[5]) &&
1137                            (rssi >= sq_thresh->upper_threshold[4])) {
1138                         new_threshold = WMI_RSSI_THRESHOLD5_ABOVE;
1139                 } else if (rssi >= sq_thresh->upper_threshold[5]) {
1140                         new_threshold = WMI_RSSI_THRESHOLD6_ABOVE;
1141                 }
1142         } else {
1143                 /* Lower threshold breached */
1144                 if (rssi > sq_thresh->lower_threshold[0]) {
1145                         ath6kl_dbg(ATH6KL_DBG_WMI,
1146                                 "spurious lower rssi threshold event: %d %d\n",
1147                                 rssi, sq_thresh->lower_threshold[0]);
1148                 } else if ((rssi > sq_thresh->lower_threshold[1]) &&
1149                            (rssi <= sq_thresh->lower_threshold[0])) {
1150                         new_threshold = WMI_RSSI_THRESHOLD6_BELOW;
1151                 } else if ((rssi > sq_thresh->lower_threshold[2]) &&
1152                            (rssi <= sq_thresh->lower_threshold[1])) {
1153                         new_threshold = WMI_RSSI_THRESHOLD5_BELOW;
1154                 } else if ((rssi > sq_thresh->lower_threshold[3]) &&
1155                            (rssi <= sq_thresh->lower_threshold[2])) {
1156                         new_threshold = WMI_RSSI_THRESHOLD4_BELOW;
1157                 } else if ((rssi > sq_thresh->lower_threshold[4]) &&
1158                            (rssi <= sq_thresh->lower_threshold[3])) {
1159                         new_threshold = WMI_RSSI_THRESHOLD3_BELOW;
1160                 } else if ((rssi > sq_thresh->lower_threshold[5]) &&
1161                            (rssi <= sq_thresh->lower_threshold[4])) {
1162                         new_threshold = WMI_RSSI_THRESHOLD2_BELOW;
1163                 } else if (rssi <= sq_thresh->lower_threshold[5]) {
1164                         new_threshold = WMI_RSSI_THRESHOLD1_BELOW;
1165                 }
1166         }
1167
1168         /* Calculate and install the next set of thresholds */
1169         lower_rssi_threshold = ath6kl_wmi_get_lower_threshold(rssi, sq_thresh,
1170                                        sq_thresh->lower_threshold_valid_count);
1171         upper_rssi_threshold = ath6kl_wmi_get_upper_threshold(rssi, sq_thresh,
1172                                        sq_thresh->upper_threshold_valid_count);
1173
1174         /* Issue a wmi command to install the thresholds */
1175         cmd.thresh_above1_val = a_cpu_to_sle16(upper_rssi_threshold);
1176         cmd.thresh_below1_val = a_cpu_to_sle16(lower_rssi_threshold);
1177         cmd.weight = sq_thresh->weight;
1178         cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval);
1179
1180         ret = ath6kl_wmi_send_rssi_threshold_params(wmi, &cmd);
1181         if (ret) {
1182                 ath6kl_err("unable to configure rssi thresholds\n");
1183                 return -EIO;
1184         }
1185
1186         return 0;
1187 }
1188
1189 static int ath6kl_wmi_cac_event_rx(struct wmi *wmi, u8 *datap, int len)
1190 {
1191         struct wmi_cac_event *reply;
1192         struct ieee80211_tspec_ie *ts;
1193         u16 active_tsids, tsinfo;
1194         u8 tsid, index;
1195         u8 ts_id;
1196
1197         if (len < sizeof(struct wmi_cac_event))
1198                 return -EINVAL;
1199
1200         reply = (struct wmi_cac_event *) datap;
1201
1202         if ((reply->cac_indication == CAC_INDICATION_ADMISSION_RESP) &&
1203             (reply->status_code != IEEE80211_TSPEC_STATUS_ADMISS_ACCEPTED)) {
1204
1205                 ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion);
1206                 tsinfo = le16_to_cpu(ts->tsinfo);
1207                 tsid = (tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) &
1208                         IEEE80211_WMM_IE_TSPEC_TID_MASK;
1209
1210                 ath6kl_wmi_delete_pstream_cmd(wmi, reply->ac, tsid);
1211         } else if (reply->cac_indication == CAC_INDICATION_NO_RESP) {
1212                 /*
1213                  * Following assumes that there is only one outstanding
1214                  * ADDTS request when this event is received
1215                  */
1216                 spin_lock_bh(&wmi->lock);
1217                 active_tsids = wmi->stream_exist_for_ac[reply->ac];
1218                 spin_unlock_bh(&wmi->lock);
1219
1220                 for (index = 0; index < sizeof(active_tsids) * 8; index++) {
1221                         if ((active_tsids >> index) & 1)
1222                                 break;
1223                 }
1224                 if (index < (sizeof(active_tsids) * 8))
1225                         ath6kl_wmi_delete_pstream_cmd(wmi, reply->ac, index);
1226         }
1227
1228         /*
1229          * Clear active tsids and Add missing handling
1230          * for delete qos stream from AP
1231          */
1232         else if (reply->cac_indication == CAC_INDICATION_DELETE) {
1233
1234                 ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion);
1235                 tsinfo = le16_to_cpu(ts->tsinfo);
1236                 ts_id = ((tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) &
1237                          IEEE80211_WMM_IE_TSPEC_TID_MASK);
1238
1239                 spin_lock_bh(&wmi->lock);
1240                 wmi->stream_exist_for_ac[reply->ac] &= ~(1 << ts_id);
1241                 active_tsids = wmi->stream_exist_for_ac[reply->ac];
1242                 spin_unlock_bh(&wmi->lock);
1243
1244                 /* Indicate stream inactivity to driver layer only if all tsids
1245                  * within this AC are deleted.
1246                  */
1247                 if (!active_tsids) {
1248                         ath6kl_indicate_tx_activity(wmi->parent_dev, reply->ac,
1249                                                     false);
1250                         wmi->fat_pipe_exist &= ~(1 << reply->ac);
1251                 }
1252         }
1253
1254         return 0;
1255 }
1256
1257 static int ath6kl_wmi_send_snr_threshold_params(struct wmi *wmi,
1258                         struct wmi_snr_threshold_params_cmd *snr_cmd)
1259 {
1260         struct sk_buff *skb;
1261         struct wmi_snr_threshold_params_cmd *cmd;
1262
1263         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1264         if (!skb)
1265                 return -ENOMEM;
1266
1267         cmd = (struct wmi_snr_threshold_params_cmd *) skb->data;
1268         memcpy(cmd, snr_cmd, sizeof(struct wmi_snr_threshold_params_cmd));
1269
1270         return ath6kl_wmi_cmd_send(wmi, skb, WMI_SNR_THRESHOLD_PARAMS_CMDID,
1271                                    NO_SYNC_WMIFLAG);
1272 }
1273
1274 static int ath6kl_wmi_snr_threshold_event_rx(struct wmi *wmi, u8 *datap,
1275                                              int len)
1276 {
1277         struct wmi_snr_threshold_event *reply;
1278         struct sq_threshold_params *sq_thresh;
1279         struct wmi_snr_threshold_params_cmd cmd;
1280         enum wmi_snr_threshold_val new_threshold;
1281         u8 upper_snr_threshold, lower_snr_threshold;
1282         s16 snr;
1283         int ret;
1284
1285         if (len < sizeof(struct wmi_snr_threshold_event))
1286                 return -EINVAL;
1287
1288         reply = (struct wmi_snr_threshold_event *) datap;
1289
1290         new_threshold = (enum wmi_snr_threshold_val) reply->range;
1291         snr = reply->snr;
1292
1293         sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_SNR];
1294
1295         /*
1296          * Identify the threshold breached and communicate that to the app.
1297          * After that install a new set of thresholds based on the signal
1298          * quality reported by the target.
1299          */
1300         if (new_threshold) {
1301                 /* Upper threshold breached */
1302                 if (snr < sq_thresh->upper_threshold[0]) {
1303                         ath6kl_dbg(ATH6KL_DBG_WMI,
1304                                 "spurious upper snr threshold event: %d\n",
1305                                 snr);
1306                 } else if ((snr < sq_thresh->upper_threshold[1]) &&
1307                            (snr >= sq_thresh->upper_threshold[0])) {
1308                         new_threshold = WMI_SNR_THRESHOLD1_ABOVE;
1309                 } else if ((snr < sq_thresh->upper_threshold[2]) &&
1310                            (snr >= sq_thresh->upper_threshold[1])) {
1311                         new_threshold = WMI_SNR_THRESHOLD2_ABOVE;
1312                 } else if ((snr < sq_thresh->upper_threshold[3]) &&
1313                            (snr >= sq_thresh->upper_threshold[2])) {
1314                         new_threshold = WMI_SNR_THRESHOLD3_ABOVE;
1315                 } else if (snr >= sq_thresh->upper_threshold[3]) {
1316                         new_threshold = WMI_SNR_THRESHOLD4_ABOVE;
1317                 }
1318         } else {
1319                 /* Lower threshold breached */
1320                 if (snr > sq_thresh->lower_threshold[0]) {
1321                         ath6kl_dbg(ATH6KL_DBG_WMI,
1322                                 "spurious lower snr threshold event: %d\n",
1323                                 sq_thresh->lower_threshold[0]);
1324                 } else if ((snr > sq_thresh->lower_threshold[1]) &&
1325                            (snr <= sq_thresh->lower_threshold[0])) {
1326                         new_threshold = WMI_SNR_THRESHOLD4_BELOW;
1327                 } else if ((snr > sq_thresh->lower_threshold[2]) &&
1328                            (snr <= sq_thresh->lower_threshold[1])) {
1329                         new_threshold = WMI_SNR_THRESHOLD3_BELOW;
1330                 } else if ((snr > sq_thresh->lower_threshold[3]) &&
1331                            (snr <= sq_thresh->lower_threshold[2])) {
1332                         new_threshold = WMI_SNR_THRESHOLD2_BELOW;
1333                 } else if (snr <= sq_thresh->lower_threshold[3]) {
1334                         new_threshold = WMI_SNR_THRESHOLD1_BELOW;
1335                 }
1336         }
1337
1338         /* Calculate and install the next set of thresholds */
1339         lower_snr_threshold = ath6kl_wmi_get_lower_threshold(snr, sq_thresh,
1340                                        sq_thresh->lower_threshold_valid_count);
1341         upper_snr_threshold = ath6kl_wmi_get_upper_threshold(snr, sq_thresh,
1342                                        sq_thresh->upper_threshold_valid_count);
1343
1344         /* Issue a wmi command to install the thresholds */
1345         cmd.thresh_above1_val = upper_snr_threshold;
1346         cmd.thresh_below1_val = lower_snr_threshold;
1347         cmd.weight = sq_thresh->weight;
1348         cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval);
1349
1350         ath6kl_dbg(ATH6KL_DBG_WMI,
1351                    "snr: %d, threshold: %d, lower: %d, upper: %d\n",
1352                    snr, new_threshold,
1353                    lower_snr_threshold, upper_snr_threshold);
1354
1355         ret = ath6kl_wmi_send_snr_threshold_params(wmi, &cmd);
1356         if (ret) {
1357                 ath6kl_err("unable to configure snr threshold\n");
1358                 return -EIO;
1359         }
1360
1361         return 0;
1362 }
1363
1364 static int ath6kl_wmi_aplist_event_rx(struct wmi *wmi, u8 *datap, int len)
1365 {
1366         u16 ap_info_entry_size;
1367         struct wmi_aplist_event *ev = (struct wmi_aplist_event *) datap;
1368         struct wmi_ap_info_v1 *ap_info_v1;
1369         u8 index;
1370
1371         if (len < sizeof(struct wmi_aplist_event) ||
1372             ev->ap_list_ver != APLIST_VER1)
1373                 return -EINVAL;
1374
1375         ap_info_entry_size = sizeof(struct wmi_ap_info_v1);
1376         ap_info_v1 = (struct wmi_ap_info_v1 *) ev->ap_list;
1377
1378         ath6kl_dbg(ATH6KL_DBG_WMI,
1379                    "number of APs in aplist event: %d\n", ev->num_ap);
1380
1381         if (len < (int) (sizeof(struct wmi_aplist_event) +
1382                          (ev->num_ap - 1) * ap_info_entry_size))
1383                 return -EINVAL;
1384
1385         /* AP list version 1 contents */
1386         for (index = 0; index < ev->num_ap; index++) {
1387                 ath6kl_dbg(ATH6KL_DBG_WMI, "AP#%d BSSID %pM Channel %d\n",
1388                            index, ap_info_v1->bssid, ap_info_v1->channel);
1389                 ap_info_v1++;
1390         }
1391
1392         return 0;
1393 }
1394
1395 int ath6kl_wmi_cmd_send(struct wmi *wmi, struct sk_buff *skb,
1396                         enum wmi_cmd_id cmd_id, enum wmi_sync_flag sync_flag)
1397 {
1398         struct wmi_cmd_hdr *cmd_hdr;
1399         enum htc_endpoint_id ep_id = wmi->ep_id;
1400         int ret;
1401
1402         if (WARN_ON(skb == NULL))
1403                 return -EINVAL;
1404
1405         if (sync_flag >= END_WMIFLAG) {
1406                 dev_kfree_skb(skb);
1407                 return -EINVAL;
1408         }
1409
1410         if ((sync_flag == SYNC_BEFORE_WMIFLAG) ||
1411             (sync_flag == SYNC_BOTH_WMIFLAG)) {
1412                 /*
1413                  * Make sure all data currently queued is transmitted before
1414                  * the cmd execution.  Establish a new sync point.
1415                  */
1416                 ath6kl_wmi_sync_point(wmi);
1417         }
1418
1419         skb_push(skb, sizeof(struct wmi_cmd_hdr));
1420
1421         cmd_hdr = (struct wmi_cmd_hdr *) skb->data;
1422         cmd_hdr->cmd_id = cpu_to_le16(cmd_id);
1423         cmd_hdr->info1 = 0;     /* added for virtual interface */
1424
1425         /* Only for OPT_TX_CMD, use BE endpoint. */
1426         if (cmd_id == WMI_OPT_TX_FRAME_CMDID) {
1427                 ret = ath6kl_wmi_data_hdr_add(wmi, skb, OPT_MSGTYPE,
1428                                               false, false, 0, NULL);
1429                 if (ret) {
1430                         dev_kfree_skb(skb);
1431                         return ret;
1432                 }
1433                 ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev, WMM_AC_BE);
1434         }
1435
1436         ath6kl_control_tx(wmi->parent_dev, skb, ep_id);
1437
1438         if ((sync_flag == SYNC_AFTER_WMIFLAG) ||
1439             (sync_flag == SYNC_BOTH_WMIFLAG)) {
1440                 /*
1441                  * Make sure all new data queued waits for the command to
1442                  * execute. Establish a new sync point.
1443                  */
1444                 ath6kl_wmi_sync_point(wmi);
1445         }
1446
1447         return 0;
1448 }
1449
1450 int ath6kl_wmi_connect_cmd(struct wmi *wmi, enum network_type nw_type,
1451                            enum dot11_auth_mode dot11_auth_mode,
1452                            enum auth_mode auth_mode,
1453                            enum crypto_type pairwise_crypto,
1454                            u8 pairwise_crypto_len,
1455                            enum crypto_type group_crypto,
1456                            u8 group_crypto_len, int ssid_len, u8 *ssid,
1457                            u8 *bssid, u16 channel, u32 ctrl_flags)
1458 {
1459         struct sk_buff *skb;
1460         struct wmi_connect_cmd *cc;
1461         int ret;
1462
1463         wmi->traffic_class = 100;
1464
1465         if ((pairwise_crypto == NONE_CRYPT) && (group_crypto != NONE_CRYPT))
1466                 return -EINVAL;
1467
1468         if ((pairwise_crypto != NONE_CRYPT) && (group_crypto == NONE_CRYPT))
1469                 return -EINVAL;
1470
1471         skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_connect_cmd));
1472         if (!skb)
1473                 return -ENOMEM;
1474
1475         cc = (struct wmi_connect_cmd *) skb->data;
1476
1477         if (ssid_len)
1478                 memcpy(cc->ssid, ssid, ssid_len);
1479
1480         cc->ssid_len = ssid_len;
1481         cc->nw_type = nw_type;
1482         cc->dot11_auth_mode = dot11_auth_mode;
1483         cc->auth_mode = auth_mode;
1484         cc->prwise_crypto_type = pairwise_crypto;
1485         cc->prwise_crypto_len = pairwise_crypto_len;
1486         cc->grp_crypto_type = group_crypto;
1487         cc->grp_crypto_len = group_crypto_len;
1488         cc->ch = cpu_to_le16(channel);
1489         cc->ctrl_flags = cpu_to_le32(ctrl_flags);
1490
1491         if (bssid != NULL)
1492                 memcpy(cc->bssid, bssid, ETH_ALEN);
1493
1494         wmi->pair_crypto_type = pairwise_crypto;
1495         wmi->grp_crypto_type = group_crypto;
1496
1497         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_CONNECT_CMDID, NO_SYNC_WMIFLAG);
1498
1499         return ret;
1500 }
1501
1502 int ath6kl_wmi_reconnect_cmd(struct wmi *wmi, u8 *bssid, u16 channel)
1503 {
1504         struct sk_buff *skb;
1505         struct wmi_reconnect_cmd *cc;
1506         int ret;
1507
1508         wmi->traffic_class = 100;
1509
1510         skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_reconnect_cmd));
1511         if (!skb)
1512                 return -ENOMEM;
1513
1514         cc = (struct wmi_reconnect_cmd *) skb->data;
1515         cc->channel = cpu_to_le16(channel);
1516
1517         if (bssid != NULL)
1518                 memcpy(cc->bssid, bssid, ETH_ALEN);
1519
1520         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_RECONNECT_CMDID,
1521                                   NO_SYNC_WMIFLAG);
1522
1523         return ret;
1524 }
1525
1526 int ath6kl_wmi_disconnect_cmd(struct wmi *wmi)
1527 {
1528         int ret;
1529
1530         wmi->traffic_class = 100;
1531
1532         /* Disconnect command does not need to do a SYNC before. */
1533         ret = ath6kl_wmi_simple_cmd(wmi, WMI_DISCONNECT_CMDID);
1534
1535         return ret;
1536 }
1537
1538 int ath6kl_wmi_startscan_cmd(struct wmi *wmi, enum wmi_scan_type scan_type,
1539                              u32 force_fgscan, u32 is_legacy,
1540                              u32 home_dwell_time, u32 force_scan_interval,
1541                              s8 num_chan, u16 *ch_list)
1542 {
1543         struct sk_buff *skb;
1544         struct wmi_start_scan_cmd *sc;
1545         s8 size;
1546         int ret;
1547
1548         size = sizeof(struct wmi_start_scan_cmd);
1549
1550         if ((scan_type != WMI_LONG_SCAN) && (scan_type != WMI_SHORT_SCAN))
1551                 return -EINVAL;
1552
1553         if (num_chan > WMI_MAX_CHANNELS)
1554                 return -EINVAL;
1555
1556         if (num_chan)
1557                 size += sizeof(u16) * (num_chan - 1);
1558
1559         skb = ath6kl_wmi_get_new_buf(size);
1560         if (!skb)
1561                 return -ENOMEM;
1562
1563         sc = (struct wmi_start_scan_cmd *) skb->data;
1564         sc->scan_type = scan_type;
1565         sc->force_fg_scan = cpu_to_le32(force_fgscan);
1566         sc->is_legacy = cpu_to_le32(is_legacy);
1567         sc->home_dwell_time = cpu_to_le32(home_dwell_time);
1568         sc->force_scan_intvl = cpu_to_le32(force_scan_interval);
1569         sc->num_ch = num_chan;
1570
1571         if (num_chan)
1572                 memcpy(sc->ch_list, ch_list, num_chan * sizeof(u16));
1573
1574         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_START_SCAN_CMDID,
1575                                   NO_SYNC_WMIFLAG);
1576
1577         return ret;
1578 }
1579
1580 int ath6kl_wmi_scanparams_cmd(struct wmi *wmi, u16 fg_start_sec,
1581                               u16 fg_end_sec, u16 bg_sec,
1582                               u16 minact_chdw_msec, u16 maxact_chdw_msec,
1583                               u16 pas_chdw_msec, u8 short_scan_ratio,
1584                               u8 scan_ctrl_flag, u32 max_dfsch_act_time,
1585                               u16 maxact_scan_per_ssid)
1586 {
1587         struct sk_buff *skb;
1588         struct wmi_scan_params_cmd *sc;
1589         int ret;
1590
1591         skb = ath6kl_wmi_get_new_buf(sizeof(*sc));
1592         if (!skb)
1593                 return -ENOMEM;
1594
1595         sc = (struct wmi_scan_params_cmd *) skb->data;
1596         sc->fg_start_period = cpu_to_le16(fg_start_sec);
1597         sc->fg_end_period = cpu_to_le16(fg_end_sec);
1598         sc->bg_period = cpu_to_le16(bg_sec);
1599         sc->minact_chdwell_time = cpu_to_le16(minact_chdw_msec);
1600         sc->maxact_chdwell_time = cpu_to_le16(maxact_chdw_msec);
1601         sc->pas_chdwell_time = cpu_to_le16(pas_chdw_msec);
1602         sc->short_scan_ratio = short_scan_ratio;
1603         sc->scan_ctrl_flags = scan_ctrl_flag;
1604         sc->max_dfsch_act_time = cpu_to_le32(max_dfsch_act_time);
1605         sc->maxact_scan_per_ssid = cpu_to_le16(maxact_scan_per_ssid);
1606
1607         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_SCAN_PARAMS_CMDID,
1608                                   NO_SYNC_WMIFLAG);
1609         return ret;
1610 }
1611
1612 int ath6kl_wmi_bssfilter_cmd(struct wmi *wmi, u8 filter, u32 ie_mask)
1613 {
1614         struct sk_buff *skb;
1615         struct wmi_bss_filter_cmd *cmd;
1616         int ret;
1617
1618         if (filter >= LAST_BSS_FILTER)
1619                 return -EINVAL;
1620
1621         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1622         if (!skb)
1623                 return -ENOMEM;
1624
1625         cmd = (struct wmi_bss_filter_cmd *) skb->data;
1626         cmd->bss_filter = filter;
1627         cmd->ie_mask = cpu_to_le32(ie_mask);
1628
1629         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_BSS_FILTER_CMDID,
1630                                   NO_SYNC_WMIFLAG);
1631         return ret;
1632 }
1633
1634 int ath6kl_wmi_probedssid_cmd(struct wmi *wmi, u8 index, u8 flag,
1635                               u8 ssid_len, u8 *ssid)
1636 {
1637         struct sk_buff *skb;
1638         struct wmi_probed_ssid_cmd *cmd;
1639         int ret;
1640
1641         if (index > MAX_PROBED_SSID_INDEX)
1642                 return -EINVAL;
1643
1644         if (ssid_len > sizeof(cmd->ssid))
1645                 return -EINVAL;
1646
1647         if ((flag & (DISABLE_SSID_FLAG | ANY_SSID_FLAG)) && (ssid_len > 0))
1648                 return -EINVAL;
1649
1650         if ((flag & SPECIFIC_SSID_FLAG) && !ssid_len)
1651                 return -EINVAL;
1652
1653         if (flag & SPECIFIC_SSID_FLAG)
1654                 wmi->is_probe_ssid = true;
1655
1656         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1657         if (!skb)
1658                 return -ENOMEM;
1659
1660         cmd = (struct wmi_probed_ssid_cmd *) skb->data;
1661         cmd->entry_index = index;
1662         cmd->flag = flag;
1663         cmd->ssid_len = ssid_len;
1664         memcpy(cmd->ssid, ssid, ssid_len);
1665
1666         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_PROBED_SSID_CMDID,
1667                                   NO_SYNC_WMIFLAG);
1668         return ret;
1669 }
1670
1671 int ath6kl_wmi_listeninterval_cmd(struct wmi *wmi, u16 listen_interval,
1672                                   u16 listen_beacons)
1673 {
1674         struct sk_buff *skb;
1675         struct wmi_listen_int_cmd *cmd;
1676         int ret;
1677
1678         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1679         if (!skb)
1680                 return -ENOMEM;
1681
1682         cmd = (struct wmi_listen_int_cmd *) skb->data;
1683         cmd->listen_intvl = cpu_to_le16(listen_interval);
1684         cmd->num_beacons = cpu_to_le16(listen_beacons);
1685
1686         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_LISTEN_INT_CMDID,
1687                                   NO_SYNC_WMIFLAG);
1688         return ret;
1689 }
1690
1691 int ath6kl_wmi_powermode_cmd(struct wmi *wmi, u8 pwr_mode)
1692 {
1693         struct sk_buff *skb;
1694         struct wmi_power_mode_cmd *cmd;
1695         int ret;
1696
1697         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1698         if (!skb)
1699                 return -ENOMEM;
1700
1701         cmd = (struct wmi_power_mode_cmd *) skb->data;
1702         cmd->pwr_mode = pwr_mode;
1703         wmi->pwr_mode = pwr_mode;
1704
1705         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_POWER_MODE_CMDID,
1706                                   NO_SYNC_WMIFLAG);
1707         return ret;
1708 }
1709
1710 int ath6kl_wmi_pmparams_cmd(struct wmi *wmi, u16 idle_period,
1711                             u16 ps_poll_num, u16 dtim_policy,
1712                             u16 tx_wakeup_policy, u16 num_tx_to_wakeup,
1713                             u16 ps_fail_event_policy)
1714 {
1715         struct sk_buff *skb;
1716         struct wmi_power_params_cmd *pm;
1717         int ret;
1718
1719         skb = ath6kl_wmi_get_new_buf(sizeof(*pm));
1720         if (!skb)
1721                 return -ENOMEM;
1722
1723         pm = (struct wmi_power_params_cmd *)skb->data;
1724         pm->idle_period = cpu_to_le16(idle_period);
1725         pm->pspoll_number = cpu_to_le16(ps_poll_num);
1726         pm->dtim_policy = cpu_to_le16(dtim_policy);
1727         pm->tx_wakeup_policy = cpu_to_le16(tx_wakeup_policy);
1728         pm->num_tx_to_wakeup = cpu_to_le16(num_tx_to_wakeup);
1729         pm->ps_fail_event_policy = cpu_to_le16(ps_fail_event_policy);
1730
1731         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_POWER_PARAMS_CMDID,
1732                                   NO_SYNC_WMIFLAG);
1733         return ret;
1734 }
1735
1736 int ath6kl_wmi_disctimeout_cmd(struct wmi *wmi, u8 timeout)
1737 {
1738         struct sk_buff *skb;
1739         struct wmi_disc_timeout_cmd *cmd;
1740         int ret;
1741
1742         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1743         if (!skb)
1744                 return -ENOMEM;
1745
1746         cmd = (struct wmi_disc_timeout_cmd *) skb->data;
1747         cmd->discon_timeout = timeout;
1748
1749         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_DISC_TIMEOUT_CMDID,
1750                                   NO_SYNC_WMIFLAG);
1751         return ret;
1752 }
1753
1754 int ath6kl_wmi_addkey_cmd(struct wmi *wmi, u8 key_index,
1755                           enum crypto_type key_type,
1756                           u8 key_usage, u8 key_len,
1757                           u8 *key_rsc, u8 *key_material,
1758                           u8 key_op_ctrl, u8 *mac_addr,
1759                           enum wmi_sync_flag sync_flag)
1760 {
1761         struct sk_buff *skb;
1762         struct wmi_add_cipher_key_cmd *cmd;
1763         int ret;
1764
1765         if ((key_index > WMI_MAX_KEY_INDEX) || (key_len > WMI_MAX_KEY_LEN) ||
1766             (key_material == NULL))
1767                 return -EINVAL;
1768
1769         if ((WEP_CRYPT != key_type) && (NULL == key_rsc))
1770                 return -EINVAL;
1771
1772         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1773         if (!skb)
1774                 return -ENOMEM;
1775
1776         cmd = (struct wmi_add_cipher_key_cmd *) skb->data;
1777         cmd->key_index = key_index;
1778         cmd->key_type = key_type;
1779         cmd->key_usage = key_usage;
1780         cmd->key_len = key_len;
1781         memcpy(cmd->key, key_material, key_len);
1782
1783         if (key_rsc != NULL)
1784                 memcpy(cmd->key_rsc, key_rsc, sizeof(cmd->key_rsc));
1785
1786         cmd->key_op_ctrl = key_op_ctrl;
1787
1788         if (mac_addr)
1789                 memcpy(cmd->key_mac_addr, mac_addr, ETH_ALEN);
1790
1791         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_ADD_CIPHER_KEY_CMDID,
1792                                   sync_flag);
1793
1794         return ret;
1795 }
1796
1797 int ath6kl_wmi_add_krk_cmd(struct wmi *wmi, u8 *krk)
1798 {
1799         struct sk_buff *skb;
1800         struct wmi_add_krk_cmd *cmd;
1801         int ret;
1802
1803         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1804         if (!skb)
1805                 return -ENOMEM;
1806
1807         cmd = (struct wmi_add_krk_cmd *) skb->data;
1808         memcpy(cmd->krk, krk, WMI_KRK_LEN);
1809
1810         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_ADD_KRK_CMDID, NO_SYNC_WMIFLAG);
1811
1812         return ret;
1813 }
1814
1815 int ath6kl_wmi_deletekey_cmd(struct wmi *wmi, u8 key_index)
1816 {
1817         struct sk_buff *skb;
1818         struct wmi_delete_cipher_key_cmd *cmd;
1819         int ret;
1820
1821         if (key_index > WMI_MAX_KEY_INDEX)
1822                 return -EINVAL;
1823
1824         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1825         if (!skb)
1826                 return -ENOMEM;
1827
1828         cmd = (struct wmi_delete_cipher_key_cmd *) skb->data;
1829         cmd->key_index = key_index;
1830
1831         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_DELETE_CIPHER_KEY_CMDID,
1832                                   NO_SYNC_WMIFLAG);
1833
1834         return ret;
1835 }
1836
1837 int ath6kl_wmi_setpmkid_cmd(struct wmi *wmi, const u8 *bssid,
1838                             const u8 *pmkid, bool set)
1839 {
1840         struct sk_buff *skb;
1841         struct wmi_setpmkid_cmd *cmd;
1842         int ret;
1843
1844         if (bssid == NULL)
1845                 return -EINVAL;
1846
1847         if (set && pmkid == NULL)
1848                 return -EINVAL;
1849
1850         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1851         if (!skb)
1852                 return -ENOMEM;
1853
1854         cmd = (struct wmi_setpmkid_cmd *) skb->data;
1855         memcpy(cmd->bssid, bssid, ETH_ALEN);
1856         if (set) {
1857                 memcpy(cmd->pmkid, pmkid, sizeof(cmd->pmkid));
1858                 cmd->enable = PMKID_ENABLE;
1859         } else {
1860                 memset(cmd->pmkid, 0, sizeof(cmd->pmkid));
1861                 cmd->enable = PMKID_DISABLE;
1862         }
1863
1864         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_PMKID_CMDID,
1865                                   NO_SYNC_WMIFLAG);
1866
1867         return ret;
1868 }
1869
1870 static int ath6kl_wmi_data_sync_send(struct wmi *wmi, struct sk_buff *skb,
1871                               enum htc_endpoint_id ep_id)
1872 {
1873         struct wmi_data_hdr *data_hdr;
1874         int ret;
1875
1876         if (WARN_ON(skb == NULL || ep_id == wmi->ep_id))
1877                 return -EINVAL;
1878
1879         skb_push(skb, sizeof(struct wmi_data_hdr));
1880
1881         data_hdr = (struct wmi_data_hdr *) skb->data;
1882         data_hdr->info = SYNC_MSGTYPE << WMI_DATA_HDR_MSG_TYPE_SHIFT;
1883         data_hdr->info3 = 0;
1884
1885         ret = ath6kl_control_tx(wmi->parent_dev, skb, ep_id);
1886
1887         return ret;
1888 }
1889
1890 static int ath6kl_wmi_sync_point(struct wmi *wmi)
1891 {
1892         struct sk_buff *skb;
1893         struct wmi_sync_cmd *cmd;
1894         struct wmi_data_sync_bufs data_sync_bufs[WMM_NUM_AC];
1895         enum htc_endpoint_id ep_id;
1896         u8 index, num_pri_streams = 0;
1897         int ret = 0;
1898
1899         memset(data_sync_bufs, 0, sizeof(data_sync_bufs));
1900
1901         spin_lock_bh(&wmi->lock);
1902
1903         for (index = 0; index < WMM_NUM_AC; index++) {
1904                 if (wmi->fat_pipe_exist & (1 << index)) {
1905                         num_pri_streams++;
1906                         data_sync_bufs[num_pri_streams - 1].traffic_class =
1907                             index;
1908                 }
1909         }
1910
1911         spin_unlock_bh(&wmi->lock);
1912
1913         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1914         if (!skb) {
1915                 ret = -ENOMEM;
1916                 goto free_skb;
1917         }
1918
1919         cmd = (struct wmi_sync_cmd *) skb->data;
1920
1921         /*
1922          * In the SYNC cmd sent on the control Ep, send a bitmap
1923          * of the data eps on which the Data Sync will be sent
1924          */
1925         cmd->data_sync_map = wmi->fat_pipe_exist;
1926
1927         for (index = 0; index < num_pri_streams; index++) {
1928                 data_sync_bufs[index].skb = ath6kl_buf_alloc(0);
1929                 if (data_sync_bufs[index].skb == NULL) {
1930                         ret = -ENOMEM;
1931                         break;
1932                 }
1933         }
1934
1935         /*
1936          * If buffer allocation for any of the dataSync fails,
1937          * then do not send the Synchronize cmd on the control ep
1938          */
1939         if (ret)
1940                 goto free_skb;
1941
1942         /*
1943          * Send sync cmd followed by sync data messages on all
1944          * endpoints being used
1945          */
1946         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SYNCHRONIZE_CMDID,
1947                                   NO_SYNC_WMIFLAG);
1948
1949         if (ret)
1950                 goto free_skb;
1951
1952         /* cmd buffer sent, we no longer own it */
1953         skb = NULL;
1954
1955         for (index = 0; index < num_pri_streams; index++) {
1956
1957                 if (WARN_ON(!data_sync_bufs[index].skb))
1958                         break;
1959
1960                 ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev,
1961                                                data_sync_bufs[index].
1962                                                traffic_class);
1963                 ret =
1964                     ath6kl_wmi_data_sync_send(wmi, data_sync_bufs[index].skb,
1965                                               ep_id);
1966
1967                 if (ret)
1968                         break;
1969
1970                 data_sync_bufs[index].skb = NULL;
1971         }
1972
1973 free_skb:
1974         /* free up any resources left over (possibly due to an error) */
1975         if (skb)
1976                 dev_kfree_skb(skb);
1977
1978         for (index = 0; index < num_pri_streams; index++) {
1979                 if (data_sync_bufs[index].skb != NULL) {
1980                         dev_kfree_skb((struct sk_buff *)data_sync_bufs[index].
1981                                       skb);
1982                 }
1983         }
1984
1985         return ret;
1986 }
1987
1988 int ath6kl_wmi_create_pstream_cmd(struct wmi *wmi,
1989                                   struct wmi_create_pstream_cmd *params)
1990 {
1991         struct sk_buff *skb;
1992         struct wmi_create_pstream_cmd *cmd;
1993         u8 fatpipe_exist_for_ac = 0;
1994         s32 min_phy = 0;
1995         s32 nominal_phy = 0;
1996         int ret;
1997
1998         if (!((params->user_pri < 8) &&
1999               (params->user_pri <= 0x7) &&
2000               (up_to_ac[params->user_pri & 0x7] == params->traffic_class) &&
2001               (params->traffic_direc == UPLINK_TRAFFIC ||
2002                params->traffic_direc == DNLINK_TRAFFIC ||
2003                params->traffic_direc == BIDIR_TRAFFIC) &&
2004               (params->traffic_type == TRAFFIC_TYPE_APERIODIC ||
2005                params->traffic_type == TRAFFIC_TYPE_PERIODIC) &&
2006               (params->voice_psc_cap == DISABLE_FOR_THIS_AC ||
2007                params->voice_psc_cap == ENABLE_FOR_THIS_AC ||
2008                params->voice_psc_cap == ENABLE_FOR_ALL_AC) &&
2009               (params->tsid == WMI_IMPLICIT_PSTREAM ||
2010                params->tsid <= WMI_MAX_THINSTREAM))) {
2011                 return -EINVAL;
2012         }
2013
2014         /*
2015          * Check nominal PHY rate is >= minimalPHY,
2016          * so that DUT can allow TSRS IE
2017          */
2018
2019         /* Get the physical rate (units of bps) */
2020         min_phy = ((le32_to_cpu(params->min_phy_rate) / 1000) / 1000);
2021
2022         /* Check minimal phy < nominal phy rate */
2023         if (params->nominal_phy >= min_phy) {
2024                 /* unit of 500 kbps */
2025                 nominal_phy = (params->nominal_phy * 1000) / 500;
2026                 ath6kl_dbg(ATH6KL_DBG_WMI,
2027                            "TSRS IE enabled::MinPhy %x->NominalPhy ===> %x\n",
2028                            min_phy, nominal_phy);
2029
2030                 params->nominal_phy = nominal_phy;
2031         } else {
2032                 params->nominal_phy = 0;
2033         }
2034
2035         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2036         if (!skb)
2037                 return -ENOMEM;
2038
2039         ath6kl_dbg(ATH6KL_DBG_WMI,
2040                    "sending create_pstream_cmd: ac=%d  tsid:%d\n",
2041                    params->traffic_class, params->tsid);
2042
2043         cmd = (struct wmi_create_pstream_cmd *) skb->data;
2044         memcpy(cmd, params, sizeof(*cmd));
2045
2046         /* This is an implicitly created Fat pipe */
2047         if ((u32) params->tsid == (u32) WMI_IMPLICIT_PSTREAM) {
2048                 spin_lock_bh(&wmi->lock);
2049                 fatpipe_exist_for_ac = (wmi->fat_pipe_exist &
2050                                         (1 << params->traffic_class));
2051                 wmi->fat_pipe_exist |= (1 << params->traffic_class);
2052                 spin_unlock_bh(&wmi->lock);
2053         } else {
2054                 /* explicitly created thin stream within a fat pipe */
2055                 spin_lock_bh(&wmi->lock);
2056                 fatpipe_exist_for_ac = (wmi->fat_pipe_exist &
2057                                         (1 << params->traffic_class));
2058                 wmi->stream_exist_for_ac[params->traffic_class] |=
2059                     (1 << params->tsid);
2060                 /*
2061                  * If a thinstream becomes active, the fat pipe automatically
2062                  * becomes active
2063                  */
2064                 wmi->fat_pipe_exist |= (1 << params->traffic_class);
2065                 spin_unlock_bh(&wmi->lock);
2066         }
2067
2068         /*
2069          * Indicate activty change to driver layer only if this is the
2070          * first TSID to get created in this AC explicitly or an implicit
2071          * fat pipe is getting created.
2072          */
2073         if (!fatpipe_exist_for_ac)
2074                 ath6kl_indicate_tx_activity(wmi->parent_dev,
2075                                             params->traffic_class, true);
2076
2077         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_CREATE_PSTREAM_CMDID,
2078                                   NO_SYNC_WMIFLAG);
2079         return ret;
2080 }
2081
2082 int ath6kl_wmi_delete_pstream_cmd(struct wmi *wmi, u8 traffic_class, u8 tsid)
2083 {
2084         struct sk_buff *skb;
2085         struct wmi_delete_pstream_cmd *cmd;
2086         u16 active_tsids = 0;
2087         int ret;
2088
2089         if (traffic_class > 3) {
2090                 ath6kl_err("invalid traffic class: %d\n", traffic_class);
2091                 return -EINVAL;
2092         }
2093
2094         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2095         if (!skb)
2096                 return -ENOMEM;
2097
2098         cmd = (struct wmi_delete_pstream_cmd *) skb->data;
2099         cmd->traffic_class = traffic_class;
2100         cmd->tsid = tsid;
2101
2102         spin_lock_bh(&wmi->lock);
2103         active_tsids = wmi->stream_exist_for_ac[traffic_class];
2104         spin_unlock_bh(&wmi->lock);
2105
2106         if (!(active_tsids & (1 << tsid))) {
2107                 dev_kfree_skb(skb);
2108                 ath6kl_dbg(ATH6KL_DBG_WMI,
2109                            "TSID %d doesn't exist for traffic class: %d\n",
2110                            tsid, traffic_class);
2111                 return -ENODATA;
2112         }
2113
2114         ath6kl_dbg(ATH6KL_DBG_WMI,
2115                    "sending delete_pstream_cmd: traffic class: %d tsid=%d\n",
2116                    traffic_class, tsid);
2117
2118         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_DELETE_PSTREAM_CMDID,
2119                                   SYNC_BEFORE_WMIFLAG);
2120
2121         spin_lock_bh(&wmi->lock);
2122         wmi->stream_exist_for_ac[traffic_class] &= ~(1 << tsid);
2123         active_tsids = wmi->stream_exist_for_ac[traffic_class];
2124         spin_unlock_bh(&wmi->lock);
2125
2126         /*
2127          * Indicate stream inactivity to driver layer only if all tsids
2128          * within this AC are deleted.
2129          */
2130         if (!active_tsids) {
2131                 ath6kl_indicate_tx_activity(wmi->parent_dev,
2132                                             traffic_class, false);
2133                 wmi->fat_pipe_exist &= ~(1 << traffic_class);
2134         }
2135
2136         return ret;
2137 }
2138
2139 int ath6kl_wmi_set_ip_cmd(struct wmi *wmi, struct wmi_set_ip_cmd *ip_cmd)
2140 {
2141         struct sk_buff *skb;
2142         struct wmi_set_ip_cmd *cmd;
2143         int ret;
2144
2145         /* Multicast address are not valid */
2146         if ((*((u8 *) &ip_cmd->ips[0]) >= 0xE0) ||
2147             (*((u8 *) &ip_cmd->ips[1]) >= 0xE0))
2148                 return -EINVAL;
2149
2150         skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_ip_cmd));
2151         if (!skb)
2152                 return -ENOMEM;
2153
2154         cmd = (struct wmi_set_ip_cmd *) skb->data;
2155         memcpy(cmd, ip_cmd, sizeof(struct wmi_set_ip_cmd));
2156
2157         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_IP_CMDID, NO_SYNC_WMIFLAG);
2158         return ret;
2159 }
2160
2161 static int ath6kl_wmi_get_wow_list_event_rx(struct wmi *wmi, u8 * datap,
2162                                             int len)
2163 {
2164         if (len < sizeof(struct wmi_get_wow_list_reply))
2165                 return -EINVAL;
2166
2167         return 0;
2168 }
2169
2170 static int ath6kl_wmi_cmd_send_xtnd(struct wmi *wmi, struct sk_buff *skb,
2171                                     enum wmix_command_id cmd_id,
2172                                     enum wmi_sync_flag sync_flag)
2173 {
2174         struct wmix_cmd_hdr *cmd_hdr;
2175         int ret;
2176
2177         skb_push(skb, sizeof(struct wmix_cmd_hdr));
2178
2179         cmd_hdr = (struct wmix_cmd_hdr *) skb->data;
2180         cmd_hdr->cmd_id = cpu_to_le32(cmd_id);
2181
2182         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_EXTENSION_CMDID, sync_flag);
2183
2184         return ret;
2185 }
2186
2187 int ath6kl_wmi_get_challenge_resp_cmd(struct wmi *wmi, u32 cookie, u32 source)
2188 {
2189         struct sk_buff *skb;
2190         struct wmix_hb_challenge_resp_cmd *cmd;
2191         int ret;
2192
2193         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2194         if (!skb)
2195                 return -ENOMEM;
2196
2197         cmd = (struct wmix_hb_challenge_resp_cmd *) skb->data;
2198         cmd->cookie = cpu_to_le32(cookie);
2199         cmd->source = cpu_to_le32(source);
2200
2201         ret = ath6kl_wmi_cmd_send_xtnd(wmi, skb, WMIX_HB_CHALLENGE_RESP_CMDID,
2202                                        NO_SYNC_WMIFLAG);
2203         return ret;
2204 }
2205
2206 int ath6kl_wmi_get_stats_cmd(struct wmi *wmi)
2207 {
2208         return ath6kl_wmi_simple_cmd(wmi, WMI_GET_STATISTICS_CMDID);
2209 }
2210
2211 int ath6kl_wmi_set_tx_pwr_cmd(struct wmi *wmi, u8 dbM)
2212 {
2213         struct sk_buff *skb;
2214         struct wmi_set_tx_pwr_cmd *cmd;
2215         int ret;
2216
2217         skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_tx_pwr_cmd));
2218         if (!skb)
2219                 return -ENOMEM;
2220
2221         cmd = (struct wmi_set_tx_pwr_cmd *) skb->data;
2222         cmd->dbM = dbM;
2223
2224         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_TX_PWR_CMDID,
2225                                   NO_SYNC_WMIFLAG);
2226
2227         return ret;
2228 }
2229
2230 int ath6kl_wmi_get_tx_pwr_cmd(struct wmi *wmi)
2231 {
2232         return ath6kl_wmi_simple_cmd(wmi, WMI_GET_TX_PWR_CMDID);
2233 }
2234
2235 int ath6kl_wmi_set_lpreamble_cmd(struct wmi *wmi, u8 status, u8 preamble_policy)
2236 {
2237         struct sk_buff *skb;
2238         struct wmi_set_lpreamble_cmd *cmd;
2239         int ret;
2240
2241         skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_lpreamble_cmd));
2242         if (!skb)
2243                 return -ENOMEM;
2244
2245         cmd = (struct wmi_set_lpreamble_cmd *) skb->data;
2246         cmd->status = status;
2247         cmd->preamble_policy = preamble_policy;
2248
2249         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_LPREAMBLE_CMDID,
2250                                   NO_SYNC_WMIFLAG);
2251         return ret;
2252 }
2253
2254 int ath6kl_wmi_set_rts_cmd(struct wmi *wmi, u16 threshold)
2255 {
2256         struct sk_buff *skb;
2257         struct wmi_set_rts_cmd *cmd;
2258         int ret;
2259
2260         skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_rts_cmd));
2261         if (!skb)
2262                 return -ENOMEM;
2263
2264         cmd = (struct wmi_set_rts_cmd *) skb->data;
2265         cmd->threshold = cpu_to_le16(threshold);
2266
2267         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_RTS_CMDID, NO_SYNC_WMIFLAG);
2268         return ret;
2269 }
2270
2271 int ath6kl_wmi_set_wmm_txop(struct wmi *wmi, enum wmi_txop_cfg cfg)
2272 {
2273         struct sk_buff *skb;
2274         struct wmi_set_wmm_txop_cmd *cmd;
2275         int ret;
2276
2277         if (!((cfg == WMI_TXOP_DISABLED) || (cfg == WMI_TXOP_ENABLED)))
2278                 return -EINVAL;
2279
2280         skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_wmm_txop_cmd));
2281         if (!skb)
2282                 return -ENOMEM;
2283
2284         cmd = (struct wmi_set_wmm_txop_cmd *) skb->data;
2285         cmd->txop_enable = cfg;
2286
2287         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_WMM_TXOP_CMDID,
2288                                   NO_SYNC_WMIFLAG);
2289         return ret;
2290 }
2291
2292 int ath6kl_wmi_set_keepalive_cmd(struct wmi *wmi, u8 keep_alive_intvl)
2293 {
2294         struct sk_buff *skb;
2295         struct wmi_set_keepalive_cmd *cmd;
2296         int ret;
2297
2298         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2299         if (!skb)
2300                 return -ENOMEM;
2301
2302         cmd = (struct wmi_set_keepalive_cmd *) skb->data;
2303         cmd->keep_alive_intvl = keep_alive_intvl;
2304         wmi->keep_alive_intvl = keep_alive_intvl;
2305
2306         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_SET_KEEPALIVE_CMDID,
2307                                   NO_SYNC_WMIFLAG);
2308         return ret;
2309 }
2310
2311 s32 ath6kl_wmi_get_rate(s8 rate_index)
2312 {
2313         if (rate_index == RATE_AUTO)
2314                 return 0;
2315
2316         return wmi_rate_tbl[(u32) rate_index][0];
2317 }
2318
2319 void ath6kl_wmi_node_return(struct wmi *wmi, struct bss *bss)
2320 {
2321         if (bss)
2322                 wlan_node_return(&wmi->parent_dev->scan_table, bss);
2323 }
2324
2325 struct bss *ath6kl_wmi_find_ssid_node(struct wmi *wmi, u8 * ssid,
2326                                       u32 ssid_len, bool is_wpa2,
2327                                       bool match_ssid)
2328 {
2329         struct bss *node = NULL;
2330
2331         node = wlan_find_ssid_node(&wmi->parent_dev->scan_table, ssid,
2332                                   ssid_len, is_wpa2, match_ssid);
2333         return node;
2334 }
2335
2336 struct bss *ath6kl_wmi_find_node(struct wmi *wmi, const u8 * mac_addr)
2337 {
2338         struct bss *ni = NULL;
2339
2340         ni = wlan_find_node(&wmi->parent_dev->scan_table, mac_addr);
2341
2342         return ni;
2343 }
2344
2345 void ath6kl_wmi_node_free(struct wmi *wmi, const u8 * mac_addr)
2346 {
2347         struct bss *ni = NULL;
2348
2349         ni = wlan_find_node(&wmi->parent_dev->scan_table, mac_addr);
2350         if (ni != NULL)
2351                 wlan_node_reclaim(&wmi->parent_dev->scan_table, ni);
2352
2353         return;
2354 }
2355
2356 static int ath6kl_wmi_get_pmkid_list_event_rx(struct wmi *wmi, u8 *datap,
2357                                               u32 len)
2358 {
2359         struct wmi_pmkid_list_reply *reply;
2360         u32 expected_len;
2361
2362         if (len < sizeof(struct wmi_pmkid_list_reply))
2363                 return -EINVAL;
2364
2365         reply = (struct wmi_pmkid_list_reply *)datap;
2366         expected_len = sizeof(reply->num_pmkid) +
2367                 le32_to_cpu(reply->num_pmkid) * WMI_PMKID_LEN;
2368
2369         if (len < expected_len)
2370                 return -EINVAL;
2371
2372         return 0;
2373 }
2374
2375 static int ath6kl_wmi_addba_req_event_rx(struct wmi *wmi, u8 *datap, int len)
2376 {
2377         struct wmi_addba_req_event *cmd = (struct wmi_addba_req_event *) datap;
2378
2379         aggr_recv_addba_req_evt(wmi->parent_dev, cmd->tid,
2380                                 le16_to_cpu(cmd->st_seq_no), cmd->win_sz);
2381
2382         return 0;
2383 }
2384
2385 static int ath6kl_wmi_delba_req_event_rx(struct wmi *wmi, u8 *datap, int len)
2386 {
2387         struct wmi_delba_event *cmd = (struct wmi_delba_event *) datap;
2388
2389         aggr_recv_delba_req_evt(wmi->parent_dev, cmd->tid);
2390
2391         return 0;
2392 }
2393
2394 /*  AP mode functions */
2395 static int ath6kl_wmi_pspoll_event_rx(struct wmi *wmi, u8 *datap, int len)
2396 {
2397         struct wmi_pspoll_event *ev;
2398
2399         if (len < sizeof(struct wmi_pspoll_event))
2400                 return -EINVAL;
2401
2402         ev = (struct wmi_pspoll_event *) datap;
2403
2404         ath6kl_pspoll_event(wmi->parent_dev, le16_to_cpu(ev->aid));
2405
2406         return 0;
2407 }
2408
2409 static int ath6kl_wmi_dtimexpiry_event_rx(struct wmi *wmi, u8 *datap, int len)
2410 {
2411         ath6kl_dtimexpiry_event(wmi->parent_dev);
2412
2413         return 0;
2414 }
2415
2416 int ath6kl_wmi_set_pvb_cmd(struct wmi *wmi, u16 aid, bool flag)
2417 {
2418         struct sk_buff *skb;
2419         struct wmi_ap_set_pvb_cmd *cmd;
2420         int ret;
2421
2422         skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_ap_set_pvb_cmd));
2423         if (!skb)
2424                 return -ENOMEM;
2425
2426         cmd = (struct wmi_ap_set_pvb_cmd *) skb->data;
2427         cmd->aid = cpu_to_le16(aid);
2428         cmd->flag = cpu_to_le32(flag);
2429
2430         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_AP_SET_PVB_CMDID,
2431                                   NO_SYNC_WMIFLAG);
2432
2433         return 0;
2434 }
2435
2436 int ath6kl_wmi_set_rx_frame_format_cmd(struct wmi *wmi, u8 rx_meta_ver,
2437                                        bool rx_dot11_hdr, bool defrag_on_host)
2438 {
2439         struct sk_buff *skb;
2440         struct wmi_rx_frame_format_cmd *cmd;
2441         int ret;
2442
2443         skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2444         if (!skb)
2445                 return -ENOMEM;
2446
2447         cmd = (struct wmi_rx_frame_format_cmd *) skb->data;
2448         cmd->dot11_hdr = rx_dot11_hdr ? 1 : 0;
2449         cmd->defrag_on_host = defrag_on_host ? 1 : 0;
2450         cmd->meta_ver = rx_meta_ver;
2451
2452         /* Delete the local aggr state, on host */
2453         ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_RX_FRAME_FORMAT_CMDID,
2454                                   NO_SYNC_WMIFLAG);
2455
2456         return ret;
2457 }
2458
2459 static int ath6kl_wmi_control_rx_xtnd(struct wmi *wmi, struct sk_buff *skb)
2460 {
2461         struct wmix_cmd_hdr *cmd;
2462         u32 len;
2463         u16 id;
2464         u8 *datap;
2465         int ret = 0;
2466
2467         if (skb->len < sizeof(struct wmix_cmd_hdr)) {
2468                 ath6kl_err("bad packet 1\n");
2469                 wmi->stat.cmd_len_err++;
2470                 return -EINVAL;
2471         }
2472
2473         cmd = (struct wmix_cmd_hdr *) skb->data;
2474         id = le32_to_cpu(cmd->cmd_id);
2475
2476         skb_pull(skb, sizeof(struct wmix_cmd_hdr));
2477
2478         datap = skb->data;
2479         len = skb->len;
2480
2481         switch (id) {
2482         case WMIX_HB_CHALLENGE_RESP_EVENTID:
2483                 break;
2484         case WMIX_DBGLOG_EVENTID:
2485                 break;
2486         default:
2487                 ath6kl_err("unknown cmd id 0x%x\n", id);
2488                 wmi->stat.cmd_id_err++;
2489                 ret = -EINVAL;
2490                 break;
2491         }
2492
2493         return ret;
2494 }
2495
2496 /* Control Path */
2497 int ath6kl_wmi_control_rx(struct wmi *wmi, struct sk_buff *skb)
2498 {
2499         struct wmi_cmd_hdr *cmd;
2500         u32 len;
2501         u16 id;
2502         u8 *datap;
2503         int ret = 0;
2504
2505         if (WARN_ON(skb == NULL))
2506                 return -EINVAL;
2507
2508         if (skb->len < sizeof(struct wmi_cmd_hdr)) {
2509                 ath6kl_err("bad packet 1\n");
2510                 dev_kfree_skb(skb);
2511                 wmi->stat.cmd_len_err++;
2512                 return -EINVAL;
2513         }
2514
2515         cmd = (struct wmi_cmd_hdr *) skb->data;
2516         id = le16_to_cpu(cmd->cmd_id);
2517
2518         skb_pull(skb, sizeof(struct wmi_cmd_hdr));
2519
2520         datap = skb->data;
2521         len = skb->len;
2522
2523         ath6kl_dbg(ATH6KL_DBG_WMI, "%s: wmi id: %d\n", __func__, id);
2524         ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "msg payload ", datap, len);
2525
2526         switch (id) {
2527         case WMI_GET_BITRATE_CMDID:
2528                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_BITRATE_CMDID\n");
2529                 ret = ath6kl_wmi_bitrate_reply_rx(wmi, datap, len);
2530                 break;
2531         case WMI_GET_CHANNEL_LIST_CMDID:
2532                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_CHANNEL_LIST_CMDID\n");
2533                 ret = ath6kl_wmi_ch_list_reply_rx(wmi, datap, len);
2534                 break;
2535         case WMI_GET_TX_PWR_CMDID:
2536                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_TX_PWR_CMDID\n");
2537                 ret = ath6kl_wmi_tx_pwr_reply_rx(wmi, datap, len);
2538                 break;
2539         case WMI_READY_EVENTID:
2540                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_READY_EVENTID\n");
2541                 ret = ath6kl_wmi_ready_event_rx(wmi, datap, len);
2542                 break;
2543         case WMI_CONNECT_EVENTID:
2544                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CONNECT_EVENTID\n");
2545                 ret = ath6kl_wmi_connect_event_rx(wmi, datap, len);
2546                 break;
2547         case WMI_DISCONNECT_EVENTID:
2548                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DISCONNECT_EVENTID\n");
2549                 ret = ath6kl_wmi_disconnect_event_rx(wmi, datap, len);
2550                 break;
2551         case WMI_PEER_NODE_EVENTID:
2552                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PEER_NODE_EVENTID\n");
2553                 ret = ath6kl_wmi_peer_node_event_rx(wmi, datap, len);
2554                 break;
2555         case WMI_TKIP_MICERR_EVENTID:
2556                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TKIP_MICERR_EVENTID\n");
2557                 ret = ath6kl_wmi_tkip_micerr_event_rx(wmi, datap, len);
2558                 break;
2559         case WMI_BSSINFO_EVENTID:
2560                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_BSSINFO_EVENTID\n");
2561                 ath6kl_wmi_convert_bssinfo_hdr2_to_hdr(skb, datap);
2562                 ret = ath6kl_wmi_bssinfo_event_rx(wmi, skb->data, skb->len);
2563                 break;
2564         case WMI_REGDOMAIN_EVENTID:
2565                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REGDOMAIN_EVENTID\n");
2566                 break;
2567         case WMI_PSTREAM_TIMEOUT_EVENTID:
2568                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSTREAM_TIMEOUT_EVENTID\n");
2569                 ret = ath6kl_wmi_pstream_timeout_event_rx(wmi, datap, len);
2570                 break;
2571         case WMI_NEIGHBOR_REPORT_EVENTID:
2572                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_NEIGHBOR_REPORT_EVENTID\n");
2573                 break;
2574         case WMI_SCAN_COMPLETE_EVENTID:
2575                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SCAN_COMPLETE_EVENTID\n");
2576                 ret = ath6kl_wmi_scan_complete_rx(wmi, datap, len);
2577                 break;
2578         case WMI_CMDERROR_EVENTID:
2579                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CMDERROR_EVENTID\n");
2580                 ret = ath6kl_wmi_error_event_rx(wmi, datap, len);
2581                 break;
2582         case WMI_REPORT_STATISTICS_EVENTID:
2583                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_STATISTICS_EVENTID\n");
2584                 ret = ath6kl_wmi_stats_event_rx(wmi, datap, len);
2585                 break;
2586         case WMI_RSSI_THRESHOLD_EVENTID:
2587                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RSSI_THRESHOLD_EVENTID\n");
2588                 ret = ath6kl_wmi_rssi_threshold_event_rx(wmi, datap, len);
2589                 break;
2590         case WMI_ERROR_REPORT_EVENTID:
2591                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ERROR_REPORT_EVENTID\n");
2592                 break;
2593         case WMI_OPT_RX_FRAME_EVENTID:
2594                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_OPT_RX_FRAME_EVENTID\n");
2595                 ret = ath6kl_wmi_opt_frame_event_rx(wmi, datap, len);
2596                 break;
2597         case WMI_REPORT_ROAM_TBL_EVENTID:
2598                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_TBL_EVENTID\n");
2599                 break;
2600         case WMI_EXTENSION_EVENTID:
2601                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_EXTENSION_EVENTID\n");
2602                 ret = ath6kl_wmi_control_rx_xtnd(wmi, skb);
2603                 break;
2604         case WMI_CAC_EVENTID:
2605                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CAC_EVENTID\n");
2606                 ret = ath6kl_wmi_cac_event_rx(wmi, datap, len);
2607                 break;
2608         case WMI_CHANNEL_CHANGE_EVENTID:
2609                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CHANNEL_CHANGE_EVENTID\n");
2610                 break;
2611         case WMI_REPORT_ROAM_DATA_EVENTID:
2612                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_DATA_EVENTID\n");
2613                 break;
2614         case WMI_GET_FIXRATES_CMDID:
2615                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_FIXRATES_CMDID\n");
2616                 ret = ath6kl_wmi_ratemask_reply_rx(wmi, datap, len);
2617                 break;
2618         case WMI_TX_RETRY_ERR_EVENTID:
2619                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_RETRY_ERR_EVENTID\n");
2620                 break;
2621         case WMI_SNR_THRESHOLD_EVENTID:
2622                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SNR_THRESHOLD_EVENTID\n");
2623                 ret = ath6kl_wmi_snr_threshold_event_rx(wmi, datap, len);
2624                 break;
2625         case WMI_LQ_THRESHOLD_EVENTID:
2626                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_LQ_THRESHOLD_EVENTID\n");
2627                 break;
2628         case WMI_APLIST_EVENTID:
2629                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_APLIST_EVENTID\n");
2630                 ret = ath6kl_wmi_aplist_event_rx(wmi, datap, len);
2631                 break;
2632         case WMI_GET_KEEPALIVE_CMDID:
2633                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_KEEPALIVE_CMDID\n");
2634                 ret = ath6kl_wmi_keepalive_reply_rx(wmi, datap, len);
2635                 break;
2636         case WMI_GET_WOW_LIST_EVENTID:
2637                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_WOW_LIST_EVENTID\n");
2638                 ret = ath6kl_wmi_get_wow_list_event_rx(wmi, datap, len);
2639                 break;
2640         case WMI_GET_PMKID_LIST_EVENTID:
2641                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_PMKID_LIST_EVENTID\n");
2642                 ret = ath6kl_wmi_get_pmkid_list_event_rx(wmi, datap, len);
2643                 break;
2644         case WMI_PSPOLL_EVENTID:
2645                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSPOLL_EVENTID\n");
2646                 ret = ath6kl_wmi_pspoll_event_rx(wmi, datap, len);
2647                 break;
2648         case WMI_DTIMEXPIRY_EVENTID:
2649                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DTIMEXPIRY_EVENTID\n");
2650                 ret = ath6kl_wmi_dtimexpiry_event_rx(wmi, datap, len);
2651                 break;
2652         case WMI_SET_PARAMS_REPLY_EVENTID:
2653                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SET_PARAMS_REPLY_EVENTID\n");
2654                 break;
2655         case WMI_ADDBA_REQ_EVENTID:
2656                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_REQ_EVENTID\n");
2657                 ret = ath6kl_wmi_addba_req_event_rx(wmi, datap, len);
2658                 break;
2659         case WMI_ADDBA_RESP_EVENTID:
2660                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_RESP_EVENTID\n");
2661                 break;
2662         case WMI_DELBA_REQ_EVENTID:
2663                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DELBA_REQ_EVENTID\n");
2664                 ret = ath6kl_wmi_delba_req_event_rx(wmi, datap, len);
2665                 break;
2666         case WMI_REPORT_BTCOEX_CONFIG_EVENTID:
2667                 ath6kl_dbg(ATH6KL_DBG_WMI,
2668                            "WMI_REPORT_BTCOEX_CONFIG_EVENTID\n");
2669                 break;
2670         case WMI_REPORT_BTCOEX_STATS_EVENTID:
2671                 ath6kl_dbg(ATH6KL_DBG_WMI,
2672                            "WMI_REPORT_BTCOEX_STATS_EVENTID\n");
2673                 break;
2674         case WMI_TX_COMPLETE_EVENTID:
2675                 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_COMPLETE_EVENTID\n");
2676                 ret = ath6kl_wmi_tx_complete_event_rx(datap, len);
2677                 break;
2678         default:
2679                 ath6kl_dbg(ATH6KL_DBG_WMI, "unknown cmd id 0x%x\n", id);
2680                 wmi->stat.cmd_id_err++;
2681                 ret = -EINVAL;
2682                 break;
2683         }
2684
2685         dev_kfree_skb(skb);
2686
2687         return ret;
2688 }
2689
2690 static void ath6kl_wmi_qos_state_init(struct wmi *wmi)
2691 {
2692         if (!wmi)
2693                 return;
2694
2695         spin_lock_bh(&wmi->lock);
2696
2697         wmi->fat_pipe_exist = 0;
2698         memset(wmi->stream_exist_for_ac, 0, sizeof(wmi->stream_exist_for_ac));
2699
2700         spin_unlock_bh(&wmi->lock);
2701 }
2702
2703 void *ath6kl_wmi_init(struct ath6kl *dev)
2704 {
2705         struct wmi *wmi;
2706
2707         wmi = kzalloc(sizeof(struct wmi), GFP_KERNEL);
2708         if (!wmi)
2709                 return NULL;
2710
2711         spin_lock_init(&wmi->lock);
2712
2713         wmi->parent_dev = dev;
2714
2715         ath6kl_wmi_qos_state_init(wmi);
2716
2717         wmi->pwr_mode = REC_POWER;
2718         wmi->phy_mode = WMI_11G_MODE;
2719
2720         wmi->pair_crypto_type = NONE_CRYPT;
2721         wmi->grp_crypto_type = NONE_CRYPT;
2722
2723         wmi->ht_allowed[A_BAND_24GHZ] = 1;
2724         wmi->ht_allowed[A_BAND_5GHZ] = 1;
2725
2726         return wmi;
2727 }
2728
2729 void ath6kl_wmi_shutdown(struct wmi *wmi)
2730 {
2731         if (!wmi)
2732                 return;
2733
2734         kfree(wmi);
2735 }