1bdcd8170SKalle Valo /* 2bdcd8170SKalle Valo * Copyright (c) 2004-2011 Atheros Communications Inc. 3bdcd8170SKalle Valo * 4bdcd8170SKalle Valo * Permission to use, copy, modify, and/or distribute this software for any 5bdcd8170SKalle Valo * purpose with or without fee is hereby granted, provided that the above 6bdcd8170SKalle Valo * copyright notice and this permission notice appear in all copies. 7bdcd8170SKalle Valo * 8bdcd8170SKalle Valo * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9bdcd8170SKalle Valo * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10bdcd8170SKalle Valo * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11bdcd8170SKalle Valo * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12bdcd8170SKalle Valo * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13bdcd8170SKalle Valo * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14bdcd8170SKalle Valo * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15bdcd8170SKalle Valo */ 16bdcd8170SKalle Valo 17bdcd8170SKalle Valo #include <linux/ip.h> 18bdcd8170SKalle Valo #include "core.h" 19bdcd8170SKalle Valo #include "debug.h" 20003353b0SKalle Valo #include "testmode.h" 2106033760SVivek Natarajan #include "../regd.h" 2206033760SVivek Natarajan #include "../regd_common.h" 23bdcd8170SKalle Valo 24240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_sync_point(struct wmi *wmi, u8 if_idx); 25bdcd8170SKalle Valo 26bdcd8170SKalle Valo static const s32 wmi_rate_tbl[][2] = { 27bdcd8170SKalle Valo /* {W/O SGI, with SGI} */ 28bdcd8170SKalle Valo {1000, 1000}, 29bdcd8170SKalle Valo {2000, 2000}, 30bdcd8170SKalle Valo {5500, 5500}, 31bdcd8170SKalle Valo {11000, 11000}, 32bdcd8170SKalle Valo {6000, 6000}, 33bdcd8170SKalle Valo {9000, 9000}, 34bdcd8170SKalle Valo {12000, 12000}, 35bdcd8170SKalle Valo {18000, 18000}, 36bdcd8170SKalle Valo {24000, 24000}, 37bdcd8170SKalle Valo {36000, 36000}, 38bdcd8170SKalle Valo {48000, 48000}, 39bdcd8170SKalle Valo {54000, 54000}, 40bdcd8170SKalle Valo {6500, 7200}, 41bdcd8170SKalle Valo {13000, 14400}, 42bdcd8170SKalle Valo {19500, 21700}, 43bdcd8170SKalle Valo {26000, 28900}, 44bdcd8170SKalle Valo {39000, 43300}, 45bdcd8170SKalle Valo {52000, 57800}, 46bdcd8170SKalle Valo {58500, 65000}, 47bdcd8170SKalle Valo {65000, 72200}, 48bdcd8170SKalle Valo {13500, 15000}, 49bdcd8170SKalle Valo {27000, 30000}, 50bdcd8170SKalle Valo {40500, 45000}, 51bdcd8170SKalle Valo {54000, 60000}, 52bdcd8170SKalle Valo {81000, 90000}, 53bdcd8170SKalle Valo {108000, 120000}, 54bdcd8170SKalle Valo {121500, 135000}, 55bdcd8170SKalle Valo {135000, 150000}, 56bdcd8170SKalle Valo {0, 0} 57bdcd8170SKalle Valo }; 58bdcd8170SKalle Valo 59bdcd8170SKalle Valo /* 802.1d to AC mapping. Refer pg 57 of WMM-test-plan-v1.2 */ 60bdcd8170SKalle Valo static const u8 up_to_ac[] = { 61bdcd8170SKalle Valo WMM_AC_BE, 62bdcd8170SKalle Valo WMM_AC_BK, 63bdcd8170SKalle Valo WMM_AC_BK, 64bdcd8170SKalle Valo WMM_AC_BE, 65bdcd8170SKalle Valo WMM_AC_VI, 66bdcd8170SKalle Valo WMM_AC_VI, 67bdcd8170SKalle Valo WMM_AC_VO, 68bdcd8170SKalle Valo WMM_AC_VO, 69bdcd8170SKalle Valo }; 70bdcd8170SKalle Valo 71bdcd8170SKalle Valo void ath6kl_wmi_set_control_ep(struct wmi *wmi, enum htc_endpoint_id ep_id) 72bdcd8170SKalle Valo { 73bdcd8170SKalle Valo if (WARN_ON(ep_id == ENDPOINT_UNUSED || ep_id >= ENDPOINT_MAX)) 74bdcd8170SKalle Valo return; 75bdcd8170SKalle Valo 76bdcd8170SKalle Valo wmi->ep_id = ep_id; 77bdcd8170SKalle Valo } 78bdcd8170SKalle Valo 79bdcd8170SKalle Valo enum htc_endpoint_id ath6kl_wmi_get_control_ep(struct wmi *wmi) 80bdcd8170SKalle Valo { 81bdcd8170SKalle Valo return wmi->ep_id; 82bdcd8170SKalle Valo } 83bdcd8170SKalle Valo 846765d0aaSVasanthakumar Thiagarajan struct ath6kl_vif *ath6kl_get_vif_by_index(struct ath6kl *ar, u8 if_idx) 85240d2799SVasanthakumar Thiagarajan { 86990bd915SVasanthakumar Thiagarajan struct ath6kl_vif *vif, *found = NULL; 87990bd915SVasanthakumar Thiagarajan 8871f96ee6SKalle Valo if (WARN_ON(if_idx > (ar->vif_max - 1))) 89240d2799SVasanthakumar Thiagarajan return NULL; 90240d2799SVasanthakumar Thiagarajan 91990bd915SVasanthakumar Thiagarajan /* FIXME: Locking */ 9211f6e40dSVasanthakumar Thiagarajan spin_lock_bh(&ar->list_lock); 93990bd915SVasanthakumar Thiagarajan list_for_each_entry(vif, &ar->vif_list, list) { 94990bd915SVasanthakumar Thiagarajan if (vif->fw_vif_idx == if_idx) { 95990bd915SVasanthakumar Thiagarajan found = vif; 96990bd915SVasanthakumar Thiagarajan break; 97990bd915SVasanthakumar Thiagarajan } 98990bd915SVasanthakumar Thiagarajan } 9911f6e40dSVasanthakumar Thiagarajan spin_unlock_bh(&ar->list_lock); 100990bd915SVasanthakumar Thiagarajan 101990bd915SVasanthakumar Thiagarajan return found; 102240d2799SVasanthakumar Thiagarajan } 103240d2799SVasanthakumar Thiagarajan 104bdcd8170SKalle Valo /* Performs DIX to 802.3 encapsulation for transmit packets. 105bdcd8170SKalle Valo * Assumes the entire DIX header is contigous and that there is 106bdcd8170SKalle Valo * enough room in the buffer for a 802.3 mac header and LLC+SNAP headers. 107bdcd8170SKalle Valo */ 108bdcd8170SKalle Valo int ath6kl_wmi_dix_2_dot3(struct wmi *wmi, struct sk_buff *skb) 109bdcd8170SKalle Valo { 110bdcd8170SKalle Valo struct ath6kl_llc_snap_hdr *llc_hdr; 111bdcd8170SKalle Valo struct ethhdr *eth_hdr; 112bdcd8170SKalle Valo size_t new_len; 113bdcd8170SKalle Valo __be16 type; 114bdcd8170SKalle Valo u8 *datap; 115bdcd8170SKalle Valo u16 size; 116bdcd8170SKalle Valo 117bdcd8170SKalle Valo if (WARN_ON(skb == NULL)) 118bdcd8170SKalle Valo return -EINVAL; 119bdcd8170SKalle Valo 120bdcd8170SKalle Valo size = sizeof(struct ath6kl_llc_snap_hdr) + sizeof(struct wmi_data_hdr); 121bdcd8170SKalle Valo if (skb_headroom(skb) < size) 122bdcd8170SKalle Valo return -ENOMEM; 123bdcd8170SKalle Valo 124bdcd8170SKalle Valo eth_hdr = (struct ethhdr *) skb->data; 125bdcd8170SKalle Valo type = eth_hdr->h_proto; 126bdcd8170SKalle Valo 127bdcd8170SKalle Valo if (!is_ethertype(be16_to_cpu(type))) { 128bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 129bdcd8170SKalle Valo "%s: pkt is already in 802.3 format\n", __func__); 130bdcd8170SKalle Valo return 0; 131bdcd8170SKalle Valo } 132bdcd8170SKalle Valo 133bdcd8170SKalle Valo new_len = skb->len - sizeof(*eth_hdr) + sizeof(*llc_hdr); 134bdcd8170SKalle Valo 135bdcd8170SKalle Valo skb_push(skb, sizeof(struct ath6kl_llc_snap_hdr)); 136bdcd8170SKalle Valo datap = skb->data; 137bdcd8170SKalle Valo 138bdcd8170SKalle Valo eth_hdr->h_proto = cpu_to_be16(new_len); 139bdcd8170SKalle Valo 140bdcd8170SKalle Valo memcpy(datap, eth_hdr, sizeof(*eth_hdr)); 141bdcd8170SKalle Valo 142bdcd8170SKalle Valo llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap + sizeof(*eth_hdr)); 143bdcd8170SKalle Valo llc_hdr->dsap = 0xAA; 144bdcd8170SKalle Valo llc_hdr->ssap = 0xAA; 145bdcd8170SKalle Valo llc_hdr->cntl = 0x03; 146bdcd8170SKalle Valo llc_hdr->org_code[0] = 0x0; 147bdcd8170SKalle Valo llc_hdr->org_code[1] = 0x0; 148bdcd8170SKalle Valo llc_hdr->org_code[2] = 0x0; 149bdcd8170SKalle Valo llc_hdr->eth_type = type; 150bdcd8170SKalle Valo 151bdcd8170SKalle Valo return 0; 152bdcd8170SKalle Valo } 153bdcd8170SKalle Valo 154bdcd8170SKalle Valo static int ath6kl_wmi_meta_add(struct wmi *wmi, struct sk_buff *skb, 155bdcd8170SKalle Valo u8 *version, void *tx_meta_info) 156bdcd8170SKalle Valo { 157bdcd8170SKalle Valo struct wmi_tx_meta_v1 *v1; 158bdcd8170SKalle Valo struct wmi_tx_meta_v2 *v2; 159bdcd8170SKalle Valo 160bdcd8170SKalle Valo if (WARN_ON(skb == NULL || version == NULL)) 161bdcd8170SKalle Valo return -EINVAL; 162bdcd8170SKalle Valo 163bdcd8170SKalle Valo switch (*version) { 164bdcd8170SKalle Valo case WMI_META_VERSION_1: 165bdcd8170SKalle Valo skb_push(skb, WMI_MAX_TX_META_SZ); 166bdcd8170SKalle Valo v1 = (struct wmi_tx_meta_v1 *) skb->data; 167bdcd8170SKalle Valo v1->pkt_id = 0; 168bdcd8170SKalle Valo v1->rate_plcy_id = 0; 169bdcd8170SKalle Valo *version = WMI_META_VERSION_1; 170bdcd8170SKalle Valo break; 171bdcd8170SKalle Valo case WMI_META_VERSION_2: 172bdcd8170SKalle Valo skb_push(skb, WMI_MAX_TX_META_SZ); 173bdcd8170SKalle Valo v2 = (struct wmi_tx_meta_v2 *) skb->data; 174bdcd8170SKalle Valo memcpy(v2, (struct wmi_tx_meta_v2 *) tx_meta_info, 175bdcd8170SKalle Valo sizeof(struct wmi_tx_meta_v2)); 176bdcd8170SKalle Valo break; 177bdcd8170SKalle Valo } 178bdcd8170SKalle Valo 179bdcd8170SKalle Valo return 0; 180bdcd8170SKalle Valo } 181bdcd8170SKalle Valo 182bdcd8170SKalle Valo int ath6kl_wmi_data_hdr_add(struct wmi *wmi, struct sk_buff *skb, 183c1762a3fSThirumalai Pachamuthu u8 msg_type, u32 flags, 184bdcd8170SKalle Valo enum wmi_data_hdr_data_type data_type, 1856765d0aaSVasanthakumar Thiagarajan u8 meta_ver, void *tx_meta_info, u8 if_idx) 186bdcd8170SKalle Valo { 187bdcd8170SKalle Valo struct wmi_data_hdr *data_hdr; 188bdcd8170SKalle Valo int ret; 189bdcd8170SKalle Valo 19071f96ee6SKalle Valo if (WARN_ON(skb == NULL || (if_idx > wmi->parent_dev->vif_max - 1))) 191bdcd8170SKalle Valo return -EINVAL; 192bdcd8170SKalle Valo 1933ce6ff50SVasanthakumar Thiagarajan if (tx_meta_info) { 194bdcd8170SKalle Valo ret = ath6kl_wmi_meta_add(wmi, skb, &meta_ver, tx_meta_info); 195bdcd8170SKalle Valo if (ret) 196bdcd8170SKalle Valo return ret; 1973ce6ff50SVasanthakumar Thiagarajan } 198bdcd8170SKalle Valo 199bdcd8170SKalle Valo skb_push(skb, sizeof(struct wmi_data_hdr)); 200bdcd8170SKalle Valo 201bdcd8170SKalle Valo data_hdr = (struct wmi_data_hdr *)skb->data; 202bdcd8170SKalle Valo memset(data_hdr, 0, sizeof(struct wmi_data_hdr)); 203bdcd8170SKalle Valo 204bdcd8170SKalle Valo data_hdr->info = msg_type << WMI_DATA_HDR_MSG_TYPE_SHIFT; 205bdcd8170SKalle Valo data_hdr->info |= data_type << WMI_DATA_HDR_DATA_TYPE_SHIFT; 206bdcd8170SKalle Valo 207c1762a3fSThirumalai Pachamuthu if (flags & WMI_DATA_HDR_FLAGS_MORE) 208c1762a3fSThirumalai Pachamuthu data_hdr->info |= WMI_DATA_HDR_MORE; 209bdcd8170SKalle Valo 210c1762a3fSThirumalai Pachamuthu if (flags & WMI_DATA_HDR_FLAGS_EOSP) 211c1762a3fSThirumalai Pachamuthu data_hdr->info3 |= cpu_to_le16(WMI_DATA_HDR_EOSP); 212c1762a3fSThirumalai Pachamuthu 213c1762a3fSThirumalai Pachamuthu data_hdr->info2 |= cpu_to_le16(meta_ver << WMI_DATA_HDR_META_SHIFT); 214c1762a3fSThirumalai Pachamuthu data_hdr->info3 |= cpu_to_le16(if_idx & WMI_DATA_HDR_IF_IDX_MASK); 215bdcd8170SKalle Valo 216bdcd8170SKalle Valo return 0; 217bdcd8170SKalle Valo } 218bdcd8170SKalle Valo 219c1762a3fSThirumalai Pachamuthu u8 ath6kl_wmi_determine_user_priority(u8 *pkt, u32 layer2_pri) 220bdcd8170SKalle Valo { 221bdcd8170SKalle Valo struct iphdr *ip_hdr = (struct iphdr *) pkt; 222bdcd8170SKalle Valo u8 ip_pri; 223bdcd8170SKalle Valo 224bdcd8170SKalle Valo /* 225bdcd8170SKalle Valo * Determine IPTOS priority 226bdcd8170SKalle Valo * 227bdcd8170SKalle Valo * IP-TOS - 8bits 228bdcd8170SKalle Valo * : DSCP(6-bits) ECN(2-bits) 229bdcd8170SKalle Valo * : DSCP - P2 P1 P0 X X X 230bdcd8170SKalle Valo * where (P2 P1 P0) form 802.1D 231bdcd8170SKalle Valo */ 232bdcd8170SKalle Valo ip_pri = ip_hdr->tos >> 5; 233bdcd8170SKalle Valo ip_pri &= 0x7; 234bdcd8170SKalle Valo 235bdcd8170SKalle Valo if ((layer2_pri & 0x7) > ip_pri) 236bdcd8170SKalle Valo return (u8) layer2_pri & 0x7; 237bdcd8170SKalle Valo else 238bdcd8170SKalle Valo return ip_pri; 239bdcd8170SKalle Valo } 240bdcd8170SKalle Valo 241c1762a3fSThirumalai Pachamuthu u8 ath6kl_wmi_get_traffic_class(u8 user_priority) 242c1762a3fSThirumalai Pachamuthu { 243c1762a3fSThirumalai Pachamuthu return up_to_ac[user_priority & 0x7]; 244c1762a3fSThirumalai Pachamuthu } 245c1762a3fSThirumalai Pachamuthu 246240d2799SVasanthakumar Thiagarajan int ath6kl_wmi_implicit_create_pstream(struct wmi *wmi, u8 if_idx, 247240d2799SVasanthakumar Thiagarajan struct sk_buff *skb, 248bdcd8170SKalle Valo u32 layer2_priority, bool wmm_enabled, 249bdcd8170SKalle Valo u8 *ac) 250bdcd8170SKalle Valo { 251bdcd8170SKalle Valo struct wmi_data_hdr *data_hdr; 252bdcd8170SKalle Valo struct ath6kl_llc_snap_hdr *llc_hdr; 253bdcd8170SKalle Valo struct wmi_create_pstream_cmd cmd; 254bdcd8170SKalle Valo u32 meta_size, hdr_size; 255bdcd8170SKalle Valo u16 ip_type = IP_ETHERTYPE; 256bdcd8170SKalle Valo u8 stream_exist, usr_pri; 257bdcd8170SKalle Valo u8 traffic_class = WMM_AC_BE; 258bdcd8170SKalle Valo u8 *datap; 259bdcd8170SKalle Valo 260bdcd8170SKalle Valo if (WARN_ON(skb == NULL)) 261bdcd8170SKalle Valo return -EINVAL; 262bdcd8170SKalle Valo 263bdcd8170SKalle Valo datap = skb->data; 264bdcd8170SKalle Valo data_hdr = (struct wmi_data_hdr *) datap; 265bdcd8170SKalle Valo 266bdcd8170SKalle Valo meta_size = ((le16_to_cpu(data_hdr->info2) >> WMI_DATA_HDR_META_SHIFT) & 267bdcd8170SKalle Valo WMI_DATA_HDR_META_MASK) ? WMI_MAX_TX_META_SZ : 0; 268bdcd8170SKalle Valo 269bdcd8170SKalle Valo if (!wmm_enabled) { 270bdcd8170SKalle Valo /* If WMM is disabled all traffic goes as BE traffic */ 271bdcd8170SKalle Valo usr_pri = 0; 272bdcd8170SKalle Valo } else { 273bdcd8170SKalle Valo hdr_size = sizeof(struct ethhdr); 274bdcd8170SKalle Valo 275bdcd8170SKalle Valo llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap + 276bdcd8170SKalle Valo sizeof(struct 277bdcd8170SKalle Valo wmi_data_hdr) + 278bdcd8170SKalle Valo meta_size + hdr_size); 279bdcd8170SKalle Valo 280bdcd8170SKalle Valo if (llc_hdr->eth_type == htons(ip_type)) { 281bdcd8170SKalle Valo /* 282bdcd8170SKalle Valo * Extract the endpoint info from the TOS field 283bdcd8170SKalle Valo * in the IP header. 284bdcd8170SKalle Valo */ 285bdcd8170SKalle Valo usr_pri = 286bdcd8170SKalle Valo ath6kl_wmi_determine_user_priority(((u8 *) llc_hdr) + 287bdcd8170SKalle Valo sizeof(struct ath6kl_llc_snap_hdr), 288bdcd8170SKalle Valo layer2_priority); 289bdcd8170SKalle Valo } else 290bdcd8170SKalle Valo usr_pri = layer2_priority & 0x7; 291bdcd8170SKalle Valo } 292bdcd8170SKalle Valo 293a7f0c58bSKalle Valo /* 294a7f0c58bSKalle Valo * workaround for WMM S5 295a7f0c58bSKalle Valo * 296a7f0c58bSKalle Valo * FIXME: wmi->traffic_class is always 100 so this test doesn't 297a7f0c58bSKalle Valo * make sense 298a7f0c58bSKalle Valo */ 299bdcd8170SKalle Valo if ((wmi->traffic_class == WMM_AC_VI) && 300bdcd8170SKalle Valo ((usr_pri == 5) || (usr_pri == 4))) 301bdcd8170SKalle Valo usr_pri = 1; 302bdcd8170SKalle Valo 303bdcd8170SKalle Valo /* Convert user priority to traffic class */ 304bdcd8170SKalle Valo traffic_class = up_to_ac[usr_pri & 0x7]; 305bdcd8170SKalle Valo 306bdcd8170SKalle Valo wmi_data_hdr_set_up(data_hdr, usr_pri); 307bdcd8170SKalle Valo 308bdcd8170SKalle Valo spin_lock_bh(&wmi->lock); 309bdcd8170SKalle Valo stream_exist = wmi->fat_pipe_exist; 310bdcd8170SKalle Valo spin_unlock_bh(&wmi->lock); 311bdcd8170SKalle Valo 312bdcd8170SKalle Valo if (!(stream_exist & (1 << traffic_class))) { 313bdcd8170SKalle Valo memset(&cmd, 0, sizeof(cmd)); 314bdcd8170SKalle Valo cmd.traffic_class = traffic_class; 315bdcd8170SKalle Valo cmd.user_pri = usr_pri; 316bdcd8170SKalle Valo cmd.inactivity_int = 317bdcd8170SKalle Valo cpu_to_le32(WMI_IMPLICIT_PSTREAM_INACTIVITY_INT); 318bdcd8170SKalle Valo /* Implicit streams are created with TSID 0xFF */ 319bdcd8170SKalle Valo cmd.tsid = WMI_IMPLICIT_PSTREAM; 320240d2799SVasanthakumar Thiagarajan ath6kl_wmi_create_pstream_cmd(wmi, if_idx, &cmd); 321bdcd8170SKalle Valo } 322bdcd8170SKalle Valo 323bdcd8170SKalle Valo *ac = traffic_class; 324bdcd8170SKalle Valo 325bdcd8170SKalle Valo return 0; 326bdcd8170SKalle Valo } 327bdcd8170SKalle Valo 328bdcd8170SKalle Valo int ath6kl_wmi_dot11_hdr_remove(struct wmi *wmi, struct sk_buff *skb) 329bdcd8170SKalle Valo { 330bdcd8170SKalle Valo struct ieee80211_hdr_3addr *pwh, wh; 331bdcd8170SKalle Valo struct ath6kl_llc_snap_hdr *llc_hdr; 332bdcd8170SKalle Valo struct ethhdr eth_hdr; 333bdcd8170SKalle Valo u32 hdr_size; 334bdcd8170SKalle Valo u8 *datap; 335bdcd8170SKalle Valo __le16 sub_type; 336bdcd8170SKalle Valo 337bdcd8170SKalle Valo if (WARN_ON(skb == NULL)) 338bdcd8170SKalle Valo return -EINVAL; 339bdcd8170SKalle Valo 340bdcd8170SKalle Valo datap = skb->data; 341bdcd8170SKalle Valo pwh = (struct ieee80211_hdr_3addr *) datap; 342bdcd8170SKalle Valo 343bdcd8170SKalle Valo sub_type = pwh->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE); 344bdcd8170SKalle Valo 345bdcd8170SKalle Valo memcpy((u8 *) &wh, datap, sizeof(struct ieee80211_hdr_3addr)); 346bdcd8170SKalle Valo 347bdcd8170SKalle Valo /* Strip off the 802.11 header */ 348bdcd8170SKalle Valo if (sub_type == cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) { 349bdcd8170SKalle Valo hdr_size = roundup(sizeof(struct ieee80211_qos_hdr), 350bdcd8170SKalle Valo sizeof(u32)); 351bdcd8170SKalle Valo skb_pull(skb, hdr_size); 352bdcd8170SKalle Valo } else if (sub_type == cpu_to_le16(IEEE80211_STYPE_DATA)) 353bdcd8170SKalle Valo skb_pull(skb, sizeof(struct ieee80211_hdr_3addr)); 354bdcd8170SKalle Valo 355bdcd8170SKalle Valo datap = skb->data; 356bdcd8170SKalle Valo llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap); 357bdcd8170SKalle Valo 358c8790cbaSRaja Mani memset(ð_hdr, 0, sizeof(eth_hdr)); 359bdcd8170SKalle Valo eth_hdr.h_proto = llc_hdr->eth_type; 360bdcd8170SKalle Valo 361bdcd8170SKalle Valo switch ((le16_to_cpu(wh.frame_control)) & 362bdcd8170SKalle Valo (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) { 363bdcd8170SKalle Valo case 0: 364bdcd8170SKalle Valo memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN); 365bdcd8170SKalle Valo memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN); 366bdcd8170SKalle Valo break; 367bdcd8170SKalle Valo case IEEE80211_FCTL_TODS: 368bdcd8170SKalle Valo memcpy(eth_hdr.h_dest, wh.addr3, ETH_ALEN); 369bdcd8170SKalle Valo memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN); 370bdcd8170SKalle Valo break; 371bdcd8170SKalle Valo case IEEE80211_FCTL_FROMDS: 372bdcd8170SKalle Valo memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN); 373bdcd8170SKalle Valo memcpy(eth_hdr.h_source, wh.addr3, ETH_ALEN); 374bdcd8170SKalle Valo break; 375bdcd8170SKalle Valo case IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS: 376bdcd8170SKalle Valo break; 377bdcd8170SKalle Valo } 378bdcd8170SKalle Valo 379bdcd8170SKalle Valo skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr)); 380bdcd8170SKalle Valo skb_push(skb, sizeof(eth_hdr)); 381bdcd8170SKalle Valo 382bdcd8170SKalle Valo datap = skb->data; 383bdcd8170SKalle Valo 384bdcd8170SKalle Valo memcpy(datap, ð_hdr, sizeof(eth_hdr)); 385bdcd8170SKalle Valo 386bdcd8170SKalle Valo return 0; 387bdcd8170SKalle Valo } 388bdcd8170SKalle Valo 389bdcd8170SKalle Valo /* 390bdcd8170SKalle Valo * Performs 802.3 to DIX encapsulation for received packets. 391bdcd8170SKalle Valo * Assumes the entire 802.3 header is contigous. 392bdcd8170SKalle Valo */ 393bdcd8170SKalle Valo int ath6kl_wmi_dot3_2_dix(struct sk_buff *skb) 394bdcd8170SKalle Valo { 395bdcd8170SKalle Valo struct ath6kl_llc_snap_hdr *llc_hdr; 396bdcd8170SKalle Valo struct ethhdr eth_hdr; 397bdcd8170SKalle Valo u8 *datap; 398bdcd8170SKalle Valo 399bdcd8170SKalle Valo if (WARN_ON(skb == NULL)) 400bdcd8170SKalle Valo return -EINVAL; 401bdcd8170SKalle Valo 402bdcd8170SKalle Valo datap = skb->data; 403bdcd8170SKalle Valo 404bdcd8170SKalle Valo memcpy(ð_hdr, datap, sizeof(eth_hdr)); 405bdcd8170SKalle Valo 406bdcd8170SKalle Valo llc_hdr = (struct ath6kl_llc_snap_hdr *) (datap + sizeof(eth_hdr)); 407bdcd8170SKalle Valo eth_hdr.h_proto = llc_hdr->eth_type; 408bdcd8170SKalle Valo 409bdcd8170SKalle Valo skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr)); 410bdcd8170SKalle Valo datap = skb->data; 411bdcd8170SKalle Valo 412bdcd8170SKalle Valo memcpy(datap, ð_hdr, sizeof(eth_hdr)); 413bdcd8170SKalle Valo 414bdcd8170SKalle Valo return 0; 415bdcd8170SKalle Valo } 416bdcd8170SKalle Valo 417bdcd8170SKalle Valo static int ath6kl_wmi_tx_complete_event_rx(u8 *datap, int len) 418bdcd8170SKalle Valo { 419bdcd8170SKalle Valo struct tx_complete_msg_v1 *msg_v1; 420bdcd8170SKalle Valo struct wmi_tx_complete_event *evt; 421bdcd8170SKalle Valo int index; 422bdcd8170SKalle Valo u16 size; 423bdcd8170SKalle Valo 424bdcd8170SKalle Valo evt = (struct wmi_tx_complete_event *) datap; 425bdcd8170SKalle Valo 426bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "comp: %d %d %d\n", 427bdcd8170SKalle Valo evt->num_msg, evt->msg_len, evt->msg_type); 428bdcd8170SKalle Valo 429bdcd8170SKalle Valo for (index = 0; index < evt->num_msg; index++) { 430bdcd8170SKalle Valo size = sizeof(struct wmi_tx_complete_event) + 431bdcd8170SKalle Valo (index * sizeof(struct tx_complete_msg_v1)); 432bdcd8170SKalle Valo msg_v1 = (struct tx_complete_msg_v1 *)(datap + size); 433bdcd8170SKalle Valo 434bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "msg: %d %d %d %d\n", 435bdcd8170SKalle Valo msg_v1->status, msg_v1->pkt_id, 436bdcd8170SKalle Valo msg_v1->rate_idx, msg_v1->ack_failures); 437bdcd8170SKalle Valo } 438bdcd8170SKalle Valo 439bdcd8170SKalle Valo return 0; 440bdcd8170SKalle Valo } 441bdcd8170SKalle Valo 442f9e5f05cSJouni Malinen static int ath6kl_wmi_remain_on_chnl_event_rx(struct wmi *wmi, u8 *datap, 443240d2799SVasanthakumar Thiagarajan int len, struct ath6kl_vif *vif) 4446465ddcfSJouni Malinen { 4456465ddcfSJouni Malinen struct wmi_remain_on_chnl_event *ev; 4466465ddcfSJouni Malinen u32 freq; 4476465ddcfSJouni Malinen u32 dur; 448f9e5f05cSJouni Malinen struct ieee80211_channel *chan; 449f9e5f05cSJouni Malinen struct ath6kl *ar = wmi->parent_dev; 4501052261eSJouni Malinen u32 id; 4516465ddcfSJouni Malinen 4526465ddcfSJouni Malinen if (len < sizeof(*ev)) 4536465ddcfSJouni Malinen return -EINVAL; 4546465ddcfSJouni Malinen 4556465ddcfSJouni Malinen ev = (struct wmi_remain_on_chnl_event *) datap; 4566465ddcfSJouni Malinen freq = le32_to_cpu(ev->freq); 4576465ddcfSJouni Malinen dur = le32_to_cpu(ev->duration); 4586465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl: freq=%u dur=%u\n", 4596465ddcfSJouni Malinen freq, dur); 460be98e3a4SVasanthakumar Thiagarajan chan = ieee80211_get_channel(ar->wiphy, freq); 461f9e5f05cSJouni Malinen if (!chan) { 462f9e5f05cSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl: Unknown channel " 463f9e5f05cSJouni Malinen "(freq=%u)\n", freq); 464f9e5f05cSJouni Malinen return -EINVAL; 465f9e5f05cSJouni Malinen } 4661052261eSJouni Malinen id = vif->last_roc_id; 4671052261eSJouni Malinen cfg80211_ready_on_channel(vif->ndev, id, chan, NL80211_CHAN_NO_HT, 468f9e5f05cSJouni Malinen dur, GFP_ATOMIC); 4696465ddcfSJouni Malinen 4706465ddcfSJouni Malinen return 0; 4716465ddcfSJouni Malinen } 4726465ddcfSJouni Malinen 473f9e5f05cSJouni Malinen static int ath6kl_wmi_cancel_remain_on_chnl_event_rx(struct wmi *wmi, 474240d2799SVasanthakumar Thiagarajan u8 *datap, int len, 475240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 4766465ddcfSJouni Malinen { 4776465ddcfSJouni Malinen struct wmi_cancel_remain_on_chnl_event *ev; 4786465ddcfSJouni Malinen u32 freq; 4796465ddcfSJouni Malinen u32 dur; 480f9e5f05cSJouni Malinen struct ieee80211_channel *chan; 481f9e5f05cSJouni Malinen struct ath6kl *ar = wmi->parent_dev; 4821052261eSJouni Malinen u32 id; 4836465ddcfSJouni Malinen 4846465ddcfSJouni Malinen if (len < sizeof(*ev)) 4856465ddcfSJouni Malinen return -EINVAL; 4866465ddcfSJouni Malinen 4876465ddcfSJouni Malinen ev = (struct wmi_cancel_remain_on_chnl_event *) datap; 4886465ddcfSJouni Malinen freq = le32_to_cpu(ev->freq); 4896465ddcfSJouni Malinen dur = le32_to_cpu(ev->duration); 4906465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "cancel_remain_on_chnl: freq=%u dur=%u " 4916465ddcfSJouni Malinen "status=%u\n", freq, dur, ev->status); 492be98e3a4SVasanthakumar Thiagarajan chan = ieee80211_get_channel(ar->wiphy, freq); 493f9e5f05cSJouni Malinen if (!chan) { 494f9e5f05cSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "cancel_remain_on_chnl: Unknown " 495f9e5f05cSJouni Malinen "channel (freq=%u)\n", freq); 496f9e5f05cSJouni Malinen return -EINVAL; 497f9e5f05cSJouni Malinen } 4981052261eSJouni Malinen if (vif->last_cancel_roc_id && 4991052261eSJouni Malinen vif->last_cancel_roc_id + 1 == vif->last_roc_id) 5001052261eSJouni Malinen id = vif->last_cancel_roc_id; /* event for cancel command */ 5011052261eSJouni Malinen else 5021052261eSJouni Malinen id = vif->last_roc_id; /* timeout on uncanceled r-o-c */ 5031052261eSJouni Malinen vif->last_cancel_roc_id = 0; 5041052261eSJouni Malinen cfg80211_remain_on_channel_expired(vif->ndev, id, chan, 505f9e5f05cSJouni Malinen NL80211_CHAN_NO_HT, GFP_ATOMIC); 5066465ddcfSJouni Malinen 5076465ddcfSJouni Malinen return 0; 5086465ddcfSJouni Malinen } 5096465ddcfSJouni Malinen 510240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_tx_status_event_rx(struct wmi *wmi, u8 *datap, int len, 511240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 5126465ddcfSJouni Malinen { 5136465ddcfSJouni Malinen struct wmi_tx_status_event *ev; 5146465ddcfSJouni Malinen u32 id; 5156465ddcfSJouni Malinen 5166465ddcfSJouni Malinen if (len < sizeof(*ev)) 5176465ddcfSJouni Malinen return -EINVAL; 5186465ddcfSJouni Malinen 5196465ddcfSJouni Malinen ev = (struct wmi_tx_status_event *) datap; 5206465ddcfSJouni Malinen id = le32_to_cpu(ev->id); 5216465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "tx_status: id=%x ack_status=%u\n", 5226465ddcfSJouni Malinen id, ev->ack_status); 523a0df5db1SJouni Malinen if (wmi->last_mgmt_tx_frame) { 524240d2799SVasanthakumar Thiagarajan cfg80211_mgmt_tx_status(vif->ndev, id, 525a0df5db1SJouni Malinen wmi->last_mgmt_tx_frame, 526a0df5db1SJouni Malinen wmi->last_mgmt_tx_frame_len, 527a0df5db1SJouni Malinen !!ev->ack_status, GFP_ATOMIC); 528a0df5db1SJouni Malinen kfree(wmi->last_mgmt_tx_frame); 529a0df5db1SJouni Malinen wmi->last_mgmt_tx_frame = NULL; 530a0df5db1SJouni Malinen wmi->last_mgmt_tx_frame_len = 0; 531a0df5db1SJouni Malinen } 5326465ddcfSJouni Malinen 5336465ddcfSJouni Malinen return 0; 5346465ddcfSJouni Malinen } 5356465ddcfSJouni Malinen 536240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_rx_probe_req_event_rx(struct wmi *wmi, u8 *datap, int len, 537240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 5386465ddcfSJouni Malinen { 5396465ddcfSJouni Malinen struct wmi_p2p_rx_probe_req_event *ev; 540ae32c30aSJouni Malinen u32 freq; 5416465ddcfSJouni Malinen u16 dlen; 5426465ddcfSJouni Malinen 5436465ddcfSJouni Malinen if (len < sizeof(*ev)) 5446465ddcfSJouni Malinen return -EINVAL; 5456465ddcfSJouni Malinen 5466465ddcfSJouni Malinen ev = (struct wmi_p2p_rx_probe_req_event *) datap; 547ae32c30aSJouni Malinen freq = le32_to_cpu(ev->freq); 5486465ddcfSJouni Malinen dlen = le16_to_cpu(ev->len); 549ae32c30aSJouni Malinen if (datap + len < ev->data + dlen) { 550ae32c30aSJouni Malinen ath6kl_err("invalid wmi_p2p_rx_probe_req_event: " 551ae32c30aSJouni Malinen "len=%d dlen=%u\n", len, dlen); 552ae32c30aSJouni Malinen return -EINVAL; 553ae32c30aSJouni Malinen } 554ae32c30aSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "rx_probe_req: len=%u freq=%u " 555ae32c30aSJouni Malinen "probe_req_report=%d\n", 556cf5333d7SVasanthakumar Thiagarajan dlen, freq, vif->probe_req_report); 557ae32c30aSJouni Malinen 558cf5333d7SVasanthakumar Thiagarajan if (vif->probe_req_report || vif->nw_type == AP_NETWORK) 559240d2799SVasanthakumar Thiagarajan cfg80211_rx_mgmt(vif->ndev, freq, ev->data, dlen, GFP_ATOMIC); 5606465ddcfSJouni Malinen 5616465ddcfSJouni Malinen return 0; 5626465ddcfSJouni Malinen } 5636465ddcfSJouni Malinen 5646465ddcfSJouni Malinen static int ath6kl_wmi_p2p_capabilities_event_rx(u8 *datap, int len) 5656465ddcfSJouni Malinen { 5666465ddcfSJouni Malinen struct wmi_p2p_capabilities_event *ev; 5676465ddcfSJouni Malinen u16 dlen; 5686465ddcfSJouni Malinen 5696465ddcfSJouni Malinen if (len < sizeof(*ev)) 5706465ddcfSJouni Malinen return -EINVAL; 5716465ddcfSJouni Malinen 5726465ddcfSJouni Malinen ev = (struct wmi_p2p_capabilities_event *) datap; 5736465ddcfSJouni Malinen dlen = le16_to_cpu(ev->len); 5746465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_capab: len=%u\n", dlen); 5756465ddcfSJouni Malinen 5766465ddcfSJouni Malinen return 0; 5776465ddcfSJouni Malinen } 5786465ddcfSJouni Malinen 579240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_rx_action_event_rx(struct wmi *wmi, u8 *datap, int len, 580240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 5816465ddcfSJouni Malinen { 5826465ddcfSJouni Malinen struct wmi_rx_action_event *ev; 5839809d8efSJouni Malinen u32 freq; 5846465ddcfSJouni Malinen u16 dlen; 5856465ddcfSJouni Malinen 5866465ddcfSJouni Malinen if (len < sizeof(*ev)) 5876465ddcfSJouni Malinen return -EINVAL; 5886465ddcfSJouni Malinen 5896465ddcfSJouni Malinen ev = (struct wmi_rx_action_event *) datap; 5909809d8efSJouni Malinen freq = le32_to_cpu(ev->freq); 5916465ddcfSJouni Malinen dlen = le16_to_cpu(ev->len); 5929809d8efSJouni Malinen if (datap + len < ev->data + dlen) { 5939809d8efSJouni Malinen ath6kl_err("invalid wmi_rx_action_event: " 5949809d8efSJouni Malinen "len=%d dlen=%u\n", len, dlen); 5959809d8efSJouni Malinen return -EINVAL; 5969809d8efSJouni Malinen } 5979809d8efSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "rx_action: len=%u freq=%u\n", dlen, freq); 598240d2799SVasanthakumar Thiagarajan cfg80211_rx_mgmt(vif->ndev, freq, ev->data, dlen, GFP_ATOMIC); 5996465ddcfSJouni Malinen 6006465ddcfSJouni Malinen return 0; 6016465ddcfSJouni Malinen } 6026465ddcfSJouni Malinen 6036465ddcfSJouni Malinen static int ath6kl_wmi_p2p_info_event_rx(u8 *datap, int len) 6046465ddcfSJouni Malinen { 6056465ddcfSJouni Malinen struct wmi_p2p_info_event *ev; 6066465ddcfSJouni Malinen u32 flags; 6076465ddcfSJouni Malinen u16 dlen; 6086465ddcfSJouni Malinen 6096465ddcfSJouni Malinen if (len < sizeof(*ev)) 6106465ddcfSJouni Malinen return -EINVAL; 6116465ddcfSJouni Malinen 6126465ddcfSJouni Malinen ev = (struct wmi_p2p_info_event *) datap; 6136465ddcfSJouni Malinen flags = le32_to_cpu(ev->info_req_flags); 6146465ddcfSJouni Malinen dlen = le16_to_cpu(ev->len); 6156465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: flags=%x len=%d\n", flags, dlen); 6166465ddcfSJouni Malinen 6176465ddcfSJouni Malinen if (flags & P2P_FLAG_CAPABILITIES_REQ) { 6186465ddcfSJouni Malinen struct wmi_p2p_capabilities *cap; 6196465ddcfSJouni Malinen if (dlen < sizeof(*cap)) 6206465ddcfSJouni Malinen return -EINVAL; 6216465ddcfSJouni Malinen cap = (struct wmi_p2p_capabilities *) ev->data; 6226465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: GO Power Save = %d\n", 6236465ddcfSJouni Malinen cap->go_power_save); 6246465ddcfSJouni Malinen } 6256465ddcfSJouni Malinen 6266465ddcfSJouni Malinen if (flags & P2P_FLAG_MACADDR_REQ) { 6276465ddcfSJouni Malinen struct wmi_p2p_macaddr *mac; 6286465ddcfSJouni Malinen if (dlen < sizeof(*mac)) 6296465ddcfSJouni Malinen return -EINVAL; 6306465ddcfSJouni Malinen mac = (struct wmi_p2p_macaddr *) ev->data; 6316465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: MAC Address = %pM\n", 6326465ddcfSJouni Malinen mac->mac_addr); 6336465ddcfSJouni Malinen } 6346465ddcfSJouni Malinen 6356465ddcfSJouni Malinen if (flags & P2P_FLAG_HMODEL_REQ) { 6366465ddcfSJouni Malinen struct wmi_p2p_hmodel *mod; 6376465ddcfSJouni Malinen if (dlen < sizeof(*mod)) 6386465ddcfSJouni Malinen return -EINVAL; 6396465ddcfSJouni Malinen mod = (struct wmi_p2p_hmodel *) ev->data; 6406465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: P2P Model = %d (%s)\n", 6416465ddcfSJouni Malinen mod->p2p_model, 6426465ddcfSJouni Malinen mod->p2p_model ? "host" : "firmware"); 6436465ddcfSJouni Malinen } 6446465ddcfSJouni Malinen return 0; 6456465ddcfSJouni Malinen } 6466465ddcfSJouni Malinen 647bdcd8170SKalle Valo static inline struct sk_buff *ath6kl_wmi_get_new_buf(u32 size) 648bdcd8170SKalle Valo { 649bdcd8170SKalle Valo struct sk_buff *skb; 650bdcd8170SKalle Valo 651bdcd8170SKalle Valo skb = ath6kl_buf_alloc(size); 652bdcd8170SKalle Valo if (!skb) 653bdcd8170SKalle Valo return NULL; 654bdcd8170SKalle Valo 655bdcd8170SKalle Valo skb_put(skb, size); 656bdcd8170SKalle Valo if (size) 657bdcd8170SKalle Valo memset(skb->data, 0, size); 658bdcd8170SKalle Valo 659bdcd8170SKalle Valo return skb; 660bdcd8170SKalle Valo } 661bdcd8170SKalle Valo 662bdcd8170SKalle Valo /* Send a "simple" wmi command -- one with no arguments */ 663334234b5SVasanthakumar Thiagarajan static int ath6kl_wmi_simple_cmd(struct wmi *wmi, u8 if_idx, 664334234b5SVasanthakumar Thiagarajan enum wmi_cmd_id cmd_id) 665bdcd8170SKalle Valo { 666bdcd8170SKalle Valo struct sk_buff *skb; 667bdcd8170SKalle Valo int ret; 668bdcd8170SKalle Valo 669bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(0); 670bdcd8170SKalle Valo if (!skb) 671bdcd8170SKalle Valo return -ENOMEM; 672bdcd8170SKalle Valo 673334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, cmd_id, NO_SYNC_WMIFLAG); 674bdcd8170SKalle Valo 675bdcd8170SKalle Valo return ret; 676bdcd8170SKalle Valo } 677bdcd8170SKalle Valo 678bdcd8170SKalle Valo static int ath6kl_wmi_ready_event_rx(struct wmi *wmi, u8 *datap, int len) 679bdcd8170SKalle Valo { 680bdcd8170SKalle Valo struct wmi_ready_event_2 *ev = (struct wmi_ready_event_2 *) datap; 681bdcd8170SKalle Valo 682bdcd8170SKalle Valo if (len < sizeof(struct wmi_ready_event_2)) 683bdcd8170SKalle Valo return -EINVAL; 684bdcd8170SKalle Valo 685bdcd8170SKalle Valo ath6kl_ready_event(wmi->parent_dev, ev->mac_addr, 686bdcd8170SKalle Valo le32_to_cpu(ev->sw_version), 687bdcd8170SKalle Valo le32_to_cpu(ev->abi_version)); 688bdcd8170SKalle Valo 689bdcd8170SKalle Valo return 0; 690bdcd8170SKalle Valo } 691bdcd8170SKalle Valo 692e5090444SVivek Natarajan /* 693e5090444SVivek Natarajan * Mechanism to modify the roaming behavior in the firmware. The lower rssi 694e5090444SVivek Natarajan * at which the station has to roam can be passed with 695e5090444SVivek Natarajan * WMI_SET_LRSSI_SCAN_PARAMS. Subtract 96 from RSSI to get the signal level 696e5090444SVivek Natarajan * in dBm. 697e5090444SVivek Natarajan */ 698e5090444SVivek Natarajan int ath6kl_wmi_set_roam_lrssi_cmd(struct wmi *wmi, u8 lrssi) 699e5090444SVivek Natarajan { 700e5090444SVivek Natarajan struct sk_buff *skb; 701e5090444SVivek Natarajan struct roam_ctrl_cmd *cmd; 702e5090444SVivek Natarajan 703e5090444SVivek Natarajan skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 704e5090444SVivek Natarajan if (!skb) 705e5090444SVivek Natarajan return -ENOMEM; 706e5090444SVivek Natarajan 707e5090444SVivek Natarajan cmd = (struct roam_ctrl_cmd *) skb->data; 708e5090444SVivek Natarajan 709e5090444SVivek Natarajan cmd->info.params.lrssi_scan_period = cpu_to_le16(DEF_LRSSI_SCAN_PERIOD); 710e5090444SVivek Natarajan cmd->info.params.lrssi_scan_threshold = a_cpu_to_sle16(lrssi + 711e5090444SVivek Natarajan DEF_SCAN_FOR_ROAM_INTVL); 712e5090444SVivek Natarajan cmd->info.params.lrssi_roam_threshold = a_cpu_to_sle16(lrssi); 713e5090444SVivek Natarajan cmd->info.params.roam_rssi_floor = DEF_LRSSI_ROAM_FLOOR; 714e5090444SVivek Natarajan cmd->roam_ctrl = WMI_SET_LRSSI_SCAN_PARAMS; 715e5090444SVivek Natarajan 716334234b5SVasanthakumar Thiagarajan ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID, 717334234b5SVasanthakumar Thiagarajan NO_SYNC_WMIFLAG); 718e5090444SVivek Natarajan 719e5090444SVivek Natarajan return 0; 720e5090444SVivek Natarajan } 721e5090444SVivek Natarajan 7221261875fSJouni Malinen int ath6kl_wmi_force_roam_cmd(struct wmi *wmi, const u8 *bssid) 7231261875fSJouni Malinen { 7241261875fSJouni Malinen struct sk_buff *skb; 7251261875fSJouni Malinen struct roam_ctrl_cmd *cmd; 7261261875fSJouni Malinen 7271261875fSJouni Malinen skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 7281261875fSJouni Malinen if (!skb) 7291261875fSJouni Malinen return -ENOMEM; 7301261875fSJouni Malinen 7311261875fSJouni Malinen cmd = (struct roam_ctrl_cmd *) skb->data; 7321261875fSJouni Malinen memset(cmd, 0, sizeof(*cmd)); 7331261875fSJouni Malinen 7341261875fSJouni Malinen memcpy(cmd->info.bssid, bssid, ETH_ALEN); 7351261875fSJouni Malinen cmd->roam_ctrl = WMI_FORCE_ROAM; 7361261875fSJouni Malinen 7371261875fSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "force roam to %pM\n", bssid); 738334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID, 7391261875fSJouni Malinen NO_SYNC_WMIFLAG); 7401261875fSJouni Malinen } 7411261875fSJouni Malinen 7421261875fSJouni Malinen int ath6kl_wmi_set_roam_mode_cmd(struct wmi *wmi, enum wmi_roam_mode mode) 7431261875fSJouni Malinen { 7441261875fSJouni Malinen struct sk_buff *skb; 7451261875fSJouni Malinen struct roam_ctrl_cmd *cmd; 7461261875fSJouni Malinen 7471261875fSJouni Malinen skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 7481261875fSJouni Malinen if (!skb) 7491261875fSJouni Malinen return -ENOMEM; 7501261875fSJouni Malinen 7511261875fSJouni Malinen cmd = (struct roam_ctrl_cmd *) skb->data; 7521261875fSJouni Malinen memset(cmd, 0, sizeof(*cmd)); 7531261875fSJouni Malinen 7541261875fSJouni Malinen cmd->info.roam_mode = mode; 7551261875fSJouni Malinen cmd->roam_ctrl = WMI_SET_ROAM_MODE; 7561261875fSJouni Malinen 7571261875fSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "set roam mode %d\n", mode); 758334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID, 7591261875fSJouni Malinen NO_SYNC_WMIFLAG); 7601261875fSJouni Malinen } 7611261875fSJouni Malinen 762240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_connect_event_rx(struct wmi *wmi, u8 *datap, int len, 763240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 764bdcd8170SKalle Valo { 765bdcd8170SKalle Valo struct wmi_connect_event *ev; 766bdcd8170SKalle Valo u8 *pie, *peie; 767bdcd8170SKalle Valo 768bdcd8170SKalle Valo if (len < sizeof(struct wmi_connect_event)) 769bdcd8170SKalle Valo return -EINVAL; 770bdcd8170SKalle Valo 771bdcd8170SKalle Valo ev = (struct wmi_connect_event *) datap; 772bdcd8170SKalle Valo 773f5938f24SVasanthakumar Thiagarajan if (vif->nw_type == AP_NETWORK) { 774572e27c0SJouni Malinen /* AP mode start/STA connected event */ 775240d2799SVasanthakumar Thiagarajan struct net_device *dev = vif->ndev; 776572e27c0SJouni Malinen if (memcmp(dev->dev_addr, ev->u.ap_bss.bssid, ETH_ALEN) == 0) { 777572e27c0SJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "%s: freq %d bssid %pM " 778572e27c0SJouni Malinen "(AP started)\n", 779572e27c0SJouni Malinen __func__, le16_to_cpu(ev->u.ap_bss.ch), 780572e27c0SJouni Malinen ev->u.ap_bss.bssid); 781572e27c0SJouni Malinen ath6kl_connect_ap_mode_bss( 782240d2799SVasanthakumar Thiagarajan vif, le16_to_cpu(ev->u.ap_bss.ch)); 783572e27c0SJouni Malinen } else { 784572e27c0SJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "%s: aid %u mac_addr %pM " 785572e27c0SJouni Malinen "auth=%u keymgmt=%u cipher=%u apsd_info=%u " 786572e27c0SJouni Malinen "(STA connected)\n", 787572e27c0SJouni Malinen __func__, ev->u.ap_sta.aid, 788572e27c0SJouni Malinen ev->u.ap_sta.mac_addr, 789572e27c0SJouni Malinen ev->u.ap_sta.auth, 790572e27c0SJouni Malinen ev->u.ap_sta.keymgmt, 791572e27c0SJouni Malinen le16_to_cpu(ev->u.ap_sta.cipher), 792572e27c0SJouni Malinen ev->u.ap_sta.apsd_info); 793c1762a3fSThirumalai Pachamuthu 794572e27c0SJouni Malinen ath6kl_connect_ap_mode_sta( 795240d2799SVasanthakumar Thiagarajan vif, ev->u.ap_sta.aid, ev->u.ap_sta.mac_addr, 796572e27c0SJouni Malinen ev->u.ap_sta.keymgmt, 797572e27c0SJouni Malinen le16_to_cpu(ev->u.ap_sta.cipher), 798572e27c0SJouni Malinen ev->u.ap_sta.auth, ev->assoc_req_len, 799c1762a3fSThirumalai Pachamuthu ev->assoc_info + ev->beacon_ie_len, 800c1762a3fSThirumalai Pachamuthu ev->u.ap_sta.apsd_info); 801572e27c0SJouni Malinen } 802572e27c0SJouni Malinen return 0; 803572e27c0SJouni Malinen } 804572e27c0SJouni Malinen 805572e27c0SJouni Malinen /* STA/IBSS mode connection event */ 806572e27c0SJouni Malinen 807b9b6ee60SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 808b9b6ee60SKalle Valo "wmi event connect freq %d bssid %pM listen_intvl %d beacon_intvl %d type %d\n", 809b9b6ee60SKalle Valo le16_to_cpu(ev->u.sta.ch), ev->u.sta.bssid, 810b9b6ee60SKalle Valo le16_to_cpu(ev->u.sta.listen_intvl), 811b9b6ee60SKalle Valo le16_to_cpu(ev->u.sta.beacon_intvl), 812b9b6ee60SKalle Valo le32_to_cpu(ev->u.sta.nw_type)); 813bdcd8170SKalle Valo 814bdcd8170SKalle Valo /* Start of assoc rsp IEs */ 815bdcd8170SKalle Valo pie = ev->assoc_info + ev->beacon_ie_len + 816bdcd8170SKalle Valo ev->assoc_req_len + (sizeof(u16) * 3); /* capinfo, status, aid */ 817bdcd8170SKalle Valo 818bdcd8170SKalle Valo /* End of assoc rsp IEs */ 819bdcd8170SKalle Valo peie = ev->assoc_info + ev->beacon_ie_len + ev->assoc_req_len + 820bdcd8170SKalle Valo ev->assoc_resp_len; 821bdcd8170SKalle Valo 822bdcd8170SKalle Valo while (pie < peie) { 823bdcd8170SKalle Valo switch (*pie) { 824bdcd8170SKalle Valo case WLAN_EID_VENDOR_SPECIFIC: 825bdcd8170SKalle Valo if (pie[1] > 3 && pie[2] == 0x00 && pie[3] == 0x50 && 826bdcd8170SKalle Valo pie[4] == 0xf2 && pie[5] == WMM_OUI_TYPE) { 827bdcd8170SKalle Valo /* WMM OUT (00:50:F2) */ 828bdcd8170SKalle Valo if (pie[1] > 5 829bdcd8170SKalle Valo && pie[6] == WMM_PARAM_OUI_SUBTYPE) 830bdcd8170SKalle Valo wmi->is_wmm_enabled = true; 831bdcd8170SKalle Valo } 832bdcd8170SKalle Valo break; 833bdcd8170SKalle Valo } 834bdcd8170SKalle Valo 835bdcd8170SKalle Valo if (wmi->is_wmm_enabled) 836bdcd8170SKalle Valo break; 837bdcd8170SKalle Valo 838bdcd8170SKalle Valo pie += pie[1] + 2; 839bdcd8170SKalle Valo } 840bdcd8170SKalle Valo 841240d2799SVasanthakumar Thiagarajan ath6kl_connect_event(vif, le16_to_cpu(ev->u.sta.ch), 842572e27c0SJouni Malinen ev->u.sta.bssid, 843572e27c0SJouni Malinen le16_to_cpu(ev->u.sta.listen_intvl), 844572e27c0SJouni Malinen le16_to_cpu(ev->u.sta.beacon_intvl), 845572e27c0SJouni Malinen le32_to_cpu(ev->u.sta.nw_type), 846bdcd8170SKalle Valo ev->beacon_ie_len, ev->assoc_req_len, 847bdcd8170SKalle Valo ev->assoc_resp_len, ev->assoc_info); 848bdcd8170SKalle Valo 849bdcd8170SKalle Valo return 0; 850bdcd8170SKalle Valo } 851bdcd8170SKalle Valo 85206033760SVivek Natarajan static struct country_code_to_enum_rd * 85306033760SVivek Natarajan ath6kl_regd_find_country(u16 countryCode) 85406033760SVivek Natarajan { 85506033760SVivek Natarajan int i; 85606033760SVivek Natarajan 85706033760SVivek Natarajan for (i = 0; i < ARRAY_SIZE(allCountries); i++) { 85806033760SVivek Natarajan if (allCountries[i].countryCode == countryCode) 85906033760SVivek Natarajan return &allCountries[i]; 86006033760SVivek Natarajan } 86106033760SVivek Natarajan 86206033760SVivek Natarajan return NULL; 86306033760SVivek Natarajan } 86406033760SVivek Natarajan 86506033760SVivek Natarajan static struct reg_dmn_pair_mapping * 86606033760SVivek Natarajan ath6kl_get_regpair(u16 regdmn) 86706033760SVivek Natarajan { 86806033760SVivek Natarajan int i; 86906033760SVivek Natarajan 87006033760SVivek Natarajan if (regdmn == NO_ENUMRD) 87106033760SVivek Natarajan return NULL; 87206033760SVivek Natarajan 87306033760SVivek Natarajan for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) { 87406033760SVivek Natarajan if (regDomainPairs[i].regDmnEnum == regdmn) 87506033760SVivek Natarajan return ®DomainPairs[i]; 87606033760SVivek Natarajan } 87706033760SVivek Natarajan 87806033760SVivek Natarajan return NULL; 87906033760SVivek Natarajan } 88006033760SVivek Natarajan 88106033760SVivek Natarajan static struct country_code_to_enum_rd * 88206033760SVivek Natarajan ath6kl_regd_find_country_by_rd(u16 regdmn) 88306033760SVivek Natarajan { 88406033760SVivek Natarajan int i; 88506033760SVivek Natarajan 88606033760SVivek Natarajan for (i = 0; i < ARRAY_SIZE(allCountries); i++) { 88706033760SVivek Natarajan if (allCountries[i].regDmnEnum == regdmn) 88806033760SVivek Natarajan return &allCountries[i]; 88906033760SVivek Natarajan } 89006033760SVivek Natarajan 89106033760SVivek Natarajan return NULL; 89206033760SVivek Natarajan } 89306033760SVivek Natarajan 89406033760SVivek Natarajan static void ath6kl_wmi_regdomain_event(struct wmi *wmi, u8 *datap, int len) 89506033760SVivek Natarajan { 89606033760SVivek Natarajan 89706033760SVivek Natarajan struct ath6kl_wmi_regdomain *ev; 89806033760SVivek Natarajan struct country_code_to_enum_rd *country = NULL; 89906033760SVivek Natarajan struct reg_dmn_pair_mapping *regpair = NULL; 90006033760SVivek Natarajan char alpha2[2]; 90106033760SVivek Natarajan u32 reg_code; 90206033760SVivek Natarajan 90306033760SVivek Natarajan ev = (struct ath6kl_wmi_regdomain *) datap; 90406033760SVivek Natarajan reg_code = le32_to_cpu(ev->reg_code); 90506033760SVivek Natarajan 90606033760SVivek Natarajan if ((reg_code >> ATH6KL_COUNTRY_RD_SHIFT) & COUNTRY_ERD_FLAG) 90706033760SVivek Natarajan country = ath6kl_regd_find_country((u16) reg_code); 90806033760SVivek Natarajan else if (!(((u16) reg_code & WORLD_SKU_MASK) == WORLD_SKU_PREFIX)) { 90906033760SVivek Natarajan 91006033760SVivek Natarajan regpair = ath6kl_get_regpair((u16) reg_code); 91106033760SVivek Natarajan country = ath6kl_regd_find_country_by_rd((u16) reg_code); 912b9b6ee60SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "Regpair used: 0x%0x\n", 91306033760SVivek Natarajan regpair->regDmnEnum); 91406033760SVivek Natarajan } 91506033760SVivek Natarajan 91606033760SVivek Natarajan if (country) { 91706033760SVivek Natarajan alpha2[0] = country->isoName[0]; 91806033760SVivek Natarajan alpha2[1] = country->isoName[1]; 91906033760SVivek Natarajan 920be98e3a4SVasanthakumar Thiagarajan regulatory_hint(wmi->parent_dev->wiphy, alpha2); 92106033760SVivek Natarajan 922b9b6ee60SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "Country alpha2 being used: %c%c\n", 92306033760SVivek Natarajan alpha2[0], alpha2[1]); 92406033760SVivek Natarajan } 92506033760SVivek Natarajan } 92606033760SVivek Natarajan 927240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_disconnect_event_rx(struct wmi *wmi, u8 *datap, int len, 928240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 929bdcd8170SKalle Valo { 930bdcd8170SKalle Valo struct wmi_disconnect_event *ev; 931bdcd8170SKalle Valo wmi->traffic_class = 100; 932bdcd8170SKalle Valo 933bdcd8170SKalle Valo if (len < sizeof(struct wmi_disconnect_event)) 934bdcd8170SKalle Valo return -EINVAL; 935bdcd8170SKalle Valo 936bdcd8170SKalle Valo ev = (struct wmi_disconnect_event *) datap; 937bdcd8170SKalle Valo 938b9b6ee60SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 939b9b6ee60SKalle Valo "wmi event disconnect proto_reason %d bssid %pM wmi_reason %d assoc_resp_len %d\n", 940b9b6ee60SKalle Valo le16_to_cpu(ev->proto_reason_status), ev->bssid, 941b9b6ee60SKalle Valo ev->disconn_reason, ev->assoc_resp_len); 942b9b6ee60SKalle Valo 943bdcd8170SKalle Valo wmi->is_wmm_enabled = false; 944bdcd8170SKalle Valo 945240d2799SVasanthakumar Thiagarajan ath6kl_disconnect_event(vif, ev->disconn_reason, 946bdcd8170SKalle Valo ev->bssid, ev->assoc_resp_len, ev->assoc_info, 947bdcd8170SKalle Valo le16_to_cpu(ev->proto_reason_status)); 948bdcd8170SKalle Valo 949bdcd8170SKalle Valo return 0; 950bdcd8170SKalle Valo } 951bdcd8170SKalle Valo 952bdcd8170SKalle Valo static int ath6kl_wmi_peer_node_event_rx(struct wmi *wmi, u8 *datap, int len) 953bdcd8170SKalle Valo { 954bdcd8170SKalle Valo struct wmi_peer_node_event *ev; 955bdcd8170SKalle Valo 956bdcd8170SKalle Valo if (len < sizeof(struct wmi_peer_node_event)) 957bdcd8170SKalle Valo return -EINVAL; 958bdcd8170SKalle Valo 959bdcd8170SKalle Valo ev = (struct wmi_peer_node_event *) datap; 960bdcd8170SKalle Valo 961bdcd8170SKalle Valo if (ev->event_code == PEER_NODE_JOIN_EVENT) 962bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "joined node with mac addr: %pM\n", 963bdcd8170SKalle Valo ev->peer_mac_addr); 964bdcd8170SKalle Valo else if (ev->event_code == PEER_NODE_LEAVE_EVENT) 965bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "left node with mac addr: %pM\n", 966bdcd8170SKalle Valo ev->peer_mac_addr); 967bdcd8170SKalle Valo 968bdcd8170SKalle Valo return 0; 969bdcd8170SKalle Valo } 970bdcd8170SKalle Valo 971240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_tkip_micerr_event_rx(struct wmi *wmi, u8 *datap, int len, 972240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 973bdcd8170SKalle Valo { 974bdcd8170SKalle Valo struct wmi_tkip_micerr_event *ev; 975bdcd8170SKalle Valo 976bdcd8170SKalle Valo if (len < sizeof(struct wmi_tkip_micerr_event)) 977bdcd8170SKalle Valo return -EINVAL; 978bdcd8170SKalle Valo 979bdcd8170SKalle Valo ev = (struct wmi_tkip_micerr_event *) datap; 980bdcd8170SKalle Valo 981240d2799SVasanthakumar Thiagarajan ath6kl_tkip_micerr_event(vif, ev->key_id, ev->is_mcast); 982bdcd8170SKalle Valo 983bdcd8170SKalle Valo return 0; 984bdcd8170SKalle Valo } 985bdcd8170SKalle Valo 98610509f90SKalle Valo void ath6kl_wmi_sscan_timer(unsigned long ptr) 98710509f90SKalle Valo { 98810509f90SKalle Valo struct ath6kl_vif *vif = (struct ath6kl_vif *) ptr; 98910509f90SKalle Valo 99010509f90SKalle Valo cfg80211_sched_scan_results(vif->ar->wiphy); 99110509f90SKalle Valo } 99210509f90SKalle Valo 993240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_bssinfo_event_rx(struct wmi *wmi, u8 *datap, int len, 994240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 995bdcd8170SKalle Valo { 99682e14f56SJouni Malinen struct wmi_bss_info_hdr2 *bih; 9971aaa8c74SJouni Malinen u8 *buf; 9981aaa8c74SJouni Malinen struct ieee80211_channel *channel; 9991aaa8c74SJouni Malinen struct ath6kl *ar = wmi->parent_dev; 10001aaa8c74SJouni Malinen struct ieee80211_mgmt *mgmt; 10011aaa8c74SJouni Malinen struct cfg80211_bss *bss; 1002bdcd8170SKalle Valo 100382e14f56SJouni Malinen if (len <= sizeof(struct wmi_bss_info_hdr2)) 1004bdcd8170SKalle Valo return -EINVAL; 1005bdcd8170SKalle Valo 100682e14f56SJouni Malinen bih = (struct wmi_bss_info_hdr2 *) datap; 100782e14f56SJouni Malinen buf = datap + sizeof(struct wmi_bss_info_hdr2); 100882e14f56SJouni Malinen len -= sizeof(struct wmi_bss_info_hdr2); 1009bdcd8170SKalle Valo 1010bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 10111aaa8c74SJouni Malinen "bss info evt - ch %u, snr %d, rssi %d, bssid \"%pM\" " 10121aaa8c74SJouni Malinen "frame_type=%d\n", 101382e14f56SJouni Malinen bih->ch, bih->snr, bih->snr - 95, bih->bssid, 10141aaa8c74SJouni Malinen bih->frame_type); 1015bdcd8170SKalle Valo 10161aaa8c74SJouni Malinen if (bih->frame_type != BEACON_FTYPE && 10171aaa8c74SJouni Malinen bih->frame_type != PROBERESP_FTYPE) 10181aaa8c74SJouni Malinen return 0; /* Only update BSS table for now */ 10191aaa8c74SJouni Malinen 1020551185caSJouni Malinen if (bih->frame_type == BEACON_FTYPE && 102159c98449SVasanthakumar Thiagarajan test_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags)) { 102259c98449SVasanthakumar Thiagarajan clear_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags); 1023240d2799SVasanthakumar Thiagarajan ath6kl_wmi_bssfilter_cmd(ar->wmi, vif->fw_vif_idx, 1024240d2799SVasanthakumar Thiagarajan NONE_BSS_FILTER, 0); 1025551185caSJouni Malinen } 1026551185caSJouni Malinen 1027be98e3a4SVasanthakumar Thiagarajan channel = ieee80211_get_channel(ar->wiphy, le16_to_cpu(bih->ch)); 10281aaa8c74SJouni Malinen if (channel == NULL) 10291aaa8c74SJouni Malinen return -EINVAL; 10301aaa8c74SJouni Malinen 10311aaa8c74SJouni Malinen if (len < 8 + 2 + 2) 10321aaa8c74SJouni Malinen return -EINVAL; 1033bdcd8170SKalle Valo 103459c98449SVasanthakumar Thiagarajan if (bih->frame_type == BEACON_FTYPE && test_bit(CONNECTED, &vif->flags) 10358c8b65e3SVasanthakumar Thiagarajan && memcmp(bih->bssid, vif->bssid, ETH_ALEN) == 0) { 103632c10874SJouni Malinen const u8 *tim; 103732c10874SJouni Malinen tim = cfg80211_find_ie(WLAN_EID_TIM, buf + 8 + 2 + 2, 103832c10874SJouni Malinen len - 8 - 2 - 2); 103932c10874SJouni Malinen if (tim && tim[1] >= 2) { 1040cf5333d7SVasanthakumar Thiagarajan vif->assoc_bss_dtim_period = tim[3]; 104159c98449SVasanthakumar Thiagarajan set_bit(DTIM_PERIOD_AVAIL, &vif->flags); 104232c10874SJouni Malinen } 104332c10874SJouni Malinen } 104432c10874SJouni Malinen 1045bdcd8170SKalle Valo /* 10461aaa8c74SJouni Malinen * In theory, use of cfg80211_inform_bss() would be more natural here 10471aaa8c74SJouni Malinen * since we do not have the full frame. However, at least for now, 10481aaa8c74SJouni Malinen * cfg80211 can only distinguish Beacon and Probe Response frames from 10491aaa8c74SJouni Malinen * each other when using cfg80211_inform_bss_frame(), so let's build a 10501aaa8c74SJouni Malinen * fake IEEE 802.11 header to be able to take benefit of this. 1051bdcd8170SKalle Valo */ 10521aaa8c74SJouni Malinen mgmt = kmalloc(24 + len, GFP_ATOMIC); 10531aaa8c74SJouni Malinen if (mgmt == NULL) 10541aaa8c74SJouni Malinen return -EINVAL; 10551aaa8c74SJouni Malinen 10561aaa8c74SJouni Malinen if (bih->frame_type == BEACON_FTYPE) { 10571aaa8c74SJouni Malinen mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | 10581aaa8c74SJouni Malinen IEEE80211_STYPE_BEACON); 10591aaa8c74SJouni Malinen memset(mgmt->da, 0xff, ETH_ALEN); 10601aaa8c74SJouni Malinen } else { 1061240d2799SVasanthakumar Thiagarajan struct net_device *dev = vif->ndev; 10621aaa8c74SJouni Malinen 10631aaa8c74SJouni Malinen mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | 10641aaa8c74SJouni Malinen IEEE80211_STYPE_PROBE_RESP); 10651aaa8c74SJouni Malinen memcpy(mgmt->da, dev->dev_addr, ETH_ALEN); 1066bdcd8170SKalle Valo } 10671aaa8c74SJouni Malinen mgmt->duration = cpu_to_le16(0); 10681aaa8c74SJouni Malinen memcpy(mgmt->sa, bih->bssid, ETH_ALEN); 10691aaa8c74SJouni Malinen memcpy(mgmt->bssid, bih->bssid, ETH_ALEN); 10701aaa8c74SJouni Malinen mgmt->seq_ctrl = cpu_to_le16(0); 1071bdcd8170SKalle Valo 10721aaa8c74SJouni Malinen memcpy(&mgmt->u.beacon, buf, len); 1073bdcd8170SKalle Valo 1074be98e3a4SVasanthakumar Thiagarajan bss = cfg80211_inform_bss_frame(ar->wiphy, channel, mgmt, 107582e14f56SJouni Malinen 24 + len, (bih->snr - 95) * 100, 107682e14f56SJouni Malinen GFP_ATOMIC); 10771aaa8c74SJouni Malinen kfree(mgmt); 10781aaa8c74SJouni Malinen if (bss == NULL) 1079bdcd8170SKalle Valo return -ENOMEM; 10801aaa8c74SJouni Malinen cfg80211_put_bss(bss); 1081bdcd8170SKalle Valo 108210509f90SKalle Valo /* 108310509f90SKalle Valo * Firmware doesn't return any event when scheduled scan has 108410509f90SKalle Valo * finished, so we need to use a timer to find out when there are 108510509f90SKalle Valo * no more results. 108610509f90SKalle Valo * 108710509f90SKalle Valo * The timer is started from the first bss info received, otherwise 108810509f90SKalle Valo * the timer would not ever fire if the scan interval is short 108910509f90SKalle Valo * enough. 109010509f90SKalle Valo */ 109110509f90SKalle Valo if (ar->state == ATH6KL_STATE_SCHED_SCAN && 109210509f90SKalle Valo !timer_pending(&vif->sched_scan_timer)) { 109310509f90SKalle Valo mod_timer(&vif->sched_scan_timer, jiffies + 109410509f90SKalle Valo msecs_to_jiffies(ATH6KL_SCHED_SCAN_RESULT_DELAY)); 109510509f90SKalle Valo } 109610509f90SKalle Valo 1097bdcd8170SKalle Valo return 0; 1098bdcd8170SKalle Valo } 1099bdcd8170SKalle Valo 1100bdcd8170SKalle Valo /* Inactivity timeout of a fatpipe(pstream) at the target */ 1101bdcd8170SKalle Valo static int ath6kl_wmi_pstream_timeout_event_rx(struct wmi *wmi, u8 *datap, 1102bdcd8170SKalle Valo int len) 1103bdcd8170SKalle Valo { 1104bdcd8170SKalle Valo struct wmi_pstream_timeout_event *ev; 1105bdcd8170SKalle Valo 1106bdcd8170SKalle Valo if (len < sizeof(struct wmi_pstream_timeout_event)) 1107bdcd8170SKalle Valo return -EINVAL; 1108bdcd8170SKalle Valo 1109bdcd8170SKalle Valo ev = (struct wmi_pstream_timeout_event *) datap; 1110bdcd8170SKalle Valo 1111bdcd8170SKalle Valo /* 1112bdcd8170SKalle Valo * When the pstream (fat pipe == AC) timesout, it means there were 1113bdcd8170SKalle Valo * no thinStreams within this pstream & it got implicitly created 1114bdcd8170SKalle Valo * due to data flow on this AC. We start the inactivity timer only 1115bdcd8170SKalle Valo * for implicitly created pstream. Just reset the host state. 1116bdcd8170SKalle Valo */ 1117bdcd8170SKalle Valo spin_lock_bh(&wmi->lock); 1118bdcd8170SKalle Valo wmi->stream_exist_for_ac[ev->traffic_class] = 0; 1119bdcd8170SKalle Valo wmi->fat_pipe_exist &= ~(1 << ev->traffic_class); 1120bdcd8170SKalle Valo spin_unlock_bh(&wmi->lock); 1121bdcd8170SKalle Valo 1122bdcd8170SKalle Valo /* Indicate inactivity to driver layer for this fatpipe (pstream) */ 1123bdcd8170SKalle Valo ath6kl_indicate_tx_activity(wmi->parent_dev, ev->traffic_class, false); 1124bdcd8170SKalle Valo 1125bdcd8170SKalle Valo return 0; 1126bdcd8170SKalle Valo } 1127bdcd8170SKalle Valo 1128bdcd8170SKalle Valo static int ath6kl_wmi_bitrate_reply_rx(struct wmi *wmi, u8 *datap, int len) 1129bdcd8170SKalle Valo { 1130bdcd8170SKalle Valo struct wmi_bit_rate_reply *reply; 1131bdcd8170SKalle Valo s32 rate; 1132bdcd8170SKalle Valo u32 sgi, index; 1133bdcd8170SKalle Valo 1134bdcd8170SKalle Valo if (len < sizeof(struct wmi_bit_rate_reply)) 1135bdcd8170SKalle Valo return -EINVAL; 1136bdcd8170SKalle Valo 1137bdcd8170SKalle Valo reply = (struct wmi_bit_rate_reply *) datap; 1138bdcd8170SKalle Valo 1139bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "rateindex %d\n", reply->rate_index); 1140bdcd8170SKalle Valo 1141bdcd8170SKalle Valo if (reply->rate_index == (s8) RATE_AUTO) { 1142bdcd8170SKalle Valo rate = RATE_AUTO; 1143bdcd8170SKalle Valo } else { 1144bdcd8170SKalle Valo index = reply->rate_index & 0x7f; 1145bdcd8170SKalle Valo sgi = (reply->rate_index & 0x80) ? 1 : 0; 1146bdcd8170SKalle Valo rate = wmi_rate_tbl[index][sgi]; 1147bdcd8170SKalle Valo } 1148bdcd8170SKalle Valo 1149bdcd8170SKalle Valo ath6kl_wakeup_event(wmi->parent_dev); 1150bdcd8170SKalle Valo 1151bdcd8170SKalle Valo return 0; 1152bdcd8170SKalle Valo } 1153bdcd8170SKalle Valo 11544f34daceSThomas Pedersen static int ath6kl_wmi_test_rx(struct wmi *wmi, u8 *datap, int len) 1155003353b0SKalle Valo { 11564f34daceSThomas Pedersen ath6kl_tm_rx_event(wmi->parent_dev, datap, len); 1157003353b0SKalle Valo 1158003353b0SKalle Valo return 0; 1159003353b0SKalle Valo } 1160003353b0SKalle Valo 1161bdcd8170SKalle Valo static int ath6kl_wmi_ratemask_reply_rx(struct wmi *wmi, u8 *datap, int len) 1162bdcd8170SKalle Valo { 1163bdcd8170SKalle Valo if (len < sizeof(struct wmi_fix_rates_reply)) 1164bdcd8170SKalle Valo return -EINVAL; 1165bdcd8170SKalle Valo 1166bdcd8170SKalle Valo ath6kl_wakeup_event(wmi->parent_dev); 1167bdcd8170SKalle Valo 1168bdcd8170SKalle Valo return 0; 1169bdcd8170SKalle Valo } 1170bdcd8170SKalle Valo 1171bdcd8170SKalle Valo static int ath6kl_wmi_ch_list_reply_rx(struct wmi *wmi, u8 *datap, int len) 1172bdcd8170SKalle Valo { 1173bdcd8170SKalle Valo if (len < sizeof(struct wmi_channel_list_reply)) 1174bdcd8170SKalle Valo return -EINVAL; 1175bdcd8170SKalle Valo 1176bdcd8170SKalle Valo ath6kl_wakeup_event(wmi->parent_dev); 1177bdcd8170SKalle Valo 1178bdcd8170SKalle Valo return 0; 1179bdcd8170SKalle Valo } 1180bdcd8170SKalle Valo 1181bdcd8170SKalle Valo static int ath6kl_wmi_tx_pwr_reply_rx(struct wmi *wmi, u8 *datap, int len) 1182bdcd8170SKalle Valo { 1183bdcd8170SKalle Valo struct wmi_tx_pwr_reply *reply; 1184bdcd8170SKalle Valo 1185bdcd8170SKalle Valo if (len < sizeof(struct wmi_tx_pwr_reply)) 1186bdcd8170SKalle Valo return -EINVAL; 1187bdcd8170SKalle Valo 1188bdcd8170SKalle Valo reply = (struct wmi_tx_pwr_reply *) datap; 1189bdcd8170SKalle Valo ath6kl_txpwr_rx_evt(wmi->parent_dev, reply->dbM); 1190bdcd8170SKalle Valo 1191bdcd8170SKalle Valo return 0; 1192bdcd8170SKalle Valo } 1193bdcd8170SKalle Valo 1194bdcd8170SKalle Valo static int ath6kl_wmi_keepalive_reply_rx(struct wmi *wmi, u8 *datap, int len) 1195bdcd8170SKalle Valo { 1196bdcd8170SKalle Valo if (len < sizeof(struct wmi_get_keepalive_cmd)) 1197bdcd8170SKalle Valo return -EINVAL; 1198bdcd8170SKalle Valo 1199bdcd8170SKalle Valo ath6kl_wakeup_event(wmi->parent_dev); 1200bdcd8170SKalle Valo 1201bdcd8170SKalle Valo return 0; 1202bdcd8170SKalle Valo } 1203bdcd8170SKalle Valo 1204240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_scan_complete_rx(struct wmi *wmi, u8 *datap, int len, 1205240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 1206bdcd8170SKalle Valo { 1207bdcd8170SKalle Valo struct wmi_scan_complete_event *ev; 1208bdcd8170SKalle Valo 1209bdcd8170SKalle Valo ev = (struct wmi_scan_complete_event *) datap; 1210bdcd8170SKalle Valo 1211240d2799SVasanthakumar Thiagarajan ath6kl_scan_complete_evt(vif, a_sle32_to_cpu(ev->status)); 1212bdcd8170SKalle Valo wmi->is_probe_ssid = false; 1213bdcd8170SKalle Valo 1214bdcd8170SKalle Valo return 0; 1215bdcd8170SKalle Valo } 1216bdcd8170SKalle Valo 121786512136SJouni Malinen static int ath6kl_wmi_neighbor_report_event_rx(struct wmi *wmi, u8 *datap, 1218240d2799SVasanthakumar Thiagarajan int len, struct ath6kl_vif *vif) 121986512136SJouni Malinen { 122086512136SJouni Malinen struct wmi_neighbor_report_event *ev; 122186512136SJouni Malinen u8 i; 122286512136SJouni Malinen 122386512136SJouni Malinen if (len < sizeof(*ev)) 122486512136SJouni Malinen return -EINVAL; 122586512136SJouni Malinen ev = (struct wmi_neighbor_report_event *) datap; 122686512136SJouni Malinen if (sizeof(*ev) + ev->num_neighbors * sizeof(struct wmi_neighbor_info) 122786512136SJouni Malinen > len) { 122886512136SJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "truncated neighbor event " 122986512136SJouni Malinen "(num=%d len=%d)\n", ev->num_neighbors, len); 123086512136SJouni Malinen return -EINVAL; 123186512136SJouni Malinen } 123286512136SJouni Malinen for (i = 0; i < ev->num_neighbors; i++) { 123386512136SJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "neighbor %d/%d - %pM 0x%x\n", 123486512136SJouni Malinen i + 1, ev->num_neighbors, ev->neighbor[i].bssid, 123586512136SJouni Malinen ev->neighbor[i].bss_flags); 1236240d2799SVasanthakumar Thiagarajan cfg80211_pmksa_candidate_notify(vif->ndev, i, 123786512136SJouni Malinen ev->neighbor[i].bssid, 123886512136SJouni Malinen !!(ev->neighbor[i].bss_flags & 123986512136SJouni Malinen WMI_PREAUTH_CAPABLE_BSS), 124086512136SJouni Malinen GFP_ATOMIC); 124186512136SJouni Malinen } 124286512136SJouni Malinen 124386512136SJouni Malinen return 0; 124486512136SJouni Malinen } 124586512136SJouni Malinen 1246bdcd8170SKalle Valo /* 1247bdcd8170SKalle Valo * Target is reporting a programming error. This is for 1248bdcd8170SKalle Valo * developer aid only. Target only checks a few common violations 1249bdcd8170SKalle Valo * and it is responsibility of host to do all error checking. 1250bdcd8170SKalle Valo * Behavior of target after wmi error event is undefined. 1251bdcd8170SKalle Valo * A reset is recommended. 1252bdcd8170SKalle Valo */ 1253bdcd8170SKalle Valo static int ath6kl_wmi_error_event_rx(struct wmi *wmi, u8 *datap, int len) 1254bdcd8170SKalle Valo { 1255bdcd8170SKalle Valo const char *type = "unknown error"; 1256bdcd8170SKalle Valo struct wmi_cmd_error_event *ev; 1257bdcd8170SKalle Valo ev = (struct wmi_cmd_error_event *) datap; 1258bdcd8170SKalle Valo 1259bdcd8170SKalle Valo switch (ev->err_code) { 1260bdcd8170SKalle Valo case INVALID_PARAM: 1261bdcd8170SKalle Valo type = "invalid parameter"; 1262bdcd8170SKalle Valo break; 1263bdcd8170SKalle Valo case ILLEGAL_STATE: 1264bdcd8170SKalle Valo type = "invalid state"; 1265bdcd8170SKalle Valo break; 1266bdcd8170SKalle Valo case INTERNAL_ERROR: 1267bdcd8170SKalle Valo type = "internal error"; 1268bdcd8170SKalle Valo break; 1269bdcd8170SKalle Valo } 1270bdcd8170SKalle Valo 1271bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "programming error, cmd=%d %s\n", 1272bdcd8170SKalle Valo ev->cmd_id, type); 1273bdcd8170SKalle Valo 1274bdcd8170SKalle Valo return 0; 1275bdcd8170SKalle Valo } 1276bdcd8170SKalle Valo 1277240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_stats_event_rx(struct wmi *wmi, u8 *datap, int len, 1278240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 1279bdcd8170SKalle Valo { 1280240d2799SVasanthakumar Thiagarajan ath6kl_tgt_stats_event(vif, datap, len); 1281bdcd8170SKalle Valo 1282bdcd8170SKalle Valo return 0; 1283bdcd8170SKalle Valo } 1284bdcd8170SKalle Valo 1285bdcd8170SKalle Valo static u8 ath6kl_wmi_get_upper_threshold(s16 rssi, 1286bdcd8170SKalle Valo struct sq_threshold_params *sq_thresh, 1287bdcd8170SKalle Valo u32 size) 1288bdcd8170SKalle Valo { 1289bdcd8170SKalle Valo u32 index; 1290bdcd8170SKalle Valo u8 threshold = (u8) sq_thresh->upper_threshold[size - 1]; 1291bdcd8170SKalle Valo 1292bdcd8170SKalle Valo /* The list is already in sorted order. Get the next lower value */ 1293bdcd8170SKalle Valo for (index = 0; index < size; index++) { 1294bdcd8170SKalle Valo if (rssi < sq_thresh->upper_threshold[index]) { 1295bdcd8170SKalle Valo threshold = (u8) sq_thresh->upper_threshold[index]; 1296bdcd8170SKalle Valo break; 1297bdcd8170SKalle Valo } 1298bdcd8170SKalle Valo } 1299bdcd8170SKalle Valo 1300bdcd8170SKalle Valo return threshold; 1301bdcd8170SKalle Valo } 1302bdcd8170SKalle Valo 1303bdcd8170SKalle Valo static u8 ath6kl_wmi_get_lower_threshold(s16 rssi, 1304bdcd8170SKalle Valo struct sq_threshold_params *sq_thresh, 1305bdcd8170SKalle Valo u32 size) 1306bdcd8170SKalle Valo { 1307bdcd8170SKalle Valo u32 index; 1308bdcd8170SKalle Valo u8 threshold = (u8) sq_thresh->lower_threshold[size - 1]; 1309bdcd8170SKalle Valo 1310bdcd8170SKalle Valo /* The list is already in sorted order. Get the next lower value */ 1311bdcd8170SKalle Valo for (index = 0; index < size; index++) { 1312bdcd8170SKalle Valo if (rssi > sq_thresh->lower_threshold[index]) { 1313bdcd8170SKalle Valo threshold = (u8) sq_thresh->lower_threshold[index]; 1314bdcd8170SKalle Valo break; 1315bdcd8170SKalle Valo } 1316bdcd8170SKalle Valo } 1317bdcd8170SKalle Valo 1318bdcd8170SKalle Valo return threshold; 1319bdcd8170SKalle Valo } 1320bdcd8170SKalle Valo 1321bdcd8170SKalle Valo static int ath6kl_wmi_send_rssi_threshold_params(struct wmi *wmi, 1322bdcd8170SKalle Valo struct wmi_rssi_threshold_params_cmd *rssi_cmd) 1323bdcd8170SKalle Valo { 1324bdcd8170SKalle Valo struct sk_buff *skb; 1325bdcd8170SKalle Valo struct wmi_rssi_threshold_params_cmd *cmd; 1326bdcd8170SKalle Valo 1327bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 1328bdcd8170SKalle Valo if (!skb) 1329bdcd8170SKalle Valo return -ENOMEM; 1330bdcd8170SKalle Valo 1331bdcd8170SKalle Valo cmd = (struct wmi_rssi_threshold_params_cmd *) skb->data; 1332bdcd8170SKalle Valo memcpy(cmd, rssi_cmd, sizeof(struct wmi_rssi_threshold_params_cmd)); 1333bdcd8170SKalle Valo 1334334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_RSSI_THRESHOLD_PARAMS_CMDID, 1335bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 1336bdcd8170SKalle Valo } 1337bdcd8170SKalle Valo 1338bdcd8170SKalle Valo static int ath6kl_wmi_rssi_threshold_event_rx(struct wmi *wmi, u8 *datap, 1339bdcd8170SKalle Valo int len) 1340bdcd8170SKalle Valo { 1341bdcd8170SKalle Valo struct wmi_rssi_threshold_event *reply; 1342bdcd8170SKalle Valo struct wmi_rssi_threshold_params_cmd cmd; 1343bdcd8170SKalle Valo struct sq_threshold_params *sq_thresh; 1344bdcd8170SKalle Valo enum wmi_rssi_threshold_val new_threshold; 1345bdcd8170SKalle Valo u8 upper_rssi_threshold, lower_rssi_threshold; 1346bdcd8170SKalle Valo s16 rssi; 1347bdcd8170SKalle Valo int ret; 1348bdcd8170SKalle Valo 1349bdcd8170SKalle Valo if (len < sizeof(struct wmi_rssi_threshold_event)) 1350bdcd8170SKalle Valo return -EINVAL; 1351bdcd8170SKalle Valo 1352bdcd8170SKalle Valo reply = (struct wmi_rssi_threshold_event *) datap; 1353bdcd8170SKalle Valo new_threshold = (enum wmi_rssi_threshold_val) reply->range; 1354bdcd8170SKalle Valo rssi = a_sle16_to_cpu(reply->rssi); 1355bdcd8170SKalle Valo 1356bdcd8170SKalle Valo sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_RSSI]; 1357bdcd8170SKalle Valo 1358bdcd8170SKalle Valo /* 1359bdcd8170SKalle Valo * Identify the threshold breached and communicate that to the app. 1360bdcd8170SKalle Valo * After that install a new set of thresholds based on the signal 1361bdcd8170SKalle Valo * quality reported by the target 1362bdcd8170SKalle Valo */ 1363bdcd8170SKalle Valo if (new_threshold) { 1364bdcd8170SKalle Valo /* Upper threshold breached */ 1365bdcd8170SKalle Valo if (rssi < sq_thresh->upper_threshold[0]) { 1366bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 1367bdcd8170SKalle Valo "spurious upper rssi threshold event: %d\n", 1368bdcd8170SKalle Valo rssi); 1369bdcd8170SKalle Valo } else if ((rssi < sq_thresh->upper_threshold[1]) && 1370bdcd8170SKalle Valo (rssi >= sq_thresh->upper_threshold[0])) { 1371bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD1_ABOVE; 1372bdcd8170SKalle Valo } else if ((rssi < sq_thresh->upper_threshold[2]) && 1373bdcd8170SKalle Valo (rssi >= sq_thresh->upper_threshold[1])) { 1374bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD2_ABOVE; 1375bdcd8170SKalle Valo } else if ((rssi < sq_thresh->upper_threshold[3]) && 1376bdcd8170SKalle Valo (rssi >= sq_thresh->upper_threshold[2])) { 1377bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD3_ABOVE; 1378bdcd8170SKalle Valo } else if ((rssi < sq_thresh->upper_threshold[4]) && 1379bdcd8170SKalle Valo (rssi >= sq_thresh->upper_threshold[3])) { 1380bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD4_ABOVE; 1381bdcd8170SKalle Valo } else if ((rssi < sq_thresh->upper_threshold[5]) && 1382bdcd8170SKalle Valo (rssi >= sq_thresh->upper_threshold[4])) { 1383bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD5_ABOVE; 1384bdcd8170SKalle Valo } else if (rssi >= sq_thresh->upper_threshold[5]) { 1385bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD6_ABOVE; 1386bdcd8170SKalle Valo } 1387bdcd8170SKalle Valo } else { 1388bdcd8170SKalle Valo /* Lower threshold breached */ 1389bdcd8170SKalle Valo if (rssi > sq_thresh->lower_threshold[0]) { 1390bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 1391bdcd8170SKalle Valo "spurious lower rssi threshold event: %d %d\n", 1392bdcd8170SKalle Valo rssi, sq_thresh->lower_threshold[0]); 1393bdcd8170SKalle Valo } else if ((rssi > sq_thresh->lower_threshold[1]) && 1394bdcd8170SKalle Valo (rssi <= sq_thresh->lower_threshold[0])) { 1395bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD6_BELOW; 1396bdcd8170SKalle Valo } else if ((rssi > sq_thresh->lower_threshold[2]) && 1397bdcd8170SKalle Valo (rssi <= sq_thresh->lower_threshold[1])) { 1398bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD5_BELOW; 1399bdcd8170SKalle Valo } else if ((rssi > sq_thresh->lower_threshold[3]) && 1400bdcd8170SKalle Valo (rssi <= sq_thresh->lower_threshold[2])) { 1401bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD4_BELOW; 1402bdcd8170SKalle Valo } else if ((rssi > sq_thresh->lower_threshold[4]) && 1403bdcd8170SKalle Valo (rssi <= sq_thresh->lower_threshold[3])) { 1404bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD3_BELOW; 1405bdcd8170SKalle Valo } else if ((rssi > sq_thresh->lower_threshold[5]) && 1406bdcd8170SKalle Valo (rssi <= sq_thresh->lower_threshold[4])) { 1407bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD2_BELOW; 1408bdcd8170SKalle Valo } else if (rssi <= sq_thresh->lower_threshold[5]) { 1409bdcd8170SKalle Valo new_threshold = WMI_RSSI_THRESHOLD1_BELOW; 1410bdcd8170SKalle Valo } 1411bdcd8170SKalle Valo } 1412bdcd8170SKalle Valo 1413bdcd8170SKalle Valo /* Calculate and install the next set of thresholds */ 1414bdcd8170SKalle Valo lower_rssi_threshold = ath6kl_wmi_get_lower_threshold(rssi, sq_thresh, 1415bdcd8170SKalle Valo sq_thresh->lower_threshold_valid_count); 1416bdcd8170SKalle Valo upper_rssi_threshold = ath6kl_wmi_get_upper_threshold(rssi, sq_thresh, 1417bdcd8170SKalle Valo sq_thresh->upper_threshold_valid_count); 1418bdcd8170SKalle Valo 1419bdcd8170SKalle Valo /* Issue a wmi command to install the thresholds */ 1420bdcd8170SKalle Valo cmd.thresh_above1_val = a_cpu_to_sle16(upper_rssi_threshold); 1421bdcd8170SKalle Valo cmd.thresh_below1_val = a_cpu_to_sle16(lower_rssi_threshold); 1422bdcd8170SKalle Valo cmd.weight = sq_thresh->weight; 1423bdcd8170SKalle Valo cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval); 1424bdcd8170SKalle Valo 1425bdcd8170SKalle Valo ret = ath6kl_wmi_send_rssi_threshold_params(wmi, &cmd); 1426bdcd8170SKalle Valo if (ret) { 1427bdcd8170SKalle Valo ath6kl_err("unable to configure rssi thresholds\n"); 1428bdcd8170SKalle Valo return -EIO; 1429bdcd8170SKalle Valo } 1430bdcd8170SKalle Valo 1431bdcd8170SKalle Valo return 0; 1432bdcd8170SKalle Valo } 1433bdcd8170SKalle Valo 1434240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_cac_event_rx(struct wmi *wmi, u8 *datap, int len, 1435240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 1436bdcd8170SKalle Valo { 1437bdcd8170SKalle Valo struct wmi_cac_event *reply; 1438bdcd8170SKalle Valo struct ieee80211_tspec_ie *ts; 1439bdcd8170SKalle Valo u16 active_tsids, tsinfo; 1440bdcd8170SKalle Valo u8 tsid, index; 1441bdcd8170SKalle Valo u8 ts_id; 1442bdcd8170SKalle Valo 1443bdcd8170SKalle Valo if (len < sizeof(struct wmi_cac_event)) 1444bdcd8170SKalle Valo return -EINVAL; 1445bdcd8170SKalle Valo 1446bdcd8170SKalle Valo reply = (struct wmi_cac_event *) datap; 1447bdcd8170SKalle Valo 1448bdcd8170SKalle Valo if ((reply->cac_indication == CAC_INDICATION_ADMISSION_RESP) && 1449bdcd8170SKalle Valo (reply->status_code != IEEE80211_TSPEC_STATUS_ADMISS_ACCEPTED)) { 1450bdcd8170SKalle Valo 1451bdcd8170SKalle Valo ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion); 1452bdcd8170SKalle Valo tsinfo = le16_to_cpu(ts->tsinfo); 1453bdcd8170SKalle Valo tsid = (tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) & 1454bdcd8170SKalle Valo IEEE80211_WMM_IE_TSPEC_TID_MASK; 1455bdcd8170SKalle Valo 1456240d2799SVasanthakumar Thiagarajan ath6kl_wmi_delete_pstream_cmd(wmi, vif->fw_vif_idx, 1457240d2799SVasanthakumar Thiagarajan reply->ac, tsid); 1458bdcd8170SKalle Valo } else if (reply->cac_indication == CAC_INDICATION_NO_RESP) { 1459bdcd8170SKalle Valo /* 1460bdcd8170SKalle Valo * Following assumes that there is only one outstanding 1461bdcd8170SKalle Valo * ADDTS request when this event is received 1462bdcd8170SKalle Valo */ 1463bdcd8170SKalle Valo spin_lock_bh(&wmi->lock); 1464bdcd8170SKalle Valo active_tsids = wmi->stream_exist_for_ac[reply->ac]; 1465bdcd8170SKalle Valo spin_unlock_bh(&wmi->lock); 1466bdcd8170SKalle Valo 1467bdcd8170SKalle Valo for (index = 0; index < sizeof(active_tsids) * 8; index++) { 1468bdcd8170SKalle Valo if ((active_tsids >> index) & 1) 1469bdcd8170SKalle Valo break; 1470bdcd8170SKalle Valo } 1471bdcd8170SKalle Valo if (index < (sizeof(active_tsids) * 8)) 1472240d2799SVasanthakumar Thiagarajan ath6kl_wmi_delete_pstream_cmd(wmi, vif->fw_vif_idx, 1473240d2799SVasanthakumar Thiagarajan reply->ac, index); 1474bdcd8170SKalle Valo } 1475bdcd8170SKalle Valo 1476bdcd8170SKalle Valo /* 1477bdcd8170SKalle Valo * Clear active tsids and Add missing handling 1478bdcd8170SKalle Valo * for delete qos stream from AP 1479bdcd8170SKalle Valo */ 1480bdcd8170SKalle Valo else if (reply->cac_indication == CAC_INDICATION_DELETE) { 1481bdcd8170SKalle Valo 1482bdcd8170SKalle Valo ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion); 1483bdcd8170SKalle Valo tsinfo = le16_to_cpu(ts->tsinfo); 1484bdcd8170SKalle Valo ts_id = ((tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) & 1485bdcd8170SKalle Valo IEEE80211_WMM_IE_TSPEC_TID_MASK); 1486bdcd8170SKalle Valo 1487bdcd8170SKalle Valo spin_lock_bh(&wmi->lock); 1488bdcd8170SKalle Valo wmi->stream_exist_for_ac[reply->ac] &= ~(1 << ts_id); 1489bdcd8170SKalle Valo active_tsids = wmi->stream_exist_for_ac[reply->ac]; 1490bdcd8170SKalle Valo spin_unlock_bh(&wmi->lock); 1491bdcd8170SKalle Valo 1492bdcd8170SKalle Valo /* Indicate stream inactivity to driver layer only if all tsids 1493bdcd8170SKalle Valo * within this AC are deleted. 1494bdcd8170SKalle Valo */ 1495bdcd8170SKalle Valo if (!active_tsids) { 1496bdcd8170SKalle Valo ath6kl_indicate_tx_activity(wmi->parent_dev, reply->ac, 1497bdcd8170SKalle Valo false); 1498bdcd8170SKalle Valo wmi->fat_pipe_exist &= ~(1 << reply->ac); 1499bdcd8170SKalle Valo } 1500bdcd8170SKalle Valo } 1501bdcd8170SKalle Valo 1502bdcd8170SKalle Valo return 0; 1503bdcd8170SKalle Valo } 1504bdcd8170SKalle Valo 1505bdcd8170SKalle Valo static int ath6kl_wmi_send_snr_threshold_params(struct wmi *wmi, 1506bdcd8170SKalle Valo struct wmi_snr_threshold_params_cmd *snr_cmd) 1507bdcd8170SKalle Valo { 1508bdcd8170SKalle Valo struct sk_buff *skb; 1509bdcd8170SKalle Valo struct wmi_snr_threshold_params_cmd *cmd; 1510bdcd8170SKalle Valo 1511bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 1512bdcd8170SKalle Valo if (!skb) 1513bdcd8170SKalle Valo return -ENOMEM; 1514bdcd8170SKalle Valo 1515bdcd8170SKalle Valo cmd = (struct wmi_snr_threshold_params_cmd *) skb->data; 1516bdcd8170SKalle Valo memcpy(cmd, snr_cmd, sizeof(struct wmi_snr_threshold_params_cmd)); 1517bdcd8170SKalle Valo 1518334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SNR_THRESHOLD_PARAMS_CMDID, 1519bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 1520bdcd8170SKalle Valo } 1521bdcd8170SKalle Valo 1522bdcd8170SKalle Valo static int ath6kl_wmi_snr_threshold_event_rx(struct wmi *wmi, u8 *datap, 1523bdcd8170SKalle Valo int len) 1524bdcd8170SKalle Valo { 1525bdcd8170SKalle Valo struct wmi_snr_threshold_event *reply; 1526bdcd8170SKalle Valo struct sq_threshold_params *sq_thresh; 1527bdcd8170SKalle Valo struct wmi_snr_threshold_params_cmd cmd; 1528bdcd8170SKalle Valo enum wmi_snr_threshold_val new_threshold; 1529bdcd8170SKalle Valo u8 upper_snr_threshold, lower_snr_threshold; 1530bdcd8170SKalle Valo s16 snr; 1531bdcd8170SKalle Valo int ret; 1532bdcd8170SKalle Valo 1533bdcd8170SKalle Valo if (len < sizeof(struct wmi_snr_threshold_event)) 1534bdcd8170SKalle Valo return -EINVAL; 1535bdcd8170SKalle Valo 1536bdcd8170SKalle Valo reply = (struct wmi_snr_threshold_event *) datap; 1537bdcd8170SKalle Valo 1538bdcd8170SKalle Valo new_threshold = (enum wmi_snr_threshold_val) reply->range; 1539bdcd8170SKalle Valo snr = reply->snr; 1540bdcd8170SKalle Valo 1541bdcd8170SKalle Valo sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_SNR]; 1542bdcd8170SKalle Valo 1543bdcd8170SKalle Valo /* 1544bdcd8170SKalle Valo * Identify the threshold breached and communicate that to the app. 1545bdcd8170SKalle Valo * After that install a new set of thresholds based on the signal 1546bdcd8170SKalle Valo * quality reported by the target. 1547bdcd8170SKalle Valo */ 1548bdcd8170SKalle Valo if (new_threshold) { 1549bdcd8170SKalle Valo /* Upper threshold breached */ 1550bdcd8170SKalle Valo if (snr < sq_thresh->upper_threshold[0]) { 1551bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 1552bdcd8170SKalle Valo "spurious upper snr threshold event: %d\n", 1553bdcd8170SKalle Valo snr); 1554bdcd8170SKalle Valo } else if ((snr < sq_thresh->upper_threshold[1]) && 1555bdcd8170SKalle Valo (snr >= sq_thresh->upper_threshold[0])) { 1556bdcd8170SKalle Valo new_threshold = WMI_SNR_THRESHOLD1_ABOVE; 1557bdcd8170SKalle Valo } else if ((snr < sq_thresh->upper_threshold[2]) && 1558bdcd8170SKalle Valo (snr >= sq_thresh->upper_threshold[1])) { 1559bdcd8170SKalle Valo new_threshold = WMI_SNR_THRESHOLD2_ABOVE; 1560bdcd8170SKalle Valo } else if ((snr < sq_thresh->upper_threshold[3]) && 1561bdcd8170SKalle Valo (snr >= sq_thresh->upper_threshold[2])) { 1562bdcd8170SKalle Valo new_threshold = WMI_SNR_THRESHOLD3_ABOVE; 1563bdcd8170SKalle Valo } else if (snr >= sq_thresh->upper_threshold[3]) { 1564bdcd8170SKalle Valo new_threshold = WMI_SNR_THRESHOLD4_ABOVE; 1565bdcd8170SKalle Valo } 1566bdcd8170SKalle Valo } else { 1567bdcd8170SKalle Valo /* Lower threshold breached */ 1568bdcd8170SKalle Valo if (snr > sq_thresh->lower_threshold[0]) { 1569bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 1570bdcd8170SKalle Valo "spurious lower snr threshold event: %d\n", 1571bdcd8170SKalle Valo sq_thresh->lower_threshold[0]); 1572bdcd8170SKalle Valo } else if ((snr > sq_thresh->lower_threshold[1]) && 1573bdcd8170SKalle Valo (snr <= sq_thresh->lower_threshold[0])) { 1574bdcd8170SKalle Valo new_threshold = WMI_SNR_THRESHOLD4_BELOW; 1575bdcd8170SKalle Valo } else if ((snr > sq_thresh->lower_threshold[2]) && 1576bdcd8170SKalle Valo (snr <= sq_thresh->lower_threshold[1])) { 1577bdcd8170SKalle Valo new_threshold = WMI_SNR_THRESHOLD3_BELOW; 1578bdcd8170SKalle Valo } else if ((snr > sq_thresh->lower_threshold[3]) && 1579bdcd8170SKalle Valo (snr <= sq_thresh->lower_threshold[2])) { 1580bdcd8170SKalle Valo new_threshold = WMI_SNR_THRESHOLD2_BELOW; 1581bdcd8170SKalle Valo } else if (snr <= sq_thresh->lower_threshold[3]) { 1582bdcd8170SKalle Valo new_threshold = WMI_SNR_THRESHOLD1_BELOW; 1583bdcd8170SKalle Valo } 1584bdcd8170SKalle Valo } 1585bdcd8170SKalle Valo 1586bdcd8170SKalle Valo /* Calculate and install the next set of thresholds */ 1587bdcd8170SKalle Valo lower_snr_threshold = ath6kl_wmi_get_lower_threshold(snr, sq_thresh, 1588bdcd8170SKalle Valo sq_thresh->lower_threshold_valid_count); 1589bdcd8170SKalle Valo upper_snr_threshold = ath6kl_wmi_get_upper_threshold(snr, sq_thresh, 1590bdcd8170SKalle Valo sq_thresh->upper_threshold_valid_count); 1591bdcd8170SKalle Valo 1592bdcd8170SKalle Valo /* Issue a wmi command to install the thresholds */ 1593bdcd8170SKalle Valo cmd.thresh_above1_val = upper_snr_threshold; 1594bdcd8170SKalle Valo cmd.thresh_below1_val = lower_snr_threshold; 1595bdcd8170SKalle Valo cmd.weight = sq_thresh->weight; 1596bdcd8170SKalle Valo cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval); 1597bdcd8170SKalle Valo 1598bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 1599bdcd8170SKalle Valo "snr: %d, threshold: %d, lower: %d, upper: %d\n", 1600bdcd8170SKalle Valo snr, new_threshold, 1601bdcd8170SKalle Valo lower_snr_threshold, upper_snr_threshold); 1602bdcd8170SKalle Valo 1603bdcd8170SKalle Valo ret = ath6kl_wmi_send_snr_threshold_params(wmi, &cmd); 1604bdcd8170SKalle Valo if (ret) { 1605bdcd8170SKalle Valo ath6kl_err("unable to configure snr threshold\n"); 1606bdcd8170SKalle Valo return -EIO; 1607bdcd8170SKalle Valo } 1608bdcd8170SKalle Valo 1609bdcd8170SKalle Valo return 0; 1610bdcd8170SKalle Valo } 1611bdcd8170SKalle Valo 1612bdcd8170SKalle Valo static int ath6kl_wmi_aplist_event_rx(struct wmi *wmi, u8 *datap, int len) 1613bdcd8170SKalle Valo { 1614bdcd8170SKalle Valo u16 ap_info_entry_size; 1615bdcd8170SKalle Valo struct wmi_aplist_event *ev = (struct wmi_aplist_event *) datap; 1616bdcd8170SKalle Valo struct wmi_ap_info_v1 *ap_info_v1; 1617bdcd8170SKalle Valo u8 index; 1618bdcd8170SKalle Valo 1619bdcd8170SKalle Valo if (len < sizeof(struct wmi_aplist_event) || 1620bdcd8170SKalle Valo ev->ap_list_ver != APLIST_VER1) 1621bdcd8170SKalle Valo return -EINVAL; 1622bdcd8170SKalle Valo 1623bdcd8170SKalle Valo ap_info_entry_size = sizeof(struct wmi_ap_info_v1); 1624bdcd8170SKalle Valo ap_info_v1 = (struct wmi_ap_info_v1 *) ev->ap_list; 1625bdcd8170SKalle Valo 1626bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 1627bdcd8170SKalle Valo "number of APs in aplist event: %d\n", ev->num_ap); 1628bdcd8170SKalle Valo 1629bdcd8170SKalle Valo if (len < (int) (sizeof(struct wmi_aplist_event) + 1630bdcd8170SKalle Valo (ev->num_ap - 1) * ap_info_entry_size)) 1631bdcd8170SKalle Valo return -EINVAL; 1632bdcd8170SKalle Valo 1633bdcd8170SKalle Valo /* AP list version 1 contents */ 1634bdcd8170SKalle Valo for (index = 0; index < ev->num_ap; index++) { 1635bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "AP#%d BSSID %pM Channel %d\n", 1636bdcd8170SKalle Valo index, ap_info_v1->bssid, ap_info_v1->channel); 1637bdcd8170SKalle Valo ap_info_v1++; 1638bdcd8170SKalle Valo } 1639bdcd8170SKalle Valo 1640bdcd8170SKalle Valo return 0; 1641bdcd8170SKalle Valo } 1642bdcd8170SKalle Valo 1643334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_cmd_send(struct wmi *wmi, u8 if_idx, struct sk_buff *skb, 1644bdcd8170SKalle Valo enum wmi_cmd_id cmd_id, enum wmi_sync_flag sync_flag) 1645bdcd8170SKalle Valo { 1646bdcd8170SKalle Valo struct wmi_cmd_hdr *cmd_hdr; 1647bdcd8170SKalle Valo enum htc_endpoint_id ep_id = wmi->ep_id; 1648bdcd8170SKalle Valo int ret; 1649334234b5SVasanthakumar Thiagarajan u16 info1; 1650bdcd8170SKalle Valo 165171f96ee6SKalle Valo if (WARN_ON(skb == NULL || (if_idx > (wmi->parent_dev->vif_max - 1)))) 1652bdcd8170SKalle Valo return -EINVAL; 1653bdcd8170SKalle Valo 1654b9b6ee60SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "wmi tx id %d len %d flag %d\n", 1655b9b6ee60SKalle Valo cmd_id, skb->len, sync_flag); 1656b9b6ee60SKalle Valo ath6kl_dbg_dump(ATH6KL_DBG_WMI_DUMP, NULL, "wmi tx ", 1657b9b6ee60SKalle Valo skb->data, skb->len); 1658b9b6ee60SKalle Valo 1659bdcd8170SKalle Valo if (sync_flag >= END_WMIFLAG) { 1660bdcd8170SKalle Valo dev_kfree_skb(skb); 1661bdcd8170SKalle Valo return -EINVAL; 1662bdcd8170SKalle Valo } 1663bdcd8170SKalle Valo 1664bdcd8170SKalle Valo if ((sync_flag == SYNC_BEFORE_WMIFLAG) || 1665bdcd8170SKalle Valo (sync_flag == SYNC_BOTH_WMIFLAG)) { 1666bdcd8170SKalle Valo /* 1667bdcd8170SKalle Valo * Make sure all data currently queued is transmitted before 1668bdcd8170SKalle Valo * the cmd execution. Establish a new sync point. 1669bdcd8170SKalle Valo */ 1670240d2799SVasanthakumar Thiagarajan ath6kl_wmi_sync_point(wmi, if_idx); 1671bdcd8170SKalle Valo } 1672bdcd8170SKalle Valo 1673bdcd8170SKalle Valo skb_push(skb, sizeof(struct wmi_cmd_hdr)); 1674bdcd8170SKalle Valo 1675bdcd8170SKalle Valo cmd_hdr = (struct wmi_cmd_hdr *) skb->data; 1676bdcd8170SKalle Valo cmd_hdr->cmd_id = cpu_to_le16(cmd_id); 1677334234b5SVasanthakumar Thiagarajan info1 = if_idx & WMI_CMD_HDR_IF_ID_MASK; 1678334234b5SVasanthakumar Thiagarajan cmd_hdr->info1 = cpu_to_le16(info1); 1679bdcd8170SKalle Valo 1680bdcd8170SKalle Valo /* Only for OPT_TX_CMD, use BE endpoint. */ 1681bdcd8170SKalle Valo if (cmd_id == WMI_OPT_TX_FRAME_CMDID) { 1682bdcd8170SKalle Valo ret = ath6kl_wmi_data_hdr_add(wmi, skb, OPT_MSGTYPE, 16836765d0aaSVasanthakumar Thiagarajan false, false, 0, NULL, if_idx); 1684bdcd8170SKalle Valo if (ret) { 1685bdcd8170SKalle Valo dev_kfree_skb(skb); 1686bdcd8170SKalle Valo return ret; 1687bdcd8170SKalle Valo } 1688bdcd8170SKalle Valo ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev, WMM_AC_BE); 1689bdcd8170SKalle Valo } 1690bdcd8170SKalle Valo 1691bdcd8170SKalle Valo ath6kl_control_tx(wmi->parent_dev, skb, ep_id); 1692bdcd8170SKalle Valo 1693bdcd8170SKalle Valo if ((sync_flag == SYNC_AFTER_WMIFLAG) || 1694bdcd8170SKalle Valo (sync_flag == SYNC_BOTH_WMIFLAG)) { 1695bdcd8170SKalle Valo /* 1696bdcd8170SKalle Valo * Make sure all new data queued waits for the command to 1697bdcd8170SKalle Valo * execute. Establish a new sync point. 1698bdcd8170SKalle Valo */ 1699240d2799SVasanthakumar Thiagarajan ath6kl_wmi_sync_point(wmi, if_idx); 1700bdcd8170SKalle Valo } 1701bdcd8170SKalle Valo 1702bdcd8170SKalle Valo return 0; 1703bdcd8170SKalle Valo } 1704bdcd8170SKalle Valo 1705334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_connect_cmd(struct wmi *wmi, u8 if_idx, 1706334234b5SVasanthakumar Thiagarajan enum network_type nw_type, 1707bdcd8170SKalle Valo enum dot11_auth_mode dot11_auth_mode, 1708bdcd8170SKalle Valo enum auth_mode auth_mode, 1709bdcd8170SKalle Valo enum crypto_type pairwise_crypto, 1710bdcd8170SKalle Valo u8 pairwise_crypto_len, 1711bdcd8170SKalle Valo enum crypto_type group_crypto, 1712bdcd8170SKalle Valo u8 group_crypto_len, int ssid_len, u8 *ssid, 17133ca9d1fcSAarthi Thiruvengadam u8 *bssid, u16 channel, u32 ctrl_flags, 17143ca9d1fcSAarthi Thiruvengadam u8 nw_subtype) 1715bdcd8170SKalle Valo { 1716bdcd8170SKalle Valo struct sk_buff *skb; 1717bdcd8170SKalle Valo struct wmi_connect_cmd *cc; 1718bdcd8170SKalle Valo int ret; 1719bdcd8170SKalle Valo 1720b9b6ee60SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 1721b9b6ee60SKalle Valo "wmi connect bssid %pM freq %d flags 0x%x ssid_len %d " 1722b9b6ee60SKalle Valo "type %d dot11_auth %d auth %d pairwise %d group %d\n", 1723b9b6ee60SKalle Valo bssid, channel, ctrl_flags, ssid_len, nw_type, 1724b9b6ee60SKalle Valo dot11_auth_mode, auth_mode, pairwise_crypto, group_crypto); 1725b9b6ee60SKalle Valo ath6kl_dbg_dump(ATH6KL_DBG_WMI, NULL, "ssid ", ssid, ssid_len); 1726b9b6ee60SKalle Valo 1727bdcd8170SKalle Valo wmi->traffic_class = 100; 1728bdcd8170SKalle Valo 1729bdcd8170SKalle Valo if ((pairwise_crypto == NONE_CRYPT) && (group_crypto != NONE_CRYPT)) 1730bdcd8170SKalle Valo return -EINVAL; 1731bdcd8170SKalle Valo 1732bdcd8170SKalle Valo if ((pairwise_crypto != NONE_CRYPT) && (group_crypto == NONE_CRYPT)) 1733bdcd8170SKalle Valo return -EINVAL; 1734bdcd8170SKalle Valo 1735bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_connect_cmd)); 1736bdcd8170SKalle Valo if (!skb) 1737bdcd8170SKalle Valo return -ENOMEM; 1738bdcd8170SKalle Valo 1739bdcd8170SKalle Valo cc = (struct wmi_connect_cmd *) skb->data; 1740bdcd8170SKalle Valo 1741bdcd8170SKalle Valo if (ssid_len) 1742bdcd8170SKalle Valo memcpy(cc->ssid, ssid, ssid_len); 1743bdcd8170SKalle Valo 1744bdcd8170SKalle Valo cc->ssid_len = ssid_len; 1745bdcd8170SKalle Valo cc->nw_type = nw_type; 1746bdcd8170SKalle Valo cc->dot11_auth_mode = dot11_auth_mode; 1747bdcd8170SKalle Valo cc->auth_mode = auth_mode; 1748bdcd8170SKalle Valo cc->prwise_crypto_type = pairwise_crypto; 1749bdcd8170SKalle Valo cc->prwise_crypto_len = pairwise_crypto_len; 1750bdcd8170SKalle Valo cc->grp_crypto_type = group_crypto; 1751bdcd8170SKalle Valo cc->grp_crypto_len = group_crypto_len; 1752bdcd8170SKalle Valo cc->ch = cpu_to_le16(channel); 1753bdcd8170SKalle Valo cc->ctrl_flags = cpu_to_le32(ctrl_flags); 17543ca9d1fcSAarthi Thiruvengadam cc->nw_subtype = nw_subtype; 1755bdcd8170SKalle Valo 1756bdcd8170SKalle Valo if (bssid != NULL) 1757bdcd8170SKalle Valo memcpy(cc->bssid, bssid, ETH_ALEN); 1758bdcd8170SKalle Valo 1759334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_CONNECT_CMDID, 1760334234b5SVasanthakumar Thiagarajan NO_SYNC_WMIFLAG); 1761bdcd8170SKalle Valo 1762bdcd8170SKalle Valo return ret; 1763bdcd8170SKalle Valo } 1764bdcd8170SKalle Valo 1765334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_reconnect_cmd(struct wmi *wmi, u8 if_idx, u8 *bssid, 1766334234b5SVasanthakumar Thiagarajan u16 channel) 1767bdcd8170SKalle Valo { 1768bdcd8170SKalle Valo struct sk_buff *skb; 1769bdcd8170SKalle Valo struct wmi_reconnect_cmd *cc; 1770bdcd8170SKalle Valo int ret; 1771bdcd8170SKalle Valo 1772b9b6ee60SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "wmi reconnect bssid %pM freq %d\n", 1773b9b6ee60SKalle Valo bssid, channel); 1774b9b6ee60SKalle Valo 1775bdcd8170SKalle Valo wmi->traffic_class = 100; 1776bdcd8170SKalle Valo 1777bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_reconnect_cmd)); 1778bdcd8170SKalle Valo if (!skb) 1779bdcd8170SKalle Valo return -ENOMEM; 1780bdcd8170SKalle Valo 1781bdcd8170SKalle Valo cc = (struct wmi_reconnect_cmd *) skb->data; 1782bdcd8170SKalle Valo cc->channel = cpu_to_le16(channel); 1783bdcd8170SKalle Valo 1784bdcd8170SKalle Valo if (bssid != NULL) 1785bdcd8170SKalle Valo memcpy(cc->bssid, bssid, ETH_ALEN); 1786bdcd8170SKalle Valo 1787334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_RECONNECT_CMDID, 1788bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 1789bdcd8170SKalle Valo 1790bdcd8170SKalle Valo return ret; 1791bdcd8170SKalle Valo } 1792bdcd8170SKalle Valo 1793334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_disconnect_cmd(struct wmi *wmi, u8 if_idx) 1794bdcd8170SKalle Valo { 1795bdcd8170SKalle Valo int ret; 1796bdcd8170SKalle Valo 1797b9b6ee60SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "wmi disconnect\n"); 1798b9b6ee60SKalle Valo 1799bdcd8170SKalle Valo wmi->traffic_class = 100; 1800bdcd8170SKalle Valo 1801bdcd8170SKalle Valo /* Disconnect command does not need to do a SYNC before. */ 1802334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_DISCONNECT_CMDID); 1803bdcd8170SKalle Valo 1804bdcd8170SKalle Valo return ret; 1805bdcd8170SKalle Valo } 1806bdcd8170SKalle Valo 18073ca9d1fcSAarthi Thiruvengadam int ath6kl_wmi_beginscan_cmd(struct wmi *wmi, u8 if_idx, 18083ca9d1fcSAarthi Thiruvengadam enum wmi_scan_type scan_type, 18093ca9d1fcSAarthi Thiruvengadam u32 force_fgscan, u32 is_legacy, 18103ca9d1fcSAarthi Thiruvengadam u32 home_dwell_time, u32 force_scan_interval, 18113ca9d1fcSAarthi Thiruvengadam s8 num_chan, u16 *ch_list, u32 no_cck, u32 *rates) 18123ca9d1fcSAarthi Thiruvengadam { 18133ca9d1fcSAarthi Thiruvengadam struct sk_buff *skb; 18143ca9d1fcSAarthi Thiruvengadam struct wmi_begin_scan_cmd *sc; 18153ca9d1fcSAarthi Thiruvengadam s8 size; 18163ca9d1fcSAarthi Thiruvengadam int i, band, ret; 18173ca9d1fcSAarthi Thiruvengadam struct ath6kl *ar = wmi->parent_dev; 18183ca9d1fcSAarthi Thiruvengadam int num_rates; 18193ca9d1fcSAarthi Thiruvengadam 18203ca9d1fcSAarthi Thiruvengadam size = sizeof(struct wmi_begin_scan_cmd); 18213ca9d1fcSAarthi Thiruvengadam 18223ca9d1fcSAarthi Thiruvengadam if ((scan_type != WMI_LONG_SCAN) && (scan_type != WMI_SHORT_SCAN)) 18233ca9d1fcSAarthi Thiruvengadam return -EINVAL; 18243ca9d1fcSAarthi Thiruvengadam 18253ca9d1fcSAarthi Thiruvengadam if (num_chan > WMI_MAX_CHANNELS) 18263ca9d1fcSAarthi Thiruvengadam return -EINVAL; 18273ca9d1fcSAarthi Thiruvengadam 18283ca9d1fcSAarthi Thiruvengadam if (num_chan) 18293ca9d1fcSAarthi Thiruvengadam size += sizeof(u16) * (num_chan - 1); 18303ca9d1fcSAarthi Thiruvengadam 18313ca9d1fcSAarthi Thiruvengadam skb = ath6kl_wmi_get_new_buf(size); 18323ca9d1fcSAarthi Thiruvengadam if (!skb) 18333ca9d1fcSAarthi Thiruvengadam return -ENOMEM; 18343ca9d1fcSAarthi Thiruvengadam 18353ca9d1fcSAarthi Thiruvengadam sc = (struct wmi_begin_scan_cmd *) skb->data; 18363ca9d1fcSAarthi Thiruvengadam sc->scan_type = scan_type; 18373ca9d1fcSAarthi Thiruvengadam sc->force_fg_scan = cpu_to_le32(force_fgscan); 18383ca9d1fcSAarthi Thiruvengadam sc->is_legacy = cpu_to_le32(is_legacy); 18393ca9d1fcSAarthi Thiruvengadam sc->home_dwell_time = cpu_to_le32(home_dwell_time); 18403ca9d1fcSAarthi Thiruvengadam sc->force_scan_intvl = cpu_to_le32(force_scan_interval); 18413ca9d1fcSAarthi Thiruvengadam sc->no_cck = cpu_to_le32(no_cck); 18423ca9d1fcSAarthi Thiruvengadam sc->num_ch = num_chan; 18433ca9d1fcSAarthi Thiruvengadam 18443ca9d1fcSAarthi Thiruvengadam for (band = 0; band < IEEE80211_NUM_BANDS; band++) { 18453ca9d1fcSAarthi Thiruvengadam struct ieee80211_supported_band *sband = 18463ca9d1fcSAarthi Thiruvengadam ar->wiphy->bands[band]; 18473ca9d1fcSAarthi Thiruvengadam u32 ratemask = rates[band]; 18483ca9d1fcSAarthi Thiruvengadam u8 *supp_rates = sc->supp_rates[band].rates; 18493ca9d1fcSAarthi Thiruvengadam num_rates = 0; 18503ca9d1fcSAarthi Thiruvengadam 18513ca9d1fcSAarthi Thiruvengadam for (i = 0; i < sband->n_bitrates; i++) { 18523ca9d1fcSAarthi Thiruvengadam if ((BIT(i) & ratemask) == 0) 18533ca9d1fcSAarthi Thiruvengadam continue; /* skip rate */ 18543ca9d1fcSAarthi Thiruvengadam supp_rates[num_rates++] = 18553ca9d1fcSAarthi Thiruvengadam (u8) (sband->bitrates[i].bitrate / 5); 18563ca9d1fcSAarthi Thiruvengadam } 18573ca9d1fcSAarthi Thiruvengadam sc->supp_rates[band].nrates = num_rates; 18583ca9d1fcSAarthi Thiruvengadam } 18593ca9d1fcSAarthi Thiruvengadam 18603ca9d1fcSAarthi Thiruvengadam for (i = 0; i < num_chan; i++) 18613ca9d1fcSAarthi Thiruvengadam sc->ch_list[i] = cpu_to_le16(ch_list[i]); 18623ca9d1fcSAarthi Thiruvengadam 18633ca9d1fcSAarthi Thiruvengadam ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_BEGIN_SCAN_CMDID, 18643ca9d1fcSAarthi Thiruvengadam NO_SYNC_WMIFLAG); 18653ca9d1fcSAarthi Thiruvengadam 18663ca9d1fcSAarthi Thiruvengadam return ret; 18673ca9d1fcSAarthi Thiruvengadam } 18683ca9d1fcSAarthi Thiruvengadam 18693ca9d1fcSAarthi Thiruvengadam /* ath6kl_wmi_start_scan_cmd is to be deprecated. Use 18703ca9d1fcSAarthi Thiruvengadam * ath6kl_wmi_begin_scan_cmd instead. The new function supports P2P 18713ca9d1fcSAarthi Thiruvengadam * mgmt operations using station interface. 18723ca9d1fcSAarthi Thiruvengadam */ 1873334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_startscan_cmd(struct wmi *wmi, u8 if_idx, 1874334234b5SVasanthakumar Thiagarajan enum wmi_scan_type scan_type, 1875bdcd8170SKalle Valo u32 force_fgscan, u32 is_legacy, 1876bdcd8170SKalle Valo u32 home_dwell_time, u32 force_scan_interval, 1877bdcd8170SKalle Valo s8 num_chan, u16 *ch_list) 1878bdcd8170SKalle Valo { 1879bdcd8170SKalle Valo struct sk_buff *skb; 1880bdcd8170SKalle Valo struct wmi_start_scan_cmd *sc; 1881bdcd8170SKalle Valo s8 size; 18821276c9efSEdward Lu int i, ret; 1883bdcd8170SKalle Valo 1884bdcd8170SKalle Valo size = sizeof(struct wmi_start_scan_cmd); 1885bdcd8170SKalle Valo 1886bdcd8170SKalle Valo if ((scan_type != WMI_LONG_SCAN) && (scan_type != WMI_SHORT_SCAN)) 1887bdcd8170SKalle Valo return -EINVAL; 1888bdcd8170SKalle Valo 1889bdcd8170SKalle Valo if (num_chan > WMI_MAX_CHANNELS) 1890bdcd8170SKalle Valo return -EINVAL; 1891bdcd8170SKalle Valo 1892bdcd8170SKalle Valo if (num_chan) 1893bdcd8170SKalle Valo size += sizeof(u16) * (num_chan - 1); 1894bdcd8170SKalle Valo 1895bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(size); 1896bdcd8170SKalle Valo if (!skb) 1897bdcd8170SKalle Valo return -ENOMEM; 1898bdcd8170SKalle Valo 1899bdcd8170SKalle Valo sc = (struct wmi_start_scan_cmd *) skb->data; 1900bdcd8170SKalle Valo sc->scan_type = scan_type; 1901bdcd8170SKalle Valo sc->force_fg_scan = cpu_to_le32(force_fgscan); 1902bdcd8170SKalle Valo sc->is_legacy = cpu_to_le32(is_legacy); 1903bdcd8170SKalle Valo sc->home_dwell_time = cpu_to_le32(home_dwell_time); 1904bdcd8170SKalle Valo sc->force_scan_intvl = cpu_to_le32(force_scan_interval); 1905bdcd8170SKalle Valo sc->num_ch = num_chan; 1906bdcd8170SKalle Valo 19071276c9efSEdward Lu for (i = 0; i < num_chan; i++) 19081276c9efSEdward Lu sc->ch_list[i] = cpu_to_le16(ch_list[i]); 1909bdcd8170SKalle Valo 1910334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_START_SCAN_CMDID, 1911bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 1912bdcd8170SKalle Valo 1913bdcd8170SKalle Valo return ret; 1914bdcd8170SKalle Valo } 1915bdcd8170SKalle Valo 1916334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_scanparams_cmd(struct wmi *wmi, u8 if_idx, 1917334234b5SVasanthakumar Thiagarajan u16 fg_start_sec, 1918bdcd8170SKalle Valo u16 fg_end_sec, u16 bg_sec, 1919bdcd8170SKalle Valo u16 minact_chdw_msec, u16 maxact_chdw_msec, 1920bdcd8170SKalle Valo u16 pas_chdw_msec, u8 short_scan_ratio, 1921bdcd8170SKalle Valo u8 scan_ctrl_flag, u32 max_dfsch_act_time, 1922bdcd8170SKalle Valo u16 maxact_scan_per_ssid) 1923bdcd8170SKalle Valo { 1924bdcd8170SKalle Valo struct sk_buff *skb; 1925bdcd8170SKalle Valo struct wmi_scan_params_cmd *sc; 1926bdcd8170SKalle Valo int ret; 1927bdcd8170SKalle Valo 1928bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*sc)); 1929bdcd8170SKalle Valo if (!skb) 1930bdcd8170SKalle Valo return -ENOMEM; 1931bdcd8170SKalle Valo 1932bdcd8170SKalle Valo sc = (struct wmi_scan_params_cmd *) skb->data; 1933bdcd8170SKalle Valo sc->fg_start_period = cpu_to_le16(fg_start_sec); 1934bdcd8170SKalle Valo sc->fg_end_period = cpu_to_le16(fg_end_sec); 1935bdcd8170SKalle Valo sc->bg_period = cpu_to_le16(bg_sec); 1936bdcd8170SKalle Valo sc->minact_chdwell_time = cpu_to_le16(minact_chdw_msec); 1937bdcd8170SKalle Valo sc->maxact_chdwell_time = cpu_to_le16(maxact_chdw_msec); 1938bdcd8170SKalle Valo sc->pas_chdwell_time = cpu_to_le16(pas_chdw_msec); 1939bdcd8170SKalle Valo sc->short_scan_ratio = short_scan_ratio; 1940bdcd8170SKalle Valo sc->scan_ctrl_flags = scan_ctrl_flag; 1941bdcd8170SKalle Valo sc->max_dfsch_act_time = cpu_to_le32(max_dfsch_act_time); 1942bdcd8170SKalle Valo sc->maxact_scan_per_ssid = cpu_to_le16(maxact_scan_per_ssid); 1943bdcd8170SKalle Valo 1944334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_SCAN_PARAMS_CMDID, 1945bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 1946bdcd8170SKalle Valo return ret; 1947bdcd8170SKalle Valo } 1948bdcd8170SKalle Valo 1949240d2799SVasanthakumar Thiagarajan int ath6kl_wmi_bssfilter_cmd(struct wmi *wmi, u8 if_idx, u8 filter, u32 ie_mask) 1950bdcd8170SKalle Valo { 1951bdcd8170SKalle Valo struct sk_buff *skb; 1952bdcd8170SKalle Valo struct wmi_bss_filter_cmd *cmd; 1953bdcd8170SKalle Valo int ret; 1954bdcd8170SKalle Valo 1955bdcd8170SKalle Valo if (filter >= LAST_BSS_FILTER) 1956bdcd8170SKalle Valo return -EINVAL; 1957bdcd8170SKalle Valo 1958bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 1959bdcd8170SKalle Valo if (!skb) 1960bdcd8170SKalle Valo return -ENOMEM; 1961bdcd8170SKalle Valo 1962bdcd8170SKalle Valo cmd = (struct wmi_bss_filter_cmd *) skb->data; 1963bdcd8170SKalle Valo cmd->bss_filter = filter; 1964bdcd8170SKalle Valo cmd->ie_mask = cpu_to_le32(ie_mask); 1965bdcd8170SKalle Valo 1966240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_BSS_FILTER_CMDID, 1967bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 1968bdcd8170SKalle Valo return ret; 1969bdcd8170SKalle Valo } 1970bdcd8170SKalle Valo 1971334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_probedssid_cmd(struct wmi *wmi, u8 if_idx, u8 index, u8 flag, 1972bdcd8170SKalle Valo u8 ssid_len, u8 *ssid) 1973bdcd8170SKalle Valo { 1974bdcd8170SKalle Valo struct sk_buff *skb; 1975bdcd8170SKalle Valo struct wmi_probed_ssid_cmd *cmd; 1976bdcd8170SKalle Valo int ret; 1977bdcd8170SKalle Valo 1978bdcd8170SKalle Valo if (index > MAX_PROBED_SSID_INDEX) 1979bdcd8170SKalle Valo return -EINVAL; 1980bdcd8170SKalle Valo 1981bdcd8170SKalle Valo if (ssid_len > sizeof(cmd->ssid)) 1982bdcd8170SKalle Valo return -EINVAL; 1983bdcd8170SKalle Valo 1984bdcd8170SKalle Valo if ((flag & (DISABLE_SSID_FLAG | ANY_SSID_FLAG)) && (ssid_len > 0)) 1985bdcd8170SKalle Valo return -EINVAL; 1986bdcd8170SKalle Valo 1987bdcd8170SKalle Valo if ((flag & SPECIFIC_SSID_FLAG) && !ssid_len) 1988bdcd8170SKalle Valo return -EINVAL; 1989bdcd8170SKalle Valo 1990bdcd8170SKalle Valo if (flag & SPECIFIC_SSID_FLAG) 1991bdcd8170SKalle Valo wmi->is_probe_ssid = true; 1992bdcd8170SKalle Valo 1993bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 1994bdcd8170SKalle Valo if (!skb) 1995bdcd8170SKalle Valo return -ENOMEM; 1996bdcd8170SKalle Valo 1997bdcd8170SKalle Valo cmd = (struct wmi_probed_ssid_cmd *) skb->data; 1998bdcd8170SKalle Valo cmd->entry_index = index; 1999bdcd8170SKalle Valo cmd->flag = flag; 2000bdcd8170SKalle Valo cmd->ssid_len = ssid_len; 2001bdcd8170SKalle Valo memcpy(cmd->ssid, ssid, ssid_len); 2002bdcd8170SKalle Valo 2003334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_PROBED_SSID_CMDID, 2004bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2005bdcd8170SKalle Valo return ret; 2006bdcd8170SKalle Valo } 2007bdcd8170SKalle Valo 2008334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_listeninterval_cmd(struct wmi *wmi, u8 if_idx, 2009334234b5SVasanthakumar Thiagarajan u16 listen_interval, 2010bdcd8170SKalle Valo u16 listen_beacons) 2011bdcd8170SKalle Valo { 2012bdcd8170SKalle Valo struct sk_buff *skb; 2013bdcd8170SKalle Valo struct wmi_listen_int_cmd *cmd; 2014bdcd8170SKalle Valo int ret; 2015bdcd8170SKalle Valo 2016bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2017bdcd8170SKalle Valo if (!skb) 2018bdcd8170SKalle Valo return -ENOMEM; 2019bdcd8170SKalle Valo 2020bdcd8170SKalle Valo cmd = (struct wmi_listen_int_cmd *) skb->data; 2021bdcd8170SKalle Valo cmd->listen_intvl = cpu_to_le16(listen_interval); 2022bdcd8170SKalle Valo cmd->num_beacons = cpu_to_le16(listen_beacons); 2023bdcd8170SKalle Valo 2024334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_LISTEN_INT_CMDID, 2025bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2026bdcd8170SKalle Valo return ret; 2027bdcd8170SKalle Valo } 2028bdcd8170SKalle Valo 2029334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_powermode_cmd(struct wmi *wmi, u8 if_idx, u8 pwr_mode) 2030bdcd8170SKalle Valo { 2031bdcd8170SKalle Valo struct sk_buff *skb; 2032bdcd8170SKalle Valo struct wmi_power_mode_cmd *cmd; 2033bdcd8170SKalle Valo int ret; 2034bdcd8170SKalle Valo 2035bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2036bdcd8170SKalle Valo if (!skb) 2037bdcd8170SKalle Valo return -ENOMEM; 2038bdcd8170SKalle Valo 2039bdcd8170SKalle Valo cmd = (struct wmi_power_mode_cmd *) skb->data; 2040bdcd8170SKalle Valo cmd->pwr_mode = pwr_mode; 2041bdcd8170SKalle Valo wmi->pwr_mode = pwr_mode; 2042bdcd8170SKalle Valo 2043334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_POWER_MODE_CMDID, 2044bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2045bdcd8170SKalle Valo return ret; 2046bdcd8170SKalle Valo } 2047bdcd8170SKalle Valo 20480ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_pmparams_cmd(struct wmi *wmi, u8 if_idx, u16 idle_period, 2049bdcd8170SKalle Valo u16 ps_poll_num, u16 dtim_policy, 2050bdcd8170SKalle Valo u16 tx_wakeup_policy, u16 num_tx_to_wakeup, 2051bdcd8170SKalle Valo u16 ps_fail_event_policy) 2052bdcd8170SKalle Valo { 2053bdcd8170SKalle Valo struct sk_buff *skb; 2054bdcd8170SKalle Valo struct wmi_power_params_cmd *pm; 2055bdcd8170SKalle Valo int ret; 2056bdcd8170SKalle Valo 2057bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*pm)); 2058bdcd8170SKalle Valo if (!skb) 2059bdcd8170SKalle Valo return -ENOMEM; 2060bdcd8170SKalle Valo 2061bdcd8170SKalle Valo pm = (struct wmi_power_params_cmd *)skb->data; 2062bdcd8170SKalle Valo pm->idle_period = cpu_to_le16(idle_period); 2063bdcd8170SKalle Valo pm->pspoll_number = cpu_to_le16(ps_poll_num); 2064bdcd8170SKalle Valo pm->dtim_policy = cpu_to_le16(dtim_policy); 2065bdcd8170SKalle Valo pm->tx_wakeup_policy = cpu_to_le16(tx_wakeup_policy); 2066bdcd8170SKalle Valo pm->num_tx_to_wakeup = cpu_to_le16(num_tx_to_wakeup); 2067bdcd8170SKalle Valo pm->ps_fail_event_policy = cpu_to_le16(ps_fail_event_policy); 2068bdcd8170SKalle Valo 20690ce59445SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_POWER_PARAMS_CMDID, 2070bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2071bdcd8170SKalle Valo return ret; 2072bdcd8170SKalle Valo } 2073bdcd8170SKalle Valo 20740ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_disctimeout_cmd(struct wmi *wmi, u8 if_idx, u8 timeout) 2075bdcd8170SKalle Valo { 2076bdcd8170SKalle Valo struct sk_buff *skb; 2077bdcd8170SKalle Valo struct wmi_disc_timeout_cmd *cmd; 2078bdcd8170SKalle Valo int ret; 2079bdcd8170SKalle Valo 2080bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2081bdcd8170SKalle Valo if (!skb) 2082bdcd8170SKalle Valo return -ENOMEM; 2083bdcd8170SKalle Valo 2084bdcd8170SKalle Valo cmd = (struct wmi_disc_timeout_cmd *) skb->data; 2085bdcd8170SKalle Valo cmd->discon_timeout = timeout; 2086bdcd8170SKalle Valo 20870ce59445SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_DISC_TIMEOUT_CMDID, 2088bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2089334234b5SVasanthakumar Thiagarajan 2090ff0b0075SJouni Malinen if (ret == 0) 2091ff0b0075SJouni Malinen ath6kl_debug_set_disconnect_timeout(wmi->parent_dev, timeout); 2092334234b5SVasanthakumar Thiagarajan 2093bdcd8170SKalle Valo return ret; 2094bdcd8170SKalle Valo } 2095bdcd8170SKalle Valo 2096334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_addkey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index, 2097bdcd8170SKalle Valo enum crypto_type key_type, 2098bdcd8170SKalle Valo u8 key_usage, u8 key_len, 2099f4bb9a6fSJouni Malinen u8 *key_rsc, unsigned int key_rsc_len, 2100f4bb9a6fSJouni Malinen u8 *key_material, 2101bdcd8170SKalle Valo u8 key_op_ctrl, u8 *mac_addr, 2102bdcd8170SKalle Valo enum wmi_sync_flag sync_flag) 2103bdcd8170SKalle Valo { 2104bdcd8170SKalle Valo struct sk_buff *skb; 2105bdcd8170SKalle Valo struct wmi_add_cipher_key_cmd *cmd; 2106bdcd8170SKalle Valo int ret; 2107bdcd8170SKalle Valo 21089a5b1318SJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "addkey cmd: key_index=%u key_type=%d " 21099a5b1318SJouni Malinen "key_usage=%d key_len=%d key_op_ctrl=%d\n", 21109a5b1318SJouni Malinen key_index, key_type, key_usage, key_len, key_op_ctrl); 21119a5b1318SJouni Malinen 2112bdcd8170SKalle Valo if ((key_index > WMI_MAX_KEY_INDEX) || (key_len > WMI_MAX_KEY_LEN) || 2113f4bb9a6fSJouni Malinen (key_material == NULL) || key_rsc_len > 8) 2114bdcd8170SKalle Valo return -EINVAL; 2115bdcd8170SKalle Valo 2116bdcd8170SKalle Valo if ((WEP_CRYPT != key_type) && (NULL == key_rsc)) 2117bdcd8170SKalle Valo return -EINVAL; 2118bdcd8170SKalle Valo 2119bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2120bdcd8170SKalle Valo if (!skb) 2121bdcd8170SKalle Valo return -ENOMEM; 2122bdcd8170SKalle Valo 2123bdcd8170SKalle Valo cmd = (struct wmi_add_cipher_key_cmd *) skb->data; 2124bdcd8170SKalle Valo cmd->key_index = key_index; 2125bdcd8170SKalle Valo cmd->key_type = key_type; 2126bdcd8170SKalle Valo cmd->key_usage = key_usage; 2127bdcd8170SKalle Valo cmd->key_len = key_len; 2128bdcd8170SKalle Valo memcpy(cmd->key, key_material, key_len); 2129bdcd8170SKalle Valo 2130bdcd8170SKalle Valo if (key_rsc != NULL) 2131f4bb9a6fSJouni Malinen memcpy(cmd->key_rsc, key_rsc, key_rsc_len); 2132bdcd8170SKalle Valo 2133bdcd8170SKalle Valo cmd->key_op_ctrl = key_op_ctrl; 2134bdcd8170SKalle Valo 2135bdcd8170SKalle Valo if (mac_addr) 2136bdcd8170SKalle Valo memcpy(cmd->key_mac_addr, mac_addr, ETH_ALEN); 2137bdcd8170SKalle Valo 2138334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_CIPHER_KEY_CMDID, 2139bdcd8170SKalle Valo sync_flag); 2140bdcd8170SKalle Valo 2141bdcd8170SKalle Valo return ret; 2142bdcd8170SKalle Valo } 2143bdcd8170SKalle Valo 2144240d2799SVasanthakumar Thiagarajan int ath6kl_wmi_add_krk_cmd(struct wmi *wmi, u8 if_idx, u8 *krk) 2145bdcd8170SKalle Valo { 2146bdcd8170SKalle Valo struct sk_buff *skb; 2147bdcd8170SKalle Valo struct wmi_add_krk_cmd *cmd; 2148bdcd8170SKalle Valo int ret; 2149bdcd8170SKalle Valo 2150bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2151bdcd8170SKalle Valo if (!skb) 2152bdcd8170SKalle Valo return -ENOMEM; 2153bdcd8170SKalle Valo 2154bdcd8170SKalle Valo cmd = (struct wmi_add_krk_cmd *) skb->data; 2155bdcd8170SKalle Valo memcpy(cmd->krk, krk, WMI_KRK_LEN); 2156bdcd8170SKalle Valo 2157240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_KRK_CMDID, 2158334234b5SVasanthakumar Thiagarajan NO_SYNC_WMIFLAG); 2159bdcd8170SKalle Valo 2160bdcd8170SKalle Valo return ret; 2161bdcd8170SKalle Valo } 2162bdcd8170SKalle Valo 2163334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_deletekey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index) 2164bdcd8170SKalle Valo { 2165bdcd8170SKalle Valo struct sk_buff *skb; 2166bdcd8170SKalle Valo struct wmi_delete_cipher_key_cmd *cmd; 2167bdcd8170SKalle Valo int ret; 2168bdcd8170SKalle Valo 2169bdcd8170SKalle Valo if (key_index > WMI_MAX_KEY_INDEX) 2170bdcd8170SKalle Valo return -EINVAL; 2171bdcd8170SKalle Valo 2172bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2173bdcd8170SKalle Valo if (!skb) 2174bdcd8170SKalle Valo return -ENOMEM; 2175bdcd8170SKalle Valo 2176bdcd8170SKalle Valo cmd = (struct wmi_delete_cipher_key_cmd *) skb->data; 2177bdcd8170SKalle Valo cmd->key_index = key_index; 2178bdcd8170SKalle Valo 2179334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DELETE_CIPHER_KEY_CMDID, 2180bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2181bdcd8170SKalle Valo 2182bdcd8170SKalle Valo return ret; 2183bdcd8170SKalle Valo } 2184bdcd8170SKalle Valo 2185334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_setpmkid_cmd(struct wmi *wmi, u8 if_idx, const u8 *bssid, 2186bdcd8170SKalle Valo const u8 *pmkid, bool set) 2187bdcd8170SKalle Valo { 2188bdcd8170SKalle Valo struct sk_buff *skb; 2189bdcd8170SKalle Valo struct wmi_setpmkid_cmd *cmd; 2190bdcd8170SKalle Valo int ret; 2191bdcd8170SKalle Valo 2192bdcd8170SKalle Valo if (bssid == NULL) 2193bdcd8170SKalle Valo return -EINVAL; 2194bdcd8170SKalle Valo 2195bdcd8170SKalle Valo if (set && pmkid == NULL) 2196bdcd8170SKalle Valo return -EINVAL; 2197bdcd8170SKalle Valo 2198bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2199bdcd8170SKalle Valo if (!skb) 2200bdcd8170SKalle Valo return -ENOMEM; 2201bdcd8170SKalle Valo 2202bdcd8170SKalle Valo cmd = (struct wmi_setpmkid_cmd *) skb->data; 2203bdcd8170SKalle Valo memcpy(cmd->bssid, bssid, ETH_ALEN); 2204bdcd8170SKalle Valo if (set) { 2205bdcd8170SKalle Valo memcpy(cmd->pmkid, pmkid, sizeof(cmd->pmkid)); 2206bdcd8170SKalle Valo cmd->enable = PMKID_ENABLE; 2207bdcd8170SKalle Valo } else { 2208bdcd8170SKalle Valo memset(cmd->pmkid, 0, sizeof(cmd->pmkid)); 2209bdcd8170SKalle Valo cmd->enable = PMKID_DISABLE; 2210bdcd8170SKalle Valo } 2211bdcd8170SKalle Valo 2212334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_PMKID_CMDID, 2213bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2214bdcd8170SKalle Valo 2215bdcd8170SKalle Valo return ret; 2216bdcd8170SKalle Valo } 2217bdcd8170SKalle Valo 2218bdcd8170SKalle Valo static int ath6kl_wmi_data_sync_send(struct wmi *wmi, struct sk_buff *skb, 22196765d0aaSVasanthakumar Thiagarajan enum htc_endpoint_id ep_id, u8 if_idx) 2220bdcd8170SKalle Valo { 2221bdcd8170SKalle Valo struct wmi_data_hdr *data_hdr; 2222bdcd8170SKalle Valo int ret; 2223bdcd8170SKalle Valo 2224bdcd8170SKalle Valo if (WARN_ON(skb == NULL || ep_id == wmi->ep_id)) 2225bdcd8170SKalle Valo return -EINVAL; 2226bdcd8170SKalle Valo 2227bdcd8170SKalle Valo skb_push(skb, sizeof(struct wmi_data_hdr)); 2228bdcd8170SKalle Valo 2229bdcd8170SKalle Valo data_hdr = (struct wmi_data_hdr *) skb->data; 2230bdcd8170SKalle Valo data_hdr->info = SYNC_MSGTYPE << WMI_DATA_HDR_MSG_TYPE_SHIFT; 22316765d0aaSVasanthakumar Thiagarajan data_hdr->info3 = cpu_to_le16(if_idx & WMI_DATA_HDR_IF_IDX_MASK); 2232bdcd8170SKalle Valo 2233bdcd8170SKalle Valo ret = ath6kl_control_tx(wmi->parent_dev, skb, ep_id); 2234bdcd8170SKalle Valo 2235bdcd8170SKalle Valo return ret; 2236bdcd8170SKalle Valo } 2237bdcd8170SKalle Valo 2238240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_sync_point(struct wmi *wmi, u8 if_idx) 2239bdcd8170SKalle Valo { 2240bdcd8170SKalle Valo struct sk_buff *skb; 2241bdcd8170SKalle Valo struct wmi_sync_cmd *cmd; 2242bdcd8170SKalle Valo struct wmi_data_sync_bufs data_sync_bufs[WMM_NUM_AC]; 2243bdcd8170SKalle Valo enum htc_endpoint_id ep_id; 2244bdcd8170SKalle Valo u8 index, num_pri_streams = 0; 2245bdcd8170SKalle Valo int ret = 0; 2246bdcd8170SKalle Valo 2247bdcd8170SKalle Valo memset(data_sync_bufs, 0, sizeof(data_sync_bufs)); 2248bdcd8170SKalle Valo 2249bdcd8170SKalle Valo spin_lock_bh(&wmi->lock); 2250bdcd8170SKalle Valo 2251bdcd8170SKalle Valo for (index = 0; index < WMM_NUM_AC; index++) { 2252bdcd8170SKalle Valo if (wmi->fat_pipe_exist & (1 << index)) { 2253bdcd8170SKalle Valo num_pri_streams++; 2254bdcd8170SKalle Valo data_sync_bufs[num_pri_streams - 1].traffic_class = 2255bdcd8170SKalle Valo index; 2256bdcd8170SKalle Valo } 2257bdcd8170SKalle Valo } 2258bdcd8170SKalle Valo 2259bdcd8170SKalle Valo spin_unlock_bh(&wmi->lock); 2260bdcd8170SKalle Valo 2261bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2262bdcd8170SKalle Valo if (!skb) { 2263bdcd8170SKalle Valo ret = -ENOMEM; 2264bdcd8170SKalle Valo goto free_skb; 2265bdcd8170SKalle Valo } 2266bdcd8170SKalle Valo 2267bdcd8170SKalle Valo cmd = (struct wmi_sync_cmd *) skb->data; 2268bdcd8170SKalle Valo 2269bdcd8170SKalle Valo /* 2270bdcd8170SKalle Valo * In the SYNC cmd sent on the control Ep, send a bitmap 2271bdcd8170SKalle Valo * of the data eps on which the Data Sync will be sent 2272bdcd8170SKalle Valo */ 2273bdcd8170SKalle Valo cmd->data_sync_map = wmi->fat_pipe_exist; 2274bdcd8170SKalle Valo 2275bdcd8170SKalle Valo for (index = 0; index < num_pri_streams; index++) { 2276bdcd8170SKalle Valo data_sync_bufs[index].skb = ath6kl_buf_alloc(0); 2277bdcd8170SKalle Valo if (data_sync_bufs[index].skb == NULL) { 2278bdcd8170SKalle Valo ret = -ENOMEM; 2279bdcd8170SKalle Valo break; 2280bdcd8170SKalle Valo } 2281bdcd8170SKalle Valo } 2282bdcd8170SKalle Valo 2283bdcd8170SKalle Valo /* 2284bdcd8170SKalle Valo * If buffer allocation for any of the dataSync fails, 2285bdcd8170SKalle Valo * then do not send the Synchronize cmd on the control ep 2286bdcd8170SKalle Valo */ 2287bdcd8170SKalle Valo if (ret) 2288bdcd8170SKalle Valo goto free_skb; 2289bdcd8170SKalle Valo 2290bdcd8170SKalle Valo /* 2291bdcd8170SKalle Valo * Send sync cmd followed by sync data messages on all 2292bdcd8170SKalle Valo * endpoints being used 2293bdcd8170SKalle Valo */ 2294240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SYNCHRONIZE_CMDID, 2295bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2296bdcd8170SKalle Valo 2297bdcd8170SKalle Valo if (ret) 2298bdcd8170SKalle Valo goto free_skb; 2299bdcd8170SKalle Valo 2300bdcd8170SKalle Valo /* cmd buffer sent, we no longer own it */ 2301bdcd8170SKalle Valo skb = NULL; 2302bdcd8170SKalle Valo 2303bdcd8170SKalle Valo for (index = 0; index < num_pri_streams; index++) { 2304bdcd8170SKalle Valo 2305bdcd8170SKalle Valo if (WARN_ON(!data_sync_bufs[index].skb)) 2306bdcd8170SKalle Valo break; 2307bdcd8170SKalle Valo 2308bdcd8170SKalle Valo ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev, 2309bdcd8170SKalle Valo data_sync_bufs[index]. 2310bdcd8170SKalle Valo traffic_class); 2311bdcd8170SKalle Valo ret = 2312bdcd8170SKalle Valo ath6kl_wmi_data_sync_send(wmi, data_sync_bufs[index].skb, 23136765d0aaSVasanthakumar Thiagarajan ep_id, if_idx); 2314bdcd8170SKalle Valo 2315bdcd8170SKalle Valo if (ret) 2316bdcd8170SKalle Valo break; 2317bdcd8170SKalle Valo 2318bdcd8170SKalle Valo data_sync_bufs[index].skb = NULL; 2319bdcd8170SKalle Valo } 2320bdcd8170SKalle Valo 2321bdcd8170SKalle Valo free_skb: 2322bdcd8170SKalle Valo /* free up any resources left over (possibly due to an error) */ 2323bdcd8170SKalle Valo if (skb) 2324bdcd8170SKalle Valo dev_kfree_skb(skb); 2325bdcd8170SKalle Valo 2326bdcd8170SKalle Valo for (index = 0; index < num_pri_streams; index++) { 2327bdcd8170SKalle Valo if (data_sync_bufs[index].skb != NULL) { 2328bdcd8170SKalle Valo dev_kfree_skb((struct sk_buff *)data_sync_bufs[index]. 2329bdcd8170SKalle Valo skb); 2330bdcd8170SKalle Valo } 2331bdcd8170SKalle Valo } 2332bdcd8170SKalle Valo 2333bdcd8170SKalle Valo return ret; 2334bdcd8170SKalle Valo } 2335bdcd8170SKalle Valo 2336240d2799SVasanthakumar Thiagarajan int ath6kl_wmi_create_pstream_cmd(struct wmi *wmi, u8 if_idx, 2337bdcd8170SKalle Valo struct wmi_create_pstream_cmd *params) 2338bdcd8170SKalle Valo { 2339bdcd8170SKalle Valo struct sk_buff *skb; 2340bdcd8170SKalle Valo struct wmi_create_pstream_cmd *cmd; 2341bdcd8170SKalle Valo u8 fatpipe_exist_for_ac = 0; 2342bdcd8170SKalle Valo s32 min_phy = 0; 2343bdcd8170SKalle Valo s32 nominal_phy = 0; 2344bdcd8170SKalle Valo int ret; 2345bdcd8170SKalle Valo 2346bdcd8170SKalle Valo if (!((params->user_pri < 8) && 2347bdcd8170SKalle Valo (params->user_pri <= 0x7) && 2348bdcd8170SKalle Valo (up_to_ac[params->user_pri & 0x7] == params->traffic_class) && 2349bdcd8170SKalle Valo (params->traffic_direc == UPLINK_TRAFFIC || 2350bdcd8170SKalle Valo params->traffic_direc == DNLINK_TRAFFIC || 2351bdcd8170SKalle Valo params->traffic_direc == BIDIR_TRAFFIC) && 2352bdcd8170SKalle Valo (params->traffic_type == TRAFFIC_TYPE_APERIODIC || 2353bdcd8170SKalle Valo params->traffic_type == TRAFFIC_TYPE_PERIODIC) && 2354bdcd8170SKalle Valo (params->voice_psc_cap == DISABLE_FOR_THIS_AC || 2355bdcd8170SKalle Valo params->voice_psc_cap == ENABLE_FOR_THIS_AC || 2356bdcd8170SKalle Valo params->voice_psc_cap == ENABLE_FOR_ALL_AC) && 2357bdcd8170SKalle Valo (params->tsid == WMI_IMPLICIT_PSTREAM || 2358bdcd8170SKalle Valo params->tsid <= WMI_MAX_THINSTREAM))) { 2359bdcd8170SKalle Valo return -EINVAL; 2360bdcd8170SKalle Valo } 2361bdcd8170SKalle Valo 2362bdcd8170SKalle Valo /* 2363bdcd8170SKalle Valo * Check nominal PHY rate is >= minimalPHY, 2364bdcd8170SKalle Valo * so that DUT can allow TSRS IE 2365bdcd8170SKalle Valo */ 2366bdcd8170SKalle Valo 2367bdcd8170SKalle Valo /* Get the physical rate (units of bps) */ 2368bdcd8170SKalle Valo min_phy = ((le32_to_cpu(params->min_phy_rate) / 1000) / 1000); 2369bdcd8170SKalle Valo 2370bdcd8170SKalle Valo /* Check minimal phy < nominal phy rate */ 2371bdcd8170SKalle Valo if (params->nominal_phy >= min_phy) { 2372bdcd8170SKalle Valo /* unit of 500 kbps */ 2373bdcd8170SKalle Valo nominal_phy = (params->nominal_phy * 1000) / 500; 2374bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 2375bdcd8170SKalle Valo "TSRS IE enabled::MinPhy %x->NominalPhy ===> %x\n", 2376bdcd8170SKalle Valo min_phy, nominal_phy); 2377bdcd8170SKalle Valo 2378bdcd8170SKalle Valo params->nominal_phy = nominal_phy; 2379bdcd8170SKalle Valo } else { 2380bdcd8170SKalle Valo params->nominal_phy = 0; 2381bdcd8170SKalle Valo } 2382bdcd8170SKalle Valo 2383bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2384bdcd8170SKalle Valo if (!skb) 2385bdcd8170SKalle Valo return -ENOMEM; 2386bdcd8170SKalle Valo 2387bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 2388bdcd8170SKalle Valo "sending create_pstream_cmd: ac=%d tsid:%d\n", 2389bdcd8170SKalle Valo params->traffic_class, params->tsid); 2390bdcd8170SKalle Valo 2391bdcd8170SKalle Valo cmd = (struct wmi_create_pstream_cmd *) skb->data; 2392bdcd8170SKalle Valo memcpy(cmd, params, sizeof(*cmd)); 2393bdcd8170SKalle Valo 2394bdcd8170SKalle Valo /* This is an implicitly created Fat pipe */ 2395bdcd8170SKalle Valo if ((u32) params->tsid == (u32) WMI_IMPLICIT_PSTREAM) { 2396bdcd8170SKalle Valo spin_lock_bh(&wmi->lock); 2397bdcd8170SKalle Valo fatpipe_exist_for_ac = (wmi->fat_pipe_exist & 2398bdcd8170SKalle Valo (1 << params->traffic_class)); 2399bdcd8170SKalle Valo wmi->fat_pipe_exist |= (1 << params->traffic_class); 2400bdcd8170SKalle Valo spin_unlock_bh(&wmi->lock); 2401bdcd8170SKalle Valo } else { 2402bdcd8170SKalle Valo /* explicitly created thin stream within a fat pipe */ 2403bdcd8170SKalle Valo spin_lock_bh(&wmi->lock); 2404bdcd8170SKalle Valo fatpipe_exist_for_ac = (wmi->fat_pipe_exist & 2405bdcd8170SKalle Valo (1 << params->traffic_class)); 2406bdcd8170SKalle Valo wmi->stream_exist_for_ac[params->traffic_class] |= 2407bdcd8170SKalle Valo (1 << params->tsid); 2408bdcd8170SKalle Valo /* 2409bdcd8170SKalle Valo * If a thinstream becomes active, the fat pipe automatically 2410bdcd8170SKalle Valo * becomes active 2411bdcd8170SKalle Valo */ 2412bdcd8170SKalle Valo wmi->fat_pipe_exist |= (1 << params->traffic_class); 2413bdcd8170SKalle Valo spin_unlock_bh(&wmi->lock); 2414bdcd8170SKalle Valo } 2415bdcd8170SKalle Valo 2416bdcd8170SKalle Valo /* 2417bdcd8170SKalle Valo * Indicate activty change to driver layer only if this is the 2418bdcd8170SKalle Valo * first TSID to get created in this AC explicitly or an implicit 2419bdcd8170SKalle Valo * fat pipe is getting created. 2420bdcd8170SKalle Valo */ 2421bdcd8170SKalle Valo if (!fatpipe_exist_for_ac) 2422bdcd8170SKalle Valo ath6kl_indicate_tx_activity(wmi->parent_dev, 2423bdcd8170SKalle Valo params->traffic_class, true); 2424bdcd8170SKalle Valo 2425240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_CREATE_PSTREAM_CMDID, 2426bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2427bdcd8170SKalle Valo return ret; 2428bdcd8170SKalle Valo } 2429bdcd8170SKalle Valo 2430240d2799SVasanthakumar Thiagarajan int ath6kl_wmi_delete_pstream_cmd(struct wmi *wmi, u8 if_idx, u8 traffic_class, 2431240d2799SVasanthakumar Thiagarajan u8 tsid) 2432bdcd8170SKalle Valo { 2433bdcd8170SKalle Valo struct sk_buff *skb; 2434bdcd8170SKalle Valo struct wmi_delete_pstream_cmd *cmd; 2435bdcd8170SKalle Valo u16 active_tsids = 0; 2436bdcd8170SKalle Valo int ret; 2437bdcd8170SKalle Valo 2438bdcd8170SKalle Valo if (traffic_class > 3) { 2439bdcd8170SKalle Valo ath6kl_err("invalid traffic class: %d\n", traffic_class); 2440bdcd8170SKalle Valo return -EINVAL; 2441bdcd8170SKalle Valo } 2442bdcd8170SKalle Valo 2443bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2444bdcd8170SKalle Valo if (!skb) 2445bdcd8170SKalle Valo return -ENOMEM; 2446bdcd8170SKalle Valo 2447bdcd8170SKalle Valo cmd = (struct wmi_delete_pstream_cmd *) skb->data; 2448bdcd8170SKalle Valo cmd->traffic_class = traffic_class; 2449bdcd8170SKalle Valo cmd->tsid = tsid; 2450bdcd8170SKalle Valo 2451bdcd8170SKalle Valo spin_lock_bh(&wmi->lock); 2452bdcd8170SKalle Valo active_tsids = wmi->stream_exist_for_ac[traffic_class]; 2453bdcd8170SKalle Valo spin_unlock_bh(&wmi->lock); 2454bdcd8170SKalle Valo 2455bdcd8170SKalle Valo if (!(active_tsids & (1 << tsid))) { 2456bdcd8170SKalle Valo dev_kfree_skb(skb); 2457bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 2458bdcd8170SKalle Valo "TSID %d doesn't exist for traffic class: %d\n", 2459bdcd8170SKalle Valo tsid, traffic_class); 2460bdcd8170SKalle Valo return -ENODATA; 2461bdcd8170SKalle Valo } 2462bdcd8170SKalle Valo 2463bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 2464bdcd8170SKalle Valo "sending delete_pstream_cmd: traffic class: %d tsid=%d\n", 2465bdcd8170SKalle Valo traffic_class, tsid); 2466bdcd8170SKalle Valo 2467240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DELETE_PSTREAM_CMDID, 2468bdcd8170SKalle Valo SYNC_BEFORE_WMIFLAG); 2469bdcd8170SKalle Valo 2470bdcd8170SKalle Valo spin_lock_bh(&wmi->lock); 2471bdcd8170SKalle Valo wmi->stream_exist_for_ac[traffic_class] &= ~(1 << tsid); 2472bdcd8170SKalle Valo active_tsids = wmi->stream_exist_for_ac[traffic_class]; 2473bdcd8170SKalle Valo spin_unlock_bh(&wmi->lock); 2474bdcd8170SKalle Valo 2475bdcd8170SKalle Valo /* 2476bdcd8170SKalle Valo * Indicate stream inactivity to driver layer only if all tsids 2477bdcd8170SKalle Valo * within this AC are deleted. 2478bdcd8170SKalle Valo */ 2479bdcd8170SKalle Valo if (!active_tsids) { 2480bdcd8170SKalle Valo ath6kl_indicate_tx_activity(wmi->parent_dev, 2481bdcd8170SKalle Valo traffic_class, false); 2482bdcd8170SKalle Valo wmi->fat_pipe_exist &= ~(1 << traffic_class); 2483bdcd8170SKalle Valo } 2484bdcd8170SKalle Valo 2485bdcd8170SKalle Valo return ret; 2486bdcd8170SKalle Valo } 2487bdcd8170SKalle Valo 2488ca1d16a0SRaja Mani int ath6kl_wmi_set_ip_cmd(struct wmi *wmi, u8 if_idx, 2489ca1d16a0SRaja Mani __be32 ips0, __be32 ips1) 2490bdcd8170SKalle Valo { 2491bdcd8170SKalle Valo struct sk_buff *skb; 2492bdcd8170SKalle Valo struct wmi_set_ip_cmd *cmd; 2493bdcd8170SKalle Valo int ret; 2494bdcd8170SKalle Valo 2495bdcd8170SKalle Valo /* Multicast address are not valid */ 2496ca1d16a0SRaja Mani if (ipv4_is_multicast(ips0) || 2497ca1d16a0SRaja Mani ipv4_is_multicast(ips1)) 2498bdcd8170SKalle Valo return -EINVAL; 2499bdcd8170SKalle Valo 2500bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_ip_cmd)); 2501bdcd8170SKalle Valo if (!skb) 2502bdcd8170SKalle Valo return -ENOMEM; 2503bdcd8170SKalle Valo 2504bdcd8170SKalle Valo cmd = (struct wmi_set_ip_cmd *) skb->data; 2505ca1d16a0SRaja Mani cmd->ips[0] = ips0; 2506ca1d16a0SRaja Mani cmd->ips[1] = ips1; 2507bdcd8170SKalle Valo 2508ca1d16a0SRaja Mani ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_IP_CMDID, 2509334234b5SVasanthakumar Thiagarajan NO_SYNC_WMIFLAG); 2510bdcd8170SKalle Valo return ret; 2511bdcd8170SKalle Valo } 2512bdcd8170SKalle Valo 251345cf110bSRaja Mani static void ath6kl_wmi_relinquish_implicit_pstream_credits(struct wmi *wmi) 251445cf110bSRaja Mani { 251545cf110bSRaja Mani u16 active_tsids; 251645cf110bSRaja Mani u8 stream_exist; 251745cf110bSRaja Mani int i; 251845cf110bSRaja Mani 251945cf110bSRaja Mani /* 252045cf110bSRaja Mani * Relinquish credits from all implicitly created pstreams 252145cf110bSRaja Mani * since when we go to sleep. If user created explicit 252245cf110bSRaja Mani * thinstreams exists with in a fatpipe leave them intact 252345cf110bSRaja Mani * for the user to delete. 252445cf110bSRaja Mani */ 252545cf110bSRaja Mani spin_lock_bh(&wmi->lock); 252645cf110bSRaja Mani stream_exist = wmi->fat_pipe_exist; 252745cf110bSRaja Mani spin_unlock_bh(&wmi->lock); 252845cf110bSRaja Mani 252945cf110bSRaja Mani for (i = 0; i < WMM_NUM_AC; i++) { 253045cf110bSRaja Mani if (stream_exist & (1 << i)) { 253145cf110bSRaja Mani 253245cf110bSRaja Mani /* 253345cf110bSRaja Mani * FIXME: Is this lock & unlock inside 253445cf110bSRaja Mani * for loop correct? may need rework. 253545cf110bSRaja Mani */ 253645cf110bSRaja Mani spin_lock_bh(&wmi->lock); 253745cf110bSRaja Mani active_tsids = wmi->stream_exist_for_ac[i]; 253845cf110bSRaja Mani spin_unlock_bh(&wmi->lock); 253945cf110bSRaja Mani 254045cf110bSRaja Mani /* 254145cf110bSRaja Mani * If there are no user created thin streams 254245cf110bSRaja Mani * delete the fatpipe 254345cf110bSRaja Mani */ 254445cf110bSRaja Mani if (!active_tsids) { 254545cf110bSRaja Mani stream_exist &= ~(1 << i); 254645cf110bSRaja Mani /* 254745cf110bSRaja Mani * Indicate inactivity to driver layer for 254845cf110bSRaja Mani * this fatpipe (pstream) 254945cf110bSRaja Mani */ 255045cf110bSRaja Mani ath6kl_indicate_tx_activity(wmi->parent_dev, 255145cf110bSRaja Mani i, false); 255245cf110bSRaja Mani } 255345cf110bSRaja Mani } 255445cf110bSRaja Mani } 255545cf110bSRaja Mani 255645cf110bSRaja Mani /* FIXME: Can we do this assignment without locking ? */ 255745cf110bSRaja Mani spin_lock_bh(&wmi->lock); 255845cf110bSRaja Mani wmi->fat_pipe_exist = stream_exist; 255945cf110bSRaja Mani spin_unlock_bh(&wmi->lock); 256045cf110bSRaja Mani } 256145cf110bSRaja Mani 256245cf110bSRaja Mani int ath6kl_wmi_set_host_sleep_mode_cmd(struct wmi *wmi, u8 if_idx, 256345cf110bSRaja Mani enum ath6kl_host_mode host_mode) 256445cf110bSRaja Mani { 256545cf110bSRaja Mani struct sk_buff *skb; 256645cf110bSRaja Mani struct wmi_set_host_sleep_mode_cmd *cmd; 256745cf110bSRaja Mani int ret; 256845cf110bSRaja Mani 256945cf110bSRaja Mani if ((host_mode != ATH6KL_HOST_MODE_ASLEEP) && 257045cf110bSRaja Mani (host_mode != ATH6KL_HOST_MODE_AWAKE)) { 257145cf110bSRaja Mani ath6kl_err("invalid host sleep mode: %d\n", host_mode); 257245cf110bSRaja Mani return -EINVAL; 257345cf110bSRaja Mani } 257445cf110bSRaja Mani 257545cf110bSRaja Mani skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 257645cf110bSRaja Mani if (!skb) 257745cf110bSRaja Mani return -ENOMEM; 257845cf110bSRaja Mani 257945cf110bSRaja Mani cmd = (struct wmi_set_host_sleep_mode_cmd *) skb->data; 258045cf110bSRaja Mani 258145cf110bSRaja Mani if (host_mode == ATH6KL_HOST_MODE_ASLEEP) { 258245cf110bSRaja Mani ath6kl_wmi_relinquish_implicit_pstream_credits(wmi); 258345cf110bSRaja Mani cmd->asleep = cpu_to_le32(1); 258445cf110bSRaja Mani } else 258545cf110bSRaja Mani cmd->awake = cpu_to_le32(1); 258645cf110bSRaja Mani 258745cf110bSRaja Mani ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, 258845cf110bSRaja Mani WMI_SET_HOST_SLEEP_MODE_CMDID, 258945cf110bSRaja Mani NO_SYNC_WMIFLAG); 259045cf110bSRaja Mani return ret; 259145cf110bSRaja Mani } 259245cf110bSRaja Mani 2593*081c7a84SRaja Mani /* This command has zero length payload */ 2594*081c7a84SRaja Mani static int ath6kl_wmi_host_sleep_mode_cmd_prcd_evt_rx(struct wmi *wmi, 2595*081c7a84SRaja Mani struct ath6kl_vif *vif) 2596*081c7a84SRaja Mani { 2597*081c7a84SRaja Mani struct ath6kl *ar = wmi->parent_dev; 2598*081c7a84SRaja Mani 2599*081c7a84SRaja Mani set_bit(HOST_SLEEP_MODE_CMD_PROCESSED, &vif->flags); 2600*081c7a84SRaja Mani wake_up(&ar->event_wq); 2601*081c7a84SRaja Mani 2602*081c7a84SRaja Mani return 0; 2603*081c7a84SRaja Mani } 2604*081c7a84SRaja Mani 260545cf110bSRaja Mani int ath6kl_wmi_set_wow_mode_cmd(struct wmi *wmi, u8 if_idx, 260645cf110bSRaja Mani enum ath6kl_wow_mode wow_mode, 260745cf110bSRaja Mani u32 filter, u16 host_req_delay) 260845cf110bSRaja Mani { 260945cf110bSRaja Mani struct sk_buff *skb; 261045cf110bSRaja Mani struct wmi_set_wow_mode_cmd *cmd; 261145cf110bSRaja Mani int ret; 261245cf110bSRaja Mani 261345cf110bSRaja Mani if ((wow_mode != ATH6KL_WOW_MODE_ENABLE) && 261445cf110bSRaja Mani wow_mode != ATH6KL_WOW_MODE_DISABLE) { 261545cf110bSRaja Mani ath6kl_err("invalid wow mode: %d\n", wow_mode); 261645cf110bSRaja Mani return -EINVAL; 261745cf110bSRaja Mani } 261845cf110bSRaja Mani 261945cf110bSRaja Mani skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 262045cf110bSRaja Mani if (!skb) 262145cf110bSRaja Mani return -ENOMEM; 262245cf110bSRaja Mani 262345cf110bSRaja Mani cmd = (struct wmi_set_wow_mode_cmd *) skb->data; 262445cf110bSRaja Mani cmd->enable_wow = cpu_to_le32(wow_mode); 262545cf110bSRaja Mani cmd->filter = cpu_to_le32(filter); 262645cf110bSRaja Mani cmd->host_req_delay = cpu_to_le16(host_req_delay); 262745cf110bSRaja Mani 262845cf110bSRaja Mani ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_WOW_MODE_CMDID, 262945cf110bSRaja Mani NO_SYNC_WMIFLAG); 263045cf110bSRaja Mani return ret; 263145cf110bSRaja Mani } 263245cf110bSRaja Mani 26335c9b4fa1SRaja Mani int ath6kl_wmi_add_wow_pattern_cmd(struct wmi *wmi, u8 if_idx, 26345c9b4fa1SRaja Mani u8 list_id, u8 filter_size, 2635d91e8eeeSRaja Mani u8 filter_offset, const u8 *filter, 2636d91e8eeeSRaja Mani const u8 *mask) 26375c9b4fa1SRaja Mani { 26385c9b4fa1SRaja Mani struct sk_buff *skb; 26395c9b4fa1SRaja Mani struct wmi_add_wow_pattern_cmd *cmd; 26405c9b4fa1SRaja Mani u16 size; 26415c9b4fa1SRaja Mani u8 *filter_mask; 26425c9b4fa1SRaja Mani int ret; 26435c9b4fa1SRaja Mani 26445c9b4fa1SRaja Mani /* 26455c9b4fa1SRaja Mani * Allocate additional memory in the buffer to hold 26465c9b4fa1SRaja Mani * filter and mask value, which is twice of filter_size. 26475c9b4fa1SRaja Mani */ 26485c9b4fa1SRaja Mani size = sizeof(*cmd) + (2 * filter_size); 26495c9b4fa1SRaja Mani 26505c9b4fa1SRaja Mani skb = ath6kl_wmi_get_new_buf(size); 26515c9b4fa1SRaja Mani if (!skb) 26525c9b4fa1SRaja Mani return -ENOMEM; 26535c9b4fa1SRaja Mani 26545c9b4fa1SRaja Mani cmd = (struct wmi_add_wow_pattern_cmd *) skb->data; 26555c9b4fa1SRaja Mani cmd->filter_list_id = list_id; 26565c9b4fa1SRaja Mani cmd->filter_size = filter_size; 26575c9b4fa1SRaja Mani cmd->filter_offset = filter_offset; 26585c9b4fa1SRaja Mani 26595c9b4fa1SRaja Mani memcpy(cmd->filter, filter, filter_size); 26605c9b4fa1SRaja Mani 26615c9b4fa1SRaja Mani filter_mask = (u8 *) (cmd->filter + filter_size); 26625c9b4fa1SRaja Mani memcpy(filter_mask, mask, filter_size); 26635c9b4fa1SRaja Mani 26645c9b4fa1SRaja Mani ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_WOW_PATTERN_CMDID, 26655c9b4fa1SRaja Mani NO_SYNC_WMIFLAG); 26665c9b4fa1SRaja Mani 26675c9b4fa1SRaja Mani return ret; 26685c9b4fa1SRaja Mani } 26695c9b4fa1SRaja Mani 26705c9b4fa1SRaja Mani int ath6kl_wmi_del_wow_pattern_cmd(struct wmi *wmi, u8 if_idx, 26715c9b4fa1SRaja Mani u16 list_id, u16 filter_id) 26725c9b4fa1SRaja Mani { 26735c9b4fa1SRaja Mani struct sk_buff *skb; 26745c9b4fa1SRaja Mani struct wmi_del_wow_pattern_cmd *cmd; 26755c9b4fa1SRaja Mani int ret; 26765c9b4fa1SRaja Mani 26775c9b4fa1SRaja Mani skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 26785c9b4fa1SRaja Mani if (!skb) 26795c9b4fa1SRaja Mani return -ENOMEM; 26805c9b4fa1SRaja Mani 26815c9b4fa1SRaja Mani cmd = (struct wmi_del_wow_pattern_cmd *) skb->data; 26825c9b4fa1SRaja Mani cmd->filter_list_id = cpu_to_le16(list_id); 26835c9b4fa1SRaja Mani cmd->filter_id = cpu_to_le16(filter_id); 26845c9b4fa1SRaja Mani 26855c9b4fa1SRaja Mani ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DEL_WOW_PATTERN_CMDID, 26865c9b4fa1SRaja Mani NO_SYNC_WMIFLAG); 26875c9b4fa1SRaja Mani return ret; 26885c9b4fa1SRaja Mani } 26895c9b4fa1SRaja Mani 2690bdcd8170SKalle Valo static int ath6kl_wmi_cmd_send_xtnd(struct wmi *wmi, struct sk_buff *skb, 2691bdcd8170SKalle Valo enum wmix_command_id cmd_id, 2692bdcd8170SKalle Valo enum wmi_sync_flag sync_flag) 2693bdcd8170SKalle Valo { 2694bdcd8170SKalle Valo struct wmix_cmd_hdr *cmd_hdr; 2695bdcd8170SKalle Valo int ret; 2696bdcd8170SKalle Valo 2697bdcd8170SKalle Valo skb_push(skb, sizeof(struct wmix_cmd_hdr)); 2698bdcd8170SKalle Valo 2699bdcd8170SKalle Valo cmd_hdr = (struct wmix_cmd_hdr *) skb->data; 2700bdcd8170SKalle Valo cmd_hdr->cmd_id = cpu_to_le32(cmd_id); 2701bdcd8170SKalle Valo 2702334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_EXTENSION_CMDID, sync_flag); 2703bdcd8170SKalle Valo 2704bdcd8170SKalle Valo return ret; 2705bdcd8170SKalle Valo } 2706bdcd8170SKalle Valo 2707bdcd8170SKalle Valo int ath6kl_wmi_get_challenge_resp_cmd(struct wmi *wmi, u32 cookie, u32 source) 2708bdcd8170SKalle Valo { 2709bdcd8170SKalle Valo struct sk_buff *skb; 2710bdcd8170SKalle Valo struct wmix_hb_challenge_resp_cmd *cmd; 2711bdcd8170SKalle Valo int ret; 2712bdcd8170SKalle Valo 2713bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2714bdcd8170SKalle Valo if (!skb) 2715bdcd8170SKalle Valo return -ENOMEM; 2716bdcd8170SKalle Valo 2717bdcd8170SKalle Valo cmd = (struct wmix_hb_challenge_resp_cmd *) skb->data; 2718bdcd8170SKalle Valo cmd->cookie = cpu_to_le32(cookie); 2719bdcd8170SKalle Valo cmd->source = cpu_to_le32(source); 2720bdcd8170SKalle Valo 2721bdcd8170SKalle Valo ret = ath6kl_wmi_cmd_send_xtnd(wmi, skb, WMIX_HB_CHALLENGE_RESP_CMDID, 2722bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2723bdcd8170SKalle Valo return ret; 2724bdcd8170SKalle Valo } 2725bdcd8170SKalle Valo 2726939f1cceSKalle Valo int ath6kl_wmi_config_debug_module_cmd(struct wmi *wmi, u32 valid, u32 config) 2727939f1cceSKalle Valo { 2728939f1cceSKalle Valo struct ath6kl_wmix_dbglog_cfg_module_cmd *cmd; 2729939f1cceSKalle Valo struct sk_buff *skb; 2730939f1cceSKalle Valo int ret; 2731939f1cceSKalle Valo 2732939f1cceSKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2733939f1cceSKalle Valo if (!skb) 2734939f1cceSKalle Valo return -ENOMEM; 2735939f1cceSKalle Valo 2736939f1cceSKalle Valo cmd = (struct ath6kl_wmix_dbglog_cfg_module_cmd *) skb->data; 2737939f1cceSKalle Valo cmd->valid = cpu_to_le32(valid); 2738939f1cceSKalle Valo cmd->config = cpu_to_le32(config); 2739939f1cceSKalle Valo 2740939f1cceSKalle Valo ret = ath6kl_wmi_cmd_send_xtnd(wmi, skb, WMIX_DBGLOG_CFG_MODULE_CMDID, 2741939f1cceSKalle Valo NO_SYNC_WMIFLAG); 2742939f1cceSKalle Valo return ret; 2743939f1cceSKalle Valo } 2744939f1cceSKalle Valo 2745334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_get_stats_cmd(struct wmi *wmi, u8 if_idx) 2746bdcd8170SKalle Valo { 2747334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_GET_STATISTICS_CMDID); 2748bdcd8170SKalle Valo } 2749bdcd8170SKalle Valo 2750990bd915SVasanthakumar Thiagarajan int ath6kl_wmi_set_tx_pwr_cmd(struct wmi *wmi, u8 if_idx, u8 dbM) 2751bdcd8170SKalle Valo { 2752bdcd8170SKalle Valo struct sk_buff *skb; 2753bdcd8170SKalle Valo struct wmi_set_tx_pwr_cmd *cmd; 2754bdcd8170SKalle Valo int ret; 2755bdcd8170SKalle Valo 2756bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_tx_pwr_cmd)); 2757bdcd8170SKalle Valo if (!skb) 2758bdcd8170SKalle Valo return -ENOMEM; 2759bdcd8170SKalle Valo 2760bdcd8170SKalle Valo cmd = (struct wmi_set_tx_pwr_cmd *) skb->data; 2761bdcd8170SKalle Valo cmd->dbM = dbM; 2762bdcd8170SKalle Valo 2763990bd915SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_TX_PWR_CMDID, 2764bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2765bdcd8170SKalle Valo 2766bdcd8170SKalle Valo return ret; 2767bdcd8170SKalle Valo } 2768bdcd8170SKalle Valo 2769990bd915SVasanthakumar Thiagarajan int ath6kl_wmi_get_tx_pwr_cmd(struct wmi *wmi, u8 if_idx) 2770bdcd8170SKalle Valo { 2771990bd915SVasanthakumar Thiagarajan return ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_GET_TX_PWR_CMDID); 2772bdcd8170SKalle Valo } 2773bdcd8170SKalle Valo 27744b28a80dSJouni Malinen int ath6kl_wmi_get_roam_tbl_cmd(struct wmi *wmi) 27754b28a80dSJouni Malinen { 2776334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_simple_cmd(wmi, 0, WMI_GET_ROAM_TBL_CMDID); 27774b28a80dSJouni Malinen } 27784b28a80dSJouni Malinen 27790ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_set_lpreamble_cmd(struct wmi *wmi, u8 if_idx, u8 status, 27800ce59445SVasanthakumar Thiagarajan u8 preamble_policy) 2781bdcd8170SKalle Valo { 2782bdcd8170SKalle Valo struct sk_buff *skb; 2783bdcd8170SKalle Valo struct wmi_set_lpreamble_cmd *cmd; 2784bdcd8170SKalle Valo int ret; 2785bdcd8170SKalle Valo 2786bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_lpreamble_cmd)); 2787bdcd8170SKalle Valo if (!skb) 2788bdcd8170SKalle Valo return -ENOMEM; 2789bdcd8170SKalle Valo 2790bdcd8170SKalle Valo cmd = (struct wmi_set_lpreamble_cmd *) skb->data; 2791bdcd8170SKalle Valo cmd->status = status; 2792bdcd8170SKalle Valo cmd->preamble_policy = preamble_policy; 2793bdcd8170SKalle Valo 27940ce59445SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_LPREAMBLE_CMDID, 2795bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2796bdcd8170SKalle Valo return ret; 2797bdcd8170SKalle Valo } 2798bdcd8170SKalle Valo 2799bdcd8170SKalle Valo int ath6kl_wmi_set_rts_cmd(struct wmi *wmi, u16 threshold) 2800bdcd8170SKalle Valo { 2801bdcd8170SKalle Valo struct sk_buff *skb; 2802bdcd8170SKalle Valo struct wmi_set_rts_cmd *cmd; 2803bdcd8170SKalle Valo int ret; 2804bdcd8170SKalle Valo 2805bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_rts_cmd)); 2806bdcd8170SKalle Valo if (!skb) 2807bdcd8170SKalle Valo return -ENOMEM; 2808bdcd8170SKalle Valo 2809bdcd8170SKalle Valo cmd = (struct wmi_set_rts_cmd *) skb->data; 2810bdcd8170SKalle Valo cmd->threshold = cpu_to_le16(threshold); 2811bdcd8170SKalle Valo 2812334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_RTS_CMDID, 2813334234b5SVasanthakumar Thiagarajan NO_SYNC_WMIFLAG); 2814bdcd8170SKalle Valo return ret; 2815bdcd8170SKalle Valo } 2816bdcd8170SKalle Valo 28170ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_set_wmm_txop(struct wmi *wmi, u8 if_idx, enum wmi_txop_cfg cfg) 2818bdcd8170SKalle Valo { 2819bdcd8170SKalle Valo struct sk_buff *skb; 2820bdcd8170SKalle Valo struct wmi_set_wmm_txop_cmd *cmd; 2821bdcd8170SKalle Valo int ret; 2822bdcd8170SKalle Valo 2823bdcd8170SKalle Valo if (!((cfg == WMI_TXOP_DISABLED) || (cfg == WMI_TXOP_ENABLED))) 2824bdcd8170SKalle Valo return -EINVAL; 2825bdcd8170SKalle Valo 2826bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_wmm_txop_cmd)); 2827bdcd8170SKalle Valo if (!skb) 2828bdcd8170SKalle Valo return -ENOMEM; 2829bdcd8170SKalle Valo 2830bdcd8170SKalle Valo cmd = (struct wmi_set_wmm_txop_cmd *) skb->data; 2831bdcd8170SKalle Valo cmd->txop_enable = cfg; 2832bdcd8170SKalle Valo 28330ce59445SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_WMM_TXOP_CMDID, 2834bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2835bdcd8170SKalle Valo return ret; 2836bdcd8170SKalle Valo } 2837bdcd8170SKalle Valo 28380ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_set_keepalive_cmd(struct wmi *wmi, u8 if_idx, 28390ce59445SVasanthakumar Thiagarajan u8 keep_alive_intvl) 2840bdcd8170SKalle Valo { 2841bdcd8170SKalle Valo struct sk_buff *skb; 2842bdcd8170SKalle Valo struct wmi_set_keepalive_cmd *cmd; 2843bdcd8170SKalle Valo int ret; 2844bdcd8170SKalle Valo 2845bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2846bdcd8170SKalle Valo if (!skb) 2847bdcd8170SKalle Valo return -ENOMEM; 2848bdcd8170SKalle Valo 2849bdcd8170SKalle Valo cmd = (struct wmi_set_keepalive_cmd *) skb->data; 2850bdcd8170SKalle Valo cmd->keep_alive_intvl = keep_alive_intvl; 2851bdcd8170SKalle Valo 28520ce59445SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_KEEPALIVE_CMDID, 2853bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 2854334234b5SVasanthakumar Thiagarajan 2855ff0b0075SJouni Malinen if (ret == 0) 2856ff0b0075SJouni Malinen ath6kl_debug_set_keepalive(wmi->parent_dev, keep_alive_intvl); 2857334234b5SVasanthakumar Thiagarajan 2858bdcd8170SKalle Valo return ret; 2859bdcd8170SKalle Valo } 2860bdcd8170SKalle Valo 2861003353b0SKalle Valo int ath6kl_wmi_test_cmd(struct wmi *wmi, void *buf, size_t len) 2862003353b0SKalle Valo { 2863003353b0SKalle Valo struct sk_buff *skb; 2864003353b0SKalle Valo int ret; 2865003353b0SKalle Valo 2866003353b0SKalle Valo skb = ath6kl_wmi_get_new_buf(len); 2867003353b0SKalle Valo if (!skb) 2868003353b0SKalle Valo return -ENOMEM; 2869003353b0SKalle Valo 2870003353b0SKalle Valo memcpy(skb->data, buf, len); 2871003353b0SKalle Valo 2872334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_TEST_CMDID, NO_SYNC_WMIFLAG); 2873003353b0SKalle Valo 2874003353b0SKalle Valo return ret; 2875003353b0SKalle Valo } 2876003353b0SKalle Valo 28773f3c4ee7SVasanthakumar Thiagarajan int ath6kl_wmi_mcast_filter_cmd(struct wmi *wmi, u8 if_idx, bool mc_all_on) 28783f3c4ee7SVasanthakumar Thiagarajan { 28793f3c4ee7SVasanthakumar Thiagarajan struct sk_buff *skb; 28803f3c4ee7SVasanthakumar Thiagarajan struct wmi_mcast_filter_cmd *cmd; 28813f3c4ee7SVasanthakumar Thiagarajan int ret; 28823f3c4ee7SVasanthakumar Thiagarajan 28833f3c4ee7SVasanthakumar Thiagarajan skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 28843f3c4ee7SVasanthakumar Thiagarajan if (!skb) 28853f3c4ee7SVasanthakumar Thiagarajan return -ENOMEM; 28863f3c4ee7SVasanthakumar Thiagarajan 28873f3c4ee7SVasanthakumar Thiagarajan cmd = (struct wmi_mcast_filter_cmd *) skb->data; 28883f3c4ee7SVasanthakumar Thiagarajan cmd->mcast_all_enable = mc_all_on; 28893f3c4ee7SVasanthakumar Thiagarajan 28903f3c4ee7SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_MCAST_FILTER_CMDID, 28913f3c4ee7SVasanthakumar Thiagarajan NO_SYNC_WMIFLAG); 28923f3c4ee7SVasanthakumar Thiagarajan return ret; 28933f3c4ee7SVasanthakumar Thiagarajan } 2894003353b0SKalle Valo 2895f914edd3SVasanthakumar Thiagarajan int ath6kl_wmi_add_del_mcast_filter_cmd(struct wmi *wmi, u8 if_idx, 2896f914edd3SVasanthakumar Thiagarajan u8 *filter, bool add_filter) 2897f914edd3SVasanthakumar Thiagarajan { 2898f914edd3SVasanthakumar Thiagarajan struct sk_buff *skb; 2899f914edd3SVasanthakumar Thiagarajan struct wmi_mcast_filter_add_del_cmd *cmd; 2900f914edd3SVasanthakumar Thiagarajan int ret; 2901f914edd3SVasanthakumar Thiagarajan 2902f914edd3SVasanthakumar Thiagarajan if ((filter[0] != 0x33 || filter[1] != 0x33) && 2903f914edd3SVasanthakumar Thiagarajan (filter[0] != 0x01 || filter[1] != 0x00 || 2904f914edd3SVasanthakumar Thiagarajan filter[2] != 0x5e || filter[3] > 0x7f)) { 2905f914edd3SVasanthakumar Thiagarajan ath6kl_warn("invalid multicast filter address\n"); 2906f914edd3SVasanthakumar Thiagarajan return -EINVAL; 2907f914edd3SVasanthakumar Thiagarajan } 2908f914edd3SVasanthakumar Thiagarajan 2909f914edd3SVasanthakumar Thiagarajan skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 2910f914edd3SVasanthakumar Thiagarajan if (!skb) 2911f914edd3SVasanthakumar Thiagarajan return -ENOMEM; 2912f914edd3SVasanthakumar Thiagarajan 2913f914edd3SVasanthakumar Thiagarajan cmd = (struct wmi_mcast_filter_add_del_cmd *) skb->data; 2914f914edd3SVasanthakumar Thiagarajan memcpy(cmd->mcast_mac, filter, ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE); 2915f914edd3SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, 2916f914edd3SVasanthakumar Thiagarajan add_filter ? WMI_SET_MCAST_FILTER_CMDID : 2917f914edd3SVasanthakumar Thiagarajan WMI_DEL_MCAST_FILTER_CMDID, 2918f914edd3SVasanthakumar Thiagarajan NO_SYNC_WMIFLAG); 2919f914edd3SVasanthakumar Thiagarajan 2920f914edd3SVasanthakumar Thiagarajan return ret; 2921f914edd3SVasanthakumar Thiagarajan } 2922f914edd3SVasanthakumar Thiagarajan 2923bdcd8170SKalle Valo s32 ath6kl_wmi_get_rate(s8 rate_index) 2924bdcd8170SKalle Valo { 2925bdcd8170SKalle Valo if (rate_index == RATE_AUTO) 2926bdcd8170SKalle Valo return 0; 2927bdcd8170SKalle Valo 2928bdcd8170SKalle Valo return wmi_rate_tbl[(u32) rate_index][0]; 2929bdcd8170SKalle Valo } 2930bdcd8170SKalle Valo 2931bdcd8170SKalle Valo static int ath6kl_wmi_get_pmkid_list_event_rx(struct wmi *wmi, u8 *datap, 2932bdcd8170SKalle Valo u32 len) 2933bdcd8170SKalle Valo { 2934bdcd8170SKalle Valo struct wmi_pmkid_list_reply *reply; 2935bdcd8170SKalle Valo u32 expected_len; 2936bdcd8170SKalle Valo 2937bdcd8170SKalle Valo if (len < sizeof(struct wmi_pmkid_list_reply)) 2938bdcd8170SKalle Valo return -EINVAL; 2939bdcd8170SKalle Valo 2940bdcd8170SKalle Valo reply = (struct wmi_pmkid_list_reply *)datap; 2941bdcd8170SKalle Valo expected_len = sizeof(reply->num_pmkid) + 2942bdcd8170SKalle Valo le32_to_cpu(reply->num_pmkid) * WMI_PMKID_LEN; 2943bdcd8170SKalle Valo 2944bdcd8170SKalle Valo if (len < expected_len) 2945bdcd8170SKalle Valo return -EINVAL; 2946bdcd8170SKalle Valo 2947bdcd8170SKalle Valo return 0; 2948bdcd8170SKalle Valo } 2949bdcd8170SKalle Valo 2950240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_addba_req_event_rx(struct wmi *wmi, u8 *datap, int len, 2951240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 2952bdcd8170SKalle Valo { 2953bdcd8170SKalle Valo struct wmi_addba_req_event *cmd = (struct wmi_addba_req_event *) datap; 2954bdcd8170SKalle Valo 2955240d2799SVasanthakumar Thiagarajan aggr_recv_addba_req_evt(vif, cmd->tid, 2956bdcd8170SKalle Valo le16_to_cpu(cmd->st_seq_no), cmd->win_sz); 2957bdcd8170SKalle Valo 2958bdcd8170SKalle Valo return 0; 2959bdcd8170SKalle Valo } 2960bdcd8170SKalle Valo 2961240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_delba_req_event_rx(struct wmi *wmi, u8 *datap, int len, 2962240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 2963bdcd8170SKalle Valo { 2964bdcd8170SKalle Valo struct wmi_delba_event *cmd = (struct wmi_delba_event *) datap; 2965bdcd8170SKalle Valo 2966240d2799SVasanthakumar Thiagarajan aggr_recv_delba_req_evt(vif, cmd->tid); 2967bdcd8170SKalle Valo 2968bdcd8170SKalle Valo return 0; 2969bdcd8170SKalle Valo } 2970bdcd8170SKalle Valo 2971bdcd8170SKalle Valo /* AP mode functions */ 29726a7c9badSJouni Malinen 2973334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_ap_profile_commit(struct wmi *wmip, u8 if_idx, 2974334234b5SVasanthakumar Thiagarajan struct wmi_connect_cmd *p) 29756a7c9badSJouni Malinen { 29766a7c9badSJouni Malinen struct sk_buff *skb; 29776a7c9badSJouni Malinen struct wmi_connect_cmd *cm; 29786a7c9badSJouni Malinen int res; 29796a7c9badSJouni Malinen 29806a7c9badSJouni Malinen skb = ath6kl_wmi_get_new_buf(sizeof(*cm)); 29816a7c9badSJouni Malinen if (!skb) 29826a7c9badSJouni Malinen return -ENOMEM; 29836a7c9badSJouni Malinen 29846a7c9badSJouni Malinen cm = (struct wmi_connect_cmd *) skb->data; 29856a7c9badSJouni Malinen memcpy(cm, p, sizeof(*cm)); 29866a7c9badSJouni Malinen 2987334234b5SVasanthakumar Thiagarajan res = ath6kl_wmi_cmd_send(wmip, if_idx, skb, WMI_AP_CONFIG_COMMIT_CMDID, 29886a7c9badSJouni Malinen NO_SYNC_WMIFLAG); 29896a7c9badSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "%s: nw_type=%u auth_mode=%u ch=%u " 29906a7c9badSJouni Malinen "ctrl_flags=0x%x-> res=%d\n", 29916a7c9badSJouni Malinen __func__, p->nw_type, p->auth_mode, le16_to_cpu(p->ch), 29926a7c9badSJouni Malinen le32_to_cpu(p->ctrl_flags), res); 29936a7c9badSJouni Malinen return res; 29946a7c9badSJouni Malinen } 29956a7c9badSJouni Malinen 2996334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_ap_set_mlme(struct wmi *wmip, u8 if_idx, u8 cmd, const u8 *mac, 2997334234b5SVasanthakumar Thiagarajan u16 reason) 299823875136SJouni Malinen { 299923875136SJouni Malinen struct sk_buff *skb; 300023875136SJouni Malinen struct wmi_ap_set_mlme_cmd *cm; 300123875136SJouni Malinen 300223875136SJouni Malinen skb = ath6kl_wmi_get_new_buf(sizeof(*cm)); 300323875136SJouni Malinen if (!skb) 300423875136SJouni Malinen return -ENOMEM; 300523875136SJouni Malinen 300623875136SJouni Malinen cm = (struct wmi_ap_set_mlme_cmd *) skb->data; 300723875136SJouni Malinen memcpy(cm->mac, mac, ETH_ALEN); 300823875136SJouni Malinen cm->reason = cpu_to_le16(reason); 300923875136SJouni Malinen cm->cmd = cmd; 301023875136SJouni Malinen 3011334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmip, if_idx, skb, WMI_AP_SET_MLME_CMDID, 301223875136SJouni Malinen NO_SYNC_WMIFLAG); 301323875136SJouni Malinen } 301423875136SJouni Malinen 3015c1762a3fSThirumalai Pachamuthu /* This command will be used to enable/disable AP uAPSD feature */ 3016c1762a3fSThirumalai Pachamuthu int ath6kl_wmi_ap_set_apsd(struct wmi *wmi, u8 if_idx, u8 enable) 3017c1762a3fSThirumalai Pachamuthu { 3018c1762a3fSThirumalai Pachamuthu struct wmi_ap_set_apsd_cmd *cmd; 3019c1762a3fSThirumalai Pachamuthu struct sk_buff *skb; 3020c1762a3fSThirumalai Pachamuthu 3021c1762a3fSThirumalai Pachamuthu skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3022c1762a3fSThirumalai Pachamuthu if (!skb) 3023c1762a3fSThirumalai Pachamuthu return -ENOMEM; 3024c1762a3fSThirumalai Pachamuthu 3025c1762a3fSThirumalai Pachamuthu cmd = (struct wmi_ap_set_apsd_cmd *)skb->data; 3026c1762a3fSThirumalai Pachamuthu cmd->enable = enable; 3027c1762a3fSThirumalai Pachamuthu 3028c1762a3fSThirumalai Pachamuthu return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_SET_APSD_CMDID, 3029c1762a3fSThirumalai Pachamuthu NO_SYNC_WMIFLAG); 3030c1762a3fSThirumalai Pachamuthu } 3031c1762a3fSThirumalai Pachamuthu 3032c1762a3fSThirumalai Pachamuthu int ath6kl_wmi_set_apsd_bfrd_traf(struct wmi *wmi, u8 if_idx, 3033c1762a3fSThirumalai Pachamuthu u16 aid, u16 bitmap, u32 flags) 3034c1762a3fSThirumalai Pachamuthu { 3035c1762a3fSThirumalai Pachamuthu struct wmi_ap_apsd_buffered_traffic_cmd *cmd; 3036c1762a3fSThirumalai Pachamuthu struct sk_buff *skb; 3037c1762a3fSThirumalai Pachamuthu 3038c1762a3fSThirumalai Pachamuthu skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3039c1762a3fSThirumalai Pachamuthu if (!skb) 3040c1762a3fSThirumalai Pachamuthu return -ENOMEM; 3041c1762a3fSThirumalai Pachamuthu 3042c1762a3fSThirumalai Pachamuthu cmd = (struct wmi_ap_apsd_buffered_traffic_cmd *)skb->data; 3043c1762a3fSThirumalai Pachamuthu cmd->aid = cpu_to_le16(aid); 3044c1762a3fSThirumalai Pachamuthu cmd->bitmap = cpu_to_le16(bitmap); 3045c1762a3fSThirumalai Pachamuthu cmd->flags = cpu_to_le32(flags); 3046c1762a3fSThirumalai Pachamuthu 3047c1762a3fSThirumalai Pachamuthu return ath6kl_wmi_cmd_send(wmi, if_idx, skb, 3048c1762a3fSThirumalai Pachamuthu WMI_AP_APSD_BUFFERED_TRAFFIC_CMDID, 3049c1762a3fSThirumalai Pachamuthu NO_SYNC_WMIFLAG); 3050c1762a3fSThirumalai Pachamuthu } 3051c1762a3fSThirumalai Pachamuthu 3052240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_pspoll_event_rx(struct wmi *wmi, u8 *datap, int len, 3053240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 3054bdcd8170SKalle Valo { 3055bdcd8170SKalle Valo struct wmi_pspoll_event *ev; 3056bdcd8170SKalle Valo 3057bdcd8170SKalle Valo if (len < sizeof(struct wmi_pspoll_event)) 3058bdcd8170SKalle Valo return -EINVAL; 3059bdcd8170SKalle Valo 3060bdcd8170SKalle Valo ev = (struct wmi_pspoll_event *) datap; 3061bdcd8170SKalle Valo 3062240d2799SVasanthakumar Thiagarajan ath6kl_pspoll_event(vif, le16_to_cpu(ev->aid)); 3063bdcd8170SKalle Valo 3064bdcd8170SKalle Valo return 0; 3065bdcd8170SKalle Valo } 3066bdcd8170SKalle Valo 3067240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_dtimexpiry_event_rx(struct wmi *wmi, u8 *datap, int len, 3068240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif) 3069bdcd8170SKalle Valo { 3070240d2799SVasanthakumar Thiagarajan ath6kl_dtimexpiry_event(vif); 3071bdcd8170SKalle Valo 3072bdcd8170SKalle Valo return 0; 3073bdcd8170SKalle Valo } 3074bdcd8170SKalle Valo 3075334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_set_pvb_cmd(struct wmi *wmi, u8 if_idx, u16 aid, 3076334234b5SVasanthakumar Thiagarajan bool flag) 3077bdcd8170SKalle Valo { 3078bdcd8170SKalle Valo struct sk_buff *skb; 3079bdcd8170SKalle Valo struct wmi_ap_set_pvb_cmd *cmd; 3080bdcd8170SKalle Valo int ret; 3081bdcd8170SKalle Valo 3082bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_ap_set_pvb_cmd)); 3083bdcd8170SKalle Valo if (!skb) 3084bdcd8170SKalle Valo return -ENOMEM; 3085bdcd8170SKalle Valo 3086bdcd8170SKalle Valo cmd = (struct wmi_ap_set_pvb_cmd *) skb->data; 3087bdcd8170SKalle Valo cmd->aid = cpu_to_le16(aid); 3088d6e51e6aSJouni Malinen cmd->rsvd = cpu_to_le16(0); 3089bdcd8170SKalle Valo cmd->flag = cpu_to_le32(flag); 3090bdcd8170SKalle Valo 3091334234b5SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_SET_PVB_CMDID, 3092bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 3093bdcd8170SKalle Valo 3094bdcd8170SKalle Valo return 0; 3095bdcd8170SKalle Valo } 3096bdcd8170SKalle Valo 30970ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_set_rx_frame_format_cmd(struct wmi *wmi, u8 if_idx, 30980ce59445SVasanthakumar Thiagarajan u8 rx_meta_ver, 3099bdcd8170SKalle Valo bool rx_dot11_hdr, bool defrag_on_host) 3100bdcd8170SKalle Valo { 3101bdcd8170SKalle Valo struct sk_buff *skb; 3102bdcd8170SKalle Valo struct wmi_rx_frame_format_cmd *cmd; 3103bdcd8170SKalle Valo int ret; 3104bdcd8170SKalle Valo 3105bdcd8170SKalle Valo skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 3106bdcd8170SKalle Valo if (!skb) 3107bdcd8170SKalle Valo return -ENOMEM; 3108bdcd8170SKalle Valo 3109bdcd8170SKalle Valo cmd = (struct wmi_rx_frame_format_cmd *) skb->data; 3110bdcd8170SKalle Valo cmd->dot11_hdr = rx_dot11_hdr ? 1 : 0; 3111bdcd8170SKalle Valo cmd->defrag_on_host = defrag_on_host ? 1 : 0; 3112bdcd8170SKalle Valo cmd->meta_ver = rx_meta_ver; 3113bdcd8170SKalle Valo 3114bdcd8170SKalle Valo /* Delete the local aggr state, on host */ 31150ce59445SVasanthakumar Thiagarajan ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_RX_FRAME_FORMAT_CMDID, 3116bdcd8170SKalle Valo NO_SYNC_WMIFLAG); 3117bdcd8170SKalle Valo 3118bdcd8170SKalle Valo return ret; 3119bdcd8170SKalle Valo } 3120bdcd8170SKalle Valo 3121334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_set_appie_cmd(struct wmi *wmi, u8 if_idx, u8 mgmt_frm_type, 3122334234b5SVasanthakumar Thiagarajan const u8 *ie, u8 ie_len) 31236a7c9badSJouni Malinen { 31246a7c9badSJouni Malinen struct sk_buff *skb; 31256a7c9badSJouni Malinen struct wmi_set_appie_cmd *p; 31266a7c9badSJouni Malinen 31276a7c9badSJouni Malinen skb = ath6kl_wmi_get_new_buf(sizeof(*p) + ie_len); 31286a7c9badSJouni Malinen if (!skb) 31296a7c9badSJouni Malinen return -ENOMEM; 31306a7c9badSJouni Malinen 31316a7c9badSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "set_appie_cmd: mgmt_frm_type=%u " 31326a7c9badSJouni Malinen "ie_len=%u\n", mgmt_frm_type, ie_len); 31336a7c9badSJouni Malinen p = (struct wmi_set_appie_cmd *) skb->data; 31346a7c9badSJouni Malinen p->mgmt_frm_type = mgmt_frm_type; 31356a7c9badSJouni Malinen p->ie_len = ie_len; 313610509f90SKalle Valo 313710509f90SKalle Valo if (ie != NULL && ie_len > 0) 31386a7c9badSJouni Malinen memcpy(p->ie_info, ie, ie_len); 313910509f90SKalle Valo 3140334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_APPIE_CMDID, 31416a7c9badSJouni Malinen NO_SYNC_WMIFLAG); 31426a7c9badSJouni Malinen } 31436a7c9badSJouni Malinen 31446465ddcfSJouni Malinen int ath6kl_wmi_disable_11b_rates_cmd(struct wmi *wmi, bool disable) 31456465ddcfSJouni Malinen { 31466465ddcfSJouni Malinen struct sk_buff *skb; 31476465ddcfSJouni Malinen struct wmi_disable_11b_rates_cmd *cmd; 31486465ddcfSJouni Malinen 31496465ddcfSJouni Malinen skb = ath6kl_wmi_get_new_buf(sizeof(*cmd)); 31506465ddcfSJouni Malinen if (!skb) 31516465ddcfSJouni Malinen return -ENOMEM; 31526465ddcfSJouni Malinen 31536465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "disable_11b_rates_cmd: disable=%u\n", 31546465ddcfSJouni Malinen disable); 31556465ddcfSJouni Malinen cmd = (struct wmi_disable_11b_rates_cmd *) skb->data; 31566465ddcfSJouni Malinen cmd->disable = disable ? 1 : 0; 31576465ddcfSJouni Malinen 3158334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_DISABLE_11B_RATES_CMDID, 31596465ddcfSJouni Malinen NO_SYNC_WMIFLAG); 31606465ddcfSJouni Malinen } 31616465ddcfSJouni Malinen 3162334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx, u32 freq, u32 dur) 31636465ddcfSJouni Malinen { 31646465ddcfSJouni Malinen struct sk_buff *skb; 31656465ddcfSJouni Malinen struct wmi_remain_on_chnl_cmd *p; 31666465ddcfSJouni Malinen 31676465ddcfSJouni Malinen skb = ath6kl_wmi_get_new_buf(sizeof(*p)); 31686465ddcfSJouni Malinen if (!skb) 31696465ddcfSJouni Malinen return -ENOMEM; 31706465ddcfSJouni Malinen 31716465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl_cmd: freq=%u dur=%u\n", 31726465ddcfSJouni Malinen freq, dur); 31736465ddcfSJouni Malinen p = (struct wmi_remain_on_chnl_cmd *) skb->data; 31746465ddcfSJouni Malinen p->freq = cpu_to_le32(freq); 31756465ddcfSJouni Malinen p->duration = cpu_to_le32(dur); 3176334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_REMAIN_ON_CHNL_CMDID, 31776465ddcfSJouni Malinen NO_SYNC_WMIFLAG); 31786465ddcfSJouni Malinen } 31796465ddcfSJouni Malinen 31803ca9d1fcSAarthi Thiruvengadam /* ath6kl_wmi_send_action_cmd is to be deprecated. Use 31813ca9d1fcSAarthi Thiruvengadam * ath6kl_wmi_send_mgmt_cmd instead. The new function supports P2P 31823ca9d1fcSAarthi Thiruvengadam * mgmt operations using station interface. 31833ca9d1fcSAarthi Thiruvengadam */ 3184334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_send_action_cmd(struct wmi *wmi, u8 if_idx, u32 id, u32 freq, 3185334234b5SVasanthakumar Thiagarajan u32 wait, const u8 *data, u16 data_len) 31866465ddcfSJouni Malinen { 31876465ddcfSJouni Malinen struct sk_buff *skb; 31886465ddcfSJouni Malinen struct wmi_send_action_cmd *p; 3189a0df5db1SJouni Malinen u8 *buf; 31906465ddcfSJouni Malinen 31916465ddcfSJouni Malinen if (wait) 31926465ddcfSJouni Malinen return -EINVAL; /* Offload for wait not supported */ 31936465ddcfSJouni Malinen 3194a0df5db1SJouni Malinen buf = kmalloc(data_len, GFP_KERNEL); 3195a0df5db1SJouni Malinen if (!buf) 31966465ddcfSJouni Malinen return -ENOMEM; 31976465ddcfSJouni Malinen 3198a0df5db1SJouni Malinen skb = ath6kl_wmi_get_new_buf(sizeof(*p) + data_len); 3199a0df5db1SJouni Malinen if (!skb) { 3200a0df5db1SJouni Malinen kfree(buf); 3201a0df5db1SJouni Malinen return -ENOMEM; 3202a0df5db1SJouni Malinen } 3203a0df5db1SJouni Malinen 3204a0df5db1SJouni Malinen kfree(wmi->last_mgmt_tx_frame); 32053101edefSAarthi Thiruvengadam memcpy(buf, data, data_len); 3206a0df5db1SJouni Malinen wmi->last_mgmt_tx_frame = buf; 3207a0df5db1SJouni Malinen wmi->last_mgmt_tx_frame_len = data_len; 3208a0df5db1SJouni Malinen 32096465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "send_action_cmd: id=%u freq=%u wait=%u " 32106465ddcfSJouni Malinen "len=%u\n", id, freq, wait, data_len); 32116465ddcfSJouni Malinen p = (struct wmi_send_action_cmd *) skb->data; 32126465ddcfSJouni Malinen p->id = cpu_to_le32(id); 32136465ddcfSJouni Malinen p->freq = cpu_to_le32(freq); 32146465ddcfSJouni Malinen p->wait = cpu_to_le32(wait); 32156465ddcfSJouni Malinen p->len = cpu_to_le16(data_len); 32166465ddcfSJouni Malinen memcpy(p->data, data, data_len); 3217334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SEND_ACTION_CMDID, 32186465ddcfSJouni Malinen NO_SYNC_WMIFLAG); 32196465ddcfSJouni Malinen } 32206465ddcfSJouni Malinen 32213ca9d1fcSAarthi Thiruvengadam int ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id, u32 freq, 32223ca9d1fcSAarthi Thiruvengadam u32 wait, const u8 *data, u16 data_len, 32233ca9d1fcSAarthi Thiruvengadam u32 no_cck) 32243ca9d1fcSAarthi Thiruvengadam { 32253ca9d1fcSAarthi Thiruvengadam struct sk_buff *skb; 32263ca9d1fcSAarthi Thiruvengadam struct wmi_send_mgmt_cmd *p; 32273ca9d1fcSAarthi Thiruvengadam u8 *buf; 32283ca9d1fcSAarthi Thiruvengadam 32293ca9d1fcSAarthi Thiruvengadam if (wait) 32303ca9d1fcSAarthi Thiruvengadam return -EINVAL; /* Offload for wait not supported */ 32313ca9d1fcSAarthi Thiruvengadam 32323ca9d1fcSAarthi Thiruvengadam buf = kmalloc(data_len, GFP_KERNEL); 32333ca9d1fcSAarthi Thiruvengadam if (!buf) 32343ca9d1fcSAarthi Thiruvengadam return -ENOMEM; 32353ca9d1fcSAarthi Thiruvengadam 32363ca9d1fcSAarthi Thiruvengadam skb = ath6kl_wmi_get_new_buf(sizeof(*p) + data_len); 32373ca9d1fcSAarthi Thiruvengadam if (!skb) { 32383ca9d1fcSAarthi Thiruvengadam kfree(buf); 32393ca9d1fcSAarthi Thiruvengadam return -ENOMEM; 32403ca9d1fcSAarthi Thiruvengadam } 32413ca9d1fcSAarthi Thiruvengadam 32423ca9d1fcSAarthi Thiruvengadam kfree(wmi->last_mgmt_tx_frame); 32433ca9d1fcSAarthi Thiruvengadam memcpy(buf, data, data_len); 32443ca9d1fcSAarthi Thiruvengadam wmi->last_mgmt_tx_frame = buf; 32453ca9d1fcSAarthi Thiruvengadam wmi->last_mgmt_tx_frame_len = data_len; 32463ca9d1fcSAarthi Thiruvengadam 32473ca9d1fcSAarthi Thiruvengadam ath6kl_dbg(ATH6KL_DBG_WMI, "send_action_cmd: id=%u freq=%u wait=%u " 32483ca9d1fcSAarthi Thiruvengadam "len=%u\n", id, freq, wait, data_len); 32493ca9d1fcSAarthi Thiruvengadam p = (struct wmi_send_mgmt_cmd *) skb->data; 32503ca9d1fcSAarthi Thiruvengadam p->id = cpu_to_le32(id); 32513ca9d1fcSAarthi Thiruvengadam p->freq = cpu_to_le32(freq); 32523ca9d1fcSAarthi Thiruvengadam p->wait = cpu_to_le32(wait); 32533ca9d1fcSAarthi Thiruvengadam p->no_cck = cpu_to_le32(no_cck); 32543ca9d1fcSAarthi Thiruvengadam p->len = cpu_to_le16(data_len); 32553ca9d1fcSAarthi Thiruvengadam memcpy(p->data, data, data_len); 32563ca9d1fcSAarthi Thiruvengadam return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SEND_MGMT_CMDID, 32573ca9d1fcSAarthi Thiruvengadam NO_SYNC_WMIFLAG); 32583ca9d1fcSAarthi Thiruvengadam } 32593ca9d1fcSAarthi Thiruvengadam 3260334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_send_probe_response_cmd(struct wmi *wmi, u8 if_idx, u32 freq, 3261334234b5SVasanthakumar Thiagarajan const u8 *dst, const u8 *data, 3262334234b5SVasanthakumar Thiagarajan u16 data_len) 32636465ddcfSJouni Malinen { 32646465ddcfSJouni Malinen struct sk_buff *skb; 32656465ddcfSJouni Malinen struct wmi_p2p_probe_response_cmd *p; 3266bd24a50fSAarthi Thiruvengadam size_t cmd_len = sizeof(*p) + data_len; 32676465ddcfSJouni Malinen 3268bd24a50fSAarthi Thiruvengadam if (data_len == 0) 3269bd24a50fSAarthi Thiruvengadam cmd_len++; /* work around target minimum length requirement */ 3270bd24a50fSAarthi Thiruvengadam 3271bd24a50fSAarthi Thiruvengadam skb = ath6kl_wmi_get_new_buf(cmd_len); 32726465ddcfSJouni Malinen if (!skb) 32736465ddcfSJouni Malinen return -ENOMEM; 32746465ddcfSJouni Malinen 32756465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "send_probe_response_cmd: freq=%u dst=%pM " 32766465ddcfSJouni Malinen "len=%u\n", freq, dst, data_len); 32776465ddcfSJouni Malinen p = (struct wmi_p2p_probe_response_cmd *) skb->data; 32786465ddcfSJouni Malinen p->freq = cpu_to_le32(freq); 32796465ddcfSJouni Malinen memcpy(p->destination_addr, dst, ETH_ALEN); 32806465ddcfSJouni Malinen p->len = cpu_to_le16(data_len); 32816465ddcfSJouni Malinen memcpy(p->data, data, data_len); 3282334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmi, if_idx, skb, 3283334234b5SVasanthakumar Thiagarajan WMI_SEND_PROBE_RESPONSE_CMDID, 32846465ddcfSJouni Malinen NO_SYNC_WMIFLAG); 32856465ddcfSJouni Malinen } 32866465ddcfSJouni Malinen 32870ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_probe_report_req_cmd(struct wmi *wmi, u8 if_idx, bool enable) 32886465ddcfSJouni Malinen { 32896465ddcfSJouni Malinen struct sk_buff *skb; 32906465ddcfSJouni Malinen struct wmi_probe_req_report_cmd *p; 32916465ddcfSJouni Malinen 32926465ddcfSJouni Malinen skb = ath6kl_wmi_get_new_buf(sizeof(*p)); 32936465ddcfSJouni Malinen if (!skb) 32946465ddcfSJouni Malinen return -ENOMEM; 32956465ddcfSJouni Malinen 32966465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "probe_report_req_cmd: enable=%u\n", 32976465ddcfSJouni Malinen enable); 32986465ddcfSJouni Malinen p = (struct wmi_probe_req_report_cmd *) skb->data; 32996465ddcfSJouni Malinen p->enable = enable ? 1 : 0; 33000ce59445SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_PROBE_REQ_REPORT_CMDID, 33016465ddcfSJouni Malinen NO_SYNC_WMIFLAG); 33026465ddcfSJouni Malinen } 33036465ddcfSJouni Malinen 33040ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_info_req_cmd(struct wmi *wmi, u8 if_idx, u32 info_req_flags) 33056465ddcfSJouni Malinen { 33066465ddcfSJouni Malinen struct sk_buff *skb; 33076465ddcfSJouni Malinen struct wmi_get_p2p_info *p; 33086465ddcfSJouni Malinen 33096465ddcfSJouni Malinen skb = ath6kl_wmi_get_new_buf(sizeof(*p)); 33106465ddcfSJouni Malinen if (!skb) 33116465ddcfSJouni Malinen return -ENOMEM; 33126465ddcfSJouni Malinen 33136465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "info_req_cmd: flags=%x\n", 33146465ddcfSJouni Malinen info_req_flags); 33156465ddcfSJouni Malinen p = (struct wmi_get_p2p_info *) skb->data; 33166465ddcfSJouni Malinen p->info_req_flags = cpu_to_le32(info_req_flags); 33170ce59445SVasanthakumar Thiagarajan return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_GET_P2P_INFO_CMDID, 33186465ddcfSJouni Malinen NO_SYNC_WMIFLAG); 33196465ddcfSJouni Malinen } 33206465ddcfSJouni Malinen 3321334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_cancel_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx) 33226465ddcfSJouni Malinen { 33236465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "cancel_remain_on_chnl_cmd\n"); 3324334234b5SVasanthakumar Thiagarajan return ath6kl_wmi_simple_cmd(wmi, if_idx, 3325334234b5SVasanthakumar Thiagarajan WMI_CANCEL_REMAIN_ON_CHNL_CMDID); 33266465ddcfSJouni Malinen } 33276465ddcfSJouni Malinen 3328bdcd8170SKalle Valo static int ath6kl_wmi_control_rx_xtnd(struct wmi *wmi, struct sk_buff *skb) 3329bdcd8170SKalle Valo { 3330bdcd8170SKalle Valo struct wmix_cmd_hdr *cmd; 3331bdcd8170SKalle Valo u32 len; 3332bdcd8170SKalle Valo u16 id; 3333bdcd8170SKalle Valo u8 *datap; 3334bdcd8170SKalle Valo int ret = 0; 3335bdcd8170SKalle Valo 3336bdcd8170SKalle Valo if (skb->len < sizeof(struct wmix_cmd_hdr)) { 3337bdcd8170SKalle Valo ath6kl_err("bad packet 1\n"); 3338bdcd8170SKalle Valo return -EINVAL; 3339bdcd8170SKalle Valo } 3340bdcd8170SKalle Valo 3341bdcd8170SKalle Valo cmd = (struct wmix_cmd_hdr *) skb->data; 3342bdcd8170SKalle Valo id = le32_to_cpu(cmd->cmd_id); 3343bdcd8170SKalle Valo 3344bdcd8170SKalle Valo skb_pull(skb, sizeof(struct wmix_cmd_hdr)); 3345bdcd8170SKalle Valo 3346bdcd8170SKalle Valo datap = skb->data; 3347bdcd8170SKalle Valo len = skb->len; 3348bdcd8170SKalle Valo 3349bdcd8170SKalle Valo switch (id) { 3350bdcd8170SKalle Valo case WMIX_HB_CHALLENGE_RESP_EVENTID: 3351b9b6ee60SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "wmi event hb challenge resp\n"); 3352bdcd8170SKalle Valo break; 3353bdcd8170SKalle Valo case WMIX_DBGLOG_EVENTID: 3354b9b6ee60SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "wmi event dbglog len %d\n", len); 3355bdf5396bSKalle Valo ath6kl_debug_fwlog_event(wmi->parent_dev, datap, len); 3356bdcd8170SKalle Valo break; 3357bdcd8170SKalle Valo default: 3358b9b6ee60SKalle Valo ath6kl_warn("unknown cmd id 0x%x\n", id); 3359bdcd8170SKalle Valo ret = -EINVAL; 3360bdcd8170SKalle Valo break; 3361bdcd8170SKalle Valo } 3362bdcd8170SKalle Valo 3363bdcd8170SKalle Valo return ret; 3364bdcd8170SKalle Valo } 3365bdcd8170SKalle Valo 33664b28a80dSJouni Malinen static int ath6kl_wmi_roam_tbl_event_rx(struct wmi *wmi, u8 *datap, int len) 33674b28a80dSJouni Malinen { 33684b28a80dSJouni Malinen return ath6kl_debug_roam_tbl_event(wmi->parent_dev, datap, len); 33694b28a80dSJouni Malinen } 33704b28a80dSJouni Malinen 3371bdcd8170SKalle Valo /* Control Path */ 3372bdcd8170SKalle Valo int ath6kl_wmi_control_rx(struct wmi *wmi, struct sk_buff *skb) 3373bdcd8170SKalle Valo { 3374bdcd8170SKalle Valo struct wmi_cmd_hdr *cmd; 3375240d2799SVasanthakumar Thiagarajan struct ath6kl_vif *vif; 3376bdcd8170SKalle Valo u32 len; 3377bdcd8170SKalle Valo u16 id; 3378240d2799SVasanthakumar Thiagarajan u8 if_idx; 3379bdcd8170SKalle Valo u8 *datap; 3380bdcd8170SKalle Valo int ret = 0; 3381bdcd8170SKalle Valo 3382bdcd8170SKalle Valo if (WARN_ON(skb == NULL)) 3383bdcd8170SKalle Valo return -EINVAL; 3384bdcd8170SKalle Valo 3385bdcd8170SKalle Valo if (skb->len < sizeof(struct wmi_cmd_hdr)) { 3386bdcd8170SKalle Valo ath6kl_err("bad packet 1\n"); 3387bdcd8170SKalle Valo dev_kfree_skb(skb); 3388bdcd8170SKalle Valo return -EINVAL; 3389bdcd8170SKalle Valo } 3390bdcd8170SKalle Valo 3391bdcd8170SKalle Valo cmd = (struct wmi_cmd_hdr *) skb->data; 3392bdcd8170SKalle Valo id = le16_to_cpu(cmd->cmd_id); 3393240d2799SVasanthakumar Thiagarajan if_idx = le16_to_cpu(cmd->info1) & WMI_CMD_HDR_IF_ID_MASK; 3394bdcd8170SKalle Valo 3395bdcd8170SKalle Valo skb_pull(skb, sizeof(struct wmi_cmd_hdr)); 3396bdcd8170SKalle Valo 3397bdcd8170SKalle Valo datap = skb->data; 3398bdcd8170SKalle Valo len = skb->len; 3399bdcd8170SKalle Valo 3400b9b6ee60SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "wmi rx id %d len %d\n", id, len); 3401b9b6ee60SKalle Valo ath6kl_dbg_dump(ATH6KL_DBG_WMI_DUMP, NULL, "wmi rx ", 3402ef094103SKalle Valo datap, len); 3403bdcd8170SKalle Valo 3404240d2799SVasanthakumar Thiagarajan vif = ath6kl_get_vif_by_index(wmi->parent_dev, if_idx); 3405240d2799SVasanthakumar Thiagarajan if (!vif) { 3406240d2799SVasanthakumar Thiagarajan ath6kl_dbg(ATH6KL_DBG_WMI, 3407240d2799SVasanthakumar Thiagarajan "Wmi event for unavailable vif, vif_index:%d\n", 3408240d2799SVasanthakumar Thiagarajan if_idx); 3409240d2799SVasanthakumar Thiagarajan dev_kfree_skb(skb); 3410240d2799SVasanthakumar Thiagarajan return -EINVAL; 3411240d2799SVasanthakumar Thiagarajan } 3412240d2799SVasanthakumar Thiagarajan 3413bdcd8170SKalle Valo switch (id) { 3414bdcd8170SKalle Valo case WMI_GET_BITRATE_CMDID: 3415bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_BITRATE_CMDID\n"); 3416bdcd8170SKalle Valo ret = ath6kl_wmi_bitrate_reply_rx(wmi, datap, len); 3417bdcd8170SKalle Valo break; 3418bdcd8170SKalle Valo case WMI_GET_CHANNEL_LIST_CMDID: 3419bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_CHANNEL_LIST_CMDID\n"); 3420bdcd8170SKalle Valo ret = ath6kl_wmi_ch_list_reply_rx(wmi, datap, len); 3421bdcd8170SKalle Valo break; 3422bdcd8170SKalle Valo case WMI_GET_TX_PWR_CMDID: 3423bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_TX_PWR_CMDID\n"); 3424bdcd8170SKalle Valo ret = ath6kl_wmi_tx_pwr_reply_rx(wmi, datap, len); 3425bdcd8170SKalle Valo break; 3426bdcd8170SKalle Valo case WMI_READY_EVENTID: 3427bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_READY_EVENTID\n"); 3428bdcd8170SKalle Valo ret = ath6kl_wmi_ready_event_rx(wmi, datap, len); 3429bdcd8170SKalle Valo break; 3430bdcd8170SKalle Valo case WMI_CONNECT_EVENTID: 3431bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CONNECT_EVENTID\n"); 3432240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_connect_event_rx(wmi, datap, len, vif); 3433bdcd8170SKalle Valo break; 3434bdcd8170SKalle Valo case WMI_DISCONNECT_EVENTID: 3435bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DISCONNECT_EVENTID\n"); 3436240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_disconnect_event_rx(wmi, datap, len, vif); 3437bdcd8170SKalle Valo break; 3438bdcd8170SKalle Valo case WMI_PEER_NODE_EVENTID: 3439bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PEER_NODE_EVENTID\n"); 3440bdcd8170SKalle Valo ret = ath6kl_wmi_peer_node_event_rx(wmi, datap, len); 3441bdcd8170SKalle Valo break; 3442bdcd8170SKalle Valo case WMI_TKIP_MICERR_EVENTID: 3443bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TKIP_MICERR_EVENTID\n"); 3444240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_tkip_micerr_event_rx(wmi, datap, len, vif); 3445bdcd8170SKalle Valo break; 3446bdcd8170SKalle Valo case WMI_BSSINFO_EVENTID: 3447bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_BSSINFO_EVENTID\n"); 3448240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_bssinfo_event_rx(wmi, datap, len, vif); 3449bdcd8170SKalle Valo break; 3450bdcd8170SKalle Valo case WMI_REGDOMAIN_EVENTID: 3451bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REGDOMAIN_EVENTID\n"); 345206033760SVivek Natarajan ath6kl_wmi_regdomain_event(wmi, datap, len); 3453bdcd8170SKalle Valo break; 3454bdcd8170SKalle Valo case WMI_PSTREAM_TIMEOUT_EVENTID: 3455bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSTREAM_TIMEOUT_EVENTID\n"); 3456bdcd8170SKalle Valo ret = ath6kl_wmi_pstream_timeout_event_rx(wmi, datap, len); 3457bdcd8170SKalle Valo break; 3458bdcd8170SKalle Valo case WMI_NEIGHBOR_REPORT_EVENTID: 3459bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_NEIGHBOR_REPORT_EVENTID\n"); 3460240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_neighbor_report_event_rx(wmi, datap, len, 3461240d2799SVasanthakumar Thiagarajan vif); 3462bdcd8170SKalle Valo break; 3463bdcd8170SKalle Valo case WMI_SCAN_COMPLETE_EVENTID: 3464bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SCAN_COMPLETE_EVENTID\n"); 3465240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_scan_complete_rx(wmi, datap, len, vif); 3466bdcd8170SKalle Valo break; 3467bdcd8170SKalle Valo case WMI_CMDERROR_EVENTID: 3468bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CMDERROR_EVENTID\n"); 3469bdcd8170SKalle Valo ret = ath6kl_wmi_error_event_rx(wmi, datap, len); 3470bdcd8170SKalle Valo break; 3471bdcd8170SKalle Valo case WMI_REPORT_STATISTICS_EVENTID: 3472bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_STATISTICS_EVENTID\n"); 3473240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_stats_event_rx(wmi, datap, len, vif); 3474bdcd8170SKalle Valo break; 3475bdcd8170SKalle Valo case WMI_RSSI_THRESHOLD_EVENTID: 3476bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RSSI_THRESHOLD_EVENTID\n"); 3477bdcd8170SKalle Valo ret = ath6kl_wmi_rssi_threshold_event_rx(wmi, datap, len); 3478bdcd8170SKalle Valo break; 3479bdcd8170SKalle Valo case WMI_ERROR_REPORT_EVENTID: 3480bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ERROR_REPORT_EVENTID\n"); 3481bdcd8170SKalle Valo break; 3482bdcd8170SKalle Valo case WMI_OPT_RX_FRAME_EVENTID: 3483bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_OPT_RX_FRAME_EVENTID\n"); 3484f195d507SJouni Malinen /* this event has been deprecated */ 3485bdcd8170SKalle Valo break; 3486bdcd8170SKalle Valo case WMI_REPORT_ROAM_TBL_EVENTID: 3487bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_TBL_EVENTID\n"); 34884b28a80dSJouni Malinen ret = ath6kl_wmi_roam_tbl_event_rx(wmi, datap, len); 3489bdcd8170SKalle Valo break; 3490bdcd8170SKalle Valo case WMI_EXTENSION_EVENTID: 3491bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_EXTENSION_EVENTID\n"); 3492bdcd8170SKalle Valo ret = ath6kl_wmi_control_rx_xtnd(wmi, skb); 3493bdcd8170SKalle Valo break; 3494bdcd8170SKalle Valo case WMI_CAC_EVENTID: 3495bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CAC_EVENTID\n"); 3496240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_cac_event_rx(wmi, datap, len, vif); 3497bdcd8170SKalle Valo break; 3498bdcd8170SKalle Valo case WMI_CHANNEL_CHANGE_EVENTID: 3499bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CHANNEL_CHANGE_EVENTID\n"); 3500bdcd8170SKalle Valo break; 3501bdcd8170SKalle Valo case WMI_REPORT_ROAM_DATA_EVENTID: 3502bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_DATA_EVENTID\n"); 3503bdcd8170SKalle Valo break; 3504003353b0SKalle Valo case WMI_TEST_EVENTID: 3505003353b0SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TEST_EVENTID\n"); 35064f34daceSThomas Pedersen ret = ath6kl_wmi_test_rx(wmi, datap, len); 3507003353b0SKalle Valo break; 3508bdcd8170SKalle Valo case WMI_GET_FIXRATES_CMDID: 3509bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_FIXRATES_CMDID\n"); 3510bdcd8170SKalle Valo ret = ath6kl_wmi_ratemask_reply_rx(wmi, datap, len); 3511bdcd8170SKalle Valo break; 3512bdcd8170SKalle Valo case WMI_TX_RETRY_ERR_EVENTID: 3513bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_RETRY_ERR_EVENTID\n"); 3514bdcd8170SKalle Valo break; 3515bdcd8170SKalle Valo case WMI_SNR_THRESHOLD_EVENTID: 3516bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SNR_THRESHOLD_EVENTID\n"); 3517bdcd8170SKalle Valo ret = ath6kl_wmi_snr_threshold_event_rx(wmi, datap, len); 3518bdcd8170SKalle Valo break; 3519bdcd8170SKalle Valo case WMI_LQ_THRESHOLD_EVENTID: 3520bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_LQ_THRESHOLD_EVENTID\n"); 3521bdcd8170SKalle Valo break; 3522bdcd8170SKalle Valo case WMI_APLIST_EVENTID: 3523bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_APLIST_EVENTID\n"); 3524bdcd8170SKalle Valo ret = ath6kl_wmi_aplist_event_rx(wmi, datap, len); 3525bdcd8170SKalle Valo break; 3526bdcd8170SKalle Valo case WMI_GET_KEEPALIVE_CMDID: 3527bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_KEEPALIVE_CMDID\n"); 3528bdcd8170SKalle Valo ret = ath6kl_wmi_keepalive_reply_rx(wmi, datap, len); 3529bdcd8170SKalle Valo break; 3530bdcd8170SKalle Valo case WMI_GET_WOW_LIST_EVENTID: 3531bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_WOW_LIST_EVENTID\n"); 3532bdcd8170SKalle Valo break; 3533bdcd8170SKalle Valo case WMI_GET_PMKID_LIST_EVENTID: 3534bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_PMKID_LIST_EVENTID\n"); 3535bdcd8170SKalle Valo ret = ath6kl_wmi_get_pmkid_list_event_rx(wmi, datap, len); 3536bdcd8170SKalle Valo break; 3537bdcd8170SKalle Valo case WMI_PSPOLL_EVENTID: 3538bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSPOLL_EVENTID\n"); 3539240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_pspoll_event_rx(wmi, datap, len, vif); 3540bdcd8170SKalle Valo break; 3541bdcd8170SKalle Valo case WMI_DTIMEXPIRY_EVENTID: 3542bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DTIMEXPIRY_EVENTID\n"); 3543240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_dtimexpiry_event_rx(wmi, datap, len, vif); 3544bdcd8170SKalle Valo break; 3545bdcd8170SKalle Valo case WMI_SET_PARAMS_REPLY_EVENTID: 3546bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SET_PARAMS_REPLY_EVENTID\n"); 3547bdcd8170SKalle Valo break; 3548bdcd8170SKalle Valo case WMI_ADDBA_REQ_EVENTID: 3549bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_REQ_EVENTID\n"); 3550240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_addba_req_event_rx(wmi, datap, len, vif); 3551bdcd8170SKalle Valo break; 3552bdcd8170SKalle Valo case WMI_ADDBA_RESP_EVENTID: 3553bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_RESP_EVENTID\n"); 3554bdcd8170SKalle Valo break; 3555bdcd8170SKalle Valo case WMI_DELBA_REQ_EVENTID: 3556bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DELBA_REQ_EVENTID\n"); 3557240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_delba_req_event_rx(wmi, datap, len, vif); 3558bdcd8170SKalle Valo break; 3559bdcd8170SKalle Valo case WMI_REPORT_BTCOEX_CONFIG_EVENTID: 3560bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 3561bdcd8170SKalle Valo "WMI_REPORT_BTCOEX_CONFIG_EVENTID\n"); 3562bdcd8170SKalle Valo break; 3563bdcd8170SKalle Valo case WMI_REPORT_BTCOEX_STATS_EVENTID: 3564bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, 3565bdcd8170SKalle Valo "WMI_REPORT_BTCOEX_STATS_EVENTID\n"); 3566bdcd8170SKalle Valo break; 3567bdcd8170SKalle Valo case WMI_TX_COMPLETE_EVENTID: 3568bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_COMPLETE_EVENTID\n"); 3569bdcd8170SKalle Valo ret = ath6kl_wmi_tx_complete_event_rx(datap, len); 3570bdcd8170SKalle Valo break; 3571*081c7a84SRaja Mani case WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID: 3572*081c7a84SRaja Mani ath6kl_dbg(ATH6KL_DBG_WMI, 3573*081c7a84SRaja Mani "WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID"); 3574*081c7a84SRaja Mani ret = ath6kl_wmi_host_sleep_mode_cmd_prcd_evt_rx(wmi, vif); 3575*081c7a84SRaja Mani break; 35766465ddcfSJouni Malinen case WMI_REMAIN_ON_CHNL_EVENTID: 35776465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REMAIN_ON_CHNL_EVENTID\n"); 3578240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_remain_on_chnl_event_rx(wmi, datap, len, vif); 35796465ddcfSJouni Malinen break; 35806465ddcfSJouni Malinen case WMI_CANCEL_REMAIN_ON_CHNL_EVENTID: 35816465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, 35826465ddcfSJouni Malinen "WMI_CANCEL_REMAIN_ON_CHNL_EVENTID\n"); 3583f9e5f05cSJouni Malinen ret = ath6kl_wmi_cancel_remain_on_chnl_event_rx(wmi, datap, 3584240d2799SVasanthakumar Thiagarajan len, vif); 35856465ddcfSJouni Malinen break; 35866465ddcfSJouni Malinen case WMI_TX_STATUS_EVENTID: 35876465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_STATUS_EVENTID\n"); 3588240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_tx_status_event_rx(wmi, datap, len, vif); 35896465ddcfSJouni Malinen break; 35906465ddcfSJouni Malinen case WMI_RX_PROBE_REQ_EVENTID: 35916465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RX_PROBE_REQ_EVENTID\n"); 3592240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_rx_probe_req_event_rx(wmi, datap, len, vif); 35936465ddcfSJouni Malinen break; 35946465ddcfSJouni Malinen case WMI_P2P_CAPABILITIES_EVENTID: 35956465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_P2P_CAPABILITIES_EVENTID\n"); 35966465ddcfSJouni Malinen ret = ath6kl_wmi_p2p_capabilities_event_rx(datap, len); 35976465ddcfSJouni Malinen break; 35986465ddcfSJouni Malinen case WMI_RX_ACTION_EVENTID: 35996465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RX_ACTION_EVENTID\n"); 3600240d2799SVasanthakumar Thiagarajan ret = ath6kl_wmi_rx_action_event_rx(wmi, datap, len, vif); 36016465ddcfSJouni Malinen break; 36026465ddcfSJouni Malinen case WMI_P2P_INFO_EVENTID: 36036465ddcfSJouni Malinen ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_P2P_INFO_EVENTID\n"); 36046465ddcfSJouni Malinen ret = ath6kl_wmi_p2p_info_event_rx(datap, len); 36056465ddcfSJouni Malinen break; 3606bdcd8170SKalle Valo default: 3607bdcd8170SKalle Valo ath6kl_dbg(ATH6KL_DBG_WMI, "unknown cmd id 0x%x\n", id); 3608bdcd8170SKalle Valo ret = -EINVAL; 3609bdcd8170SKalle Valo break; 3610bdcd8170SKalle Valo } 3611bdcd8170SKalle Valo 3612bdcd8170SKalle Valo dev_kfree_skb(skb); 3613bdcd8170SKalle Valo 3614bdcd8170SKalle Valo return ret; 3615bdcd8170SKalle Valo } 3616bdcd8170SKalle Valo 3617c89c591dSKalle Valo void ath6kl_wmi_reset(struct wmi *wmi) 3618bdcd8170SKalle Valo { 3619bdcd8170SKalle Valo spin_lock_bh(&wmi->lock); 3620bdcd8170SKalle Valo 3621bdcd8170SKalle Valo wmi->fat_pipe_exist = 0; 3622bdcd8170SKalle Valo memset(wmi->stream_exist_for_ac, 0, sizeof(wmi->stream_exist_for_ac)); 3623bdcd8170SKalle Valo 3624bdcd8170SKalle Valo spin_unlock_bh(&wmi->lock); 3625bdcd8170SKalle Valo } 3626bdcd8170SKalle Valo 36272865785eSVasanthakumar Thiagarajan void *ath6kl_wmi_init(struct ath6kl *dev) 3628bdcd8170SKalle Valo { 3629bdcd8170SKalle Valo struct wmi *wmi; 3630bdcd8170SKalle Valo 3631bdcd8170SKalle Valo wmi = kzalloc(sizeof(struct wmi), GFP_KERNEL); 3632bdcd8170SKalle Valo if (!wmi) 3633bdcd8170SKalle Valo return NULL; 3634bdcd8170SKalle Valo 3635bdcd8170SKalle Valo spin_lock_init(&wmi->lock); 3636bdcd8170SKalle Valo 3637bdcd8170SKalle Valo wmi->parent_dev = dev; 3638bdcd8170SKalle Valo 3639bdcd8170SKalle Valo wmi->pwr_mode = REC_POWER; 3640bdcd8170SKalle Valo 3641c89c591dSKalle Valo ath6kl_wmi_reset(wmi); 3642bdcd8170SKalle Valo 3643bdcd8170SKalle Valo return wmi; 3644bdcd8170SKalle Valo } 3645bdcd8170SKalle Valo 3646bdcd8170SKalle Valo void ath6kl_wmi_shutdown(struct wmi *wmi) 3647bdcd8170SKalle Valo { 3648bdcd8170SKalle Valo if (!wmi) 3649bdcd8170SKalle Valo return; 3650bdcd8170SKalle Valo 3651a0df5db1SJouni Malinen kfree(wmi->last_mgmt_tx_frame); 3652bdcd8170SKalle Valo kfree(wmi); 3653bdcd8170SKalle Valo } 3654