1 /* 2 * Copyright (c) 2004-2011 Atheros Communications Inc. 3 * Copyright (c) 2011-2012 Qualcomm Atheros, Inc. 4 * 5 * Permission to use, copy, modify, and/or distribute this software for any 6 * purpose with or without fee is hereby granted, provided that the above 7 * copyright notice and this permission notice appear in all copies. 8 * 9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 */ 17 18 #include <linux/ip.h> 19 #include <linux/in.h> 20 #include "core.h" 21 #include "debug.h" 22 #include "testmode.h" 23 #include "trace.h" 24 #include "../regd.h" 25 #include "../regd_common.h" 26 27 static int ath6kl_wmi_sync_point(struct wmi *wmi, u8 if_idx); 28 29 static 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 static const s32 wmi_rate_tbl_mcs15[][2] = { 63 /* {W/O SGI, with SGI} */ 64 {1000, 1000}, 65 {2000, 2000}, 66 {5500, 5500}, 67 {11000, 11000}, 68 {6000, 6000}, 69 {9000, 9000}, 70 {12000, 12000}, 71 {18000, 18000}, 72 {24000, 24000}, 73 {36000, 36000}, 74 {48000, 48000}, 75 {54000, 54000}, 76 {6500, 7200}, /* HT 20, MCS 0 */ 77 {13000, 14400}, 78 {19500, 21700}, 79 {26000, 28900}, 80 {39000, 43300}, 81 {52000, 57800}, 82 {58500, 65000}, 83 {65000, 72200}, 84 {13000, 14400}, /* HT 20, MCS 8 */ 85 {26000, 28900}, 86 {39000, 43300}, 87 {52000, 57800}, 88 {78000, 86700}, 89 {104000, 115600}, 90 {117000, 130000}, 91 {130000, 144400}, /* HT 20, MCS 15 */ 92 {13500, 15000}, /*HT 40, MCS 0 */ 93 {27000, 30000}, 94 {40500, 45000}, 95 {54000, 60000}, 96 {81000, 90000}, 97 {108000, 120000}, 98 {121500, 135000}, 99 {135000, 150000}, 100 {27000, 30000}, /*HT 40, MCS 8 */ 101 {54000, 60000}, 102 {81000, 90000}, 103 {108000, 120000}, 104 {162000, 180000}, 105 {216000, 240000}, 106 {243000, 270000}, 107 {270000, 300000}, /*HT 40, MCS 15 */ 108 {0, 0} 109 }; 110 111 /* 802.1d to AC mapping. Refer pg 57 of WMM-test-plan-v1.2 */ 112 static const u8 up_to_ac[] = { 113 WMM_AC_BE, 114 WMM_AC_BK, 115 WMM_AC_BK, 116 WMM_AC_BE, 117 WMM_AC_VI, 118 WMM_AC_VI, 119 WMM_AC_VO, 120 WMM_AC_VO, 121 }; 122 123 void ath6kl_wmi_set_control_ep(struct wmi *wmi, enum htc_endpoint_id ep_id) 124 { 125 if (WARN_ON(ep_id == ENDPOINT_UNUSED || ep_id >= ENDPOINT_MAX)) 126 return; 127 128 wmi->ep_id = ep_id; 129 } 130 131 enum htc_endpoint_id ath6kl_wmi_get_control_ep(struct wmi *wmi) 132 { 133 return wmi->ep_id; 134 } 135 136 struct ath6kl_vif *ath6kl_get_vif_by_index(struct ath6kl *ar, u8 if_idx) 137 { 138 struct ath6kl_vif *vif, *found = NULL; 139 140 if (WARN_ON(if_idx > (ar->vif_max - 1))) 141 return NULL; 142 143 /* FIXME: Locking */ 144 spin_lock_bh(&ar->list_lock); 145 list_for_each_entry(vif, &ar->vif_list, list) { 146 if (vif->fw_vif_idx == if_idx) { 147 found = vif; 148 break; 149 } 150 } 151 spin_unlock_bh(&ar->list_lock); 152 153 return found; 154 } 155 156 /* Performs DIX to 802.3 encapsulation for transmit packets. 157 * Assumes the entire DIX header is contiguous and that there is 158 * enough room in the buffer for a 802.3 mac header and LLC+SNAP headers. 159 */ 160 int ath6kl_wmi_dix_2_dot3(struct wmi *wmi, struct sk_buff *skb) 161 { 162 struct ath6kl_llc_snap_hdr *llc_hdr; 163 struct ethhdr *eth_hdr; 164 size_t new_len; 165 __be16 type; 166 u8 *datap; 167 u16 size; 168 169 if (WARN_ON(skb == NULL)) 170 return -EINVAL; 171 172 size = sizeof(struct ath6kl_llc_snap_hdr) + sizeof(struct wmi_data_hdr); 173 if (skb_headroom(skb) < size) 174 return -ENOMEM; 175 176 eth_hdr = (struct ethhdr *) skb->data; 177 type = eth_hdr->h_proto; 178 179 if (!is_ethertype(be16_to_cpu(type))) { 180 ath6kl_dbg(ATH6KL_DBG_WMI, 181 "%s: pkt is already in 802.3 format\n", __func__); 182 return 0; 183 } 184 185 new_len = skb->len - sizeof(*eth_hdr) + sizeof(*llc_hdr); 186 187 skb_push(skb, sizeof(struct ath6kl_llc_snap_hdr)); 188 datap = skb->data; 189 190 eth_hdr->h_proto = cpu_to_be16(new_len); 191 192 memcpy(datap, eth_hdr, sizeof(*eth_hdr)); 193 194 llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap + sizeof(*eth_hdr)); 195 llc_hdr->dsap = 0xAA; 196 llc_hdr->ssap = 0xAA; 197 llc_hdr->cntl = 0x03; 198 llc_hdr->org_code[0] = 0x0; 199 llc_hdr->org_code[1] = 0x0; 200 llc_hdr->org_code[2] = 0x0; 201 llc_hdr->eth_type = type; 202 203 return 0; 204 } 205 206 static int ath6kl_wmi_meta_add(struct wmi *wmi, struct sk_buff *skb, 207 u8 *version, void *tx_meta_info) 208 { 209 struct wmi_tx_meta_v1 *v1; 210 struct wmi_tx_meta_v2 *v2; 211 212 if (WARN_ON(skb == NULL || version == NULL)) 213 return -EINVAL; 214 215 switch (*version) { 216 case WMI_META_VERSION_1: 217 skb_push(skb, WMI_MAX_TX_META_SZ); 218 v1 = (struct wmi_tx_meta_v1 *) skb->data; 219 v1->pkt_id = 0; 220 v1->rate_plcy_id = 0; 221 *version = WMI_META_VERSION_1; 222 break; 223 case WMI_META_VERSION_2: 224 skb_push(skb, WMI_MAX_TX_META_SZ); 225 v2 = (struct wmi_tx_meta_v2 *) skb->data; 226 memcpy(v2, (struct wmi_tx_meta_v2 *) tx_meta_info, 227 sizeof(struct wmi_tx_meta_v2)); 228 break; 229 } 230 231 return 0; 232 } 233 234 int ath6kl_wmi_data_hdr_add(struct wmi *wmi, struct sk_buff *skb, 235 u8 msg_type, u32 flags, 236 enum wmi_data_hdr_data_type data_type, 237 u8 meta_ver, void *tx_meta_info, u8 if_idx) 238 { 239 struct wmi_data_hdr *data_hdr; 240 int ret; 241 242 if (WARN_ON(skb == NULL || (if_idx > wmi->parent_dev->vif_max - 1))) 243 return -EINVAL; 244 245 if (tx_meta_info) { 246 ret = ath6kl_wmi_meta_add(wmi, skb, &meta_ver, tx_meta_info); 247 if (ret) 248 return ret; 249 } 250 251 skb_push(skb, sizeof(struct wmi_data_hdr)); 252 253 data_hdr = (struct wmi_data_hdr *)skb->data; 254 memset(data_hdr, 0, sizeof(struct wmi_data_hdr)); 255 256 data_hdr->info = msg_type << WMI_DATA_HDR_MSG_TYPE_SHIFT; 257 data_hdr->info |= data_type << WMI_DATA_HDR_DATA_TYPE_SHIFT; 258 259 if (flags & WMI_DATA_HDR_FLAGS_MORE) 260 data_hdr->info |= WMI_DATA_HDR_MORE; 261 262 if (flags & WMI_DATA_HDR_FLAGS_EOSP) 263 data_hdr->info3 |= cpu_to_le16(WMI_DATA_HDR_EOSP); 264 265 data_hdr->info2 |= cpu_to_le16(meta_ver << WMI_DATA_HDR_META_SHIFT); 266 data_hdr->info3 |= cpu_to_le16(if_idx & WMI_DATA_HDR_IF_IDX_MASK); 267 268 return 0; 269 } 270 271 u8 ath6kl_wmi_determine_user_priority(u8 *pkt, u32 layer2_pri) 272 { 273 struct iphdr *ip_hdr = (struct iphdr *) pkt; 274 u8 ip_pri; 275 276 /* 277 * Determine IPTOS priority 278 * 279 * IP-TOS - 8bits 280 * : DSCP(6-bits) ECN(2-bits) 281 * : DSCP - P2 P1 P0 X X X 282 * where (P2 P1 P0) form 802.1D 283 */ 284 ip_pri = ip_hdr->tos >> 5; 285 ip_pri &= 0x7; 286 287 if ((layer2_pri & 0x7) > ip_pri) 288 return (u8) layer2_pri & 0x7; 289 else 290 return ip_pri; 291 } 292 293 u8 ath6kl_wmi_get_traffic_class(u8 user_priority) 294 { 295 return up_to_ac[user_priority & 0x7]; 296 } 297 298 int ath6kl_wmi_implicit_create_pstream(struct wmi *wmi, u8 if_idx, 299 struct sk_buff *skb, 300 u32 layer2_priority, bool wmm_enabled, 301 u8 *ac) 302 { 303 struct wmi_data_hdr *data_hdr; 304 struct ath6kl_llc_snap_hdr *llc_hdr; 305 struct wmi_create_pstream_cmd cmd; 306 u32 meta_size, hdr_size; 307 u16 ip_type = IP_ETHERTYPE; 308 u8 stream_exist, usr_pri; 309 u8 traffic_class = WMM_AC_BE; 310 u8 *datap; 311 312 if (WARN_ON(skb == NULL)) 313 return -EINVAL; 314 315 datap = skb->data; 316 data_hdr = (struct wmi_data_hdr *) datap; 317 318 meta_size = ((le16_to_cpu(data_hdr->info2) >> WMI_DATA_HDR_META_SHIFT) & 319 WMI_DATA_HDR_META_MASK) ? WMI_MAX_TX_META_SZ : 0; 320 321 if (!wmm_enabled) { 322 /* If WMM is disabled all traffic goes as BE traffic */ 323 usr_pri = 0; 324 } else { 325 hdr_size = sizeof(struct ethhdr); 326 327 llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap + 328 sizeof(struct 329 wmi_data_hdr) + 330 meta_size + hdr_size); 331 332 if (llc_hdr->eth_type == htons(ip_type)) { 333 /* 334 * Extract the endpoint info from the TOS field 335 * in the IP header. 336 */ 337 usr_pri = 338 ath6kl_wmi_determine_user_priority(((u8 *) llc_hdr) + 339 sizeof(struct ath6kl_llc_snap_hdr), 340 layer2_priority); 341 } else { 342 usr_pri = layer2_priority & 0x7; 343 } 344 345 /* 346 * Queue the EAPOL frames in the same WMM_AC_VO queue 347 * as that of management frames. 348 */ 349 if (skb->protocol == cpu_to_be16(ETH_P_PAE)) 350 usr_pri = WMI_VOICE_USER_PRIORITY; 351 } 352 353 /* 354 * workaround for WMM S5 355 * 356 * FIXME: wmi->traffic_class is always 100 so this test doesn't 357 * make sense 358 */ 359 if ((wmi->traffic_class == WMM_AC_VI) && 360 ((usr_pri == 5) || (usr_pri == 4))) 361 usr_pri = 1; 362 363 /* Convert user priority to traffic class */ 364 traffic_class = up_to_ac[usr_pri & 0x7]; 365 366 wmi_data_hdr_set_up(data_hdr, usr_pri); 367 368 spin_lock_bh(&wmi->lock); 369 stream_exist = wmi->fat_pipe_exist; 370 spin_unlock_bh(&wmi->lock); 371 372 if (!(stream_exist & (1 << traffic_class))) { 373 memset(&cmd, 0, sizeof(cmd)); 374 cmd.traffic_class = traffic_class; 375 cmd.user_pri = usr_pri; 376 cmd.inactivity_int = 377 cpu_to_le32(WMI_IMPLICIT_PSTREAM_INACTIVITY_INT); 378 /* Implicit streams are created with TSID 0xFF */ 379 cmd.tsid = WMI_IMPLICIT_PSTREAM; 380 ath6kl_wmi_create_pstream_cmd(wmi, if_idx, &cmd); 381 } 382 383 *ac = traffic_class; 384 385 return 0; 386 } 387 388 int ath6kl_wmi_dot11_hdr_remove(struct wmi *wmi, struct sk_buff *skb) 389 { 390 struct ieee80211_hdr_3addr *pwh, wh; 391 struct ath6kl_llc_snap_hdr *llc_hdr; 392 struct ethhdr eth_hdr; 393 u32 hdr_size; 394 u8 *datap; 395 __le16 sub_type; 396 397 if (WARN_ON(skb == NULL)) 398 return -EINVAL; 399 400 datap = skb->data; 401 pwh = (struct ieee80211_hdr_3addr *) datap; 402 403 sub_type = pwh->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE); 404 405 memcpy((u8 *) &wh, datap, sizeof(struct ieee80211_hdr_3addr)); 406 407 /* Strip off the 802.11 header */ 408 if (sub_type == cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) { 409 hdr_size = roundup(sizeof(struct ieee80211_qos_hdr), 410 sizeof(u32)); 411 skb_pull(skb, hdr_size); 412 } else if (sub_type == cpu_to_le16(IEEE80211_STYPE_DATA)) { 413 skb_pull(skb, sizeof(struct ieee80211_hdr_3addr)); 414 } 415 416 datap = skb->data; 417 llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap); 418 419 memset(ð_hdr, 0, sizeof(eth_hdr)); 420 eth_hdr.h_proto = llc_hdr->eth_type; 421 422 switch ((le16_to_cpu(wh.frame_control)) & 423 (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) { 424 case IEEE80211_FCTL_TODS: 425 memcpy(eth_hdr.h_dest, wh.addr3, ETH_ALEN); 426 memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN); 427 break; 428 case IEEE80211_FCTL_FROMDS: 429 memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN); 430 memcpy(eth_hdr.h_source, wh.addr3, ETH_ALEN); 431 break; 432 case IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS: 433 break; 434 default: 435 memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN); 436 memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN); 437 break; 438 } 439 440 skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr)); 441 skb_push(skb, sizeof(eth_hdr)); 442 443 datap = skb->data; 444 445 memcpy(datap, ð_hdr, sizeof(eth_hdr)); 446 447 return 0; 448 } 449 450 /* 451 * Performs 802.3 to DIX encapsulation for received packets. 452 * Assumes the entire 802.3 header is contiguous. 453 */ 454 int ath6kl_wmi_dot3_2_dix(struct sk_buff *skb) 455 { 456 struct ath6kl_llc_snap_hdr *llc_hdr; 457 struct ethhdr eth_hdr; 458 u8 *datap; 459 460 if (WARN_ON(skb == NULL)) 461 return -EINVAL; 462 463 datap = skb->data; 464 465 memcpy(ð_hdr, datap, sizeof(eth_hdr)); 466 467 llc_hdr = (struct ath6kl_llc_snap_hdr *) (datap + sizeof(eth_hdr)); 468 eth_hdr.h_proto = llc_hdr->eth_type; 469 470 skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr)); 471 datap = skb->data; 472 473 memcpy(datap, ð_hdr, sizeof(eth_hdr)); 474 475 return 0; 476 } 477 478 static int ath6kl_wmi_tx_complete_event_rx(u8 *datap, int len) 479 { 480 struct tx_complete_msg_v1 *msg_v1; 481 struct wmi_tx_complete_event *evt; 482 int index; 483 u16 size; 484 485 evt = (struct wmi_tx_complete_event *) datap; 486 487 ath6kl_dbg(ATH6KL_DBG_WMI, "comp: %d %d %d\n", 488 evt->num_msg, evt->msg_len, evt->msg_type); 489 490 for (index = 0; index < evt->num_msg; index++) { 491 size = sizeof(struct wmi_tx_complete_event) + 492 (index * sizeof(struct tx_complete_msg_v1)); 493 msg_v1 = (struct tx_complete_msg_v1 *)(datap + size); 494 495 ath6kl_dbg(ATH6KL_DBG_WMI, "msg: %d %d %d %d\n", 496 msg_v1->status, msg_v1->pkt_id, 497 msg_v1->rate_idx, msg_v1->ack_failures); 498 } 499 500 return 0; 501 } 502 503 static int ath6kl_wmi_remain_on_chnl_event_rx(struct wmi *wmi, u8 *datap, 504 int len, struct ath6kl_vif *vif) 505 { 506 struct wmi_remain_on_chnl_event *ev; 507 u32 freq; 508 u32 dur; 509 struct ieee80211_channel *chan; 510 struct ath6kl *ar = wmi->parent_dev; 511 u32 id; 512 513 if (len < sizeof(*ev)) 514 return -EINVAL; 515 516 ev = (struct wmi_remain_on_chnl_event *) datap; 517 freq = le32_to_cpu(ev->freq); 518 dur = le32_to_cpu(ev->duration); 519 ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl: freq=%u dur=%u\n", 520 freq, dur); 521 chan = ieee80211_get_channel(ar->wiphy, freq); 522 if (!chan) { 523 ath6kl_dbg(ATH6KL_DBG_WMI, 524 "remain_on_chnl: Unknown channel (freq=%u)\n", 525 freq); 526 return -EINVAL; 527 } 528 id = vif->last_roc_id; 529 cfg80211_ready_on_channel(&vif->wdev, id, chan, 530 dur, GFP_ATOMIC); 531 532 return 0; 533 } 534 535 static int ath6kl_wmi_cancel_remain_on_chnl_event_rx(struct wmi *wmi, 536 u8 *datap, int len, 537 struct ath6kl_vif *vif) 538 { 539 struct wmi_cancel_remain_on_chnl_event *ev; 540 u32 freq; 541 u32 dur; 542 struct ieee80211_channel *chan; 543 struct ath6kl *ar = wmi->parent_dev; 544 u32 id; 545 546 if (len < sizeof(*ev)) 547 return -EINVAL; 548 549 ev = (struct wmi_cancel_remain_on_chnl_event *) datap; 550 freq = le32_to_cpu(ev->freq); 551 dur = le32_to_cpu(ev->duration); 552 ath6kl_dbg(ATH6KL_DBG_WMI, 553 "cancel_remain_on_chnl: freq=%u dur=%u status=%u\n", 554 freq, dur, ev->status); 555 chan = ieee80211_get_channel(ar->wiphy, freq); 556 if (!chan) { 557 ath6kl_dbg(ATH6KL_DBG_WMI, 558 "cancel_remain_on_chnl: Unknown channel (freq=%u)\n", 559 freq); 560 return -EINVAL; 561 } 562 if (vif->last_cancel_roc_id && 563 vif->last_cancel_roc_id + 1 == vif->last_roc_id) 564 id = vif->last_cancel_roc_id; /* event for cancel command */ 565 else 566 id = vif->last_roc_id; /* timeout on uncanceled r-o-c */ 567 vif->last_cancel_roc_id = 0; 568 cfg80211_remain_on_channel_expired(&vif->wdev, id, chan, GFP_ATOMIC); 569 570 return 0; 571 } 572 573 static int ath6kl_wmi_tx_status_event_rx(struct wmi *wmi, u8 *datap, int len, 574 struct ath6kl_vif *vif) 575 { 576 struct wmi_tx_status_event *ev; 577 u32 id; 578 579 if (len < sizeof(*ev)) 580 return -EINVAL; 581 582 ev = (struct wmi_tx_status_event *) datap; 583 id = le32_to_cpu(ev->id); 584 ath6kl_dbg(ATH6KL_DBG_WMI, "tx_status: id=%x ack_status=%u\n", 585 id, ev->ack_status); 586 if (wmi->last_mgmt_tx_frame) { 587 cfg80211_mgmt_tx_status(&vif->wdev, id, 588 wmi->last_mgmt_tx_frame, 589 wmi->last_mgmt_tx_frame_len, 590 !!ev->ack_status, GFP_ATOMIC); 591 kfree(wmi->last_mgmt_tx_frame); 592 wmi->last_mgmt_tx_frame = NULL; 593 wmi->last_mgmt_tx_frame_len = 0; 594 } 595 596 return 0; 597 } 598 599 static int ath6kl_wmi_rx_probe_req_event_rx(struct wmi *wmi, u8 *datap, int len, 600 struct ath6kl_vif *vif) 601 { 602 struct wmi_p2p_rx_probe_req_event *ev; 603 u32 freq; 604 u16 dlen; 605 606 if (len < sizeof(*ev)) 607 return -EINVAL; 608 609 ev = (struct wmi_p2p_rx_probe_req_event *) datap; 610 freq = le32_to_cpu(ev->freq); 611 dlen = le16_to_cpu(ev->len); 612 if (datap + len < ev->data + dlen) { 613 ath6kl_err("invalid wmi_p2p_rx_probe_req_event: len=%d dlen=%u\n", 614 len, dlen); 615 return -EINVAL; 616 } 617 ath6kl_dbg(ATH6KL_DBG_WMI, 618 "rx_probe_req: len=%u freq=%u probe_req_report=%d\n", 619 dlen, freq, vif->probe_req_report); 620 621 if (vif->probe_req_report || vif->nw_type == AP_NETWORK) 622 cfg80211_rx_mgmt(&vif->wdev, freq, 0, ev->data, dlen, 0); 623 624 return 0; 625 } 626 627 static int ath6kl_wmi_p2p_capabilities_event_rx(u8 *datap, int len) 628 { 629 struct wmi_p2p_capabilities_event *ev; 630 u16 dlen; 631 632 if (len < sizeof(*ev)) 633 return -EINVAL; 634 635 ev = (struct wmi_p2p_capabilities_event *) datap; 636 dlen = le16_to_cpu(ev->len); 637 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_capab: len=%u\n", dlen); 638 639 return 0; 640 } 641 642 static int ath6kl_wmi_rx_action_event_rx(struct wmi *wmi, u8 *datap, int len, 643 struct ath6kl_vif *vif) 644 { 645 struct wmi_rx_action_event *ev; 646 u32 freq; 647 u16 dlen; 648 649 if (len < sizeof(*ev)) 650 return -EINVAL; 651 652 ev = (struct wmi_rx_action_event *) datap; 653 freq = le32_to_cpu(ev->freq); 654 dlen = le16_to_cpu(ev->len); 655 if (datap + len < ev->data + dlen) { 656 ath6kl_err("invalid wmi_rx_action_event: len=%d dlen=%u\n", 657 len, dlen); 658 return -EINVAL; 659 } 660 ath6kl_dbg(ATH6KL_DBG_WMI, "rx_action: len=%u freq=%u\n", dlen, freq); 661 cfg80211_rx_mgmt(&vif->wdev, freq, 0, ev->data, dlen, 0); 662 663 return 0; 664 } 665 666 static int ath6kl_wmi_p2p_info_event_rx(u8 *datap, int len) 667 { 668 struct wmi_p2p_info_event *ev; 669 u32 flags; 670 u16 dlen; 671 672 if (len < sizeof(*ev)) 673 return -EINVAL; 674 675 ev = (struct wmi_p2p_info_event *) datap; 676 flags = le32_to_cpu(ev->info_req_flags); 677 dlen = le16_to_cpu(ev->len); 678 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: flags=%x len=%d\n", flags, dlen); 679 680 if (flags & P2P_FLAG_CAPABILITIES_REQ) { 681 struct wmi_p2p_capabilities *cap; 682 if (dlen < sizeof(*cap)) 683 return -EINVAL; 684 cap = (struct wmi_p2p_capabilities *) ev->data; 685 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: GO Power Save = %d\n", 686 cap->go_power_save); 687 } 688 689 if (flags & P2P_FLAG_MACADDR_REQ) { 690 struct wmi_p2p_macaddr *mac; 691 if (dlen < sizeof(*mac)) 692 return -EINVAL; 693 mac = (struct wmi_p2p_macaddr *) ev->data; 694 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: MAC Address = %pM\n", 695 mac->mac_addr); 696 } 697 698 if (flags & P2P_FLAG_HMODEL_REQ) { 699 struct wmi_p2p_hmodel *mod; 700 if (dlen < sizeof(*mod)) 701 return -EINVAL; 702 mod = (struct wmi_p2p_hmodel *) ev->data; 703 ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: P2P Model = %d (%s)\n", 704 mod->p2p_model, 705 mod->p2p_model ? "host" : "firmware"); 706 } 707 return 0; 708 } 709 710 static inline struct sk_buff *ath6kl_wmi_get_new_buf(u32 size) 711 { 712 struct sk_buff *skb; 713 714 skb = ath6kl_buf_alloc(size); 715 if (!skb) 716 return NULL; 717 718 skb_put(skb, size); 719 if (size) 720 memset(skb->data, 0, size); 721 722 return skb; 723 } 724 725 /* Send a "simple" wmi command -- one with no arguments */ 726 static int ath6kl_wmi_simple_cmd(struct wmi *wmi, u8 if_idx, 727 enum wmi_cmd_id cmd_id) 728 { 729 struct sk_buff *skb; 730 int ret; 731 732 skb = ath6kl_wmi_get_new_buf(0); 733 if (!skb) 734 return -ENOMEM; 735 736 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, cmd_id, NO_SYNC_WMIFLAG); 737 738 return ret; 739 } 740 741 static int ath6kl_wmi_ready_event_rx(struct wmi *wmi, u8 *datap, int len) 742 { 743 struct wmi_ready_event_2 *ev = (struct wmi_ready_event_2 *) datap; 744 745 if (len < sizeof(struct wmi_ready_event_2)) 746 return -EINVAL; 747 748 ath6kl_ready_event(wmi->parent_dev, ev->mac_addr, 749 le32_to_cpu(ev->sw_version), 750 le32_to_cpu(ev->abi_version), ev->phy_cap); 751 752 return 0; 753 } 754 755 /* 756 * Mechanism to modify the roaming behavior in the firmware. The lower rssi 757 * at which the station has to roam can be passed with 758 * WMI_SET_LRSSI_SCAN_PARAMS. Subtract 96 from RSSI to get the signal level 759 * in dBm. 760 */ 761 int ath6kl_wmi_set_roam_lrssi_cmd(struct wmi *wmi, u8 lrssi) 762 { 763 struct sk_buff *skb; 764 struct roam_ctrl_cmd *cmd; 765 766 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 767 if (!skb) 768 return -ENOMEM; 769 770 cmd = (struct roam_ctrl_cmd *) skb->data; 771 772 cmd->info.params.lrssi_scan_period = cpu_to_le16(DEF_LRSSI_SCAN_PERIOD); 773 cmd->info.params.lrssi_scan_threshold = a_cpu_to_sle16(lrssi + 774 DEF_SCAN_FOR_ROAM_INTVL); 775 cmd->info.params.lrssi_roam_threshold = a_cpu_to_sle16(lrssi); 776 cmd->info.params.roam_rssi_floor = DEF_LRSSI_ROAM_FLOOR; 777 cmd->roam_ctrl = WMI_SET_LRSSI_SCAN_PARAMS; 778 779 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID, 780 NO_SYNC_WMIFLAG); 781 } 782 783 int ath6kl_wmi_force_roam_cmd(struct wmi *wmi, const u8 *bssid) 784 { 785 struct sk_buff *skb; 786 struct roam_ctrl_cmd *cmd; 787 788 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 789 if (!skb) 790 return -ENOMEM; 791 792 cmd = (struct roam_ctrl_cmd *) skb->data; 793 794 memcpy(cmd->info.bssid, bssid, ETH_ALEN); 795 cmd->roam_ctrl = WMI_FORCE_ROAM; 796 797 ath6kl_dbg(ATH6KL_DBG_WMI, "force roam to %pM\n", bssid); 798 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID, 799 NO_SYNC_WMIFLAG); 800 } 801 802 int ath6kl_wmi_ap_set_beacon_intvl_cmd(struct wmi *wmi, u8 if_idx, 803 u32 beacon_intvl) 804 { 805 struct sk_buff *skb; 806 struct set_beacon_int_cmd *cmd; 807 808 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 809 if (!skb) 810 return -ENOMEM; 811 812 cmd = (struct set_beacon_int_cmd *) skb->data; 813 814 cmd->beacon_intvl = cpu_to_le32(beacon_intvl); 815 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, 816 WMI_SET_BEACON_INT_CMDID, NO_SYNC_WMIFLAG); 817 } 818 819 int ath6kl_wmi_ap_set_dtim_cmd(struct wmi *wmi, u8 if_idx, u32 dtim_period) 820 { 821 struct sk_buff *skb; 822 struct set_dtim_cmd *cmd; 823 824 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 825 if (!skb) 826 return -ENOMEM; 827 828 cmd = (struct set_dtim_cmd *) skb->data; 829 830 cmd->dtim_period = cpu_to_le32(dtim_period); 831 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, 832 WMI_AP_SET_DTIM_CMDID, NO_SYNC_WMIFLAG); 833 } 834 835 int ath6kl_wmi_set_roam_mode_cmd(struct wmi *wmi, enum wmi_roam_mode mode) 836 { 837 struct sk_buff *skb; 838 struct roam_ctrl_cmd *cmd; 839 840 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 841 if (!skb) 842 return -ENOMEM; 843 844 cmd = (struct roam_ctrl_cmd *) skb->data; 845 846 cmd->info.roam_mode = mode; 847 cmd->roam_ctrl = WMI_SET_ROAM_MODE; 848 849 ath6kl_dbg(ATH6KL_DBG_WMI, "set roam mode %d\n", mode); 850 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID, 851 NO_SYNC_WMIFLAG); 852 } 853 854 static int ath6kl_wmi_connect_event_rx(struct wmi *wmi, u8 *datap, int len, 855 struct ath6kl_vif *vif) 856 { 857 struct wmi_connect_event *ev; 858 u8 *pie, *peie; 859 860 if (len < sizeof(struct wmi_connect_event)) 861 return -EINVAL; 862 863 ev = (struct wmi_connect_event *) datap; 864 865 if (vif->nw_type == AP_NETWORK) { 866 /* AP mode start/STA connected event */ 867 struct net_device *dev = vif->ndev; 868 if (memcmp(dev->dev_addr, ev->u.ap_bss.bssid, ETH_ALEN) == 0) { 869 ath6kl_dbg(ATH6KL_DBG_WMI, 870 "%s: freq %d bssid %pM (AP started)\n", 871 __func__, le16_to_cpu(ev->u.ap_bss.ch), 872 ev->u.ap_bss.bssid); 873 ath6kl_connect_ap_mode_bss( 874 vif, le16_to_cpu(ev->u.ap_bss.ch)); 875 } else { 876 ath6kl_dbg(ATH6KL_DBG_WMI, 877 "%s: aid %u mac_addr %pM auth=%u keymgmt=%u cipher=%u apsd_info=%u (STA connected)\n", 878 __func__, ev->u.ap_sta.aid, 879 ev->u.ap_sta.mac_addr, 880 ev->u.ap_sta.auth, 881 ev->u.ap_sta.keymgmt, 882 le16_to_cpu(ev->u.ap_sta.cipher), 883 ev->u.ap_sta.apsd_info); 884 885 ath6kl_connect_ap_mode_sta( 886 vif, ev->u.ap_sta.aid, ev->u.ap_sta.mac_addr, 887 ev->u.ap_sta.keymgmt, 888 le16_to_cpu(ev->u.ap_sta.cipher), 889 ev->u.ap_sta.auth, ev->assoc_req_len, 890 ev->assoc_info + ev->beacon_ie_len, 891 ev->u.ap_sta.apsd_info); 892 } 893 return 0; 894 } 895 896 /* STA/IBSS mode connection event */ 897 898 ath6kl_dbg(ATH6KL_DBG_WMI, 899 "wmi event connect freq %d bssid %pM listen_intvl %d beacon_intvl %d type %d\n", 900 le16_to_cpu(ev->u.sta.ch), ev->u.sta.bssid, 901 le16_to_cpu(ev->u.sta.listen_intvl), 902 le16_to_cpu(ev->u.sta.beacon_intvl), 903 le32_to_cpu(ev->u.sta.nw_type)); 904 905 /* Start of assoc rsp IEs */ 906 pie = ev->assoc_info + ev->beacon_ie_len + 907 ev->assoc_req_len + (sizeof(u16) * 3); /* capinfo, status, aid */ 908 909 /* End of assoc rsp IEs */ 910 peie = ev->assoc_info + ev->beacon_ie_len + ev->assoc_req_len + 911 ev->assoc_resp_len; 912 913 while (pie < peie) { 914 switch (*pie) { 915 case WLAN_EID_VENDOR_SPECIFIC: 916 if (pie[1] > 3 && pie[2] == 0x00 && pie[3] == 0x50 && 917 pie[4] == 0xf2 && pie[5] == WMM_OUI_TYPE) { 918 /* WMM OUT (00:50:F2) */ 919 if (pie[1] > 5 && 920 pie[6] == WMM_PARAM_OUI_SUBTYPE) 921 wmi->is_wmm_enabled = true; 922 } 923 break; 924 } 925 926 if (wmi->is_wmm_enabled) 927 break; 928 929 pie += pie[1] + 2; 930 } 931 932 ath6kl_connect_event(vif, le16_to_cpu(ev->u.sta.ch), 933 ev->u.sta.bssid, 934 le16_to_cpu(ev->u.sta.listen_intvl), 935 le16_to_cpu(ev->u.sta.beacon_intvl), 936 le32_to_cpu(ev->u.sta.nw_type), 937 ev->beacon_ie_len, ev->assoc_req_len, 938 ev->assoc_resp_len, ev->assoc_info); 939 940 return 0; 941 } 942 943 static struct country_code_to_enum_rd * 944 ath6kl_regd_find_country(u16 countryCode) 945 { 946 int i; 947 948 for (i = 0; i < ARRAY_SIZE(allCountries); i++) { 949 if (allCountries[i].countryCode == countryCode) 950 return &allCountries[i]; 951 } 952 953 return NULL; 954 } 955 956 static struct reg_dmn_pair_mapping * 957 ath6kl_get_regpair(u16 regdmn) 958 { 959 int i; 960 961 if (regdmn == NO_ENUMRD) 962 return NULL; 963 964 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) { 965 if (regDomainPairs[i].reg_domain == regdmn) 966 return ®DomainPairs[i]; 967 } 968 969 return NULL; 970 } 971 972 static struct country_code_to_enum_rd * 973 ath6kl_regd_find_country_by_rd(u16 regdmn) 974 { 975 int i; 976 977 for (i = 0; i < ARRAY_SIZE(allCountries); i++) { 978 if (allCountries[i].regDmnEnum == regdmn) 979 return &allCountries[i]; 980 } 981 982 return NULL; 983 } 984 985 static void ath6kl_wmi_regdomain_event(struct wmi *wmi, u8 *datap, int len) 986 { 987 struct ath6kl_wmi_regdomain *ev; 988 struct country_code_to_enum_rd *country = NULL; 989 struct reg_dmn_pair_mapping *regpair = NULL; 990 char alpha2[2]; 991 u32 reg_code; 992 993 ev = (struct ath6kl_wmi_regdomain *) datap; 994 reg_code = le32_to_cpu(ev->reg_code); 995 996 if ((reg_code >> ATH6KL_COUNTRY_RD_SHIFT) & COUNTRY_ERD_FLAG) { 997 country = ath6kl_regd_find_country((u16) reg_code); 998 } else if (!(((u16) reg_code & WORLD_SKU_MASK) == WORLD_SKU_PREFIX)) { 999 regpair = ath6kl_get_regpair((u16) reg_code); 1000 country = ath6kl_regd_find_country_by_rd((u16) reg_code); 1001 if (regpair) 1002 ath6kl_dbg(ATH6KL_DBG_WMI, "Regpair used: 0x%0x\n", 1003 regpair->reg_domain); 1004 else 1005 ath6kl_warn("Regpair not found reg_code 0x%0x\n", 1006 reg_code); 1007 } 1008 1009 if (country && wmi->parent_dev->wiphy_registered) { 1010 alpha2[0] = country->isoName[0]; 1011 alpha2[1] = country->isoName[1]; 1012 1013 regulatory_hint(wmi->parent_dev->wiphy, alpha2); 1014 1015 ath6kl_dbg(ATH6KL_DBG_WMI, "Country alpha2 being used: %c%c\n", 1016 alpha2[0], alpha2[1]); 1017 } 1018 } 1019 1020 static int ath6kl_wmi_disconnect_event_rx(struct wmi *wmi, u8 *datap, int len, 1021 struct ath6kl_vif *vif) 1022 { 1023 struct wmi_disconnect_event *ev; 1024 wmi->traffic_class = 100; 1025 1026 if (len < sizeof(struct wmi_disconnect_event)) 1027 return -EINVAL; 1028 1029 ev = (struct wmi_disconnect_event *) datap; 1030 1031 ath6kl_dbg(ATH6KL_DBG_WMI, 1032 "wmi event disconnect proto_reason %d bssid %pM wmi_reason %d assoc_resp_len %d\n", 1033 le16_to_cpu(ev->proto_reason_status), ev->bssid, 1034 ev->disconn_reason, ev->assoc_resp_len); 1035 1036 wmi->is_wmm_enabled = false; 1037 1038 ath6kl_disconnect_event(vif, ev->disconn_reason, 1039 ev->bssid, ev->assoc_resp_len, ev->assoc_info, 1040 le16_to_cpu(ev->proto_reason_status)); 1041 1042 return 0; 1043 } 1044 1045 static int ath6kl_wmi_peer_node_event_rx(struct wmi *wmi, u8 *datap, int len) 1046 { 1047 struct wmi_peer_node_event *ev; 1048 1049 if (len < sizeof(struct wmi_peer_node_event)) 1050 return -EINVAL; 1051 1052 ev = (struct wmi_peer_node_event *) datap; 1053 1054 if (ev->event_code == PEER_NODE_JOIN_EVENT) 1055 ath6kl_dbg(ATH6KL_DBG_WMI, "joined node with mac addr: %pM\n", 1056 ev->peer_mac_addr); 1057 else if (ev->event_code == PEER_NODE_LEAVE_EVENT) 1058 ath6kl_dbg(ATH6KL_DBG_WMI, "left node with mac addr: %pM\n", 1059 ev->peer_mac_addr); 1060 1061 return 0; 1062 } 1063 1064 static int ath6kl_wmi_tkip_micerr_event_rx(struct wmi *wmi, u8 *datap, int len, 1065 struct ath6kl_vif *vif) 1066 { 1067 struct wmi_tkip_micerr_event *ev; 1068 1069 if (len < sizeof(struct wmi_tkip_micerr_event)) 1070 return -EINVAL; 1071 1072 ev = (struct wmi_tkip_micerr_event *) datap; 1073 1074 ath6kl_tkip_micerr_event(vif, ev->key_id, ev->is_mcast); 1075 1076 return 0; 1077 } 1078 1079 void ath6kl_wmi_sscan_timer(struct timer_list *t) 1080 { 1081 struct ath6kl_vif *vif = from_timer(vif, t, sched_scan_timer); 1082 1083 cfg80211_sched_scan_results(vif->ar->wiphy, 0); 1084 } 1085 1086 static int ath6kl_wmi_bssinfo_event_rx(struct wmi *wmi, u8 *datap, int len, 1087 struct ath6kl_vif *vif) 1088 { 1089 struct wmi_bss_info_hdr2 *bih; 1090 u8 *buf; 1091 struct ieee80211_channel *channel; 1092 struct ath6kl *ar = wmi->parent_dev; 1093 struct cfg80211_bss *bss; 1094 1095 if (len <= sizeof(struct wmi_bss_info_hdr2)) 1096 return -EINVAL; 1097 1098 bih = (struct wmi_bss_info_hdr2 *) datap; 1099 buf = datap + sizeof(struct wmi_bss_info_hdr2); 1100 len -= sizeof(struct wmi_bss_info_hdr2); 1101 1102 ath6kl_dbg(ATH6KL_DBG_WMI, 1103 "bss info evt - ch %u, snr %d, rssi %d, bssid \"%pM\" " 1104 "frame_type=%d\n", 1105 bih->ch, bih->snr, bih->snr - 95, bih->bssid, 1106 bih->frame_type); 1107 1108 if (bih->frame_type != BEACON_FTYPE && 1109 bih->frame_type != PROBERESP_FTYPE) 1110 return 0; /* Only update BSS table for now */ 1111 1112 if (bih->frame_type == BEACON_FTYPE && 1113 test_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags)) { 1114 clear_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags); 1115 ath6kl_wmi_bssfilter_cmd(ar->wmi, vif->fw_vif_idx, 1116 NONE_BSS_FILTER, 0); 1117 } 1118 1119 channel = ieee80211_get_channel(ar->wiphy, le16_to_cpu(bih->ch)); 1120 if (channel == NULL) 1121 return -EINVAL; 1122 1123 if (len < 8 + 2 + 2) 1124 return -EINVAL; 1125 1126 if (bih->frame_type == BEACON_FTYPE && 1127 test_bit(CONNECTED, &vif->flags) && 1128 memcmp(bih->bssid, vif->bssid, ETH_ALEN) == 0) { 1129 const u8 *tim; 1130 tim = cfg80211_find_ie(WLAN_EID_TIM, buf + 8 + 2 + 2, 1131 len - 8 - 2 - 2); 1132 if (tim && tim[1] >= 2) { 1133 vif->assoc_bss_dtim_period = tim[3]; 1134 set_bit(DTIM_PERIOD_AVAIL, &vif->flags); 1135 } 1136 } 1137 1138 bss = cfg80211_inform_bss(ar->wiphy, channel, 1139 bih->frame_type == BEACON_FTYPE ? 1140 CFG80211_BSS_FTYPE_BEACON : 1141 CFG80211_BSS_FTYPE_PRESP, 1142 bih->bssid, get_unaligned_le64((__le64 *)buf), 1143 get_unaligned_le16(((__le16 *)buf) + 5), 1144 get_unaligned_le16(((__le16 *)buf) + 4), 1145 buf + 8 + 2 + 2, len - 8 - 2 - 2, 1146 (bih->snr - 95) * 100, GFP_ATOMIC); 1147 if (bss == NULL) 1148 return -ENOMEM; 1149 cfg80211_put_bss(ar->wiphy, bss); 1150 1151 /* 1152 * Firmware doesn't return any event when scheduled scan has 1153 * finished, so we need to use a timer to find out when there are 1154 * no more results. 1155 * 1156 * The timer is started from the first bss info received, otherwise 1157 * the timer would not ever fire if the scan interval is short 1158 * enough. 1159 */ 1160 if (test_bit(SCHED_SCANNING, &vif->flags) && 1161 !timer_pending(&vif->sched_scan_timer)) { 1162 mod_timer(&vif->sched_scan_timer, jiffies + 1163 msecs_to_jiffies(ATH6KL_SCHED_SCAN_RESULT_DELAY)); 1164 } 1165 1166 return 0; 1167 } 1168 1169 /* Inactivity timeout of a fatpipe(pstream) at the target */ 1170 static int ath6kl_wmi_pstream_timeout_event_rx(struct wmi *wmi, u8 *datap, 1171 int len) 1172 { 1173 struct wmi_pstream_timeout_event *ev; 1174 1175 if (len < sizeof(struct wmi_pstream_timeout_event)) 1176 return -EINVAL; 1177 1178 ev = (struct wmi_pstream_timeout_event *) datap; 1179 if (ev->traffic_class >= WMM_NUM_AC) { 1180 ath6kl_err("invalid traffic class: %d\n", ev->traffic_class); 1181 return -EINVAL; 1182 } 1183 1184 /* 1185 * When the pstream (fat pipe == AC) timesout, it means there were 1186 * no thinStreams within this pstream & it got implicitly created 1187 * due to data flow on this AC. We start the inactivity timer only 1188 * for implicitly created pstream. Just reset the host state. 1189 */ 1190 spin_lock_bh(&wmi->lock); 1191 wmi->stream_exist_for_ac[ev->traffic_class] = 0; 1192 wmi->fat_pipe_exist &= ~(1 << ev->traffic_class); 1193 spin_unlock_bh(&wmi->lock); 1194 1195 /* Indicate inactivity to driver layer for this fatpipe (pstream) */ 1196 ath6kl_indicate_tx_activity(wmi->parent_dev, ev->traffic_class, false); 1197 1198 return 0; 1199 } 1200 1201 static int ath6kl_wmi_bitrate_reply_rx(struct wmi *wmi, u8 *datap, int len) 1202 { 1203 struct wmi_bit_rate_reply *reply; 1204 u32 index; 1205 1206 if (len < sizeof(struct wmi_bit_rate_reply)) 1207 return -EINVAL; 1208 1209 reply = (struct wmi_bit_rate_reply *) datap; 1210 1211 ath6kl_dbg(ATH6KL_DBG_WMI, "rateindex %d\n", reply->rate_index); 1212 1213 if (reply->rate_index != (s8) RATE_AUTO) { 1214 index = reply->rate_index & 0x7f; 1215 if (WARN_ON_ONCE(index > (RATE_MCS_7_40 + 1))) 1216 return -EINVAL; 1217 } 1218 1219 ath6kl_wakeup_event(wmi->parent_dev); 1220 1221 return 0; 1222 } 1223 1224 static int ath6kl_wmi_test_rx(struct wmi *wmi, u8 *datap, int len) 1225 { 1226 ath6kl_tm_rx_event(wmi->parent_dev, datap, len); 1227 1228 return 0; 1229 } 1230 1231 static int ath6kl_wmi_ratemask_reply_rx(struct wmi *wmi, u8 *datap, int len) 1232 { 1233 if (len < sizeof(struct wmi_fix_rates_reply)) 1234 return -EINVAL; 1235 1236 ath6kl_wakeup_event(wmi->parent_dev); 1237 1238 return 0; 1239 } 1240 1241 static int ath6kl_wmi_ch_list_reply_rx(struct wmi *wmi, u8 *datap, int len) 1242 { 1243 if (len < sizeof(struct wmi_channel_list_reply)) 1244 return -EINVAL; 1245 1246 ath6kl_wakeup_event(wmi->parent_dev); 1247 1248 return 0; 1249 } 1250 1251 static int ath6kl_wmi_tx_pwr_reply_rx(struct wmi *wmi, u8 *datap, int len) 1252 { 1253 struct wmi_tx_pwr_reply *reply; 1254 1255 if (len < sizeof(struct wmi_tx_pwr_reply)) 1256 return -EINVAL; 1257 1258 reply = (struct wmi_tx_pwr_reply *) datap; 1259 ath6kl_txpwr_rx_evt(wmi->parent_dev, reply->dbM); 1260 1261 return 0; 1262 } 1263 1264 static int ath6kl_wmi_keepalive_reply_rx(struct wmi *wmi, u8 *datap, int len) 1265 { 1266 if (len < sizeof(struct wmi_get_keepalive_cmd)) 1267 return -EINVAL; 1268 1269 ath6kl_wakeup_event(wmi->parent_dev); 1270 1271 return 0; 1272 } 1273 1274 static int ath6kl_wmi_scan_complete_rx(struct wmi *wmi, u8 *datap, int len, 1275 struct ath6kl_vif *vif) 1276 { 1277 struct wmi_scan_complete_event *ev; 1278 1279 ev = (struct wmi_scan_complete_event *) datap; 1280 1281 ath6kl_scan_complete_evt(vif, a_sle32_to_cpu(ev->status)); 1282 wmi->is_probe_ssid = false; 1283 1284 return 0; 1285 } 1286 1287 static int ath6kl_wmi_neighbor_report_event_rx(struct wmi *wmi, u8 *datap, 1288 int len, struct ath6kl_vif *vif) 1289 { 1290 struct wmi_neighbor_report_event *ev; 1291 u8 i; 1292 1293 if (len < sizeof(*ev)) 1294 return -EINVAL; 1295 ev = (struct wmi_neighbor_report_event *) datap; 1296 if (struct_size(ev, neighbor, ev->num_neighbors) > len) { 1297 ath6kl_dbg(ATH6KL_DBG_WMI, 1298 "truncated neighbor event (num=%d len=%d)\n", 1299 ev->num_neighbors, len); 1300 return -EINVAL; 1301 } 1302 for (i = 0; i < ev->num_neighbors; i++) { 1303 ath6kl_dbg(ATH6KL_DBG_WMI, "neighbor %d/%d - %pM 0x%x\n", 1304 i + 1, ev->num_neighbors, ev->neighbor[i].bssid, 1305 ev->neighbor[i].bss_flags); 1306 cfg80211_pmksa_candidate_notify(vif->ndev, i, 1307 ev->neighbor[i].bssid, 1308 !!(ev->neighbor[i].bss_flags & 1309 WMI_PREAUTH_CAPABLE_BSS), 1310 GFP_ATOMIC); 1311 } 1312 1313 return 0; 1314 } 1315 1316 /* 1317 * Target is reporting a programming error. This is for 1318 * developer aid only. Target only checks a few common violations 1319 * and it is responsibility of host to do all error checking. 1320 * Behavior of target after wmi error event is undefined. 1321 * A reset is recommended. 1322 */ 1323 static int ath6kl_wmi_error_event_rx(struct wmi *wmi, u8 *datap, int len) 1324 { 1325 const char *type = "unknown error"; 1326 struct wmi_cmd_error_event *ev; 1327 ev = (struct wmi_cmd_error_event *) datap; 1328 1329 switch (ev->err_code) { 1330 case INVALID_PARAM: 1331 type = "invalid parameter"; 1332 break; 1333 case ILLEGAL_STATE: 1334 type = "invalid state"; 1335 break; 1336 case INTERNAL_ERROR: 1337 type = "internal error"; 1338 break; 1339 } 1340 1341 ath6kl_dbg(ATH6KL_DBG_WMI, "programming error, cmd=%d %s\n", 1342 ev->cmd_id, type); 1343 1344 return 0; 1345 } 1346 1347 static int ath6kl_wmi_stats_event_rx(struct wmi *wmi, u8 *datap, int len, 1348 struct ath6kl_vif *vif) 1349 { 1350 ath6kl_tgt_stats_event(vif, datap, len); 1351 1352 return 0; 1353 } 1354 1355 static u8 ath6kl_wmi_get_upper_threshold(s16 rssi, 1356 struct sq_threshold_params *sq_thresh, 1357 u32 size) 1358 { 1359 u32 index; 1360 u8 threshold = (u8) sq_thresh->upper_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->upper_threshold[index]) { 1365 threshold = (u8) sq_thresh->upper_threshold[index]; 1366 break; 1367 } 1368 } 1369 1370 return threshold; 1371 } 1372 1373 static u8 ath6kl_wmi_get_lower_threshold(s16 rssi, 1374 struct sq_threshold_params *sq_thresh, 1375 u32 size) 1376 { 1377 u32 index; 1378 u8 threshold = (u8) sq_thresh->lower_threshold[size - 1]; 1379 1380 /* The list is already in sorted order. Get the next lower value */ 1381 for (index = 0; index < size; index++) { 1382 if (rssi > sq_thresh->lower_threshold[index]) { 1383 threshold = (u8) sq_thresh->lower_threshold[index]; 1384 break; 1385 } 1386 } 1387 1388 return threshold; 1389 } 1390 1391 static int ath6kl_wmi_send_rssi_threshold_params(struct wmi *wmi, 1392 struct wmi_rssi_threshold_params_cmd *rssi_cmd) 1393 { 1394 struct sk_buff *skb; 1395 struct wmi_rssi_threshold_params_cmd *cmd; 1396 1397 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 1398 if (!skb) 1399 return -ENOMEM; 1400 1401 cmd = (struct wmi_rssi_threshold_params_cmd *) skb->data; 1402 memcpy(cmd, rssi_cmd, sizeof(struct wmi_rssi_threshold_params_cmd)); 1403 1404 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_RSSI_THRESHOLD_PARAMS_CMDID, 1405 NO_SYNC_WMIFLAG); 1406 } 1407 1408 static int ath6kl_wmi_rssi_threshold_event_rx(struct wmi *wmi, u8 *datap, 1409 int len) 1410 { 1411 struct wmi_rssi_threshold_event *reply; 1412 struct wmi_rssi_threshold_params_cmd cmd; 1413 struct sq_threshold_params *sq_thresh; 1414 enum wmi_rssi_threshold_val new_threshold; 1415 u8 upper_rssi_threshold, lower_rssi_threshold; 1416 s16 rssi; 1417 int ret; 1418 1419 if (len < sizeof(struct wmi_rssi_threshold_event)) 1420 return -EINVAL; 1421 1422 reply = (struct wmi_rssi_threshold_event *) datap; 1423 new_threshold = (enum wmi_rssi_threshold_val) reply->range; 1424 rssi = a_sle16_to_cpu(reply->rssi); 1425 1426 sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_RSSI]; 1427 1428 /* 1429 * Identify the threshold breached and communicate that to the app. 1430 * After that install a new set of thresholds based on the signal 1431 * quality reported by the target 1432 */ 1433 if (new_threshold) { 1434 /* Upper threshold breached */ 1435 if (rssi < sq_thresh->upper_threshold[0]) { 1436 ath6kl_dbg(ATH6KL_DBG_WMI, 1437 "spurious upper rssi threshold event: %d\n", 1438 rssi); 1439 } else if ((rssi < sq_thresh->upper_threshold[1]) && 1440 (rssi >= sq_thresh->upper_threshold[0])) { 1441 new_threshold = WMI_RSSI_THRESHOLD1_ABOVE; 1442 } else if ((rssi < sq_thresh->upper_threshold[2]) && 1443 (rssi >= sq_thresh->upper_threshold[1])) { 1444 new_threshold = WMI_RSSI_THRESHOLD2_ABOVE; 1445 } else if ((rssi < sq_thresh->upper_threshold[3]) && 1446 (rssi >= sq_thresh->upper_threshold[2])) { 1447 new_threshold = WMI_RSSI_THRESHOLD3_ABOVE; 1448 } else if ((rssi < sq_thresh->upper_threshold[4]) && 1449 (rssi >= sq_thresh->upper_threshold[3])) { 1450 new_threshold = WMI_RSSI_THRESHOLD4_ABOVE; 1451 } else if ((rssi < sq_thresh->upper_threshold[5]) && 1452 (rssi >= sq_thresh->upper_threshold[4])) { 1453 new_threshold = WMI_RSSI_THRESHOLD5_ABOVE; 1454 } else if (rssi >= sq_thresh->upper_threshold[5]) { 1455 new_threshold = WMI_RSSI_THRESHOLD6_ABOVE; 1456 } 1457 } else { 1458 /* Lower threshold breached */ 1459 if (rssi > sq_thresh->lower_threshold[0]) { 1460 ath6kl_dbg(ATH6KL_DBG_WMI, 1461 "spurious lower rssi threshold event: %d %d\n", 1462 rssi, sq_thresh->lower_threshold[0]); 1463 } else if ((rssi > sq_thresh->lower_threshold[1]) && 1464 (rssi <= sq_thresh->lower_threshold[0])) { 1465 new_threshold = WMI_RSSI_THRESHOLD6_BELOW; 1466 } else if ((rssi > sq_thresh->lower_threshold[2]) && 1467 (rssi <= sq_thresh->lower_threshold[1])) { 1468 new_threshold = WMI_RSSI_THRESHOLD5_BELOW; 1469 } else if ((rssi > sq_thresh->lower_threshold[3]) && 1470 (rssi <= sq_thresh->lower_threshold[2])) { 1471 new_threshold = WMI_RSSI_THRESHOLD4_BELOW; 1472 } else if ((rssi > sq_thresh->lower_threshold[4]) && 1473 (rssi <= sq_thresh->lower_threshold[3])) { 1474 new_threshold = WMI_RSSI_THRESHOLD3_BELOW; 1475 } else if ((rssi > sq_thresh->lower_threshold[5]) && 1476 (rssi <= sq_thresh->lower_threshold[4])) { 1477 new_threshold = WMI_RSSI_THRESHOLD2_BELOW; 1478 } else if (rssi <= sq_thresh->lower_threshold[5]) { 1479 new_threshold = WMI_RSSI_THRESHOLD1_BELOW; 1480 } 1481 } 1482 1483 /* Calculate and install the next set of thresholds */ 1484 lower_rssi_threshold = ath6kl_wmi_get_lower_threshold(rssi, sq_thresh, 1485 sq_thresh->lower_threshold_valid_count); 1486 upper_rssi_threshold = ath6kl_wmi_get_upper_threshold(rssi, sq_thresh, 1487 sq_thresh->upper_threshold_valid_count); 1488 1489 /* Issue a wmi command to install the thresholds */ 1490 cmd.thresh_above1_val = a_cpu_to_sle16(upper_rssi_threshold); 1491 cmd.thresh_below1_val = a_cpu_to_sle16(lower_rssi_threshold); 1492 cmd.weight = sq_thresh->weight; 1493 cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval); 1494 1495 ret = ath6kl_wmi_send_rssi_threshold_params(wmi, &cmd); 1496 if (ret) { 1497 ath6kl_err("unable to configure rssi thresholds\n"); 1498 return -EIO; 1499 } 1500 1501 return 0; 1502 } 1503 1504 static int ath6kl_wmi_cac_event_rx(struct wmi *wmi, u8 *datap, int len, 1505 struct ath6kl_vif *vif) 1506 { 1507 struct wmi_cac_event *reply; 1508 struct ieee80211_tspec_ie *ts; 1509 u16 active_tsids, tsinfo; 1510 u8 tsid, index; 1511 u8 ts_id; 1512 1513 if (len < sizeof(struct wmi_cac_event)) 1514 return -EINVAL; 1515 1516 reply = (struct wmi_cac_event *) datap; 1517 if (reply->ac >= WMM_NUM_AC) { 1518 ath6kl_err("invalid AC: %d\n", reply->ac); 1519 return -EINVAL; 1520 } 1521 1522 if ((reply->cac_indication == CAC_INDICATION_ADMISSION_RESP) && 1523 (reply->status_code != IEEE80211_TSPEC_STATUS_ADMISS_ACCEPTED)) { 1524 ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion); 1525 tsinfo = le16_to_cpu(ts->tsinfo); 1526 tsid = (tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) & 1527 IEEE80211_WMM_IE_TSPEC_TID_MASK; 1528 1529 ath6kl_wmi_delete_pstream_cmd(wmi, vif->fw_vif_idx, 1530 reply->ac, tsid); 1531 } else if (reply->cac_indication == CAC_INDICATION_NO_RESP) { 1532 /* 1533 * Following assumes that there is only one outstanding 1534 * ADDTS request when this event is received 1535 */ 1536 spin_lock_bh(&wmi->lock); 1537 active_tsids = wmi->stream_exist_for_ac[reply->ac]; 1538 spin_unlock_bh(&wmi->lock); 1539 1540 for (index = 0; index < sizeof(active_tsids) * 8; index++) { 1541 if ((active_tsids >> index) & 1) 1542 break; 1543 } 1544 if (index < (sizeof(active_tsids) * 8)) 1545 ath6kl_wmi_delete_pstream_cmd(wmi, vif->fw_vif_idx, 1546 reply->ac, index); 1547 } 1548 1549 /* 1550 * Clear active tsids and Add missing handling 1551 * for delete qos stream from AP 1552 */ 1553 else if (reply->cac_indication == CAC_INDICATION_DELETE) { 1554 ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion); 1555 tsinfo = le16_to_cpu(ts->tsinfo); 1556 ts_id = ((tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) & 1557 IEEE80211_WMM_IE_TSPEC_TID_MASK); 1558 1559 spin_lock_bh(&wmi->lock); 1560 wmi->stream_exist_for_ac[reply->ac] &= ~(1 << ts_id); 1561 active_tsids = wmi->stream_exist_for_ac[reply->ac]; 1562 spin_unlock_bh(&wmi->lock); 1563 1564 /* Indicate stream inactivity to driver layer only if all tsids 1565 * within this AC are deleted. 1566 */ 1567 if (!active_tsids) { 1568 ath6kl_indicate_tx_activity(wmi->parent_dev, reply->ac, 1569 false); 1570 wmi->fat_pipe_exist &= ~(1 << reply->ac); 1571 } 1572 } 1573 1574 return 0; 1575 } 1576 1577 static int ath6kl_wmi_txe_notify_event_rx(struct wmi *wmi, u8 *datap, int len, 1578 struct ath6kl_vif *vif) 1579 { 1580 struct wmi_txe_notify_event *ev; 1581 u32 rate, pkts; 1582 1583 if (len < sizeof(*ev)) 1584 return -EINVAL; 1585 1586 if (vif->nw_type != INFRA_NETWORK || 1587 !test_bit(ATH6KL_FW_CAPABILITY_TX_ERR_NOTIFY, 1588 vif->ar->fw_capabilities)) 1589 return -EOPNOTSUPP; 1590 1591 if (vif->sme_state != SME_CONNECTED) 1592 return -ENOTCONN; 1593 1594 ev = (struct wmi_txe_notify_event *) datap; 1595 rate = le32_to_cpu(ev->rate); 1596 pkts = le32_to_cpu(ev->pkts); 1597 1598 ath6kl_dbg(ATH6KL_DBG_WMI, "TXE notify event: peer %pM rate %d%% pkts %d intvl %ds\n", 1599 vif->bssid, rate, pkts, vif->txe_intvl); 1600 1601 cfg80211_cqm_txe_notify(vif->ndev, vif->bssid, pkts, 1602 rate, vif->txe_intvl, GFP_KERNEL); 1603 1604 return 0; 1605 } 1606 1607 int ath6kl_wmi_set_txe_notify(struct wmi *wmi, u8 idx, 1608 u32 rate, u32 pkts, u32 intvl) 1609 { 1610 struct sk_buff *skb; 1611 struct wmi_txe_notify_cmd *cmd; 1612 1613 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 1614 if (!skb) 1615 return -ENOMEM; 1616 1617 cmd = (struct wmi_txe_notify_cmd *) skb->data; 1618 cmd->rate = cpu_to_le32(rate); 1619 cmd->pkts = cpu_to_le32(pkts); 1620 cmd->intvl = cpu_to_le32(intvl); 1621 1622 return ath6kl_wmi_cmd_send(wmi, idx, skb, WMI_SET_TXE_NOTIFY_CMDID, 1623 NO_SYNC_WMIFLAG); 1624 } 1625 1626 int ath6kl_wmi_set_rssi_filter_cmd(struct wmi *wmi, u8 if_idx, s8 rssi) 1627 { 1628 struct sk_buff *skb; 1629 struct wmi_set_rssi_filter_cmd *cmd; 1630 int ret; 1631 1632 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 1633 if (!skb) 1634 return -ENOMEM; 1635 1636 cmd = (struct wmi_set_rssi_filter_cmd *) skb->data; 1637 cmd->rssi = rssi; 1638 1639 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_RSSI_FILTER_CMDID, 1640 NO_SYNC_WMIFLAG); 1641 return ret; 1642 } 1643 1644 static int ath6kl_wmi_send_snr_threshold_params(struct wmi *wmi, 1645 struct wmi_snr_threshold_params_cmd *snr_cmd) 1646 { 1647 struct sk_buff *skb; 1648 struct wmi_snr_threshold_params_cmd *cmd; 1649 1650 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 1651 if (!skb) 1652 return -ENOMEM; 1653 1654 cmd = (struct wmi_snr_threshold_params_cmd *) skb->data; 1655 memcpy(cmd, snr_cmd, sizeof(struct wmi_snr_threshold_params_cmd)); 1656 1657 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SNR_THRESHOLD_PARAMS_CMDID, 1658 NO_SYNC_WMIFLAG); 1659 } 1660 1661 static int ath6kl_wmi_snr_threshold_event_rx(struct wmi *wmi, u8 *datap, 1662 int len) 1663 { 1664 struct wmi_snr_threshold_event *reply; 1665 struct sq_threshold_params *sq_thresh; 1666 struct wmi_snr_threshold_params_cmd cmd; 1667 enum wmi_snr_threshold_val new_threshold; 1668 u8 upper_snr_threshold, lower_snr_threshold; 1669 s16 snr; 1670 int ret; 1671 1672 if (len < sizeof(struct wmi_snr_threshold_event)) 1673 return -EINVAL; 1674 1675 reply = (struct wmi_snr_threshold_event *) datap; 1676 1677 new_threshold = (enum wmi_snr_threshold_val) reply->range; 1678 snr = reply->snr; 1679 1680 sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_SNR]; 1681 1682 /* 1683 * Identify the threshold breached and communicate that to the app. 1684 * After that install a new set of thresholds based on the signal 1685 * quality reported by the target. 1686 */ 1687 if (new_threshold) { 1688 /* Upper threshold breached */ 1689 if (snr < sq_thresh->upper_threshold[0]) { 1690 ath6kl_dbg(ATH6KL_DBG_WMI, 1691 "spurious upper snr threshold event: %d\n", 1692 snr); 1693 } else if ((snr < sq_thresh->upper_threshold[1]) && 1694 (snr >= sq_thresh->upper_threshold[0])) { 1695 new_threshold = WMI_SNR_THRESHOLD1_ABOVE; 1696 } else if ((snr < sq_thresh->upper_threshold[2]) && 1697 (snr >= sq_thresh->upper_threshold[1])) { 1698 new_threshold = WMI_SNR_THRESHOLD2_ABOVE; 1699 } else if ((snr < sq_thresh->upper_threshold[3]) && 1700 (snr >= sq_thresh->upper_threshold[2])) { 1701 new_threshold = WMI_SNR_THRESHOLD3_ABOVE; 1702 } else if (snr >= sq_thresh->upper_threshold[3]) { 1703 new_threshold = WMI_SNR_THRESHOLD4_ABOVE; 1704 } 1705 } else { 1706 /* Lower threshold breached */ 1707 if (snr > sq_thresh->lower_threshold[0]) { 1708 ath6kl_dbg(ATH6KL_DBG_WMI, 1709 "spurious lower snr threshold event: %d\n", 1710 sq_thresh->lower_threshold[0]); 1711 } else if ((snr > sq_thresh->lower_threshold[1]) && 1712 (snr <= sq_thresh->lower_threshold[0])) { 1713 new_threshold = WMI_SNR_THRESHOLD4_BELOW; 1714 } else if ((snr > sq_thresh->lower_threshold[2]) && 1715 (snr <= sq_thresh->lower_threshold[1])) { 1716 new_threshold = WMI_SNR_THRESHOLD3_BELOW; 1717 } else if ((snr > sq_thresh->lower_threshold[3]) && 1718 (snr <= sq_thresh->lower_threshold[2])) { 1719 new_threshold = WMI_SNR_THRESHOLD2_BELOW; 1720 } else if (snr <= sq_thresh->lower_threshold[3]) { 1721 new_threshold = WMI_SNR_THRESHOLD1_BELOW; 1722 } 1723 } 1724 1725 /* Calculate and install the next set of thresholds */ 1726 lower_snr_threshold = ath6kl_wmi_get_lower_threshold(snr, sq_thresh, 1727 sq_thresh->lower_threshold_valid_count); 1728 upper_snr_threshold = ath6kl_wmi_get_upper_threshold(snr, sq_thresh, 1729 sq_thresh->upper_threshold_valid_count); 1730 1731 /* Issue a wmi command to install the thresholds */ 1732 cmd.thresh_above1_val = upper_snr_threshold; 1733 cmd.thresh_below1_val = lower_snr_threshold; 1734 cmd.weight = sq_thresh->weight; 1735 cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval); 1736 1737 ath6kl_dbg(ATH6KL_DBG_WMI, 1738 "snr: %d, threshold: %d, lower: %d, upper: %d\n", 1739 snr, new_threshold, 1740 lower_snr_threshold, upper_snr_threshold); 1741 1742 ret = ath6kl_wmi_send_snr_threshold_params(wmi, &cmd); 1743 if (ret) { 1744 ath6kl_err("unable to configure snr threshold\n"); 1745 return -EIO; 1746 } 1747 1748 return 0; 1749 } 1750 1751 static int ath6kl_wmi_aplist_event_rx(struct wmi *wmi, u8 *datap, int len) 1752 { 1753 u16 ap_info_entry_size; 1754 struct wmi_aplist_event *ev = (struct wmi_aplist_event *) datap; 1755 struct wmi_ap_info_v1 *ap_info_v1; 1756 u8 index; 1757 1758 if (len < sizeof(struct wmi_aplist_event) || 1759 ev->ap_list_ver != APLIST_VER1) 1760 return -EINVAL; 1761 1762 ap_info_entry_size = sizeof(struct wmi_ap_info_v1); 1763 ap_info_v1 = (struct wmi_ap_info_v1 *) ev->ap_list; 1764 1765 ath6kl_dbg(ATH6KL_DBG_WMI, 1766 "number of APs in aplist event: %d\n", ev->num_ap); 1767 1768 if (len < (int) (sizeof(struct wmi_aplist_event) + 1769 (ev->num_ap - 1) * ap_info_entry_size)) 1770 return -EINVAL; 1771 1772 /* AP list version 1 contents */ 1773 for (index = 0; index < ev->num_ap; index++) { 1774 ath6kl_dbg(ATH6KL_DBG_WMI, "AP#%d BSSID %pM Channel %d\n", 1775 index, ap_info_v1->bssid, ap_info_v1->channel); 1776 ap_info_v1++; 1777 } 1778 1779 return 0; 1780 } 1781 1782 int ath6kl_wmi_cmd_send(struct wmi *wmi, u8 if_idx, struct sk_buff *skb, 1783 enum wmi_cmd_id cmd_id, enum wmi_sync_flag sync_flag) 1784 { 1785 struct wmi_cmd_hdr *cmd_hdr; 1786 enum htc_endpoint_id ep_id = wmi->ep_id; 1787 int ret; 1788 u16 info1; 1789 1790 if (WARN_ON(skb == NULL || 1791 (if_idx > (wmi->parent_dev->vif_max - 1)))) { 1792 dev_kfree_skb(skb); 1793 return -EINVAL; 1794 } 1795 1796 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi tx id %d len %d flag %d\n", 1797 cmd_id, skb->len, sync_flag); 1798 ath6kl_dbg_dump(ATH6KL_DBG_WMI_DUMP, NULL, "wmi tx ", 1799 skb->data, skb->len); 1800 1801 if (sync_flag >= END_WMIFLAG) { 1802 dev_kfree_skb(skb); 1803 return -EINVAL; 1804 } 1805 1806 if ((sync_flag == SYNC_BEFORE_WMIFLAG) || 1807 (sync_flag == SYNC_BOTH_WMIFLAG)) { 1808 /* 1809 * Make sure all data currently queued is transmitted before 1810 * the cmd execution. Establish a new sync point. 1811 */ 1812 ath6kl_wmi_sync_point(wmi, if_idx); 1813 } 1814 1815 skb_push(skb, sizeof(struct wmi_cmd_hdr)); 1816 1817 cmd_hdr = (struct wmi_cmd_hdr *) skb->data; 1818 cmd_hdr->cmd_id = cpu_to_le16(cmd_id); 1819 info1 = if_idx & WMI_CMD_HDR_IF_ID_MASK; 1820 cmd_hdr->info1 = cpu_to_le16(info1); 1821 1822 /* Only for OPT_TX_CMD, use BE endpoint. */ 1823 if (cmd_id == WMI_OPT_TX_FRAME_CMDID) { 1824 ret = ath6kl_wmi_data_hdr_add(wmi, skb, OPT_MSGTYPE, false, 1825 WMI_DATA_HDR_DATA_TYPE_802_3, 0, NULL, if_idx); 1826 if (ret) { 1827 dev_kfree_skb(skb); 1828 return ret; 1829 } 1830 ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev, WMM_AC_BE); 1831 } 1832 1833 ath6kl_control_tx(wmi->parent_dev, skb, ep_id); 1834 1835 if ((sync_flag == SYNC_AFTER_WMIFLAG) || 1836 (sync_flag == SYNC_BOTH_WMIFLAG)) { 1837 /* 1838 * Make sure all new data queued waits for the command to 1839 * execute. Establish a new sync point. 1840 */ 1841 ath6kl_wmi_sync_point(wmi, if_idx); 1842 } 1843 1844 return 0; 1845 } 1846 1847 int ath6kl_wmi_connect_cmd(struct wmi *wmi, u8 if_idx, 1848 enum network_type nw_type, 1849 enum dot11_auth_mode dot11_auth_mode, 1850 enum auth_mode auth_mode, 1851 enum ath6kl_crypto_type pairwise_crypto, 1852 u8 pairwise_crypto_len, 1853 enum ath6kl_crypto_type group_crypto, 1854 u8 group_crypto_len, int ssid_len, u8 *ssid, 1855 u8 *bssid, u16 channel, u32 ctrl_flags, 1856 u8 nw_subtype) 1857 { 1858 struct sk_buff *skb; 1859 struct wmi_connect_cmd *cc; 1860 int ret; 1861 1862 ath6kl_dbg(ATH6KL_DBG_WMI, 1863 "wmi connect bssid %pM freq %d flags 0x%x ssid_len %d " 1864 "type %d dot11_auth %d auth %d pairwise %d group %d\n", 1865 bssid, channel, ctrl_flags, ssid_len, nw_type, 1866 dot11_auth_mode, auth_mode, pairwise_crypto, group_crypto); 1867 ath6kl_dbg_dump(ATH6KL_DBG_WMI, NULL, "ssid ", ssid, ssid_len); 1868 1869 wmi->traffic_class = 100; 1870 1871 if ((pairwise_crypto == NONE_CRYPT) && (group_crypto != NONE_CRYPT)) 1872 return -EINVAL; 1873 1874 if ((pairwise_crypto != NONE_CRYPT) && (group_crypto == NONE_CRYPT)) 1875 return -EINVAL; 1876 1877 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_connect_cmd)); 1878 if (!skb) 1879 return -ENOMEM; 1880 1881 cc = (struct wmi_connect_cmd *) skb->data; 1882 1883 if (ssid_len) 1884 memcpy(cc->ssid, ssid, ssid_len); 1885 1886 cc->ssid_len = ssid_len; 1887 cc->nw_type = nw_type; 1888 cc->dot11_auth_mode = dot11_auth_mode; 1889 cc->auth_mode = auth_mode; 1890 cc->prwise_crypto_type = pairwise_crypto; 1891 cc->prwise_crypto_len = pairwise_crypto_len; 1892 cc->grp_crypto_type = group_crypto; 1893 cc->grp_crypto_len = group_crypto_len; 1894 cc->ch = cpu_to_le16(channel); 1895 cc->ctrl_flags = cpu_to_le32(ctrl_flags); 1896 cc->nw_subtype = nw_subtype; 1897 1898 if (bssid != NULL) 1899 memcpy(cc->bssid, bssid, ETH_ALEN); 1900 1901 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_CONNECT_CMDID, 1902 NO_SYNC_WMIFLAG); 1903 1904 return ret; 1905 } 1906 1907 int ath6kl_wmi_reconnect_cmd(struct wmi *wmi, u8 if_idx, u8 *bssid, 1908 u16 channel) 1909 { 1910 struct sk_buff *skb; 1911 struct wmi_reconnect_cmd *cc; 1912 int ret; 1913 1914 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi reconnect bssid %pM freq %d\n", 1915 bssid, channel); 1916 1917 wmi->traffic_class = 100; 1918 1919 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_reconnect_cmd)); 1920 if (!skb) 1921 return -ENOMEM; 1922 1923 cc = (struct wmi_reconnect_cmd *) skb->data; 1924 cc->channel = cpu_to_le16(channel); 1925 1926 if (bssid != NULL) 1927 memcpy(cc->bssid, bssid, ETH_ALEN); 1928 1929 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_RECONNECT_CMDID, 1930 NO_SYNC_WMIFLAG); 1931 1932 return ret; 1933 } 1934 1935 int ath6kl_wmi_disconnect_cmd(struct wmi *wmi, u8 if_idx) 1936 { 1937 int ret; 1938 1939 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi disconnect\n"); 1940 1941 wmi->traffic_class = 100; 1942 1943 /* Disconnect command does not need to do a SYNC before. */ 1944 ret = ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_DISCONNECT_CMDID); 1945 1946 return ret; 1947 } 1948 1949 /* ath6kl_wmi_start_scan_cmd is to be deprecated. Use 1950 * ath6kl_wmi_begin_scan_cmd instead. The new function supports P2P 1951 * mgmt operations using station interface. 1952 */ 1953 static int ath6kl_wmi_startscan_cmd(struct wmi *wmi, u8 if_idx, 1954 enum wmi_scan_type scan_type, 1955 u32 force_fgscan, u32 is_legacy, 1956 u32 home_dwell_time, 1957 u32 force_scan_interval, 1958 s8 num_chan, u16 *ch_list) 1959 { 1960 struct sk_buff *skb; 1961 struct wmi_start_scan_cmd *sc; 1962 int i, ret; 1963 1964 if ((scan_type != WMI_LONG_SCAN) && (scan_type != WMI_SHORT_SCAN)) 1965 return -EINVAL; 1966 1967 if (num_chan > WMI_MAX_CHANNELS) 1968 return -EINVAL; 1969 1970 skb = ath6kl_wmi_get_new_buf(struct_size(sc, ch_list, num_chan)); 1971 if (!skb) 1972 return -ENOMEM; 1973 1974 sc = (struct wmi_start_scan_cmd *) skb->data; 1975 sc->scan_type = scan_type; 1976 sc->force_fg_scan = cpu_to_le32(force_fgscan); 1977 sc->is_legacy = cpu_to_le32(is_legacy); 1978 sc->home_dwell_time = cpu_to_le32(home_dwell_time); 1979 sc->force_scan_intvl = cpu_to_le32(force_scan_interval); 1980 sc->num_ch = num_chan; 1981 1982 for (i = 0; i < num_chan; i++) 1983 sc->ch_list[i] = cpu_to_le16(ch_list[i]); 1984 1985 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_START_SCAN_CMDID, 1986 NO_SYNC_WMIFLAG); 1987 1988 return ret; 1989 } 1990 1991 /* 1992 * beginscan supports (compared to old startscan) P2P mgmt operations using 1993 * station interface, send additional information like supported rates to 1994 * advertise and xmit rates for probe requests 1995 */ 1996 int ath6kl_wmi_beginscan_cmd(struct wmi *wmi, u8 if_idx, 1997 enum wmi_scan_type scan_type, 1998 u32 force_fgscan, u32 is_legacy, 1999 u32 home_dwell_time, u32 force_scan_interval, 2000 s8 num_chan, u16 *ch_list, u32 no_cck, u32 *rates) 2001 { 2002 struct ieee80211_supported_band *sband; 2003 struct sk_buff *skb; 2004 struct wmi_begin_scan_cmd *sc; 2005 s8 *supp_rates; 2006 int i, band, ret; 2007 struct ath6kl *ar = wmi->parent_dev; 2008 int num_rates; 2009 u32 ratemask; 2010 2011 if (!test_bit(ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX, 2012 ar->fw_capabilities)) { 2013 return ath6kl_wmi_startscan_cmd(wmi, if_idx, 2014 scan_type, force_fgscan, 2015 is_legacy, home_dwell_time, 2016 force_scan_interval, 2017 num_chan, ch_list); 2018 } 2019 2020 if ((scan_type != WMI_LONG_SCAN) && (scan_type != WMI_SHORT_SCAN)) 2021 return -EINVAL; 2022 2023 if (num_chan > WMI_MAX_CHANNELS) 2024 return -EINVAL; 2025 2026 skb = ath6kl_wmi_get_new_buf(struct_size(sc, ch_list, num_chan)); 2027 if (!skb) 2028 return -ENOMEM; 2029 2030 sc = (struct wmi_begin_scan_cmd *) skb->data; 2031 sc->scan_type = scan_type; 2032 sc->force_fg_scan = cpu_to_le32(force_fgscan); 2033 sc->is_legacy = cpu_to_le32(is_legacy); 2034 sc->home_dwell_time = cpu_to_le32(home_dwell_time); 2035 sc->force_scan_intvl = cpu_to_le32(force_scan_interval); 2036 sc->no_cck = cpu_to_le32(no_cck); 2037 sc->num_ch = num_chan; 2038 2039 for (band = 0; band < NUM_NL80211_BANDS; band++) { 2040 sband = ar->wiphy->bands[band]; 2041 2042 if (!sband) 2043 continue; 2044 2045 if (WARN_ON(band >= ATH6KL_NUM_BANDS)) 2046 break; 2047 2048 ratemask = rates[band]; 2049 supp_rates = sc->supp_rates[band].rates; 2050 num_rates = 0; 2051 2052 for (i = 0; i < sband->n_bitrates; i++) { 2053 if ((BIT(i) & ratemask) == 0) 2054 continue; /* skip rate */ 2055 supp_rates[num_rates++] = 2056 (u8) (sband->bitrates[i].bitrate / 5); 2057 } 2058 sc->supp_rates[band].nrates = num_rates; 2059 } 2060 2061 for (i = 0; i < num_chan; i++) 2062 sc->ch_list[i] = cpu_to_le16(ch_list[i]); 2063 2064 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_BEGIN_SCAN_CMDID, 2065 NO_SYNC_WMIFLAG); 2066 2067 return ret; 2068 } 2069 2070 int ath6kl_wmi_enable_sched_scan_cmd(struct wmi *wmi, u8 if_idx, bool enable) 2071 { 2072 struct sk_buff *skb; 2073 struct wmi_enable_sched_scan_cmd *sc; 2074 int ret; 2075 2076 skb = ath6kl_wmi_get_new_buf(sizeof(*sc)); 2077 if (!skb) 2078 return -ENOMEM; 2079 2080 ath6kl_dbg(ATH6KL_DBG_WMI, "%s scheduled scan on vif %d\n", 2081 enable ? "enabling" : "disabling", if_idx); 2082 sc = (struct wmi_enable_sched_scan_cmd *) skb->data; 2083 sc->enable = enable ? 1 : 0; 2084 2085 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, 2086 WMI_ENABLE_SCHED_SCAN_CMDID, 2087 NO_SYNC_WMIFLAG); 2088 return ret; 2089 } 2090 2091 int ath6kl_wmi_scanparams_cmd(struct wmi *wmi, u8 if_idx, 2092 u16 fg_start_sec, 2093 u16 fg_end_sec, u16 bg_sec, 2094 u16 minact_chdw_msec, u16 maxact_chdw_msec, 2095 u16 pas_chdw_msec, u8 short_scan_ratio, 2096 u8 scan_ctrl_flag, u32 max_dfsch_act_time, 2097 u16 maxact_scan_per_ssid) 2098 { 2099 struct sk_buff *skb; 2100 struct wmi_scan_params_cmd *sc; 2101 int ret; 2102 2103 skb = ath6kl_wmi_get_new_buf(sizeof(*sc)); 2104 if (!skb) 2105 return -ENOMEM; 2106 2107 sc = (struct wmi_scan_params_cmd *) skb->data; 2108 sc->fg_start_period = cpu_to_le16(fg_start_sec); 2109 sc->fg_end_period = cpu_to_le16(fg_end_sec); 2110 sc->bg_period = cpu_to_le16(bg_sec); 2111 sc->minact_chdwell_time = cpu_to_le16(minact_chdw_msec); 2112 sc->maxact_chdwell_time = cpu_to_le16(maxact_chdw_msec); 2113 sc->pas_chdwell_time = cpu_to_le16(pas_chdw_msec); 2114 sc->short_scan_ratio = short_scan_ratio; 2115 sc->scan_ctrl_flags = scan_ctrl_flag; 2116 sc->max_dfsch_act_time = cpu_to_le32(max_dfsch_act_time); 2117 sc->maxact_scan_per_ssid = cpu_to_le16(maxact_scan_per_ssid); 2118 2119 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_SCAN_PARAMS_CMDID, 2120 NO_SYNC_WMIFLAG); 2121 return ret; 2122 } 2123 2124 int ath6kl_wmi_bssfilter_cmd(struct wmi *wmi, u8 if_idx, u8 filter, u32 ie_mask) 2125 { 2126 struct sk_buff *skb; 2127 struct wmi_bss_filter_cmd *cmd; 2128 int ret; 2129 2130 if (filter >= LAST_BSS_FILTER) 2131 return -EINVAL; 2132 2133 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2134 if (!skb) 2135 return -ENOMEM; 2136 2137 cmd = (struct wmi_bss_filter_cmd *) skb->data; 2138 cmd->bss_filter = filter; 2139 cmd->ie_mask = cpu_to_le32(ie_mask); 2140 2141 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_BSS_FILTER_CMDID, 2142 NO_SYNC_WMIFLAG); 2143 return ret; 2144 } 2145 2146 int ath6kl_wmi_probedssid_cmd(struct wmi *wmi, u8 if_idx, u8 index, u8 flag, 2147 u8 ssid_len, u8 *ssid) 2148 { 2149 struct sk_buff *skb; 2150 struct wmi_probed_ssid_cmd *cmd; 2151 int ret; 2152 2153 if (index >= MAX_PROBED_SSIDS) 2154 return -EINVAL; 2155 2156 if (ssid_len > sizeof(cmd->ssid)) 2157 return -EINVAL; 2158 2159 if ((flag & (DISABLE_SSID_FLAG | ANY_SSID_FLAG)) && (ssid_len > 0)) 2160 return -EINVAL; 2161 2162 if ((flag & SPECIFIC_SSID_FLAG) && !ssid_len) 2163 return -EINVAL; 2164 2165 if (flag & SPECIFIC_SSID_FLAG) 2166 wmi->is_probe_ssid = true; 2167 2168 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2169 if (!skb) 2170 return -ENOMEM; 2171 2172 cmd = (struct wmi_probed_ssid_cmd *) skb->data; 2173 cmd->entry_index = index; 2174 cmd->flag = flag; 2175 cmd->ssid_len = ssid_len; 2176 memcpy(cmd->ssid, ssid, ssid_len); 2177 2178 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_PROBED_SSID_CMDID, 2179 NO_SYNC_WMIFLAG); 2180 return ret; 2181 } 2182 2183 int ath6kl_wmi_listeninterval_cmd(struct wmi *wmi, u8 if_idx, 2184 u16 listen_interval, 2185 u16 listen_beacons) 2186 { 2187 struct sk_buff *skb; 2188 struct wmi_listen_int_cmd *cmd; 2189 int ret; 2190 2191 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2192 if (!skb) 2193 return -ENOMEM; 2194 2195 cmd = (struct wmi_listen_int_cmd *) skb->data; 2196 cmd->listen_intvl = cpu_to_le16(listen_interval); 2197 cmd->num_beacons = cpu_to_le16(listen_beacons); 2198 2199 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_LISTEN_INT_CMDID, 2200 NO_SYNC_WMIFLAG); 2201 return ret; 2202 } 2203 2204 int ath6kl_wmi_bmisstime_cmd(struct wmi *wmi, u8 if_idx, 2205 u16 bmiss_time, u16 num_beacons) 2206 { 2207 struct sk_buff *skb; 2208 struct wmi_bmiss_time_cmd *cmd; 2209 int ret; 2210 2211 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2212 if (!skb) 2213 return -ENOMEM; 2214 2215 cmd = (struct wmi_bmiss_time_cmd *) skb->data; 2216 cmd->bmiss_time = cpu_to_le16(bmiss_time); 2217 cmd->num_beacons = cpu_to_le16(num_beacons); 2218 2219 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_BMISS_TIME_CMDID, 2220 NO_SYNC_WMIFLAG); 2221 return ret; 2222 } 2223 2224 int ath6kl_wmi_powermode_cmd(struct wmi *wmi, u8 if_idx, u8 pwr_mode) 2225 { 2226 struct sk_buff *skb; 2227 struct wmi_power_mode_cmd *cmd; 2228 int ret; 2229 2230 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2231 if (!skb) 2232 return -ENOMEM; 2233 2234 cmd = (struct wmi_power_mode_cmd *) skb->data; 2235 cmd->pwr_mode = pwr_mode; 2236 wmi->pwr_mode = pwr_mode; 2237 2238 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_POWER_MODE_CMDID, 2239 NO_SYNC_WMIFLAG); 2240 return ret; 2241 } 2242 2243 int ath6kl_wmi_pmparams_cmd(struct wmi *wmi, u8 if_idx, u16 idle_period, 2244 u16 ps_poll_num, u16 dtim_policy, 2245 u16 tx_wakeup_policy, u16 num_tx_to_wakeup, 2246 u16 ps_fail_event_policy) 2247 { 2248 struct sk_buff *skb; 2249 struct wmi_power_params_cmd *pm; 2250 int ret; 2251 2252 skb = ath6kl_wmi_get_new_buf(sizeof(*pm)); 2253 if (!skb) 2254 return -ENOMEM; 2255 2256 pm = (struct wmi_power_params_cmd *)skb->data; 2257 pm->idle_period = cpu_to_le16(idle_period); 2258 pm->pspoll_number = cpu_to_le16(ps_poll_num); 2259 pm->dtim_policy = cpu_to_le16(dtim_policy); 2260 pm->tx_wakeup_policy = cpu_to_le16(tx_wakeup_policy); 2261 pm->num_tx_to_wakeup = cpu_to_le16(num_tx_to_wakeup); 2262 pm->ps_fail_event_policy = cpu_to_le16(ps_fail_event_policy); 2263 2264 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_POWER_PARAMS_CMDID, 2265 NO_SYNC_WMIFLAG); 2266 return ret; 2267 } 2268 2269 int ath6kl_wmi_disctimeout_cmd(struct wmi *wmi, u8 if_idx, u8 timeout) 2270 { 2271 struct sk_buff *skb; 2272 struct wmi_disc_timeout_cmd *cmd; 2273 int ret; 2274 2275 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2276 if (!skb) 2277 return -ENOMEM; 2278 2279 cmd = (struct wmi_disc_timeout_cmd *) skb->data; 2280 cmd->discon_timeout = timeout; 2281 2282 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_DISC_TIMEOUT_CMDID, 2283 NO_SYNC_WMIFLAG); 2284 2285 if (ret == 0) 2286 ath6kl_debug_set_disconnect_timeout(wmi->parent_dev, timeout); 2287 2288 return ret; 2289 } 2290 2291 int ath6kl_wmi_addkey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index, 2292 enum ath6kl_crypto_type key_type, 2293 u8 key_usage, u8 key_len, 2294 u8 *key_rsc, unsigned int key_rsc_len, 2295 u8 *key_material, 2296 u8 key_op_ctrl, u8 *mac_addr, 2297 enum wmi_sync_flag sync_flag) 2298 { 2299 struct sk_buff *skb; 2300 struct wmi_add_cipher_key_cmd *cmd; 2301 int ret; 2302 2303 ath6kl_dbg(ATH6KL_DBG_WMI, 2304 "addkey cmd: key_index=%u key_type=%d key_usage=%d key_len=%d key_op_ctrl=%d\n", 2305 key_index, key_type, key_usage, key_len, key_op_ctrl); 2306 2307 if ((key_index > WMI_MAX_KEY_INDEX) || (key_len > WMI_MAX_KEY_LEN) || 2308 (key_material == NULL) || key_rsc_len > 8) 2309 return -EINVAL; 2310 2311 if ((WEP_CRYPT != key_type) && (NULL == key_rsc)) 2312 return -EINVAL; 2313 2314 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2315 if (!skb) 2316 return -ENOMEM; 2317 2318 cmd = (struct wmi_add_cipher_key_cmd *) skb->data; 2319 cmd->key_index = key_index; 2320 cmd->key_type = key_type; 2321 cmd->key_usage = key_usage; 2322 cmd->key_len = key_len; 2323 memcpy(cmd->key, key_material, key_len); 2324 2325 if (key_rsc != NULL) 2326 memcpy(cmd->key_rsc, key_rsc, key_rsc_len); 2327 2328 cmd->key_op_ctrl = key_op_ctrl; 2329 2330 if (mac_addr) 2331 memcpy(cmd->key_mac_addr, mac_addr, ETH_ALEN); 2332 2333 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_CIPHER_KEY_CMDID, 2334 sync_flag); 2335 2336 return ret; 2337 } 2338 2339 int ath6kl_wmi_add_krk_cmd(struct wmi *wmi, u8 if_idx, const u8 *krk) 2340 { 2341 struct sk_buff *skb; 2342 struct wmi_add_krk_cmd *cmd; 2343 int ret; 2344 2345 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2346 if (!skb) 2347 return -ENOMEM; 2348 2349 cmd = (struct wmi_add_krk_cmd *) skb->data; 2350 memcpy(cmd->krk, krk, WMI_KRK_LEN); 2351 2352 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_KRK_CMDID, 2353 NO_SYNC_WMIFLAG); 2354 2355 return ret; 2356 } 2357 2358 int ath6kl_wmi_deletekey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index) 2359 { 2360 struct sk_buff *skb; 2361 struct wmi_delete_cipher_key_cmd *cmd; 2362 int ret; 2363 2364 if (key_index > WMI_MAX_KEY_INDEX) 2365 return -EINVAL; 2366 2367 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2368 if (!skb) 2369 return -ENOMEM; 2370 2371 cmd = (struct wmi_delete_cipher_key_cmd *) skb->data; 2372 cmd->key_index = key_index; 2373 2374 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DELETE_CIPHER_KEY_CMDID, 2375 NO_SYNC_WMIFLAG); 2376 2377 return ret; 2378 } 2379 2380 int ath6kl_wmi_setpmkid_cmd(struct wmi *wmi, u8 if_idx, const u8 *bssid, 2381 const u8 *pmkid, bool set) 2382 { 2383 struct sk_buff *skb; 2384 struct wmi_setpmkid_cmd *cmd; 2385 int ret; 2386 2387 if (bssid == NULL) 2388 return -EINVAL; 2389 2390 if (set && pmkid == NULL) 2391 return -EINVAL; 2392 2393 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2394 if (!skb) 2395 return -ENOMEM; 2396 2397 cmd = (struct wmi_setpmkid_cmd *) skb->data; 2398 memcpy(cmd->bssid, bssid, ETH_ALEN); 2399 if (set) { 2400 memcpy(cmd->pmkid, pmkid, sizeof(cmd->pmkid)); 2401 cmd->enable = PMKID_ENABLE; 2402 } else { 2403 memset(cmd->pmkid, 0, sizeof(cmd->pmkid)); 2404 cmd->enable = PMKID_DISABLE; 2405 } 2406 2407 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_PMKID_CMDID, 2408 NO_SYNC_WMIFLAG); 2409 2410 return ret; 2411 } 2412 2413 static int ath6kl_wmi_data_sync_send(struct wmi *wmi, struct sk_buff *skb, 2414 enum htc_endpoint_id ep_id, u8 if_idx) 2415 { 2416 struct wmi_data_hdr *data_hdr; 2417 int ret; 2418 2419 if (WARN_ON(skb == NULL || ep_id == wmi->ep_id)) { 2420 dev_kfree_skb(skb); 2421 return -EINVAL; 2422 } 2423 2424 skb_push(skb, sizeof(struct wmi_data_hdr)); 2425 2426 data_hdr = (struct wmi_data_hdr *) skb->data; 2427 data_hdr->info = SYNC_MSGTYPE << WMI_DATA_HDR_MSG_TYPE_SHIFT; 2428 data_hdr->info3 = cpu_to_le16(if_idx & WMI_DATA_HDR_IF_IDX_MASK); 2429 2430 ret = ath6kl_control_tx(wmi->parent_dev, skb, ep_id); 2431 2432 return ret; 2433 } 2434 2435 static int ath6kl_wmi_sync_point(struct wmi *wmi, u8 if_idx) 2436 { 2437 struct sk_buff *skb; 2438 struct wmi_sync_cmd *cmd; 2439 struct wmi_data_sync_bufs data_sync_bufs[WMM_NUM_AC]; 2440 enum htc_endpoint_id ep_id; 2441 u8 index, num_pri_streams = 0; 2442 int ret = 0; 2443 2444 memset(data_sync_bufs, 0, sizeof(data_sync_bufs)); 2445 2446 spin_lock_bh(&wmi->lock); 2447 2448 for (index = 0; index < WMM_NUM_AC; index++) { 2449 if (wmi->fat_pipe_exist & (1 << index)) { 2450 num_pri_streams++; 2451 data_sync_bufs[num_pri_streams - 1].traffic_class = 2452 index; 2453 } 2454 } 2455 2456 spin_unlock_bh(&wmi->lock); 2457 2458 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2459 if (!skb) 2460 return -ENOMEM; 2461 2462 cmd = (struct wmi_sync_cmd *) skb->data; 2463 2464 /* 2465 * In the SYNC cmd sent on the control Ep, send a bitmap 2466 * of the data eps on which the Data Sync will be sent 2467 */ 2468 cmd->data_sync_map = wmi->fat_pipe_exist; 2469 2470 for (index = 0; index < num_pri_streams; index++) { 2471 data_sync_bufs[index].skb = ath6kl_buf_alloc(0); 2472 if (data_sync_bufs[index].skb == NULL) { 2473 ret = -ENOMEM; 2474 break; 2475 } 2476 } 2477 2478 /* 2479 * If buffer allocation for any of the dataSync fails, 2480 * then do not send the Synchronize cmd on the control ep 2481 */ 2482 if (ret) 2483 goto free_cmd_skb; 2484 2485 /* 2486 * Send sync cmd followed by sync data messages on all 2487 * endpoints being used 2488 */ 2489 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SYNCHRONIZE_CMDID, 2490 NO_SYNC_WMIFLAG); 2491 2492 if (ret) 2493 goto free_data_skb; 2494 2495 for (index = 0; index < num_pri_streams; index++) { 2496 if (WARN_ON(!data_sync_bufs[index].skb)) { 2497 ret = -ENOMEM; 2498 goto free_data_skb; 2499 } 2500 2501 ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev, 2502 data_sync_bufs[index]. 2503 traffic_class); 2504 ret = 2505 ath6kl_wmi_data_sync_send(wmi, data_sync_bufs[index].skb, 2506 ep_id, if_idx); 2507 2508 data_sync_bufs[index].skb = NULL; 2509 2510 if (ret) 2511 goto free_data_skb; 2512 } 2513 2514 return 0; 2515 2516 free_cmd_skb: 2517 /* free up any resources left over (possibly due to an error) */ 2518 dev_kfree_skb(skb); 2519 2520 free_data_skb: 2521 for (index = 0; index < num_pri_streams; index++) 2522 dev_kfree_skb((struct sk_buff *)data_sync_bufs[index].skb); 2523 2524 return ret; 2525 } 2526 2527 int ath6kl_wmi_create_pstream_cmd(struct wmi *wmi, u8 if_idx, 2528 struct wmi_create_pstream_cmd *params) 2529 { 2530 struct sk_buff *skb; 2531 struct wmi_create_pstream_cmd *cmd; 2532 u8 fatpipe_exist_for_ac = 0; 2533 s32 min_phy = 0; 2534 s32 nominal_phy = 0; 2535 int ret; 2536 2537 if (!((params->user_pri <= 0x7) && 2538 (up_to_ac[params->user_pri & 0x7] == params->traffic_class) && 2539 (params->traffic_direc == UPLINK_TRAFFIC || 2540 params->traffic_direc == DNLINK_TRAFFIC || 2541 params->traffic_direc == BIDIR_TRAFFIC) && 2542 (params->traffic_type == TRAFFIC_TYPE_APERIODIC || 2543 params->traffic_type == TRAFFIC_TYPE_PERIODIC) && 2544 (params->voice_psc_cap == DISABLE_FOR_THIS_AC || 2545 params->voice_psc_cap == ENABLE_FOR_THIS_AC || 2546 params->voice_psc_cap == ENABLE_FOR_ALL_AC) && 2547 (params->tsid == WMI_IMPLICIT_PSTREAM || 2548 params->tsid <= WMI_MAX_THINSTREAM))) { 2549 return -EINVAL; 2550 } 2551 2552 /* 2553 * Check nominal PHY rate is >= minimalPHY, 2554 * so that DUT can allow TSRS IE 2555 */ 2556 2557 /* Get the physical rate (units of bps) */ 2558 min_phy = ((le32_to_cpu(params->min_phy_rate) / 1000) / 1000); 2559 2560 /* Check minimal phy < nominal phy rate */ 2561 if (params->nominal_phy >= min_phy) { 2562 /* unit of 500 kbps */ 2563 nominal_phy = (params->nominal_phy * 1000) / 500; 2564 ath6kl_dbg(ATH6KL_DBG_WMI, 2565 "TSRS IE enabled::MinPhy %x->NominalPhy ===> %x\n", 2566 min_phy, nominal_phy); 2567 2568 params->nominal_phy = nominal_phy; 2569 } else { 2570 params->nominal_phy = 0; 2571 } 2572 2573 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2574 if (!skb) 2575 return -ENOMEM; 2576 2577 ath6kl_dbg(ATH6KL_DBG_WMI, 2578 "sending create_pstream_cmd: ac=%d tsid:%d\n", 2579 params->traffic_class, params->tsid); 2580 2581 cmd = (struct wmi_create_pstream_cmd *) skb->data; 2582 memcpy(cmd, params, sizeof(*cmd)); 2583 2584 /* This is an implicitly created Fat pipe */ 2585 if ((u32) params->tsid == (u32) WMI_IMPLICIT_PSTREAM) { 2586 spin_lock_bh(&wmi->lock); 2587 fatpipe_exist_for_ac = (wmi->fat_pipe_exist & 2588 (1 << params->traffic_class)); 2589 wmi->fat_pipe_exist |= (1 << params->traffic_class); 2590 spin_unlock_bh(&wmi->lock); 2591 } else { 2592 /* explicitly created thin stream within a fat pipe */ 2593 spin_lock_bh(&wmi->lock); 2594 fatpipe_exist_for_ac = (wmi->fat_pipe_exist & 2595 (1 << params->traffic_class)); 2596 wmi->stream_exist_for_ac[params->traffic_class] |= 2597 (1 << params->tsid); 2598 /* 2599 * If a thinstream becomes active, the fat pipe automatically 2600 * becomes active 2601 */ 2602 wmi->fat_pipe_exist |= (1 << params->traffic_class); 2603 spin_unlock_bh(&wmi->lock); 2604 } 2605 2606 /* 2607 * Indicate activty change to driver layer only if this is the 2608 * first TSID to get created in this AC explicitly or an implicit 2609 * fat pipe is getting created. 2610 */ 2611 if (!fatpipe_exist_for_ac) 2612 ath6kl_indicate_tx_activity(wmi->parent_dev, 2613 params->traffic_class, true); 2614 2615 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_CREATE_PSTREAM_CMDID, 2616 NO_SYNC_WMIFLAG); 2617 return ret; 2618 } 2619 2620 int ath6kl_wmi_delete_pstream_cmd(struct wmi *wmi, u8 if_idx, u8 traffic_class, 2621 u8 tsid) 2622 { 2623 struct sk_buff *skb; 2624 struct wmi_delete_pstream_cmd *cmd; 2625 u16 active_tsids = 0; 2626 int ret; 2627 2628 if (traffic_class >= WMM_NUM_AC) { 2629 ath6kl_err("invalid traffic class: %d\n", traffic_class); 2630 return -EINVAL; 2631 } 2632 2633 if (tsid >= 16) { 2634 ath6kl_err("invalid tsid: %d\n", tsid); 2635 return -EINVAL; 2636 } 2637 2638 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2639 if (!skb) 2640 return -ENOMEM; 2641 2642 cmd = (struct wmi_delete_pstream_cmd *) skb->data; 2643 cmd->traffic_class = traffic_class; 2644 cmd->tsid = tsid; 2645 2646 spin_lock_bh(&wmi->lock); 2647 active_tsids = wmi->stream_exist_for_ac[traffic_class]; 2648 spin_unlock_bh(&wmi->lock); 2649 2650 if (!(active_tsids & (1 << tsid))) { 2651 dev_kfree_skb(skb); 2652 ath6kl_dbg(ATH6KL_DBG_WMI, 2653 "TSID %d doesn't exist for traffic class: %d\n", 2654 tsid, traffic_class); 2655 return -ENODATA; 2656 } 2657 2658 ath6kl_dbg(ATH6KL_DBG_WMI, 2659 "sending delete_pstream_cmd: traffic class: %d tsid=%d\n", 2660 traffic_class, tsid); 2661 2662 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DELETE_PSTREAM_CMDID, 2663 SYNC_BEFORE_WMIFLAG); 2664 2665 spin_lock_bh(&wmi->lock); 2666 wmi->stream_exist_for_ac[traffic_class] &= ~(1 << tsid); 2667 active_tsids = wmi->stream_exist_for_ac[traffic_class]; 2668 spin_unlock_bh(&wmi->lock); 2669 2670 /* 2671 * Indicate stream inactivity to driver layer only if all tsids 2672 * within this AC are deleted. 2673 */ 2674 if (!active_tsids) { 2675 ath6kl_indicate_tx_activity(wmi->parent_dev, 2676 traffic_class, false); 2677 wmi->fat_pipe_exist &= ~(1 << traffic_class); 2678 } 2679 2680 return ret; 2681 } 2682 2683 int ath6kl_wmi_set_ip_cmd(struct wmi *wmi, u8 if_idx, 2684 __be32 ips0, __be32 ips1) 2685 { 2686 struct sk_buff *skb; 2687 struct wmi_set_ip_cmd *cmd; 2688 int ret; 2689 2690 /* Multicast address are not valid */ 2691 if (ipv4_is_multicast(ips0) || 2692 ipv4_is_multicast(ips1)) 2693 return -EINVAL; 2694 2695 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_ip_cmd)); 2696 if (!skb) 2697 return -ENOMEM; 2698 2699 cmd = (struct wmi_set_ip_cmd *) skb->data; 2700 cmd->ips[0] = ips0; 2701 cmd->ips[1] = ips1; 2702 2703 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_IP_CMDID, 2704 NO_SYNC_WMIFLAG); 2705 return ret; 2706 } 2707 2708 static void ath6kl_wmi_relinquish_implicit_pstream_credits(struct wmi *wmi) 2709 { 2710 u16 active_tsids; 2711 u8 stream_exist; 2712 int i; 2713 2714 /* 2715 * Relinquish credits from all implicitly created pstreams 2716 * since when we go to sleep. If user created explicit 2717 * thinstreams exists with in a fatpipe leave them intact 2718 * for the user to delete. 2719 */ 2720 spin_lock_bh(&wmi->lock); 2721 stream_exist = wmi->fat_pipe_exist; 2722 spin_unlock_bh(&wmi->lock); 2723 2724 for (i = 0; i < WMM_NUM_AC; i++) { 2725 if (stream_exist & (1 << i)) { 2726 /* 2727 * FIXME: Is this lock & unlock inside 2728 * for loop correct? may need rework. 2729 */ 2730 spin_lock_bh(&wmi->lock); 2731 active_tsids = wmi->stream_exist_for_ac[i]; 2732 spin_unlock_bh(&wmi->lock); 2733 2734 /* 2735 * If there are no user created thin streams 2736 * delete the fatpipe 2737 */ 2738 if (!active_tsids) { 2739 stream_exist &= ~(1 << i); 2740 /* 2741 * Indicate inactivity to driver layer for 2742 * this fatpipe (pstream) 2743 */ 2744 ath6kl_indicate_tx_activity(wmi->parent_dev, 2745 i, false); 2746 } 2747 } 2748 } 2749 2750 /* FIXME: Can we do this assignment without locking ? */ 2751 spin_lock_bh(&wmi->lock); 2752 wmi->fat_pipe_exist = stream_exist; 2753 spin_unlock_bh(&wmi->lock); 2754 } 2755 2756 static int ath6kl_set_bitrate_mask64(struct wmi *wmi, u8 if_idx, 2757 const struct cfg80211_bitrate_mask *mask) 2758 { 2759 struct sk_buff *skb; 2760 int ret, mode, band; 2761 u64 mcsrate, ratemask[ATH6KL_NUM_BANDS]; 2762 struct wmi_set_tx_select_rates64_cmd *cmd; 2763 2764 memset(&ratemask, 0, sizeof(ratemask)); 2765 2766 /* only check 2.4 and 5 GHz bands, skip the rest */ 2767 for (band = 0; band <= NL80211_BAND_5GHZ; band++) { 2768 /* copy legacy rate mask */ 2769 ratemask[band] = mask->control[band].legacy; 2770 if (band == NL80211_BAND_5GHZ) 2771 ratemask[band] = 2772 mask->control[band].legacy << 4; 2773 2774 /* copy mcs rate mask */ 2775 mcsrate = mask->control[band].ht_mcs[1]; 2776 mcsrate <<= 8; 2777 mcsrate |= mask->control[band].ht_mcs[0]; 2778 ratemask[band] |= mcsrate << 12; 2779 ratemask[band] |= mcsrate << 28; 2780 } 2781 2782 ath6kl_dbg(ATH6KL_DBG_WMI, 2783 "Ratemask 64 bit: 2.4:%llx 5:%llx\n", 2784 ratemask[0], ratemask[1]); 2785 2786 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd) * WMI_RATES_MODE_MAX); 2787 if (!skb) 2788 return -ENOMEM; 2789 2790 cmd = (struct wmi_set_tx_select_rates64_cmd *) skb->data; 2791 for (mode = 0; mode < WMI_RATES_MODE_MAX; mode++) { 2792 /* A mode operate in 5GHZ band */ 2793 if (mode == WMI_RATES_MODE_11A || 2794 mode == WMI_RATES_MODE_11A_HT20 || 2795 mode == WMI_RATES_MODE_11A_HT40) 2796 band = NL80211_BAND_5GHZ; 2797 else 2798 band = NL80211_BAND_2GHZ; 2799 cmd->ratemask[mode] = cpu_to_le64(ratemask[band]); 2800 } 2801 2802 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, 2803 WMI_SET_TX_SELECT_RATES_CMDID, 2804 NO_SYNC_WMIFLAG); 2805 return ret; 2806 } 2807 2808 static int ath6kl_set_bitrate_mask32(struct wmi *wmi, u8 if_idx, 2809 const struct cfg80211_bitrate_mask *mask) 2810 { 2811 struct sk_buff *skb; 2812 int ret, mode, band; 2813 u32 mcsrate, ratemask[ATH6KL_NUM_BANDS]; 2814 struct wmi_set_tx_select_rates32_cmd *cmd; 2815 2816 memset(&ratemask, 0, sizeof(ratemask)); 2817 2818 /* only check 2.4 and 5 GHz bands, skip the rest */ 2819 for (band = 0; band <= NL80211_BAND_5GHZ; band++) { 2820 /* copy legacy rate mask */ 2821 ratemask[band] = mask->control[band].legacy; 2822 if (band == NL80211_BAND_5GHZ) 2823 ratemask[band] = 2824 mask->control[band].legacy << 4; 2825 2826 /* copy mcs rate mask */ 2827 mcsrate = mask->control[band].ht_mcs[0]; 2828 ratemask[band] |= mcsrate << 12; 2829 ratemask[band] |= mcsrate << 20; 2830 } 2831 2832 ath6kl_dbg(ATH6KL_DBG_WMI, 2833 "Ratemask 32 bit: 2.4:%x 5:%x\n", 2834 ratemask[0], ratemask[1]); 2835 2836 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd) * WMI_RATES_MODE_MAX); 2837 if (!skb) 2838 return -ENOMEM; 2839 2840 cmd = (struct wmi_set_tx_select_rates32_cmd *) skb->data; 2841 for (mode = 0; mode < WMI_RATES_MODE_MAX; mode++) { 2842 /* A mode operate in 5GHZ band */ 2843 if (mode == WMI_RATES_MODE_11A || 2844 mode == WMI_RATES_MODE_11A_HT20 || 2845 mode == WMI_RATES_MODE_11A_HT40) 2846 band = NL80211_BAND_5GHZ; 2847 else 2848 band = NL80211_BAND_2GHZ; 2849 cmd->ratemask[mode] = cpu_to_le32(ratemask[band]); 2850 } 2851 2852 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, 2853 WMI_SET_TX_SELECT_RATES_CMDID, 2854 NO_SYNC_WMIFLAG); 2855 return ret; 2856 } 2857 2858 int ath6kl_wmi_set_bitrate_mask(struct wmi *wmi, u8 if_idx, 2859 const struct cfg80211_bitrate_mask *mask) 2860 { 2861 struct ath6kl *ar = wmi->parent_dev; 2862 2863 if (test_bit(ATH6KL_FW_CAPABILITY_64BIT_RATES, 2864 ar->fw_capabilities)) 2865 return ath6kl_set_bitrate_mask64(wmi, if_idx, mask); 2866 else 2867 return ath6kl_set_bitrate_mask32(wmi, if_idx, mask); 2868 } 2869 2870 int ath6kl_wmi_set_host_sleep_mode_cmd(struct wmi *wmi, u8 if_idx, 2871 enum ath6kl_host_mode host_mode) 2872 { 2873 struct sk_buff *skb; 2874 struct wmi_set_host_sleep_mode_cmd *cmd; 2875 int ret; 2876 2877 if ((host_mode != ATH6KL_HOST_MODE_ASLEEP) && 2878 (host_mode != ATH6KL_HOST_MODE_AWAKE)) { 2879 ath6kl_err("invalid host sleep mode: %d\n", host_mode); 2880 return -EINVAL; 2881 } 2882 2883 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2884 if (!skb) 2885 return -ENOMEM; 2886 2887 cmd = (struct wmi_set_host_sleep_mode_cmd *) skb->data; 2888 2889 if (host_mode == ATH6KL_HOST_MODE_ASLEEP) { 2890 ath6kl_wmi_relinquish_implicit_pstream_credits(wmi); 2891 cmd->asleep = cpu_to_le32(1); 2892 } else { 2893 cmd->awake = cpu_to_le32(1); 2894 } 2895 2896 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, 2897 WMI_SET_HOST_SLEEP_MODE_CMDID, 2898 NO_SYNC_WMIFLAG); 2899 return ret; 2900 } 2901 2902 /* This command has zero length payload */ 2903 static int ath6kl_wmi_host_sleep_mode_cmd_prcd_evt_rx(struct wmi *wmi, 2904 struct ath6kl_vif *vif) 2905 { 2906 struct ath6kl *ar = wmi->parent_dev; 2907 2908 set_bit(HOST_SLEEP_MODE_CMD_PROCESSED, &vif->flags); 2909 wake_up(&ar->event_wq); 2910 2911 return 0; 2912 } 2913 2914 int ath6kl_wmi_set_wow_mode_cmd(struct wmi *wmi, u8 if_idx, 2915 enum ath6kl_wow_mode wow_mode, 2916 u32 filter, u16 host_req_delay) 2917 { 2918 struct sk_buff *skb; 2919 struct wmi_set_wow_mode_cmd *cmd; 2920 int ret; 2921 2922 if ((wow_mode != ATH6KL_WOW_MODE_ENABLE) && 2923 wow_mode != ATH6KL_WOW_MODE_DISABLE) { 2924 ath6kl_err("invalid wow mode: %d\n", wow_mode); 2925 return -EINVAL; 2926 } 2927 2928 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2929 if (!skb) 2930 return -ENOMEM; 2931 2932 cmd = (struct wmi_set_wow_mode_cmd *) skb->data; 2933 cmd->enable_wow = cpu_to_le32(wow_mode); 2934 cmd->filter = cpu_to_le32(filter); 2935 cmd->host_req_delay = cpu_to_le16(host_req_delay); 2936 2937 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_WOW_MODE_CMDID, 2938 NO_SYNC_WMIFLAG); 2939 return ret; 2940 } 2941 2942 int ath6kl_wmi_add_wow_pattern_cmd(struct wmi *wmi, u8 if_idx, 2943 u8 list_id, u8 filter_size, 2944 u8 filter_offset, const u8 *filter, 2945 const u8 *mask) 2946 { 2947 struct sk_buff *skb; 2948 struct wmi_add_wow_pattern_cmd *cmd; 2949 u16 size; 2950 u8 *filter_mask; 2951 int ret; 2952 2953 /* 2954 * Allocate additional memory in the buffer to hold 2955 * filter and mask value, which is twice of filter_size. 2956 */ 2957 size = sizeof(*cmd) + (2 * filter_size); 2958 2959 skb = ath6kl_wmi_get_new_buf(size); 2960 if (!skb) 2961 return -ENOMEM; 2962 2963 cmd = (struct wmi_add_wow_pattern_cmd *) skb->data; 2964 cmd->filter_list_id = list_id; 2965 cmd->filter_size = filter_size; 2966 cmd->filter_offset = filter_offset; 2967 2968 memcpy(cmd->filter, filter, filter_size); 2969 2970 filter_mask = (u8 *) (cmd->filter + filter_size); 2971 memcpy(filter_mask, mask, filter_size); 2972 2973 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_WOW_PATTERN_CMDID, 2974 NO_SYNC_WMIFLAG); 2975 2976 return ret; 2977 } 2978 2979 int ath6kl_wmi_del_wow_pattern_cmd(struct wmi *wmi, u8 if_idx, 2980 u16 list_id, u16 filter_id) 2981 { 2982 struct sk_buff *skb; 2983 struct wmi_del_wow_pattern_cmd *cmd; 2984 int ret; 2985 2986 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2987 if (!skb) 2988 return -ENOMEM; 2989 2990 cmd = (struct wmi_del_wow_pattern_cmd *) skb->data; 2991 cmd->filter_list_id = cpu_to_le16(list_id); 2992 cmd->filter_id = cpu_to_le16(filter_id); 2993 2994 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DEL_WOW_PATTERN_CMDID, 2995 NO_SYNC_WMIFLAG); 2996 return ret; 2997 } 2998 2999 static int ath6kl_wmi_cmd_send_xtnd(struct wmi *wmi, struct sk_buff *skb, 3000 enum wmix_command_id cmd_id, 3001 enum wmi_sync_flag sync_flag) 3002 { 3003 struct wmix_cmd_hdr *cmd_hdr; 3004 int ret; 3005 3006 skb_push(skb, sizeof(struct wmix_cmd_hdr)); 3007 3008 cmd_hdr = (struct wmix_cmd_hdr *) skb->data; 3009 cmd_hdr->cmd_id = cpu_to_le32(cmd_id); 3010 3011 ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_EXTENSION_CMDID, sync_flag); 3012 3013 return ret; 3014 } 3015 3016 int ath6kl_wmi_get_challenge_resp_cmd(struct wmi *wmi, u32 cookie, u32 source) 3017 { 3018 struct sk_buff *skb; 3019 struct wmix_hb_challenge_resp_cmd *cmd; 3020 int ret; 3021 3022 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3023 if (!skb) 3024 return -ENOMEM; 3025 3026 cmd = (struct wmix_hb_challenge_resp_cmd *) skb->data; 3027 cmd->cookie = cpu_to_le32(cookie); 3028 cmd->source = cpu_to_le32(source); 3029 3030 ret = ath6kl_wmi_cmd_send_xtnd(wmi, skb, WMIX_HB_CHALLENGE_RESP_CMDID, 3031 NO_SYNC_WMIFLAG); 3032 return ret; 3033 } 3034 3035 int ath6kl_wmi_config_debug_module_cmd(struct wmi *wmi, u32 valid, u32 config) 3036 { 3037 struct ath6kl_wmix_dbglog_cfg_module_cmd *cmd; 3038 struct sk_buff *skb; 3039 int ret; 3040 3041 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3042 if (!skb) 3043 return -ENOMEM; 3044 3045 cmd = (struct ath6kl_wmix_dbglog_cfg_module_cmd *) skb->data; 3046 cmd->valid = cpu_to_le32(valid); 3047 cmd->config = cpu_to_le32(config); 3048 3049 ret = ath6kl_wmi_cmd_send_xtnd(wmi, skb, WMIX_DBGLOG_CFG_MODULE_CMDID, 3050 NO_SYNC_WMIFLAG); 3051 return ret; 3052 } 3053 3054 int ath6kl_wmi_get_stats_cmd(struct wmi *wmi, u8 if_idx) 3055 { 3056 return ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_GET_STATISTICS_CMDID); 3057 } 3058 3059 int ath6kl_wmi_set_tx_pwr_cmd(struct wmi *wmi, u8 if_idx, u8 dbM) 3060 { 3061 struct sk_buff *skb; 3062 struct wmi_set_tx_pwr_cmd *cmd; 3063 int ret; 3064 3065 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_tx_pwr_cmd)); 3066 if (!skb) 3067 return -ENOMEM; 3068 3069 cmd = (struct wmi_set_tx_pwr_cmd *) skb->data; 3070 cmd->dbM = dbM; 3071 3072 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_TX_PWR_CMDID, 3073 NO_SYNC_WMIFLAG); 3074 3075 return ret; 3076 } 3077 3078 int ath6kl_wmi_get_tx_pwr_cmd(struct wmi *wmi, u8 if_idx) 3079 { 3080 return ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_GET_TX_PWR_CMDID); 3081 } 3082 3083 int ath6kl_wmi_get_roam_tbl_cmd(struct wmi *wmi) 3084 { 3085 return ath6kl_wmi_simple_cmd(wmi, 0, WMI_GET_ROAM_TBL_CMDID); 3086 } 3087 3088 int ath6kl_wmi_set_lpreamble_cmd(struct wmi *wmi, u8 if_idx, u8 status, 3089 u8 preamble_policy) 3090 { 3091 struct sk_buff *skb; 3092 struct wmi_set_lpreamble_cmd *cmd; 3093 int ret; 3094 3095 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_lpreamble_cmd)); 3096 if (!skb) 3097 return -ENOMEM; 3098 3099 cmd = (struct wmi_set_lpreamble_cmd *) skb->data; 3100 cmd->status = status; 3101 cmd->preamble_policy = preamble_policy; 3102 3103 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_LPREAMBLE_CMDID, 3104 NO_SYNC_WMIFLAG); 3105 return ret; 3106 } 3107 3108 int ath6kl_wmi_set_rts_cmd(struct wmi *wmi, u16 threshold) 3109 { 3110 struct sk_buff *skb; 3111 struct wmi_set_rts_cmd *cmd; 3112 int ret; 3113 3114 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_rts_cmd)); 3115 if (!skb) 3116 return -ENOMEM; 3117 3118 cmd = (struct wmi_set_rts_cmd *) skb->data; 3119 cmd->threshold = cpu_to_le16(threshold); 3120 3121 ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_RTS_CMDID, 3122 NO_SYNC_WMIFLAG); 3123 return ret; 3124 } 3125 3126 int ath6kl_wmi_set_wmm_txop(struct wmi *wmi, u8 if_idx, enum wmi_txop_cfg cfg) 3127 { 3128 struct sk_buff *skb; 3129 struct wmi_set_wmm_txop_cmd *cmd; 3130 int ret; 3131 3132 if (!((cfg == WMI_TXOP_DISABLED) || (cfg == WMI_TXOP_ENABLED))) 3133 return -EINVAL; 3134 3135 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_wmm_txop_cmd)); 3136 if (!skb) 3137 return -ENOMEM; 3138 3139 cmd = (struct wmi_set_wmm_txop_cmd *) skb->data; 3140 cmd->txop_enable = cfg; 3141 3142 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_WMM_TXOP_CMDID, 3143 NO_SYNC_WMIFLAG); 3144 return ret; 3145 } 3146 3147 int ath6kl_wmi_set_keepalive_cmd(struct wmi *wmi, u8 if_idx, 3148 u8 keep_alive_intvl) 3149 { 3150 struct sk_buff *skb; 3151 struct wmi_set_keepalive_cmd *cmd; 3152 int ret; 3153 3154 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3155 if (!skb) 3156 return -ENOMEM; 3157 3158 cmd = (struct wmi_set_keepalive_cmd *) skb->data; 3159 cmd->keep_alive_intvl = keep_alive_intvl; 3160 3161 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_KEEPALIVE_CMDID, 3162 NO_SYNC_WMIFLAG); 3163 3164 if (ret == 0) 3165 ath6kl_debug_set_keepalive(wmi->parent_dev, keep_alive_intvl); 3166 3167 return ret; 3168 } 3169 3170 int ath6kl_wmi_set_htcap_cmd(struct wmi *wmi, u8 if_idx, 3171 enum nl80211_band band, 3172 struct ath6kl_htcap *htcap) 3173 { 3174 struct sk_buff *skb; 3175 struct wmi_set_htcap_cmd *cmd; 3176 3177 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3178 if (!skb) 3179 return -ENOMEM; 3180 3181 cmd = (struct wmi_set_htcap_cmd *) skb->data; 3182 3183 /* 3184 * NOTE: Band in firmware matches enum nl80211_band, it is unlikely 3185 * this will be changed in firmware. If at all there is any change in 3186 * band value, the host needs to be fixed. 3187 */ 3188 cmd->band = band; 3189 cmd->ht_enable = !!htcap->ht_enable; 3190 cmd->ht20_sgi = !!(htcap->cap_info & IEEE80211_HT_CAP_SGI_20); 3191 cmd->ht40_supported = 3192 !!(htcap->cap_info & IEEE80211_HT_CAP_SUP_WIDTH_20_40); 3193 cmd->ht40_sgi = !!(htcap->cap_info & IEEE80211_HT_CAP_SGI_40); 3194 cmd->intolerant_40mhz = 3195 !!(htcap->cap_info & IEEE80211_HT_CAP_40MHZ_INTOLERANT); 3196 cmd->max_ampdu_len_exp = htcap->ampdu_factor; 3197 3198 ath6kl_dbg(ATH6KL_DBG_WMI, 3199 "Set htcap: band:%d ht_enable:%d 40mhz:%d sgi_20mhz:%d sgi_40mhz:%d 40mhz_intolerant:%d ampdu_len_exp:%d\n", 3200 cmd->band, cmd->ht_enable, cmd->ht40_supported, 3201 cmd->ht20_sgi, cmd->ht40_sgi, cmd->intolerant_40mhz, 3202 cmd->max_ampdu_len_exp); 3203 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_HT_CAP_CMDID, 3204 NO_SYNC_WMIFLAG); 3205 } 3206 3207 int ath6kl_wmi_test_cmd(struct wmi *wmi, void *buf, size_t len) 3208 { 3209 struct sk_buff *skb; 3210 int ret; 3211 3212 skb = ath6kl_wmi_get_new_buf(len); 3213 if (!skb) 3214 return -ENOMEM; 3215 3216 memcpy(skb->data, buf, len); 3217 3218 ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_TEST_CMDID, NO_SYNC_WMIFLAG); 3219 3220 return ret; 3221 } 3222 3223 int ath6kl_wmi_mcast_filter_cmd(struct wmi *wmi, u8 if_idx, bool mc_all_on) 3224 { 3225 struct sk_buff *skb; 3226 struct wmi_mcast_filter_cmd *cmd; 3227 int ret; 3228 3229 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3230 if (!skb) 3231 return -ENOMEM; 3232 3233 cmd = (struct wmi_mcast_filter_cmd *) skb->data; 3234 cmd->mcast_all_enable = mc_all_on; 3235 3236 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_MCAST_FILTER_CMDID, 3237 NO_SYNC_WMIFLAG); 3238 return ret; 3239 } 3240 3241 int ath6kl_wmi_add_del_mcast_filter_cmd(struct wmi *wmi, u8 if_idx, 3242 u8 *filter, bool add_filter) 3243 { 3244 struct sk_buff *skb; 3245 struct wmi_mcast_filter_add_del_cmd *cmd; 3246 int ret; 3247 3248 if ((filter[0] != 0x33 || filter[1] != 0x33) && 3249 (filter[0] != 0x01 || filter[1] != 0x00 || 3250 filter[2] != 0x5e || filter[3] > 0x7f)) { 3251 ath6kl_warn("invalid multicast filter address\n"); 3252 return -EINVAL; 3253 } 3254 3255 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3256 if (!skb) 3257 return -ENOMEM; 3258 3259 cmd = (struct wmi_mcast_filter_add_del_cmd *) skb->data; 3260 memcpy(cmd->mcast_mac, filter, ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE); 3261 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, 3262 add_filter ? WMI_SET_MCAST_FILTER_CMDID : 3263 WMI_DEL_MCAST_FILTER_CMDID, 3264 NO_SYNC_WMIFLAG); 3265 3266 return ret; 3267 } 3268 3269 int ath6kl_wmi_sta_bmiss_enhance_cmd(struct wmi *wmi, u8 if_idx, bool enhance) 3270 { 3271 struct sk_buff *skb; 3272 struct wmi_sta_bmiss_enhance_cmd *cmd; 3273 int ret; 3274 3275 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3276 if (!skb) 3277 return -ENOMEM; 3278 3279 cmd = (struct wmi_sta_bmiss_enhance_cmd *) skb->data; 3280 cmd->enable = enhance ? 1 : 0; 3281 3282 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, 3283 WMI_STA_BMISS_ENHANCE_CMDID, 3284 NO_SYNC_WMIFLAG); 3285 return ret; 3286 } 3287 3288 int ath6kl_wmi_set_regdomain_cmd(struct wmi *wmi, const char *alpha2) 3289 { 3290 struct sk_buff *skb; 3291 struct wmi_set_regdomain_cmd *cmd; 3292 3293 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3294 if (!skb) 3295 return -ENOMEM; 3296 3297 cmd = (struct wmi_set_regdomain_cmd *) skb->data; 3298 memcpy(cmd->iso_name, alpha2, 2); 3299 3300 return ath6kl_wmi_cmd_send(wmi, 0, skb, 3301 WMI_SET_REGDOMAIN_CMDID, 3302 NO_SYNC_WMIFLAG); 3303 } 3304 3305 s32 ath6kl_wmi_get_rate(struct wmi *wmi, s8 rate_index) 3306 { 3307 struct ath6kl *ar = wmi->parent_dev; 3308 u8 sgi = 0; 3309 s32 ret; 3310 3311 if (rate_index == RATE_AUTO) 3312 return 0; 3313 3314 /* SGI is stored as the MSB of the rate_index */ 3315 if (rate_index & RATE_INDEX_MSB) { 3316 rate_index &= RATE_INDEX_WITHOUT_SGI_MASK; 3317 sgi = 1; 3318 } 3319 3320 if (test_bit(ATH6KL_FW_CAPABILITY_RATETABLE_MCS15, 3321 ar->fw_capabilities)) { 3322 if (WARN_ON(rate_index >= ARRAY_SIZE(wmi_rate_tbl_mcs15))) 3323 return 0; 3324 3325 ret = wmi_rate_tbl_mcs15[(u32) rate_index][sgi]; 3326 } else { 3327 if (WARN_ON(rate_index >= ARRAY_SIZE(wmi_rate_tbl))) 3328 return 0; 3329 3330 ret = wmi_rate_tbl[(u32) rate_index][sgi]; 3331 } 3332 3333 return ret; 3334 } 3335 3336 static int ath6kl_wmi_get_pmkid_list_event_rx(struct wmi *wmi, u8 *datap, 3337 u32 len) 3338 { 3339 struct wmi_pmkid_list_reply *reply; 3340 u32 expected_len; 3341 3342 if (len < sizeof(struct wmi_pmkid_list_reply)) 3343 return -EINVAL; 3344 3345 reply = (struct wmi_pmkid_list_reply *)datap; 3346 expected_len = sizeof(reply->num_pmkid) + 3347 le32_to_cpu(reply->num_pmkid) * WMI_PMKID_LEN; 3348 3349 if (len < expected_len) 3350 return -EINVAL; 3351 3352 return 0; 3353 } 3354 3355 static int ath6kl_wmi_addba_req_event_rx(struct wmi *wmi, u8 *datap, int len, 3356 struct ath6kl_vif *vif) 3357 { 3358 struct wmi_addba_req_event *cmd = (struct wmi_addba_req_event *) datap; 3359 3360 aggr_recv_addba_req_evt(vif, cmd->tid, 3361 le16_to_cpu(cmd->st_seq_no), cmd->win_sz); 3362 3363 return 0; 3364 } 3365 3366 static int ath6kl_wmi_delba_req_event_rx(struct wmi *wmi, u8 *datap, int len, 3367 struct ath6kl_vif *vif) 3368 { 3369 struct wmi_delba_event *cmd = (struct wmi_delba_event *) datap; 3370 3371 aggr_recv_delba_req_evt(vif, cmd->tid); 3372 3373 return 0; 3374 } 3375 3376 /* AP mode functions */ 3377 3378 int ath6kl_wmi_ap_profile_commit(struct wmi *wmip, u8 if_idx, 3379 struct wmi_connect_cmd *p) 3380 { 3381 struct sk_buff *skb; 3382 struct wmi_connect_cmd *cm; 3383 int res; 3384 3385 skb = ath6kl_wmi_get_new_buf(sizeof(*cm)); 3386 if (!skb) 3387 return -ENOMEM; 3388 3389 cm = (struct wmi_connect_cmd *) skb->data; 3390 memcpy(cm, p, sizeof(*cm)); 3391 3392 res = ath6kl_wmi_cmd_send(wmip, if_idx, skb, WMI_AP_CONFIG_COMMIT_CMDID, 3393 NO_SYNC_WMIFLAG); 3394 ath6kl_dbg(ATH6KL_DBG_WMI, 3395 "%s: nw_type=%u auth_mode=%u ch=%u ctrl_flags=0x%x-> res=%d\n", 3396 __func__, p->nw_type, p->auth_mode, le16_to_cpu(p->ch), 3397 le32_to_cpu(p->ctrl_flags), res); 3398 return res; 3399 } 3400 3401 int ath6kl_wmi_ap_set_mlme(struct wmi *wmip, u8 if_idx, u8 cmd, const u8 *mac, 3402 u16 reason) 3403 { 3404 struct sk_buff *skb; 3405 struct wmi_ap_set_mlme_cmd *cm; 3406 3407 skb = ath6kl_wmi_get_new_buf(sizeof(*cm)); 3408 if (!skb) 3409 return -ENOMEM; 3410 3411 cm = (struct wmi_ap_set_mlme_cmd *) skb->data; 3412 memcpy(cm->mac, mac, ETH_ALEN); 3413 cm->reason = cpu_to_le16(reason); 3414 cm->cmd = cmd; 3415 3416 ath6kl_dbg(ATH6KL_DBG_WMI, "ap_set_mlme: cmd=%d reason=%d\n", cm->cmd, 3417 cm->reason); 3418 3419 return ath6kl_wmi_cmd_send(wmip, if_idx, skb, WMI_AP_SET_MLME_CMDID, 3420 NO_SYNC_WMIFLAG); 3421 } 3422 3423 int ath6kl_wmi_ap_hidden_ssid(struct wmi *wmi, u8 if_idx, bool enable) 3424 { 3425 struct sk_buff *skb; 3426 struct wmi_ap_hidden_ssid_cmd *cmd; 3427 3428 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3429 if (!skb) 3430 return -ENOMEM; 3431 3432 cmd = (struct wmi_ap_hidden_ssid_cmd *) skb->data; 3433 cmd->hidden_ssid = enable ? 1 : 0; 3434 3435 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_HIDDEN_SSID_CMDID, 3436 NO_SYNC_WMIFLAG); 3437 } 3438 3439 /* This command will be used to enable/disable AP uAPSD feature */ 3440 int ath6kl_wmi_ap_set_apsd(struct wmi *wmi, u8 if_idx, u8 enable) 3441 { 3442 struct wmi_ap_set_apsd_cmd *cmd; 3443 struct sk_buff *skb; 3444 3445 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3446 if (!skb) 3447 return -ENOMEM; 3448 3449 cmd = (struct wmi_ap_set_apsd_cmd *)skb->data; 3450 cmd->enable = enable; 3451 3452 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_SET_APSD_CMDID, 3453 NO_SYNC_WMIFLAG); 3454 } 3455 3456 int ath6kl_wmi_set_apsd_bfrd_traf(struct wmi *wmi, u8 if_idx, 3457 u16 aid, u16 bitmap, u32 flags) 3458 { 3459 struct wmi_ap_apsd_buffered_traffic_cmd *cmd; 3460 struct sk_buff *skb; 3461 3462 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3463 if (!skb) 3464 return -ENOMEM; 3465 3466 cmd = (struct wmi_ap_apsd_buffered_traffic_cmd *)skb->data; 3467 cmd->aid = cpu_to_le16(aid); 3468 cmd->bitmap = cpu_to_le16(bitmap); 3469 cmd->flags = cpu_to_le32(flags); 3470 3471 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, 3472 WMI_AP_APSD_BUFFERED_TRAFFIC_CMDID, 3473 NO_SYNC_WMIFLAG); 3474 } 3475 3476 static int ath6kl_wmi_pspoll_event_rx(struct wmi *wmi, u8 *datap, int len, 3477 struct ath6kl_vif *vif) 3478 { 3479 struct wmi_pspoll_event *ev; 3480 3481 if (len < sizeof(struct wmi_pspoll_event)) 3482 return -EINVAL; 3483 3484 ev = (struct wmi_pspoll_event *) datap; 3485 3486 ath6kl_pspoll_event(vif, le16_to_cpu(ev->aid)); 3487 3488 return 0; 3489 } 3490 3491 static int ath6kl_wmi_dtimexpiry_event_rx(struct wmi *wmi, u8 *datap, int len, 3492 struct ath6kl_vif *vif) 3493 { 3494 ath6kl_dtimexpiry_event(vif); 3495 3496 return 0; 3497 } 3498 3499 int ath6kl_wmi_set_pvb_cmd(struct wmi *wmi, u8 if_idx, u16 aid, 3500 bool flag) 3501 { 3502 struct sk_buff *skb; 3503 struct wmi_ap_set_pvb_cmd *cmd; 3504 int ret; 3505 3506 skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_ap_set_pvb_cmd)); 3507 if (!skb) 3508 return -ENOMEM; 3509 3510 cmd = (struct wmi_ap_set_pvb_cmd *) skb->data; 3511 cmd->aid = cpu_to_le16(aid); 3512 cmd->rsvd = cpu_to_le16(0); 3513 cmd->flag = cpu_to_le32(flag); 3514 3515 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_SET_PVB_CMDID, 3516 NO_SYNC_WMIFLAG); 3517 3518 return ret; 3519 } 3520 3521 int ath6kl_wmi_set_rx_frame_format_cmd(struct wmi *wmi, u8 if_idx, 3522 u8 rx_meta_ver, 3523 bool rx_dot11_hdr, bool defrag_on_host) 3524 { 3525 struct sk_buff *skb; 3526 struct wmi_rx_frame_format_cmd *cmd; 3527 int ret; 3528 3529 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3530 if (!skb) 3531 return -ENOMEM; 3532 3533 cmd = (struct wmi_rx_frame_format_cmd *) skb->data; 3534 cmd->dot11_hdr = rx_dot11_hdr ? 1 : 0; 3535 cmd->defrag_on_host = defrag_on_host ? 1 : 0; 3536 cmd->meta_ver = rx_meta_ver; 3537 3538 /* Delete the local aggr state, on host */ 3539 ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_RX_FRAME_FORMAT_CMDID, 3540 NO_SYNC_WMIFLAG); 3541 3542 return ret; 3543 } 3544 3545 int ath6kl_wmi_set_appie_cmd(struct wmi *wmi, u8 if_idx, u8 mgmt_frm_type, 3546 const u8 *ie, u8 ie_len) 3547 { 3548 struct sk_buff *skb; 3549 struct wmi_set_appie_cmd *p; 3550 3551 skb = ath6kl_wmi_get_new_buf(sizeof(*p) + ie_len); 3552 if (!skb) 3553 return -ENOMEM; 3554 3555 ath6kl_dbg(ATH6KL_DBG_WMI, 3556 "set_appie_cmd: mgmt_frm_type=%u ie_len=%u\n", 3557 mgmt_frm_type, ie_len); 3558 p = (struct wmi_set_appie_cmd *) skb->data; 3559 p->mgmt_frm_type = mgmt_frm_type; 3560 p->ie_len = ie_len; 3561 3562 if (ie != NULL && ie_len > 0) 3563 memcpy(p->ie_info, ie, ie_len); 3564 3565 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_APPIE_CMDID, 3566 NO_SYNC_WMIFLAG); 3567 } 3568 3569 int ath6kl_wmi_set_ie_cmd(struct wmi *wmi, u8 if_idx, u8 ie_id, u8 ie_field, 3570 const u8 *ie_info, u8 ie_len) 3571 { 3572 struct sk_buff *skb; 3573 struct wmi_set_ie_cmd *p; 3574 3575 skb = ath6kl_wmi_get_new_buf(sizeof(*p) + ie_len); 3576 if (!skb) 3577 return -ENOMEM; 3578 3579 ath6kl_dbg(ATH6KL_DBG_WMI, "set_ie_cmd: ie_id=%u ie_ie_field=%u ie_len=%u\n", 3580 ie_id, ie_field, ie_len); 3581 p = (struct wmi_set_ie_cmd *) skb->data; 3582 p->ie_id = ie_id; 3583 p->ie_field = ie_field; 3584 p->ie_len = ie_len; 3585 if (ie_info && ie_len > 0) 3586 memcpy(p->ie_info, ie_info, ie_len); 3587 3588 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_IE_CMDID, 3589 NO_SYNC_WMIFLAG); 3590 } 3591 3592 int ath6kl_wmi_disable_11b_rates_cmd(struct wmi *wmi, bool disable) 3593 { 3594 struct sk_buff *skb; 3595 struct wmi_disable_11b_rates_cmd *cmd; 3596 3597 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3598 if (!skb) 3599 return -ENOMEM; 3600 3601 ath6kl_dbg(ATH6KL_DBG_WMI, "disable_11b_rates_cmd: disable=%u\n", 3602 disable); 3603 cmd = (struct wmi_disable_11b_rates_cmd *) skb->data; 3604 cmd->disable = disable ? 1 : 0; 3605 3606 return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_DISABLE_11B_RATES_CMDID, 3607 NO_SYNC_WMIFLAG); 3608 } 3609 3610 int ath6kl_wmi_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx, u32 freq, u32 dur) 3611 { 3612 struct sk_buff *skb; 3613 struct wmi_remain_on_chnl_cmd *p; 3614 3615 skb = ath6kl_wmi_get_new_buf(sizeof(*p)); 3616 if (!skb) 3617 return -ENOMEM; 3618 3619 ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl_cmd: freq=%u dur=%u\n", 3620 freq, dur); 3621 p = (struct wmi_remain_on_chnl_cmd *) skb->data; 3622 p->freq = cpu_to_le32(freq); 3623 p->duration = cpu_to_le32(dur); 3624 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_REMAIN_ON_CHNL_CMDID, 3625 NO_SYNC_WMIFLAG); 3626 } 3627 3628 /* ath6kl_wmi_send_action_cmd is to be deprecated. Use 3629 * ath6kl_wmi_send_mgmt_cmd instead. The new function supports P2P 3630 * mgmt operations using station interface. 3631 */ 3632 static int ath6kl_wmi_send_action_cmd(struct wmi *wmi, u8 if_idx, u32 id, 3633 u32 freq, u32 wait, const u8 *data, 3634 u16 data_len) 3635 { 3636 struct sk_buff *skb; 3637 struct wmi_send_action_cmd *p; 3638 u8 *buf; 3639 3640 if (wait) 3641 return -EINVAL; /* Offload for wait not supported */ 3642 3643 buf = kmemdup(data, data_len, GFP_KERNEL); 3644 if (!buf) 3645 return -ENOMEM; 3646 3647 skb = ath6kl_wmi_get_new_buf(sizeof(*p) + data_len); 3648 if (!skb) { 3649 kfree(buf); 3650 return -ENOMEM; 3651 } 3652 3653 kfree(wmi->last_mgmt_tx_frame); 3654 wmi->last_mgmt_tx_frame = buf; 3655 wmi->last_mgmt_tx_frame_len = data_len; 3656 3657 ath6kl_dbg(ATH6KL_DBG_WMI, 3658 "send_action_cmd: id=%u freq=%u wait=%u len=%u\n", 3659 id, freq, wait, data_len); 3660 p = (struct wmi_send_action_cmd *) skb->data; 3661 p->id = cpu_to_le32(id); 3662 p->freq = cpu_to_le32(freq); 3663 p->wait = cpu_to_le32(wait); 3664 p->len = cpu_to_le16(data_len); 3665 memcpy(p->data, data, data_len); 3666 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SEND_ACTION_CMDID, 3667 NO_SYNC_WMIFLAG); 3668 } 3669 3670 static int __ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id, 3671 u32 freq, u32 wait, const u8 *data, 3672 u16 data_len, u32 no_cck) 3673 { 3674 struct sk_buff *skb; 3675 struct wmi_send_mgmt_cmd *p; 3676 u8 *buf; 3677 3678 if (wait) 3679 return -EINVAL; /* Offload for wait not supported */ 3680 3681 buf = kmemdup(data, data_len, GFP_KERNEL); 3682 if (!buf) 3683 return -ENOMEM; 3684 3685 skb = ath6kl_wmi_get_new_buf(sizeof(*p) + data_len); 3686 if (!skb) { 3687 kfree(buf); 3688 return -ENOMEM; 3689 } 3690 3691 kfree(wmi->last_mgmt_tx_frame); 3692 wmi->last_mgmt_tx_frame = buf; 3693 wmi->last_mgmt_tx_frame_len = data_len; 3694 3695 ath6kl_dbg(ATH6KL_DBG_WMI, 3696 "send_action_cmd: id=%u freq=%u wait=%u len=%u\n", 3697 id, freq, wait, data_len); 3698 p = (struct wmi_send_mgmt_cmd *) skb->data; 3699 p->id = cpu_to_le32(id); 3700 p->freq = cpu_to_le32(freq); 3701 p->wait = cpu_to_le32(wait); 3702 p->no_cck = cpu_to_le32(no_cck); 3703 p->len = cpu_to_le16(data_len); 3704 memcpy(p->data, data, data_len); 3705 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SEND_MGMT_CMDID, 3706 NO_SYNC_WMIFLAG); 3707 } 3708 3709 int ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id, u32 freq, 3710 u32 wait, const u8 *data, u16 data_len, 3711 u32 no_cck) 3712 { 3713 int status; 3714 struct ath6kl *ar = wmi->parent_dev; 3715 3716 if (test_bit(ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX, 3717 ar->fw_capabilities)) { 3718 /* 3719 * If capable of doing P2P mgmt operations using 3720 * station interface, send additional information like 3721 * supported rates to advertise and xmit rates for 3722 * probe requests 3723 */ 3724 status = __ath6kl_wmi_send_mgmt_cmd(ar->wmi, if_idx, id, freq, 3725 wait, data, data_len, 3726 no_cck); 3727 } else { 3728 status = ath6kl_wmi_send_action_cmd(ar->wmi, if_idx, id, freq, 3729 wait, data, data_len); 3730 } 3731 3732 return status; 3733 } 3734 3735 int ath6kl_wmi_send_probe_response_cmd(struct wmi *wmi, u8 if_idx, u32 freq, 3736 const u8 *dst, const u8 *data, 3737 u16 data_len) 3738 { 3739 struct sk_buff *skb; 3740 struct wmi_p2p_probe_response_cmd *p; 3741 size_t cmd_len = sizeof(*p) + data_len; 3742 3743 if (data_len == 0) 3744 cmd_len++; /* work around target minimum length requirement */ 3745 3746 skb = ath6kl_wmi_get_new_buf(cmd_len); 3747 if (!skb) 3748 return -ENOMEM; 3749 3750 ath6kl_dbg(ATH6KL_DBG_WMI, 3751 "send_probe_response_cmd: freq=%u dst=%pM len=%u\n", 3752 freq, dst, data_len); 3753 p = (struct wmi_p2p_probe_response_cmd *) skb->data; 3754 p->freq = cpu_to_le32(freq); 3755 memcpy(p->destination_addr, dst, ETH_ALEN); 3756 p->len = cpu_to_le16(data_len); 3757 memcpy(p->data, data, data_len); 3758 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, 3759 WMI_SEND_PROBE_RESPONSE_CMDID, 3760 NO_SYNC_WMIFLAG); 3761 } 3762 3763 int ath6kl_wmi_probe_report_req_cmd(struct wmi *wmi, u8 if_idx, bool enable) 3764 { 3765 struct sk_buff *skb; 3766 struct wmi_probe_req_report_cmd *p; 3767 3768 skb = ath6kl_wmi_get_new_buf(sizeof(*p)); 3769 if (!skb) 3770 return -ENOMEM; 3771 3772 ath6kl_dbg(ATH6KL_DBG_WMI, "probe_report_req_cmd: enable=%u\n", 3773 enable); 3774 p = (struct wmi_probe_req_report_cmd *) skb->data; 3775 p->enable = enable ? 1 : 0; 3776 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_PROBE_REQ_REPORT_CMDID, 3777 NO_SYNC_WMIFLAG); 3778 } 3779 3780 int ath6kl_wmi_info_req_cmd(struct wmi *wmi, u8 if_idx, u32 info_req_flags) 3781 { 3782 struct sk_buff *skb; 3783 struct wmi_get_p2p_info *p; 3784 3785 skb = ath6kl_wmi_get_new_buf(sizeof(*p)); 3786 if (!skb) 3787 return -ENOMEM; 3788 3789 ath6kl_dbg(ATH6KL_DBG_WMI, "info_req_cmd: flags=%x\n", 3790 info_req_flags); 3791 p = (struct wmi_get_p2p_info *) skb->data; 3792 p->info_req_flags = cpu_to_le32(info_req_flags); 3793 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_GET_P2P_INFO_CMDID, 3794 NO_SYNC_WMIFLAG); 3795 } 3796 3797 int ath6kl_wmi_cancel_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx) 3798 { 3799 ath6kl_dbg(ATH6KL_DBG_WMI, "cancel_remain_on_chnl_cmd\n"); 3800 return ath6kl_wmi_simple_cmd(wmi, if_idx, 3801 WMI_CANCEL_REMAIN_ON_CHNL_CMDID); 3802 } 3803 3804 int ath6kl_wmi_set_inact_period(struct wmi *wmi, u8 if_idx, int inact_timeout) 3805 { 3806 struct sk_buff *skb; 3807 struct wmi_set_inact_period_cmd *cmd; 3808 3809 skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3810 if (!skb) 3811 return -ENOMEM; 3812 3813 cmd = (struct wmi_set_inact_period_cmd *) skb->data; 3814 cmd->inact_period = cpu_to_le32(inact_timeout); 3815 cmd->num_null_func = 0; 3816 3817 return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_CONN_INACT_CMDID, 3818 NO_SYNC_WMIFLAG); 3819 } 3820 3821 static void ath6kl_wmi_hb_challenge_resp_event(struct wmi *wmi, u8 *datap, 3822 int len) 3823 { 3824 struct wmix_hb_challenge_resp_cmd *cmd; 3825 3826 if (len < sizeof(struct wmix_hb_challenge_resp_cmd)) 3827 return; 3828 3829 cmd = (struct wmix_hb_challenge_resp_cmd *) datap; 3830 ath6kl_recovery_hb_event(wmi->parent_dev, 3831 le32_to_cpu(cmd->cookie)); 3832 } 3833 3834 static int ath6kl_wmi_control_rx_xtnd(struct wmi *wmi, struct sk_buff *skb) 3835 { 3836 struct wmix_cmd_hdr *cmd; 3837 u32 len; 3838 u16 id; 3839 u8 *datap; 3840 int ret = 0; 3841 3842 if (skb->len < sizeof(struct wmix_cmd_hdr)) { 3843 ath6kl_err("bad packet 1\n"); 3844 return -EINVAL; 3845 } 3846 3847 cmd = (struct wmix_cmd_hdr *) skb->data; 3848 id = le32_to_cpu(cmd->cmd_id); 3849 3850 skb_pull(skb, sizeof(struct wmix_cmd_hdr)); 3851 3852 datap = skb->data; 3853 len = skb->len; 3854 3855 switch (id) { 3856 case WMIX_HB_CHALLENGE_RESP_EVENTID: 3857 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi event hb challenge resp\n"); 3858 ath6kl_wmi_hb_challenge_resp_event(wmi, datap, len); 3859 break; 3860 case WMIX_DBGLOG_EVENTID: 3861 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi event dbglog len %d\n", len); 3862 ath6kl_debug_fwlog_event(wmi->parent_dev, datap, len); 3863 break; 3864 default: 3865 ath6kl_warn("unknown cmd id 0x%x\n", id); 3866 ret = -EINVAL; 3867 break; 3868 } 3869 3870 return ret; 3871 } 3872 3873 static int ath6kl_wmi_roam_tbl_event_rx(struct wmi *wmi, u8 *datap, int len) 3874 { 3875 return ath6kl_debug_roam_tbl_event(wmi->parent_dev, datap, len); 3876 } 3877 3878 /* Process interface specific wmi events, caller would free the datap */ 3879 static int ath6kl_wmi_proc_events_vif(struct wmi *wmi, u16 if_idx, u16 cmd_id, 3880 u8 *datap, u32 len) 3881 { 3882 struct ath6kl_vif *vif; 3883 3884 vif = ath6kl_get_vif_by_index(wmi->parent_dev, if_idx); 3885 if (!vif) { 3886 ath6kl_dbg(ATH6KL_DBG_WMI, 3887 "Wmi event for unavailable vif, vif_index:%d\n", 3888 if_idx); 3889 return -EINVAL; 3890 } 3891 3892 switch (cmd_id) { 3893 case WMI_CONNECT_EVENTID: 3894 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CONNECT_EVENTID\n"); 3895 return ath6kl_wmi_connect_event_rx(wmi, datap, len, vif); 3896 case WMI_DISCONNECT_EVENTID: 3897 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DISCONNECT_EVENTID\n"); 3898 return ath6kl_wmi_disconnect_event_rx(wmi, datap, len, vif); 3899 case WMI_TKIP_MICERR_EVENTID: 3900 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TKIP_MICERR_EVENTID\n"); 3901 return ath6kl_wmi_tkip_micerr_event_rx(wmi, datap, len, vif); 3902 case WMI_BSSINFO_EVENTID: 3903 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_BSSINFO_EVENTID\n"); 3904 return ath6kl_wmi_bssinfo_event_rx(wmi, datap, len, vif); 3905 case WMI_NEIGHBOR_REPORT_EVENTID: 3906 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_NEIGHBOR_REPORT_EVENTID\n"); 3907 return ath6kl_wmi_neighbor_report_event_rx(wmi, datap, len, 3908 vif); 3909 case WMI_SCAN_COMPLETE_EVENTID: 3910 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SCAN_COMPLETE_EVENTID\n"); 3911 return ath6kl_wmi_scan_complete_rx(wmi, datap, len, vif); 3912 case WMI_REPORT_STATISTICS_EVENTID: 3913 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_STATISTICS_EVENTID\n"); 3914 return ath6kl_wmi_stats_event_rx(wmi, datap, len, vif); 3915 case WMI_CAC_EVENTID: 3916 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CAC_EVENTID\n"); 3917 return ath6kl_wmi_cac_event_rx(wmi, datap, len, vif); 3918 case WMI_PSPOLL_EVENTID: 3919 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSPOLL_EVENTID\n"); 3920 return ath6kl_wmi_pspoll_event_rx(wmi, datap, len, vif); 3921 case WMI_DTIMEXPIRY_EVENTID: 3922 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DTIMEXPIRY_EVENTID\n"); 3923 return ath6kl_wmi_dtimexpiry_event_rx(wmi, datap, len, vif); 3924 case WMI_ADDBA_REQ_EVENTID: 3925 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_REQ_EVENTID\n"); 3926 return ath6kl_wmi_addba_req_event_rx(wmi, datap, len, vif); 3927 case WMI_DELBA_REQ_EVENTID: 3928 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DELBA_REQ_EVENTID\n"); 3929 return ath6kl_wmi_delba_req_event_rx(wmi, datap, len, vif); 3930 case WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID: 3931 ath6kl_dbg(ATH6KL_DBG_WMI, 3932 "WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID"); 3933 return ath6kl_wmi_host_sleep_mode_cmd_prcd_evt_rx(wmi, vif); 3934 case WMI_REMAIN_ON_CHNL_EVENTID: 3935 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REMAIN_ON_CHNL_EVENTID\n"); 3936 return ath6kl_wmi_remain_on_chnl_event_rx(wmi, datap, len, vif); 3937 case WMI_CANCEL_REMAIN_ON_CHNL_EVENTID: 3938 ath6kl_dbg(ATH6KL_DBG_WMI, 3939 "WMI_CANCEL_REMAIN_ON_CHNL_EVENTID\n"); 3940 return ath6kl_wmi_cancel_remain_on_chnl_event_rx(wmi, datap, 3941 len, vif); 3942 case WMI_TX_STATUS_EVENTID: 3943 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_STATUS_EVENTID\n"); 3944 return ath6kl_wmi_tx_status_event_rx(wmi, datap, len, vif); 3945 case WMI_RX_PROBE_REQ_EVENTID: 3946 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RX_PROBE_REQ_EVENTID\n"); 3947 return ath6kl_wmi_rx_probe_req_event_rx(wmi, datap, len, vif); 3948 case WMI_RX_ACTION_EVENTID: 3949 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RX_ACTION_EVENTID\n"); 3950 return ath6kl_wmi_rx_action_event_rx(wmi, datap, len, vif); 3951 case WMI_TXE_NOTIFY_EVENTID: 3952 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TXE_NOTIFY_EVENTID\n"); 3953 return ath6kl_wmi_txe_notify_event_rx(wmi, datap, len, vif); 3954 default: 3955 ath6kl_dbg(ATH6KL_DBG_WMI, "unknown cmd id 0x%x\n", cmd_id); 3956 return -EINVAL; 3957 } 3958 3959 return 0; 3960 } 3961 3962 static int ath6kl_wmi_proc_events(struct wmi *wmi, struct sk_buff *skb) 3963 { 3964 struct wmi_cmd_hdr *cmd; 3965 int ret = 0; 3966 u32 len; 3967 u16 id; 3968 u8 if_idx; 3969 u8 *datap; 3970 3971 cmd = (struct wmi_cmd_hdr *) skb->data; 3972 id = le16_to_cpu(cmd->cmd_id); 3973 if_idx = le16_to_cpu(cmd->info1) & WMI_CMD_HDR_IF_ID_MASK; 3974 3975 skb_pull(skb, sizeof(struct wmi_cmd_hdr)); 3976 datap = skb->data; 3977 len = skb->len; 3978 3979 ath6kl_dbg(ATH6KL_DBG_WMI, "wmi rx id %d len %d\n", id, len); 3980 ath6kl_dbg_dump(ATH6KL_DBG_WMI_DUMP, NULL, "wmi rx ", 3981 datap, len); 3982 3983 switch (id) { 3984 case WMI_GET_BITRATE_CMDID: 3985 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_BITRATE_CMDID\n"); 3986 ret = ath6kl_wmi_bitrate_reply_rx(wmi, datap, len); 3987 break; 3988 case WMI_GET_CHANNEL_LIST_CMDID: 3989 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_CHANNEL_LIST_CMDID\n"); 3990 ret = ath6kl_wmi_ch_list_reply_rx(wmi, datap, len); 3991 break; 3992 case WMI_GET_TX_PWR_CMDID: 3993 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_TX_PWR_CMDID\n"); 3994 ret = ath6kl_wmi_tx_pwr_reply_rx(wmi, datap, len); 3995 break; 3996 case WMI_READY_EVENTID: 3997 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_READY_EVENTID\n"); 3998 ret = ath6kl_wmi_ready_event_rx(wmi, datap, len); 3999 break; 4000 case WMI_PEER_NODE_EVENTID: 4001 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PEER_NODE_EVENTID\n"); 4002 ret = ath6kl_wmi_peer_node_event_rx(wmi, datap, len); 4003 break; 4004 case WMI_REGDOMAIN_EVENTID: 4005 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REGDOMAIN_EVENTID\n"); 4006 ath6kl_wmi_regdomain_event(wmi, datap, len); 4007 break; 4008 case WMI_PSTREAM_TIMEOUT_EVENTID: 4009 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSTREAM_TIMEOUT_EVENTID\n"); 4010 ret = ath6kl_wmi_pstream_timeout_event_rx(wmi, datap, len); 4011 break; 4012 case WMI_CMDERROR_EVENTID: 4013 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CMDERROR_EVENTID\n"); 4014 ret = ath6kl_wmi_error_event_rx(wmi, datap, len); 4015 break; 4016 case WMI_RSSI_THRESHOLD_EVENTID: 4017 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RSSI_THRESHOLD_EVENTID\n"); 4018 ret = ath6kl_wmi_rssi_threshold_event_rx(wmi, datap, len); 4019 break; 4020 case WMI_ERROR_REPORT_EVENTID: 4021 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ERROR_REPORT_EVENTID\n"); 4022 break; 4023 case WMI_OPT_RX_FRAME_EVENTID: 4024 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_OPT_RX_FRAME_EVENTID\n"); 4025 /* this event has been deprecated */ 4026 break; 4027 case WMI_REPORT_ROAM_TBL_EVENTID: 4028 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_TBL_EVENTID\n"); 4029 ret = ath6kl_wmi_roam_tbl_event_rx(wmi, datap, len); 4030 break; 4031 case WMI_EXTENSION_EVENTID: 4032 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_EXTENSION_EVENTID\n"); 4033 ret = ath6kl_wmi_control_rx_xtnd(wmi, skb); 4034 break; 4035 case WMI_CHANNEL_CHANGE_EVENTID: 4036 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CHANNEL_CHANGE_EVENTID\n"); 4037 break; 4038 case WMI_REPORT_ROAM_DATA_EVENTID: 4039 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_DATA_EVENTID\n"); 4040 break; 4041 case WMI_TEST_EVENTID: 4042 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TEST_EVENTID\n"); 4043 ret = ath6kl_wmi_test_rx(wmi, datap, len); 4044 break; 4045 case WMI_GET_FIXRATES_CMDID: 4046 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_FIXRATES_CMDID\n"); 4047 ret = ath6kl_wmi_ratemask_reply_rx(wmi, datap, len); 4048 break; 4049 case WMI_TX_RETRY_ERR_EVENTID: 4050 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_RETRY_ERR_EVENTID\n"); 4051 break; 4052 case WMI_SNR_THRESHOLD_EVENTID: 4053 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SNR_THRESHOLD_EVENTID\n"); 4054 ret = ath6kl_wmi_snr_threshold_event_rx(wmi, datap, len); 4055 break; 4056 case WMI_LQ_THRESHOLD_EVENTID: 4057 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_LQ_THRESHOLD_EVENTID\n"); 4058 break; 4059 case WMI_APLIST_EVENTID: 4060 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_APLIST_EVENTID\n"); 4061 ret = ath6kl_wmi_aplist_event_rx(wmi, datap, len); 4062 break; 4063 case WMI_GET_KEEPALIVE_CMDID: 4064 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_KEEPALIVE_CMDID\n"); 4065 ret = ath6kl_wmi_keepalive_reply_rx(wmi, datap, len); 4066 break; 4067 case WMI_GET_WOW_LIST_EVENTID: 4068 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_WOW_LIST_EVENTID\n"); 4069 break; 4070 case WMI_GET_PMKID_LIST_EVENTID: 4071 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_PMKID_LIST_EVENTID\n"); 4072 ret = ath6kl_wmi_get_pmkid_list_event_rx(wmi, datap, len); 4073 break; 4074 case WMI_SET_PARAMS_REPLY_EVENTID: 4075 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SET_PARAMS_REPLY_EVENTID\n"); 4076 break; 4077 case WMI_ADDBA_RESP_EVENTID: 4078 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_RESP_EVENTID\n"); 4079 break; 4080 case WMI_REPORT_BTCOEX_CONFIG_EVENTID: 4081 ath6kl_dbg(ATH6KL_DBG_WMI, 4082 "WMI_REPORT_BTCOEX_CONFIG_EVENTID\n"); 4083 break; 4084 case WMI_REPORT_BTCOEX_STATS_EVENTID: 4085 ath6kl_dbg(ATH6KL_DBG_WMI, 4086 "WMI_REPORT_BTCOEX_STATS_EVENTID\n"); 4087 break; 4088 case WMI_TX_COMPLETE_EVENTID: 4089 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_COMPLETE_EVENTID\n"); 4090 ret = ath6kl_wmi_tx_complete_event_rx(datap, len); 4091 break; 4092 case WMI_P2P_CAPABILITIES_EVENTID: 4093 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_P2P_CAPABILITIES_EVENTID\n"); 4094 ret = ath6kl_wmi_p2p_capabilities_event_rx(datap, len); 4095 break; 4096 case WMI_P2P_INFO_EVENTID: 4097 ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_P2P_INFO_EVENTID\n"); 4098 ret = ath6kl_wmi_p2p_info_event_rx(datap, len); 4099 break; 4100 default: 4101 /* may be the event is interface specific */ 4102 ret = ath6kl_wmi_proc_events_vif(wmi, if_idx, id, datap, len); 4103 break; 4104 } 4105 4106 dev_kfree_skb(skb); 4107 return ret; 4108 } 4109 4110 /* Control Path */ 4111 int ath6kl_wmi_control_rx(struct wmi *wmi, struct sk_buff *skb) 4112 { 4113 if (WARN_ON(skb == NULL)) 4114 return -EINVAL; 4115 4116 if (skb->len < sizeof(struct wmi_cmd_hdr)) { 4117 ath6kl_err("bad packet 1\n"); 4118 dev_kfree_skb(skb); 4119 return -EINVAL; 4120 } 4121 4122 trace_ath6kl_wmi_event(skb->data, skb->len); 4123 4124 return ath6kl_wmi_proc_events(wmi, skb); 4125 } 4126 4127 void ath6kl_wmi_reset(struct wmi *wmi) 4128 { 4129 spin_lock_bh(&wmi->lock); 4130 4131 wmi->fat_pipe_exist = 0; 4132 memset(wmi->stream_exist_for_ac, 0, sizeof(wmi->stream_exist_for_ac)); 4133 4134 spin_unlock_bh(&wmi->lock); 4135 } 4136 4137 void *ath6kl_wmi_init(struct ath6kl *dev) 4138 { 4139 struct wmi *wmi; 4140 4141 wmi = kzalloc(sizeof(struct wmi), GFP_KERNEL); 4142 if (!wmi) 4143 return NULL; 4144 4145 spin_lock_init(&wmi->lock); 4146 4147 wmi->parent_dev = dev; 4148 4149 wmi->pwr_mode = REC_POWER; 4150 4151 ath6kl_wmi_reset(wmi); 4152 4153 return wmi; 4154 } 4155 4156 void ath6kl_wmi_shutdown(struct wmi *wmi) 4157 { 4158 if (!wmi) 4159 return; 4160 4161 kfree(wmi->last_mgmt_tx_frame); 4162 kfree(wmi); 4163 } 4164