blob: 8b4ce28e3ce8f51f7cda070364394a117d5aef66 [file] [log] [blame]
Kalle Valobdcd8172011-07-18 00:22:30 +03001/*
2 * Copyright (c) 2004-2011 Atheros Communications Inc.
Vasanthakumar Thiagarajan1b2df402012-02-06 20:15:53 +05303 * Copyright (c) 2011-2012 Qualcomm Atheros, Inc.
Kalle Valobdcd8172011-07-18 00:22:30 +03004 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#include <linux/ip.h>
Luis R. Rodriguez1560ac72012-04-23 19:58:50 -070019#include <linux/in.h>
Kalle Valobdcd8172011-07-18 00:22:30 +030020#include "core.h"
21#include "debug.h"
Kalle Valo003353b0d2011-09-01 10:14:21 +030022#include "testmode.h"
Kalle Valo416cf0b2013-03-18 13:42:20 +020023#include "trace.h"
Vivek Natarajan06033762011-09-06 13:01:36 +053024#include "../regd.h"
25#include "../regd_common.h"
Kalle Valobdcd8172011-07-18 00:22:30 +030026
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +053027static int ath6kl_wmi_sync_point(struct wmi *wmi, u8 if_idx);
Kalle Valobdcd8172011-07-18 00:22:30 +030028
29static const s32 wmi_rate_tbl[][2] = {
30 /* {W/O SGI, with SGI} */
31 {1000, 1000},
32 {2000, 2000},
33 {5500, 5500},
34 {11000, 11000},
35 {6000, 6000},
36 {9000, 9000},
37 {12000, 12000},
38 {18000, 18000},
39 {24000, 24000},
40 {36000, 36000},
41 {48000, 48000},
42 {54000, 54000},
43 {6500, 7200},
44 {13000, 14400},
45 {19500, 21700},
46 {26000, 28900},
47 {39000, 43300},
48 {52000, 57800},
49 {58500, 65000},
50 {65000, 72200},
51 {13500, 15000},
52 {27000, 30000},
53 {40500, 45000},
54 {54000, 60000},
55 {81000, 90000},
56 {108000, 120000},
57 {121500, 135000},
58 {135000, 150000},
59 {0, 0}
60};
61
62/* 802.1d to AC mapping. Refer pg 57 of WMM-test-plan-v1.2 */
63static const u8 up_to_ac[] = {
64 WMM_AC_BE,
65 WMM_AC_BK,
66 WMM_AC_BK,
67 WMM_AC_BE,
68 WMM_AC_VI,
69 WMM_AC_VI,
70 WMM_AC_VO,
71 WMM_AC_VO,
72};
73
74void ath6kl_wmi_set_control_ep(struct wmi *wmi, enum htc_endpoint_id ep_id)
75{
76 if (WARN_ON(ep_id == ENDPOINT_UNUSED || ep_id >= ENDPOINT_MAX))
77 return;
78
79 wmi->ep_id = ep_id;
80}
81
82enum htc_endpoint_id ath6kl_wmi_get_control_ep(struct wmi *wmi)
83{
84 return wmi->ep_id;
85}
86
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +053087struct ath6kl_vif *ath6kl_get_vif_by_index(struct ath6kl *ar, u8 if_idx)
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +053088{
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +053089 struct ath6kl_vif *vif, *found = NULL;
90
Kalle Valo71f96ee2011-11-14 19:31:30 +020091 if (WARN_ON(if_idx > (ar->vif_max - 1)))
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +053092 return NULL;
93
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +053094 /* FIXME: Locking */
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +053095 spin_lock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +053096 list_for_each_entry(vif, &ar->vif_list, list) {
97 if (vif->fw_vif_idx == if_idx) {
98 found = vif;
99 break;
100 }
101 }
Vasanthakumar Thiagarajan11f6e402011-11-01 16:38:50 +0530102 spin_unlock_bh(&ar->list_lock);
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +0530103
104 return found;
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530105}
106
Kalle Valobdcd8172011-07-18 00:22:30 +0300107/* Performs DIX to 802.3 encapsulation for transmit packets.
108 * Assumes the entire DIX header is contigous and that there is
109 * enough room in the buffer for a 802.3 mac header and LLC+SNAP headers.
110 */
111int ath6kl_wmi_dix_2_dot3(struct wmi *wmi, struct sk_buff *skb)
112{
113 struct ath6kl_llc_snap_hdr *llc_hdr;
114 struct ethhdr *eth_hdr;
115 size_t new_len;
116 __be16 type;
117 u8 *datap;
118 u16 size;
119
120 if (WARN_ON(skb == NULL))
121 return -EINVAL;
122
123 size = sizeof(struct ath6kl_llc_snap_hdr) + sizeof(struct wmi_data_hdr);
124 if (skb_headroom(skb) < size)
125 return -ENOMEM;
126
127 eth_hdr = (struct ethhdr *) skb->data;
128 type = eth_hdr->h_proto;
129
130 if (!is_ethertype(be16_to_cpu(type))) {
131 ath6kl_dbg(ATH6KL_DBG_WMI,
Kalle Valo96f1fad2012-03-07 20:03:57 +0200132 "%s: pkt is already in 802.3 format\n", __func__);
Kalle Valobdcd8172011-07-18 00:22:30 +0300133 return 0;
134 }
135
136 new_len = skb->len - sizeof(*eth_hdr) + sizeof(*llc_hdr);
137
138 skb_push(skb, sizeof(struct ath6kl_llc_snap_hdr));
139 datap = skb->data;
140
141 eth_hdr->h_proto = cpu_to_be16(new_len);
142
143 memcpy(datap, eth_hdr, sizeof(*eth_hdr));
144
145 llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap + sizeof(*eth_hdr));
146 llc_hdr->dsap = 0xAA;
147 llc_hdr->ssap = 0xAA;
148 llc_hdr->cntl = 0x03;
149 llc_hdr->org_code[0] = 0x0;
150 llc_hdr->org_code[1] = 0x0;
151 llc_hdr->org_code[2] = 0x0;
152 llc_hdr->eth_type = type;
153
154 return 0;
155}
156
157static int ath6kl_wmi_meta_add(struct wmi *wmi, struct sk_buff *skb,
158 u8 *version, void *tx_meta_info)
159{
160 struct wmi_tx_meta_v1 *v1;
161 struct wmi_tx_meta_v2 *v2;
162
163 if (WARN_ON(skb == NULL || version == NULL))
164 return -EINVAL;
165
166 switch (*version) {
167 case WMI_META_VERSION_1:
168 skb_push(skb, WMI_MAX_TX_META_SZ);
169 v1 = (struct wmi_tx_meta_v1 *) skb->data;
170 v1->pkt_id = 0;
171 v1->rate_plcy_id = 0;
172 *version = WMI_META_VERSION_1;
173 break;
174 case WMI_META_VERSION_2:
175 skb_push(skb, WMI_MAX_TX_META_SZ);
176 v2 = (struct wmi_tx_meta_v2 *) skb->data;
177 memcpy(v2, (struct wmi_tx_meta_v2 *) tx_meta_info,
178 sizeof(struct wmi_tx_meta_v2));
179 break;
180 }
181
182 return 0;
183}
184
185int ath6kl_wmi_data_hdr_add(struct wmi *wmi, struct sk_buff *skb,
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530186 u8 msg_type, u32 flags,
Kalle Valobdcd8172011-07-18 00:22:30 +0300187 enum wmi_data_hdr_data_type data_type,
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +0530188 u8 meta_ver, void *tx_meta_info, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +0300189{
190 struct wmi_data_hdr *data_hdr;
191 int ret;
192
Kalle Valo71f96ee2011-11-14 19:31:30 +0200193 if (WARN_ON(skb == NULL || (if_idx > wmi->parent_dev->vif_max - 1)))
Kalle Valobdcd8172011-07-18 00:22:30 +0300194 return -EINVAL;
195
Vasanthakumar Thiagarajan3ce6ff52011-08-22 20:40:21 +0530196 if (tx_meta_info) {
197 ret = ath6kl_wmi_meta_add(wmi, skb, &meta_ver, tx_meta_info);
198 if (ret)
199 return ret;
200 }
Kalle Valobdcd8172011-07-18 00:22:30 +0300201
202 skb_push(skb, sizeof(struct wmi_data_hdr));
203
204 data_hdr = (struct wmi_data_hdr *)skb->data;
205 memset(data_hdr, 0, sizeof(struct wmi_data_hdr));
206
207 data_hdr->info = msg_type << WMI_DATA_HDR_MSG_TYPE_SHIFT;
208 data_hdr->info |= data_type << WMI_DATA_HDR_DATA_TYPE_SHIFT;
209
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530210 if (flags & WMI_DATA_HDR_FLAGS_MORE)
211 data_hdr->info |= WMI_DATA_HDR_MORE;
Kalle Valobdcd8172011-07-18 00:22:30 +0300212
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530213 if (flags & WMI_DATA_HDR_FLAGS_EOSP)
214 data_hdr->info3 |= cpu_to_le16(WMI_DATA_HDR_EOSP);
215
216 data_hdr->info2 |= cpu_to_le16(meta_ver << WMI_DATA_HDR_META_SHIFT);
217 data_hdr->info3 |= cpu_to_le16(if_idx & WMI_DATA_HDR_IF_IDX_MASK);
Kalle Valobdcd8172011-07-18 00:22:30 +0300218
219 return 0;
220}
221
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530222u8 ath6kl_wmi_determine_user_priority(u8 *pkt, u32 layer2_pri)
Kalle Valobdcd8172011-07-18 00:22:30 +0300223{
224 struct iphdr *ip_hdr = (struct iphdr *) pkt;
225 u8 ip_pri;
226
227 /*
228 * Determine IPTOS priority
229 *
230 * IP-TOS - 8bits
231 * : DSCP(6-bits) ECN(2-bits)
232 * : DSCP - P2 P1 P0 X X X
233 * where (P2 P1 P0) form 802.1D
234 */
235 ip_pri = ip_hdr->tos >> 5;
236 ip_pri &= 0x7;
237
238 if ((layer2_pri & 0x7) > ip_pri)
239 return (u8) layer2_pri & 0x7;
240 else
241 return ip_pri;
242}
243
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530244u8 ath6kl_wmi_get_traffic_class(u8 user_priority)
245{
246 return up_to_ac[user_priority & 0x7];
247}
248
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530249int ath6kl_wmi_implicit_create_pstream(struct wmi *wmi, u8 if_idx,
250 struct sk_buff *skb,
Kalle Valobdcd8172011-07-18 00:22:30 +0300251 u32 layer2_priority, bool wmm_enabled,
252 u8 *ac)
253{
254 struct wmi_data_hdr *data_hdr;
255 struct ath6kl_llc_snap_hdr *llc_hdr;
256 struct wmi_create_pstream_cmd cmd;
257 u32 meta_size, hdr_size;
258 u16 ip_type = IP_ETHERTYPE;
259 u8 stream_exist, usr_pri;
260 u8 traffic_class = WMM_AC_BE;
261 u8 *datap;
262
263 if (WARN_ON(skb == NULL))
264 return -EINVAL;
265
266 datap = skb->data;
267 data_hdr = (struct wmi_data_hdr *) datap;
268
269 meta_size = ((le16_to_cpu(data_hdr->info2) >> WMI_DATA_HDR_META_SHIFT) &
270 WMI_DATA_HDR_META_MASK) ? WMI_MAX_TX_META_SZ : 0;
271
272 if (!wmm_enabled) {
273 /* If WMM is disabled all traffic goes as BE traffic */
274 usr_pri = 0;
275 } else {
276 hdr_size = sizeof(struct ethhdr);
277
278 llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap +
279 sizeof(struct
280 wmi_data_hdr) +
281 meta_size + hdr_size);
282
283 if (llc_hdr->eth_type == htons(ip_type)) {
284 /*
285 * Extract the endpoint info from the TOS field
286 * in the IP header.
287 */
288 usr_pri =
289 ath6kl_wmi_determine_user_priority(((u8 *) llc_hdr) +
290 sizeof(struct ath6kl_llc_snap_hdr),
291 layer2_priority);
292 } else
293 usr_pri = layer2_priority & 0x7;
Vivek Natarajanf3740572012-05-02 14:55:25 +0530294
295 /*
296 * Queue the EAPOL frames in the same WMM_AC_VO queue
297 * as that of management frames.
298 */
299 if (skb->protocol == cpu_to_be16(ETH_P_PAE))
300 usr_pri = WMI_VOICE_USER_PRIORITY;
Kalle Valobdcd8172011-07-18 00:22:30 +0300301 }
302
Kalle Valoa7f0c582011-10-05 12:23:05 +0300303 /*
304 * workaround for WMM S5
305 *
306 * FIXME: wmi->traffic_class is always 100 so this test doesn't
307 * make sense
308 */
Kalle Valobdcd8172011-07-18 00:22:30 +0300309 if ((wmi->traffic_class == WMM_AC_VI) &&
310 ((usr_pri == 5) || (usr_pri == 4)))
311 usr_pri = 1;
312
313 /* Convert user priority to traffic class */
314 traffic_class = up_to_ac[usr_pri & 0x7];
315
316 wmi_data_hdr_set_up(data_hdr, usr_pri);
317
318 spin_lock_bh(&wmi->lock);
319 stream_exist = wmi->fat_pipe_exist;
320 spin_unlock_bh(&wmi->lock);
321
322 if (!(stream_exist & (1 << traffic_class))) {
323 memset(&cmd, 0, sizeof(cmd));
324 cmd.traffic_class = traffic_class;
325 cmd.user_pri = usr_pri;
326 cmd.inactivity_int =
327 cpu_to_le32(WMI_IMPLICIT_PSTREAM_INACTIVITY_INT);
328 /* Implicit streams are created with TSID 0xFF */
329 cmd.tsid = WMI_IMPLICIT_PSTREAM;
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530330 ath6kl_wmi_create_pstream_cmd(wmi, if_idx, &cmd);
Kalle Valobdcd8172011-07-18 00:22:30 +0300331 }
332
333 *ac = traffic_class;
334
335 return 0;
336}
337
338int ath6kl_wmi_dot11_hdr_remove(struct wmi *wmi, struct sk_buff *skb)
339{
340 struct ieee80211_hdr_3addr *pwh, wh;
341 struct ath6kl_llc_snap_hdr *llc_hdr;
342 struct ethhdr eth_hdr;
343 u32 hdr_size;
344 u8 *datap;
345 __le16 sub_type;
346
347 if (WARN_ON(skb == NULL))
348 return -EINVAL;
349
350 datap = skb->data;
351 pwh = (struct ieee80211_hdr_3addr *) datap;
352
353 sub_type = pwh->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE);
354
355 memcpy((u8 *) &wh, datap, sizeof(struct ieee80211_hdr_3addr));
356
357 /* Strip off the 802.11 header */
358 if (sub_type == cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
359 hdr_size = roundup(sizeof(struct ieee80211_qos_hdr),
360 sizeof(u32));
361 skb_pull(skb, hdr_size);
362 } else if (sub_type == cpu_to_le16(IEEE80211_STYPE_DATA))
363 skb_pull(skb, sizeof(struct ieee80211_hdr_3addr));
364
365 datap = skb->data;
366 llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap);
367
Raja Manic8790cba2011-07-19 19:27:32 +0530368 memset(&eth_hdr, 0, sizeof(eth_hdr));
Kalle Valobdcd8172011-07-18 00:22:30 +0300369 eth_hdr.h_proto = llc_hdr->eth_type;
Kalle Valobdcd8172011-07-18 00:22:30 +0300370
371 switch ((le16_to_cpu(wh.frame_control)) &
372 (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
373 case 0:
374 memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN);
375 memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN);
376 break;
377 case IEEE80211_FCTL_TODS:
378 memcpy(eth_hdr.h_dest, wh.addr3, ETH_ALEN);
379 memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN);
380 break;
381 case IEEE80211_FCTL_FROMDS:
382 memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN);
383 memcpy(eth_hdr.h_source, wh.addr3, ETH_ALEN);
384 break;
385 case IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS:
386 break;
387 }
388
389 skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr));
390 skb_push(skb, sizeof(eth_hdr));
391
392 datap = skb->data;
393
394 memcpy(datap, &eth_hdr, sizeof(eth_hdr));
395
396 return 0;
397}
398
399/*
400 * Performs 802.3 to DIX encapsulation for received packets.
401 * Assumes the entire 802.3 header is contigous.
402 */
403int ath6kl_wmi_dot3_2_dix(struct sk_buff *skb)
404{
405 struct ath6kl_llc_snap_hdr *llc_hdr;
406 struct ethhdr eth_hdr;
407 u8 *datap;
408
409 if (WARN_ON(skb == NULL))
410 return -EINVAL;
411
412 datap = skb->data;
413
414 memcpy(&eth_hdr, datap, sizeof(eth_hdr));
415
416 llc_hdr = (struct ath6kl_llc_snap_hdr *) (datap + sizeof(eth_hdr));
417 eth_hdr.h_proto = llc_hdr->eth_type;
418
419 skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr));
420 datap = skb->data;
421
422 memcpy(datap, &eth_hdr, sizeof(eth_hdr));
423
424 return 0;
425}
426
Kalle Valobdcd8172011-07-18 00:22:30 +0300427static int ath6kl_wmi_tx_complete_event_rx(u8 *datap, int len)
428{
429 struct tx_complete_msg_v1 *msg_v1;
430 struct wmi_tx_complete_event *evt;
431 int index;
432 u16 size;
433
434 evt = (struct wmi_tx_complete_event *) datap;
435
436 ath6kl_dbg(ATH6KL_DBG_WMI, "comp: %d %d %d\n",
437 evt->num_msg, evt->msg_len, evt->msg_type);
438
Kalle Valobdcd8172011-07-18 00:22:30 +0300439 for (index = 0; index < evt->num_msg; index++) {
440 size = sizeof(struct wmi_tx_complete_event) +
441 (index * sizeof(struct tx_complete_msg_v1));
442 msg_v1 = (struct tx_complete_msg_v1 *)(datap + size);
443
444 ath6kl_dbg(ATH6KL_DBG_WMI, "msg: %d %d %d %d\n",
445 msg_v1->status, msg_v1->pkt_id,
446 msg_v1->rate_idx, msg_v1->ack_failures);
447 }
448
449 return 0;
450}
451
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300452static int ath6kl_wmi_remain_on_chnl_event_rx(struct wmi *wmi, u8 *datap,
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530453 int len, struct ath6kl_vif *vif)
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300454{
455 struct wmi_remain_on_chnl_event *ev;
456 u32 freq;
457 u32 dur;
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300458 struct ieee80211_channel *chan;
459 struct ath6kl *ar = wmi->parent_dev;
Jouni Malinen10522612011-10-27 16:00:13 +0300460 u32 id;
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300461
462 if (len < sizeof(*ev))
463 return -EINVAL;
464
465 ev = (struct wmi_remain_on_chnl_event *) datap;
466 freq = le32_to_cpu(ev->freq);
467 dur = le32_to_cpu(ev->duration);
468 ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl: freq=%u dur=%u\n",
469 freq, dur);
Vasanthakumar Thiagarajanbe98e3a2011-10-25 19:33:57 +0530470 chan = ieee80211_get_channel(ar->wiphy, freq);
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300471 if (!chan) {
Kalle Valocdeb8602012-04-12 11:02:18 +0300472 ath6kl_dbg(ATH6KL_DBG_WMI,
473 "remain_on_chnl: Unknown channel (freq=%u)\n",
474 freq);
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300475 return -EINVAL;
476 }
Jouni Malinen10522612011-10-27 16:00:13 +0300477 id = vif->last_roc_id;
Johannes Berg42d97a52012-11-08 18:31:02 +0100478 cfg80211_ready_on_channel(&vif->wdev, id, chan,
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300479 dur, GFP_ATOMIC);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300480
481 return 0;
482}
483
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300484static int ath6kl_wmi_cancel_remain_on_chnl_event_rx(struct wmi *wmi,
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530485 u8 *datap, int len,
486 struct ath6kl_vif *vif)
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300487{
488 struct wmi_cancel_remain_on_chnl_event *ev;
489 u32 freq;
490 u32 dur;
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300491 struct ieee80211_channel *chan;
492 struct ath6kl *ar = wmi->parent_dev;
Jouni Malinen10522612011-10-27 16:00:13 +0300493 u32 id;
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300494
495 if (len < sizeof(*ev))
496 return -EINVAL;
497
498 ev = (struct wmi_cancel_remain_on_chnl_event *) datap;
499 freq = le32_to_cpu(ev->freq);
500 dur = le32_to_cpu(ev->duration);
Kalle Valocdeb8602012-04-12 11:02:18 +0300501 ath6kl_dbg(ATH6KL_DBG_WMI,
502 "cancel_remain_on_chnl: freq=%u dur=%u status=%u\n",
503 freq, dur, ev->status);
Vasanthakumar Thiagarajanbe98e3a2011-10-25 19:33:57 +0530504 chan = ieee80211_get_channel(ar->wiphy, freq);
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300505 if (!chan) {
Kalle Valocdeb8602012-04-12 11:02:18 +0300506 ath6kl_dbg(ATH6KL_DBG_WMI,
507 "cancel_remain_on_chnl: Unknown channel (freq=%u)\n",
508 freq);
Jouni Malinenf9e5f052011-08-30 21:57:58 +0300509 return -EINVAL;
510 }
Jouni Malinen10522612011-10-27 16:00:13 +0300511 if (vif->last_cancel_roc_id &&
512 vif->last_cancel_roc_id + 1 == vif->last_roc_id)
513 id = vif->last_cancel_roc_id; /* event for cancel command */
514 else
515 id = vif->last_roc_id; /* timeout on uncanceled r-o-c */
516 vif->last_cancel_roc_id = 0;
Johannes Berg42d97a52012-11-08 18:31:02 +0100517 cfg80211_remain_on_channel_expired(&vif->wdev, id, chan, GFP_ATOMIC);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300518
519 return 0;
520}
521
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530522static int ath6kl_wmi_tx_status_event_rx(struct wmi *wmi, u8 *datap, int len,
523 struct ath6kl_vif *vif)
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300524{
525 struct wmi_tx_status_event *ev;
526 u32 id;
527
528 if (len < sizeof(*ev))
529 return -EINVAL;
530
531 ev = (struct wmi_tx_status_event *) datap;
532 id = le32_to_cpu(ev->id);
533 ath6kl_dbg(ATH6KL_DBG_WMI, "tx_status: id=%x ack_status=%u\n",
534 id, ev->ack_status);
Jouni Malinena0df5db2011-08-30 21:58:02 +0300535 if (wmi->last_mgmt_tx_frame) {
Johannes Berg71bbc992012-06-15 15:30:18 +0200536 cfg80211_mgmt_tx_status(&vif->wdev, id,
Jouni Malinena0df5db2011-08-30 21:58:02 +0300537 wmi->last_mgmt_tx_frame,
538 wmi->last_mgmt_tx_frame_len,
539 !!ev->ack_status, GFP_ATOMIC);
540 kfree(wmi->last_mgmt_tx_frame);
541 wmi->last_mgmt_tx_frame = NULL;
542 wmi->last_mgmt_tx_frame_len = 0;
543 }
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300544
545 return 0;
546}
547
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530548static int ath6kl_wmi_rx_probe_req_event_rx(struct wmi *wmi, u8 *datap, int len,
549 struct ath6kl_vif *vif)
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300550{
551 struct wmi_p2p_rx_probe_req_event *ev;
Jouni Malinenae32c302011-08-30 21:58:01 +0300552 u32 freq;
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300553 u16 dlen;
554
555 if (len < sizeof(*ev))
556 return -EINVAL;
557
558 ev = (struct wmi_p2p_rx_probe_req_event *) datap;
Jouni Malinenae32c302011-08-30 21:58:01 +0300559 freq = le32_to_cpu(ev->freq);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300560 dlen = le16_to_cpu(ev->len);
Jouni Malinenae32c302011-08-30 21:58:01 +0300561 if (datap + len < ev->data + dlen) {
Kalle Valocdeb8602012-04-12 11:02:18 +0300562 ath6kl_err("invalid wmi_p2p_rx_probe_req_event: len=%d dlen=%u\n",
563 len, dlen);
Jouni Malinenae32c302011-08-30 21:58:01 +0300564 return -EINVAL;
565 }
Kalle Valocdeb8602012-04-12 11:02:18 +0300566 ath6kl_dbg(ATH6KL_DBG_WMI,
567 "rx_probe_req: len=%u freq=%u probe_req_report=%d\n",
Vasanthakumar Thiagarajancf5333d2011-10-25 19:34:10 +0530568 dlen, freq, vif->probe_req_report);
Jouni Malinenae32c302011-08-30 21:58:01 +0300569
Vasanthakumar Thiagarajancf5333d2011-10-25 19:34:10 +0530570 if (vif->probe_req_report || vif->nw_type == AP_NETWORK)
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +0300571 cfg80211_rx_mgmt(&vif->wdev, freq, 0, ev->data, dlen, 0,
572 GFP_ATOMIC);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300573
574 return 0;
575}
576
577static int ath6kl_wmi_p2p_capabilities_event_rx(u8 *datap, int len)
578{
579 struct wmi_p2p_capabilities_event *ev;
580 u16 dlen;
581
582 if (len < sizeof(*ev))
583 return -EINVAL;
584
585 ev = (struct wmi_p2p_capabilities_event *) datap;
586 dlen = le16_to_cpu(ev->len);
587 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_capab: len=%u\n", dlen);
588
589 return 0;
590}
591
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530592static int ath6kl_wmi_rx_action_event_rx(struct wmi *wmi, u8 *datap, int len,
593 struct ath6kl_vif *vif)
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300594{
595 struct wmi_rx_action_event *ev;
Jouni Malinen9809d8e2011-08-30 21:58:03 +0300596 u32 freq;
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300597 u16 dlen;
598
599 if (len < sizeof(*ev))
600 return -EINVAL;
601
602 ev = (struct wmi_rx_action_event *) datap;
Jouni Malinen9809d8e2011-08-30 21:58:03 +0300603 freq = le32_to_cpu(ev->freq);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300604 dlen = le16_to_cpu(ev->len);
Jouni Malinen9809d8e2011-08-30 21:58:03 +0300605 if (datap + len < ev->data + dlen) {
Kalle Valocdeb8602012-04-12 11:02:18 +0300606 ath6kl_err("invalid wmi_rx_action_event: len=%d dlen=%u\n",
607 len, dlen);
Jouni Malinen9809d8e2011-08-30 21:58:03 +0300608 return -EINVAL;
609 }
610 ath6kl_dbg(ATH6KL_DBG_WMI, "rx_action: len=%u freq=%u\n", dlen, freq);
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +0300611 cfg80211_rx_mgmt(&vif->wdev, freq, 0, ev->data, dlen, 0, GFP_ATOMIC);
Jouni Malinen6465ddc2011-08-30 21:57:54 +0300612
613 return 0;
614}
615
616static int ath6kl_wmi_p2p_info_event_rx(u8 *datap, int len)
617{
618 struct wmi_p2p_info_event *ev;
619 u32 flags;
620 u16 dlen;
621
622 if (len < sizeof(*ev))
623 return -EINVAL;
624
625 ev = (struct wmi_p2p_info_event *) datap;
626 flags = le32_to_cpu(ev->info_req_flags);
627 dlen = le16_to_cpu(ev->len);
628 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: flags=%x len=%d\n", flags, dlen);
629
630 if (flags & P2P_FLAG_CAPABILITIES_REQ) {
631 struct wmi_p2p_capabilities *cap;
632 if (dlen < sizeof(*cap))
633 return -EINVAL;
634 cap = (struct wmi_p2p_capabilities *) ev->data;
635 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: GO Power Save = %d\n",
636 cap->go_power_save);
637 }
638
639 if (flags & P2P_FLAG_MACADDR_REQ) {
640 struct wmi_p2p_macaddr *mac;
641 if (dlen < sizeof(*mac))
642 return -EINVAL;
643 mac = (struct wmi_p2p_macaddr *) ev->data;
644 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: MAC Address = %pM\n",
645 mac->mac_addr);
646 }
647
648 if (flags & P2P_FLAG_HMODEL_REQ) {
649 struct wmi_p2p_hmodel *mod;
650 if (dlen < sizeof(*mod))
651 return -EINVAL;
652 mod = (struct wmi_p2p_hmodel *) ev->data;
653 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: P2P Model = %d (%s)\n",
654 mod->p2p_model,
655 mod->p2p_model ? "host" : "firmware");
656 }
657 return 0;
658}
659
Kalle Valobdcd8172011-07-18 00:22:30 +0300660static inline struct sk_buff *ath6kl_wmi_get_new_buf(u32 size)
661{
662 struct sk_buff *skb;
663
664 skb = ath6kl_buf_alloc(size);
665 if (!skb)
666 return NULL;
667
668 skb_put(skb, size);
669 if (size)
670 memset(skb->data, 0, size);
671
672 return skb;
673}
674
675/* Send a "simple" wmi command -- one with no arguments */
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530676static int ath6kl_wmi_simple_cmd(struct wmi *wmi, u8 if_idx,
677 enum wmi_cmd_id cmd_id)
Kalle Valobdcd8172011-07-18 00:22:30 +0300678{
679 struct sk_buff *skb;
680 int ret;
681
682 skb = ath6kl_wmi_get_new_buf(0);
683 if (!skb)
684 return -ENOMEM;
685
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530686 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, cmd_id, NO_SYNC_WMIFLAG);
Kalle Valobdcd8172011-07-18 00:22:30 +0300687
688 return ret;
689}
690
691static int ath6kl_wmi_ready_event_rx(struct wmi *wmi, u8 *datap, int len)
692{
693 struct wmi_ready_event_2 *ev = (struct wmi_ready_event_2 *) datap;
694
695 if (len < sizeof(struct wmi_ready_event_2))
696 return -EINVAL;
697
Kalle Valobdcd8172011-07-18 00:22:30 +0300698 ath6kl_ready_event(wmi->parent_dev, ev->mac_addr,
699 le32_to_cpu(ev->sw_version),
Thomas Pedersend92917e2012-04-19 15:31:56 -0700700 le32_to_cpu(ev->abi_version), ev->phy_cap);
Kalle Valobdcd8172011-07-18 00:22:30 +0300701
702 return 0;
703}
704
Vivek Natarajane5090442011-08-31 15:02:19 +0530705/*
706 * Mechanism to modify the roaming behavior in the firmware. The lower rssi
707 * at which the station has to roam can be passed with
708 * WMI_SET_LRSSI_SCAN_PARAMS. Subtract 96 from RSSI to get the signal level
709 * in dBm.
710 */
711int ath6kl_wmi_set_roam_lrssi_cmd(struct wmi *wmi, u8 lrssi)
712{
713 struct sk_buff *skb;
714 struct roam_ctrl_cmd *cmd;
715
716 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
717 if (!skb)
718 return -ENOMEM;
719
720 cmd = (struct roam_ctrl_cmd *) skb->data;
721
722 cmd->info.params.lrssi_scan_period = cpu_to_le16(DEF_LRSSI_SCAN_PERIOD);
723 cmd->info.params.lrssi_scan_threshold = a_cpu_to_sle16(lrssi +
724 DEF_SCAN_FOR_ROAM_INTVL);
725 cmd->info.params.lrssi_roam_threshold = a_cpu_to_sle16(lrssi);
726 cmd->info.params.roam_rssi_floor = DEF_LRSSI_ROAM_FLOOR;
727 cmd->roam_ctrl = WMI_SET_LRSSI_SCAN_PARAMS;
728
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530729 ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID,
730 NO_SYNC_WMIFLAG);
Vivek Natarajane5090442011-08-31 15:02:19 +0530731
732 return 0;
733}
734
Jouni Malinen12618752011-10-11 17:31:55 +0300735int ath6kl_wmi_force_roam_cmd(struct wmi *wmi, const u8 *bssid)
736{
737 struct sk_buff *skb;
738 struct roam_ctrl_cmd *cmd;
739
740 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
741 if (!skb)
742 return -ENOMEM;
743
744 cmd = (struct roam_ctrl_cmd *) skb->data;
Jouni Malinen12618752011-10-11 17:31:55 +0300745
746 memcpy(cmd->info.bssid, bssid, ETH_ALEN);
747 cmd->roam_ctrl = WMI_FORCE_ROAM;
748
749 ath6kl_dbg(ATH6KL_DBG_WMI, "force roam to %pM\n", bssid);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530750 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID,
Jouni Malinen12618752011-10-11 17:31:55 +0300751 NO_SYNC_WMIFLAG);
752}
753
Mohammed Shafi Shajakhaneb922e42012-11-16 18:23:15 +0530754int ath6kl_wmi_ap_set_beacon_intvl_cmd(struct wmi *wmi, u8 if_idx,
755 u32 beacon_intvl)
756{
757 struct sk_buff *skb;
758 struct set_beacon_int_cmd *cmd;
759
760 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
761 if (!skb)
762 return -ENOMEM;
763
764 cmd = (struct set_beacon_int_cmd *) skb->data;
765
766 cmd->beacon_intvl = cpu_to_le32(beacon_intvl);
767 return ath6kl_wmi_cmd_send(wmi, if_idx, skb,
768 WMI_SET_BEACON_INT_CMDID, NO_SYNC_WMIFLAG);
769}
770
Etay Luzd154f322012-05-30 11:35:08 +0300771int ath6kl_wmi_ap_set_dtim_cmd(struct wmi *wmi, u8 if_idx, u32 dtim_period)
772{
773 struct sk_buff *skb;
774 struct set_dtim_cmd *cmd;
775
776 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
777 if (!skb)
778 return -ENOMEM;
779
780 cmd = (struct set_dtim_cmd *) skb->data;
781
782 cmd->dtim_period = cpu_to_le32(dtim_period);
783 return ath6kl_wmi_cmd_send(wmi, if_idx, skb,
784 WMI_AP_SET_DTIM_CMDID, NO_SYNC_WMIFLAG);
785}
786
Jouni Malinen12618752011-10-11 17:31:55 +0300787int ath6kl_wmi_set_roam_mode_cmd(struct wmi *wmi, enum wmi_roam_mode mode)
788{
789 struct sk_buff *skb;
790 struct roam_ctrl_cmd *cmd;
791
792 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
793 if (!skb)
794 return -ENOMEM;
795
796 cmd = (struct roam_ctrl_cmd *) skb->data;
Jouni Malinen12618752011-10-11 17:31:55 +0300797
798 cmd->info.roam_mode = mode;
799 cmd->roam_ctrl = WMI_SET_ROAM_MODE;
800
801 ath6kl_dbg(ATH6KL_DBG_WMI, "set roam mode %d\n", mode);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +0530802 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID,
Jouni Malinen12618752011-10-11 17:31:55 +0300803 NO_SYNC_WMIFLAG);
804}
805
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530806static int ath6kl_wmi_connect_event_rx(struct wmi *wmi, u8 *datap, int len,
807 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300808{
809 struct wmi_connect_event *ev;
810 u8 *pie, *peie;
811
812 if (len < sizeof(struct wmi_connect_event))
813 return -EINVAL;
814
815 ev = (struct wmi_connect_event *) datap;
816
Vasanthakumar Thiagarajanf5938f22011-10-25 19:34:03 +0530817 if (vif->nw_type == AP_NETWORK) {
Jouni Malinen572e27c2011-09-05 17:38:45 +0300818 /* AP mode start/STA connected event */
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530819 struct net_device *dev = vif->ndev;
Jouni Malinen572e27c2011-09-05 17:38:45 +0300820 if (memcmp(dev->dev_addr, ev->u.ap_bss.bssid, ETH_ALEN) == 0) {
Kalle Valocdeb8602012-04-12 11:02:18 +0300821 ath6kl_dbg(ATH6KL_DBG_WMI,
822 "%s: freq %d bssid %pM (AP started)\n",
Jouni Malinen572e27c2011-09-05 17:38:45 +0300823 __func__, le16_to_cpu(ev->u.ap_bss.ch),
824 ev->u.ap_bss.bssid);
825 ath6kl_connect_ap_mode_bss(
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530826 vif, le16_to_cpu(ev->u.ap_bss.ch));
Jouni Malinen572e27c2011-09-05 17:38:45 +0300827 } else {
Kalle Valocdeb8602012-04-12 11:02:18 +0300828 ath6kl_dbg(ATH6KL_DBG_WMI,
829 "%s: aid %u mac_addr %pM auth=%u keymgmt=%u cipher=%u apsd_info=%u (STA connected)\n",
Jouni Malinen572e27c2011-09-05 17:38:45 +0300830 __func__, ev->u.ap_sta.aid,
831 ev->u.ap_sta.mac_addr,
832 ev->u.ap_sta.auth,
833 ev->u.ap_sta.keymgmt,
834 le16_to_cpu(ev->u.ap_sta.cipher),
835 ev->u.ap_sta.apsd_info);
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530836
Jouni Malinen572e27c2011-09-05 17:38:45 +0300837 ath6kl_connect_ap_mode_sta(
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530838 vif, ev->u.ap_sta.aid, ev->u.ap_sta.mac_addr,
Jouni Malinen572e27c2011-09-05 17:38:45 +0300839 ev->u.ap_sta.keymgmt,
840 le16_to_cpu(ev->u.ap_sta.cipher),
841 ev->u.ap_sta.auth, ev->assoc_req_len,
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +0530842 ev->assoc_info + ev->beacon_ie_len,
843 ev->u.ap_sta.apsd_info);
Jouni Malinen572e27c2011-09-05 17:38:45 +0300844 }
845 return 0;
846 }
847
848 /* STA/IBSS mode connection event */
849
Kalle Valob9b6ee62011-09-27 14:31:21 +0300850 ath6kl_dbg(ATH6KL_DBG_WMI,
851 "wmi event connect freq %d bssid %pM listen_intvl %d beacon_intvl %d type %d\n",
852 le16_to_cpu(ev->u.sta.ch), ev->u.sta.bssid,
853 le16_to_cpu(ev->u.sta.listen_intvl),
854 le16_to_cpu(ev->u.sta.beacon_intvl),
855 le32_to_cpu(ev->u.sta.nw_type));
Kalle Valobdcd8172011-07-18 00:22:30 +0300856
Kalle Valobdcd8172011-07-18 00:22:30 +0300857 /* Start of assoc rsp IEs */
858 pie = ev->assoc_info + ev->beacon_ie_len +
859 ev->assoc_req_len + (sizeof(u16) * 3); /* capinfo, status, aid */
860
861 /* End of assoc rsp IEs */
862 peie = ev->assoc_info + ev->beacon_ie_len + ev->assoc_req_len +
863 ev->assoc_resp_len;
864
865 while (pie < peie) {
866 switch (*pie) {
867 case WLAN_EID_VENDOR_SPECIFIC:
868 if (pie[1] > 3 && pie[2] == 0x00 && pie[3] == 0x50 &&
869 pie[4] == 0xf2 && pie[5] == WMM_OUI_TYPE) {
870 /* WMM OUT (00:50:F2) */
Kalle Valoddc3d772012-03-07 20:03:58 +0200871 if (pie[1] > 5 &&
872 pie[6] == WMM_PARAM_OUI_SUBTYPE)
Kalle Valobdcd8172011-07-18 00:22:30 +0300873 wmi->is_wmm_enabled = true;
874 }
875 break;
876 }
877
878 if (wmi->is_wmm_enabled)
879 break;
880
881 pie += pie[1] + 2;
882 }
883
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530884 ath6kl_connect_event(vif, le16_to_cpu(ev->u.sta.ch),
Jouni Malinen572e27c2011-09-05 17:38:45 +0300885 ev->u.sta.bssid,
886 le16_to_cpu(ev->u.sta.listen_intvl),
887 le16_to_cpu(ev->u.sta.beacon_intvl),
888 le32_to_cpu(ev->u.sta.nw_type),
Kalle Valobdcd8172011-07-18 00:22:30 +0300889 ev->beacon_ie_len, ev->assoc_req_len,
890 ev->assoc_resp_len, ev->assoc_info);
891
892 return 0;
893}
894
Vivek Natarajan06033762011-09-06 13:01:36 +0530895static struct country_code_to_enum_rd *
896ath6kl_regd_find_country(u16 countryCode)
897{
898 int i;
899
900 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
901 if (allCountries[i].countryCode == countryCode)
902 return &allCountries[i];
903 }
904
905 return NULL;
906}
907
908static struct reg_dmn_pair_mapping *
909ath6kl_get_regpair(u16 regdmn)
910{
911 int i;
912
913 if (regdmn == NO_ENUMRD)
914 return NULL;
915
916 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) {
Kalle Valoef8c0012014-02-13 18:13:12 +0200917 if (regDomainPairs[i].reg_domain == regdmn)
Vivek Natarajan06033762011-09-06 13:01:36 +0530918 return &regDomainPairs[i];
919 }
920
921 return NULL;
922}
923
924static struct country_code_to_enum_rd *
925ath6kl_regd_find_country_by_rd(u16 regdmn)
926{
927 int i;
928
929 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
930 if (allCountries[i].regDmnEnum == regdmn)
931 return &allCountries[i];
932 }
933
934 return NULL;
935}
936
937static void ath6kl_wmi_regdomain_event(struct wmi *wmi, u8 *datap, int len)
938{
939
940 struct ath6kl_wmi_regdomain *ev;
941 struct country_code_to_enum_rd *country = NULL;
942 struct reg_dmn_pair_mapping *regpair = NULL;
943 char alpha2[2];
944 u32 reg_code;
945
946 ev = (struct ath6kl_wmi_regdomain *) datap;
947 reg_code = le32_to_cpu(ev->reg_code);
948
949 if ((reg_code >> ATH6KL_COUNTRY_RD_SHIFT) & COUNTRY_ERD_FLAG)
950 country = ath6kl_regd_find_country((u16) reg_code);
951 else if (!(((u16) reg_code & WORLD_SKU_MASK) == WORLD_SKU_PREFIX)) {
952
953 regpair = ath6kl_get_regpair((u16) reg_code);
954 country = ath6kl_regd_find_country_by_rd((u16) reg_code);
Raja Mani43a06b32012-09-21 15:08:53 +0530955 if (regpair)
956 ath6kl_dbg(ATH6KL_DBG_WMI, "Regpair used: 0x%0x\n",
Kalle Valoef8c0012014-02-13 18:13:12 +0200957 regpair->reg_domain);
Raja Mani43a06b32012-09-21 15:08:53 +0530958 else
959 ath6kl_warn("Regpair not found reg_code 0x%0x\n",
960 reg_code);
Vivek Natarajan06033762011-09-06 13:01:36 +0530961 }
962
Vasanthakumar Thiagarajane5348a12012-02-25 14:43:17 +0530963 if (country && wmi->parent_dev->wiphy_registered) {
Vivek Natarajan06033762011-09-06 13:01:36 +0530964 alpha2[0] = country->isoName[0];
965 alpha2[1] = country->isoName[1];
966
Vasanthakumar Thiagarajanbe98e3a2011-10-25 19:33:57 +0530967 regulatory_hint(wmi->parent_dev->wiphy, alpha2);
Vivek Natarajan06033762011-09-06 13:01:36 +0530968
Kalle Valob9b6ee62011-09-27 14:31:21 +0300969 ath6kl_dbg(ATH6KL_DBG_WMI, "Country alpha2 being used: %c%c\n",
Kalle Valo96f1fad2012-03-07 20:03:57 +0200970 alpha2[0], alpha2[1]);
Vivek Natarajan06033762011-09-06 13:01:36 +0530971 }
972}
973
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530974static int ath6kl_wmi_disconnect_event_rx(struct wmi *wmi, u8 *datap, int len,
975 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +0300976{
977 struct wmi_disconnect_event *ev;
978 wmi->traffic_class = 100;
979
980 if (len < sizeof(struct wmi_disconnect_event))
981 return -EINVAL;
982
983 ev = (struct wmi_disconnect_event *) datap;
Kalle Valobdcd8172011-07-18 00:22:30 +0300984
Kalle Valob9b6ee62011-09-27 14:31:21 +0300985 ath6kl_dbg(ATH6KL_DBG_WMI,
986 "wmi event disconnect proto_reason %d bssid %pM wmi_reason %d assoc_resp_len %d\n",
987 le16_to_cpu(ev->proto_reason_status), ev->bssid,
988 ev->disconn_reason, ev->assoc_resp_len);
989
Kalle Valobdcd8172011-07-18 00:22:30 +0300990 wmi->is_wmm_enabled = false;
Kalle Valobdcd8172011-07-18 00:22:30 +0300991
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +0530992 ath6kl_disconnect_event(vif, ev->disconn_reason,
Kalle Valobdcd8172011-07-18 00:22:30 +0300993 ev->bssid, ev->assoc_resp_len, ev->assoc_info,
994 le16_to_cpu(ev->proto_reason_status));
995
996 return 0;
997}
998
999static int ath6kl_wmi_peer_node_event_rx(struct wmi *wmi, u8 *datap, int len)
1000{
1001 struct wmi_peer_node_event *ev;
1002
1003 if (len < sizeof(struct wmi_peer_node_event))
1004 return -EINVAL;
1005
1006 ev = (struct wmi_peer_node_event *) datap;
1007
1008 if (ev->event_code == PEER_NODE_JOIN_EVENT)
1009 ath6kl_dbg(ATH6KL_DBG_WMI, "joined node with mac addr: %pM\n",
1010 ev->peer_mac_addr);
1011 else if (ev->event_code == PEER_NODE_LEAVE_EVENT)
1012 ath6kl_dbg(ATH6KL_DBG_WMI, "left node with mac addr: %pM\n",
1013 ev->peer_mac_addr);
1014
1015 return 0;
1016}
1017
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301018static int ath6kl_wmi_tkip_micerr_event_rx(struct wmi *wmi, u8 *datap, int len,
1019 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03001020{
1021 struct wmi_tkip_micerr_event *ev;
1022
1023 if (len < sizeof(struct wmi_tkip_micerr_event))
1024 return -EINVAL;
1025
1026 ev = (struct wmi_tkip_micerr_event *) datap;
1027
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301028 ath6kl_tkip_micerr_event(vif, ev->key_id, ev->is_mcast);
Kalle Valobdcd8172011-07-18 00:22:30 +03001029
1030 return 0;
1031}
1032
Kalle Valo10509f92011-12-13 14:52:07 +02001033void ath6kl_wmi_sscan_timer(unsigned long ptr)
1034{
1035 struct ath6kl_vif *vif = (struct ath6kl_vif *) ptr;
1036
1037 cfg80211_sched_scan_results(vif->ar->wiphy);
1038}
1039
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301040static int ath6kl_wmi_bssinfo_event_rx(struct wmi *wmi, u8 *datap, int len,
1041 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03001042{
Jouni Malinen82e14f52011-09-19 19:15:05 +03001043 struct wmi_bss_info_hdr2 *bih;
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001044 u8 *buf;
1045 struct ieee80211_channel *channel;
1046 struct ath6kl *ar = wmi->parent_dev;
1047 struct ieee80211_mgmt *mgmt;
1048 struct cfg80211_bss *bss;
Kalle Valobdcd8172011-07-18 00:22:30 +03001049
Jouni Malinen82e14f52011-09-19 19:15:05 +03001050 if (len <= sizeof(struct wmi_bss_info_hdr2))
Kalle Valobdcd8172011-07-18 00:22:30 +03001051 return -EINVAL;
1052
Jouni Malinen82e14f52011-09-19 19:15:05 +03001053 bih = (struct wmi_bss_info_hdr2 *) datap;
1054 buf = datap + sizeof(struct wmi_bss_info_hdr2);
1055 len -= sizeof(struct wmi_bss_info_hdr2);
Kalle Valobdcd8172011-07-18 00:22:30 +03001056
1057 ath6kl_dbg(ATH6KL_DBG_WMI,
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001058 "bss info evt - ch %u, snr %d, rssi %d, bssid \"%pM\" "
1059 "frame_type=%d\n",
Jouni Malinen82e14f52011-09-19 19:15:05 +03001060 bih->ch, bih->snr, bih->snr - 95, bih->bssid,
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001061 bih->frame_type);
Kalle Valobdcd8172011-07-18 00:22:30 +03001062
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001063 if (bih->frame_type != BEACON_FTYPE &&
1064 bih->frame_type != PROBERESP_FTYPE)
1065 return 0; /* Only update BSS table for now */
Kalle Valobdcd8172011-07-18 00:22:30 +03001066
Jouni Malinen551185c2011-09-19 19:15:06 +03001067 if (bih->frame_type == BEACON_FTYPE &&
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +05301068 test_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags)) {
1069 clear_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301070 ath6kl_wmi_bssfilter_cmd(ar->wmi, vif->fw_vif_idx,
1071 NONE_BSS_FILTER, 0);
Jouni Malinen551185c2011-09-19 19:15:06 +03001072 }
1073
Vasanthakumar Thiagarajanbe98e3a2011-10-25 19:33:57 +05301074 channel = ieee80211_get_channel(ar->wiphy, le16_to_cpu(bih->ch));
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001075 if (channel == NULL)
1076 return -EINVAL;
Kalle Valobdcd8172011-07-18 00:22:30 +03001077
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001078 if (len < 8 + 2 + 2)
1079 return -EINVAL;
Kalle Valobdcd8172011-07-18 00:22:30 +03001080
Kalle Valoddc3d772012-03-07 20:03:58 +02001081 if (bih->frame_type == BEACON_FTYPE &&
1082 test_bit(CONNECTED, &vif->flags) &&
1083 memcmp(bih->bssid, vif->bssid, ETH_ALEN) == 0) {
Jouni Malinen32c10872011-09-19 19:15:07 +03001084 const u8 *tim;
1085 tim = cfg80211_find_ie(WLAN_EID_TIM, buf + 8 + 2 + 2,
1086 len - 8 - 2 - 2);
1087 if (tim && tim[1] >= 2) {
Vasanthakumar Thiagarajancf5333d2011-10-25 19:34:10 +05301088 vif->assoc_bss_dtim_period = tim[3];
Vasanthakumar Thiagarajan59c98442011-10-25 19:34:01 +05301089 set_bit(DTIM_PERIOD_AVAIL, &vif->flags);
Jouni Malinen32c10872011-09-19 19:15:07 +03001090 }
1091 }
1092
Kalle Valobdcd8172011-07-18 00:22:30 +03001093 /*
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001094 * In theory, use of cfg80211_inform_bss() would be more natural here
1095 * since we do not have the full frame. However, at least for now,
1096 * cfg80211 can only distinguish Beacon and Probe Response frames from
1097 * each other when using cfg80211_inform_bss_frame(), so let's build a
1098 * fake IEEE 802.11 header to be able to take benefit of this.
Kalle Valobdcd8172011-07-18 00:22:30 +03001099 */
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001100 mgmt = kmalloc(24 + len, GFP_ATOMIC);
1101 if (mgmt == NULL)
1102 return -EINVAL;
Kalle Valobdcd8172011-07-18 00:22:30 +03001103
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001104 if (bih->frame_type == BEACON_FTYPE) {
1105 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1106 IEEE80211_STYPE_BEACON);
1107 memset(mgmt->da, 0xff, ETH_ALEN);
1108 } else {
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301109 struct net_device *dev = vif->ndev;
Kalle Valobdcd8172011-07-18 00:22:30 +03001110
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001111 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1112 IEEE80211_STYPE_PROBE_RESP);
1113 memcpy(mgmt->da, dev->dev_addr, ETH_ALEN);
Kalle Valobdcd8172011-07-18 00:22:30 +03001114 }
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001115 mgmt->duration = cpu_to_le16(0);
1116 memcpy(mgmt->sa, bih->bssid, ETH_ALEN);
1117 memcpy(mgmt->bssid, bih->bssid, ETH_ALEN);
1118 mgmt->seq_ctrl = cpu_to_le16(0);
Kalle Valobdcd8172011-07-18 00:22:30 +03001119
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001120 memcpy(&mgmt->u.beacon, buf, len);
1121
Vasanthakumar Thiagarajanbe98e3a2011-10-25 19:33:57 +05301122 bss = cfg80211_inform_bss_frame(ar->wiphy, channel, mgmt,
Jouni Malinen82e14f52011-09-19 19:15:05 +03001123 24 + len, (bih->snr - 95) * 100,
1124 GFP_ATOMIC);
Jouni Malinen1aaa8c72011-09-19 19:15:03 +03001125 kfree(mgmt);
1126 if (bss == NULL)
Kalle Valobdcd8172011-07-18 00:22:30 +03001127 return -ENOMEM;
Johannes Berg5b112d32013-02-01 01:49:58 +01001128 cfg80211_put_bss(ar->wiphy, bss);
Kalle Valobdcd8172011-07-18 00:22:30 +03001129
Kalle Valo10509f92011-12-13 14:52:07 +02001130 /*
1131 * Firmware doesn't return any event when scheduled scan has
1132 * finished, so we need to use a timer to find out when there are
1133 * no more results.
1134 *
1135 * The timer is started from the first bss info received, otherwise
1136 * the timer would not ever fire if the scan interval is short
1137 * enough.
1138 */
Thomas Pedersenb1f47e32012-08-15 16:51:24 -07001139 if (test_bit(SCHED_SCANNING, &vif->flags) &&
Kalle Valo10509f92011-12-13 14:52:07 +02001140 !timer_pending(&vif->sched_scan_timer)) {
1141 mod_timer(&vif->sched_scan_timer, jiffies +
1142 msecs_to_jiffies(ATH6KL_SCHED_SCAN_RESULT_DELAY));
1143 }
1144
Kalle Valobdcd8172011-07-18 00:22:30 +03001145 return 0;
1146}
1147
Kalle Valobdcd8172011-07-18 00:22:30 +03001148/* Inactivity timeout of a fatpipe(pstream) at the target */
1149static int ath6kl_wmi_pstream_timeout_event_rx(struct wmi *wmi, u8 *datap,
1150 int len)
1151{
1152 struct wmi_pstream_timeout_event *ev;
1153
1154 if (len < sizeof(struct wmi_pstream_timeout_event))
1155 return -EINVAL;
1156
1157 ev = (struct wmi_pstream_timeout_event *) datap;
1158
1159 /*
1160 * When the pstream (fat pipe == AC) timesout, it means there were
1161 * no thinStreams within this pstream & it got implicitly created
1162 * due to data flow on this AC. We start the inactivity timer only
1163 * for implicitly created pstream. Just reset the host state.
1164 */
1165 spin_lock_bh(&wmi->lock);
1166 wmi->stream_exist_for_ac[ev->traffic_class] = 0;
1167 wmi->fat_pipe_exist &= ~(1 << ev->traffic_class);
1168 spin_unlock_bh(&wmi->lock);
1169
1170 /* Indicate inactivity to driver layer for this fatpipe (pstream) */
1171 ath6kl_indicate_tx_activity(wmi->parent_dev, ev->traffic_class, false);
1172
1173 return 0;
1174}
1175
1176static int ath6kl_wmi_bitrate_reply_rx(struct wmi *wmi, u8 *datap, int len)
1177{
1178 struct wmi_bit_rate_reply *reply;
1179 s32 rate;
1180 u32 sgi, index;
1181
1182 if (len < sizeof(struct wmi_bit_rate_reply))
1183 return -EINVAL;
1184
1185 reply = (struct wmi_bit_rate_reply *) datap;
1186
1187 ath6kl_dbg(ATH6KL_DBG_WMI, "rateindex %d\n", reply->rate_index);
1188
1189 if (reply->rate_index == (s8) RATE_AUTO) {
1190 rate = RATE_AUTO;
1191 } else {
1192 index = reply->rate_index & 0x7f;
Raja Manid54601b2012-09-21 15:08:54 +05301193 if (WARN_ON_ONCE(index > (RATE_MCS_7_40 + 1)))
1194 return -EINVAL;
1195
Kalle Valobdcd8172011-07-18 00:22:30 +03001196 sgi = (reply->rate_index & 0x80) ? 1 : 0;
1197 rate = wmi_rate_tbl[index][sgi];
1198 }
1199
1200 ath6kl_wakeup_event(wmi->parent_dev);
1201
1202 return 0;
1203}
1204
Thomas Pedersen4f34dac2011-12-30 01:57:00 -08001205static int ath6kl_wmi_test_rx(struct wmi *wmi, u8 *datap, int len)
Kalle Valo003353b0d2011-09-01 10:14:21 +03001206{
Thomas Pedersen4f34dac2011-12-30 01:57:00 -08001207 ath6kl_tm_rx_event(wmi->parent_dev, datap, len);
Kalle Valo003353b0d2011-09-01 10:14:21 +03001208
1209 return 0;
1210}
1211
Kalle Valobdcd8172011-07-18 00:22:30 +03001212static int ath6kl_wmi_ratemask_reply_rx(struct wmi *wmi, u8 *datap, int len)
1213{
1214 if (len < sizeof(struct wmi_fix_rates_reply))
1215 return -EINVAL;
1216
1217 ath6kl_wakeup_event(wmi->parent_dev);
1218
1219 return 0;
1220}
1221
1222static int ath6kl_wmi_ch_list_reply_rx(struct wmi *wmi, u8 *datap, int len)
1223{
1224 if (len < sizeof(struct wmi_channel_list_reply))
1225 return -EINVAL;
1226
1227 ath6kl_wakeup_event(wmi->parent_dev);
1228
1229 return 0;
1230}
1231
1232static int ath6kl_wmi_tx_pwr_reply_rx(struct wmi *wmi, u8 *datap, int len)
1233{
1234 struct wmi_tx_pwr_reply *reply;
1235
1236 if (len < sizeof(struct wmi_tx_pwr_reply))
1237 return -EINVAL;
1238
1239 reply = (struct wmi_tx_pwr_reply *) datap;
1240 ath6kl_txpwr_rx_evt(wmi->parent_dev, reply->dbM);
1241
1242 return 0;
1243}
1244
1245static int ath6kl_wmi_keepalive_reply_rx(struct wmi *wmi, u8 *datap, int len)
1246{
1247 if (len < sizeof(struct wmi_get_keepalive_cmd))
1248 return -EINVAL;
1249
1250 ath6kl_wakeup_event(wmi->parent_dev);
1251
1252 return 0;
1253}
1254
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301255static int ath6kl_wmi_scan_complete_rx(struct wmi *wmi, u8 *datap, int len,
1256 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03001257{
1258 struct wmi_scan_complete_event *ev;
1259
1260 ev = (struct wmi_scan_complete_event *) datap;
1261
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301262 ath6kl_scan_complete_evt(vif, a_sle32_to_cpu(ev->status));
Kalle Valobdcd8172011-07-18 00:22:30 +03001263 wmi->is_probe_ssid = false;
1264
1265 return 0;
1266}
1267
Jouni Malinen86512132011-09-21 16:57:29 +03001268static int ath6kl_wmi_neighbor_report_event_rx(struct wmi *wmi, u8 *datap,
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301269 int len, struct ath6kl_vif *vif)
Jouni Malinen86512132011-09-21 16:57:29 +03001270{
1271 struct wmi_neighbor_report_event *ev;
1272 u8 i;
1273
1274 if (len < sizeof(*ev))
1275 return -EINVAL;
1276 ev = (struct wmi_neighbor_report_event *) datap;
1277 if (sizeof(*ev) + ev->num_neighbors * sizeof(struct wmi_neighbor_info)
1278 > len) {
Kalle Valocdeb8602012-04-12 11:02:18 +03001279 ath6kl_dbg(ATH6KL_DBG_WMI,
1280 "truncated neighbor event (num=%d len=%d)\n",
1281 ev->num_neighbors, len);
Jouni Malinen86512132011-09-21 16:57:29 +03001282 return -EINVAL;
1283 }
1284 for (i = 0; i < ev->num_neighbors; i++) {
1285 ath6kl_dbg(ATH6KL_DBG_WMI, "neighbor %d/%d - %pM 0x%x\n",
1286 i + 1, ev->num_neighbors, ev->neighbor[i].bssid,
1287 ev->neighbor[i].bss_flags);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301288 cfg80211_pmksa_candidate_notify(vif->ndev, i,
Jouni Malinen86512132011-09-21 16:57:29 +03001289 ev->neighbor[i].bssid,
1290 !!(ev->neighbor[i].bss_flags &
1291 WMI_PREAUTH_CAPABLE_BSS),
1292 GFP_ATOMIC);
1293 }
1294
1295 return 0;
1296}
1297
Kalle Valobdcd8172011-07-18 00:22:30 +03001298/*
1299 * Target is reporting a programming error. This is for
1300 * developer aid only. Target only checks a few common violations
1301 * and it is responsibility of host to do all error checking.
1302 * Behavior of target after wmi error event is undefined.
1303 * A reset is recommended.
1304 */
1305static int ath6kl_wmi_error_event_rx(struct wmi *wmi, u8 *datap, int len)
1306{
1307 const char *type = "unknown error";
1308 struct wmi_cmd_error_event *ev;
1309 ev = (struct wmi_cmd_error_event *) datap;
1310
1311 switch (ev->err_code) {
1312 case INVALID_PARAM:
1313 type = "invalid parameter";
1314 break;
1315 case ILLEGAL_STATE:
1316 type = "invalid state";
1317 break;
1318 case INTERNAL_ERROR:
1319 type = "internal error";
1320 break;
1321 }
1322
1323 ath6kl_dbg(ATH6KL_DBG_WMI, "programming error, cmd=%d %s\n",
1324 ev->cmd_id, type);
1325
1326 return 0;
1327}
1328
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301329static int ath6kl_wmi_stats_event_rx(struct wmi *wmi, u8 *datap, int len,
1330 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03001331{
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301332 ath6kl_tgt_stats_event(vif, datap, len);
Kalle Valobdcd8172011-07-18 00:22:30 +03001333
1334 return 0;
1335}
1336
1337static u8 ath6kl_wmi_get_upper_threshold(s16 rssi,
1338 struct sq_threshold_params *sq_thresh,
1339 u32 size)
1340{
1341 u32 index;
1342 u8 threshold = (u8) sq_thresh->upper_threshold[size - 1];
1343
1344 /* The list is already in sorted order. Get the next lower value */
1345 for (index = 0; index < size; index++) {
1346 if (rssi < sq_thresh->upper_threshold[index]) {
1347 threshold = (u8) sq_thresh->upper_threshold[index];
1348 break;
1349 }
1350 }
1351
1352 return threshold;
1353}
1354
1355static u8 ath6kl_wmi_get_lower_threshold(s16 rssi,
1356 struct sq_threshold_params *sq_thresh,
1357 u32 size)
1358{
1359 u32 index;
1360 u8 threshold = (u8) sq_thresh->lower_threshold[size - 1];
1361
1362 /* The list is already in sorted order. Get the next lower value */
1363 for (index = 0; index < size; index++) {
1364 if (rssi > sq_thresh->lower_threshold[index]) {
1365 threshold = (u8) sq_thresh->lower_threshold[index];
1366 break;
1367 }
1368 }
1369
1370 return threshold;
1371}
1372
1373static int ath6kl_wmi_send_rssi_threshold_params(struct wmi *wmi,
1374 struct wmi_rssi_threshold_params_cmd *rssi_cmd)
1375{
1376 struct sk_buff *skb;
1377 struct wmi_rssi_threshold_params_cmd *cmd;
1378
1379 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1380 if (!skb)
1381 return -ENOMEM;
1382
1383 cmd = (struct wmi_rssi_threshold_params_cmd *) skb->data;
1384 memcpy(cmd, rssi_cmd, sizeof(struct wmi_rssi_threshold_params_cmd));
1385
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301386 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_RSSI_THRESHOLD_PARAMS_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03001387 NO_SYNC_WMIFLAG);
1388}
1389
1390static int ath6kl_wmi_rssi_threshold_event_rx(struct wmi *wmi, u8 *datap,
1391 int len)
1392{
1393 struct wmi_rssi_threshold_event *reply;
1394 struct wmi_rssi_threshold_params_cmd cmd;
1395 struct sq_threshold_params *sq_thresh;
1396 enum wmi_rssi_threshold_val new_threshold;
1397 u8 upper_rssi_threshold, lower_rssi_threshold;
1398 s16 rssi;
1399 int ret;
1400
1401 if (len < sizeof(struct wmi_rssi_threshold_event))
1402 return -EINVAL;
1403
1404 reply = (struct wmi_rssi_threshold_event *) datap;
1405 new_threshold = (enum wmi_rssi_threshold_val) reply->range;
1406 rssi = a_sle16_to_cpu(reply->rssi);
1407
1408 sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_RSSI];
1409
1410 /*
1411 * Identify the threshold breached and communicate that to the app.
1412 * After that install a new set of thresholds based on the signal
1413 * quality reported by the target
1414 */
1415 if (new_threshold) {
1416 /* Upper threshold breached */
1417 if (rssi < sq_thresh->upper_threshold[0]) {
1418 ath6kl_dbg(ATH6KL_DBG_WMI,
Kalle Valo96f1fad2012-03-07 20:03:57 +02001419 "spurious upper rssi threshold event: %d\n",
1420 rssi);
Kalle Valobdcd8172011-07-18 00:22:30 +03001421 } else if ((rssi < sq_thresh->upper_threshold[1]) &&
1422 (rssi >= sq_thresh->upper_threshold[0])) {
1423 new_threshold = WMI_RSSI_THRESHOLD1_ABOVE;
1424 } else if ((rssi < sq_thresh->upper_threshold[2]) &&
1425 (rssi >= sq_thresh->upper_threshold[1])) {
1426 new_threshold = WMI_RSSI_THRESHOLD2_ABOVE;
1427 } else if ((rssi < sq_thresh->upper_threshold[3]) &&
1428 (rssi >= sq_thresh->upper_threshold[2])) {
1429 new_threshold = WMI_RSSI_THRESHOLD3_ABOVE;
1430 } else if ((rssi < sq_thresh->upper_threshold[4]) &&
1431 (rssi >= sq_thresh->upper_threshold[3])) {
1432 new_threshold = WMI_RSSI_THRESHOLD4_ABOVE;
1433 } else if ((rssi < sq_thresh->upper_threshold[5]) &&
1434 (rssi >= sq_thresh->upper_threshold[4])) {
1435 new_threshold = WMI_RSSI_THRESHOLD5_ABOVE;
1436 } else if (rssi >= sq_thresh->upper_threshold[5]) {
1437 new_threshold = WMI_RSSI_THRESHOLD6_ABOVE;
1438 }
1439 } else {
1440 /* Lower threshold breached */
1441 if (rssi > sq_thresh->lower_threshold[0]) {
1442 ath6kl_dbg(ATH6KL_DBG_WMI,
Kalle Valo96f1fad2012-03-07 20:03:57 +02001443 "spurious lower rssi threshold event: %d %d\n",
Kalle Valobdcd8172011-07-18 00:22:30 +03001444 rssi, sq_thresh->lower_threshold[0]);
1445 } else if ((rssi > sq_thresh->lower_threshold[1]) &&
1446 (rssi <= sq_thresh->lower_threshold[0])) {
1447 new_threshold = WMI_RSSI_THRESHOLD6_BELOW;
1448 } else if ((rssi > sq_thresh->lower_threshold[2]) &&
1449 (rssi <= sq_thresh->lower_threshold[1])) {
1450 new_threshold = WMI_RSSI_THRESHOLD5_BELOW;
1451 } else if ((rssi > sq_thresh->lower_threshold[3]) &&
1452 (rssi <= sq_thresh->lower_threshold[2])) {
1453 new_threshold = WMI_RSSI_THRESHOLD4_BELOW;
1454 } else if ((rssi > sq_thresh->lower_threshold[4]) &&
1455 (rssi <= sq_thresh->lower_threshold[3])) {
1456 new_threshold = WMI_RSSI_THRESHOLD3_BELOW;
1457 } else if ((rssi > sq_thresh->lower_threshold[5]) &&
1458 (rssi <= sq_thresh->lower_threshold[4])) {
1459 new_threshold = WMI_RSSI_THRESHOLD2_BELOW;
1460 } else if (rssi <= sq_thresh->lower_threshold[5]) {
1461 new_threshold = WMI_RSSI_THRESHOLD1_BELOW;
1462 }
1463 }
1464
1465 /* Calculate and install the next set of thresholds */
1466 lower_rssi_threshold = ath6kl_wmi_get_lower_threshold(rssi, sq_thresh,
1467 sq_thresh->lower_threshold_valid_count);
1468 upper_rssi_threshold = ath6kl_wmi_get_upper_threshold(rssi, sq_thresh,
1469 sq_thresh->upper_threshold_valid_count);
1470
1471 /* Issue a wmi command to install the thresholds */
1472 cmd.thresh_above1_val = a_cpu_to_sle16(upper_rssi_threshold);
1473 cmd.thresh_below1_val = a_cpu_to_sle16(lower_rssi_threshold);
1474 cmd.weight = sq_thresh->weight;
1475 cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval);
1476
1477 ret = ath6kl_wmi_send_rssi_threshold_params(wmi, &cmd);
1478 if (ret) {
1479 ath6kl_err("unable to configure rssi thresholds\n");
1480 return -EIO;
1481 }
1482
1483 return 0;
1484}
1485
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301486static int ath6kl_wmi_cac_event_rx(struct wmi *wmi, u8 *datap, int len,
1487 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03001488{
1489 struct wmi_cac_event *reply;
1490 struct ieee80211_tspec_ie *ts;
1491 u16 active_tsids, tsinfo;
1492 u8 tsid, index;
1493 u8 ts_id;
1494
1495 if (len < sizeof(struct wmi_cac_event))
1496 return -EINVAL;
1497
1498 reply = (struct wmi_cac_event *) datap;
1499
1500 if ((reply->cac_indication == CAC_INDICATION_ADMISSION_RESP) &&
1501 (reply->status_code != IEEE80211_TSPEC_STATUS_ADMISS_ACCEPTED)) {
1502
1503 ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion);
1504 tsinfo = le16_to_cpu(ts->tsinfo);
1505 tsid = (tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) &
1506 IEEE80211_WMM_IE_TSPEC_TID_MASK;
1507
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301508 ath6kl_wmi_delete_pstream_cmd(wmi, vif->fw_vif_idx,
1509 reply->ac, tsid);
Kalle Valobdcd8172011-07-18 00:22:30 +03001510 } else if (reply->cac_indication == CAC_INDICATION_NO_RESP) {
1511 /*
1512 * Following assumes that there is only one outstanding
1513 * ADDTS request when this event is received
1514 */
1515 spin_lock_bh(&wmi->lock);
1516 active_tsids = wmi->stream_exist_for_ac[reply->ac];
1517 spin_unlock_bh(&wmi->lock);
1518
1519 for (index = 0; index < sizeof(active_tsids) * 8; index++) {
1520 if ((active_tsids >> index) & 1)
1521 break;
1522 }
1523 if (index < (sizeof(active_tsids) * 8))
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301524 ath6kl_wmi_delete_pstream_cmd(wmi, vif->fw_vif_idx,
1525 reply->ac, index);
Kalle Valobdcd8172011-07-18 00:22:30 +03001526 }
1527
1528 /*
1529 * Clear active tsids and Add missing handling
1530 * for delete qos stream from AP
1531 */
1532 else if (reply->cac_indication == CAC_INDICATION_DELETE) {
1533
1534 ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion);
1535 tsinfo = le16_to_cpu(ts->tsinfo);
1536 ts_id = ((tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) &
1537 IEEE80211_WMM_IE_TSPEC_TID_MASK);
1538
1539 spin_lock_bh(&wmi->lock);
1540 wmi->stream_exist_for_ac[reply->ac] &= ~(1 << ts_id);
1541 active_tsids = wmi->stream_exist_for_ac[reply->ac];
1542 spin_unlock_bh(&wmi->lock);
1543
1544 /* Indicate stream inactivity to driver layer only if all tsids
1545 * within this AC are deleted.
1546 */
1547 if (!active_tsids) {
1548 ath6kl_indicate_tx_activity(wmi->parent_dev, reply->ac,
1549 false);
1550 wmi->fat_pipe_exist &= ~(1 << reply->ac);
1551 }
1552 }
1553
1554 return 0;
1555}
1556
Thomas Pedersen279b2862012-07-17 19:39:55 -07001557static int ath6kl_wmi_txe_notify_event_rx(struct wmi *wmi, u8 *datap, int len,
1558 struct ath6kl_vif *vif)
1559{
1560 struct wmi_txe_notify_event *ev;
1561 u32 rate, pkts;
1562
1563 if (len < sizeof(*ev))
1564 return -EINVAL;
1565
1566 if (vif->sme_state != SME_CONNECTED)
1567 return -ENOTCONN;
1568
1569 ev = (struct wmi_txe_notify_event *) datap;
1570 rate = le32_to_cpu(ev->rate);
1571 pkts = le32_to_cpu(ev->pkts);
1572
1573 ath6kl_dbg(ATH6KL_DBG_WMI, "TXE notify event: peer %pM rate %d% pkts %d intvl %ds\n",
1574 vif->bssid, rate, pkts, vif->txe_intvl);
1575
1576 cfg80211_cqm_txe_notify(vif->ndev, vif->bssid, pkts,
1577 rate, vif->txe_intvl, GFP_KERNEL);
1578
1579 return 0;
1580}
1581
1582int ath6kl_wmi_set_txe_notify(struct wmi *wmi, u8 idx,
1583 u32 rate, u32 pkts, u32 intvl)
1584{
1585 struct sk_buff *skb;
1586 struct wmi_txe_notify_cmd *cmd;
1587
1588 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1589 if (!skb)
1590 return -ENOMEM;
1591
1592 cmd = (struct wmi_txe_notify_cmd *) skb->data;
1593 cmd->rate = cpu_to_le32(rate);
1594 cmd->pkts = cpu_to_le32(pkts);
1595 cmd->intvl = cpu_to_le32(intvl);
1596
1597 return ath6kl_wmi_cmd_send(wmi, idx, skb, WMI_SET_TXE_NOTIFY_CMDID,
1598 NO_SYNC_WMIFLAG);
1599}
1600
Thomas Pedersen85b20fc2012-06-21 12:50:08 -07001601int ath6kl_wmi_set_rssi_filter_cmd(struct wmi *wmi, u8 if_idx, s8 rssi)
1602{
1603 struct sk_buff *skb;
1604 struct wmi_set_rssi_filter_cmd *cmd;
1605 int ret;
1606
1607 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1608 if (!skb)
1609 return -ENOMEM;
1610
1611 cmd = (struct wmi_set_rssi_filter_cmd *) skb->data;
1612 cmd->rssi = rssi;
1613
1614 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_RSSI_FILTER_CMDID,
1615 NO_SYNC_WMIFLAG);
1616 return ret;
1617}
1618
Kalle Valobdcd8172011-07-18 00:22:30 +03001619static int ath6kl_wmi_send_snr_threshold_params(struct wmi *wmi,
1620 struct wmi_snr_threshold_params_cmd *snr_cmd)
1621{
1622 struct sk_buff *skb;
1623 struct wmi_snr_threshold_params_cmd *cmd;
1624
1625 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1626 if (!skb)
1627 return -ENOMEM;
1628
1629 cmd = (struct wmi_snr_threshold_params_cmd *) skb->data;
1630 memcpy(cmd, snr_cmd, sizeof(struct wmi_snr_threshold_params_cmd));
1631
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301632 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SNR_THRESHOLD_PARAMS_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03001633 NO_SYNC_WMIFLAG);
1634}
1635
1636static int ath6kl_wmi_snr_threshold_event_rx(struct wmi *wmi, u8 *datap,
1637 int len)
1638{
1639 struct wmi_snr_threshold_event *reply;
1640 struct sq_threshold_params *sq_thresh;
1641 struct wmi_snr_threshold_params_cmd cmd;
1642 enum wmi_snr_threshold_val new_threshold;
1643 u8 upper_snr_threshold, lower_snr_threshold;
1644 s16 snr;
1645 int ret;
1646
1647 if (len < sizeof(struct wmi_snr_threshold_event))
1648 return -EINVAL;
1649
1650 reply = (struct wmi_snr_threshold_event *) datap;
1651
1652 new_threshold = (enum wmi_snr_threshold_val) reply->range;
1653 snr = reply->snr;
1654
1655 sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_SNR];
1656
1657 /*
1658 * Identify the threshold breached and communicate that to the app.
1659 * After that install a new set of thresholds based on the signal
1660 * quality reported by the target.
1661 */
1662 if (new_threshold) {
1663 /* Upper threshold breached */
1664 if (snr < sq_thresh->upper_threshold[0]) {
1665 ath6kl_dbg(ATH6KL_DBG_WMI,
Kalle Valo96f1fad2012-03-07 20:03:57 +02001666 "spurious upper snr threshold event: %d\n",
1667 snr);
Kalle Valobdcd8172011-07-18 00:22:30 +03001668 } else if ((snr < sq_thresh->upper_threshold[1]) &&
1669 (snr >= sq_thresh->upper_threshold[0])) {
1670 new_threshold = WMI_SNR_THRESHOLD1_ABOVE;
1671 } else if ((snr < sq_thresh->upper_threshold[2]) &&
1672 (snr >= sq_thresh->upper_threshold[1])) {
1673 new_threshold = WMI_SNR_THRESHOLD2_ABOVE;
1674 } else if ((snr < sq_thresh->upper_threshold[3]) &&
1675 (snr >= sq_thresh->upper_threshold[2])) {
1676 new_threshold = WMI_SNR_THRESHOLD3_ABOVE;
1677 } else if (snr >= sq_thresh->upper_threshold[3]) {
1678 new_threshold = WMI_SNR_THRESHOLD4_ABOVE;
1679 }
1680 } else {
1681 /* Lower threshold breached */
1682 if (snr > sq_thresh->lower_threshold[0]) {
1683 ath6kl_dbg(ATH6KL_DBG_WMI,
Kalle Valo96f1fad2012-03-07 20:03:57 +02001684 "spurious lower snr threshold event: %d\n",
1685 sq_thresh->lower_threshold[0]);
Kalle Valobdcd8172011-07-18 00:22:30 +03001686 } else if ((snr > sq_thresh->lower_threshold[1]) &&
1687 (snr <= sq_thresh->lower_threshold[0])) {
1688 new_threshold = WMI_SNR_THRESHOLD4_BELOW;
1689 } else if ((snr > sq_thresh->lower_threshold[2]) &&
1690 (snr <= sq_thresh->lower_threshold[1])) {
1691 new_threshold = WMI_SNR_THRESHOLD3_BELOW;
1692 } else if ((snr > sq_thresh->lower_threshold[3]) &&
1693 (snr <= sq_thresh->lower_threshold[2])) {
1694 new_threshold = WMI_SNR_THRESHOLD2_BELOW;
1695 } else if (snr <= sq_thresh->lower_threshold[3]) {
1696 new_threshold = WMI_SNR_THRESHOLD1_BELOW;
1697 }
1698 }
1699
1700 /* Calculate and install the next set of thresholds */
1701 lower_snr_threshold = ath6kl_wmi_get_lower_threshold(snr, sq_thresh,
1702 sq_thresh->lower_threshold_valid_count);
1703 upper_snr_threshold = ath6kl_wmi_get_upper_threshold(snr, sq_thresh,
1704 sq_thresh->upper_threshold_valid_count);
1705
1706 /* Issue a wmi command to install the thresholds */
1707 cmd.thresh_above1_val = upper_snr_threshold;
1708 cmd.thresh_below1_val = lower_snr_threshold;
1709 cmd.weight = sq_thresh->weight;
1710 cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval);
1711
1712 ath6kl_dbg(ATH6KL_DBG_WMI,
1713 "snr: %d, threshold: %d, lower: %d, upper: %d\n",
1714 snr, new_threshold,
1715 lower_snr_threshold, upper_snr_threshold);
1716
1717 ret = ath6kl_wmi_send_snr_threshold_params(wmi, &cmd);
1718 if (ret) {
1719 ath6kl_err("unable to configure snr threshold\n");
1720 return -EIO;
1721 }
1722
1723 return 0;
1724}
1725
1726static int ath6kl_wmi_aplist_event_rx(struct wmi *wmi, u8 *datap, int len)
1727{
1728 u16 ap_info_entry_size;
1729 struct wmi_aplist_event *ev = (struct wmi_aplist_event *) datap;
1730 struct wmi_ap_info_v1 *ap_info_v1;
1731 u8 index;
1732
1733 if (len < sizeof(struct wmi_aplist_event) ||
1734 ev->ap_list_ver != APLIST_VER1)
1735 return -EINVAL;
1736
1737 ap_info_entry_size = sizeof(struct wmi_ap_info_v1);
1738 ap_info_v1 = (struct wmi_ap_info_v1 *) ev->ap_list;
1739
1740 ath6kl_dbg(ATH6KL_DBG_WMI,
1741 "number of APs in aplist event: %d\n", ev->num_ap);
1742
1743 if (len < (int) (sizeof(struct wmi_aplist_event) +
1744 (ev->num_ap - 1) * ap_info_entry_size))
1745 return -EINVAL;
1746
1747 /* AP list version 1 contents */
1748 for (index = 0; index < ev->num_ap; index++) {
1749 ath6kl_dbg(ATH6KL_DBG_WMI, "AP#%d BSSID %pM Channel %d\n",
1750 index, ap_info_v1->bssid, ap_info_v1->channel);
1751 ap_info_v1++;
1752 }
1753
1754 return 0;
1755}
1756
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301757int ath6kl_wmi_cmd_send(struct wmi *wmi, u8 if_idx, struct sk_buff *skb,
Kalle Valobdcd8172011-07-18 00:22:30 +03001758 enum wmi_cmd_id cmd_id, enum wmi_sync_flag sync_flag)
1759{
1760 struct wmi_cmd_hdr *cmd_hdr;
1761 enum htc_endpoint_id ep_id = wmi->ep_id;
1762 int ret;
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301763 u16 info1;
Kalle Valobdcd8172011-07-18 00:22:30 +03001764
Vasanthakumar Thiagarajan0616dc12012-08-14 10:10:33 +05301765 if (WARN_ON(skb == NULL ||
1766 (if_idx > (wmi->parent_dev->vif_max - 1)))) {
1767 dev_kfree_skb(skb);
Kalle Valobdcd8172011-07-18 00:22:30 +03001768 return -EINVAL;
Vasanthakumar Thiagarajan0616dc12012-08-14 10:10:33 +05301769 }
Kalle Valobdcd8172011-07-18 00:22:30 +03001770
Kalle Valob9b6ee62011-09-27 14:31:21 +03001771 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi tx id %d len %d flag %d\n",
1772 cmd_id, skb->len, sync_flag);
1773 ath6kl_dbg_dump(ATH6KL_DBG_WMI_DUMP, NULL, "wmi tx ",
1774 skb->data, skb->len);
1775
Kalle Valobdcd8172011-07-18 00:22:30 +03001776 if (sync_flag >= END_WMIFLAG) {
1777 dev_kfree_skb(skb);
1778 return -EINVAL;
1779 }
1780
1781 if ((sync_flag == SYNC_BEFORE_WMIFLAG) ||
1782 (sync_flag == SYNC_BOTH_WMIFLAG)) {
1783 /*
1784 * Make sure all data currently queued is transmitted before
1785 * the cmd execution. Establish a new sync point.
1786 */
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301787 ath6kl_wmi_sync_point(wmi, if_idx);
Kalle Valobdcd8172011-07-18 00:22:30 +03001788 }
1789
1790 skb_push(skb, sizeof(struct wmi_cmd_hdr));
1791
1792 cmd_hdr = (struct wmi_cmd_hdr *) skb->data;
1793 cmd_hdr->cmd_id = cpu_to_le16(cmd_id);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301794 info1 = if_idx & WMI_CMD_HDR_IF_ID_MASK;
1795 cmd_hdr->info1 = cpu_to_le16(info1);
Kalle Valobdcd8172011-07-18 00:22:30 +03001796
1797 /* Only for OPT_TX_CMD, use BE endpoint. */
1798 if (cmd_id == WMI_OPT_TX_FRAME_CMDID) {
1799 ret = ath6kl_wmi_data_hdr_add(wmi, skb, OPT_MSGTYPE,
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +05301800 false, false, 0, NULL, if_idx);
Kalle Valobdcd8172011-07-18 00:22:30 +03001801 if (ret) {
1802 dev_kfree_skb(skb);
1803 return ret;
1804 }
1805 ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev, WMM_AC_BE);
1806 }
1807
1808 ath6kl_control_tx(wmi->parent_dev, skb, ep_id);
1809
1810 if ((sync_flag == SYNC_AFTER_WMIFLAG) ||
1811 (sync_flag == SYNC_BOTH_WMIFLAG)) {
1812 /*
1813 * Make sure all new data queued waits for the command to
1814 * execute. Establish a new sync point.
1815 */
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05301816 ath6kl_wmi_sync_point(wmi, if_idx);
Kalle Valobdcd8172011-07-18 00:22:30 +03001817 }
1818
1819 return 0;
1820}
1821
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301822int ath6kl_wmi_connect_cmd(struct wmi *wmi, u8 if_idx,
1823 enum network_type nw_type,
Kalle Valobdcd8172011-07-18 00:22:30 +03001824 enum dot11_auth_mode dot11_auth_mode,
1825 enum auth_mode auth_mode,
1826 enum crypto_type pairwise_crypto,
1827 u8 pairwise_crypto_len,
1828 enum crypto_type group_crypto,
1829 u8 group_crypto_len, int ssid_len, u8 *ssid,
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08001830 u8 *bssid, u16 channel, u32 ctrl_flags,
1831 u8 nw_subtype)
Kalle Valobdcd8172011-07-18 00:22:30 +03001832{
1833 struct sk_buff *skb;
1834 struct wmi_connect_cmd *cc;
1835 int ret;
1836
Kalle Valob9b6ee62011-09-27 14:31:21 +03001837 ath6kl_dbg(ATH6KL_DBG_WMI,
1838 "wmi connect bssid %pM freq %d flags 0x%x ssid_len %d "
1839 "type %d dot11_auth %d auth %d pairwise %d group %d\n",
1840 bssid, channel, ctrl_flags, ssid_len, nw_type,
1841 dot11_auth_mode, auth_mode, pairwise_crypto, group_crypto);
1842 ath6kl_dbg_dump(ATH6KL_DBG_WMI, NULL, "ssid ", ssid, ssid_len);
1843
Kalle Valobdcd8172011-07-18 00:22:30 +03001844 wmi->traffic_class = 100;
1845
1846 if ((pairwise_crypto == NONE_CRYPT) && (group_crypto != NONE_CRYPT))
1847 return -EINVAL;
1848
1849 if ((pairwise_crypto != NONE_CRYPT) && (group_crypto == NONE_CRYPT))
1850 return -EINVAL;
1851
1852 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_connect_cmd));
1853 if (!skb)
1854 return -ENOMEM;
1855
1856 cc = (struct wmi_connect_cmd *) skb->data;
1857
1858 if (ssid_len)
1859 memcpy(cc->ssid, ssid, ssid_len);
1860
1861 cc->ssid_len = ssid_len;
1862 cc->nw_type = nw_type;
1863 cc->dot11_auth_mode = dot11_auth_mode;
1864 cc->auth_mode = auth_mode;
1865 cc->prwise_crypto_type = pairwise_crypto;
1866 cc->prwise_crypto_len = pairwise_crypto_len;
1867 cc->grp_crypto_type = group_crypto;
1868 cc->grp_crypto_len = group_crypto_len;
1869 cc->ch = cpu_to_le16(channel);
1870 cc->ctrl_flags = cpu_to_le32(ctrl_flags);
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08001871 cc->nw_subtype = nw_subtype;
Kalle Valobdcd8172011-07-18 00:22:30 +03001872
1873 if (bssid != NULL)
1874 memcpy(cc->bssid, bssid, ETH_ALEN);
1875
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301876 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_CONNECT_CMDID,
1877 NO_SYNC_WMIFLAG);
Kalle Valobdcd8172011-07-18 00:22:30 +03001878
1879 return ret;
1880}
1881
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301882int ath6kl_wmi_reconnect_cmd(struct wmi *wmi, u8 if_idx, u8 *bssid,
1883 u16 channel)
Kalle Valobdcd8172011-07-18 00:22:30 +03001884{
1885 struct sk_buff *skb;
1886 struct wmi_reconnect_cmd *cc;
1887 int ret;
1888
Kalle Valob9b6ee62011-09-27 14:31:21 +03001889 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi reconnect bssid %pM freq %d\n",
1890 bssid, channel);
1891
Kalle Valobdcd8172011-07-18 00:22:30 +03001892 wmi->traffic_class = 100;
1893
1894 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_reconnect_cmd));
1895 if (!skb)
1896 return -ENOMEM;
1897
1898 cc = (struct wmi_reconnect_cmd *) skb->data;
1899 cc->channel = cpu_to_le16(channel);
1900
1901 if (bssid != NULL)
1902 memcpy(cc->bssid, bssid, ETH_ALEN);
1903
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301904 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_RECONNECT_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03001905 NO_SYNC_WMIFLAG);
1906
1907 return ret;
1908}
1909
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301910int ath6kl_wmi_disconnect_cmd(struct wmi *wmi, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +03001911{
1912 int ret;
1913
Kalle Valob9b6ee62011-09-27 14:31:21 +03001914 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi disconnect\n");
1915
Kalle Valobdcd8172011-07-18 00:22:30 +03001916 wmi->traffic_class = 100;
1917
1918 /* Disconnect command does not need to do a SYNC before. */
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05301919 ret = ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_DISCONNECT_CMDID);
Kalle Valobdcd8172011-07-18 00:22:30 +03001920
1921 return ret;
1922}
1923
Kalle Valoc8c72b72012-07-19 16:00:40 +03001924/* ath6kl_wmi_start_scan_cmd is to be deprecated. Use
1925 * ath6kl_wmi_begin_scan_cmd instead. The new function supports P2P
1926 * mgmt operations using station interface.
1927 */
Kalle Valo11f0bfc2012-07-19 16:00:48 +03001928static int ath6kl_wmi_startscan_cmd(struct wmi *wmi, u8 if_idx,
1929 enum wmi_scan_type scan_type,
1930 u32 force_fgscan, u32 is_legacy,
1931 u32 home_dwell_time,
1932 u32 force_scan_interval,
1933 s8 num_chan, u16 *ch_list)
Kalle Valoc8c72b72012-07-19 16:00:40 +03001934{
1935 struct sk_buff *skb;
1936 struct wmi_start_scan_cmd *sc;
1937 s8 size;
1938 int i, ret;
1939
1940 size = sizeof(struct wmi_start_scan_cmd);
1941
1942 if ((scan_type != WMI_LONG_SCAN) && (scan_type != WMI_SHORT_SCAN))
1943 return -EINVAL;
1944
1945 if (num_chan > WMI_MAX_CHANNELS)
1946 return -EINVAL;
1947
1948 if (num_chan)
1949 size += sizeof(u16) * (num_chan - 1);
1950
1951 skb = ath6kl_wmi_get_new_buf(size);
1952 if (!skb)
1953 return -ENOMEM;
1954
1955 sc = (struct wmi_start_scan_cmd *) skb->data;
1956 sc->scan_type = scan_type;
1957 sc->force_fg_scan = cpu_to_le32(force_fgscan);
1958 sc->is_legacy = cpu_to_le32(is_legacy);
1959 sc->home_dwell_time = cpu_to_le32(home_dwell_time);
1960 sc->force_scan_intvl = cpu_to_le32(force_scan_interval);
1961 sc->num_ch = num_chan;
1962
1963 for (i = 0; i < num_chan; i++)
1964 sc->ch_list[i] = cpu_to_le16(ch_list[i]);
1965
1966 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_START_SCAN_CMDID,
1967 NO_SYNC_WMIFLAG);
1968
1969 return ret;
1970}
1971
Kalle Valo11f0bfc2012-07-19 16:00:48 +03001972/*
1973 * beginscan supports (compared to old startscan) P2P mgmt operations using
1974 * station interface, send additional information like supported rates to
1975 * advertise and xmit rates for probe requests
1976 */
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08001977int ath6kl_wmi_beginscan_cmd(struct wmi *wmi, u8 if_idx,
1978 enum wmi_scan_type scan_type,
1979 u32 force_fgscan, u32 is_legacy,
1980 u32 home_dwell_time, u32 force_scan_interval,
1981 s8 num_chan, u16 *ch_list, u32 no_cck, u32 *rates)
1982{
Thomas Pedersen03e20842012-04-24 12:50:41 -07001983 struct ieee80211_supported_band *sband;
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08001984 struct sk_buff *skb;
1985 struct wmi_begin_scan_cmd *sc;
Thomas Pedersen03e20842012-04-24 12:50:41 -07001986 s8 size, *supp_rates;
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08001987 int i, band, ret;
1988 struct ath6kl *ar = wmi->parent_dev;
1989 int num_rates;
Thomas Pedersen03e20842012-04-24 12:50:41 -07001990 u32 ratemask;
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08001991
Kalle Valo11f0bfc2012-07-19 16:00:48 +03001992 if (!test_bit(ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX,
1993 ar->fw_capabilities)) {
1994 return ath6kl_wmi_startscan_cmd(wmi, if_idx,
1995 scan_type, force_fgscan,
1996 is_legacy, home_dwell_time,
1997 force_scan_interval,
1998 num_chan, ch_list);
1999 }
2000
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08002001 size = sizeof(struct wmi_begin_scan_cmd);
2002
2003 if ((scan_type != WMI_LONG_SCAN) && (scan_type != WMI_SHORT_SCAN))
2004 return -EINVAL;
2005
2006 if (num_chan > WMI_MAX_CHANNELS)
2007 return -EINVAL;
2008
2009 if (num_chan)
2010 size += sizeof(u16) * (num_chan - 1);
2011
2012 skb = ath6kl_wmi_get_new_buf(size);
2013 if (!skb)
2014 return -ENOMEM;
2015
2016 sc = (struct wmi_begin_scan_cmd *) skb->data;
2017 sc->scan_type = scan_type;
2018 sc->force_fg_scan = cpu_to_le32(force_fgscan);
2019 sc->is_legacy = cpu_to_le32(is_legacy);
2020 sc->home_dwell_time = cpu_to_le32(home_dwell_time);
2021 sc->force_scan_intvl = cpu_to_le32(force_scan_interval);
2022 sc->no_cck = cpu_to_le32(no_cck);
2023 sc->num_ch = num_chan;
2024
2025 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Thomas Pedersen03e20842012-04-24 12:50:41 -07002026 sband = ar->wiphy->bands[band];
2027
2028 if (!sband)
2029 continue;
2030
Kalle Valo99089ab2013-03-10 07:51:29 +02002031 if (WARN_ON(band >= ATH6KL_NUM_BANDS))
2032 break;
2033
Thomas Pedersen03e20842012-04-24 12:50:41 -07002034 ratemask = rates[band];
2035 supp_rates = sc->supp_rates[band].rates;
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08002036 num_rates = 0;
2037
2038 for (i = 0; i < sband->n_bitrates; i++) {
2039 if ((BIT(i) & ratemask) == 0)
2040 continue; /* skip rate */
2041 supp_rates[num_rates++] =
2042 (u8) (sband->bitrates[i].bitrate / 5);
2043 }
2044 sc->supp_rates[band].nrates = num_rates;
2045 }
2046
2047 for (i = 0; i < num_chan; i++)
2048 sc->ch_list[i] = cpu_to_le16(ch_list[i]);
2049
2050 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_BEGIN_SCAN_CMDID,
2051 NO_SYNC_WMIFLAG);
2052
2053 return ret;
2054}
2055
Thomas Pedersenb1f47e32012-08-15 16:51:24 -07002056int ath6kl_wmi_enable_sched_scan_cmd(struct wmi *wmi, u8 if_idx, bool enable)
2057{
2058 struct sk_buff *skb;
2059 struct wmi_enable_sched_scan_cmd *sc;
2060 int ret;
2061
2062 skb = ath6kl_wmi_get_new_buf(sizeof(*sc));
2063 if (!skb)
2064 return -ENOMEM;
2065
2066 ath6kl_dbg(ATH6KL_DBG_WMI, "%s scheduled scan on vif %d\n",
2067 enable ? "enabling" : "disabling", if_idx);
2068 sc = (struct wmi_enable_sched_scan_cmd *) skb->data;
2069 sc->enable = enable ? 1 : 0;
2070
2071 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb,
2072 WMI_ENABLE_SCHED_SCAN_CMDID,
2073 NO_SYNC_WMIFLAG);
2074 return ret;
2075}
2076
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302077int ath6kl_wmi_scanparams_cmd(struct wmi *wmi, u8 if_idx,
2078 u16 fg_start_sec,
Kalle Valobdcd8172011-07-18 00:22:30 +03002079 u16 fg_end_sec, u16 bg_sec,
2080 u16 minact_chdw_msec, u16 maxact_chdw_msec,
2081 u16 pas_chdw_msec, u8 short_scan_ratio,
2082 u8 scan_ctrl_flag, u32 max_dfsch_act_time,
2083 u16 maxact_scan_per_ssid)
2084{
2085 struct sk_buff *skb;
2086 struct wmi_scan_params_cmd *sc;
2087 int ret;
2088
2089 skb = ath6kl_wmi_get_new_buf(sizeof(*sc));
2090 if (!skb)
2091 return -ENOMEM;
2092
2093 sc = (struct wmi_scan_params_cmd *) skb->data;
2094 sc->fg_start_period = cpu_to_le16(fg_start_sec);
2095 sc->fg_end_period = cpu_to_le16(fg_end_sec);
2096 sc->bg_period = cpu_to_le16(bg_sec);
2097 sc->minact_chdwell_time = cpu_to_le16(minact_chdw_msec);
2098 sc->maxact_chdwell_time = cpu_to_le16(maxact_chdw_msec);
2099 sc->pas_chdwell_time = cpu_to_le16(pas_chdw_msec);
2100 sc->short_scan_ratio = short_scan_ratio;
2101 sc->scan_ctrl_flags = scan_ctrl_flag;
2102 sc->max_dfsch_act_time = cpu_to_le32(max_dfsch_act_time);
2103 sc->maxact_scan_per_ssid = cpu_to_le16(maxact_scan_per_ssid);
2104
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302105 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_SCAN_PARAMS_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002106 NO_SYNC_WMIFLAG);
2107 return ret;
2108}
2109
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302110int ath6kl_wmi_bssfilter_cmd(struct wmi *wmi, u8 if_idx, u8 filter, u32 ie_mask)
Kalle Valobdcd8172011-07-18 00:22:30 +03002111{
2112 struct sk_buff *skb;
2113 struct wmi_bss_filter_cmd *cmd;
2114 int ret;
2115
2116 if (filter >= LAST_BSS_FILTER)
2117 return -EINVAL;
2118
2119 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2120 if (!skb)
2121 return -ENOMEM;
2122
2123 cmd = (struct wmi_bss_filter_cmd *) skb->data;
2124 cmd->bss_filter = filter;
2125 cmd->ie_mask = cpu_to_le32(ie_mask);
2126
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302127 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_BSS_FILTER_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002128 NO_SYNC_WMIFLAG);
2129 return ret;
2130}
2131
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302132int ath6kl_wmi_probedssid_cmd(struct wmi *wmi, u8 if_idx, u8 index, u8 flag,
Kalle Valobdcd8172011-07-18 00:22:30 +03002133 u8 ssid_len, u8 *ssid)
2134{
2135 struct sk_buff *skb;
2136 struct wmi_probed_ssid_cmd *cmd;
2137 int ret;
2138
Jouni Malinen8ab54152012-05-09 22:14:51 +03002139 if (index >= MAX_PROBED_SSIDS)
Kalle Valobdcd8172011-07-18 00:22:30 +03002140 return -EINVAL;
2141
2142 if (ssid_len > sizeof(cmd->ssid))
2143 return -EINVAL;
2144
2145 if ((flag & (DISABLE_SSID_FLAG | ANY_SSID_FLAG)) && (ssid_len > 0))
2146 return -EINVAL;
2147
2148 if ((flag & SPECIFIC_SSID_FLAG) && !ssid_len)
2149 return -EINVAL;
2150
2151 if (flag & SPECIFIC_SSID_FLAG)
2152 wmi->is_probe_ssid = true;
2153
2154 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2155 if (!skb)
2156 return -ENOMEM;
2157
2158 cmd = (struct wmi_probed_ssid_cmd *) skb->data;
2159 cmd->entry_index = index;
2160 cmd->flag = flag;
2161 cmd->ssid_len = ssid_len;
2162 memcpy(cmd->ssid, ssid, ssid_len);
2163
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302164 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_PROBED_SSID_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002165 NO_SYNC_WMIFLAG);
2166 return ret;
2167}
2168
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302169int ath6kl_wmi_listeninterval_cmd(struct wmi *wmi, u8 if_idx,
2170 u16 listen_interval,
Kalle Valobdcd8172011-07-18 00:22:30 +03002171 u16 listen_beacons)
2172{
2173 struct sk_buff *skb;
2174 struct wmi_listen_int_cmd *cmd;
2175 int ret;
2176
2177 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2178 if (!skb)
2179 return -ENOMEM;
2180
2181 cmd = (struct wmi_listen_int_cmd *) skb->data;
2182 cmd->listen_intvl = cpu_to_le16(listen_interval);
2183 cmd->num_beacons = cpu_to_le16(listen_beacons);
2184
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302185 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_LISTEN_INT_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002186 NO_SYNC_WMIFLAG);
2187 return ret;
2188}
2189
Raja Manice0dc0c2012-02-20 19:08:08 +05302190int ath6kl_wmi_bmisstime_cmd(struct wmi *wmi, u8 if_idx,
2191 u16 bmiss_time, u16 num_beacons)
2192{
2193 struct sk_buff *skb;
2194 struct wmi_bmiss_time_cmd *cmd;
2195 int ret;
2196
2197 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2198 if (!skb)
2199 return -ENOMEM;
2200
2201 cmd = (struct wmi_bmiss_time_cmd *) skb->data;
2202 cmd->bmiss_time = cpu_to_le16(bmiss_time);
2203 cmd->num_beacons = cpu_to_le16(num_beacons);
2204
2205 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_BMISS_TIME_CMDID,
2206 NO_SYNC_WMIFLAG);
2207 return ret;
2208}
2209
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302210int ath6kl_wmi_powermode_cmd(struct wmi *wmi, u8 if_idx, u8 pwr_mode)
Kalle Valobdcd8172011-07-18 00:22:30 +03002211{
2212 struct sk_buff *skb;
2213 struct wmi_power_mode_cmd *cmd;
2214 int ret;
2215
2216 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2217 if (!skb)
2218 return -ENOMEM;
2219
2220 cmd = (struct wmi_power_mode_cmd *) skb->data;
2221 cmd->pwr_mode = pwr_mode;
2222 wmi->pwr_mode = pwr_mode;
2223
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302224 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_POWER_MODE_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002225 NO_SYNC_WMIFLAG);
2226 return ret;
2227}
2228
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302229int ath6kl_wmi_pmparams_cmd(struct wmi *wmi, u8 if_idx, u16 idle_period,
Kalle Valobdcd8172011-07-18 00:22:30 +03002230 u16 ps_poll_num, u16 dtim_policy,
2231 u16 tx_wakeup_policy, u16 num_tx_to_wakeup,
2232 u16 ps_fail_event_policy)
2233{
2234 struct sk_buff *skb;
2235 struct wmi_power_params_cmd *pm;
2236 int ret;
2237
2238 skb = ath6kl_wmi_get_new_buf(sizeof(*pm));
2239 if (!skb)
2240 return -ENOMEM;
2241
2242 pm = (struct wmi_power_params_cmd *)skb->data;
2243 pm->idle_period = cpu_to_le16(idle_period);
2244 pm->pspoll_number = cpu_to_le16(ps_poll_num);
2245 pm->dtim_policy = cpu_to_le16(dtim_policy);
2246 pm->tx_wakeup_policy = cpu_to_le16(tx_wakeup_policy);
2247 pm->num_tx_to_wakeup = cpu_to_le16(num_tx_to_wakeup);
2248 pm->ps_fail_event_policy = cpu_to_le16(ps_fail_event_policy);
2249
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302250 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_POWER_PARAMS_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002251 NO_SYNC_WMIFLAG);
2252 return ret;
2253}
2254
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302255int ath6kl_wmi_disctimeout_cmd(struct wmi *wmi, u8 if_idx, u8 timeout)
Kalle Valobdcd8172011-07-18 00:22:30 +03002256{
2257 struct sk_buff *skb;
2258 struct wmi_disc_timeout_cmd *cmd;
2259 int ret;
2260
2261 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2262 if (!skb)
2263 return -ENOMEM;
2264
2265 cmd = (struct wmi_disc_timeout_cmd *) skb->data;
2266 cmd->discon_timeout = timeout;
2267
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05302268 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_DISC_TIMEOUT_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002269 NO_SYNC_WMIFLAG);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302270
Jouni Malinenff0b0072011-10-11 17:31:56 +03002271 if (ret == 0)
2272 ath6kl_debug_set_disconnect_timeout(wmi->parent_dev, timeout);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302273
Kalle Valobdcd8172011-07-18 00:22:30 +03002274 return ret;
2275}
2276
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302277int ath6kl_wmi_addkey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index,
Kalle Valobdcd8172011-07-18 00:22:30 +03002278 enum crypto_type key_type,
2279 u8 key_usage, u8 key_len,
Jouni Malinenf4bb9a62011-11-02 23:45:55 +02002280 u8 *key_rsc, unsigned int key_rsc_len,
2281 u8 *key_material,
Kalle Valobdcd8172011-07-18 00:22:30 +03002282 u8 key_op_ctrl, u8 *mac_addr,
2283 enum wmi_sync_flag sync_flag)
2284{
2285 struct sk_buff *skb;
2286 struct wmi_add_cipher_key_cmd *cmd;
2287 int ret;
2288
Kalle Valocdeb8602012-04-12 11:02:18 +03002289 ath6kl_dbg(ATH6KL_DBG_WMI,
2290 "addkey cmd: key_index=%u key_type=%d key_usage=%d key_len=%d key_op_ctrl=%d\n",
Jouni Malinen9a5b1312011-08-30 21:57:52 +03002291 key_index, key_type, key_usage, key_len, key_op_ctrl);
2292
Kalle Valobdcd8172011-07-18 00:22:30 +03002293 if ((key_index > WMI_MAX_KEY_INDEX) || (key_len > WMI_MAX_KEY_LEN) ||
Jouni Malinenf4bb9a62011-11-02 23:45:55 +02002294 (key_material == NULL) || key_rsc_len > 8)
Kalle Valobdcd8172011-07-18 00:22:30 +03002295 return -EINVAL;
2296
2297 if ((WEP_CRYPT != key_type) && (NULL == key_rsc))
2298 return -EINVAL;
2299
2300 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2301 if (!skb)
2302 return -ENOMEM;
2303
2304 cmd = (struct wmi_add_cipher_key_cmd *) skb->data;
2305 cmd->key_index = key_index;
2306 cmd->key_type = key_type;
2307 cmd->key_usage = key_usage;
2308 cmd->key_len = key_len;
2309 memcpy(cmd->key, key_material, key_len);
2310
2311 if (key_rsc != NULL)
Jouni Malinenf4bb9a62011-11-02 23:45:55 +02002312 memcpy(cmd->key_rsc, key_rsc, key_rsc_len);
Kalle Valobdcd8172011-07-18 00:22:30 +03002313
2314 cmd->key_op_ctrl = key_op_ctrl;
2315
2316 if (mac_addr)
2317 memcpy(cmd->key_mac_addr, mac_addr, ETH_ALEN);
2318
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302319 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_CIPHER_KEY_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002320 sync_flag);
2321
2322 return ret;
2323}
2324
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302325int ath6kl_wmi_add_krk_cmd(struct wmi *wmi, u8 if_idx, u8 *krk)
Kalle Valobdcd8172011-07-18 00:22:30 +03002326{
2327 struct sk_buff *skb;
2328 struct wmi_add_krk_cmd *cmd;
2329 int ret;
2330
2331 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2332 if (!skb)
2333 return -ENOMEM;
2334
2335 cmd = (struct wmi_add_krk_cmd *) skb->data;
2336 memcpy(cmd->krk, krk, WMI_KRK_LEN);
2337
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302338 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_KRK_CMDID,
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302339 NO_SYNC_WMIFLAG);
Kalle Valobdcd8172011-07-18 00:22:30 +03002340
2341 return ret;
2342}
2343
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302344int ath6kl_wmi_deletekey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index)
Kalle Valobdcd8172011-07-18 00:22:30 +03002345{
2346 struct sk_buff *skb;
2347 struct wmi_delete_cipher_key_cmd *cmd;
2348 int ret;
2349
2350 if (key_index > WMI_MAX_KEY_INDEX)
2351 return -EINVAL;
2352
2353 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2354 if (!skb)
2355 return -ENOMEM;
2356
2357 cmd = (struct wmi_delete_cipher_key_cmd *) skb->data;
2358 cmd->key_index = key_index;
2359
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302360 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DELETE_CIPHER_KEY_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002361 NO_SYNC_WMIFLAG);
2362
2363 return ret;
2364}
2365
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302366int ath6kl_wmi_setpmkid_cmd(struct wmi *wmi, u8 if_idx, const u8 *bssid,
Kalle Valobdcd8172011-07-18 00:22:30 +03002367 const u8 *pmkid, bool set)
2368{
2369 struct sk_buff *skb;
2370 struct wmi_setpmkid_cmd *cmd;
2371 int ret;
2372
2373 if (bssid == NULL)
2374 return -EINVAL;
2375
2376 if (set && pmkid == NULL)
2377 return -EINVAL;
2378
2379 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2380 if (!skb)
2381 return -ENOMEM;
2382
2383 cmd = (struct wmi_setpmkid_cmd *) skb->data;
2384 memcpy(cmd->bssid, bssid, ETH_ALEN);
2385 if (set) {
2386 memcpy(cmd->pmkid, pmkid, sizeof(cmd->pmkid));
2387 cmd->enable = PMKID_ENABLE;
2388 } else {
2389 memset(cmd->pmkid, 0, sizeof(cmd->pmkid));
2390 cmd->enable = PMKID_DISABLE;
2391 }
2392
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302393 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_PMKID_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002394 NO_SYNC_WMIFLAG);
2395
2396 return ret;
2397}
2398
2399static int ath6kl_wmi_data_sync_send(struct wmi *wmi, struct sk_buff *skb,
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +05302400 enum htc_endpoint_id ep_id, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +03002401{
2402 struct wmi_data_hdr *data_hdr;
2403 int ret;
2404
Vasanthakumar Thiagarajan0616dc12012-08-14 10:10:33 +05302405 if (WARN_ON(skb == NULL || ep_id == wmi->ep_id)) {
2406 dev_kfree_skb(skb);
Kalle Valobdcd8172011-07-18 00:22:30 +03002407 return -EINVAL;
Vasanthakumar Thiagarajan0616dc12012-08-14 10:10:33 +05302408 }
Kalle Valobdcd8172011-07-18 00:22:30 +03002409
2410 skb_push(skb, sizeof(struct wmi_data_hdr));
2411
2412 data_hdr = (struct wmi_data_hdr *) skb->data;
2413 data_hdr->info = SYNC_MSGTYPE << WMI_DATA_HDR_MSG_TYPE_SHIFT;
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +05302414 data_hdr->info3 = cpu_to_le16(if_idx & WMI_DATA_HDR_IF_IDX_MASK);
Kalle Valobdcd8172011-07-18 00:22:30 +03002415
2416 ret = ath6kl_control_tx(wmi->parent_dev, skb, ep_id);
2417
2418 return ret;
2419}
2420
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302421static int ath6kl_wmi_sync_point(struct wmi *wmi, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +03002422{
2423 struct sk_buff *skb;
2424 struct wmi_sync_cmd *cmd;
2425 struct wmi_data_sync_bufs data_sync_bufs[WMM_NUM_AC];
2426 enum htc_endpoint_id ep_id;
2427 u8 index, num_pri_streams = 0;
2428 int ret = 0;
2429
2430 memset(data_sync_bufs, 0, sizeof(data_sync_bufs));
2431
2432 spin_lock_bh(&wmi->lock);
2433
2434 for (index = 0; index < WMM_NUM_AC; index++) {
2435 if (wmi->fat_pipe_exist & (1 << index)) {
2436 num_pri_streams++;
2437 data_sync_bufs[num_pri_streams - 1].traffic_class =
2438 index;
2439 }
2440 }
2441
2442 spin_unlock_bh(&wmi->lock);
2443
2444 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
Vasanthakumar Thiagarajan0616dc12012-08-14 10:10:33 +05302445 if (!skb)
2446 return -ENOMEM;
Kalle Valobdcd8172011-07-18 00:22:30 +03002447
2448 cmd = (struct wmi_sync_cmd *) skb->data;
2449
2450 /*
2451 * In the SYNC cmd sent on the control Ep, send a bitmap
2452 * of the data eps on which the Data Sync will be sent
2453 */
2454 cmd->data_sync_map = wmi->fat_pipe_exist;
2455
2456 for (index = 0; index < num_pri_streams; index++) {
2457 data_sync_bufs[index].skb = ath6kl_buf_alloc(0);
2458 if (data_sync_bufs[index].skb == NULL) {
2459 ret = -ENOMEM;
2460 break;
2461 }
2462 }
2463
2464 /*
2465 * If buffer allocation for any of the dataSync fails,
2466 * then do not send the Synchronize cmd on the control ep
2467 */
2468 if (ret)
Vasanthakumar Thiagarajan0616dc12012-08-14 10:10:33 +05302469 goto free_cmd_skb;
Kalle Valobdcd8172011-07-18 00:22:30 +03002470
2471 /*
2472 * Send sync cmd followed by sync data messages on all
2473 * endpoints being used
2474 */
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302475 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SYNCHRONIZE_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002476 NO_SYNC_WMIFLAG);
2477
2478 if (ret)
Vasanthakumar Thiagarajan0616dc12012-08-14 10:10:33 +05302479 goto free_data_skb;
Kalle Valobdcd8172011-07-18 00:22:30 +03002480
2481 for (index = 0; index < num_pri_streams; index++) {
2482
2483 if (WARN_ON(!data_sync_bufs[index].skb))
Vasanthakumar Thiagarajan0616dc12012-08-14 10:10:33 +05302484 goto free_data_skb;
Kalle Valobdcd8172011-07-18 00:22:30 +03002485
2486 ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev,
2487 data_sync_bufs[index].
2488 traffic_class);
2489 ret =
2490 ath6kl_wmi_data_sync_send(wmi, data_sync_bufs[index].skb,
Vasanthakumar Thiagarajan6765d0a2011-10-25 19:34:17 +05302491 ep_id, if_idx);
Kalle Valobdcd8172011-07-18 00:22:30 +03002492
Kalle Valobdcd8172011-07-18 00:22:30 +03002493 data_sync_bufs[index].skb = NULL;
Vasanthakumar Thiagarajan0616dc12012-08-14 10:10:33 +05302494
2495 if (ret)
2496 goto free_data_skb;
Kalle Valobdcd8172011-07-18 00:22:30 +03002497 }
2498
Vasanthakumar Thiagarajan0616dc12012-08-14 10:10:33 +05302499 return 0;
2500
2501free_cmd_skb:
Kalle Valobdcd8172011-07-18 00:22:30 +03002502 /* free up any resources left over (possibly due to an error) */
Mohammed Shafi Shajakhane16ccfe2012-11-16 18:22:22 +05302503 dev_kfree_skb(skb);
Kalle Valobdcd8172011-07-18 00:22:30 +03002504
Vasanthakumar Thiagarajan0616dc12012-08-14 10:10:33 +05302505free_data_skb:
Mohammed Shafi Shajakhane16ccfe2012-11-16 18:22:22 +05302506 for (index = 0; index < num_pri_streams; index++)
2507 dev_kfree_skb((struct sk_buff *)data_sync_bufs[index].skb);
Kalle Valobdcd8172011-07-18 00:22:30 +03002508
2509 return ret;
2510}
2511
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302512int ath6kl_wmi_create_pstream_cmd(struct wmi *wmi, u8 if_idx,
Kalle Valobdcd8172011-07-18 00:22:30 +03002513 struct wmi_create_pstream_cmd *params)
2514{
2515 struct sk_buff *skb;
2516 struct wmi_create_pstream_cmd *cmd;
2517 u8 fatpipe_exist_for_ac = 0;
2518 s32 min_phy = 0;
2519 s32 nominal_phy = 0;
2520 int ret;
2521
2522 if (!((params->user_pri < 8) &&
2523 (params->user_pri <= 0x7) &&
2524 (up_to_ac[params->user_pri & 0x7] == params->traffic_class) &&
2525 (params->traffic_direc == UPLINK_TRAFFIC ||
2526 params->traffic_direc == DNLINK_TRAFFIC ||
2527 params->traffic_direc == BIDIR_TRAFFIC) &&
2528 (params->traffic_type == TRAFFIC_TYPE_APERIODIC ||
2529 params->traffic_type == TRAFFIC_TYPE_PERIODIC) &&
2530 (params->voice_psc_cap == DISABLE_FOR_THIS_AC ||
2531 params->voice_psc_cap == ENABLE_FOR_THIS_AC ||
2532 params->voice_psc_cap == ENABLE_FOR_ALL_AC) &&
2533 (params->tsid == WMI_IMPLICIT_PSTREAM ||
2534 params->tsid <= WMI_MAX_THINSTREAM))) {
2535 return -EINVAL;
2536 }
2537
2538 /*
2539 * Check nominal PHY rate is >= minimalPHY,
2540 * so that DUT can allow TSRS IE
2541 */
2542
2543 /* Get the physical rate (units of bps) */
2544 min_phy = ((le32_to_cpu(params->min_phy_rate) / 1000) / 1000);
2545
2546 /* Check minimal phy < nominal phy rate */
2547 if (params->nominal_phy >= min_phy) {
2548 /* unit of 500 kbps */
2549 nominal_phy = (params->nominal_phy * 1000) / 500;
2550 ath6kl_dbg(ATH6KL_DBG_WMI,
2551 "TSRS IE enabled::MinPhy %x->NominalPhy ===> %x\n",
2552 min_phy, nominal_phy);
2553
2554 params->nominal_phy = nominal_phy;
2555 } else {
2556 params->nominal_phy = 0;
2557 }
2558
2559 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2560 if (!skb)
2561 return -ENOMEM;
2562
2563 ath6kl_dbg(ATH6KL_DBG_WMI,
2564 "sending create_pstream_cmd: ac=%d tsid:%d\n",
2565 params->traffic_class, params->tsid);
2566
2567 cmd = (struct wmi_create_pstream_cmd *) skb->data;
2568 memcpy(cmd, params, sizeof(*cmd));
2569
2570 /* This is an implicitly created Fat pipe */
2571 if ((u32) params->tsid == (u32) WMI_IMPLICIT_PSTREAM) {
2572 spin_lock_bh(&wmi->lock);
2573 fatpipe_exist_for_ac = (wmi->fat_pipe_exist &
2574 (1 << params->traffic_class));
2575 wmi->fat_pipe_exist |= (1 << params->traffic_class);
2576 spin_unlock_bh(&wmi->lock);
2577 } else {
2578 /* explicitly created thin stream within a fat pipe */
2579 spin_lock_bh(&wmi->lock);
2580 fatpipe_exist_for_ac = (wmi->fat_pipe_exist &
2581 (1 << params->traffic_class));
2582 wmi->stream_exist_for_ac[params->traffic_class] |=
2583 (1 << params->tsid);
2584 /*
2585 * If a thinstream becomes active, the fat pipe automatically
2586 * becomes active
2587 */
2588 wmi->fat_pipe_exist |= (1 << params->traffic_class);
2589 spin_unlock_bh(&wmi->lock);
2590 }
2591
2592 /*
2593 * Indicate activty change to driver layer only if this is the
2594 * first TSID to get created in this AC explicitly or an implicit
2595 * fat pipe is getting created.
2596 */
2597 if (!fatpipe_exist_for_ac)
2598 ath6kl_indicate_tx_activity(wmi->parent_dev,
2599 params->traffic_class, true);
2600
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302601 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_CREATE_PSTREAM_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002602 NO_SYNC_WMIFLAG);
2603 return ret;
2604}
2605
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302606int ath6kl_wmi_delete_pstream_cmd(struct wmi *wmi, u8 if_idx, u8 traffic_class,
2607 u8 tsid)
Kalle Valobdcd8172011-07-18 00:22:30 +03002608{
2609 struct sk_buff *skb;
2610 struct wmi_delete_pstream_cmd *cmd;
2611 u16 active_tsids = 0;
2612 int ret;
2613
2614 if (traffic_class > 3) {
2615 ath6kl_err("invalid traffic class: %d\n", traffic_class);
2616 return -EINVAL;
2617 }
2618
2619 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2620 if (!skb)
2621 return -ENOMEM;
2622
2623 cmd = (struct wmi_delete_pstream_cmd *) skb->data;
2624 cmd->traffic_class = traffic_class;
2625 cmd->tsid = tsid;
2626
2627 spin_lock_bh(&wmi->lock);
2628 active_tsids = wmi->stream_exist_for_ac[traffic_class];
2629 spin_unlock_bh(&wmi->lock);
2630
2631 if (!(active_tsids & (1 << tsid))) {
2632 dev_kfree_skb(skb);
2633 ath6kl_dbg(ATH6KL_DBG_WMI,
2634 "TSID %d doesn't exist for traffic class: %d\n",
2635 tsid, traffic_class);
2636 return -ENODATA;
2637 }
2638
2639 ath6kl_dbg(ATH6KL_DBG_WMI,
2640 "sending delete_pstream_cmd: traffic class: %d tsid=%d\n",
2641 traffic_class, tsid);
2642
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05302643 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DELETE_PSTREAM_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03002644 SYNC_BEFORE_WMIFLAG);
2645
2646 spin_lock_bh(&wmi->lock);
2647 wmi->stream_exist_for_ac[traffic_class] &= ~(1 << tsid);
2648 active_tsids = wmi->stream_exist_for_ac[traffic_class];
2649 spin_unlock_bh(&wmi->lock);
2650
2651 /*
2652 * Indicate stream inactivity to driver layer only if all tsids
2653 * within this AC are deleted.
2654 */
2655 if (!active_tsids) {
2656 ath6kl_indicate_tx_activity(wmi->parent_dev,
2657 traffic_class, false);
2658 wmi->fat_pipe_exist &= ~(1 << traffic_class);
2659 }
2660
2661 return ret;
2662}
2663
Raja Manica1d16a2011-12-16 14:24:23 +05302664int ath6kl_wmi_set_ip_cmd(struct wmi *wmi, u8 if_idx,
2665 __be32 ips0, __be32 ips1)
Kalle Valobdcd8172011-07-18 00:22:30 +03002666{
2667 struct sk_buff *skb;
2668 struct wmi_set_ip_cmd *cmd;
2669 int ret;
2670
2671 /* Multicast address are not valid */
Raja Manica1d16a2011-12-16 14:24:23 +05302672 if (ipv4_is_multicast(ips0) ||
2673 ipv4_is_multicast(ips1))
Kalle Valobdcd8172011-07-18 00:22:30 +03002674 return -EINVAL;
2675
2676 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_ip_cmd));
2677 if (!skb)
2678 return -ENOMEM;
2679
2680 cmd = (struct wmi_set_ip_cmd *) skb->data;
Raja Manica1d16a2011-12-16 14:24:23 +05302681 cmd->ips[0] = ips0;
2682 cmd->ips[1] = ips1;
Kalle Valobdcd8172011-07-18 00:22:30 +03002683
Raja Manica1d16a2011-12-16 14:24:23 +05302684 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_IP_CMDID,
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302685 NO_SYNC_WMIFLAG);
Kalle Valobdcd8172011-07-18 00:22:30 +03002686 return ret;
2687}
2688
Raja Mani45cf1102011-11-07 22:52:45 +02002689static void ath6kl_wmi_relinquish_implicit_pstream_credits(struct wmi *wmi)
2690{
2691 u16 active_tsids;
2692 u8 stream_exist;
2693 int i;
2694
2695 /*
2696 * Relinquish credits from all implicitly created pstreams
2697 * since when we go to sleep. If user created explicit
2698 * thinstreams exists with in a fatpipe leave them intact
2699 * for the user to delete.
2700 */
2701 spin_lock_bh(&wmi->lock);
2702 stream_exist = wmi->fat_pipe_exist;
2703 spin_unlock_bh(&wmi->lock);
2704
2705 for (i = 0; i < WMM_NUM_AC; i++) {
2706 if (stream_exist & (1 << i)) {
2707
2708 /*
2709 * FIXME: Is this lock & unlock inside
2710 * for loop correct? may need rework.
2711 */
2712 spin_lock_bh(&wmi->lock);
2713 active_tsids = wmi->stream_exist_for_ac[i];
2714 spin_unlock_bh(&wmi->lock);
2715
2716 /*
2717 * If there are no user created thin streams
2718 * delete the fatpipe
2719 */
2720 if (!active_tsids) {
2721 stream_exist &= ~(1 << i);
2722 /*
2723 * Indicate inactivity to driver layer for
2724 * this fatpipe (pstream)
2725 */
2726 ath6kl_indicate_tx_activity(wmi->parent_dev,
2727 i, false);
2728 }
2729 }
2730 }
2731
2732 /* FIXME: Can we do this assignment without locking ? */
2733 spin_lock_bh(&wmi->lock);
2734 wmi->fat_pipe_exist = stream_exist;
2735 spin_unlock_bh(&wmi->lock);
2736}
2737
Bala Shanmugam06e360a2012-05-22 13:23:12 +05302738static int ath6kl_set_bitrate_mask64(struct wmi *wmi, u8 if_idx,
2739 const struct cfg80211_bitrate_mask *mask)
2740{
2741 struct sk_buff *skb;
2742 int ret, mode, band;
Kalle Valof8c03052012-07-12 12:13:12 +03002743 u64 mcsrate, ratemask[ATH6KL_NUM_BANDS];
Bala Shanmugam06e360a2012-05-22 13:23:12 +05302744 struct wmi_set_tx_select_rates64_cmd *cmd;
2745
2746 memset(&ratemask, 0, sizeof(ratemask));
Kalle Valof8c03052012-07-12 12:13:12 +03002747
2748 /* only check 2.4 and 5 GHz bands, skip the rest */
2749 for (band = 0; band <= IEEE80211_BAND_5GHZ; band++) {
Bala Shanmugam06e360a2012-05-22 13:23:12 +05302750 /* copy legacy rate mask */
2751 ratemask[band] = mask->control[band].legacy;
2752 if (band == IEEE80211_BAND_5GHZ)
2753 ratemask[band] =
2754 mask->control[band].legacy << 4;
2755
2756 /* copy mcs rate mask */
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01002757 mcsrate = mask->control[band].ht_mcs[1];
Bala Shanmugam06e360a2012-05-22 13:23:12 +05302758 mcsrate <<= 8;
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01002759 mcsrate |= mask->control[band].ht_mcs[0];
Bala Shanmugam06e360a2012-05-22 13:23:12 +05302760 ratemask[band] |= mcsrate << 12;
2761 ratemask[band] |= mcsrate << 28;
2762 }
2763
2764 ath6kl_dbg(ATH6KL_DBG_WMI,
2765 "Ratemask 64 bit: 2.4:%llx 5:%llx\n",
2766 ratemask[0], ratemask[1]);
2767
2768 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd) * WMI_RATES_MODE_MAX);
2769 if (!skb)
2770 return -ENOMEM;
2771
2772 cmd = (struct wmi_set_tx_select_rates64_cmd *) skb->data;
2773 for (mode = 0; mode < WMI_RATES_MODE_MAX; mode++) {
2774 /* A mode operate in 5GHZ band */
2775 if (mode == WMI_RATES_MODE_11A ||
2776 mode == WMI_RATES_MODE_11A_HT20 ||
2777 mode == WMI_RATES_MODE_11A_HT40)
2778 band = IEEE80211_BAND_5GHZ;
2779 else
2780 band = IEEE80211_BAND_2GHZ;
2781 cmd->ratemask[mode] = cpu_to_le64(ratemask[band]);
2782 }
2783
2784 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb,
2785 WMI_SET_TX_SELECT_RATES_CMDID,
2786 NO_SYNC_WMIFLAG);
2787 return ret;
2788}
2789
2790static int ath6kl_set_bitrate_mask32(struct wmi *wmi, u8 if_idx,
2791 const struct cfg80211_bitrate_mask *mask)
2792{
2793 struct sk_buff *skb;
2794 int ret, mode, band;
Kalle Valof8c03052012-07-12 12:13:12 +03002795 u32 mcsrate, ratemask[ATH6KL_NUM_BANDS];
Bala Shanmugam06e360a2012-05-22 13:23:12 +05302796 struct wmi_set_tx_select_rates32_cmd *cmd;
2797
2798 memset(&ratemask, 0, sizeof(ratemask));
Kalle Valof8c03052012-07-12 12:13:12 +03002799
2800 /* only check 2.4 and 5 GHz bands, skip the rest */
2801 for (band = 0; band <= IEEE80211_BAND_5GHZ; band++) {
Bala Shanmugam06e360a2012-05-22 13:23:12 +05302802 /* copy legacy rate mask */
2803 ratemask[band] = mask->control[band].legacy;
2804 if (band == IEEE80211_BAND_5GHZ)
2805 ratemask[band] =
2806 mask->control[band].legacy << 4;
2807
2808 /* copy mcs rate mask */
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01002809 mcsrate = mask->control[band].ht_mcs[0];
Bala Shanmugam06e360a2012-05-22 13:23:12 +05302810 ratemask[band] |= mcsrate << 12;
2811 ratemask[band] |= mcsrate << 20;
2812 }
2813
2814 ath6kl_dbg(ATH6KL_DBG_WMI,
2815 "Ratemask 32 bit: 2.4:%x 5:%x\n",
2816 ratemask[0], ratemask[1]);
2817
2818 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd) * WMI_RATES_MODE_MAX);
2819 if (!skb)
2820 return -ENOMEM;
2821
2822 cmd = (struct wmi_set_tx_select_rates32_cmd *) skb->data;
2823 for (mode = 0; mode < WMI_RATES_MODE_MAX; mode++) {
2824 /* A mode operate in 5GHZ band */
2825 if (mode == WMI_RATES_MODE_11A ||
2826 mode == WMI_RATES_MODE_11A_HT20 ||
2827 mode == WMI_RATES_MODE_11A_HT40)
2828 band = IEEE80211_BAND_5GHZ;
2829 else
2830 band = IEEE80211_BAND_2GHZ;
2831 cmd->ratemask[mode] = cpu_to_le32(ratemask[band]);
2832 }
2833
2834 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb,
2835 WMI_SET_TX_SELECT_RATES_CMDID,
2836 NO_SYNC_WMIFLAG);
2837 return ret;
2838}
2839
2840int ath6kl_wmi_set_bitrate_mask(struct wmi *wmi, u8 if_idx,
2841 const struct cfg80211_bitrate_mask *mask)
2842{
2843 struct ath6kl *ar = wmi->parent_dev;
2844
Mohammed Shafi Shajakhanc0b34e22012-09-27 18:19:50 +05302845 if (ar->hw.flags & ATH6KL_HW_64BIT_RATES)
Bala Shanmugam06e360a2012-05-22 13:23:12 +05302846 return ath6kl_set_bitrate_mask64(wmi, if_idx, mask);
2847 else
2848 return ath6kl_set_bitrate_mask32(wmi, if_idx, mask);
2849}
2850
Raja Mani45cf1102011-11-07 22:52:45 +02002851int ath6kl_wmi_set_host_sleep_mode_cmd(struct wmi *wmi, u8 if_idx,
2852 enum ath6kl_host_mode host_mode)
2853{
2854 struct sk_buff *skb;
2855 struct wmi_set_host_sleep_mode_cmd *cmd;
2856 int ret;
2857
2858 if ((host_mode != ATH6KL_HOST_MODE_ASLEEP) &&
2859 (host_mode != ATH6KL_HOST_MODE_AWAKE)) {
2860 ath6kl_err("invalid host sleep mode: %d\n", host_mode);
2861 return -EINVAL;
2862 }
2863
2864 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2865 if (!skb)
2866 return -ENOMEM;
2867
2868 cmd = (struct wmi_set_host_sleep_mode_cmd *) skb->data;
2869
2870 if (host_mode == ATH6KL_HOST_MODE_ASLEEP) {
2871 ath6kl_wmi_relinquish_implicit_pstream_credits(wmi);
2872 cmd->asleep = cpu_to_le32(1);
2873 } else
2874 cmd->awake = cpu_to_le32(1);
2875
2876 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb,
2877 WMI_SET_HOST_SLEEP_MODE_CMDID,
2878 NO_SYNC_WMIFLAG);
2879 return ret;
2880}
2881
Raja Mani081c7a82012-01-30 17:13:11 +05302882/* This command has zero length payload */
2883static int ath6kl_wmi_host_sleep_mode_cmd_prcd_evt_rx(struct wmi *wmi,
2884 struct ath6kl_vif *vif)
2885{
2886 struct ath6kl *ar = wmi->parent_dev;
2887
2888 set_bit(HOST_SLEEP_MODE_CMD_PROCESSED, &vif->flags);
2889 wake_up(&ar->event_wq);
2890
2891 return 0;
2892}
2893
Raja Mani45cf1102011-11-07 22:52:45 +02002894int ath6kl_wmi_set_wow_mode_cmd(struct wmi *wmi, u8 if_idx,
2895 enum ath6kl_wow_mode wow_mode,
2896 u32 filter, u16 host_req_delay)
2897{
2898 struct sk_buff *skb;
2899 struct wmi_set_wow_mode_cmd *cmd;
2900 int ret;
2901
2902 if ((wow_mode != ATH6KL_WOW_MODE_ENABLE) &&
Kalle Valo96f1fad2012-03-07 20:03:57 +02002903 wow_mode != ATH6KL_WOW_MODE_DISABLE) {
Raja Mani45cf1102011-11-07 22:52:45 +02002904 ath6kl_err("invalid wow mode: %d\n", wow_mode);
2905 return -EINVAL;
2906 }
2907
2908 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2909 if (!skb)
2910 return -ENOMEM;
2911
2912 cmd = (struct wmi_set_wow_mode_cmd *) skb->data;
2913 cmd->enable_wow = cpu_to_le32(wow_mode);
2914 cmd->filter = cpu_to_le32(filter);
2915 cmd->host_req_delay = cpu_to_le16(host_req_delay);
2916
2917 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_WOW_MODE_CMDID,
2918 NO_SYNC_WMIFLAG);
2919 return ret;
2920}
2921
Raja Mani5c9b4fa2011-11-07 22:52:45 +02002922int ath6kl_wmi_add_wow_pattern_cmd(struct wmi *wmi, u8 if_idx,
2923 u8 list_id, u8 filter_size,
Raja Manid91e8ee2012-01-30 17:13:10 +05302924 u8 filter_offset, const u8 *filter,
2925 const u8 *mask)
Raja Mani5c9b4fa2011-11-07 22:52:45 +02002926{
2927 struct sk_buff *skb;
2928 struct wmi_add_wow_pattern_cmd *cmd;
2929 u16 size;
2930 u8 *filter_mask;
2931 int ret;
2932
2933 /*
2934 * Allocate additional memory in the buffer to hold
2935 * filter and mask value, which is twice of filter_size.
2936 */
2937 size = sizeof(*cmd) + (2 * filter_size);
2938
2939 skb = ath6kl_wmi_get_new_buf(size);
2940 if (!skb)
2941 return -ENOMEM;
2942
2943 cmd = (struct wmi_add_wow_pattern_cmd *) skb->data;
2944 cmd->filter_list_id = list_id;
2945 cmd->filter_size = filter_size;
2946 cmd->filter_offset = filter_offset;
2947
2948 memcpy(cmd->filter, filter, filter_size);
2949
2950 filter_mask = (u8 *) (cmd->filter + filter_size);
2951 memcpy(filter_mask, mask, filter_size);
2952
2953 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_WOW_PATTERN_CMDID,
2954 NO_SYNC_WMIFLAG);
2955
2956 return ret;
2957}
2958
2959int ath6kl_wmi_del_wow_pattern_cmd(struct wmi *wmi, u8 if_idx,
2960 u16 list_id, u16 filter_id)
2961{
2962 struct sk_buff *skb;
2963 struct wmi_del_wow_pattern_cmd *cmd;
2964 int ret;
2965
2966 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2967 if (!skb)
2968 return -ENOMEM;
2969
2970 cmd = (struct wmi_del_wow_pattern_cmd *) skb->data;
2971 cmd->filter_list_id = cpu_to_le16(list_id);
2972 cmd->filter_id = cpu_to_le16(filter_id);
2973
2974 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DEL_WOW_PATTERN_CMDID,
2975 NO_SYNC_WMIFLAG);
2976 return ret;
2977}
2978
Kalle Valobdcd8172011-07-18 00:22:30 +03002979static int ath6kl_wmi_cmd_send_xtnd(struct wmi *wmi, struct sk_buff *skb,
2980 enum wmix_command_id cmd_id,
2981 enum wmi_sync_flag sync_flag)
2982{
2983 struct wmix_cmd_hdr *cmd_hdr;
2984 int ret;
2985
2986 skb_push(skb, sizeof(struct wmix_cmd_hdr));
2987
2988 cmd_hdr = (struct wmix_cmd_hdr *) skb->data;
2989 cmd_hdr->cmd_id = cpu_to_le32(cmd_id);
2990
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05302991 ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_EXTENSION_CMDID, sync_flag);
Kalle Valobdcd8172011-07-18 00:22:30 +03002992
2993 return ret;
2994}
2995
2996int ath6kl_wmi_get_challenge_resp_cmd(struct wmi *wmi, u32 cookie, u32 source)
2997{
2998 struct sk_buff *skb;
2999 struct wmix_hb_challenge_resp_cmd *cmd;
3000 int ret;
3001
3002 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3003 if (!skb)
3004 return -ENOMEM;
3005
3006 cmd = (struct wmix_hb_challenge_resp_cmd *) skb->data;
3007 cmd->cookie = cpu_to_le32(cookie);
3008 cmd->source = cpu_to_le32(source);
3009
3010 ret = ath6kl_wmi_cmd_send_xtnd(wmi, skb, WMIX_HB_CHALLENGE_RESP_CMDID,
3011 NO_SYNC_WMIFLAG);
3012 return ret;
3013}
3014
Kalle Valo939f1cc2011-09-02 10:32:04 +03003015int ath6kl_wmi_config_debug_module_cmd(struct wmi *wmi, u32 valid, u32 config)
3016{
3017 struct ath6kl_wmix_dbglog_cfg_module_cmd *cmd;
3018 struct sk_buff *skb;
3019 int ret;
3020
3021 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3022 if (!skb)
3023 return -ENOMEM;
3024
3025 cmd = (struct ath6kl_wmix_dbglog_cfg_module_cmd *) skb->data;
3026 cmd->valid = cpu_to_le32(valid);
3027 cmd->config = cpu_to_le32(config);
3028
3029 ret = ath6kl_wmi_cmd_send_xtnd(wmi, skb, WMIX_DBGLOG_CFG_MODULE_CMDID,
3030 NO_SYNC_WMIFLAG);
3031 return ret;
3032}
3033
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303034int ath6kl_wmi_get_stats_cmd(struct wmi *wmi, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +03003035{
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303036 return ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_GET_STATISTICS_CMDID);
Kalle Valobdcd8172011-07-18 00:22:30 +03003037}
3038
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05303039int ath6kl_wmi_set_tx_pwr_cmd(struct wmi *wmi, u8 if_idx, u8 dbM)
Kalle Valobdcd8172011-07-18 00:22:30 +03003040{
3041 struct sk_buff *skb;
3042 struct wmi_set_tx_pwr_cmd *cmd;
3043 int ret;
3044
3045 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_tx_pwr_cmd));
3046 if (!skb)
3047 return -ENOMEM;
3048
3049 cmd = (struct wmi_set_tx_pwr_cmd *) skb->data;
3050 cmd->dbM = dbM;
3051
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05303052 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_TX_PWR_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03003053 NO_SYNC_WMIFLAG);
3054
3055 return ret;
3056}
3057
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05303058int ath6kl_wmi_get_tx_pwr_cmd(struct wmi *wmi, u8 if_idx)
Kalle Valobdcd8172011-07-18 00:22:30 +03003059{
Vasanthakumar Thiagarajan990bd912011-10-25 19:34:20 +05303060 return ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_GET_TX_PWR_CMDID);
Kalle Valobdcd8172011-07-18 00:22:30 +03003061}
3062
Jouni Malinen4b28a802011-10-11 17:31:54 +03003063int ath6kl_wmi_get_roam_tbl_cmd(struct wmi *wmi)
3064{
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303065 return ath6kl_wmi_simple_cmd(wmi, 0, WMI_GET_ROAM_TBL_CMDID);
Jouni Malinen4b28a802011-10-11 17:31:54 +03003066}
3067
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303068int ath6kl_wmi_set_lpreamble_cmd(struct wmi *wmi, u8 if_idx, u8 status,
3069 u8 preamble_policy)
Kalle Valobdcd8172011-07-18 00:22:30 +03003070{
3071 struct sk_buff *skb;
3072 struct wmi_set_lpreamble_cmd *cmd;
3073 int ret;
3074
3075 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_lpreamble_cmd));
3076 if (!skb)
3077 return -ENOMEM;
3078
3079 cmd = (struct wmi_set_lpreamble_cmd *) skb->data;
3080 cmd->status = status;
3081 cmd->preamble_policy = preamble_policy;
3082
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303083 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_LPREAMBLE_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03003084 NO_SYNC_WMIFLAG);
3085 return ret;
3086}
3087
3088int ath6kl_wmi_set_rts_cmd(struct wmi *wmi, u16 threshold)
3089{
3090 struct sk_buff *skb;
3091 struct wmi_set_rts_cmd *cmd;
3092 int ret;
3093
3094 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_rts_cmd));
3095 if (!skb)
3096 return -ENOMEM;
3097
3098 cmd = (struct wmi_set_rts_cmd *) skb->data;
3099 cmd->threshold = cpu_to_le16(threshold);
3100
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303101 ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_RTS_CMDID,
3102 NO_SYNC_WMIFLAG);
Kalle Valobdcd8172011-07-18 00:22:30 +03003103 return ret;
3104}
3105
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303106int ath6kl_wmi_set_wmm_txop(struct wmi *wmi, u8 if_idx, enum wmi_txop_cfg cfg)
Kalle Valobdcd8172011-07-18 00:22:30 +03003107{
3108 struct sk_buff *skb;
3109 struct wmi_set_wmm_txop_cmd *cmd;
3110 int ret;
3111
3112 if (!((cfg == WMI_TXOP_DISABLED) || (cfg == WMI_TXOP_ENABLED)))
3113 return -EINVAL;
3114
3115 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_wmm_txop_cmd));
3116 if (!skb)
3117 return -ENOMEM;
3118
3119 cmd = (struct wmi_set_wmm_txop_cmd *) skb->data;
3120 cmd->txop_enable = cfg;
3121
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303122 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_WMM_TXOP_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03003123 NO_SYNC_WMIFLAG);
3124 return ret;
3125}
3126
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303127int ath6kl_wmi_set_keepalive_cmd(struct wmi *wmi, u8 if_idx,
3128 u8 keep_alive_intvl)
Kalle Valobdcd8172011-07-18 00:22:30 +03003129{
3130 struct sk_buff *skb;
3131 struct wmi_set_keepalive_cmd *cmd;
3132 int ret;
3133
3134 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3135 if (!skb)
3136 return -ENOMEM;
3137
3138 cmd = (struct wmi_set_keepalive_cmd *) skb->data;
3139 cmd->keep_alive_intvl = keep_alive_intvl;
Kalle Valobdcd8172011-07-18 00:22:30 +03003140
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303141 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_KEEPALIVE_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03003142 NO_SYNC_WMIFLAG);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303143
Jouni Malinenff0b0072011-10-11 17:31:56 +03003144 if (ret == 0)
3145 ath6kl_debug_set_keepalive(wmi->parent_dev, keep_alive_intvl);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303146
Kalle Valobdcd8172011-07-18 00:22:30 +03003147 return ret;
3148}
3149
Vasanthakumar Thiagarajandf90b362012-04-09 19:03:58 +05303150int ath6kl_wmi_set_htcap_cmd(struct wmi *wmi, u8 if_idx,
3151 enum ieee80211_band band,
3152 struct ath6kl_htcap *htcap)
3153{
3154 struct sk_buff *skb;
3155 struct wmi_set_htcap_cmd *cmd;
3156
3157 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3158 if (!skb)
3159 return -ENOMEM;
3160
3161 cmd = (struct wmi_set_htcap_cmd *) skb->data;
3162
3163 /*
3164 * NOTE: Band in firmware matches enum ieee80211_band, it is unlikely
3165 * this will be changed in firmware. If at all there is any change in
3166 * band value, the host needs to be fixed.
3167 */
3168 cmd->band = band;
3169 cmd->ht_enable = !!htcap->ht_enable;
3170 cmd->ht20_sgi = !!(htcap->cap_info & IEEE80211_HT_CAP_SGI_20);
3171 cmd->ht40_supported =
3172 !!(htcap->cap_info & IEEE80211_HT_CAP_SUP_WIDTH_20_40);
3173 cmd->ht40_sgi = !!(htcap->cap_info & IEEE80211_HT_CAP_SGI_40);
3174 cmd->intolerant_40mhz =
3175 !!(htcap->cap_info & IEEE80211_HT_CAP_40MHZ_INTOLERANT);
3176 cmd->max_ampdu_len_exp = htcap->ampdu_factor;
3177
3178 ath6kl_dbg(ATH6KL_DBG_WMI,
3179 "Set htcap: band:%d ht_enable:%d 40mhz:%d sgi_20mhz:%d sgi_40mhz:%d 40mhz_intolerant:%d ampdu_len_exp:%d\n",
3180 cmd->band, cmd->ht_enable, cmd->ht40_supported,
3181 cmd->ht20_sgi, cmd->ht40_sgi, cmd->intolerant_40mhz,
3182 cmd->max_ampdu_len_exp);
3183 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_HT_CAP_CMDID,
3184 NO_SYNC_WMIFLAG);
3185}
3186
Kalle Valo003353b0d2011-09-01 10:14:21 +03003187int ath6kl_wmi_test_cmd(struct wmi *wmi, void *buf, size_t len)
3188{
3189 struct sk_buff *skb;
3190 int ret;
3191
3192 skb = ath6kl_wmi_get_new_buf(len);
3193 if (!skb)
3194 return -ENOMEM;
3195
3196 memcpy(skb->data, buf, len);
3197
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303198 ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_TEST_CMDID, NO_SYNC_WMIFLAG);
Kalle Valo003353b0d2011-09-01 10:14:21 +03003199
3200 return ret;
3201}
3202
Vasanthakumar Thiagarajan3f3c4ee2012-01-03 14:41:59 +05303203int ath6kl_wmi_mcast_filter_cmd(struct wmi *wmi, u8 if_idx, bool mc_all_on)
3204{
3205 struct sk_buff *skb;
3206 struct wmi_mcast_filter_cmd *cmd;
3207 int ret;
3208
3209 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3210 if (!skb)
3211 return -ENOMEM;
3212
3213 cmd = (struct wmi_mcast_filter_cmd *) skb->data;
3214 cmd->mcast_all_enable = mc_all_on;
3215
3216 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_MCAST_FILTER_CMDID,
3217 NO_SYNC_WMIFLAG);
3218 return ret;
3219}
Kalle Valo003353b0d2011-09-01 10:14:21 +03003220
Vasanthakumar Thiagarajanf914edd2012-01-03 14:42:00 +05303221int ath6kl_wmi_add_del_mcast_filter_cmd(struct wmi *wmi, u8 if_idx,
3222 u8 *filter, bool add_filter)
3223{
3224 struct sk_buff *skb;
3225 struct wmi_mcast_filter_add_del_cmd *cmd;
3226 int ret;
3227
3228 if ((filter[0] != 0x33 || filter[1] != 0x33) &&
3229 (filter[0] != 0x01 || filter[1] != 0x00 ||
3230 filter[2] != 0x5e || filter[3] > 0x7f)) {
3231 ath6kl_warn("invalid multicast filter address\n");
3232 return -EINVAL;
3233 }
3234
3235 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3236 if (!skb)
3237 return -ENOMEM;
3238
3239 cmd = (struct wmi_mcast_filter_add_del_cmd *) skb->data;
3240 memcpy(cmd->mcast_mac, filter, ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE);
3241 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb,
3242 add_filter ? WMI_SET_MCAST_FILTER_CMDID :
3243 WMI_DEL_MCAST_FILTER_CMDID,
3244 NO_SYNC_WMIFLAG);
3245
3246 return ret;
3247}
3248
Thomas Pedersenc422d52d2012-05-15 00:09:23 -07003249int ath6kl_wmi_sta_bmiss_enhance_cmd(struct wmi *wmi, u8 if_idx, bool enhance)
3250{
3251 struct sk_buff *skb;
3252 struct wmi_sta_bmiss_enhance_cmd *cmd;
3253 int ret;
3254
3255 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3256 if (!skb)
3257 return -ENOMEM;
3258
3259 cmd = (struct wmi_sta_bmiss_enhance_cmd *) skb->data;
3260 cmd->enable = enhance ? 1 : 0;
3261
3262 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb,
3263 WMI_STA_BMISS_ENHANCE_CMDID,
3264 NO_SYNC_WMIFLAG);
3265 return ret;
3266}
3267
Kalle Valo84841ba2012-07-19 16:00:56 +03003268int ath6kl_wmi_set_regdomain_cmd(struct wmi *wmi, const char *alpha2)
3269{
3270 struct sk_buff *skb;
3271 struct wmi_set_regdomain_cmd *cmd;
3272
3273 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3274 if (!skb)
3275 return -ENOMEM;
3276
3277 cmd = (struct wmi_set_regdomain_cmd *) skb->data;
3278 memcpy(cmd->iso_name, alpha2, 2);
3279
3280 return ath6kl_wmi_cmd_send(wmi, 0, skb,
3281 WMI_SET_REGDOMAIN_CMDID,
3282 NO_SYNC_WMIFLAG);
3283}
3284
Kalle Valobdcd8172011-07-18 00:22:30 +03003285s32 ath6kl_wmi_get_rate(s8 rate_index)
3286{
Dengke Qiu83685092012-08-28 15:33:42 +08003287 u8 sgi = 0;
3288
Kalle Valobdcd8172011-07-18 00:22:30 +03003289 if (rate_index == RATE_AUTO)
3290 return 0;
3291
Dengke Qiu83685092012-08-28 15:33:42 +08003292 /* SGI is stored as the MSB of the rate_index */
3293 if (rate_index & RATE_INDEX_MSB) {
3294 rate_index &= RATE_INDEX_WITHOUT_SGI_MASK;
3295 sgi = 1;
3296 }
3297
3298 if (WARN_ON(rate_index > RATE_MCS_7_40))
3299 rate_index = RATE_MCS_7_40;
3300
3301 return wmi_rate_tbl[(u32) rate_index][sgi];
Kalle Valobdcd8172011-07-18 00:22:30 +03003302}
3303
Kalle Valobdcd8172011-07-18 00:22:30 +03003304static int ath6kl_wmi_get_pmkid_list_event_rx(struct wmi *wmi, u8 *datap,
3305 u32 len)
3306{
3307 struct wmi_pmkid_list_reply *reply;
3308 u32 expected_len;
3309
3310 if (len < sizeof(struct wmi_pmkid_list_reply))
3311 return -EINVAL;
3312
3313 reply = (struct wmi_pmkid_list_reply *)datap;
3314 expected_len = sizeof(reply->num_pmkid) +
3315 le32_to_cpu(reply->num_pmkid) * WMI_PMKID_LEN;
3316
3317 if (len < expected_len)
3318 return -EINVAL;
3319
3320 return 0;
3321}
3322
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303323static int ath6kl_wmi_addba_req_event_rx(struct wmi *wmi, u8 *datap, int len,
3324 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03003325{
3326 struct wmi_addba_req_event *cmd = (struct wmi_addba_req_event *) datap;
3327
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303328 aggr_recv_addba_req_evt(vif, cmd->tid,
Kalle Valobdcd8172011-07-18 00:22:30 +03003329 le16_to_cpu(cmd->st_seq_no), cmd->win_sz);
3330
3331 return 0;
3332}
3333
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303334static int ath6kl_wmi_delba_req_event_rx(struct wmi *wmi, u8 *datap, int len,
3335 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03003336{
3337 struct wmi_delba_event *cmd = (struct wmi_delba_event *) datap;
3338
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303339 aggr_recv_delba_req_evt(vif, cmd->tid);
Kalle Valobdcd8172011-07-18 00:22:30 +03003340
3341 return 0;
3342}
3343
3344/* AP mode functions */
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03003345
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303346int ath6kl_wmi_ap_profile_commit(struct wmi *wmip, u8 if_idx,
3347 struct wmi_connect_cmd *p)
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03003348{
3349 struct sk_buff *skb;
3350 struct wmi_connect_cmd *cm;
3351 int res;
3352
3353 skb = ath6kl_wmi_get_new_buf(sizeof(*cm));
3354 if (!skb)
3355 return -ENOMEM;
3356
3357 cm = (struct wmi_connect_cmd *) skb->data;
3358 memcpy(cm, p, sizeof(*cm));
3359
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303360 res = ath6kl_wmi_cmd_send(wmip, if_idx, skb, WMI_AP_CONFIG_COMMIT_CMDID,
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03003361 NO_SYNC_WMIFLAG);
Kalle Valocdeb8602012-04-12 11:02:18 +03003362 ath6kl_dbg(ATH6KL_DBG_WMI,
3363 "%s: nw_type=%u auth_mode=%u ch=%u ctrl_flags=0x%x-> res=%d\n",
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03003364 __func__, p->nw_type, p->auth_mode, le16_to_cpu(p->ch),
3365 le32_to_cpu(p->ctrl_flags), res);
3366 return res;
3367}
3368
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303369int ath6kl_wmi_ap_set_mlme(struct wmi *wmip, u8 if_idx, u8 cmd, const u8 *mac,
3370 u16 reason)
Jouni Malinen23875132011-08-30 21:57:53 +03003371{
3372 struct sk_buff *skb;
3373 struct wmi_ap_set_mlme_cmd *cm;
3374
3375 skb = ath6kl_wmi_get_new_buf(sizeof(*cm));
3376 if (!skb)
3377 return -ENOMEM;
3378
3379 cm = (struct wmi_ap_set_mlme_cmd *) skb->data;
3380 memcpy(cm->mac, mac, ETH_ALEN);
3381 cm->reason = cpu_to_le16(reason);
3382 cm->cmd = cmd;
3383
Aarthi Thiruvengadam7397dde2012-03-15 14:36:11 -07003384 ath6kl_dbg(ATH6KL_DBG_WMI, "ap_set_mlme: cmd=%d reason=%d\n", cm->cmd,
3385 cm->reason);
3386
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303387 return ath6kl_wmi_cmd_send(wmip, if_idx, skb, WMI_AP_SET_MLME_CMDID,
Jouni Malinen23875132011-08-30 21:57:53 +03003388 NO_SYNC_WMIFLAG);
3389}
3390
Thomas Pedersen67cd22e2012-02-28 15:08:46 -08003391int ath6kl_wmi_ap_hidden_ssid(struct wmi *wmi, u8 if_idx, bool enable)
3392{
3393 struct sk_buff *skb;
3394 struct wmi_ap_hidden_ssid_cmd *cmd;
3395
3396 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3397 if (!skb)
3398 return -ENOMEM;
3399
3400 cmd = (struct wmi_ap_hidden_ssid_cmd *) skb->data;
3401 cmd->hidden_ssid = enable ? 1 : 0;
3402
3403 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_HIDDEN_SSID_CMDID,
3404 NO_SYNC_WMIFLAG);
3405}
3406
Thirumalai Pachamuthuc1762a32012-01-12 18:21:39 +05303407/* This command will be used to enable/disable AP uAPSD feature */
3408int ath6kl_wmi_ap_set_apsd(struct wmi *wmi, u8 if_idx, u8 enable)
3409{
3410 struct wmi_ap_set_apsd_cmd *cmd;
3411 struct sk_buff *skb;
3412
3413 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3414 if (!skb)
3415 return -ENOMEM;
3416
3417 cmd = (struct wmi_ap_set_apsd_cmd *)skb->data;
3418 cmd->enable = enable;
3419
3420 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_SET_APSD_CMDID,
3421 NO_SYNC_WMIFLAG);
3422}
3423
3424int ath6kl_wmi_set_apsd_bfrd_traf(struct wmi *wmi, u8 if_idx,
3425 u16 aid, u16 bitmap, u32 flags)
3426{
3427 struct wmi_ap_apsd_buffered_traffic_cmd *cmd;
3428 struct sk_buff *skb;
3429
3430 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3431 if (!skb)
3432 return -ENOMEM;
3433
3434 cmd = (struct wmi_ap_apsd_buffered_traffic_cmd *)skb->data;
3435 cmd->aid = cpu_to_le16(aid);
3436 cmd->bitmap = cpu_to_le16(bitmap);
3437 cmd->flags = cpu_to_le32(flags);
3438
3439 return ath6kl_wmi_cmd_send(wmi, if_idx, skb,
3440 WMI_AP_APSD_BUFFERED_TRAFFIC_CMDID,
3441 NO_SYNC_WMIFLAG);
3442}
3443
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303444static int ath6kl_wmi_pspoll_event_rx(struct wmi *wmi, u8 *datap, int len,
3445 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03003446{
3447 struct wmi_pspoll_event *ev;
3448
3449 if (len < sizeof(struct wmi_pspoll_event))
3450 return -EINVAL;
3451
3452 ev = (struct wmi_pspoll_event *) datap;
3453
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303454 ath6kl_pspoll_event(vif, le16_to_cpu(ev->aid));
Kalle Valobdcd8172011-07-18 00:22:30 +03003455
3456 return 0;
3457}
3458
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303459static int ath6kl_wmi_dtimexpiry_event_rx(struct wmi *wmi, u8 *datap, int len,
3460 struct ath6kl_vif *vif)
Kalle Valobdcd8172011-07-18 00:22:30 +03003461{
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303462 ath6kl_dtimexpiry_event(vif);
Kalle Valobdcd8172011-07-18 00:22:30 +03003463
3464 return 0;
3465}
3466
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303467int ath6kl_wmi_set_pvb_cmd(struct wmi *wmi, u8 if_idx, u16 aid,
3468 bool flag)
Kalle Valobdcd8172011-07-18 00:22:30 +03003469{
3470 struct sk_buff *skb;
3471 struct wmi_ap_set_pvb_cmd *cmd;
3472 int ret;
3473
3474 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_ap_set_pvb_cmd));
3475 if (!skb)
3476 return -ENOMEM;
3477
3478 cmd = (struct wmi_ap_set_pvb_cmd *) skb->data;
3479 cmd->aid = cpu_to_le16(aid);
Jouni Malinend6e51e62011-09-05 17:38:44 +03003480 cmd->rsvd = cpu_to_le16(0);
Kalle Valobdcd8172011-07-18 00:22:30 +03003481 cmd->flag = cpu_to_le32(flag);
3482
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303483 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_SET_PVB_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03003484 NO_SYNC_WMIFLAG);
3485
3486 return 0;
3487}
3488
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303489int ath6kl_wmi_set_rx_frame_format_cmd(struct wmi *wmi, u8 if_idx,
3490 u8 rx_meta_ver,
Kalle Valobdcd8172011-07-18 00:22:30 +03003491 bool rx_dot11_hdr, bool defrag_on_host)
3492{
3493 struct sk_buff *skb;
3494 struct wmi_rx_frame_format_cmd *cmd;
3495 int ret;
3496
3497 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3498 if (!skb)
3499 return -ENOMEM;
3500
3501 cmd = (struct wmi_rx_frame_format_cmd *) skb->data;
3502 cmd->dot11_hdr = rx_dot11_hdr ? 1 : 0;
3503 cmd->defrag_on_host = defrag_on_host ? 1 : 0;
3504 cmd->meta_ver = rx_meta_ver;
3505
3506 /* Delete the local aggr state, on host */
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303507 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_RX_FRAME_FORMAT_CMDID,
Kalle Valobdcd8172011-07-18 00:22:30 +03003508 NO_SYNC_WMIFLAG);
3509
3510 return ret;
3511}
3512
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303513int ath6kl_wmi_set_appie_cmd(struct wmi *wmi, u8 if_idx, u8 mgmt_frm_type,
3514 const u8 *ie, u8 ie_len)
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03003515{
3516 struct sk_buff *skb;
3517 struct wmi_set_appie_cmd *p;
3518
3519 skb = ath6kl_wmi_get_new_buf(sizeof(*p) + ie_len);
3520 if (!skb)
3521 return -ENOMEM;
3522
Kalle Valocdeb8602012-04-12 11:02:18 +03003523 ath6kl_dbg(ATH6KL_DBG_WMI,
3524 "set_appie_cmd: mgmt_frm_type=%u ie_len=%u\n",
3525 mgmt_frm_type, ie_len);
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03003526 p = (struct wmi_set_appie_cmd *) skb->data;
3527 p->mgmt_frm_type = mgmt_frm_type;
3528 p->ie_len = ie_len;
Kalle Valo10509f92011-12-13 14:52:07 +02003529
3530 if (ie != NULL && ie_len > 0)
3531 memcpy(p->ie_info, ie, ie_len);
3532
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303533 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_APPIE_CMDID,
Jouni Malinen6a7c9ba2011-08-30 21:57:50 +03003534 NO_SYNC_WMIFLAG);
3535}
3536
Vasanthakumar Thiagarajand97c1212012-04-09 20:51:20 +05303537int ath6kl_wmi_set_ie_cmd(struct wmi *wmi, u8 if_idx, u8 ie_id, u8 ie_field,
3538 const u8 *ie_info, u8 ie_len)
3539{
3540 struct sk_buff *skb;
3541 struct wmi_set_ie_cmd *p;
3542
3543 skb = ath6kl_wmi_get_new_buf(sizeof(*p) + ie_len);
3544 if (!skb)
3545 return -ENOMEM;
3546
3547 ath6kl_dbg(ATH6KL_DBG_WMI, "set_ie_cmd: ie_id=%u ie_ie_field=%u ie_len=%u\n",
3548 ie_id, ie_field, ie_len);
3549 p = (struct wmi_set_ie_cmd *) skb->data;
3550 p->ie_id = ie_id;
3551 p->ie_field = ie_field;
3552 p->ie_len = ie_len;
3553 if (ie_info && ie_len > 0)
3554 memcpy(p->ie_info, ie_info, ie_len);
3555
3556 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_IE_CMDID,
3557 NO_SYNC_WMIFLAG);
3558}
3559
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003560int ath6kl_wmi_disable_11b_rates_cmd(struct wmi *wmi, bool disable)
3561{
3562 struct sk_buff *skb;
3563 struct wmi_disable_11b_rates_cmd *cmd;
3564
3565 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3566 if (!skb)
3567 return -ENOMEM;
3568
3569 ath6kl_dbg(ATH6KL_DBG_WMI, "disable_11b_rates_cmd: disable=%u\n",
3570 disable);
3571 cmd = (struct wmi_disable_11b_rates_cmd *) skb->data;
3572 cmd->disable = disable ? 1 : 0;
3573
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303574 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_DISABLE_11B_RATES_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003575 NO_SYNC_WMIFLAG);
3576}
3577
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303578int ath6kl_wmi_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx, u32 freq, u32 dur)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003579{
3580 struct sk_buff *skb;
3581 struct wmi_remain_on_chnl_cmd *p;
3582
3583 skb = ath6kl_wmi_get_new_buf(sizeof(*p));
3584 if (!skb)
3585 return -ENOMEM;
3586
3587 ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl_cmd: freq=%u dur=%u\n",
3588 freq, dur);
3589 p = (struct wmi_remain_on_chnl_cmd *) skb->data;
3590 p->freq = cpu_to_le32(freq);
3591 p->duration = cpu_to_le32(dur);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303592 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_REMAIN_ON_CHNL_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003593 NO_SYNC_WMIFLAG);
3594}
3595
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08003596/* ath6kl_wmi_send_action_cmd is to be deprecated. Use
3597 * ath6kl_wmi_send_mgmt_cmd instead. The new function supports P2P
3598 * mgmt operations using station interface.
3599 */
Naveen Gangadharand0ff7382012-02-08 17:51:36 -08003600static int ath6kl_wmi_send_action_cmd(struct wmi *wmi, u8 if_idx, u32 id,
3601 u32 freq, u32 wait, const u8 *data,
3602 u16 data_len)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003603{
3604 struct sk_buff *skb;
3605 struct wmi_send_action_cmd *p;
Jouni Malinena0df5db2011-08-30 21:58:02 +03003606 u8 *buf;
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003607
3608 if (wait)
3609 return -EINVAL; /* Offload for wait not supported */
3610
Jouni Malinena0df5db2011-08-30 21:58:02 +03003611 buf = kmalloc(data_len, GFP_KERNEL);
3612 if (!buf)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003613 return -ENOMEM;
3614
Jouni Malinena0df5db2011-08-30 21:58:02 +03003615 skb = ath6kl_wmi_get_new_buf(sizeof(*p) + data_len);
3616 if (!skb) {
3617 kfree(buf);
3618 return -ENOMEM;
3619 }
3620
3621 kfree(wmi->last_mgmt_tx_frame);
Aarthi Thiruvengadam3101ede2011-10-27 09:35:56 -07003622 memcpy(buf, data, data_len);
Jouni Malinena0df5db2011-08-30 21:58:02 +03003623 wmi->last_mgmt_tx_frame = buf;
3624 wmi->last_mgmt_tx_frame_len = data_len;
3625
Kalle Valocdeb8602012-04-12 11:02:18 +03003626 ath6kl_dbg(ATH6KL_DBG_WMI,
3627 "send_action_cmd: id=%u freq=%u wait=%u len=%u\n",
3628 id, freq, wait, data_len);
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003629 p = (struct wmi_send_action_cmd *) skb->data;
3630 p->id = cpu_to_le32(id);
3631 p->freq = cpu_to_le32(freq);
3632 p->wait = cpu_to_le32(wait);
3633 p->len = cpu_to_le16(data_len);
3634 memcpy(p->data, data, data_len);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303635 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SEND_ACTION_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003636 NO_SYNC_WMIFLAG);
3637}
3638
Naveen Gangadharand0ff7382012-02-08 17:51:36 -08003639static int __ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id,
3640 u32 freq, u32 wait, const u8 *data,
3641 u16 data_len, u32 no_cck)
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08003642{
3643 struct sk_buff *skb;
3644 struct wmi_send_mgmt_cmd *p;
3645 u8 *buf;
3646
3647 if (wait)
3648 return -EINVAL; /* Offload for wait not supported */
3649
3650 buf = kmalloc(data_len, GFP_KERNEL);
3651 if (!buf)
3652 return -ENOMEM;
3653
3654 skb = ath6kl_wmi_get_new_buf(sizeof(*p) + data_len);
3655 if (!skb) {
3656 kfree(buf);
3657 return -ENOMEM;
3658 }
3659
3660 kfree(wmi->last_mgmt_tx_frame);
3661 memcpy(buf, data, data_len);
3662 wmi->last_mgmt_tx_frame = buf;
3663 wmi->last_mgmt_tx_frame_len = data_len;
3664
Kalle Valocdeb8602012-04-12 11:02:18 +03003665 ath6kl_dbg(ATH6KL_DBG_WMI,
3666 "send_action_cmd: id=%u freq=%u wait=%u len=%u\n",
3667 id, freq, wait, data_len);
Aarthi Thiruvengadam3ca9d1f2011-12-13 13:32:12 -08003668 p = (struct wmi_send_mgmt_cmd *) skb->data;
3669 p->id = cpu_to_le32(id);
3670 p->freq = cpu_to_le32(freq);
3671 p->wait = cpu_to_le32(wait);
3672 p->no_cck = cpu_to_le32(no_cck);
3673 p->len = cpu_to_le16(data_len);
3674 memcpy(p->data, data, data_len);
3675 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SEND_MGMT_CMDID,
3676 NO_SYNC_WMIFLAG);
3677}
3678
Naveen Gangadharand0ff7382012-02-08 17:51:36 -08003679int ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id, u32 freq,
3680 u32 wait, const u8 *data, u16 data_len,
3681 u32 no_cck)
3682{
3683 int status;
3684 struct ath6kl *ar = wmi->parent_dev;
3685
3686 if (test_bit(ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX,
3687 ar->fw_capabilities)) {
3688 /*
3689 * If capable of doing P2P mgmt operations using
3690 * station interface, send additional information like
3691 * supported rates to advertise and xmit rates for
3692 * probe requests
3693 */
3694 status = __ath6kl_wmi_send_mgmt_cmd(ar->wmi, if_idx, id, freq,
3695 wait, data, data_len,
3696 no_cck);
3697 } else {
3698 status = ath6kl_wmi_send_action_cmd(ar->wmi, if_idx, id, freq,
3699 wait, data, data_len);
3700 }
3701
3702 return status;
3703}
3704
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303705int ath6kl_wmi_send_probe_response_cmd(struct wmi *wmi, u8 if_idx, u32 freq,
3706 const u8 *dst, const u8 *data,
3707 u16 data_len)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003708{
3709 struct sk_buff *skb;
3710 struct wmi_p2p_probe_response_cmd *p;
Aarthi Thiruvengadambd24a502011-11-09 10:05:56 -08003711 size_t cmd_len = sizeof(*p) + data_len;
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003712
Aarthi Thiruvengadambd24a502011-11-09 10:05:56 -08003713 if (data_len == 0)
3714 cmd_len++; /* work around target minimum length requirement */
3715
3716 skb = ath6kl_wmi_get_new_buf(cmd_len);
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003717 if (!skb)
3718 return -ENOMEM;
3719
Kalle Valocdeb8602012-04-12 11:02:18 +03003720 ath6kl_dbg(ATH6KL_DBG_WMI,
3721 "send_probe_response_cmd: freq=%u dst=%pM len=%u\n",
3722 freq, dst, data_len);
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003723 p = (struct wmi_p2p_probe_response_cmd *) skb->data;
3724 p->freq = cpu_to_le32(freq);
3725 memcpy(p->destination_addr, dst, ETH_ALEN);
3726 p->len = cpu_to_le16(data_len);
3727 memcpy(p->data, data, data_len);
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303728 return ath6kl_wmi_cmd_send(wmi, if_idx, skb,
3729 WMI_SEND_PROBE_RESPONSE_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003730 NO_SYNC_WMIFLAG);
3731}
3732
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303733int ath6kl_wmi_probe_report_req_cmd(struct wmi *wmi, u8 if_idx, bool enable)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003734{
3735 struct sk_buff *skb;
3736 struct wmi_probe_req_report_cmd *p;
3737
3738 skb = ath6kl_wmi_get_new_buf(sizeof(*p));
3739 if (!skb)
3740 return -ENOMEM;
3741
3742 ath6kl_dbg(ATH6KL_DBG_WMI, "probe_report_req_cmd: enable=%u\n",
3743 enable);
3744 p = (struct wmi_probe_req_report_cmd *) skb->data;
3745 p->enable = enable ? 1 : 0;
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303746 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_PROBE_REQ_REPORT_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003747 NO_SYNC_WMIFLAG);
3748}
3749
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303750int ath6kl_wmi_info_req_cmd(struct wmi *wmi, u8 if_idx, u32 info_req_flags)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003751{
3752 struct sk_buff *skb;
3753 struct wmi_get_p2p_info *p;
3754
3755 skb = ath6kl_wmi_get_new_buf(sizeof(*p));
3756 if (!skb)
3757 return -ENOMEM;
3758
3759 ath6kl_dbg(ATH6KL_DBG_WMI, "info_req_cmd: flags=%x\n",
3760 info_req_flags);
3761 p = (struct wmi_get_p2p_info *) skb->data;
3762 p->info_req_flags = cpu_to_le32(info_req_flags);
Vasanthakumar Thiagarajan0ce59442011-10-25 19:34:25 +05303763 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_GET_P2P_INFO_CMDID,
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003764 NO_SYNC_WMIFLAG);
3765}
3766
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303767int ath6kl_wmi_cancel_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx)
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003768{
3769 ath6kl_dbg(ATH6KL_DBG_WMI, "cancel_remain_on_chnl_cmd\n");
Vasanthakumar Thiagarajan334234b2011-10-25 19:34:12 +05303770 return ath6kl_wmi_simple_cmd(wmi, if_idx,
3771 WMI_CANCEL_REMAIN_ON_CHNL_CMDID);
Jouni Malinen6465ddc2011-08-30 21:57:54 +03003772}
3773
Vasanthakumar Thiagarajan03bdeb02012-03-21 20:58:39 +05303774int ath6kl_wmi_set_inact_period(struct wmi *wmi, u8 if_idx, int inact_timeout)
3775{
3776 struct sk_buff *skb;
3777 struct wmi_set_inact_period_cmd *cmd;
3778
3779 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3780 if (!skb)
3781 return -ENOMEM;
3782
3783 cmd = (struct wmi_set_inact_period_cmd *) skb->data;
3784 cmd->inact_period = cpu_to_le32(inact_timeout);
3785 cmd->num_null_func = 0;
3786
3787 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_CONN_INACT_CMDID,
3788 NO_SYNC_WMIFLAG);
3789}
3790
Vasanthakumar Thiagarajan92332992012-08-29 19:40:27 +05303791static void ath6kl_wmi_hb_challenge_resp_event(struct wmi *wmi, u8 *datap,
3792 int len)
3793{
3794 struct wmix_hb_challenge_resp_cmd *cmd;
3795
3796 if (len < sizeof(struct wmix_hb_challenge_resp_cmd))
3797 return;
3798
3799 cmd = (struct wmix_hb_challenge_resp_cmd *) datap;
3800 ath6kl_recovery_hb_event(wmi->parent_dev,
3801 le32_to_cpu(cmd->cookie));
3802}
3803
Kalle Valobdcd8172011-07-18 00:22:30 +03003804static int ath6kl_wmi_control_rx_xtnd(struct wmi *wmi, struct sk_buff *skb)
3805{
3806 struct wmix_cmd_hdr *cmd;
3807 u32 len;
3808 u16 id;
3809 u8 *datap;
3810 int ret = 0;
3811
3812 if (skb->len < sizeof(struct wmix_cmd_hdr)) {
3813 ath6kl_err("bad packet 1\n");
Kalle Valobdcd8172011-07-18 00:22:30 +03003814 return -EINVAL;
3815 }
3816
3817 cmd = (struct wmix_cmd_hdr *) skb->data;
3818 id = le32_to_cpu(cmd->cmd_id);
3819
3820 skb_pull(skb, sizeof(struct wmix_cmd_hdr));
3821
3822 datap = skb->data;
3823 len = skb->len;
3824
3825 switch (id) {
3826 case WMIX_HB_CHALLENGE_RESP_EVENTID:
Kalle Valob9b6ee62011-09-27 14:31:21 +03003827 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi event hb challenge resp\n");
Vasanthakumar Thiagarajan92332992012-08-29 19:40:27 +05303828 ath6kl_wmi_hb_challenge_resp_event(wmi, datap, len);
Kalle Valobdcd8172011-07-18 00:22:30 +03003829 break;
3830 case WMIX_DBGLOG_EVENTID:
Kalle Valob9b6ee62011-09-27 14:31:21 +03003831 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi event dbglog len %d\n", len);
Kalle Valobdf53962011-09-02 10:32:04 +03003832 ath6kl_debug_fwlog_event(wmi->parent_dev, datap, len);
Kalle Valobdcd8172011-07-18 00:22:30 +03003833 break;
3834 default:
Kalle Valob9b6ee62011-09-27 14:31:21 +03003835 ath6kl_warn("unknown cmd id 0x%x\n", id);
Kalle Valobdcd8172011-07-18 00:22:30 +03003836 ret = -EINVAL;
3837 break;
3838 }
3839
3840 return ret;
3841}
3842
Jouni Malinen4b28a802011-10-11 17:31:54 +03003843static int ath6kl_wmi_roam_tbl_event_rx(struct wmi *wmi, u8 *datap, int len)
3844{
3845 return ath6kl_debug_roam_tbl_event(wmi->parent_dev, datap, len);
3846}
3847
Vasanthakumar Thiagarajan5dbc8112012-02-28 20:20:21 +05303848/* Process interface specific wmi events, caller would free the datap */
3849static int ath6kl_wmi_proc_events_vif(struct wmi *wmi, u16 if_idx, u16 cmd_id,
3850 u8 *datap, u32 len)
Kalle Valobdcd8172011-07-18 00:22:30 +03003851{
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303852 struct ath6kl_vif *vif;
Kalle Valobdcd8172011-07-18 00:22:30 +03003853
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303854 vif = ath6kl_get_vif_by_index(wmi->parent_dev, if_idx);
3855 if (!vif) {
3856 ath6kl_dbg(ATH6KL_DBG_WMI,
3857 "Wmi event for unavailable vif, vif_index:%d\n",
3858 if_idx);
Vasanthakumar Thiagarajan240d2792011-10-25 19:34:13 +05303859 return -EINVAL;
3860 }
3861
Vasanthakumar Thiagarajan5dbc8112012-02-28 20:20:21 +05303862 switch (cmd_id) {
3863 case WMI_CONNECT_EVENTID:
3864 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CONNECT_EVENTID\n");
3865 return ath6kl_wmi_connect_event_rx(wmi, datap, len, vif);
3866 case WMI_DISCONNECT_EVENTID:
3867 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DISCONNECT_EVENTID\n");
3868 return ath6kl_wmi_disconnect_event_rx(wmi, datap, len, vif);
3869 case WMI_TKIP_MICERR_EVENTID:
3870 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TKIP_MICERR_EVENTID\n");
3871 return ath6kl_wmi_tkip_micerr_event_rx(wmi, datap, len, vif);
3872 case WMI_BSSINFO_EVENTID:
3873 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_BSSINFO_EVENTID\n");
3874 return ath6kl_wmi_bssinfo_event_rx(wmi, datap, len, vif);
3875 case WMI_NEIGHBOR_REPORT_EVENTID:
3876 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_NEIGHBOR_REPORT_EVENTID\n");
3877 return ath6kl_wmi_neighbor_report_event_rx(wmi, datap, len,
3878 vif);
3879 case WMI_SCAN_COMPLETE_EVENTID:
3880 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SCAN_COMPLETE_EVENTID\n");
3881 return ath6kl_wmi_scan_complete_rx(wmi, datap, len, vif);
3882 case WMI_REPORT_STATISTICS_EVENTID:
3883 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_STATISTICS_EVENTID\n");
3884 return ath6kl_wmi_stats_event_rx(wmi, datap, len, vif);
3885 case WMI_CAC_EVENTID:
3886 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CAC_EVENTID\n");
3887 return ath6kl_wmi_cac_event_rx(wmi, datap, len, vif);
3888 case WMI_PSPOLL_EVENTID:
3889 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSPOLL_EVENTID\n");
3890 return ath6kl_wmi_pspoll_event_rx(wmi, datap, len, vif);
3891 case WMI_DTIMEXPIRY_EVENTID:
3892 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DTIMEXPIRY_EVENTID\n");
3893 return ath6kl_wmi_dtimexpiry_event_rx(wmi, datap, len, vif);
3894 case WMI_ADDBA_REQ_EVENTID:
3895 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_REQ_EVENTID\n");
3896 return ath6kl_wmi_addba_req_event_rx(wmi, datap, len, vif);
3897 case WMI_DELBA_REQ_EVENTID:
3898 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DELBA_REQ_EVENTID\n");
3899 return ath6kl_wmi_delba_req_event_rx(wmi, datap, len, vif);
3900 case WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID:
3901 ath6kl_dbg(ATH6KL_DBG_WMI,
3902 "WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID");
3903 return ath6kl_wmi_host_sleep_mode_cmd_prcd_evt_rx(wmi, vif);
3904 case WMI_REMAIN_ON_CHNL_EVENTID:
3905 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REMAIN_ON_CHNL_EVENTID\n");
3906 return ath6kl_wmi_remain_on_chnl_event_rx(wmi, datap, len, vif);
3907 case WMI_CANCEL_REMAIN_ON_CHNL_EVENTID:
3908 ath6kl_dbg(ATH6KL_DBG_WMI,
3909 "WMI_CANCEL_REMAIN_ON_CHNL_EVENTID\n");
3910 return ath6kl_wmi_cancel_remain_on_chnl_event_rx(wmi, datap,
3911 len, vif);
3912 case WMI_TX_STATUS_EVENTID:
3913 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_STATUS_EVENTID\n");
3914 return ath6kl_wmi_tx_status_event_rx(wmi, datap, len, vif);
3915 case WMI_RX_PROBE_REQ_EVENTID:
3916 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RX_PROBE_REQ_EVENTID\n");
3917 return ath6kl_wmi_rx_probe_req_event_rx(wmi, datap, len, vif);
3918 case WMI_RX_ACTION_EVENTID:
3919 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RX_ACTION_EVENTID\n");
3920 return ath6kl_wmi_rx_action_event_rx(wmi, datap, len, vif);
Thomas Pedersen279b2862012-07-17 19:39:55 -07003921 case WMI_TXE_NOTIFY_EVENTID:
3922 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TXE_NOTIFY_EVENTID\n");
3923 return ath6kl_wmi_txe_notify_event_rx(wmi, datap, len, vif);
Vasanthakumar Thiagarajan5dbc8112012-02-28 20:20:21 +05303924 default:
3925 ath6kl_dbg(ATH6KL_DBG_WMI, "unknown cmd id 0x%x\n", cmd_id);
3926 return -EINVAL;
3927 }
3928
3929 return 0;
3930}
3931
3932static int ath6kl_wmi_proc_events(struct wmi *wmi, struct sk_buff *skb)
3933{
3934 struct wmi_cmd_hdr *cmd;
3935 int ret = 0;
3936 u32 len;
3937 u16 id;
3938 u8 if_idx;
3939 u8 *datap;
3940
3941 cmd = (struct wmi_cmd_hdr *) skb->data;
3942 id = le16_to_cpu(cmd->cmd_id);
3943 if_idx = le16_to_cpu(cmd->info1) & WMI_CMD_HDR_IF_ID_MASK;
3944
3945 skb_pull(skb, sizeof(struct wmi_cmd_hdr));
3946 datap = skb->data;
3947 len = skb->len;
3948
3949 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi rx id %d len %d\n", id, len);
3950 ath6kl_dbg_dump(ATH6KL_DBG_WMI_DUMP, NULL, "wmi rx ",
3951 datap, len);
3952
Kalle Valobdcd8172011-07-18 00:22:30 +03003953 switch (id) {
3954 case WMI_GET_BITRATE_CMDID:
3955 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_BITRATE_CMDID\n");
3956 ret = ath6kl_wmi_bitrate_reply_rx(wmi, datap, len);
3957 break;
3958 case WMI_GET_CHANNEL_LIST_CMDID:
3959 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_CHANNEL_LIST_CMDID\n");
3960 ret = ath6kl_wmi_ch_list_reply_rx(wmi, datap, len);
3961 break;
3962 case WMI_GET_TX_PWR_CMDID:
3963 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_TX_PWR_CMDID\n");
3964 ret = ath6kl_wmi_tx_pwr_reply_rx(wmi, datap, len);
3965 break;
3966 case WMI_READY_EVENTID:
3967 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_READY_EVENTID\n");
3968 ret = ath6kl_wmi_ready_event_rx(wmi, datap, len);
3969 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003970 case WMI_PEER_NODE_EVENTID:
3971 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PEER_NODE_EVENTID\n");
3972 ret = ath6kl_wmi_peer_node_event_rx(wmi, datap, len);
3973 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003974 case WMI_REGDOMAIN_EVENTID:
3975 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REGDOMAIN_EVENTID\n");
Vivek Natarajan06033762011-09-06 13:01:36 +05303976 ath6kl_wmi_regdomain_event(wmi, datap, len);
Kalle Valobdcd8172011-07-18 00:22:30 +03003977 break;
3978 case WMI_PSTREAM_TIMEOUT_EVENTID:
3979 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSTREAM_TIMEOUT_EVENTID\n");
3980 ret = ath6kl_wmi_pstream_timeout_event_rx(wmi, datap, len);
3981 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003982 case WMI_CMDERROR_EVENTID:
3983 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CMDERROR_EVENTID\n");
3984 ret = ath6kl_wmi_error_event_rx(wmi, datap, len);
3985 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03003986 case WMI_RSSI_THRESHOLD_EVENTID:
3987 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RSSI_THRESHOLD_EVENTID\n");
3988 ret = ath6kl_wmi_rssi_threshold_event_rx(wmi, datap, len);
3989 break;
3990 case WMI_ERROR_REPORT_EVENTID:
3991 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ERROR_REPORT_EVENTID\n");
3992 break;
3993 case WMI_OPT_RX_FRAME_EVENTID:
3994 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_OPT_RX_FRAME_EVENTID\n");
Jouni Malinenf195d502011-09-19 19:15:00 +03003995 /* this event has been deprecated */
Kalle Valobdcd8172011-07-18 00:22:30 +03003996 break;
3997 case WMI_REPORT_ROAM_TBL_EVENTID:
3998 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_TBL_EVENTID\n");
Jouni Malinen4b28a802011-10-11 17:31:54 +03003999 ret = ath6kl_wmi_roam_tbl_event_rx(wmi, datap, len);
Kalle Valobdcd8172011-07-18 00:22:30 +03004000 break;
4001 case WMI_EXTENSION_EVENTID:
4002 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_EXTENSION_EVENTID\n");
4003 ret = ath6kl_wmi_control_rx_xtnd(wmi, skb);
4004 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03004005 case WMI_CHANNEL_CHANGE_EVENTID:
4006 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CHANNEL_CHANGE_EVENTID\n");
4007 break;
4008 case WMI_REPORT_ROAM_DATA_EVENTID:
4009 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_DATA_EVENTID\n");
4010 break;
Kalle Valo003353b0d2011-09-01 10:14:21 +03004011 case WMI_TEST_EVENTID:
4012 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TEST_EVENTID\n");
Thomas Pedersen4f34dac2011-12-30 01:57:00 -08004013 ret = ath6kl_wmi_test_rx(wmi, datap, len);
Kalle Valo003353b0d2011-09-01 10:14:21 +03004014 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03004015 case WMI_GET_FIXRATES_CMDID:
4016 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_FIXRATES_CMDID\n");
4017 ret = ath6kl_wmi_ratemask_reply_rx(wmi, datap, len);
4018 break;
4019 case WMI_TX_RETRY_ERR_EVENTID:
4020 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_RETRY_ERR_EVENTID\n");
4021 break;
4022 case WMI_SNR_THRESHOLD_EVENTID:
4023 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SNR_THRESHOLD_EVENTID\n");
4024 ret = ath6kl_wmi_snr_threshold_event_rx(wmi, datap, len);
4025 break;
4026 case WMI_LQ_THRESHOLD_EVENTID:
4027 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_LQ_THRESHOLD_EVENTID\n");
4028 break;
4029 case WMI_APLIST_EVENTID:
4030 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_APLIST_EVENTID\n");
4031 ret = ath6kl_wmi_aplist_event_rx(wmi, datap, len);
4032 break;
4033 case WMI_GET_KEEPALIVE_CMDID:
4034 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_KEEPALIVE_CMDID\n");
4035 ret = ath6kl_wmi_keepalive_reply_rx(wmi, datap, len);
4036 break;
4037 case WMI_GET_WOW_LIST_EVENTID:
4038 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_WOW_LIST_EVENTID\n");
Kalle Valobdcd8172011-07-18 00:22:30 +03004039 break;
4040 case WMI_GET_PMKID_LIST_EVENTID:
4041 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_PMKID_LIST_EVENTID\n");
4042 ret = ath6kl_wmi_get_pmkid_list_event_rx(wmi, datap, len);
4043 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03004044 case WMI_SET_PARAMS_REPLY_EVENTID:
4045 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SET_PARAMS_REPLY_EVENTID\n");
4046 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03004047 case WMI_ADDBA_RESP_EVENTID:
4048 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_RESP_EVENTID\n");
4049 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03004050 case WMI_REPORT_BTCOEX_CONFIG_EVENTID:
4051 ath6kl_dbg(ATH6KL_DBG_WMI,
4052 "WMI_REPORT_BTCOEX_CONFIG_EVENTID\n");
4053 break;
4054 case WMI_REPORT_BTCOEX_STATS_EVENTID:
4055 ath6kl_dbg(ATH6KL_DBG_WMI,
4056 "WMI_REPORT_BTCOEX_STATS_EVENTID\n");
4057 break;
4058 case WMI_TX_COMPLETE_EVENTID:
4059 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_COMPLETE_EVENTID\n");
4060 ret = ath6kl_wmi_tx_complete_event_rx(datap, len);
4061 break;
Jouni Malinen6465ddc2011-08-30 21:57:54 +03004062 case WMI_P2P_CAPABILITIES_EVENTID:
4063 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_P2P_CAPABILITIES_EVENTID\n");
4064 ret = ath6kl_wmi_p2p_capabilities_event_rx(datap, len);
4065 break;
Jouni Malinen6465ddc2011-08-30 21:57:54 +03004066 case WMI_P2P_INFO_EVENTID:
4067 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_P2P_INFO_EVENTID\n");
4068 ret = ath6kl_wmi_p2p_info_event_rx(datap, len);
4069 break;
Kalle Valobdcd8172011-07-18 00:22:30 +03004070 default:
Vasanthakumar Thiagarajan5dbc8112012-02-28 20:20:21 +05304071 /* may be the event is interface specific */
4072 ret = ath6kl_wmi_proc_events_vif(wmi, if_idx, id, datap, len);
Kalle Valobdcd8172011-07-18 00:22:30 +03004073 break;
4074 }
4075
4076 dev_kfree_skb(skb);
Kalle Valobdcd8172011-07-18 00:22:30 +03004077 return ret;
4078}
4079
Vasanthakumar Thiagarajan5dbc8112012-02-28 20:20:21 +05304080/* Control Path */
4081int ath6kl_wmi_control_rx(struct wmi *wmi, struct sk_buff *skb)
4082{
4083 if (WARN_ON(skb == NULL))
4084 return -EINVAL;
4085
4086 if (skb->len < sizeof(struct wmi_cmd_hdr)) {
4087 ath6kl_err("bad packet 1\n");
4088 dev_kfree_skb(skb);
4089 return -EINVAL;
4090 }
4091
Kalle Valo416cf0b2013-03-18 13:42:20 +02004092 trace_ath6kl_wmi_event(skb->data, skb->len);
4093
Vasanthakumar Thiagarajan5dbc8112012-02-28 20:20:21 +05304094 return ath6kl_wmi_proc_events(wmi, skb);
4095}
4096
Kalle Valoc89c5912011-10-27 18:48:00 +03004097void ath6kl_wmi_reset(struct wmi *wmi)
Kalle Valobdcd8172011-07-18 00:22:30 +03004098{
Kalle Valobdcd8172011-07-18 00:22:30 +03004099 spin_lock_bh(&wmi->lock);
4100
4101 wmi->fat_pipe_exist = 0;
4102 memset(wmi->stream_exist_for_ac, 0, sizeof(wmi->stream_exist_for_ac));
4103
4104 spin_unlock_bh(&wmi->lock);
4105}
4106
Vasanthakumar Thiagarajan28657852011-07-21 12:00:49 +05304107void *ath6kl_wmi_init(struct ath6kl *dev)
Kalle Valobdcd8172011-07-18 00:22:30 +03004108{
4109 struct wmi *wmi;
4110
4111 wmi = kzalloc(sizeof(struct wmi), GFP_KERNEL);
4112 if (!wmi)
4113 return NULL;
4114
4115 spin_lock_init(&wmi->lock);
4116
4117 wmi->parent_dev = dev;
4118
Kalle Valobdcd8172011-07-18 00:22:30 +03004119 wmi->pwr_mode = REC_POWER;
Kalle Valobdcd8172011-07-18 00:22:30 +03004120
Kalle Valoc89c5912011-10-27 18:48:00 +03004121 ath6kl_wmi_reset(wmi);
Kalle Valobdcd8172011-07-18 00:22:30 +03004122
4123 return wmi;
4124}
4125
4126void ath6kl_wmi_shutdown(struct wmi *wmi)
4127{
4128 if (!wmi)
4129 return;
4130
Jouni Malinena0df5db2011-08-30 21:58:02 +03004131 kfree(wmi->last_mgmt_tx_frame);
Kalle Valobdcd8172011-07-18 00:22:30 +03004132 kfree(wmi);
4133}