xref: /openbmc/linux/drivers/net/wireless/ath/ath6kl/wmi.c (revision e5348a1e)
1bdcd8170SKalle Valo /*
2bdcd8170SKalle Valo  * Copyright (c) 2004-2011 Atheros Communications Inc.
31b2df407SVasanthakumar Thiagarajan  * Copyright (c) 2011-2012 Qualcomm Atheros, Inc.
4bdcd8170SKalle Valo  *
5bdcd8170SKalle Valo  * Permission to use, copy, modify, and/or distribute this software for any
6bdcd8170SKalle Valo  * purpose with or without fee is hereby granted, provided that the above
7bdcd8170SKalle Valo  * copyright notice and this permission notice appear in all copies.
8bdcd8170SKalle Valo  *
9bdcd8170SKalle Valo  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10bdcd8170SKalle Valo  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11bdcd8170SKalle Valo  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12bdcd8170SKalle Valo  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13bdcd8170SKalle Valo  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14bdcd8170SKalle Valo  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15bdcd8170SKalle Valo  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16bdcd8170SKalle Valo  */
17bdcd8170SKalle Valo 
18bdcd8170SKalle Valo #include <linux/ip.h>
19bdcd8170SKalle Valo #include "core.h"
20bdcd8170SKalle Valo #include "debug.h"
21003353b0SKalle Valo #include "testmode.h"
2206033760SVivek Natarajan #include "../regd.h"
2306033760SVivek Natarajan #include "../regd_common.h"
24bdcd8170SKalle Valo 
25240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_sync_point(struct wmi *wmi, u8 if_idx);
26bdcd8170SKalle Valo 
27bdcd8170SKalle Valo static const s32 wmi_rate_tbl[][2] = {
28bdcd8170SKalle Valo 	/* {W/O SGI, with SGI} */
29bdcd8170SKalle Valo 	{1000, 1000},
30bdcd8170SKalle Valo 	{2000, 2000},
31bdcd8170SKalle Valo 	{5500, 5500},
32bdcd8170SKalle Valo 	{11000, 11000},
33bdcd8170SKalle Valo 	{6000, 6000},
34bdcd8170SKalle Valo 	{9000, 9000},
35bdcd8170SKalle Valo 	{12000, 12000},
36bdcd8170SKalle Valo 	{18000, 18000},
37bdcd8170SKalle Valo 	{24000, 24000},
38bdcd8170SKalle Valo 	{36000, 36000},
39bdcd8170SKalle Valo 	{48000, 48000},
40bdcd8170SKalle Valo 	{54000, 54000},
41bdcd8170SKalle Valo 	{6500, 7200},
42bdcd8170SKalle Valo 	{13000, 14400},
43bdcd8170SKalle Valo 	{19500, 21700},
44bdcd8170SKalle Valo 	{26000, 28900},
45bdcd8170SKalle Valo 	{39000, 43300},
46bdcd8170SKalle Valo 	{52000, 57800},
47bdcd8170SKalle Valo 	{58500, 65000},
48bdcd8170SKalle Valo 	{65000, 72200},
49bdcd8170SKalle Valo 	{13500, 15000},
50bdcd8170SKalle Valo 	{27000, 30000},
51bdcd8170SKalle Valo 	{40500, 45000},
52bdcd8170SKalle Valo 	{54000, 60000},
53bdcd8170SKalle Valo 	{81000, 90000},
54bdcd8170SKalle Valo 	{108000, 120000},
55bdcd8170SKalle Valo 	{121500, 135000},
56bdcd8170SKalle Valo 	{135000, 150000},
57bdcd8170SKalle Valo 	{0, 0}
58bdcd8170SKalle Valo };
59bdcd8170SKalle Valo 
60bdcd8170SKalle Valo /* 802.1d to AC mapping. Refer pg 57 of WMM-test-plan-v1.2 */
61bdcd8170SKalle Valo static const u8 up_to_ac[] = {
62bdcd8170SKalle Valo 	WMM_AC_BE,
63bdcd8170SKalle Valo 	WMM_AC_BK,
64bdcd8170SKalle Valo 	WMM_AC_BK,
65bdcd8170SKalle Valo 	WMM_AC_BE,
66bdcd8170SKalle Valo 	WMM_AC_VI,
67bdcd8170SKalle Valo 	WMM_AC_VI,
68bdcd8170SKalle Valo 	WMM_AC_VO,
69bdcd8170SKalle Valo 	WMM_AC_VO,
70bdcd8170SKalle Valo };
71bdcd8170SKalle Valo 
72bdcd8170SKalle Valo void ath6kl_wmi_set_control_ep(struct wmi *wmi, enum htc_endpoint_id ep_id)
73bdcd8170SKalle Valo {
74bdcd8170SKalle Valo 	if (WARN_ON(ep_id == ENDPOINT_UNUSED || ep_id >= ENDPOINT_MAX))
75bdcd8170SKalle Valo 		return;
76bdcd8170SKalle Valo 
77bdcd8170SKalle Valo 	wmi->ep_id = ep_id;
78bdcd8170SKalle Valo }
79bdcd8170SKalle Valo 
80bdcd8170SKalle Valo enum htc_endpoint_id ath6kl_wmi_get_control_ep(struct wmi *wmi)
81bdcd8170SKalle Valo {
82bdcd8170SKalle Valo 	return wmi->ep_id;
83bdcd8170SKalle Valo }
84bdcd8170SKalle Valo 
856765d0aaSVasanthakumar Thiagarajan struct ath6kl_vif *ath6kl_get_vif_by_index(struct ath6kl *ar, u8 if_idx)
86240d2799SVasanthakumar Thiagarajan {
87990bd915SVasanthakumar Thiagarajan 	struct ath6kl_vif *vif, *found = NULL;
88990bd915SVasanthakumar Thiagarajan 
8971f96ee6SKalle Valo 	if (WARN_ON(if_idx > (ar->vif_max - 1)))
90240d2799SVasanthakumar Thiagarajan 		return NULL;
91240d2799SVasanthakumar Thiagarajan 
92990bd915SVasanthakumar Thiagarajan 	/* FIXME: Locking */
9311f6e40dSVasanthakumar Thiagarajan 	spin_lock_bh(&ar->list_lock);
94990bd915SVasanthakumar Thiagarajan 	list_for_each_entry(vif, &ar->vif_list, list) {
95990bd915SVasanthakumar Thiagarajan 		if (vif->fw_vif_idx == if_idx) {
96990bd915SVasanthakumar Thiagarajan 			found = vif;
97990bd915SVasanthakumar Thiagarajan 			break;
98990bd915SVasanthakumar Thiagarajan 		}
99990bd915SVasanthakumar Thiagarajan 	}
10011f6e40dSVasanthakumar Thiagarajan 	spin_unlock_bh(&ar->list_lock);
101990bd915SVasanthakumar Thiagarajan 
102990bd915SVasanthakumar Thiagarajan 	return found;
103240d2799SVasanthakumar Thiagarajan }
104240d2799SVasanthakumar Thiagarajan 
105bdcd8170SKalle Valo /*  Performs DIX to 802.3 encapsulation for transmit packets.
106bdcd8170SKalle Valo  *  Assumes the entire DIX header is contigous and that there is
107bdcd8170SKalle Valo  *  enough room in the buffer for a 802.3 mac header and LLC+SNAP headers.
108bdcd8170SKalle Valo  */
109bdcd8170SKalle Valo int ath6kl_wmi_dix_2_dot3(struct wmi *wmi, struct sk_buff *skb)
110bdcd8170SKalle Valo {
111bdcd8170SKalle Valo 	struct ath6kl_llc_snap_hdr *llc_hdr;
112bdcd8170SKalle Valo 	struct ethhdr *eth_hdr;
113bdcd8170SKalle Valo 	size_t new_len;
114bdcd8170SKalle Valo 	__be16 type;
115bdcd8170SKalle Valo 	u8 *datap;
116bdcd8170SKalle Valo 	u16 size;
117bdcd8170SKalle Valo 
118bdcd8170SKalle Valo 	if (WARN_ON(skb == NULL))
119bdcd8170SKalle Valo 		return -EINVAL;
120bdcd8170SKalle Valo 
121bdcd8170SKalle Valo 	size = sizeof(struct ath6kl_llc_snap_hdr) + sizeof(struct wmi_data_hdr);
122bdcd8170SKalle Valo 	if (skb_headroom(skb) < size)
123bdcd8170SKalle Valo 		return -ENOMEM;
124bdcd8170SKalle Valo 
125bdcd8170SKalle Valo 	eth_hdr = (struct ethhdr *) skb->data;
126bdcd8170SKalle Valo 	type = eth_hdr->h_proto;
127bdcd8170SKalle Valo 
128bdcd8170SKalle Valo 	if (!is_ethertype(be16_to_cpu(type))) {
129bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI,
130bdcd8170SKalle Valo 			"%s: pkt is already in 802.3 format\n", __func__);
131bdcd8170SKalle Valo 		return 0;
132bdcd8170SKalle Valo 	}
133bdcd8170SKalle Valo 
134bdcd8170SKalle Valo 	new_len = skb->len - sizeof(*eth_hdr) + sizeof(*llc_hdr);
135bdcd8170SKalle Valo 
136bdcd8170SKalle Valo 	skb_push(skb, sizeof(struct ath6kl_llc_snap_hdr));
137bdcd8170SKalle Valo 	datap = skb->data;
138bdcd8170SKalle Valo 
139bdcd8170SKalle Valo 	eth_hdr->h_proto = cpu_to_be16(new_len);
140bdcd8170SKalle Valo 
141bdcd8170SKalle Valo 	memcpy(datap, eth_hdr, sizeof(*eth_hdr));
142bdcd8170SKalle Valo 
143bdcd8170SKalle Valo 	llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap + sizeof(*eth_hdr));
144bdcd8170SKalle Valo 	llc_hdr->dsap = 0xAA;
145bdcd8170SKalle Valo 	llc_hdr->ssap = 0xAA;
146bdcd8170SKalle Valo 	llc_hdr->cntl = 0x03;
147bdcd8170SKalle Valo 	llc_hdr->org_code[0] = 0x0;
148bdcd8170SKalle Valo 	llc_hdr->org_code[1] = 0x0;
149bdcd8170SKalle Valo 	llc_hdr->org_code[2] = 0x0;
150bdcd8170SKalle Valo 	llc_hdr->eth_type = type;
151bdcd8170SKalle Valo 
152bdcd8170SKalle Valo 	return 0;
153bdcd8170SKalle Valo }
154bdcd8170SKalle Valo 
155bdcd8170SKalle Valo static int ath6kl_wmi_meta_add(struct wmi *wmi, struct sk_buff *skb,
156bdcd8170SKalle Valo 			       u8 *version, void *tx_meta_info)
157bdcd8170SKalle Valo {
158bdcd8170SKalle Valo 	struct wmi_tx_meta_v1 *v1;
159bdcd8170SKalle Valo 	struct wmi_tx_meta_v2 *v2;
160bdcd8170SKalle Valo 
161bdcd8170SKalle Valo 	if (WARN_ON(skb == NULL || version == NULL))
162bdcd8170SKalle Valo 		return -EINVAL;
163bdcd8170SKalle Valo 
164bdcd8170SKalle Valo 	switch (*version) {
165bdcd8170SKalle Valo 	case WMI_META_VERSION_1:
166bdcd8170SKalle Valo 		skb_push(skb, WMI_MAX_TX_META_SZ);
167bdcd8170SKalle Valo 		v1 = (struct wmi_tx_meta_v1 *) skb->data;
168bdcd8170SKalle Valo 		v1->pkt_id = 0;
169bdcd8170SKalle Valo 		v1->rate_plcy_id = 0;
170bdcd8170SKalle Valo 		*version = WMI_META_VERSION_1;
171bdcd8170SKalle Valo 		break;
172bdcd8170SKalle Valo 	case WMI_META_VERSION_2:
173bdcd8170SKalle Valo 		skb_push(skb, WMI_MAX_TX_META_SZ);
174bdcd8170SKalle Valo 		v2 = (struct wmi_tx_meta_v2 *) skb->data;
175bdcd8170SKalle Valo 		memcpy(v2, (struct wmi_tx_meta_v2 *) tx_meta_info,
176bdcd8170SKalle Valo 		       sizeof(struct wmi_tx_meta_v2));
177bdcd8170SKalle Valo 		break;
178bdcd8170SKalle Valo 	}
179bdcd8170SKalle Valo 
180bdcd8170SKalle Valo 	return 0;
181bdcd8170SKalle Valo }
182bdcd8170SKalle Valo 
183bdcd8170SKalle Valo int ath6kl_wmi_data_hdr_add(struct wmi *wmi, struct sk_buff *skb,
184c1762a3fSThirumalai Pachamuthu 			    u8 msg_type, u32 flags,
185bdcd8170SKalle Valo 			    enum wmi_data_hdr_data_type data_type,
1866765d0aaSVasanthakumar Thiagarajan 			    u8 meta_ver, void *tx_meta_info, u8 if_idx)
187bdcd8170SKalle Valo {
188bdcd8170SKalle Valo 	struct wmi_data_hdr *data_hdr;
189bdcd8170SKalle Valo 	int ret;
190bdcd8170SKalle Valo 
19171f96ee6SKalle Valo 	if (WARN_ON(skb == NULL || (if_idx > wmi->parent_dev->vif_max - 1)))
192bdcd8170SKalle Valo 		return -EINVAL;
193bdcd8170SKalle Valo 
1943ce6ff50SVasanthakumar Thiagarajan 	if (tx_meta_info) {
195bdcd8170SKalle Valo 		ret = ath6kl_wmi_meta_add(wmi, skb, &meta_ver, tx_meta_info);
196bdcd8170SKalle Valo 		if (ret)
197bdcd8170SKalle Valo 			return ret;
1983ce6ff50SVasanthakumar Thiagarajan 	}
199bdcd8170SKalle Valo 
200bdcd8170SKalle Valo 	skb_push(skb, sizeof(struct wmi_data_hdr));
201bdcd8170SKalle Valo 
202bdcd8170SKalle Valo 	data_hdr = (struct wmi_data_hdr *)skb->data;
203bdcd8170SKalle Valo 	memset(data_hdr, 0, sizeof(struct wmi_data_hdr));
204bdcd8170SKalle Valo 
205bdcd8170SKalle Valo 	data_hdr->info = msg_type << WMI_DATA_HDR_MSG_TYPE_SHIFT;
206bdcd8170SKalle Valo 	data_hdr->info |= data_type << WMI_DATA_HDR_DATA_TYPE_SHIFT;
207bdcd8170SKalle Valo 
208c1762a3fSThirumalai Pachamuthu 	if (flags & WMI_DATA_HDR_FLAGS_MORE)
209c1762a3fSThirumalai Pachamuthu 		data_hdr->info |= WMI_DATA_HDR_MORE;
210bdcd8170SKalle Valo 
211c1762a3fSThirumalai Pachamuthu 	if (flags & WMI_DATA_HDR_FLAGS_EOSP)
212c1762a3fSThirumalai Pachamuthu 		data_hdr->info3 |= cpu_to_le16(WMI_DATA_HDR_EOSP);
213c1762a3fSThirumalai Pachamuthu 
214c1762a3fSThirumalai Pachamuthu 	data_hdr->info2 |= cpu_to_le16(meta_ver << WMI_DATA_HDR_META_SHIFT);
215c1762a3fSThirumalai Pachamuthu 	data_hdr->info3 |= cpu_to_le16(if_idx & WMI_DATA_HDR_IF_IDX_MASK);
216bdcd8170SKalle Valo 
217bdcd8170SKalle Valo 	return 0;
218bdcd8170SKalle Valo }
219bdcd8170SKalle Valo 
220c1762a3fSThirumalai Pachamuthu u8 ath6kl_wmi_determine_user_priority(u8 *pkt, u32 layer2_pri)
221bdcd8170SKalle Valo {
222bdcd8170SKalle Valo 	struct iphdr *ip_hdr = (struct iphdr *) pkt;
223bdcd8170SKalle Valo 	u8 ip_pri;
224bdcd8170SKalle Valo 
225bdcd8170SKalle Valo 	/*
226bdcd8170SKalle Valo 	 * Determine IPTOS priority
227bdcd8170SKalle Valo 	 *
228bdcd8170SKalle Valo 	 * IP-TOS - 8bits
229bdcd8170SKalle Valo 	 *          : DSCP(6-bits) ECN(2-bits)
230bdcd8170SKalle Valo 	 *          : DSCP - P2 P1 P0 X X X
231bdcd8170SKalle Valo 	 * where (P2 P1 P0) form 802.1D
232bdcd8170SKalle Valo 	 */
233bdcd8170SKalle Valo 	ip_pri = ip_hdr->tos >> 5;
234bdcd8170SKalle Valo 	ip_pri &= 0x7;
235bdcd8170SKalle Valo 
236bdcd8170SKalle Valo 	if ((layer2_pri & 0x7) > ip_pri)
237bdcd8170SKalle Valo 		return (u8) layer2_pri & 0x7;
238bdcd8170SKalle Valo 	else
239bdcd8170SKalle Valo 		return ip_pri;
240bdcd8170SKalle Valo }
241bdcd8170SKalle Valo 
242c1762a3fSThirumalai Pachamuthu u8 ath6kl_wmi_get_traffic_class(u8 user_priority)
243c1762a3fSThirumalai Pachamuthu {
244c1762a3fSThirumalai Pachamuthu 	return  up_to_ac[user_priority & 0x7];
245c1762a3fSThirumalai Pachamuthu }
246c1762a3fSThirumalai Pachamuthu 
247240d2799SVasanthakumar Thiagarajan int ath6kl_wmi_implicit_create_pstream(struct wmi *wmi, u8 if_idx,
248240d2799SVasanthakumar Thiagarajan 				       struct sk_buff *skb,
249bdcd8170SKalle Valo 				       u32 layer2_priority, bool wmm_enabled,
250bdcd8170SKalle Valo 				       u8 *ac)
251bdcd8170SKalle Valo {
252bdcd8170SKalle Valo 	struct wmi_data_hdr *data_hdr;
253bdcd8170SKalle Valo 	struct ath6kl_llc_snap_hdr *llc_hdr;
254bdcd8170SKalle Valo 	struct wmi_create_pstream_cmd cmd;
255bdcd8170SKalle Valo 	u32 meta_size, hdr_size;
256bdcd8170SKalle Valo 	u16 ip_type = IP_ETHERTYPE;
257bdcd8170SKalle Valo 	u8 stream_exist, usr_pri;
258bdcd8170SKalle Valo 	u8 traffic_class = WMM_AC_BE;
259bdcd8170SKalle Valo 	u8 *datap;
260bdcd8170SKalle Valo 
261bdcd8170SKalle Valo 	if (WARN_ON(skb == NULL))
262bdcd8170SKalle Valo 		return -EINVAL;
263bdcd8170SKalle Valo 
264bdcd8170SKalle Valo 	datap = skb->data;
265bdcd8170SKalle Valo 	data_hdr = (struct wmi_data_hdr *) datap;
266bdcd8170SKalle Valo 
267bdcd8170SKalle Valo 	meta_size = ((le16_to_cpu(data_hdr->info2) >> WMI_DATA_HDR_META_SHIFT) &
268bdcd8170SKalle Valo 		     WMI_DATA_HDR_META_MASK) ? WMI_MAX_TX_META_SZ : 0;
269bdcd8170SKalle Valo 
270bdcd8170SKalle Valo 	if (!wmm_enabled) {
271bdcd8170SKalle Valo 		/* If WMM is disabled all traffic goes as BE traffic */
272bdcd8170SKalle Valo 		usr_pri = 0;
273bdcd8170SKalle Valo 	} else {
274bdcd8170SKalle Valo 		hdr_size = sizeof(struct ethhdr);
275bdcd8170SKalle Valo 
276bdcd8170SKalle Valo 		llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap +
277bdcd8170SKalle Valo 							 sizeof(struct
278bdcd8170SKalle Valo 								wmi_data_hdr) +
279bdcd8170SKalle Valo 							 meta_size + hdr_size);
280bdcd8170SKalle Valo 
281bdcd8170SKalle Valo 		if (llc_hdr->eth_type == htons(ip_type)) {
282bdcd8170SKalle Valo 			/*
283bdcd8170SKalle Valo 			 * Extract the endpoint info from the TOS field
284bdcd8170SKalle Valo 			 * in the IP header.
285bdcd8170SKalle Valo 			 */
286bdcd8170SKalle Valo 			usr_pri =
287bdcd8170SKalle Valo 			   ath6kl_wmi_determine_user_priority(((u8 *) llc_hdr) +
288bdcd8170SKalle Valo 					sizeof(struct ath6kl_llc_snap_hdr),
289bdcd8170SKalle Valo 					layer2_priority);
290bdcd8170SKalle Valo 		} else
291bdcd8170SKalle Valo 			usr_pri = layer2_priority & 0x7;
292bdcd8170SKalle Valo 	}
293bdcd8170SKalle Valo 
294a7f0c58bSKalle Valo 	/*
295a7f0c58bSKalle Valo 	 * workaround for WMM S5
296a7f0c58bSKalle Valo 	 *
297a7f0c58bSKalle Valo 	 * FIXME: wmi->traffic_class is always 100 so this test doesn't
298a7f0c58bSKalle Valo 	 * make sense
299a7f0c58bSKalle Valo 	 */
300bdcd8170SKalle Valo 	if ((wmi->traffic_class == WMM_AC_VI) &&
301bdcd8170SKalle Valo 	    ((usr_pri == 5) || (usr_pri == 4)))
302bdcd8170SKalle Valo 		usr_pri = 1;
303bdcd8170SKalle Valo 
304bdcd8170SKalle Valo 	/* Convert user priority to traffic class */
305bdcd8170SKalle Valo 	traffic_class = up_to_ac[usr_pri & 0x7];
306bdcd8170SKalle Valo 
307bdcd8170SKalle Valo 	wmi_data_hdr_set_up(data_hdr, usr_pri);
308bdcd8170SKalle Valo 
309bdcd8170SKalle Valo 	spin_lock_bh(&wmi->lock);
310bdcd8170SKalle Valo 	stream_exist = wmi->fat_pipe_exist;
311bdcd8170SKalle Valo 	spin_unlock_bh(&wmi->lock);
312bdcd8170SKalle Valo 
313bdcd8170SKalle Valo 	if (!(stream_exist & (1 << traffic_class))) {
314bdcd8170SKalle Valo 		memset(&cmd, 0, sizeof(cmd));
315bdcd8170SKalle Valo 		cmd.traffic_class = traffic_class;
316bdcd8170SKalle Valo 		cmd.user_pri = usr_pri;
317bdcd8170SKalle Valo 		cmd.inactivity_int =
318bdcd8170SKalle Valo 			cpu_to_le32(WMI_IMPLICIT_PSTREAM_INACTIVITY_INT);
319bdcd8170SKalle Valo 		/* Implicit streams are created with TSID 0xFF */
320bdcd8170SKalle Valo 		cmd.tsid = WMI_IMPLICIT_PSTREAM;
321240d2799SVasanthakumar Thiagarajan 		ath6kl_wmi_create_pstream_cmd(wmi, if_idx, &cmd);
322bdcd8170SKalle Valo 	}
323bdcd8170SKalle Valo 
324bdcd8170SKalle Valo 	*ac = traffic_class;
325bdcd8170SKalle Valo 
326bdcd8170SKalle Valo 	return 0;
327bdcd8170SKalle Valo }
328bdcd8170SKalle Valo 
329bdcd8170SKalle Valo int ath6kl_wmi_dot11_hdr_remove(struct wmi *wmi, struct sk_buff *skb)
330bdcd8170SKalle Valo {
331bdcd8170SKalle Valo 	struct ieee80211_hdr_3addr *pwh, wh;
332bdcd8170SKalle Valo 	struct ath6kl_llc_snap_hdr *llc_hdr;
333bdcd8170SKalle Valo 	struct ethhdr eth_hdr;
334bdcd8170SKalle Valo 	u32 hdr_size;
335bdcd8170SKalle Valo 	u8 *datap;
336bdcd8170SKalle Valo 	__le16 sub_type;
337bdcd8170SKalle Valo 
338bdcd8170SKalle Valo 	if (WARN_ON(skb == NULL))
339bdcd8170SKalle Valo 		return -EINVAL;
340bdcd8170SKalle Valo 
341bdcd8170SKalle Valo 	datap = skb->data;
342bdcd8170SKalle Valo 	pwh = (struct ieee80211_hdr_3addr *) datap;
343bdcd8170SKalle Valo 
344bdcd8170SKalle Valo 	sub_type = pwh->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE);
345bdcd8170SKalle Valo 
346bdcd8170SKalle Valo 	memcpy((u8 *) &wh, datap, sizeof(struct ieee80211_hdr_3addr));
347bdcd8170SKalle Valo 
348bdcd8170SKalle Valo 	/* Strip off the 802.11 header */
349bdcd8170SKalle Valo 	if (sub_type == cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
350bdcd8170SKalle Valo 		hdr_size = roundup(sizeof(struct ieee80211_qos_hdr),
351bdcd8170SKalle Valo 				   sizeof(u32));
352bdcd8170SKalle Valo 		skb_pull(skb, hdr_size);
353bdcd8170SKalle Valo 	} else if (sub_type == cpu_to_le16(IEEE80211_STYPE_DATA))
354bdcd8170SKalle Valo 		skb_pull(skb, sizeof(struct ieee80211_hdr_3addr));
355bdcd8170SKalle Valo 
356bdcd8170SKalle Valo 	datap = skb->data;
357bdcd8170SKalle Valo 	llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap);
358bdcd8170SKalle Valo 
359c8790cbaSRaja Mani 	memset(&eth_hdr, 0, sizeof(eth_hdr));
360bdcd8170SKalle Valo 	eth_hdr.h_proto = llc_hdr->eth_type;
361bdcd8170SKalle Valo 
362bdcd8170SKalle Valo 	switch ((le16_to_cpu(wh.frame_control)) &
363bdcd8170SKalle Valo 		(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
364bdcd8170SKalle Valo 	case 0:
365bdcd8170SKalle Valo 		memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN);
366bdcd8170SKalle Valo 		memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN);
367bdcd8170SKalle Valo 		break;
368bdcd8170SKalle Valo 	case IEEE80211_FCTL_TODS:
369bdcd8170SKalle Valo 		memcpy(eth_hdr.h_dest, wh.addr3, ETH_ALEN);
370bdcd8170SKalle Valo 		memcpy(eth_hdr.h_source, wh.addr2, ETH_ALEN);
371bdcd8170SKalle Valo 		break;
372bdcd8170SKalle Valo 	case IEEE80211_FCTL_FROMDS:
373bdcd8170SKalle Valo 		memcpy(eth_hdr.h_dest, wh.addr1, ETH_ALEN);
374bdcd8170SKalle Valo 		memcpy(eth_hdr.h_source, wh.addr3, ETH_ALEN);
375bdcd8170SKalle Valo 		break;
376bdcd8170SKalle Valo 	case IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS:
377bdcd8170SKalle Valo 		break;
378bdcd8170SKalle Valo 	}
379bdcd8170SKalle Valo 
380bdcd8170SKalle Valo 	skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr));
381bdcd8170SKalle Valo 	skb_push(skb, sizeof(eth_hdr));
382bdcd8170SKalle Valo 
383bdcd8170SKalle Valo 	datap = skb->data;
384bdcd8170SKalle Valo 
385bdcd8170SKalle Valo 	memcpy(datap, &eth_hdr, sizeof(eth_hdr));
386bdcd8170SKalle Valo 
387bdcd8170SKalle Valo 	return 0;
388bdcd8170SKalle Valo }
389bdcd8170SKalle Valo 
390bdcd8170SKalle Valo /*
391bdcd8170SKalle Valo  * Performs 802.3 to DIX encapsulation for received packets.
392bdcd8170SKalle Valo  * Assumes the entire 802.3 header is contigous.
393bdcd8170SKalle Valo  */
394bdcd8170SKalle Valo int ath6kl_wmi_dot3_2_dix(struct sk_buff *skb)
395bdcd8170SKalle Valo {
396bdcd8170SKalle Valo 	struct ath6kl_llc_snap_hdr *llc_hdr;
397bdcd8170SKalle Valo 	struct ethhdr eth_hdr;
398bdcd8170SKalle Valo 	u8 *datap;
399bdcd8170SKalle Valo 
400bdcd8170SKalle Valo 	if (WARN_ON(skb == NULL))
401bdcd8170SKalle Valo 		return -EINVAL;
402bdcd8170SKalle Valo 
403bdcd8170SKalle Valo 	datap = skb->data;
404bdcd8170SKalle Valo 
405bdcd8170SKalle Valo 	memcpy(&eth_hdr, datap, sizeof(eth_hdr));
406bdcd8170SKalle Valo 
407bdcd8170SKalle Valo 	llc_hdr = (struct ath6kl_llc_snap_hdr *) (datap + sizeof(eth_hdr));
408bdcd8170SKalle Valo 	eth_hdr.h_proto = llc_hdr->eth_type;
409bdcd8170SKalle Valo 
410bdcd8170SKalle Valo 	skb_pull(skb, sizeof(struct ath6kl_llc_snap_hdr));
411bdcd8170SKalle Valo 	datap = skb->data;
412bdcd8170SKalle Valo 
413bdcd8170SKalle Valo 	memcpy(datap, &eth_hdr, sizeof(eth_hdr));
414bdcd8170SKalle Valo 
415bdcd8170SKalle Valo 	return 0;
416bdcd8170SKalle Valo }
417bdcd8170SKalle Valo 
418bdcd8170SKalle Valo static int ath6kl_wmi_tx_complete_event_rx(u8 *datap, int len)
419bdcd8170SKalle Valo {
420bdcd8170SKalle Valo 	struct tx_complete_msg_v1 *msg_v1;
421bdcd8170SKalle Valo 	struct wmi_tx_complete_event *evt;
422bdcd8170SKalle Valo 	int index;
423bdcd8170SKalle Valo 	u16 size;
424bdcd8170SKalle Valo 
425bdcd8170SKalle Valo 	evt = (struct wmi_tx_complete_event *) datap;
426bdcd8170SKalle Valo 
427bdcd8170SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI, "comp: %d %d %d\n",
428bdcd8170SKalle Valo 		   evt->num_msg, evt->msg_len, evt->msg_type);
429bdcd8170SKalle Valo 
430bdcd8170SKalle Valo 	for (index = 0; index < evt->num_msg; index++) {
431bdcd8170SKalle Valo 		size = sizeof(struct wmi_tx_complete_event) +
432bdcd8170SKalle Valo 		    (index * sizeof(struct tx_complete_msg_v1));
433bdcd8170SKalle Valo 		msg_v1 = (struct tx_complete_msg_v1 *)(datap + size);
434bdcd8170SKalle Valo 
435bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "msg: %d %d %d %d\n",
436bdcd8170SKalle Valo 			   msg_v1->status, msg_v1->pkt_id,
437bdcd8170SKalle Valo 			   msg_v1->rate_idx, msg_v1->ack_failures);
438bdcd8170SKalle Valo 	}
439bdcd8170SKalle Valo 
440bdcd8170SKalle Valo 	return 0;
441bdcd8170SKalle Valo }
442bdcd8170SKalle Valo 
443f9e5f05cSJouni Malinen static int ath6kl_wmi_remain_on_chnl_event_rx(struct wmi *wmi, u8 *datap,
444240d2799SVasanthakumar Thiagarajan 					      int len, struct ath6kl_vif *vif)
4456465ddcfSJouni Malinen {
4466465ddcfSJouni Malinen 	struct wmi_remain_on_chnl_event *ev;
4476465ddcfSJouni Malinen 	u32 freq;
4486465ddcfSJouni Malinen 	u32 dur;
449f9e5f05cSJouni Malinen 	struct ieee80211_channel *chan;
450f9e5f05cSJouni Malinen 	struct ath6kl *ar = wmi->parent_dev;
4511052261eSJouni Malinen 	u32 id;
4526465ddcfSJouni Malinen 
4536465ddcfSJouni Malinen 	if (len < sizeof(*ev))
4546465ddcfSJouni Malinen 		return -EINVAL;
4556465ddcfSJouni Malinen 
4566465ddcfSJouni Malinen 	ev = (struct wmi_remain_on_chnl_event *) datap;
4576465ddcfSJouni Malinen 	freq = le32_to_cpu(ev->freq);
4586465ddcfSJouni Malinen 	dur = le32_to_cpu(ev->duration);
4596465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl: freq=%u dur=%u\n",
4606465ddcfSJouni Malinen 		   freq, dur);
461be98e3a4SVasanthakumar Thiagarajan 	chan = ieee80211_get_channel(ar->wiphy, freq);
462f9e5f05cSJouni Malinen 	if (!chan) {
463f9e5f05cSJouni Malinen 		ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl: Unknown channel "
464f9e5f05cSJouni Malinen 			   "(freq=%u)\n", freq);
465f9e5f05cSJouni Malinen 		return -EINVAL;
466f9e5f05cSJouni Malinen 	}
4671052261eSJouni Malinen 	id = vif->last_roc_id;
4681052261eSJouni Malinen 	cfg80211_ready_on_channel(vif->ndev, id, chan, NL80211_CHAN_NO_HT,
469f9e5f05cSJouni Malinen 				  dur, GFP_ATOMIC);
4706465ddcfSJouni Malinen 
4716465ddcfSJouni Malinen 	return 0;
4726465ddcfSJouni Malinen }
4736465ddcfSJouni Malinen 
474f9e5f05cSJouni Malinen static int ath6kl_wmi_cancel_remain_on_chnl_event_rx(struct wmi *wmi,
475240d2799SVasanthakumar Thiagarajan 						     u8 *datap, int len,
476240d2799SVasanthakumar Thiagarajan 						     struct ath6kl_vif *vif)
4776465ddcfSJouni Malinen {
4786465ddcfSJouni Malinen 	struct wmi_cancel_remain_on_chnl_event *ev;
4796465ddcfSJouni Malinen 	u32 freq;
4806465ddcfSJouni Malinen 	u32 dur;
481f9e5f05cSJouni Malinen 	struct ieee80211_channel *chan;
482f9e5f05cSJouni Malinen 	struct ath6kl *ar = wmi->parent_dev;
4831052261eSJouni Malinen 	u32 id;
4846465ddcfSJouni Malinen 
4856465ddcfSJouni Malinen 	if (len < sizeof(*ev))
4866465ddcfSJouni Malinen 		return -EINVAL;
4876465ddcfSJouni Malinen 
4886465ddcfSJouni Malinen 	ev = (struct wmi_cancel_remain_on_chnl_event *) datap;
4896465ddcfSJouni Malinen 	freq = le32_to_cpu(ev->freq);
4906465ddcfSJouni Malinen 	dur = le32_to_cpu(ev->duration);
4916465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "cancel_remain_on_chnl: freq=%u dur=%u "
4926465ddcfSJouni Malinen 		   "status=%u\n", freq, dur, ev->status);
493be98e3a4SVasanthakumar Thiagarajan 	chan = ieee80211_get_channel(ar->wiphy, freq);
494f9e5f05cSJouni Malinen 	if (!chan) {
495f9e5f05cSJouni Malinen 		ath6kl_dbg(ATH6KL_DBG_WMI, "cancel_remain_on_chnl: Unknown "
496f9e5f05cSJouni Malinen 			   "channel (freq=%u)\n", freq);
497f9e5f05cSJouni Malinen 		return -EINVAL;
498f9e5f05cSJouni Malinen 	}
4991052261eSJouni Malinen 	if (vif->last_cancel_roc_id &&
5001052261eSJouni Malinen 	    vif->last_cancel_roc_id + 1 == vif->last_roc_id)
5011052261eSJouni Malinen 		id = vif->last_cancel_roc_id; /* event for cancel command */
5021052261eSJouni Malinen 	else
5031052261eSJouni Malinen 		id = vif->last_roc_id; /* timeout on uncanceled r-o-c */
5041052261eSJouni Malinen 	vif->last_cancel_roc_id = 0;
5051052261eSJouni Malinen 	cfg80211_remain_on_channel_expired(vif->ndev, id, chan,
506f9e5f05cSJouni Malinen 					   NL80211_CHAN_NO_HT, GFP_ATOMIC);
5076465ddcfSJouni Malinen 
5086465ddcfSJouni Malinen 	return 0;
5096465ddcfSJouni Malinen }
5106465ddcfSJouni Malinen 
511240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_tx_status_event_rx(struct wmi *wmi, u8 *datap, int len,
512240d2799SVasanthakumar Thiagarajan 					 struct ath6kl_vif *vif)
5136465ddcfSJouni Malinen {
5146465ddcfSJouni Malinen 	struct wmi_tx_status_event *ev;
5156465ddcfSJouni Malinen 	u32 id;
5166465ddcfSJouni Malinen 
5176465ddcfSJouni Malinen 	if (len < sizeof(*ev))
5186465ddcfSJouni Malinen 		return -EINVAL;
5196465ddcfSJouni Malinen 
5206465ddcfSJouni Malinen 	ev = (struct wmi_tx_status_event *) datap;
5216465ddcfSJouni Malinen 	id = le32_to_cpu(ev->id);
5226465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "tx_status: id=%x ack_status=%u\n",
5236465ddcfSJouni Malinen 		   id, ev->ack_status);
524a0df5db1SJouni Malinen 	if (wmi->last_mgmt_tx_frame) {
525240d2799SVasanthakumar Thiagarajan 		cfg80211_mgmt_tx_status(vif->ndev, id,
526a0df5db1SJouni Malinen 					wmi->last_mgmt_tx_frame,
527a0df5db1SJouni Malinen 					wmi->last_mgmt_tx_frame_len,
528a0df5db1SJouni Malinen 					!!ev->ack_status, GFP_ATOMIC);
529a0df5db1SJouni Malinen 		kfree(wmi->last_mgmt_tx_frame);
530a0df5db1SJouni Malinen 		wmi->last_mgmt_tx_frame = NULL;
531a0df5db1SJouni Malinen 		wmi->last_mgmt_tx_frame_len = 0;
532a0df5db1SJouni Malinen 	}
5336465ddcfSJouni Malinen 
5346465ddcfSJouni Malinen 	return 0;
5356465ddcfSJouni Malinen }
5366465ddcfSJouni Malinen 
537240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_rx_probe_req_event_rx(struct wmi *wmi, u8 *datap, int len,
538240d2799SVasanthakumar Thiagarajan 					    struct ath6kl_vif *vif)
5396465ddcfSJouni Malinen {
5406465ddcfSJouni Malinen 	struct wmi_p2p_rx_probe_req_event *ev;
541ae32c30aSJouni Malinen 	u32 freq;
5426465ddcfSJouni Malinen 	u16 dlen;
5436465ddcfSJouni Malinen 
5446465ddcfSJouni Malinen 	if (len < sizeof(*ev))
5456465ddcfSJouni Malinen 		return -EINVAL;
5466465ddcfSJouni Malinen 
5476465ddcfSJouni Malinen 	ev = (struct wmi_p2p_rx_probe_req_event *) datap;
548ae32c30aSJouni Malinen 	freq = le32_to_cpu(ev->freq);
5496465ddcfSJouni Malinen 	dlen = le16_to_cpu(ev->len);
550ae32c30aSJouni Malinen 	if (datap + len < ev->data + dlen) {
551ae32c30aSJouni Malinen 		ath6kl_err("invalid wmi_p2p_rx_probe_req_event: "
552ae32c30aSJouni Malinen 			   "len=%d dlen=%u\n", len, dlen);
553ae32c30aSJouni Malinen 		return -EINVAL;
554ae32c30aSJouni Malinen 	}
555ae32c30aSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "rx_probe_req: len=%u freq=%u "
556ae32c30aSJouni Malinen 		   "probe_req_report=%d\n",
557cf5333d7SVasanthakumar Thiagarajan 		   dlen, freq, vif->probe_req_report);
558ae32c30aSJouni Malinen 
559cf5333d7SVasanthakumar Thiagarajan 	if (vif->probe_req_report || vif->nw_type == AP_NETWORK)
560240d2799SVasanthakumar Thiagarajan 		cfg80211_rx_mgmt(vif->ndev, freq, ev->data, dlen, GFP_ATOMIC);
5616465ddcfSJouni Malinen 
5626465ddcfSJouni Malinen 	return 0;
5636465ddcfSJouni Malinen }
5646465ddcfSJouni Malinen 
5656465ddcfSJouni Malinen static int ath6kl_wmi_p2p_capabilities_event_rx(u8 *datap, int len)
5666465ddcfSJouni Malinen {
5676465ddcfSJouni Malinen 	struct wmi_p2p_capabilities_event *ev;
5686465ddcfSJouni Malinen 	u16 dlen;
5696465ddcfSJouni Malinen 
5706465ddcfSJouni Malinen 	if (len < sizeof(*ev))
5716465ddcfSJouni Malinen 		return -EINVAL;
5726465ddcfSJouni Malinen 
5736465ddcfSJouni Malinen 	ev = (struct wmi_p2p_capabilities_event *) datap;
5746465ddcfSJouni Malinen 	dlen = le16_to_cpu(ev->len);
5756465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_capab: len=%u\n", dlen);
5766465ddcfSJouni Malinen 
5776465ddcfSJouni Malinen 	return 0;
5786465ddcfSJouni Malinen }
5796465ddcfSJouni Malinen 
580240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_rx_action_event_rx(struct wmi *wmi, u8 *datap, int len,
581240d2799SVasanthakumar Thiagarajan 					 struct ath6kl_vif *vif)
5826465ddcfSJouni Malinen {
5836465ddcfSJouni Malinen 	struct wmi_rx_action_event *ev;
5849809d8efSJouni Malinen 	u32 freq;
5856465ddcfSJouni Malinen 	u16 dlen;
5866465ddcfSJouni Malinen 
5876465ddcfSJouni Malinen 	if (len < sizeof(*ev))
5886465ddcfSJouni Malinen 		return -EINVAL;
5896465ddcfSJouni Malinen 
5906465ddcfSJouni Malinen 	ev = (struct wmi_rx_action_event *) datap;
5919809d8efSJouni Malinen 	freq = le32_to_cpu(ev->freq);
5926465ddcfSJouni Malinen 	dlen = le16_to_cpu(ev->len);
5939809d8efSJouni Malinen 	if (datap + len < ev->data + dlen) {
5949809d8efSJouni Malinen 		ath6kl_err("invalid wmi_rx_action_event: "
5959809d8efSJouni Malinen 			   "len=%d dlen=%u\n", len, dlen);
5969809d8efSJouni Malinen 		return -EINVAL;
5979809d8efSJouni Malinen 	}
5989809d8efSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "rx_action: len=%u freq=%u\n", dlen, freq);
599240d2799SVasanthakumar Thiagarajan 	cfg80211_rx_mgmt(vif->ndev, freq, ev->data, dlen, GFP_ATOMIC);
6006465ddcfSJouni Malinen 
6016465ddcfSJouni Malinen 	return 0;
6026465ddcfSJouni Malinen }
6036465ddcfSJouni Malinen 
6046465ddcfSJouni Malinen static int ath6kl_wmi_p2p_info_event_rx(u8 *datap, int len)
6056465ddcfSJouni Malinen {
6066465ddcfSJouni Malinen 	struct wmi_p2p_info_event *ev;
6076465ddcfSJouni Malinen 	u32 flags;
6086465ddcfSJouni Malinen 	u16 dlen;
6096465ddcfSJouni Malinen 
6106465ddcfSJouni Malinen 	if (len < sizeof(*ev))
6116465ddcfSJouni Malinen 		return -EINVAL;
6126465ddcfSJouni Malinen 
6136465ddcfSJouni Malinen 	ev = (struct wmi_p2p_info_event *) datap;
6146465ddcfSJouni Malinen 	flags = le32_to_cpu(ev->info_req_flags);
6156465ddcfSJouni Malinen 	dlen = le16_to_cpu(ev->len);
6166465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: flags=%x len=%d\n", flags, dlen);
6176465ddcfSJouni Malinen 
6186465ddcfSJouni Malinen 	if (flags & P2P_FLAG_CAPABILITIES_REQ) {
6196465ddcfSJouni Malinen 		struct wmi_p2p_capabilities *cap;
6206465ddcfSJouni Malinen 		if (dlen < sizeof(*cap))
6216465ddcfSJouni Malinen 			return -EINVAL;
6226465ddcfSJouni Malinen 		cap = (struct wmi_p2p_capabilities *) ev->data;
6236465ddcfSJouni Malinen 		ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: GO Power Save = %d\n",
6246465ddcfSJouni Malinen 			   cap->go_power_save);
6256465ddcfSJouni Malinen 	}
6266465ddcfSJouni Malinen 
6276465ddcfSJouni Malinen 	if (flags & P2P_FLAG_MACADDR_REQ) {
6286465ddcfSJouni Malinen 		struct wmi_p2p_macaddr *mac;
6296465ddcfSJouni Malinen 		if (dlen < sizeof(*mac))
6306465ddcfSJouni Malinen 			return -EINVAL;
6316465ddcfSJouni Malinen 		mac = (struct wmi_p2p_macaddr *) ev->data;
6326465ddcfSJouni Malinen 		ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: MAC Address = %pM\n",
6336465ddcfSJouni Malinen 			   mac->mac_addr);
6346465ddcfSJouni Malinen 	}
6356465ddcfSJouni Malinen 
6366465ddcfSJouni Malinen 	if (flags & P2P_FLAG_HMODEL_REQ) {
6376465ddcfSJouni Malinen 		struct wmi_p2p_hmodel *mod;
6386465ddcfSJouni Malinen 		if (dlen < sizeof(*mod))
6396465ddcfSJouni Malinen 			return -EINVAL;
6406465ddcfSJouni Malinen 		mod = (struct wmi_p2p_hmodel *) ev->data;
6416465ddcfSJouni Malinen 		ath6kl_dbg(ATH6KL_DBG_WMI, "p2p_info: P2P Model = %d (%s)\n",
6426465ddcfSJouni Malinen 			   mod->p2p_model,
6436465ddcfSJouni Malinen 			   mod->p2p_model ? "host" : "firmware");
6446465ddcfSJouni Malinen 	}
6456465ddcfSJouni Malinen 	return 0;
6466465ddcfSJouni Malinen }
6476465ddcfSJouni Malinen 
648bdcd8170SKalle Valo static inline struct sk_buff *ath6kl_wmi_get_new_buf(u32 size)
649bdcd8170SKalle Valo {
650bdcd8170SKalle Valo 	struct sk_buff *skb;
651bdcd8170SKalle Valo 
652bdcd8170SKalle Valo 	skb = ath6kl_buf_alloc(size);
653bdcd8170SKalle Valo 	if (!skb)
654bdcd8170SKalle Valo 		return NULL;
655bdcd8170SKalle Valo 
656bdcd8170SKalle Valo 	skb_put(skb, size);
657bdcd8170SKalle Valo 	if (size)
658bdcd8170SKalle Valo 		memset(skb->data, 0, size);
659bdcd8170SKalle Valo 
660bdcd8170SKalle Valo 	return skb;
661bdcd8170SKalle Valo }
662bdcd8170SKalle Valo 
663bdcd8170SKalle Valo /* Send a "simple" wmi command -- one with no arguments */
664334234b5SVasanthakumar Thiagarajan static int ath6kl_wmi_simple_cmd(struct wmi *wmi, u8 if_idx,
665334234b5SVasanthakumar Thiagarajan 				 enum wmi_cmd_id cmd_id)
666bdcd8170SKalle Valo {
667bdcd8170SKalle Valo 	struct sk_buff *skb;
668bdcd8170SKalle Valo 	int ret;
669bdcd8170SKalle Valo 
670bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(0);
671bdcd8170SKalle Valo 	if (!skb)
672bdcd8170SKalle Valo 		return -ENOMEM;
673bdcd8170SKalle Valo 
674334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, cmd_id, NO_SYNC_WMIFLAG);
675bdcd8170SKalle Valo 
676bdcd8170SKalle Valo 	return ret;
677bdcd8170SKalle Valo }
678bdcd8170SKalle Valo 
679bdcd8170SKalle Valo static int ath6kl_wmi_ready_event_rx(struct wmi *wmi, u8 *datap, int len)
680bdcd8170SKalle Valo {
681bdcd8170SKalle Valo 	struct wmi_ready_event_2 *ev = (struct wmi_ready_event_2 *) datap;
682bdcd8170SKalle Valo 
683bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_ready_event_2))
684bdcd8170SKalle Valo 		return -EINVAL;
685bdcd8170SKalle Valo 
686bdcd8170SKalle Valo 	ath6kl_ready_event(wmi->parent_dev, ev->mac_addr,
687bdcd8170SKalle Valo 			   le32_to_cpu(ev->sw_version),
688bdcd8170SKalle Valo 			   le32_to_cpu(ev->abi_version));
689bdcd8170SKalle Valo 
690bdcd8170SKalle Valo 	return 0;
691bdcd8170SKalle Valo }
692bdcd8170SKalle Valo 
693e5090444SVivek Natarajan /*
694e5090444SVivek Natarajan  * Mechanism to modify the roaming behavior in the firmware. The lower rssi
695e5090444SVivek Natarajan  * at which the station has to roam can be passed with
696e5090444SVivek Natarajan  * WMI_SET_LRSSI_SCAN_PARAMS. Subtract 96 from RSSI to get the signal level
697e5090444SVivek Natarajan  * in dBm.
698e5090444SVivek Natarajan  */
699e5090444SVivek Natarajan int ath6kl_wmi_set_roam_lrssi_cmd(struct wmi *wmi, u8 lrssi)
700e5090444SVivek Natarajan {
701e5090444SVivek Natarajan 	struct sk_buff *skb;
702e5090444SVivek Natarajan 	struct roam_ctrl_cmd *cmd;
703e5090444SVivek Natarajan 
704e5090444SVivek Natarajan 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
705e5090444SVivek Natarajan 	if (!skb)
706e5090444SVivek Natarajan 		return -ENOMEM;
707e5090444SVivek Natarajan 
708e5090444SVivek Natarajan 	cmd = (struct roam_ctrl_cmd *) skb->data;
709e5090444SVivek Natarajan 
710e5090444SVivek Natarajan 	cmd->info.params.lrssi_scan_period = cpu_to_le16(DEF_LRSSI_SCAN_PERIOD);
711e5090444SVivek Natarajan 	cmd->info.params.lrssi_scan_threshold = a_cpu_to_sle16(lrssi +
712e5090444SVivek Natarajan 						       DEF_SCAN_FOR_ROAM_INTVL);
713e5090444SVivek Natarajan 	cmd->info.params.lrssi_roam_threshold = a_cpu_to_sle16(lrssi);
714e5090444SVivek Natarajan 	cmd->info.params.roam_rssi_floor = DEF_LRSSI_ROAM_FLOOR;
715e5090444SVivek Natarajan 	cmd->roam_ctrl = WMI_SET_LRSSI_SCAN_PARAMS;
716e5090444SVivek Natarajan 
717334234b5SVasanthakumar Thiagarajan 	ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID,
718334234b5SVasanthakumar Thiagarajan 			    NO_SYNC_WMIFLAG);
719e5090444SVivek Natarajan 
720e5090444SVivek Natarajan 	return 0;
721e5090444SVivek Natarajan }
722e5090444SVivek Natarajan 
7231261875fSJouni Malinen int ath6kl_wmi_force_roam_cmd(struct wmi *wmi, const u8 *bssid)
7241261875fSJouni Malinen {
7251261875fSJouni Malinen 	struct sk_buff *skb;
7261261875fSJouni Malinen 	struct roam_ctrl_cmd *cmd;
7271261875fSJouni Malinen 
7281261875fSJouni Malinen 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
7291261875fSJouni Malinen 	if (!skb)
7301261875fSJouni Malinen 		return -ENOMEM;
7311261875fSJouni Malinen 
7321261875fSJouni Malinen 	cmd = (struct roam_ctrl_cmd *) skb->data;
7331261875fSJouni Malinen 	memset(cmd, 0, sizeof(*cmd));
7341261875fSJouni Malinen 
7351261875fSJouni Malinen 	memcpy(cmd->info.bssid, bssid, ETH_ALEN);
7361261875fSJouni Malinen 	cmd->roam_ctrl = WMI_FORCE_ROAM;
7371261875fSJouni Malinen 
7381261875fSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "force roam to %pM\n", bssid);
739334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID,
7401261875fSJouni Malinen 				   NO_SYNC_WMIFLAG);
7411261875fSJouni Malinen }
7421261875fSJouni Malinen 
7431261875fSJouni Malinen int ath6kl_wmi_set_roam_mode_cmd(struct wmi *wmi, enum wmi_roam_mode mode)
7441261875fSJouni Malinen {
7451261875fSJouni Malinen 	struct sk_buff *skb;
7461261875fSJouni Malinen 	struct roam_ctrl_cmd *cmd;
7471261875fSJouni Malinen 
7481261875fSJouni Malinen 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
7491261875fSJouni Malinen 	if (!skb)
7501261875fSJouni Malinen 		return -ENOMEM;
7511261875fSJouni Malinen 
7521261875fSJouni Malinen 	cmd = (struct roam_ctrl_cmd *) skb->data;
7531261875fSJouni Malinen 	memset(cmd, 0, sizeof(*cmd));
7541261875fSJouni Malinen 
7551261875fSJouni Malinen 	cmd->info.roam_mode = mode;
7561261875fSJouni Malinen 	cmd->roam_ctrl = WMI_SET_ROAM_MODE;
7571261875fSJouni Malinen 
7581261875fSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "set roam mode %d\n", mode);
759334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_ROAM_CTRL_CMDID,
7601261875fSJouni Malinen 				   NO_SYNC_WMIFLAG);
7611261875fSJouni Malinen }
7621261875fSJouni Malinen 
763240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_connect_event_rx(struct wmi *wmi, u8 *datap, int len,
764240d2799SVasanthakumar Thiagarajan 				       struct ath6kl_vif *vif)
765bdcd8170SKalle Valo {
766bdcd8170SKalle Valo 	struct wmi_connect_event *ev;
767bdcd8170SKalle Valo 	u8 *pie, *peie;
768bdcd8170SKalle Valo 
769bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_connect_event))
770bdcd8170SKalle Valo 		return -EINVAL;
771bdcd8170SKalle Valo 
772bdcd8170SKalle Valo 	ev = (struct wmi_connect_event *) datap;
773bdcd8170SKalle Valo 
774f5938f24SVasanthakumar Thiagarajan 	if (vif->nw_type == AP_NETWORK) {
775572e27c0SJouni Malinen 		/* AP mode start/STA connected event */
776240d2799SVasanthakumar Thiagarajan 		struct net_device *dev = vif->ndev;
777572e27c0SJouni Malinen 		if (memcmp(dev->dev_addr, ev->u.ap_bss.bssid, ETH_ALEN) == 0) {
778572e27c0SJouni Malinen 			ath6kl_dbg(ATH6KL_DBG_WMI, "%s: freq %d bssid %pM "
779572e27c0SJouni Malinen 				   "(AP started)\n",
780572e27c0SJouni Malinen 				   __func__, le16_to_cpu(ev->u.ap_bss.ch),
781572e27c0SJouni Malinen 				   ev->u.ap_bss.bssid);
782572e27c0SJouni Malinen 			ath6kl_connect_ap_mode_bss(
783240d2799SVasanthakumar Thiagarajan 				vif, le16_to_cpu(ev->u.ap_bss.ch));
784572e27c0SJouni Malinen 		} else {
785572e27c0SJouni Malinen 			ath6kl_dbg(ATH6KL_DBG_WMI, "%s: aid %u mac_addr %pM "
786572e27c0SJouni Malinen 				   "auth=%u keymgmt=%u cipher=%u apsd_info=%u "
787572e27c0SJouni Malinen 				   "(STA connected)\n",
788572e27c0SJouni Malinen 				   __func__, ev->u.ap_sta.aid,
789572e27c0SJouni Malinen 				   ev->u.ap_sta.mac_addr,
790572e27c0SJouni Malinen 				   ev->u.ap_sta.auth,
791572e27c0SJouni Malinen 				   ev->u.ap_sta.keymgmt,
792572e27c0SJouni Malinen 				   le16_to_cpu(ev->u.ap_sta.cipher),
793572e27c0SJouni Malinen 				   ev->u.ap_sta.apsd_info);
794c1762a3fSThirumalai Pachamuthu 
795572e27c0SJouni Malinen 			ath6kl_connect_ap_mode_sta(
796240d2799SVasanthakumar Thiagarajan 				vif, ev->u.ap_sta.aid, ev->u.ap_sta.mac_addr,
797572e27c0SJouni Malinen 				ev->u.ap_sta.keymgmt,
798572e27c0SJouni Malinen 				le16_to_cpu(ev->u.ap_sta.cipher),
799572e27c0SJouni Malinen 				ev->u.ap_sta.auth, ev->assoc_req_len,
800c1762a3fSThirumalai Pachamuthu 				ev->assoc_info + ev->beacon_ie_len,
801c1762a3fSThirumalai Pachamuthu 				ev->u.ap_sta.apsd_info);
802572e27c0SJouni Malinen 		}
803572e27c0SJouni Malinen 		return 0;
804572e27c0SJouni Malinen 	}
805572e27c0SJouni Malinen 
806572e27c0SJouni Malinen 	/* STA/IBSS mode connection event */
807572e27c0SJouni Malinen 
808b9b6ee60SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI,
809b9b6ee60SKalle Valo 		   "wmi event connect freq %d bssid %pM listen_intvl %d beacon_intvl %d type %d\n",
810b9b6ee60SKalle Valo 		   le16_to_cpu(ev->u.sta.ch), ev->u.sta.bssid,
811b9b6ee60SKalle Valo 		   le16_to_cpu(ev->u.sta.listen_intvl),
812b9b6ee60SKalle Valo 		   le16_to_cpu(ev->u.sta.beacon_intvl),
813b9b6ee60SKalle Valo 		   le32_to_cpu(ev->u.sta.nw_type));
814bdcd8170SKalle Valo 
815bdcd8170SKalle Valo 	/* Start of assoc rsp IEs */
816bdcd8170SKalle Valo 	pie = ev->assoc_info + ev->beacon_ie_len +
817bdcd8170SKalle Valo 	      ev->assoc_req_len + (sizeof(u16) * 3); /* capinfo, status, aid */
818bdcd8170SKalle Valo 
819bdcd8170SKalle Valo 	/* End of assoc rsp IEs */
820bdcd8170SKalle Valo 	peie = ev->assoc_info + ev->beacon_ie_len + ev->assoc_req_len +
821bdcd8170SKalle Valo 	    ev->assoc_resp_len;
822bdcd8170SKalle Valo 
823bdcd8170SKalle Valo 	while (pie < peie) {
824bdcd8170SKalle Valo 		switch (*pie) {
825bdcd8170SKalle Valo 		case WLAN_EID_VENDOR_SPECIFIC:
826bdcd8170SKalle Valo 			if (pie[1] > 3 && pie[2] == 0x00 && pie[3] == 0x50 &&
827bdcd8170SKalle Valo 			    pie[4] == 0xf2 && pie[5] == WMM_OUI_TYPE) {
828bdcd8170SKalle Valo 				/* WMM OUT (00:50:F2) */
829bdcd8170SKalle Valo 				if (pie[1] > 5
830bdcd8170SKalle Valo 				    && pie[6] == WMM_PARAM_OUI_SUBTYPE)
831bdcd8170SKalle Valo 					wmi->is_wmm_enabled = true;
832bdcd8170SKalle Valo 			}
833bdcd8170SKalle Valo 			break;
834bdcd8170SKalle Valo 		}
835bdcd8170SKalle Valo 
836bdcd8170SKalle Valo 		if (wmi->is_wmm_enabled)
837bdcd8170SKalle Valo 			break;
838bdcd8170SKalle Valo 
839bdcd8170SKalle Valo 		pie += pie[1] + 2;
840bdcd8170SKalle Valo 	}
841bdcd8170SKalle Valo 
842240d2799SVasanthakumar Thiagarajan 	ath6kl_connect_event(vif, le16_to_cpu(ev->u.sta.ch),
843572e27c0SJouni Malinen 			     ev->u.sta.bssid,
844572e27c0SJouni Malinen 			     le16_to_cpu(ev->u.sta.listen_intvl),
845572e27c0SJouni Malinen 			     le16_to_cpu(ev->u.sta.beacon_intvl),
846572e27c0SJouni Malinen 			     le32_to_cpu(ev->u.sta.nw_type),
847bdcd8170SKalle Valo 			     ev->beacon_ie_len, ev->assoc_req_len,
848bdcd8170SKalle Valo 			     ev->assoc_resp_len, ev->assoc_info);
849bdcd8170SKalle Valo 
850bdcd8170SKalle Valo 	return 0;
851bdcd8170SKalle Valo }
852bdcd8170SKalle Valo 
85306033760SVivek Natarajan static struct country_code_to_enum_rd *
85406033760SVivek Natarajan ath6kl_regd_find_country(u16 countryCode)
85506033760SVivek Natarajan {
85606033760SVivek Natarajan 	int i;
85706033760SVivek Natarajan 
85806033760SVivek Natarajan 	for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
85906033760SVivek Natarajan 		if (allCountries[i].countryCode == countryCode)
86006033760SVivek Natarajan 			return &allCountries[i];
86106033760SVivek Natarajan 	}
86206033760SVivek Natarajan 
86306033760SVivek Natarajan 	return NULL;
86406033760SVivek Natarajan }
86506033760SVivek Natarajan 
86606033760SVivek Natarajan static struct reg_dmn_pair_mapping *
86706033760SVivek Natarajan ath6kl_get_regpair(u16 regdmn)
86806033760SVivek Natarajan {
86906033760SVivek Natarajan 	int i;
87006033760SVivek Natarajan 
87106033760SVivek Natarajan 	if (regdmn == NO_ENUMRD)
87206033760SVivek Natarajan 		return NULL;
87306033760SVivek Natarajan 
87406033760SVivek Natarajan 	for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) {
87506033760SVivek Natarajan 		if (regDomainPairs[i].regDmnEnum == regdmn)
87606033760SVivek Natarajan 			return &regDomainPairs[i];
87706033760SVivek Natarajan 	}
87806033760SVivek Natarajan 
87906033760SVivek Natarajan 	return NULL;
88006033760SVivek Natarajan }
88106033760SVivek Natarajan 
88206033760SVivek Natarajan static struct country_code_to_enum_rd *
88306033760SVivek Natarajan ath6kl_regd_find_country_by_rd(u16 regdmn)
88406033760SVivek Natarajan {
88506033760SVivek Natarajan 	int i;
88606033760SVivek Natarajan 
88706033760SVivek Natarajan 	for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
88806033760SVivek Natarajan 		if (allCountries[i].regDmnEnum == regdmn)
88906033760SVivek Natarajan 			return &allCountries[i];
89006033760SVivek Natarajan 	}
89106033760SVivek Natarajan 
89206033760SVivek Natarajan 	return NULL;
89306033760SVivek Natarajan }
89406033760SVivek Natarajan 
89506033760SVivek Natarajan static void ath6kl_wmi_regdomain_event(struct wmi *wmi, u8 *datap, int len)
89606033760SVivek Natarajan {
89706033760SVivek Natarajan 
89806033760SVivek Natarajan 	struct ath6kl_wmi_regdomain *ev;
89906033760SVivek Natarajan 	struct country_code_to_enum_rd *country = NULL;
90006033760SVivek Natarajan 	struct reg_dmn_pair_mapping *regpair = NULL;
90106033760SVivek Natarajan 	char alpha2[2];
90206033760SVivek Natarajan 	u32 reg_code;
90306033760SVivek Natarajan 
90406033760SVivek Natarajan 	ev = (struct ath6kl_wmi_regdomain *) datap;
90506033760SVivek Natarajan 	reg_code = le32_to_cpu(ev->reg_code);
90606033760SVivek Natarajan 
90706033760SVivek Natarajan 	if ((reg_code >> ATH6KL_COUNTRY_RD_SHIFT) & COUNTRY_ERD_FLAG)
90806033760SVivek Natarajan 		country = ath6kl_regd_find_country((u16) reg_code);
90906033760SVivek Natarajan 	else if (!(((u16) reg_code & WORLD_SKU_MASK) == WORLD_SKU_PREFIX)) {
91006033760SVivek Natarajan 
91106033760SVivek Natarajan 		regpair = ath6kl_get_regpair((u16) reg_code);
91206033760SVivek Natarajan 		country = ath6kl_regd_find_country_by_rd((u16) reg_code);
913b9b6ee60SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "Regpair used: 0x%0x\n",
91406033760SVivek Natarajan 				regpair->regDmnEnum);
91506033760SVivek Natarajan 	}
91606033760SVivek Natarajan 
917e5348a1eSVasanthakumar Thiagarajan 	if (country && wmi->parent_dev->wiphy_registered) {
91806033760SVivek Natarajan 		alpha2[0] = country->isoName[0];
91906033760SVivek Natarajan 		alpha2[1] = country->isoName[1];
92006033760SVivek Natarajan 
921be98e3a4SVasanthakumar Thiagarajan 		regulatory_hint(wmi->parent_dev->wiphy, alpha2);
92206033760SVivek Natarajan 
923b9b6ee60SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "Country alpha2 being used: %c%c\n",
92406033760SVivek Natarajan 				alpha2[0], alpha2[1]);
92506033760SVivek Natarajan 	}
92606033760SVivek Natarajan }
92706033760SVivek Natarajan 
928240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_disconnect_event_rx(struct wmi *wmi, u8 *datap, int len,
929240d2799SVasanthakumar Thiagarajan 					  struct ath6kl_vif *vif)
930bdcd8170SKalle Valo {
931bdcd8170SKalle Valo 	struct wmi_disconnect_event *ev;
932bdcd8170SKalle Valo 	wmi->traffic_class = 100;
933bdcd8170SKalle Valo 
934bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_disconnect_event))
935bdcd8170SKalle Valo 		return -EINVAL;
936bdcd8170SKalle Valo 
937bdcd8170SKalle Valo 	ev = (struct wmi_disconnect_event *) datap;
938bdcd8170SKalle Valo 
939b9b6ee60SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI,
940b9b6ee60SKalle Valo 		   "wmi event disconnect proto_reason %d bssid %pM wmi_reason %d assoc_resp_len %d\n",
941b9b6ee60SKalle Valo 		   le16_to_cpu(ev->proto_reason_status), ev->bssid,
942b9b6ee60SKalle Valo 		   ev->disconn_reason, ev->assoc_resp_len);
943b9b6ee60SKalle Valo 
944bdcd8170SKalle Valo 	wmi->is_wmm_enabled = false;
945bdcd8170SKalle Valo 
946240d2799SVasanthakumar Thiagarajan 	ath6kl_disconnect_event(vif, ev->disconn_reason,
947bdcd8170SKalle Valo 				ev->bssid, ev->assoc_resp_len, ev->assoc_info,
948bdcd8170SKalle Valo 				le16_to_cpu(ev->proto_reason_status));
949bdcd8170SKalle Valo 
950bdcd8170SKalle Valo 	return 0;
951bdcd8170SKalle Valo }
952bdcd8170SKalle Valo 
953bdcd8170SKalle Valo static int ath6kl_wmi_peer_node_event_rx(struct wmi *wmi, u8 *datap, int len)
954bdcd8170SKalle Valo {
955bdcd8170SKalle Valo 	struct wmi_peer_node_event *ev;
956bdcd8170SKalle Valo 
957bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_peer_node_event))
958bdcd8170SKalle Valo 		return -EINVAL;
959bdcd8170SKalle Valo 
960bdcd8170SKalle Valo 	ev = (struct wmi_peer_node_event *) datap;
961bdcd8170SKalle Valo 
962bdcd8170SKalle Valo 	if (ev->event_code == PEER_NODE_JOIN_EVENT)
963bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "joined node with mac addr: %pM\n",
964bdcd8170SKalle Valo 			   ev->peer_mac_addr);
965bdcd8170SKalle Valo 	else if (ev->event_code == PEER_NODE_LEAVE_EVENT)
966bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "left node with mac addr: %pM\n",
967bdcd8170SKalle Valo 			   ev->peer_mac_addr);
968bdcd8170SKalle Valo 
969bdcd8170SKalle Valo 	return 0;
970bdcd8170SKalle Valo }
971bdcd8170SKalle Valo 
972240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_tkip_micerr_event_rx(struct wmi *wmi, u8 *datap, int len,
973240d2799SVasanthakumar Thiagarajan 					   struct ath6kl_vif *vif)
974bdcd8170SKalle Valo {
975bdcd8170SKalle Valo 	struct wmi_tkip_micerr_event *ev;
976bdcd8170SKalle Valo 
977bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_tkip_micerr_event))
978bdcd8170SKalle Valo 		return -EINVAL;
979bdcd8170SKalle Valo 
980bdcd8170SKalle Valo 	ev = (struct wmi_tkip_micerr_event *) datap;
981bdcd8170SKalle Valo 
982240d2799SVasanthakumar Thiagarajan 	ath6kl_tkip_micerr_event(vif, ev->key_id, ev->is_mcast);
983bdcd8170SKalle Valo 
984bdcd8170SKalle Valo 	return 0;
985bdcd8170SKalle Valo }
986bdcd8170SKalle Valo 
98710509f90SKalle Valo void ath6kl_wmi_sscan_timer(unsigned long ptr)
98810509f90SKalle Valo {
98910509f90SKalle Valo 	struct ath6kl_vif *vif = (struct ath6kl_vif *) ptr;
99010509f90SKalle Valo 
99110509f90SKalle Valo 	cfg80211_sched_scan_results(vif->ar->wiphy);
99210509f90SKalle Valo }
99310509f90SKalle Valo 
994240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_bssinfo_event_rx(struct wmi *wmi, u8 *datap, int len,
995240d2799SVasanthakumar Thiagarajan 				       struct ath6kl_vif *vif)
996bdcd8170SKalle Valo {
99782e14f56SJouni Malinen 	struct wmi_bss_info_hdr2 *bih;
9981aaa8c74SJouni Malinen 	u8 *buf;
9991aaa8c74SJouni Malinen 	struct ieee80211_channel *channel;
10001aaa8c74SJouni Malinen 	struct ath6kl *ar = wmi->parent_dev;
10011aaa8c74SJouni Malinen 	struct ieee80211_mgmt *mgmt;
10021aaa8c74SJouni Malinen 	struct cfg80211_bss *bss;
1003bdcd8170SKalle Valo 
100482e14f56SJouni Malinen 	if (len <= sizeof(struct wmi_bss_info_hdr2))
1005bdcd8170SKalle Valo 		return -EINVAL;
1006bdcd8170SKalle Valo 
100782e14f56SJouni Malinen 	bih = (struct wmi_bss_info_hdr2 *) datap;
100882e14f56SJouni Malinen 	buf = datap + sizeof(struct wmi_bss_info_hdr2);
100982e14f56SJouni Malinen 	len -= sizeof(struct wmi_bss_info_hdr2);
1010bdcd8170SKalle Valo 
1011bdcd8170SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI,
10121aaa8c74SJouni Malinen 		   "bss info evt - ch %u, snr %d, rssi %d, bssid \"%pM\" "
10131aaa8c74SJouni Malinen 		   "frame_type=%d\n",
101482e14f56SJouni Malinen 		   bih->ch, bih->snr, bih->snr - 95, bih->bssid,
10151aaa8c74SJouni Malinen 		   bih->frame_type);
1016bdcd8170SKalle Valo 
10171aaa8c74SJouni Malinen 	if (bih->frame_type != BEACON_FTYPE &&
10181aaa8c74SJouni Malinen 	    bih->frame_type != PROBERESP_FTYPE)
10191aaa8c74SJouni Malinen 		return 0; /* Only update BSS table for now */
10201aaa8c74SJouni Malinen 
1021551185caSJouni Malinen 	if (bih->frame_type == BEACON_FTYPE &&
102259c98449SVasanthakumar Thiagarajan 	    test_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags)) {
102359c98449SVasanthakumar Thiagarajan 		clear_bit(CLEAR_BSSFILTER_ON_BEACON, &vif->flags);
1024240d2799SVasanthakumar Thiagarajan 		ath6kl_wmi_bssfilter_cmd(ar->wmi, vif->fw_vif_idx,
1025240d2799SVasanthakumar Thiagarajan 					 NONE_BSS_FILTER, 0);
1026551185caSJouni Malinen 	}
1027551185caSJouni Malinen 
1028be98e3a4SVasanthakumar Thiagarajan 	channel = ieee80211_get_channel(ar->wiphy, le16_to_cpu(bih->ch));
10291aaa8c74SJouni Malinen 	if (channel == NULL)
10301aaa8c74SJouni Malinen 		return -EINVAL;
10311aaa8c74SJouni Malinen 
10321aaa8c74SJouni Malinen 	if (len < 8 + 2 + 2)
10331aaa8c74SJouni Malinen 		return -EINVAL;
1034bdcd8170SKalle Valo 
103559c98449SVasanthakumar Thiagarajan 	if (bih->frame_type == BEACON_FTYPE && test_bit(CONNECTED, &vif->flags)
10368c8b65e3SVasanthakumar Thiagarajan 	    && memcmp(bih->bssid, vif->bssid, ETH_ALEN) == 0) {
103732c10874SJouni Malinen 		const u8 *tim;
103832c10874SJouni Malinen 		tim = cfg80211_find_ie(WLAN_EID_TIM, buf + 8 + 2 + 2,
103932c10874SJouni Malinen 				       len - 8 - 2 - 2);
104032c10874SJouni Malinen 		if (tim && tim[1] >= 2) {
1041cf5333d7SVasanthakumar Thiagarajan 			vif->assoc_bss_dtim_period = tim[3];
104259c98449SVasanthakumar Thiagarajan 			set_bit(DTIM_PERIOD_AVAIL, &vif->flags);
104332c10874SJouni Malinen 		}
104432c10874SJouni Malinen 	}
104532c10874SJouni Malinen 
1046bdcd8170SKalle Valo 	/*
10471aaa8c74SJouni Malinen 	 * In theory, use of cfg80211_inform_bss() would be more natural here
10481aaa8c74SJouni Malinen 	 * since we do not have the full frame. However, at least for now,
10491aaa8c74SJouni Malinen 	 * cfg80211 can only distinguish Beacon and Probe Response frames from
10501aaa8c74SJouni Malinen 	 * each other when using cfg80211_inform_bss_frame(), so let's build a
10511aaa8c74SJouni Malinen 	 * fake IEEE 802.11 header to be able to take benefit of this.
1052bdcd8170SKalle Valo 	 */
10531aaa8c74SJouni Malinen 	mgmt = kmalloc(24 + len, GFP_ATOMIC);
10541aaa8c74SJouni Malinen 	if (mgmt == NULL)
10551aaa8c74SJouni Malinen 		return -EINVAL;
10561aaa8c74SJouni Malinen 
10571aaa8c74SJouni Malinen 	if (bih->frame_type == BEACON_FTYPE) {
10581aaa8c74SJouni Malinen 		mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
10591aaa8c74SJouni Malinen 						  IEEE80211_STYPE_BEACON);
10601aaa8c74SJouni Malinen 		memset(mgmt->da, 0xff, ETH_ALEN);
10611aaa8c74SJouni Malinen 	} else {
1062240d2799SVasanthakumar Thiagarajan 		struct net_device *dev = vif->ndev;
10631aaa8c74SJouni Malinen 
10641aaa8c74SJouni Malinen 		mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
10651aaa8c74SJouni Malinen 						  IEEE80211_STYPE_PROBE_RESP);
10661aaa8c74SJouni Malinen 		memcpy(mgmt->da, dev->dev_addr, ETH_ALEN);
1067bdcd8170SKalle Valo 	}
10681aaa8c74SJouni Malinen 	mgmt->duration = cpu_to_le16(0);
10691aaa8c74SJouni Malinen 	memcpy(mgmt->sa, bih->bssid, ETH_ALEN);
10701aaa8c74SJouni Malinen 	memcpy(mgmt->bssid, bih->bssid, ETH_ALEN);
10711aaa8c74SJouni Malinen 	mgmt->seq_ctrl = cpu_to_le16(0);
1072bdcd8170SKalle Valo 
10731aaa8c74SJouni Malinen 	memcpy(&mgmt->u.beacon, buf, len);
1074bdcd8170SKalle Valo 
1075be98e3a4SVasanthakumar Thiagarajan 	bss = cfg80211_inform_bss_frame(ar->wiphy, channel, mgmt,
107682e14f56SJouni Malinen 					24 + len, (bih->snr - 95) * 100,
107782e14f56SJouni Malinen 					GFP_ATOMIC);
10781aaa8c74SJouni Malinen 	kfree(mgmt);
10791aaa8c74SJouni Malinen 	if (bss == NULL)
1080bdcd8170SKalle Valo 		return -ENOMEM;
10811aaa8c74SJouni Malinen 	cfg80211_put_bss(bss);
1082bdcd8170SKalle Valo 
108310509f90SKalle Valo 	/*
108410509f90SKalle Valo 	 * Firmware doesn't return any event when scheduled scan has
108510509f90SKalle Valo 	 * finished, so we need to use a timer to find out when there are
108610509f90SKalle Valo 	 * no more results.
108710509f90SKalle Valo 	 *
108810509f90SKalle Valo 	 * The timer is started from the first bss info received, otherwise
108910509f90SKalle Valo 	 * the timer would not ever fire if the scan interval is short
109010509f90SKalle Valo 	 * enough.
109110509f90SKalle Valo 	 */
109210509f90SKalle Valo 	if (ar->state == ATH6KL_STATE_SCHED_SCAN &&
109310509f90SKalle Valo 	    !timer_pending(&vif->sched_scan_timer)) {
109410509f90SKalle Valo 		mod_timer(&vif->sched_scan_timer, jiffies +
109510509f90SKalle Valo 			  msecs_to_jiffies(ATH6KL_SCHED_SCAN_RESULT_DELAY));
109610509f90SKalle Valo 	}
109710509f90SKalle Valo 
1098bdcd8170SKalle Valo 	return 0;
1099bdcd8170SKalle Valo }
1100bdcd8170SKalle Valo 
1101bdcd8170SKalle Valo /* Inactivity timeout of a fatpipe(pstream) at the target */
1102bdcd8170SKalle Valo static int ath6kl_wmi_pstream_timeout_event_rx(struct wmi *wmi, u8 *datap,
1103bdcd8170SKalle Valo 					       int len)
1104bdcd8170SKalle Valo {
1105bdcd8170SKalle Valo 	struct wmi_pstream_timeout_event *ev;
1106bdcd8170SKalle Valo 
1107bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_pstream_timeout_event))
1108bdcd8170SKalle Valo 		return -EINVAL;
1109bdcd8170SKalle Valo 
1110bdcd8170SKalle Valo 	ev = (struct wmi_pstream_timeout_event *) datap;
1111bdcd8170SKalle Valo 
1112bdcd8170SKalle Valo 	/*
1113bdcd8170SKalle Valo 	 * When the pstream (fat pipe == AC) timesout, it means there were
1114bdcd8170SKalle Valo 	 * no thinStreams within this pstream & it got implicitly created
1115bdcd8170SKalle Valo 	 * due to data flow on this AC. We start the inactivity timer only
1116bdcd8170SKalle Valo 	 * for implicitly created pstream. Just reset the host state.
1117bdcd8170SKalle Valo 	 */
1118bdcd8170SKalle Valo 	spin_lock_bh(&wmi->lock);
1119bdcd8170SKalle Valo 	wmi->stream_exist_for_ac[ev->traffic_class] = 0;
1120bdcd8170SKalle Valo 	wmi->fat_pipe_exist &= ~(1 << ev->traffic_class);
1121bdcd8170SKalle Valo 	spin_unlock_bh(&wmi->lock);
1122bdcd8170SKalle Valo 
1123bdcd8170SKalle Valo 	/* Indicate inactivity to driver layer for this fatpipe (pstream) */
1124bdcd8170SKalle Valo 	ath6kl_indicate_tx_activity(wmi->parent_dev, ev->traffic_class, false);
1125bdcd8170SKalle Valo 
1126bdcd8170SKalle Valo 	return 0;
1127bdcd8170SKalle Valo }
1128bdcd8170SKalle Valo 
1129bdcd8170SKalle Valo static int ath6kl_wmi_bitrate_reply_rx(struct wmi *wmi, u8 *datap, int len)
1130bdcd8170SKalle Valo {
1131bdcd8170SKalle Valo 	struct wmi_bit_rate_reply *reply;
1132bdcd8170SKalle Valo 	s32 rate;
1133bdcd8170SKalle Valo 	u32 sgi, index;
1134bdcd8170SKalle Valo 
1135bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_bit_rate_reply))
1136bdcd8170SKalle Valo 		return -EINVAL;
1137bdcd8170SKalle Valo 
1138bdcd8170SKalle Valo 	reply = (struct wmi_bit_rate_reply *) datap;
1139bdcd8170SKalle Valo 
1140bdcd8170SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI, "rateindex %d\n", reply->rate_index);
1141bdcd8170SKalle Valo 
1142bdcd8170SKalle Valo 	if (reply->rate_index == (s8) RATE_AUTO) {
1143bdcd8170SKalle Valo 		rate = RATE_AUTO;
1144bdcd8170SKalle Valo 	} else {
1145bdcd8170SKalle Valo 		index = reply->rate_index & 0x7f;
1146bdcd8170SKalle Valo 		sgi = (reply->rate_index & 0x80) ? 1 : 0;
1147bdcd8170SKalle Valo 		rate = wmi_rate_tbl[index][sgi];
1148bdcd8170SKalle Valo 	}
1149bdcd8170SKalle Valo 
1150bdcd8170SKalle Valo 	ath6kl_wakeup_event(wmi->parent_dev);
1151bdcd8170SKalle Valo 
1152bdcd8170SKalle Valo 	return 0;
1153bdcd8170SKalle Valo }
1154bdcd8170SKalle Valo 
11554f34daceSThomas Pedersen static int ath6kl_wmi_test_rx(struct wmi *wmi, u8 *datap, int len)
1156003353b0SKalle Valo {
11574f34daceSThomas Pedersen 	ath6kl_tm_rx_event(wmi->parent_dev, datap, len);
1158003353b0SKalle Valo 
1159003353b0SKalle Valo 	return 0;
1160003353b0SKalle Valo }
1161003353b0SKalle Valo 
1162bdcd8170SKalle Valo static int ath6kl_wmi_ratemask_reply_rx(struct wmi *wmi, u8 *datap, int len)
1163bdcd8170SKalle Valo {
1164bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_fix_rates_reply))
1165bdcd8170SKalle Valo 		return -EINVAL;
1166bdcd8170SKalle Valo 
1167bdcd8170SKalle Valo 	ath6kl_wakeup_event(wmi->parent_dev);
1168bdcd8170SKalle Valo 
1169bdcd8170SKalle Valo 	return 0;
1170bdcd8170SKalle Valo }
1171bdcd8170SKalle Valo 
1172bdcd8170SKalle Valo static int ath6kl_wmi_ch_list_reply_rx(struct wmi *wmi, u8 *datap, int len)
1173bdcd8170SKalle Valo {
1174bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_channel_list_reply))
1175bdcd8170SKalle Valo 		return -EINVAL;
1176bdcd8170SKalle Valo 
1177bdcd8170SKalle Valo 	ath6kl_wakeup_event(wmi->parent_dev);
1178bdcd8170SKalle Valo 
1179bdcd8170SKalle Valo 	return 0;
1180bdcd8170SKalle Valo }
1181bdcd8170SKalle Valo 
1182bdcd8170SKalle Valo static int ath6kl_wmi_tx_pwr_reply_rx(struct wmi *wmi, u8 *datap, int len)
1183bdcd8170SKalle Valo {
1184bdcd8170SKalle Valo 	struct wmi_tx_pwr_reply *reply;
1185bdcd8170SKalle Valo 
1186bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_tx_pwr_reply))
1187bdcd8170SKalle Valo 		return -EINVAL;
1188bdcd8170SKalle Valo 
1189bdcd8170SKalle Valo 	reply = (struct wmi_tx_pwr_reply *) datap;
1190bdcd8170SKalle Valo 	ath6kl_txpwr_rx_evt(wmi->parent_dev, reply->dbM);
1191bdcd8170SKalle Valo 
1192bdcd8170SKalle Valo 	return 0;
1193bdcd8170SKalle Valo }
1194bdcd8170SKalle Valo 
1195bdcd8170SKalle Valo static int ath6kl_wmi_keepalive_reply_rx(struct wmi *wmi, u8 *datap, int len)
1196bdcd8170SKalle Valo {
1197bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_get_keepalive_cmd))
1198bdcd8170SKalle Valo 		return -EINVAL;
1199bdcd8170SKalle Valo 
1200bdcd8170SKalle Valo 	ath6kl_wakeup_event(wmi->parent_dev);
1201bdcd8170SKalle Valo 
1202bdcd8170SKalle Valo 	return 0;
1203bdcd8170SKalle Valo }
1204bdcd8170SKalle Valo 
1205240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_scan_complete_rx(struct wmi *wmi, u8 *datap, int len,
1206240d2799SVasanthakumar Thiagarajan 				       struct ath6kl_vif *vif)
1207bdcd8170SKalle Valo {
1208bdcd8170SKalle Valo 	struct wmi_scan_complete_event *ev;
1209bdcd8170SKalle Valo 
1210bdcd8170SKalle Valo 	ev = (struct wmi_scan_complete_event *) datap;
1211bdcd8170SKalle Valo 
1212240d2799SVasanthakumar Thiagarajan 	ath6kl_scan_complete_evt(vif, a_sle32_to_cpu(ev->status));
1213bdcd8170SKalle Valo 	wmi->is_probe_ssid = false;
1214bdcd8170SKalle Valo 
1215bdcd8170SKalle Valo 	return 0;
1216bdcd8170SKalle Valo }
1217bdcd8170SKalle Valo 
121886512136SJouni Malinen static int ath6kl_wmi_neighbor_report_event_rx(struct wmi *wmi, u8 *datap,
1219240d2799SVasanthakumar Thiagarajan 					       int len, struct ath6kl_vif *vif)
122086512136SJouni Malinen {
122186512136SJouni Malinen 	struct wmi_neighbor_report_event *ev;
122286512136SJouni Malinen 	u8 i;
122386512136SJouni Malinen 
122486512136SJouni Malinen 	if (len < sizeof(*ev))
122586512136SJouni Malinen 		return -EINVAL;
122686512136SJouni Malinen 	ev = (struct wmi_neighbor_report_event *) datap;
122786512136SJouni Malinen 	if (sizeof(*ev) + ev->num_neighbors * sizeof(struct wmi_neighbor_info)
122886512136SJouni Malinen 	    > len) {
122986512136SJouni Malinen 		ath6kl_dbg(ATH6KL_DBG_WMI, "truncated neighbor event "
123086512136SJouni Malinen 			   "(num=%d len=%d)\n", ev->num_neighbors, len);
123186512136SJouni Malinen 		return -EINVAL;
123286512136SJouni Malinen 	}
123386512136SJouni Malinen 	for (i = 0; i < ev->num_neighbors; i++) {
123486512136SJouni Malinen 		ath6kl_dbg(ATH6KL_DBG_WMI, "neighbor %d/%d - %pM 0x%x\n",
123586512136SJouni Malinen 			   i + 1, ev->num_neighbors, ev->neighbor[i].bssid,
123686512136SJouni Malinen 			   ev->neighbor[i].bss_flags);
1237240d2799SVasanthakumar Thiagarajan 		cfg80211_pmksa_candidate_notify(vif->ndev, i,
123886512136SJouni Malinen 						ev->neighbor[i].bssid,
123986512136SJouni Malinen 						!!(ev->neighbor[i].bss_flags &
124086512136SJouni Malinen 						   WMI_PREAUTH_CAPABLE_BSS),
124186512136SJouni Malinen 						GFP_ATOMIC);
124286512136SJouni Malinen 	}
124386512136SJouni Malinen 
124486512136SJouni Malinen 	return 0;
124586512136SJouni Malinen }
124686512136SJouni Malinen 
1247bdcd8170SKalle Valo /*
1248bdcd8170SKalle Valo  * Target is reporting a programming error.  This is for
1249bdcd8170SKalle Valo  * developer aid only.  Target only checks a few common violations
1250bdcd8170SKalle Valo  * and it is responsibility of host to do all error checking.
1251bdcd8170SKalle Valo  * Behavior of target after wmi error event is undefined.
1252bdcd8170SKalle Valo  * A reset is recommended.
1253bdcd8170SKalle Valo  */
1254bdcd8170SKalle Valo static int ath6kl_wmi_error_event_rx(struct wmi *wmi, u8 *datap, int len)
1255bdcd8170SKalle Valo {
1256bdcd8170SKalle Valo 	const char *type = "unknown error";
1257bdcd8170SKalle Valo 	struct wmi_cmd_error_event *ev;
1258bdcd8170SKalle Valo 	ev = (struct wmi_cmd_error_event *) datap;
1259bdcd8170SKalle Valo 
1260bdcd8170SKalle Valo 	switch (ev->err_code) {
1261bdcd8170SKalle Valo 	case INVALID_PARAM:
1262bdcd8170SKalle Valo 		type = "invalid parameter";
1263bdcd8170SKalle Valo 		break;
1264bdcd8170SKalle Valo 	case ILLEGAL_STATE:
1265bdcd8170SKalle Valo 		type = "invalid state";
1266bdcd8170SKalle Valo 		break;
1267bdcd8170SKalle Valo 	case INTERNAL_ERROR:
1268bdcd8170SKalle Valo 		type = "internal error";
1269bdcd8170SKalle Valo 		break;
1270bdcd8170SKalle Valo 	}
1271bdcd8170SKalle Valo 
1272bdcd8170SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI, "programming error, cmd=%d %s\n",
1273bdcd8170SKalle Valo 		   ev->cmd_id, type);
1274bdcd8170SKalle Valo 
1275bdcd8170SKalle Valo 	return 0;
1276bdcd8170SKalle Valo }
1277bdcd8170SKalle Valo 
1278240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_stats_event_rx(struct wmi *wmi, u8 *datap, int len,
1279240d2799SVasanthakumar Thiagarajan 				     struct ath6kl_vif *vif)
1280bdcd8170SKalle Valo {
1281240d2799SVasanthakumar Thiagarajan 	ath6kl_tgt_stats_event(vif, datap, len);
1282bdcd8170SKalle Valo 
1283bdcd8170SKalle Valo 	return 0;
1284bdcd8170SKalle Valo }
1285bdcd8170SKalle Valo 
1286bdcd8170SKalle Valo static u8 ath6kl_wmi_get_upper_threshold(s16 rssi,
1287bdcd8170SKalle Valo 					 struct sq_threshold_params *sq_thresh,
1288bdcd8170SKalle Valo 					 u32 size)
1289bdcd8170SKalle Valo {
1290bdcd8170SKalle Valo 	u32 index;
1291bdcd8170SKalle Valo 	u8 threshold = (u8) sq_thresh->upper_threshold[size - 1];
1292bdcd8170SKalle Valo 
1293bdcd8170SKalle Valo 	/* The list is already in sorted order. Get the next lower value */
1294bdcd8170SKalle Valo 	for (index = 0; index < size; index++) {
1295bdcd8170SKalle Valo 		if (rssi < sq_thresh->upper_threshold[index]) {
1296bdcd8170SKalle Valo 			threshold = (u8) sq_thresh->upper_threshold[index];
1297bdcd8170SKalle Valo 			break;
1298bdcd8170SKalle Valo 		}
1299bdcd8170SKalle Valo 	}
1300bdcd8170SKalle Valo 
1301bdcd8170SKalle Valo 	return threshold;
1302bdcd8170SKalle Valo }
1303bdcd8170SKalle Valo 
1304bdcd8170SKalle Valo static u8 ath6kl_wmi_get_lower_threshold(s16 rssi,
1305bdcd8170SKalle Valo 					 struct sq_threshold_params *sq_thresh,
1306bdcd8170SKalle Valo 					 u32 size)
1307bdcd8170SKalle Valo {
1308bdcd8170SKalle Valo 	u32 index;
1309bdcd8170SKalle Valo 	u8 threshold = (u8) sq_thresh->lower_threshold[size - 1];
1310bdcd8170SKalle Valo 
1311bdcd8170SKalle Valo 	/* The list is already in sorted order. Get the next lower value */
1312bdcd8170SKalle Valo 	for (index = 0; index < size; index++) {
1313bdcd8170SKalle Valo 		if (rssi > sq_thresh->lower_threshold[index]) {
1314bdcd8170SKalle Valo 			threshold = (u8) sq_thresh->lower_threshold[index];
1315bdcd8170SKalle Valo 			break;
1316bdcd8170SKalle Valo 		}
1317bdcd8170SKalle Valo 	}
1318bdcd8170SKalle Valo 
1319bdcd8170SKalle Valo 	return threshold;
1320bdcd8170SKalle Valo }
1321bdcd8170SKalle Valo 
1322bdcd8170SKalle Valo static int ath6kl_wmi_send_rssi_threshold_params(struct wmi *wmi,
1323bdcd8170SKalle Valo 			struct wmi_rssi_threshold_params_cmd *rssi_cmd)
1324bdcd8170SKalle Valo {
1325bdcd8170SKalle Valo 	struct sk_buff *skb;
1326bdcd8170SKalle Valo 	struct wmi_rssi_threshold_params_cmd *cmd;
1327bdcd8170SKalle Valo 
1328bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1329bdcd8170SKalle Valo 	if (!skb)
1330bdcd8170SKalle Valo 		return -ENOMEM;
1331bdcd8170SKalle Valo 
1332bdcd8170SKalle Valo 	cmd = (struct wmi_rssi_threshold_params_cmd *) skb->data;
1333bdcd8170SKalle Valo 	memcpy(cmd, rssi_cmd, sizeof(struct wmi_rssi_threshold_params_cmd));
1334bdcd8170SKalle Valo 
1335334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_RSSI_THRESHOLD_PARAMS_CMDID,
1336bdcd8170SKalle Valo 				   NO_SYNC_WMIFLAG);
1337bdcd8170SKalle Valo }
1338bdcd8170SKalle Valo 
1339bdcd8170SKalle Valo static int ath6kl_wmi_rssi_threshold_event_rx(struct wmi *wmi, u8 *datap,
1340bdcd8170SKalle Valo 					      int len)
1341bdcd8170SKalle Valo {
1342bdcd8170SKalle Valo 	struct wmi_rssi_threshold_event *reply;
1343bdcd8170SKalle Valo 	struct wmi_rssi_threshold_params_cmd cmd;
1344bdcd8170SKalle Valo 	struct sq_threshold_params *sq_thresh;
1345bdcd8170SKalle Valo 	enum wmi_rssi_threshold_val new_threshold;
1346bdcd8170SKalle Valo 	u8 upper_rssi_threshold, lower_rssi_threshold;
1347bdcd8170SKalle Valo 	s16 rssi;
1348bdcd8170SKalle Valo 	int ret;
1349bdcd8170SKalle Valo 
1350bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_rssi_threshold_event))
1351bdcd8170SKalle Valo 		return -EINVAL;
1352bdcd8170SKalle Valo 
1353bdcd8170SKalle Valo 	reply = (struct wmi_rssi_threshold_event *) datap;
1354bdcd8170SKalle Valo 	new_threshold = (enum wmi_rssi_threshold_val) reply->range;
1355bdcd8170SKalle Valo 	rssi = a_sle16_to_cpu(reply->rssi);
1356bdcd8170SKalle Valo 
1357bdcd8170SKalle Valo 	sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_RSSI];
1358bdcd8170SKalle Valo 
1359bdcd8170SKalle Valo 	/*
1360bdcd8170SKalle Valo 	 * Identify the threshold breached and communicate that to the app.
1361bdcd8170SKalle Valo 	 * After that install a new set of thresholds based on the signal
1362bdcd8170SKalle Valo 	 * quality reported by the target
1363bdcd8170SKalle Valo 	 */
1364bdcd8170SKalle Valo 	if (new_threshold) {
1365bdcd8170SKalle Valo 		/* Upper threshold breached */
1366bdcd8170SKalle Valo 		if (rssi < sq_thresh->upper_threshold[0]) {
1367bdcd8170SKalle Valo 			ath6kl_dbg(ATH6KL_DBG_WMI,
1368bdcd8170SKalle Valo 				"spurious upper rssi threshold event: %d\n",
1369bdcd8170SKalle Valo 				rssi);
1370bdcd8170SKalle Valo 		} else if ((rssi < sq_thresh->upper_threshold[1]) &&
1371bdcd8170SKalle Valo 			   (rssi >= sq_thresh->upper_threshold[0])) {
1372bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD1_ABOVE;
1373bdcd8170SKalle Valo 		} else if ((rssi < sq_thresh->upper_threshold[2]) &&
1374bdcd8170SKalle Valo 			   (rssi >= sq_thresh->upper_threshold[1])) {
1375bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD2_ABOVE;
1376bdcd8170SKalle Valo 		} else if ((rssi < sq_thresh->upper_threshold[3]) &&
1377bdcd8170SKalle Valo 			   (rssi >= sq_thresh->upper_threshold[2])) {
1378bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD3_ABOVE;
1379bdcd8170SKalle Valo 		} else if ((rssi < sq_thresh->upper_threshold[4]) &&
1380bdcd8170SKalle Valo 			   (rssi >= sq_thresh->upper_threshold[3])) {
1381bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD4_ABOVE;
1382bdcd8170SKalle Valo 		} else if ((rssi < sq_thresh->upper_threshold[5]) &&
1383bdcd8170SKalle Valo 			   (rssi >= sq_thresh->upper_threshold[4])) {
1384bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD5_ABOVE;
1385bdcd8170SKalle Valo 		} else if (rssi >= sq_thresh->upper_threshold[5]) {
1386bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD6_ABOVE;
1387bdcd8170SKalle Valo 		}
1388bdcd8170SKalle Valo 	} else {
1389bdcd8170SKalle Valo 		/* Lower threshold breached */
1390bdcd8170SKalle Valo 		if (rssi > sq_thresh->lower_threshold[0]) {
1391bdcd8170SKalle Valo 			ath6kl_dbg(ATH6KL_DBG_WMI,
1392bdcd8170SKalle Valo 				"spurious lower rssi threshold event: %d %d\n",
1393bdcd8170SKalle Valo 				rssi, sq_thresh->lower_threshold[0]);
1394bdcd8170SKalle Valo 		} else if ((rssi > sq_thresh->lower_threshold[1]) &&
1395bdcd8170SKalle Valo 			   (rssi <= sq_thresh->lower_threshold[0])) {
1396bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD6_BELOW;
1397bdcd8170SKalle Valo 		} else if ((rssi > sq_thresh->lower_threshold[2]) &&
1398bdcd8170SKalle Valo 			   (rssi <= sq_thresh->lower_threshold[1])) {
1399bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD5_BELOW;
1400bdcd8170SKalle Valo 		} else if ((rssi > sq_thresh->lower_threshold[3]) &&
1401bdcd8170SKalle Valo 			   (rssi <= sq_thresh->lower_threshold[2])) {
1402bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD4_BELOW;
1403bdcd8170SKalle Valo 		} else if ((rssi > sq_thresh->lower_threshold[4]) &&
1404bdcd8170SKalle Valo 			   (rssi <= sq_thresh->lower_threshold[3])) {
1405bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD3_BELOW;
1406bdcd8170SKalle Valo 		} else if ((rssi > sq_thresh->lower_threshold[5]) &&
1407bdcd8170SKalle Valo 			   (rssi <= sq_thresh->lower_threshold[4])) {
1408bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD2_BELOW;
1409bdcd8170SKalle Valo 		} else if (rssi <= sq_thresh->lower_threshold[5]) {
1410bdcd8170SKalle Valo 			new_threshold = WMI_RSSI_THRESHOLD1_BELOW;
1411bdcd8170SKalle Valo 		}
1412bdcd8170SKalle Valo 	}
1413bdcd8170SKalle Valo 
1414bdcd8170SKalle Valo 	/* Calculate and install the next set of thresholds */
1415bdcd8170SKalle Valo 	lower_rssi_threshold = ath6kl_wmi_get_lower_threshold(rssi, sq_thresh,
1416bdcd8170SKalle Valo 				       sq_thresh->lower_threshold_valid_count);
1417bdcd8170SKalle Valo 	upper_rssi_threshold = ath6kl_wmi_get_upper_threshold(rssi, sq_thresh,
1418bdcd8170SKalle Valo 				       sq_thresh->upper_threshold_valid_count);
1419bdcd8170SKalle Valo 
1420bdcd8170SKalle Valo 	/* Issue a wmi command to install the thresholds */
1421bdcd8170SKalle Valo 	cmd.thresh_above1_val = a_cpu_to_sle16(upper_rssi_threshold);
1422bdcd8170SKalle Valo 	cmd.thresh_below1_val = a_cpu_to_sle16(lower_rssi_threshold);
1423bdcd8170SKalle Valo 	cmd.weight = sq_thresh->weight;
1424bdcd8170SKalle Valo 	cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval);
1425bdcd8170SKalle Valo 
1426bdcd8170SKalle Valo 	ret = ath6kl_wmi_send_rssi_threshold_params(wmi, &cmd);
1427bdcd8170SKalle Valo 	if (ret) {
1428bdcd8170SKalle Valo 		ath6kl_err("unable to configure rssi thresholds\n");
1429bdcd8170SKalle Valo 		return -EIO;
1430bdcd8170SKalle Valo 	}
1431bdcd8170SKalle Valo 
1432bdcd8170SKalle Valo 	return 0;
1433bdcd8170SKalle Valo }
1434bdcd8170SKalle Valo 
1435240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_cac_event_rx(struct wmi *wmi, u8 *datap, int len,
1436240d2799SVasanthakumar Thiagarajan 				   struct ath6kl_vif *vif)
1437bdcd8170SKalle Valo {
1438bdcd8170SKalle Valo 	struct wmi_cac_event *reply;
1439bdcd8170SKalle Valo 	struct ieee80211_tspec_ie *ts;
1440bdcd8170SKalle Valo 	u16 active_tsids, tsinfo;
1441bdcd8170SKalle Valo 	u8 tsid, index;
1442bdcd8170SKalle Valo 	u8 ts_id;
1443bdcd8170SKalle Valo 
1444bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_cac_event))
1445bdcd8170SKalle Valo 		return -EINVAL;
1446bdcd8170SKalle Valo 
1447bdcd8170SKalle Valo 	reply = (struct wmi_cac_event *) datap;
1448bdcd8170SKalle Valo 
1449bdcd8170SKalle Valo 	if ((reply->cac_indication == CAC_INDICATION_ADMISSION_RESP) &&
1450bdcd8170SKalle Valo 	    (reply->status_code != IEEE80211_TSPEC_STATUS_ADMISS_ACCEPTED)) {
1451bdcd8170SKalle Valo 
1452bdcd8170SKalle Valo 		ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion);
1453bdcd8170SKalle Valo 		tsinfo = le16_to_cpu(ts->tsinfo);
1454bdcd8170SKalle Valo 		tsid = (tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) &
1455bdcd8170SKalle Valo 			IEEE80211_WMM_IE_TSPEC_TID_MASK;
1456bdcd8170SKalle Valo 
1457240d2799SVasanthakumar Thiagarajan 		ath6kl_wmi_delete_pstream_cmd(wmi, vif->fw_vif_idx,
1458240d2799SVasanthakumar Thiagarajan 					      reply->ac, tsid);
1459bdcd8170SKalle Valo 	} else if (reply->cac_indication == CAC_INDICATION_NO_RESP) {
1460bdcd8170SKalle Valo 		/*
1461bdcd8170SKalle Valo 		 * Following assumes that there is only one outstanding
1462bdcd8170SKalle Valo 		 * ADDTS request when this event is received
1463bdcd8170SKalle Valo 		 */
1464bdcd8170SKalle Valo 		spin_lock_bh(&wmi->lock);
1465bdcd8170SKalle Valo 		active_tsids = wmi->stream_exist_for_ac[reply->ac];
1466bdcd8170SKalle Valo 		spin_unlock_bh(&wmi->lock);
1467bdcd8170SKalle Valo 
1468bdcd8170SKalle Valo 		for (index = 0; index < sizeof(active_tsids) * 8; index++) {
1469bdcd8170SKalle Valo 			if ((active_tsids >> index) & 1)
1470bdcd8170SKalle Valo 				break;
1471bdcd8170SKalle Valo 		}
1472bdcd8170SKalle Valo 		if (index < (sizeof(active_tsids) * 8))
1473240d2799SVasanthakumar Thiagarajan 			ath6kl_wmi_delete_pstream_cmd(wmi, vif->fw_vif_idx,
1474240d2799SVasanthakumar Thiagarajan 						      reply->ac, index);
1475bdcd8170SKalle Valo 	}
1476bdcd8170SKalle Valo 
1477bdcd8170SKalle Valo 	/*
1478bdcd8170SKalle Valo 	 * Clear active tsids and Add missing handling
1479bdcd8170SKalle Valo 	 * for delete qos stream from AP
1480bdcd8170SKalle Valo 	 */
1481bdcd8170SKalle Valo 	else if (reply->cac_indication == CAC_INDICATION_DELETE) {
1482bdcd8170SKalle Valo 
1483bdcd8170SKalle Valo 		ts = (struct ieee80211_tspec_ie *) &(reply->tspec_suggestion);
1484bdcd8170SKalle Valo 		tsinfo = le16_to_cpu(ts->tsinfo);
1485bdcd8170SKalle Valo 		ts_id = ((tsinfo >> IEEE80211_WMM_IE_TSPEC_TID_SHIFT) &
1486bdcd8170SKalle Valo 			 IEEE80211_WMM_IE_TSPEC_TID_MASK);
1487bdcd8170SKalle Valo 
1488bdcd8170SKalle Valo 		spin_lock_bh(&wmi->lock);
1489bdcd8170SKalle Valo 		wmi->stream_exist_for_ac[reply->ac] &= ~(1 << ts_id);
1490bdcd8170SKalle Valo 		active_tsids = wmi->stream_exist_for_ac[reply->ac];
1491bdcd8170SKalle Valo 		spin_unlock_bh(&wmi->lock);
1492bdcd8170SKalle Valo 
1493bdcd8170SKalle Valo 		/* Indicate stream inactivity to driver layer only if all tsids
1494bdcd8170SKalle Valo 		 * within this AC are deleted.
1495bdcd8170SKalle Valo 		 */
1496bdcd8170SKalle Valo 		if (!active_tsids) {
1497bdcd8170SKalle Valo 			ath6kl_indicate_tx_activity(wmi->parent_dev, reply->ac,
1498bdcd8170SKalle Valo 						    false);
1499bdcd8170SKalle Valo 			wmi->fat_pipe_exist &= ~(1 << reply->ac);
1500bdcd8170SKalle Valo 		}
1501bdcd8170SKalle Valo 	}
1502bdcd8170SKalle Valo 
1503bdcd8170SKalle Valo 	return 0;
1504bdcd8170SKalle Valo }
1505bdcd8170SKalle Valo 
1506bdcd8170SKalle Valo static int ath6kl_wmi_send_snr_threshold_params(struct wmi *wmi,
1507bdcd8170SKalle Valo 			struct wmi_snr_threshold_params_cmd *snr_cmd)
1508bdcd8170SKalle Valo {
1509bdcd8170SKalle Valo 	struct sk_buff *skb;
1510bdcd8170SKalle Valo 	struct wmi_snr_threshold_params_cmd *cmd;
1511bdcd8170SKalle Valo 
1512bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1513bdcd8170SKalle Valo 	if (!skb)
1514bdcd8170SKalle Valo 		return -ENOMEM;
1515bdcd8170SKalle Valo 
1516bdcd8170SKalle Valo 	cmd = (struct wmi_snr_threshold_params_cmd *) skb->data;
1517bdcd8170SKalle Valo 	memcpy(cmd, snr_cmd, sizeof(struct wmi_snr_threshold_params_cmd));
1518bdcd8170SKalle Valo 
1519334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SNR_THRESHOLD_PARAMS_CMDID,
1520bdcd8170SKalle Valo 				   NO_SYNC_WMIFLAG);
1521bdcd8170SKalle Valo }
1522bdcd8170SKalle Valo 
1523bdcd8170SKalle Valo static int ath6kl_wmi_snr_threshold_event_rx(struct wmi *wmi, u8 *datap,
1524bdcd8170SKalle Valo 					     int len)
1525bdcd8170SKalle Valo {
1526bdcd8170SKalle Valo 	struct wmi_snr_threshold_event *reply;
1527bdcd8170SKalle Valo 	struct sq_threshold_params *sq_thresh;
1528bdcd8170SKalle Valo 	struct wmi_snr_threshold_params_cmd cmd;
1529bdcd8170SKalle Valo 	enum wmi_snr_threshold_val new_threshold;
1530bdcd8170SKalle Valo 	u8 upper_snr_threshold, lower_snr_threshold;
1531bdcd8170SKalle Valo 	s16 snr;
1532bdcd8170SKalle Valo 	int ret;
1533bdcd8170SKalle Valo 
1534bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_snr_threshold_event))
1535bdcd8170SKalle Valo 		return -EINVAL;
1536bdcd8170SKalle Valo 
1537bdcd8170SKalle Valo 	reply = (struct wmi_snr_threshold_event *) datap;
1538bdcd8170SKalle Valo 
1539bdcd8170SKalle Valo 	new_threshold = (enum wmi_snr_threshold_val) reply->range;
1540bdcd8170SKalle Valo 	snr = reply->snr;
1541bdcd8170SKalle Valo 
1542bdcd8170SKalle Valo 	sq_thresh = &wmi->sq_threshld[SIGNAL_QUALITY_METRICS_SNR];
1543bdcd8170SKalle Valo 
1544bdcd8170SKalle Valo 	/*
1545bdcd8170SKalle Valo 	 * Identify the threshold breached and communicate that to the app.
1546bdcd8170SKalle Valo 	 * After that install a new set of thresholds based on the signal
1547bdcd8170SKalle Valo 	 * quality reported by the target.
1548bdcd8170SKalle Valo 	 */
1549bdcd8170SKalle Valo 	if (new_threshold) {
1550bdcd8170SKalle Valo 		/* Upper threshold breached */
1551bdcd8170SKalle Valo 		if (snr < sq_thresh->upper_threshold[0]) {
1552bdcd8170SKalle Valo 			ath6kl_dbg(ATH6KL_DBG_WMI,
1553bdcd8170SKalle Valo 				"spurious upper snr threshold event: %d\n",
1554bdcd8170SKalle Valo 				snr);
1555bdcd8170SKalle Valo 		} else if ((snr < sq_thresh->upper_threshold[1]) &&
1556bdcd8170SKalle Valo 			   (snr >= sq_thresh->upper_threshold[0])) {
1557bdcd8170SKalle Valo 			new_threshold = WMI_SNR_THRESHOLD1_ABOVE;
1558bdcd8170SKalle Valo 		} else if ((snr < sq_thresh->upper_threshold[2]) &&
1559bdcd8170SKalle Valo 			   (snr >= sq_thresh->upper_threshold[1])) {
1560bdcd8170SKalle Valo 			new_threshold = WMI_SNR_THRESHOLD2_ABOVE;
1561bdcd8170SKalle Valo 		} else if ((snr < sq_thresh->upper_threshold[3]) &&
1562bdcd8170SKalle Valo 			   (snr >= sq_thresh->upper_threshold[2])) {
1563bdcd8170SKalle Valo 			new_threshold = WMI_SNR_THRESHOLD3_ABOVE;
1564bdcd8170SKalle Valo 		} else if (snr >= sq_thresh->upper_threshold[3]) {
1565bdcd8170SKalle Valo 			new_threshold = WMI_SNR_THRESHOLD4_ABOVE;
1566bdcd8170SKalle Valo 		}
1567bdcd8170SKalle Valo 	} else {
1568bdcd8170SKalle Valo 		/* Lower threshold breached */
1569bdcd8170SKalle Valo 		if (snr > sq_thresh->lower_threshold[0]) {
1570bdcd8170SKalle Valo 			ath6kl_dbg(ATH6KL_DBG_WMI,
1571bdcd8170SKalle Valo 				"spurious lower snr threshold event: %d\n",
1572bdcd8170SKalle Valo 				sq_thresh->lower_threshold[0]);
1573bdcd8170SKalle Valo 		} else if ((snr > sq_thresh->lower_threshold[1]) &&
1574bdcd8170SKalle Valo 			   (snr <= sq_thresh->lower_threshold[0])) {
1575bdcd8170SKalle Valo 			new_threshold = WMI_SNR_THRESHOLD4_BELOW;
1576bdcd8170SKalle Valo 		} else if ((snr > sq_thresh->lower_threshold[2]) &&
1577bdcd8170SKalle Valo 			   (snr <= sq_thresh->lower_threshold[1])) {
1578bdcd8170SKalle Valo 			new_threshold = WMI_SNR_THRESHOLD3_BELOW;
1579bdcd8170SKalle Valo 		} else if ((snr > sq_thresh->lower_threshold[3]) &&
1580bdcd8170SKalle Valo 			   (snr <= sq_thresh->lower_threshold[2])) {
1581bdcd8170SKalle Valo 			new_threshold = WMI_SNR_THRESHOLD2_BELOW;
1582bdcd8170SKalle Valo 		} else if (snr <= sq_thresh->lower_threshold[3]) {
1583bdcd8170SKalle Valo 			new_threshold = WMI_SNR_THRESHOLD1_BELOW;
1584bdcd8170SKalle Valo 		}
1585bdcd8170SKalle Valo 	}
1586bdcd8170SKalle Valo 
1587bdcd8170SKalle Valo 	/* Calculate and install the next set of thresholds */
1588bdcd8170SKalle Valo 	lower_snr_threshold = ath6kl_wmi_get_lower_threshold(snr, sq_thresh,
1589bdcd8170SKalle Valo 				       sq_thresh->lower_threshold_valid_count);
1590bdcd8170SKalle Valo 	upper_snr_threshold = ath6kl_wmi_get_upper_threshold(snr, sq_thresh,
1591bdcd8170SKalle Valo 				       sq_thresh->upper_threshold_valid_count);
1592bdcd8170SKalle Valo 
1593bdcd8170SKalle Valo 	/* Issue a wmi command to install the thresholds */
1594bdcd8170SKalle Valo 	cmd.thresh_above1_val = upper_snr_threshold;
1595bdcd8170SKalle Valo 	cmd.thresh_below1_val = lower_snr_threshold;
1596bdcd8170SKalle Valo 	cmd.weight = sq_thresh->weight;
1597bdcd8170SKalle Valo 	cmd.poll_time = cpu_to_le32(sq_thresh->polling_interval);
1598bdcd8170SKalle Valo 
1599bdcd8170SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI,
1600bdcd8170SKalle Valo 		   "snr: %d, threshold: %d, lower: %d, upper: %d\n",
1601bdcd8170SKalle Valo 		   snr, new_threshold,
1602bdcd8170SKalle Valo 		   lower_snr_threshold, upper_snr_threshold);
1603bdcd8170SKalle Valo 
1604bdcd8170SKalle Valo 	ret = ath6kl_wmi_send_snr_threshold_params(wmi, &cmd);
1605bdcd8170SKalle Valo 	if (ret) {
1606bdcd8170SKalle Valo 		ath6kl_err("unable to configure snr threshold\n");
1607bdcd8170SKalle Valo 		return -EIO;
1608bdcd8170SKalle Valo 	}
1609bdcd8170SKalle Valo 
1610bdcd8170SKalle Valo 	return 0;
1611bdcd8170SKalle Valo }
1612bdcd8170SKalle Valo 
1613bdcd8170SKalle Valo static int ath6kl_wmi_aplist_event_rx(struct wmi *wmi, u8 *datap, int len)
1614bdcd8170SKalle Valo {
1615bdcd8170SKalle Valo 	u16 ap_info_entry_size;
1616bdcd8170SKalle Valo 	struct wmi_aplist_event *ev = (struct wmi_aplist_event *) datap;
1617bdcd8170SKalle Valo 	struct wmi_ap_info_v1 *ap_info_v1;
1618bdcd8170SKalle Valo 	u8 index;
1619bdcd8170SKalle Valo 
1620bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_aplist_event) ||
1621bdcd8170SKalle Valo 	    ev->ap_list_ver != APLIST_VER1)
1622bdcd8170SKalle Valo 		return -EINVAL;
1623bdcd8170SKalle Valo 
1624bdcd8170SKalle Valo 	ap_info_entry_size = sizeof(struct wmi_ap_info_v1);
1625bdcd8170SKalle Valo 	ap_info_v1 = (struct wmi_ap_info_v1 *) ev->ap_list;
1626bdcd8170SKalle Valo 
1627bdcd8170SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI,
1628bdcd8170SKalle Valo 		   "number of APs in aplist event: %d\n", ev->num_ap);
1629bdcd8170SKalle Valo 
1630bdcd8170SKalle Valo 	if (len < (int) (sizeof(struct wmi_aplist_event) +
1631bdcd8170SKalle Valo 			 (ev->num_ap - 1) * ap_info_entry_size))
1632bdcd8170SKalle Valo 		return -EINVAL;
1633bdcd8170SKalle Valo 
1634bdcd8170SKalle Valo 	/* AP list version 1 contents */
1635bdcd8170SKalle Valo 	for (index = 0; index < ev->num_ap; index++) {
1636bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "AP#%d BSSID %pM Channel %d\n",
1637bdcd8170SKalle Valo 			   index, ap_info_v1->bssid, ap_info_v1->channel);
1638bdcd8170SKalle Valo 		ap_info_v1++;
1639bdcd8170SKalle Valo 	}
1640bdcd8170SKalle Valo 
1641bdcd8170SKalle Valo 	return 0;
1642bdcd8170SKalle Valo }
1643bdcd8170SKalle Valo 
1644334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_cmd_send(struct wmi *wmi, u8 if_idx, struct sk_buff *skb,
1645bdcd8170SKalle Valo 			enum wmi_cmd_id cmd_id, enum wmi_sync_flag sync_flag)
1646bdcd8170SKalle Valo {
1647bdcd8170SKalle Valo 	struct wmi_cmd_hdr *cmd_hdr;
1648bdcd8170SKalle Valo 	enum htc_endpoint_id ep_id = wmi->ep_id;
1649bdcd8170SKalle Valo 	int ret;
1650334234b5SVasanthakumar Thiagarajan 	u16 info1;
1651bdcd8170SKalle Valo 
165271f96ee6SKalle Valo 	if (WARN_ON(skb == NULL || (if_idx > (wmi->parent_dev->vif_max - 1))))
1653bdcd8170SKalle Valo 		return -EINVAL;
1654bdcd8170SKalle Valo 
1655b9b6ee60SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI, "wmi tx id %d len %d flag %d\n",
1656b9b6ee60SKalle Valo 		   cmd_id, skb->len, sync_flag);
1657b9b6ee60SKalle Valo 	ath6kl_dbg_dump(ATH6KL_DBG_WMI_DUMP, NULL, "wmi tx ",
1658b9b6ee60SKalle Valo 			skb->data, skb->len);
1659b9b6ee60SKalle Valo 
1660bdcd8170SKalle Valo 	if (sync_flag >= END_WMIFLAG) {
1661bdcd8170SKalle Valo 		dev_kfree_skb(skb);
1662bdcd8170SKalle Valo 		return -EINVAL;
1663bdcd8170SKalle Valo 	}
1664bdcd8170SKalle Valo 
1665bdcd8170SKalle Valo 	if ((sync_flag == SYNC_BEFORE_WMIFLAG) ||
1666bdcd8170SKalle Valo 	    (sync_flag == SYNC_BOTH_WMIFLAG)) {
1667bdcd8170SKalle Valo 		/*
1668bdcd8170SKalle Valo 		 * Make sure all data currently queued is transmitted before
1669bdcd8170SKalle Valo 		 * the cmd execution.  Establish a new sync point.
1670bdcd8170SKalle Valo 		 */
1671240d2799SVasanthakumar Thiagarajan 		ath6kl_wmi_sync_point(wmi, if_idx);
1672bdcd8170SKalle Valo 	}
1673bdcd8170SKalle Valo 
1674bdcd8170SKalle Valo 	skb_push(skb, sizeof(struct wmi_cmd_hdr));
1675bdcd8170SKalle Valo 
1676bdcd8170SKalle Valo 	cmd_hdr = (struct wmi_cmd_hdr *) skb->data;
1677bdcd8170SKalle Valo 	cmd_hdr->cmd_id = cpu_to_le16(cmd_id);
1678334234b5SVasanthakumar Thiagarajan 	info1 = if_idx & WMI_CMD_HDR_IF_ID_MASK;
1679334234b5SVasanthakumar Thiagarajan 	cmd_hdr->info1 = cpu_to_le16(info1);
1680bdcd8170SKalle Valo 
1681bdcd8170SKalle Valo 	/* Only for OPT_TX_CMD, use BE endpoint. */
1682bdcd8170SKalle Valo 	if (cmd_id == WMI_OPT_TX_FRAME_CMDID) {
1683bdcd8170SKalle Valo 		ret = ath6kl_wmi_data_hdr_add(wmi, skb, OPT_MSGTYPE,
16846765d0aaSVasanthakumar Thiagarajan 					      false, false, 0, NULL, if_idx);
1685bdcd8170SKalle Valo 		if (ret) {
1686bdcd8170SKalle Valo 			dev_kfree_skb(skb);
1687bdcd8170SKalle Valo 			return ret;
1688bdcd8170SKalle Valo 		}
1689bdcd8170SKalle Valo 		ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev, WMM_AC_BE);
1690bdcd8170SKalle Valo 	}
1691bdcd8170SKalle Valo 
1692bdcd8170SKalle Valo 	ath6kl_control_tx(wmi->parent_dev, skb, ep_id);
1693bdcd8170SKalle Valo 
1694bdcd8170SKalle Valo 	if ((sync_flag == SYNC_AFTER_WMIFLAG) ||
1695bdcd8170SKalle Valo 	    (sync_flag == SYNC_BOTH_WMIFLAG)) {
1696bdcd8170SKalle Valo 		/*
1697bdcd8170SKalle Valo 		 * Make sure all new data queued waits for the command to
1698bdcd8170SKalle Valo 		 * execute. Establish a new sync point.
1699bdcd8170SKalle Valo 		 */
1700240d2799SVasanthakumar Thiagarajan 		ath6kl_wmi_sync_point(wmi, if_idx);
1701bdcd8170SKalle Valo 	}
1702bdcd8170SKalle Valo 
1703bdcd8170SKalle Valo 	return 0;
1704bdcd8170SKalle Valo }
1705bdcd8170SKalle Valo 
1706334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_connect_cmd(struct wmi *wmi, u8 if_idx,
1707334234b5SVasanthakumar Thiagarajan 			   enum network_type nw_type,
1708bdcd8170SKalle Valo 			   enum dot11_auth_mode dot11_auth_mode,
1709bdcd8170SKalle Valo 			   enum auth_mode auth_mode,
1710bdcd8170SKalle Valo 			   enum crypto_type pairwise_crypto,
1711bdcd8170SKalle Valo 			   u8 pairwise_crypto_len,
1712bdcd8170SKalle Valo 			   enum crypto_type group_crypto,
1713bdcd8170SKalle Valo 			   u8 group_crypto_len, int ssid_len, u8 *ssid,
17143ca9d1fcSAarthi Thiruvengadam 			   u8 *bssid, u16 channel, u32 ctrl_flags,
17153ca9d1fcSAarthi Thiruvengadam 			   u8 nw_subtype)
1716bdcd8170SKalle Valo {
1717bdcd8170SKalle Valo 	struct sk_buff *skb;
1718bdcd8170SKalle Valo 	struct wmi_connect_cmd *cc;
1719bdcd8170SKalle Valo 	int ret;
1720bdcd8170SKalle Valo 
1721b9b6ee60SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI,
1722b9b6ee60SKalle Valo 		   "wmi connect bssid %pM freq %d flags 0x%x ssid_len %d "
1723b9b6ee60SKalle Valo 		   "type %d dot11_auth %d auth %d pairwise %d group %d\n",
1724b9b6ee60SKalle Valo 		   bssid, channel, ctrl_flags, ssid_len, nw_type,
1725b9b6ee60SKalle Valo 		   dot11_auth_mode, auth_mode, pairwise_crypto, group_crypto);
1726b9b6ee60SKalle Valo 	ath6kl_dbg_dump(ATH6KL_DBG_WMI, NULL, "ssid ", ssid, ssid_len);
1727b9b6ee60SKalle Valo 
1728bdcd8170SKalle Valo 	wmi->traffic_class = 100;
1729bdcd8170SKalle Valo 
1730bdcd8170SKalle Valo 	if ((pairwise_crypto == NONE_CRYPT) && (group_crypto != NONE_CRYPT))
1731bdcd8170SKalle Valo 		return -EINVAL;
1732bdcd8170SKalle Valo 
1733bdcd8170SKalle Valo 	if ((pairwise_crypto != NONE_CRYPT) && (group_crypto == NONE_CRYPT))
1734bdcd8170SKalle Valo 		return -EINVAL;
1735bdcd8170SKalle Valo 
1736bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_connect_cmd));
1737bdcd8170SKalle Valo 	if (!skb)
1738bdcd8170SKalle Valo 		return -ENOMEM;
1739bdcd8170SKalle Valo 
1740bdcd8170SKalle Valo 	cc = (struct wmi_connect_cmd *) skb->data;
1741bdcd8170SKalle Valo 
1742bdcd8170SKalle Valo 	if (ssid_len)
1743bdcd8170SKalle Valo 		memcpy(cc->ssid, ssid, ssid_len);
1744bdcd8170SKalle Valo 
1745bdcd8170SKalle Valo 	cc->ssid_len = ssid_len;
1746bdcd8170SKalle Valo 	cc->nw_type = nw_type;
1747bdcd8170SKalle Valo 	cc->dot11_auth_mode = dot11_auth_mode;
1748bdcd8170SKalle Valo 	cc->auth_mode = auth_mode;
1749bdcd8170SKalle Valo 	cc->prwise_crypto_type = pairwise_crypto;
1750bdcd8170SKalle Valo 	cc->prwise_crypto_len = pairwise_crypto_len;
1751bdcd8170SKalle Valo 	cc->grp_crypto_type = group_crypto;
1752bdcd8170SKalle Valo 	cc->grp_crypto_len = group_crypto_len;
1753bdcd8170SKalle Valo 	cc->ch = cpu_to_le16(channel);
1754bdcd8170SKalle Valo 	cc->ctrl_flags = cpu_to_le32(ctrl_flags);
17553ca9d1fcSAarthi Thiruvengadam 	cc->nw_subtype = nw_subtype;
1756bdcd8170SKalle Valo 
1757bdcd8170SKalle Valo 	if (bssid != NULL)
1758bdcd8170SKalle Valo 		memcpy(cc->bssid, bssid, ETH_ALEN);
1759bdcd8170SKalle Valo 
1760334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_CONNECT_CMDID,
1761334234b5SVasanthakumar Thiagarajan 				  NO_SYNC_WMIFLAG);
1762bdcd8170SKalle Valo 
1763bdcd8170SKalle Valo 	return ret;
1764bdcd8170SKalle Valo }
1765bdcd8170SKalle Valo 
1766334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_reconnect_cmd(struct wmi *wmi, u8 if_idx, u8 *bssid,
1767334234b5SVasanthakumar Thiagarajan 			     u16 channel)
1768bdcd8170SKalle Valo {
1769bdcd8170SKalle Valo 	struct sk_buff *skb;
1770bdcd8170SKalle Valo 	struct wmi_reconnect_cmd *cc;
1771bdcd8170SKalle Valo 	int ret;
1772bdcd8170SKalle Valo 
1773b9b6ee60SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI, "wmi reconnect bssid %pM freq %d\n",
1774b9b6ee60SKalle Valo 		   bssid, channel);
1775b9b6ee60SKalle Valo 
1776bdcd8170SKalle Valo 	wmi->traffic_class = 100;
1777bdcd8170SKalle Valo 
1778bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_reconnect_cmd));
1779bdcd8170SKalle Valo 	if (!skb)
1780bdcd8170SKalle Valo 		return -ENOMEM;
1781bdcd8170SKalle Valo 
1782bdcd8170SKalle Valo 	cc = (struct wmi_reconnect_cmd *) skb->data;
1783bdcd8170SKalle Valo 	cc->channel = cpu_to_le16(channel);
1784bdcd8170SKalle Valo 
1785bdcd8170SKalle Valo 	if (bssid != NULL)
1786bdcd8170SKalle Valo 		memcpy(cc->bssid, bssid, ETH_ALEN);
1787bdcd8170SKalle Valo 
1788334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_RECONNECT_CMDID,
1789bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
1790bdcd8170SKalle Valo 
1791bdcd8170SKalle Valo 	return ret;
1792bdcd8170SKalle Valo }
1793bdcd8170SKalle Valo 
1794334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_disconnect_cmd(struct wmi *wmi, u8 if_idx)
1795bdcd8170SKalle Valo {
1796bdcd8170SKalle Valo 	int ret;
1797bdcd8170SKalle Valo 
1798b9b6ee60SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI, "wmi disconnect\n");
1799b9b6ee60SKalle Valo 
1800bdcd8170SKalle Valo 	wmi->traffic_class = 100;
1801bdcd8170SKalle Valo 
1802bdcd8170SKalle Valo 	/* Disconnect command does not need to do a SYNC before. */
1803334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_DISCONNECT_CMDID);
1804bdcd8170SKalle Valo 
1805bdcd8170SKalle Valo 	return ret;
1806bdcd8170SKalle Valo }
1807bdcd8170SKalle Valo 
18083ca9d1fcSAarthi Thiruvengadam int ath6kl_wmi_beginscan_cmd(struct wmi *wmi, u8 if_idx,
18093ca9d1fcSAarthi Thiruvengadam 			     enum wmi_scan_type scan_type,
18103ca9d1fcSAarthi Thiruvengadam 			     u32 force_fgscan, u32 is_legacy,
18113ca9d1fcSAarthi Thiruvengadam 			     u32 home_dwell_time, u32 force_scan_interval,
18123ca9d1fcSAarthi Thiruvengadam 			     s8 num_chan, u16 *ch_list, u32 no_cck, u32 *rates)
18133ca9d1fcSAarthi Thiruvengadam {
18143ca9d1fcSAarthi Thiruvengadam 	struct sk_buff *skb;
18153ca9d1fcSAarthi Thiruvengadam 	struct wmi_begin_scan_cmd *sc;
18163ca9d1fcSAarthi Thiruvengadam 	s8 size;
18173ca9d1fcSAarthi Thiruvengadam 	int i, band, ret;
18183ca9d1fcSAarthi Thiruvengadam 	struct ath6kl *ar = wmi->parent_dev;
18193ca9d1fcSAarthi Thiruvengadam 	int num_rates;
18203ca9d1fcSAarthi Thiruvengadam 
18213ca9d1fcSAarthi Thiruvengadam 	size = sizeof(struct wmi_begin_scan_cmd);
18223ca9d1fcSAarthi Thiruvengadam 
18233ca9d1fcSAarthi Thiruvengadam 	if ((scan_type != WMI_LONG_SCAN) && (scan_type != WMI_SHORT_SCAN))
18243ca9d1fcSAarthi Thiruvengadam 		return -EINVAL;
18253ca9d1fcSAarthi Thiruvengadam 
18263ca9d1fcSAarthi Thiruvengadam 	if (num_chan > WMI_MAX_CHANNELS)
18273ca9d1fcSAarthi Thiruvengadam 		return -EINVAL;
18283ca9d1fcSAarthi Thiruvengadam 
18293ca9d1fcSAarthi Thiruvengadam 	if (num_chan)
18303ca9d1fcSAarthi Thiruvengadam 		size += sizeof(u16) * (num_chan - 1);
18313ca9d1fcSAarthi Thiruvengadam 
18323ca9d1fcSAarthi Thiruvengadam 	skb = ath6kl_wmi_get_new_buf(size);
18333ca9d1fcSAarthi Thiruvengadam 	if (!skb)
18343ca9d1fcSAarthi Thiruvengadam 		return -ENOMEM;
18353ca9d1fcSAarthi Thiruvengadam 
18363ca9d1fcSAarthi Thiruvengadam 	sc = (struct wmi_begin_scan_cmd *) skb->data;
18373ca9d1fcSAarthi Thiruvengadam 	sc->scan_type = scan_type;
18383ca9d1fcSAarthi Thiruvengadam 	sc->force_fg_scan = cpu_to_le32(force_fgscan);
18393ca9d1fcSAarthi Thiruvengadam 	sc->is_legacy = cpu_to_le32(is_legacy);
18403ca9d1fcSAarthi Thiruvengadam 	sc->home_dwell_time = cpu_to_le32(home_dwell_time);
18413ca9d1fcSAarthi Thiruvengadam 	sc->force_scan_intvl = cpu_to_le32(force_scan_interval);
18423ca9d1fcSAarthi Thiruvengadam 	sc->no_cck = cpu_to_le32(no_cck);
18433ca9d1fcSAarthi Thiruvengadam 	sc->num_ch = num_chan;
18443ca9d1fcSAarthi Thiruvengadam 
18453ca9d1fcSAarthi Thiruvengadam 	for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
18463ca9d1fcSAarthi Thiruvengadam 		struct ieee80211_supported_band *sband =
18473ca9d1fcSAarthi Thiruvengadam 		    ar->wiphy->bands[band];
18483ca9d1fcSAarthi Thiruvengadam 		u32 ratemask = rates[band];
18493ca9d1fcSAarthi Thiruvengadam 		u8 *supp_rates = sc->supp_rates[band].rates;
18503ca9d1fcSAarthi Thiruvengadam 		num_rates = 0;
18513ca9d1fcSAarthi Thiruvengadam 
18523ca9d1fcSAarthi Thiruvengadam 		for (i = 0; i < sband->n_bitrates; i++) {
18533ca9d1fcSAarthi Thiruvengadam 			if ((BIT(i) & ratemask) == 0)
18543ca9d1fcSAarthi Thiruvengadam 				continue; /* skip rate */
18553ca9d1fcSAarthi Thiruvengadam 			supp_rates[num_rates++] =
18563ca9d1fcSAarthi Thiruvengadam 			    (u8) (sband->bitrates[i].bitrate / 5);
18573ca9d1fcSAarthi Thiruvengadam 		}
18583ca9d1fcSAarthi Thiruvengadam 		sc->supp_rates[band].nrates = num_rates;
18593ca9d1fcSAarthi Thiruvengadam 	}
18603ca9d1fcSAarthi Thiruvengadam 
18613ca9d1fcSAarthi Thiruvengadam 	for (i = 0; i < num_chan; i++)
18623ca9d1fcSAarthi Thiruvengadam 		sc->ch_list[i] = cpu_to_le16(ch_list[i]);
18633ca9d1fcSAarthi Thiruvengadam 
18643ca9d1fcSAarthi Thiruvengadam 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_BEGIN_SCAN_CMDID,
18653ca9d1fcSAarthi Thiruvengadam 				  NO_SYNC_WMIFLAG);
18663ca9d1fcSAarthi Thiruvengadam 
18673ca9d1fcSAarthi Thiruvengadam 	return ret;
18683ca9d1fcSAarthi Thiruvengadam }
18693ca9d1fcSAarthi Thiruvengadam 
18703ca9d1fcSAarthi Thiruvengadam /* ath6kl_wmi_start_scan_cmd is to be deprecated. Use
18713ca9d1fcSAarthi Thiruvengadam  * ath6kl_wmi_begin_scan_cmd instead. The new function supports P2P
18723ca9d1fcSAarthi Thiruvengadam  * mgmt operations using station interface.
18733ca9d1fcSAarthi Thiruvengadam  */
1874334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_startscan_cmd(struct wmi *wmi, u8 if_idx,
1875334234b5SVasanthakumar Thiagarajan 			     enum wmi_scan_type scan_type,
1876bdcd8170SKalle Valo 			     u32 force_fgscan, u32 is_legacy,
1877bdcd8170SKalle Valo 			     u32 home_dwell_time, u32 force_scan_interval,
1878bdcd8170SKalle Valo 			     s8 num_chan, u16 *ch_list)
1879bdcd8170SKalle Valo {
1880bdcd8170SKalle Valo 	struct sk_buff *skb;
1881bdcd8170SKalle Valo 	struct wmi_start_scan_cmd *sc;
1882bdcd8170SKalle Valo 	s8 size;
18831276c9efSEdward Lu 	int i, ret;
1884bdcd8170SKalle Valo 
1885bdcd8170SKalle Valo 	size = sizeof(struct wmi_start_scan_cmd);
1886bdcd8170SKalle Valo 
1887bdcd8170SKalle Valo 	if ((scan_type != WMI_LONG_SCAN) && (scan_type != WMI_SHORT_SCAN))
1888bdcd8170SKalle Valo 		return -EINVAL;
1889bdcd8170SKalle Valo 
1890bdcd8170SKalle Valo 	if (num_chan > WMI_MAX_CHANNELS)
1891bdcd8170SKalle Valo 		return -EINVAL;
1892bdcd8170SKalle Valo 
1893bdcd8170SKalle Valo 	if (num_chan)
1894bdcd8170SKalle Valo 		size += sizeof(u16) * (num_chan - 1);
1895bdcd8170SKalle Valo 
1896bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(size);
1897bdcd8170SKalle Valo 	if (!skb)
1898bdcd8170SKalle Valo 		return -ENOMEM;
1899bdcd8170SKalle Valo 
1900bdcd8170SKalle Valo 	sc = (struct wmi_start_scan_cmd *) skb->data;
1901bdcd8170SKalle Valo 	sc->scan_type = scan_type;
1902bdcd8170SKalle Valo 	sc->force_fg_scan = cpu_to_le32(force_fgscan);
1903bdcd8170SKalle Valo 	sc->is_legacy = cpu_to_le32(is_legacy);
1904bdcd8170SKalle Valo 	sc->home_dwell_time = cpu_to_le32(home_dwell_time);
1905bdcd8170SKalle Valo 	sc->force_scan_intvl = cpu_to_le32(force_scan_interval);
1906bdcd8170SKalle Valo 	sc->num_ch = num_chan;
1907bdcd8170SKalle Valo 
19081276c9efSEdward Lu 	for (i = 0; i < num_chan; i++)
19091276c9efSEdward Lu 		sc->ch_list[i] = cpu_to_le16(ch_list[i]);
1910bdcd8170SKalle Valo 
1911334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_START_SCAN_CMDID,
1912bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
1913bdcd8170SKalle Valo 
1914bdcd8170SKalle Valo 	return ret;
1915bdcd8170SKalle Valo }
1916bdcd8170SKalle Valo 
1917334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_scanparams_cmd(struct wmi *wmi, u8 if_idx,
1918334234b5SVasanthakumar Thiagarajan 			      u16 fg_start_sec,
1919bdcd8170SKalle Valo 			      u16 fg_end_sec, u16 bg_sec,
1920bdcd8170SKalle Valo 			      u16 minact_chdw_msec, u16 maxact_chdw_msec,
1921bdcd8170SKalle Valo 			      u16 pas_chdw_msec, u8 short_scan_ratio,
1922bdcd8170SKalle Valo 			      u8 scan_ctrl_flag, u32 max_dfsch_act_time,
1923bdcd8170SKalle Valo 			      u16 maxact_scan_per_ssid)
1924bdcd8170SKalle Valo {
1925bdcd8170SKalle Valo 	struct sk_buff *skb;
1926bdcd8170SKalle Valo 	struct wmi_scan_params_cmd *sc;
1927bdcd8170SKalle Valo 	int ret;
1928bdcd8170SKalle Valo 
1929bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*sc));
1930bdcd8170SKalle Valo 	if (!skb)
1931bdcd8170SKalle Valo 		return -ENOMEM;
1932bdcd8170SKalle Valo 
1933bdcd8170SKalle Valo 	sc = (struct wmi_scan_params_cmd *) skb->data;
1934bdcd8170SKalle Valo 	sc->fg_start_period = cpu_to_le16(fg_start_sec);
1935bdcd8170SKalle Valo 	sc->fg_end_period = cpu_to_le16(fg_end_sec);
1936bdcd8170SKalle Valo 	sc->bg_period = cpu_to_le16(bg_sec);
1937bdcd8170SKalle Valo 	sc->minact_chdwell_time = cpu_to_le16(minact_chdw_msec);
1938bdcd8170SKalle Valo 	sc->maxact_chdwell_time = cpu_to_le16(maxact_chdw_msec);
1939bdcd8170SKalle Valo 	sc->pas_chdwell_time = cpu_to_le16(pas_chdw_msec);
1940bdcd8170SKalle Valo 	sc->short_scan_ratio = short_scan_ratio;
1941bdcd8170SKalle Valo 	sc->scan_ctrl_flags = scan_ctrl_flag;
1942bdcd8170SKalle Valo 	sc->max_dfsch_act_time = cpu_to_le32(max_dfsch_act_time);
1943bdcd8170SKalle Valo 	sc->maxact_scan_per_ssid = cpu_to_le16(maxact_scan_per_ssid);
1944bdcd8170SKalle Valo 
1945334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_SCAN_PARAMS_CMDID,
1946bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
1947bdcd8170SKalle Valo 	return ret;
1948bdcd8170SKalle Valo }
1949bdcd8170SKalle Valo 
1950240d2799SVasanthakumar Thiagarajan int ath6kl_wmi_bssfilter_cmd(struct wmi *wmi, u8 if_idx, u8 filter, u32 ie_mask)
1951bdcd8170SKalle Valo {
1952bdcd8170SKalle Valo 	struct sk_buff *skb;
1953bdcd8170SKalle Valo 	struct wmi_bss_filter_cmd *cmd;
1954bdcd8170SKalle Valo 	int ret;
1955bdcd8170SKalle Valo 
1956bdcd8170SKalle Valo 	if (filter >= LAST_BSS_FILTER)
1957bdcd8170SKalle Valo 		return -EINVAL;
1958bdcd8170SKalle Valo 
1959bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1960bdcd8170SKalle Valo 	if (!skb)
1961bdcd8170SKalle Valo 		return -ENOMEM;
1962bdcd8170SKalle Valo 
1963bdcd8170SKalle Valo 	cmd = (struct wmi_bss_filter_cmd *) skb->data;
1964bdcd8170SKalle Valo 	cmd->bss_filter = filter;
1965bdcd8170SKalle Valo 	cmd->ie_mask = cpu_to_le32(ie_mask);
1966bdcd8170SKalle Valo 
1967240d2799SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_BSS_FILTER_CMDID,
1968bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
1969bdcd8170SKalle Valo 	return ret;
1970bdcd8170SKalle Valo }
1971bdcd8170SKalle Valo 
1972334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_probedssid_cmd(struct wmi *wmi, u8 if_idx, u8 index, u8 flag,
1973bdcd8170SKalle Valo 			      u8 ssid_len, u8 *ssid)
1974bdcd8170SKalle Valo {
1975bdcd8170SKalle Valo 	struct sk_buff *skb;
1976bdcd8170SKalle Valo 	struct wmi_probed_ssid_cmd *cmd;
1977bdcd8170SKalle Valo 	int ret;
1978bdcd8170SKalle Valo 
1979bdcd8170SKalle Valo 	if (index > MAX_PROBED_SSID_INDEX)
1980bdcd8170SKalle Valo 		return -EINVAL;
1981bdcd8170SKalle Valo 
1982bdcd8170SKalle Valo 	if (ssid_len > sizeof(cmd->ssid))
1983bdcd8170SKalle Valo 		return -EINVAL;
1984bdcd8170SKalle Valo 
1985bdcd8170SKalle Valo 	if ((flag & (DISABLE_SSID_FLAG | ANY_SSID_FLAG)) && (ssid_len > 0))
1986bdcd8170SKalle Valo 		return -EINVAL;
1987bdcd8170SKalle Valo 
1988bdcd8170SKalle Valo 	if ((flag & SPECIFIC_SSID_FLAG) && !ssid_len)
1989bdcd8170SKalle Valo 		return -EINVAL;
1990bdcd8170SKalle Valo 
1991bdcd8170SKalle Valo 	if (flag & SPECIFIC_SSID_FLAG)
1992bdcd8170SKalle Valo 		wmi->is_probe_ssid = true;
1993bdcd8170SKalle Valo 
1994bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
1995bdcd8170SKalle Valo 	if (!skb)
1996bdcd8170SKalle Valo 		return -ENOMEM;
1997bdcd8170SKalle Valo 
1998bdcd8170SKalle Valo 	cmd = (struct wmi_probed_ssid_cmd *) skb->data;
1999bdcd8170SKalle Valo 	cmd->entry_index = index;
2000bdcd8170SKalle Valo 	cmd->flag = flag;
2001bdcd8170SKalle Valo 	cmd->ssid_len = ssid_len;
2002bdcd8170SKalle Valo 	memcpy(cmd->ssid, ssid, ssid_len);
2003bdcd8170SKalle Valo 
2004334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_PROBED_SSID_CMDID,
2005bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2006bdcd8170SKalle Valo 	return ret;
2007bdcd8170SKalle Valo }
2008bdcd8170SKalle Valo 
2009334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_listeninterval_cmd(struct wmi *wmi, u8 if_idx,
2010334234b5SVasanthakumar Thiagarajan 				  u16 listen_interval,
2011bdcd8170SKalle Valo 				  u16 listen_beacons)
2012bdcd8170SKalle Valo {
2013bdcd8170SKalle Valo 	struct sk_buff *skb;
2014bdcd8170SKalle Valo 	struct wmi_listen_int_cmd *cmd;
2015bdcd8170SKalle Valo 	int ret;
2016bdcd8170SKalle Valo 
2017bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2018bdcd8170SKalle Valo 	if (!skb)
2019bdcd8170SKalle Valo 		return -ENOMEM;
2020bdcd8170SKalle Valo 
2021bdcd8170SKalle Valo 	cmd = (struct wmi_listen_int_cmd *) skb->data;
2022bdcd8170SKalle Valo 	cmd->listen_intvl = cpu_to_le16(listen_interval);
2023bdcd8170SKalle Valo 	cmd->num_beacons = cpu_to_le16(listen_beacons);
2024bdcd8170SKalle Valo 
2025334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_LISTEN_INT_CMDID,
2026bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2027bdcd8170SKalle Valo 	return ret;
2028bdcd8170SKalle Valo }
2029bdcd8170SKalle Valo 
2030334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_powermode_cmd(struct wmi *wmi, u8 if_idx, u8 pwr_mode)
2031bdcd8170SKalle Valo {
2032bdcd8170SKalle Valo 	struct sk_buff *skb;
2033bdcd8170SKalle Valo 	struct wmi_power_mode_cmd *cmd;
2034bdcd8170SKalle Valo 	int ret;
2035bdcd8170SKalle Valo 
2036bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2037bdcd8170SKalle Valo 	if (!skb)
2038bdcd8170SKalle Valo 		return -ENOMEM;
2039bdcd8170SKalle Valo 
2040bdcd8170SKalle Valo 	cmd = (struct wmi_power_mode_cmd *) skb->data;
2041bdcd8170SKalle Valo 	cmd->pwr_mode = pwr_mode;
2042bdcd8170SKalle Valo 	wmi->pwr_mode = pwr_mode;
2043bdcd8170SKalle Valo 
2044334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_POWER_MODE_CMDID,
2045bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2046bdcd8170SKalle Valo 	return ret;
2047bdcd8170SKalle Valo }
2048bdcd8170SKalle Valo 
20490ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_pmparams_cmd(struct wmi *wmi, u8 if_idx, u16 idle_period,
2050bdcd8170SKalle Valo 			    u16 ps_poll_num, u16 dtim_policy,
2051bdcd8170SKalle Valo 			    u16 tx_wakeup_policy, u16 num_tx_to_wakeup,
2052bdcd8170SKalle Valo 			    u16 ps_fail_event_policy)
2053bdcd8170SKalle Valo {
2054bdcd8170SKalle Valo 	struct sk_buff *skb;
2055bdcd8170SKalle Valo 	struct wmi_power_params_cmd *pm;
2056bdcd8170SKalle Valo 	int ret;
2057bdcd8170SKalle Valo 
2058bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*pm));
2059bdcd8170SKalle Valo 	if (!skb)
2060bdcd8170SKalle Valo 		return -ENOMEM;
2061bdcd8170SKalle Valo 
2062bdcd8170SKalle Valo 	pm = (struct wmi_power_params_cmd *)skb->data;
2063bdcd8170SKalle Valo 	pm->idle_period = cpu_to_le16(idle_period);
2064bdcd8170SKalle Valo 	pm->pspoll_number = cpu_to_le16(ps_poll_num);
2065bdcd8170SKalle Valo 	pm->dtim_policy = cpu_to_le16(dtim_policy);
2066bdcd8170SKalle Valo 	pm->tx_wakeup_policy = cpu_to_le16(tx_wakeup_policy);
2067bdcd8170SKalle Valo 	pm->num_tx_to_wakeup = cpu_to_le16(num_tx_to_wakeup);
2068bdcd8170SKalle Valo 	pm->ps_fail_event_policy = cpu_to_le16(ps_fail_event_policy);
2069bdcd8170SKalle Valo 
20700ce59445SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_POWER_PARAMS_CMDID,
2071bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2072bdcd8170SKalle Valo 	return ret;
2073bdcd8170SKalle Valo }
2074bdcd8170SKalle Valo 
20750ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_disctimeout_cmd(struct wmi *wmi, u8 if_idx, u8 timeout)
2076bdcd8170SKalle Valo {
2077bdcd8170SKalle Valo 	struct sk_buff *skb;
2078bdcd8170SKalle Valo 	struct wmi_disc_timeout_cmd *cmd;
2079bdcd8170SKalle Valo 	int ret;
2080bdcd8170SKalle Valo 
2081bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2082bdcd8170SKalle Valo 	if (!skb)
2083bdcd8170SKalle Valo 		return -ENOMEM;
2084bdcd8170SKalle Valo 
2085bdcd8170SKalle Valo 	cmd = (struct wmi_disc_timeout_cmd *) skb->data;
2086bdcd8170SKalle Valo 	cmd->discon_timeout = timeout;
2087bdcd8170SKalle Valo 
20880ce59445SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_DISC_TIMEOUT_CMDID,
2089bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2090334234b5SVasanthakumar Thiagarajan 
2091ff0b0075SJouni Malinen 	if (ret == 0)
2092ff0b0075SJouni Malinen 		ath6kl_debug_set_disconnect_timeout(wmi->parent_dev, timeout);
2093334234b5SVasanthakumar Thiagarajan 
2094bdcd8170SKalle Valo 	return ret;
2095bdcd8170SKalle Valo }
2096bdcd8170SKalle Valo 
2097334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_addkey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index,
2098bdcd8170SKalle Valo 			  enum crypto_type key_type,
2099bdcd8170SKalle Valo 			  u8 key_usage, u8 key_len,
2100f4bb9a6fSJouni Malinen 			  u8 *key_rsc, unsigned int key_rsc_len,
2101f4bb9a6fSJouni Malinen 			  u8 *key_material,
2102bdcd8170SKalle Valo 			  u8 key_op_ctrl, u8 *mac_addr,
2103bdcd8170SKalle Valo 			  enum wmi_sync_flag sync_flag)
2104bdcd8170SKalle Valo {
2105bdcd8170SKalle Valo 	struct sk_buff *skb;
2106bdcd8170SKalle Valo 	struct wmi_add_cipher_key_cmd *cmd;
2107bdcd8170SKalle Valo 	int ret;
2108bdcd8170SKalle Valo 
21099a5b1318SJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "addkey cmd: key_index=%u key_type=%d "
21109a5b1318SJouni Malinen 		   "key_usage=%d key_len=%d key_op_ctrl=%d\n",
21119a5b1318SJouni Malinen 		   key_index, key_type, key_usage, key_len, key_op_ctrl);
21129a5b1318SJouni Malinen 
2113bdcd8170SKalle Valo 	if ((key_index > WMI_MAX_KEY_INDEX) || (key_len > WMI_MAX_KEY_LEN) ||
2114f4bb9a6fSJouni Malinen 	    (key_material == NULL) || key_rsc_len > 8)
2115bdcd8170SKalle Valo 		return -EINVAL;
2116bdcd8170SKalle Valo 
2117bdcd8170SKalle Valo 	if ((WEP_CRYPT != key_type) && (NULL == key_rsc))
2118bdcd8170SKalle Valo 		return -EINVAL;
2119bdcd8170SKalle Valo 
2120bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2121bdcd8170SKalle Valo 	if (!skb)
2122bdcd8170SKalle Valo 		return -ENOMEM;
2123bdcd8170SKalle Valo 
2124bdcd8170SKalle Valo 	cmd = (struct wmi_add_cipher_key_cmd *) skb->data;
2125bdcd8170SKalle Valo 	cmd->key_index = key_index;
2126bdcd8170SKalle Valo 	cmd->key_type = key_type;
2127bdcd8170SKalle Valo 	cmd->key_usage = key_usage;
2128bdcd8170SKalle Valo 	cmd->key_len = key_len;
2129bdcd8170SKalle Valo 	memcpy(cmd->key, key_material, key_len);
2130bdcd8170SKalle Valo 
2131bdcd8170SKalle Valo 	if (key_rsc != NULL)
2132f4bb9a6fSJouni Malinen 		memcpy(cmd->key_rsc, key_rsc, key_rsc_len);
2133bdcd8170SKalle Valo 
2134bdcd8170SKalle Valo 	cmd->key_op_ctrl = key_op_ctrl;
2135bdcd8170SKalle Valo 
2136bdcd8170SKalle Valo 	if (mac_addr)
2137bdcd8170SKalle Valo 		memcpy(cmd->key_mac_addr, mac_addr, ETH_ALEN);
2138bdcd8170SKalle Valo 
2139334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_CIPHER_KEY_CMDID,
2140bdcd8170SKalle Valo 				  sync_flag);
2141bdcd8170SKalle Valo 
2142bdcd8170SKalle Valo 	return ret;
2143bdcd8170SKalle Valo }
2144bdcd8170SKalle Valo 
2145240d2799SVasanthakumar Thiagarajan int ath6kl_wmi_add_krk_cmd(struct wmi *wmi, u8 if_idx, u8 *krk)
2146bdcd8170SKalle Valo {
2147bdcd8170SKalle Valo 	struct sk_buff *skb;
2148bdcd8170SKalle Valo 	struct wmi_add_krk_cmd *cmd;
2149bdcd8170SKalle Valo 	int ret;
2150bdcd8170SKalle Valo 
2151bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2152bdcd8170SKalle Valo 	if (!skb)
2153bdcd8170SKalle Valo 		return -ENOMEM;
2154bdcd8170SKalle Valo 
2155bdcd8170SKalle Valo 	cmd = (struct wmi_add_krk_cmd *) skb->data;
2156bdcd8170SKalle Valo 	memcpy(cmd->krk, krk, WMI_KRK_LEN);
2157bdcd8170SKalle Valo 
2158240d2799SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_KRK_CMDID,
2159334234b5SVasanthakumar Thiagarajan 				  NO_SYNC_WMIFLAG);
2160bdcd8170SKalle Valo 
2161bdcd8170SKalle Valo 	return ret;
2162bdcd8170SKalle Valo }
2163bdcd8170SKalle Valo 
2164334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_deletekey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index)
2165bdcd8170SKalle Valo {
2166bdcd8170SKalle Valo 	struct sk_buff *skb;
2167bdcd8170SKalle Valo 	struct wmi_delete_cipher_key_cmd *cmd;
2168bdcd8170SKalle Valo 	int ret;
2169bdcd8170SKalle Valo 
2170bdcd8170SKalle Valo 	if (key_index > WMI_MAX_KEY_INDEX)
2171bdcd8170SKalle Valo 		return -EINVAL;
2172bdcd8170SKalle Valo 
2173bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2174bdcd8170SKalle Valo 	if (!skb)
2175bdcd8170SKalle Valo 		return -ENOMEM;
2176bdcd8170SKalle Valo 
2177bdcd8170SKalle Valo 	cmd = (struct wmi_delete_cipher_key_cmd *) skb->data;
2178bdcd8170SKalle Valo 	cmd->key_index = key_index;
2179bdcd8170SKalle Valo 
2180334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DELETE_CIPHER_KEY_CMDID,
2181bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2182bdcd8170SKalle Valo 
2183bdcd8170SKalle Valo 	return ret;
2184bdcd8170SKalle Valo }
2185bdcd8170SKalle Valo 
2186334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_setpmkid_cmd(struct wmi *wmi, u8 if_idx, const u8 *bssid,
2187bdcd8170SKalle Valo 			    const u8 *pmkid, bool set)
2188bdcd8170SKalle Valo {
2189bdcd8170SKalle Valo 	struct sk_buff *skb;
2190bdcd8170SKalle Valo 	struct wmi_setpmkid_cmd *cmd;
2191bdcd8170SKalle Valo 	int ret;
2192bdcd8170SKalle Valo 
2193bdcd8170SKalle Valo 	if (bssid == NULL)
2194bdcd8170SKalle Valo 		return -EINVAL;
2195bdcd8170SKalle Valo 
2196bdcd8170SKalle Valo 	if (set && pmkid == NULL)
2197bdcd8170SKalle Valo 		return -EINVAL;
2198bdcd8170SKalle Valo 
2199bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2200bdcd8170SKalle Valo 	if (!skb)
2201bdcd8170SKalle Valo 		return -ENOMEM;
2202bdcd8170SKalle Valo 
2203bdcd8170SKalle Valo 	cmd = (struct wmi_setpmkid_cmd *) skb->data;
2204bdcd8170SKalle Valo 	memcpy(cmd->bssid, bssid, ETH_ALEN);
2205bdcd8170SKalle Valo 	if (set) {
2206bdcd8170SKalle Valo 		memcpy(cmd->pmkid, pmkid, sizeof(cmd->pmkid));
2207bdcd8170SKalle Valo 		cmd->enable = PMKID_ENABLE;
2208bdcd8170SKalle Valo 	} else {
2209bdcd8170SKalle Valo 		memset(cmd->pmkid, 0, sizeof(cmd->pmkid));
2210bdcd8170SKalle Valo 		cmd->enable = PMKID_DISABLE;
2211bdcd8170SKalle Valo 	}
2212bdcd8170SKalle Valo 
2213334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_PMKID_CMDID,
2214bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2215bdcd8170SKalle Valo 
2216bdcd8170SKalle Valo 	return ret;
2217bdcd8170SKalle Valo }
2218bdcd8170SKalle Valo 
2219bdcd8170SKalle Valo static int ath6kl_wmi_data_sync_send(struct wmi *wmi, struct sk_buff *skb,
22206765d0aaSVasanthakumar Thiagarajan 			      enum htc_endpoint_id ep_id, u8 if_idx)
2221bdcd8170SKalle Valo {
2222bdcd8170SKalle Valo 	struct wmi_data_hdr *data_hdr;
2223bdcd8170SKalle Valo 	int ret;
2224bdcd8170SKalle Valo 
2225bdcd8170SKalle Valo 	if (WARN_ON(skb == NULL || ep_id == wmi->ep_id))
2226bdcd8170SKalle Valo 		return -EINVAL;
2227bdcd8170SKalle Valo 
2228bdcd8170SKalle Valo 	skb_push(skb, sizeof(struct wmi_data_hdr));
2229bdcd8170SKalle Valo 
2230bdcd8170SKalle Valo 	data_hdr = (struct wmi_data_hdr *) skb->data;
2231bdcd8170SKalle Valo 	data_hdr->info = SYNC_MSGTYPE << WMI_DATA_HDR_MSG_TYPE_SHIFT;
22326765d0aaSVasanthakumar Thiagarajan 	data_hdr->info3 = cpu_to_le16(if_idx & WMI_DATA_HDR_IF_IDX_MASK);
2233bdcd8170SKalle Valo 
2234bdcd8170SKalle Valo 	ret = ath6kl_control_tx(wmi->parent_dev, skb, ep_id);
2235bdcd8170SKalle Valo 
2236bdcd8170SKalle Valo 	return ret;
2237bdcd8170SKalle Valo }
2238bdcd8170SKalle Valo 
2239240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_sync_point(struct wmi *wmi, u8 if_idx)
2240bdcd8170SKalle Valo {
2241bdcd8170SKalle Valo 	struct sk_buff *skb;
2242bdcd8170SKalle Valo 	struct wmi_sync_cmd *cmd;
2243bdcd8170SKalle Valo 	struct wmi_data_sync_bufs data_sync_bufs[WMM_NUM_AC];
2244bdcd8170SKalle Valo 	enum htc_endpoint_id ep_id;
2245bdcd8170SKalle Valo 	u8 index, num_pri_streams = 0;
2246bdcd8170SKalle Valo 	int ret = 0;
2247bdcd8170SKalle Valo 
2248bdcd8170SKalle Valo 	memset(data_sync_bufs, 0, sizeof(data_sync_bufs));
2249bdcd8170SKalle Valo 
2250bdcd8170SKalle Valo 	spin_lock_bh(&wmi->lock);
2251bdcd8170SKalle Valo 
2252bdcd8170SKalle Valo 	for (index = 0; index < WMM_NUM_AC; index++) {
2253bdcd8170SKalle Valo 		if (wmi->fat_pipe_exist & (1 << index)) {
2254bdcd8170SKalle Valo 			num_pri_streams++;
2255bdcd8170SKalle Valo 			data_sync_bufs[num_pri_streams - 1].traffic_class =
2256bdcd8170SKalle Valo 			    index;
2257bdcd8170SKalle Valo 		}
2258bdcd8170SKalle Valo 	}
2259bdcd8170SKalle Valo 
2260bdcd8170SKalle Valo 	spin_unlock_bh(&wmi->lock);
2261bdcd8170SKalle Valo 
2262bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2263bdcd8170SKalle Valo 	if (!skb) {
2264bdcd8170SKalle Valo 		ret = -ENOMEM;
2265bdcd8170SKalle Valo 		goto free_skb;
2266bdcd8170SKalle Valo 	}
2267bdcd8170SKalle Valo 
2268bdcd8170SKalle Valo 	cmd = (struct wmi_sync_cmd *) skb->data;
2269bdcd8170SKalle Valo 
2270bdcd8170SKalle Valo 	/*
2271bdcd8170SKalle Valo 	 * In the SYNC cmd sent on the control Ep, send a bitmap
2272bdcd8170SKalle Valo 	 * of the data eps on which the Data Sync will be sent
2273bdcd8170SKalle Valo 	 */
2274bdcd8170SKalle Valo 	cmd->data_sync_map = wmi->fat_pipe_exist;
2275bdcd8170SKalle Valo 
2276bdcd8170SKalle Valo 	for (index = 0; index < num_pri_streams; index++) {
2277bdcd8170SKalle Valo 		data_sync_bufs[index].skb = ath6kl_buf_alloc(0);
2278bdcd8170SKalle Valo 		if (data_sync_bufs[index].skb == NULL) {
2279bdcd8170SKalle Valo 			ret = -ENOMEM;
2280bdcd8170SKalle Valo 			break;
2281bdcd8170SKalle Valo 		}
2282bdcd8170SKalle Valo 	}
2283bdcd8170SKalle Valo 
2284bdcd8170SKalle Valo 	/*
2285bdcd8170SKalle Valo 	 * If buffer allocation for any of the dataSync fails,
2286bdcd8170SKalle Valo 	 * then do not send the Synchronize cmd on the control ep
2287bdcd8170SKalle Valo 	 */
2288bdcd8170SKalle Valo 	if (ret)
2289bdcd8170SKalle Valo 		goto free_skb;
2290bdcd8170SKalle Valo 
2291bdcd8170SKalle Valo 	/*
2292bdcd8170SKalle Valo 	 * Send sync cmd followed by sync data messages on all
2293bdcd8170SKalle Valo 	 * endpoints being used
2294bdcd8170SKalle Valo 	 */
2295240d2799SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SYNCHRONIZE_CMDID,
2296bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2297bdcd8170SKalle Valo 
2298bdcd8170SKalle Valo 	if (ret)
2299bdcd8170SKalle Valo 		goto free_skb;
2300bdcd8170SKalle Valo 
2301bdcd8170SKalle Valo 	/* cmd buffer sent, we no longer own it */
2302bdcd8170SKalle Valo 	skb = NULL;
2303bdcd8170SKalle Valo 
2304bdcd8170SKalle Valo 	for (index = 0; index < num_pri_streams; index++) {
2305bdcd8170SKalle Valo 
2306bdcd8170SKalle Valo 		if (WARN_ON(!data_sync_bufs[index].skb))
2307bdcd8170SKalle Valo 			break;
2308bdcd8170SKalle Valo 
2309bdcd8170SKalle Valo 		ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev,
2310bdcd8170SKalle Valo 					       data_sync_bufs[index].
2311bdcd8170SKalle Valo 					       traffic_class);
2312bdcd8170SKalle Valo 		ret =
2313bdcd8170SKalle Valo 		    ath6kl_wmi_data_sync_send(wmi, data_sync_bufs[index].skb,
23146765d0aaSVasanthakumar Thiagarajan 					      ep_id, if_idx);
2315bdcd8170SKalle Valo 
2316bdcd8170SKalle Valo 		if (ret)
2317bdcd8170SKalle Valo 			break;
2318bdcd8170SKalle Valo 
2319bdcd8170SKalle Valo 		data_sync_bufs[index].skb = NULL;
2320bdcd8170SKalle Valo 	}
2321bdcd8170SKalle Valo 
2322bdcd8170SKalle Valo free_skb:
2323bdcd8170SKalle Valo 	/* free up any resources left over (possibly due to an error) */
2324bdcd8170SKalle Valo 	if (skb)
2325bdcd8170SKalle Valo 		dev_kfree_skb(skb);
2326bdcd8170SKalle Valo 
2327bdcd8170SKalle Valo 	for (index = 0; index < num_pri_streams; index++) {
2328bdcd8170SKalle Valo 		if (data_sync_bufs[index].skb != NULL) {
2329bdcd8170SKalle Valo 			dev_kfree_skb((struct sk_buff *)data_sync_bufs[index].
2330bdcd8170SKalle Valo 				      skb);
2331bdcd8170SKalle Valo 		}
2332bdcd8170SKalle Valo 	}
2333bdcd8170SKalle Valo 
2334bdcd8170SKalle Valo 	return ret;
2335bdcd8170SKalle Valo }
2336bdcd8170SKalle Valo 
2337240d2799SVasanthakumar Thiagarajan int ath6kl_wmi_create_pstream_cmd(struct wmi *wmi, u8 if_idx,
2338bdcd8170SKalle Valo 				  struct wmi_create_pstream_cmd *params)
2339bdcd8170SKalle Valo {
2340bdcd8170SKalle Valo 	struct sk_buff *skb;
2341bdcd8170SKalle Valo 	struct wmi_create_pstream_cmd *cmd;
2342bdcd8170SKalle Valo 	u8 fatpipe_exist_for_ac = 0;
2343bdcd8170SKalle Valo 	s32 min_phy = 0;
2344bdcd8170SKalle Valo 	s32 nominal_phy = 0;
2345bdcd8170SKalle Valo 	int ret;
2346bdcd8170SKalle Valo 
2347bdcd8170SKalle Valo 	if (!((params->user_pri < 8) &&
2348bdcd8170SKalle Valo 	      (params->user_pri <= 0x7) &&
2349bdcd8170SKalle Valo 	      (up_to_ac[params->user_pri & 0x7] == params->traffic_class) &&
2350bdcd8170SKalle Valo 	      (params->traffic_direc == UPLINK_TRAFFIC ||
2351bdcd8170SKalle Valo 	       params->traffic_direc == DNLINK_TRAFFIC ||
2352bdcd8170SKalle Valo 	       params->traffic_direc == BIDIR_TRAFFIC) &&
2353bdcd8170SKalle Valo 	      (params->traffic_type == TRAFFIC_TYPE_APERIODIC ||
2354bdcd8170SKalle Valo 	       params->traffic_type == TRAFFIC_TYPE_PERIODIC) &&
2355bdcd8170SKalle Valo 	      (params->voice_psc_cap == DISABLE_FOR_THIS_AC ||
2356bdcd8170SKalle Valo 	       params->voice_psc_cap == ENABLE_FOR_THIS_AC ||
2357bdcd8170SKalle Valo 	       params->voice_psc_cap == ENABLE_FOR_ALL_AC) &&
2358bdcd8170SKalle Valo 	      (params->tsid == WMI_IMPLICIT_PSTREAM ||
2359bdcd8170SKalle Valo 	       params->tsid <= WMI_MAX_THINSTREAM))) {
2360bdcd8170SKalle Valo 		return -EINVAL;
2361bdcd8170SKalle Valo 	}
2362bdcd8170SKalle Valo 
2363bdcd8170SKalle Valo 	/*
2364bdcd8170SKalle Valo 	 * Check nominal PHY rate is >= minimalPHY,
2365bdcd8170SKalle Valo 	 * so that DUT can allow TSRS IE
2366bdcd8170SKalle Valo 	 */
2367bdcd8170SKalle Valo 
2368bdcd8170SKalle Valo 	/* Get the physical rate (units of bps) */
2369bdcd8170SKalle Valo 	min_phy = ((le32_to_cpu(params->min_phy_rate) / 1000) / 1000);
2370bdcd8170SKalle Valo 
2371bdcd8170SKalle Valo 	/* Check minimal phy < nominal phy rate */
2372bdcd8170SKalle Valo 	if (params->nominal_phy >= min_phy) {
2373bdcd8170SKalle Valo 		/* unit of 500 kbps */
2374bdcd8170SKalle Valo 		nominal_phy = (params->nominal_phy * 1000) / 500;
2375bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI,
2376bdcd8170SKalle Valo 			   "TSRS IE enabled::MinPhy %x->NominalPhy ===> %x\n",
2377bdcd8170SKalle Valo 			   min_phy, nominal_phy);
2378bdcd8170SKalle Valo 
2379bdcd8170SKalle Valo 		params->nominal_phy = nominal_phy;
2380bdcd8170SKalle Valo 	} else {
2381bdcd8170SKalle Valo 		params->nominal_phy = 0;
2382bdcd8170SKalle Valo 	}
2383bdcd8170SKalle Valo 
2384bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2385bdcd8170SKalle Valo 	if (!skb)
2386bdcd8170SKalle Valo 		return -ENOMEM;
2387bdcd8170SKalle Valo 
2388bdcd8170SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI,
2389bdcd8170SKalle Valo 		   "sending create_pstream_cmd: ac=%d  tsid:%d\n",
2390bdcd8170SKalle Valo 		   params->traffic_class, params->tsid);
2391bdcd8170SKalle Valo 
2392bdcd8170SKalle Valo 	cmd = (struct wmi_create_pstream_cmd *) skb->data;
2393bdcd8170SKalle Valo 	memcpy(cmd, params, sizeof(*cmd));
2394bdcd8170SKalle Valo 
2395bdcd8170SKalle Valo 	/* This is an implicitly created Fat pipe */
2396bdcd8170SKalle Valo 	if ((u32) params->tsid == (u32) WMI_IMPLICIT_PSTREAM) {
2397bdcd8170SKalle Valo 		spin_lock_bh(&wmi->lock);
2398bdcd8170SKalle Valo 		fatpipe_exist_for_ac = (wmi->fat_pipe_exist &
2399bdcd8170SKalle Valo 					(1 << params->traffic_class));
2400bdcd8170SKalle Valo 		wmi->fat_pipe_exist |= (1 << params->traffic_class);
2401bdcd8170SKalle Valo 		spin_unlock_bh(&wmi->lock);
2402bdcd8170SKalle Valo 	} else {
2403bdcd8170SKalle Valo 		/* explicitly created thin stream within a fat pipe */
2404bdcd8170SKalle Valo 		spin_lock_bh(&wmi->lock);
2405bdcd8170SKalle Valo 		fatpipe_exist_for_ac = (wmi->fat_pipe_exist &
2406bdcd8170SKalle Valo 					(1 << params->traffic_class));
2407bdcd8170SKalle Valo 		wmi->stream_exist_for_ac[params->traffic_class] |=
2408bdcd8170SKalle Valo 		    (1 << params->tsid);
2409bdcd8170SKalle Valo 		/*
2410bdcd8170SKalle Valo 		 * If a thinstream becomes active, the fat pipe automatically
2411bdcd8170SKalle Valo 		 * becomes active
2412bdcd8170SKalle Valo 		 */
2413bdcd8170SKalle Valo 		wmi->fat_pipe_exist |= (1 << params->traffic_class);
2414bdcd8170SKalle Valo 		spin_unlock_bh(&wmi->lock);
2415bdcd8170SKalle Valo 	}
2416bdcd8170SKalle Valo 
2417bdcd8170SKalle Valo 	/*
2418bdcd8170SKalle Valo 	 * Indicate activty change to driver layer only if this is the
2419bdcd8170SKalle Valo 	 * first TSID to get created in this AC explicitly or an implicit
2420bdcd8170SKalle Valo 	 * fat pipe is getting created.
2421bdcd8170SKalle Valo 	 */
2422bdcd8170SKalle Valo 	if (!fatpipe_exist_for_ac)
2423bdcd8170SKalle Valo 		ath6kl_indicate_tx_activity(wmi->parent_dev,
2424bdcd8170SKalle Valo 					    params->traffic_class, true);
2425bdcd8170SKalle Valo 
2426240d2799SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_CREATE_PSTREAM_CMDID,
2427bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2428bdcd8170SKalle Valo 	return ret;
2429bdcd8170SKalle Valo }
2430bdcd8170SKalle Valo 
2431240d2799SVasanthakumar Thiagarajan int ath6kl_wmi_delete_pstream_cmd(struct wmi *wmi, u8 if_idx, u8 traffic_class,
2432240d2799SVasanthakumar Thiagarajan 				  u8 tsid)
2433bdcd8170SKalle Valo {
2434bdcd8170SKalle Valo 	struct sk_buff *skb;
2435bdcd8170SKalle Valo 	struct wmi_delete_pstream_cmd *cmd;
2436bdcd8170SKalle Valo 	u16 active_tsids = 0;
2437bdcd8170SKalle Valo 	int ret;
2438bdcd8170SKalle Valo 
2439bdcd8170SKalle Valo 	if (traffic_class > 3) {
2440bdcd8170SKalle Valo 		ath6kl_err("invalid traffic class: %d\n", traffic_class);
2441bdcd8170SKalle Valo 		return -EINVAL;
2442bdcd8170SKalle Valo 	}
2443bdcd8170SKalle Valo 
2444bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2445bdcd8170SKalle Valo 	if (!skb)
2446bdcd8170SKalle Valo 		return -ENOMEM;
2447bdcd8170SKalle Valo 
2448bdcd8170SKalle Valo 	cmd = (struct wmi_delete_pstream_cmd *) skb->data;
2449bdcd8170SKalle Valo 	cmd->traffic_class = traffic_class;
2450bdcd8170SKalle Valo 	cmd->tsid = tsid;
2451bdcd8170SKalle Valo 
2452bdcd8170SKalle Valo 	spin_lock_bh(&wmi->lock);
2453bdcd8170SKalle Valo 	active_tsids = wmi->stream_exist_for_ac[traffic_class];
2454bdcd8170SKalle Valo 	spin_unlock_bh(&wmi->lock);
2455bdcd8170SKalle Valo 
2456bdcd8170SKalle Valo 	if (!(active_tsids & (1 << tsid))) {
2457bdcd8170SKalle Valo 		dev_kfree_skb(skb);
2458bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI,
2459bdcd8170SKalle Valo 			   "TSID %d doesn't exist for traffic class: %d\n",
2460bdcd8170SKalle Valo 			   tsid, traffic_class);
2461bdcd8170SKalle Valo 		return -ENODATA;
2462bdcd8170SKalle Valo 	}
2463bdcd8170SKalle Valo 
2464bdcd8170SKalle Valo 	ath6kl_dbg(ATH6KL_DBG_WMI,
2465bdcd8170SKalle Valo 		   "sending delete_pstream_cmd: traffic class: %d tsid=%d\n",
2466bdcd8170SKalle Valo 		   traffic_class, tsid);
2467bdcd8170SKalle Valo 
2468240d2799SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DELETE_PSTREAM_CMDID,
2469bdcd8170SKalle Valo 				  SYNC_BEFORE_WMIFLAG);
2470bdcd8170SKalle Valo 
2471bdcd8170SKalle Valo 	spin_lock_bh(&wmi->lock);
2472bdcd8170SKalle Valo 	wmi->stream_exist_for_ac[traffic_class] &= ~(1 << tsid);
2473bdcd8170SKalle Valo 	active_tsids = wmi->stream_exist_for_ac[traffic_class];
2474bdcd8170SKalle Valo 	spin_unlock_bh(&wmi->lock);
2475bdcd8170SKalle Valo 
2476bdcd8170SKalle Valo 	/*
2477bdcd8170SKalle Valo 	 * Indicate stream inactivity to driver layer only if all tsids
2478bdcd8170SKalle Valo 	 * within this AC are deleted.
2479bdcd8170SKalle Valo 	 */
2480bdcd8170SKalle Valo 	if (!active_tsids) {
2481bdcd8170SKalle Valo 		ath6kl_indicate_tx_activity(wmi->parent_dev,
2482bdcd8170SKalle Valo 					    traffic_class, false);
2483bdcd8170SKalle Valo 		wmi->fat_pipe_exist &= ~(1 << traffic_class);
2484bdcd8170SKalle Valo 	}
2485bdcd8170SKalle Valo 
2486bdcd8170SKalle Valo 	return ret;
2487bdcd8170SKalle Valo }
2488bdcd8170SKalle Valo 
2489ca1d16a0SRaja Mani int ath6kl_wmi_set_ip_cmd(struct wmi *wmi, u8 if_idx,
2490ca1d16a0SRaja Mani 			  __be32 ips0, __be32 ips1)
2491bdcd8170SKalle Valo {
2492bdcd8170SKalle Valo 	struct sk_buff *skb;
2493bdcd8170SKalle Valo 	struct wmi_set_ip_cmd *cmd;
2494bdcd8170SKalle Valo 	int ret;
2495bdcd8170SKalle Valo 
2496bdcd8170SKalle Valo 	/* Multicast address are not valid */
2497ca1d16a0SRaja Mani 	if (ipv4_is_multicast(ips0) ||
2498ca1d16a0SRaja Mani 	    ipv4_is_multicast(ips1))
2499bdcd8170SKalle Valo 		return -EINVAL;
2500bdcd8170SKalle Valo 
2501bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_ip_cmd));
2502bdcd8170SKalle Valo 	if (!skb)
2503bdcd8170SKalle Valo 		return -ENOMEM;
2504bdcd8170SKalle Valo 
2505bdcd8170SKalle Valo 	cmd = (struct wmi_set_ip_cmd *) skb->data;
2506ca1d16a0SRaja Mani 	cmd->ips[0] = ips0;
2507ca1d16a0SRaja Mani 	cmd->ips[1] = ips1;
2508bdcd8170SKalle Valo 
2509ca1d16a0SRaja Mani 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_IP_CMDID,
2510334234b5SVasanthakumar Thiagarajan 				  NO_SYNC_WMIFLAG);
2511bdcd8170SKalle Valo 	return ret;
2512bdcd8170SKalle Valo }
2513bdcd8170SKalle Valo 
251445cf110bSRaja Mani static void ath6kl_wmi_relinquish_implicit_pstream_credits(struct wmi *wmi)
251545cf110bSRaja Mani {
251645cf110bSRaja Mani 	u16 active_tsids;
251745cf110bSRaja Mani 	u8 stream_exist;
251845cf110bSRaja Mani 	int i;
251945cf110bSRaja Mani 
252045cf110bSRaja Mani 	/*
252145cf110bSRaja Mani 	 * Relinquish credits from all implicitly created pstreams
252245cf110bSRaja Mani 	 * since when we go to sleep. If user created explicit
252345cf110bSRaja Mani 	 * thinstreams exists with in a fatpipe leave them intact
252445cf110bSRaja Mani 	 * for the user to delete.
252545cf110bSRaja Mani 	 */
252645cf110bSRaja Mani 	spin_lock_bh(&wmi->lock);
252745cf110bSRaja Mani 	stream_exist = wmi->fat_pipe_exist;
252845cf110bSRaja Mani 	spin_unlock_bh(&wmi->lock);
252945cf110bSRaja Mani 
253045cf110bSRaja Mani 	for (i = 0; i < WMM_NUM_AC; i++) {
253145cf110bSRaja Mani 		if (stream_exist & (1 << i)) {
253245cf110bSRaja Mani 
253345cf110bSRaja Mani 			/*
253445cf110bSRaja Mani 			 * FIXME: Is this lock & unlock inside
253545cf110bSRaja Mani 			 * for loop correct? may need rework.
253645cf110bSRaja Mani 			 */
253745cf110bSRaja Mani 			spin_lock_bh(&wmi->lock);
253845cf110bSRaja Mani 			active_tsids = wmi->stream_exist_for_ac[i];
253945cf110bSRaja Mani 			spin_unlock_bh(&wmi->lock);
254045cf110bSRaja Mani 
254145cf110bSRaja Mani 			/*
254245cf110bSRaja Mani 			 * If there are no user created thin streams
254345cf110bSRaja Mani 			 * delete the fatpipe
254445cf110bSRaja Mani 			 */
254545cf110bSRaja Mani 			if (!active_tsids) {
254645cf110bSRaja Mani 				stream_exist &= ~(1 << i);
254745cf110bSRaja Mani 				/*
254845cf110bSRaja Mani 				 * Indicate inactivity to driver layer for
254945cf110bSRaja Mani 				 * this fatpipe (pstream)
255045cf110bSRaja Mani 				 */
255145cf110bSRaja Mani 				ath6kl_indicate_tx_activity(wmi->parent_dev,
255245cf110bSRaja Mani 							    i, false);
255345cf110bSRaja Mani 			}
255445cf110bSRaja Mani 		}
255545cf110bSRaja Mani 	}
255645cf110bSRaja Mani 
255745cf110bSRaja Mani 	/* FIXME: Can we do this assignment without locking ? */
255845cf110bSRaja Mani 	spin_lock_bh(&wmi->lock);
255945cf110bSRaja Mani 	wmi->fat_pipe_exist = stream_exist;
256045cf110bSRaja Mani 	spin_unlock_bh(&wmi->lock);
256145cf110bSRaja Mani }
256245cf110bSRaja Mani 
256345cf110bSRaja Mani int ath6kl_wmi_set_host_sleep_mode_cmd(struct wmi *wmi, u8 if_idx,
256445cf110bSRaja Mani 				       enum ath6kl_host_mode host_mode)
256545cf110bSRaja Mani {
256645cf110bSRaja Mani 	struct sk_buff *skb;
256745cf110bSRaja Mani 	struct wmi_set_host_sleep_mode_cmd *cmd;
256845cf110bSRaja Mani 	int ret;
256945cf110bSRaja Mani 
257045cf110bSRaja Mani 	if ((host_mode != ATH6KL_HOST_MODE_ASLEEP) &&
257145cf110bSRaja Mani 	    (host_mode != ATH6KL_HOST_MODE_AWAKE)) {
257245cf110bSRaja Mani 		ath6kl_err("invalid host sleep mode: %d\n", host_mode);
257345cf110bSRaja Mani 		return -EINVAL;
257445cf110bSRaja Mani 	}
257545cf110bSRaja Mani 
257645cf110bSRaja Mani 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
257745cf110bSRaja Mani 	if (!skb)
257845cf110bSRaja Mani 		return -ENOMEM;
257945cf110bSRaja Mani 
258045cf110bSRaja Mani 	cmd = (struct wmi_set_host_sleep_mode_cmd *) skb->data;
258145cf110bSRaja Mani 
258245cf110bSRaja Mani 	if (host_mode == ATH6KL_HOST_MODE_ASLEEP) {
258345cf110bSRaja Mani 		ath6kl_wmi_relinquish_implicit_pstream_credits(wmi);
258445cf110bSRaja Mani 		cmd->asleep = cpu_to_le32(1);
258545cf110bSRaja Mani 	} else
258645cf110bSRaja Mani 		cmd->awake = cpu_to_le32(1);
258745cf110bSRaja Mani 
258845cf110bSRaja Mani 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb,
258945cf110bSRaja Mani 				  WMI_SET_HOST_SLEEP_MODE_CMDID,
259045cf110bSRaja Mani 				  NO_SYNC_WMIFLAG);
259145cf110bSRaja Mani 	return ret;
259245cf110bSRaja Mani }
259345cf110bSRaja Mani 
2594081c7a84SRaja Mani /* This command has zero length payload */
2595081c7a84SRaja Mani static int ath6kl_wmi_host_sleep_mode_cmd_prcd_evt_rx(struct wmi *wmi,
2596081c7a84SRaja Mani 						      struct ath6kl_vif *vif)
2597081c7a84SRaja Mani {
2598081c7a84SRaja Mani 	struct ath6kl *ar = wmi->parent_dev;
2599081c7a84SRaja Mani 
2600081c7a84SRaja Mani 	set_bit(HOST_SLEEP_MODE_CMD_PROCESSED, &vif->flags);
2601081c7a84SRaja Mani 	wake_up(&ar->event_wq);
2602081c7a84SRaja Mani 
2603081c7a84SRaja Mani 	return 0;
2604081c7a84SRaja Mani }
2605081c7a84SRaja Mani 
260645cf110bSRaja Mani int ath6kl_wmi_set_wow_mode_cmd(struct wmi *wmi, u8 if_idx,
260745cf110bSRaja Mani 				enum ath6kl_wow_mode wow_mode,
260845cf110bSRaja Mani 				u32 filter, u16 host_req_delay)
260945cf110bSRaja Mani {
261045cf110bSRaja Mani 	struct sk_buff *skb;
261145cf110bSRaja Mani 	struct wmi_set_wow_mode_cmd *cmd;
261245cf110bSRaja Mani 	int ret;
261345cf110bSRaja Mani 
261445cf110bSRaja Mani 	if ((wow_mode != ATH6KL_WOW_MODE_ENABLE) &&
261545cf110bSRaja Mani 	     wow_mode != ATH6KL_WOW_MODE_DISABLE) {
261645cf110bSRaja Mani 		ath6kl_err("invalid wow mode: %d\n", wow_mode);
261745cf110bSRaja Mani 		return -EINVAL;
261845cf110bSRaja Mani 	}
261945cf110bSRaja Mani 
262045cf110bSRaja Mani 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
262145cf110bSRaja Mani 	if (!skb)
262245cf110bSRaja Mani 		return -ENOMEM;
262345cf110bSRaja Mani 
262445cf110bSRaja Mani 	cmd = (struct wmi_set_wow_mode_cmd *) skb->data;
262545cf110bSRaja Mani 	cmd->enable_wow = cpu_to_le32(wow_mode);
262645cf110bSRaja Mani 	cmd->filter = cpu_to_le32(filter);
262745cf110bSRaja Mani 	cmd->host_req_delay = cpu_to_le16(host_req_delay);
262845cf110bSRaja Mani 
262945cf110bSRaja Mani 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_WOW_MODE_CMDID,
263045cf110bSRaja Mani 				  NO_SYNC_WMIFLAG);
263145cf110bSRaja Mani 	return ret;
263245cf110bSRaja Mani }
263345cf110bSRaja Mani 
26345c9b4fa1SRaja Mani int ath6kl_wmi_add_wow_pattern_cmd(struct wmi *wmi, u8 if_idx,
26355c9b4fa1SRaja Mani 				   u8 list_id, u8 filter_size,
2636d91e8eeeSRaja Mani 				   u8 filter_offset, const u8 *filter,
2637d91e8eeeSRaja Mani 				   const u8 *mask)
26385c9b4fa1SRaja Mani {
26395c9b4fa1SRaja Mani 	struct sk_buff *skb;
26405c9b4fa1SRaja Mani 	struct wmi_add_wow_pattern_cmd *cmd;
26415c9b4fa1SRaja Mani 	u16 size;
26425c9b4fa1SRaja Mani 	u8 *filter_mask;
26435c9b4fa1SRaja Mani 	int ret;
26445c9b4fa1SRaja Mani 
26455c9b4fa1SRaja Mani 	/*
26465c9b4fa1SRaja Mani 	 * Allocate additional memory in the buffer to hold
26475c9b4fa1SRaja Mani 	 * filter and mask value, which is twice of filter_size.
26485c9b4fa1SRaja Mani 	 */
26495c9b4fa1SRaja Mani 	size = sizeof(*cmd) + (2 * filter_size);
26505c9b4fa1SRaja Mani 
26515c9b4fa1SRaja Mani 	skb = ath6kl_wmi_get_new_buf(size);
26525c9b4fa1SRaja Mani 	if (!skb)
26535c9b4fa1SRaja Mani 		return -ENOMEM;
26545c9b4fa1SRaja Mani 
26555c9b4fa1SRaja Mani 	cmd = (struct wmi_add_wow_pattern_cmd *) skb->data;
26565c9b4fa1SRaja Mani 	cmd->filter_list_id = list_id;
26575c9b4fa1SRaja Mani 	cmd->filter_size = filter_size;
26585c9b4fa1SRaja Mani 	cmd->filter_offset = filter_offset;
26595c9b4fa1SRaja Mani 
26605c9b4fa1SRaja Mani 	memcpy(cmd->filter, filter, filter_size);
26615c9b4fa1SRaja Mani 
26625c9b4fa1SRaja Mani 	filter_mask = (u8 *) (cmd->filter + filter_size);
26635c9b4fa1SRaja Mani 	memcpy(filter_mask, mask, filter_size);
26645c9b4fa1SRaja Mani 
26655c9b4fa1SRaja Mani 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_ADD_WOW_PATTERN_CMDID,
26665c9b4fa1SRaja Mani 				  NO_SYNC_WMIFLAG);
26675c9b4fa1SRaja Mani 
26685c9b4fa1SRaja Mani 	return ret;
26695c9b4fa1SRaja Mani }
26705c9b4fa1SRaja Mani 
26715c9b4fa1SRaja Mani int ath6kl_wmi_del_wow_pattern_cmd(struct wmi *wmi, u8 if_idx,
26725c9b4fa1SRaja Mani 				   u16 list_id, u16 filter_id)
26735c9b4fa1SRaja Mani {
26745c9b4fa1SRaja Mani 	struct sk_buff *skb;
26755c9b4fa1SRaja Mani 	struct wmi_del_wow_pattern_cmd *cmd;
26765c9b4fa1SRaja Mani 	int ret;
26775c9b4fa1SRaja Mani 
26785c9b4fa1SRaja Mani 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
26795c9b4fa1SRaja Mani 	if (!skb)
26805c9b4fa1SRaja Mani 		return -ENOMEM;
26815c9b4fa1SRaja Mani 
26825c9b4fa1SRaja Mani 	cmd = (struct wmi_del_wow_pattern_cmd *) skb->data;
26835c9b4fa1SRaja Mani 	cmd->filter_list_id = cpu_to_le16(list_id);
26845c9b4fa1SRaja Mani 	cmd->filter_id = cpu_to_le16(filter_id);
26855c9b4fa1SRaja Mani 
26865c9b4fa1SRaja Mani 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_DEL_WOW_PATTERN_CMDID,
26875c9b4fa1SRaja Mani 				  NO_SYNC_WMIFLAG);
26885c9b4fa1SRaja Mani 	return ret;
26895c9b4fa1SRaja Mani }
26905c9b4fa1SRaja Mani 
2691bdcd8170SKalle Valo static int ath6kl_wmi_cmd_send_xtnd(struct wmi *wmi, struct sk_buff *skb,
2692bdcd8170SKalle Valo 				    enum wmix_command_id cmd_id,
2693bdcd8170SKalle Valo 				    enum wmi_sync_flag sync_flag)
2694bdcd8170SKalle Valo {
2695bdcd8170SKalle Valo 	struct wmix_cmd_hdr *cmd_hdr;
2696bdcd8170SKalle Valo 	int ret;
2697bdcd8170SKalle Valo 
2698bdcd8170SKalle Valo 	skb_push(skb, sizeof(struct wmix_cmd_hdr));
2699bdcd8170SKalle Valo 
2700bdcd8170SKalle Valo 	cmd_hdr = (struct wmix_cmd_hdr *) skb->data;
2701bdcd8170SKalle Valo 	cmd_hdr->cmd_id = cpu_to_le32(cmd_id);
2702bdcd8170SKalle Valo 
2703334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_EXTENSION_CMDID, sync_flag);
2704bdcd8170SKalle Valo 
2705bdcd8170SKalle Valo 	return ret;
2706bdcd8170SKalle Valo }
2707bdcd8170SKalle Valo 
2708bdcd8170SKalle Valo int ath6kl_wmi_get_challenge_resp_cmd(struct wmi *wmi, u32 cookie, u32 source)
2709bdcd8170SKalle Valo {
2710bdcd8170SKalle Valo 	struct sk_buff *skb;
2711bdcd8170SKalle Valo 	struct wmix_hb_challenge_resp_cmd *cmd;
2712bdcd8170SKalle Valo 	int ret;
2713bdcd8170SKalle Valo 
2714bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2715bdcd8170SKalle Valo 	if (!skb)
2716bdcd8170SKalle Valo 		return -ENOMEM;
2717bdcd8170SKalle Valo 
2718bdcd8170SKalle Valo 	cmd = (struct wmix_hb_challenge_resp_cmd *) skb->data;
2719bdcd8170SKalle Valo 	cmd->cookie = cpu_to_le32(cookie);
2720bdcd8170SKalle Valo 	cmd->source = cpu_to_le32(source);
2721bdcd8170SKalle Valo 
2722bdcd8170SKalle Valo 	ret = ath6kl_wmi_cmd_send_xtnd(wmi, skb, WMIX_HB_CHALLENGE_RESP_CMDID,
2723bdcd8170SKalle Valo 				       NO_SYNC_WMIFLAG);
2724bdcd8170SKalle Valo 	return ret;
2725bdcd8170SKalle Valo }
2726bdcd8170SKalle Valo 
2727939f1cceSKalle Valo int ath6kl_wmi_config_debug_module_cmd(struct wmi *wmi, u32 valid, u32 config)
2728939f1cceSKalle Valo {
2729939f1cceSKalle Valo 	struct ath6kl_wmix_dbglog_cfg_module_cmd *cmd;
2730939f1cceSKalle Valo 	struct sk_buff *skb;
2731939f1cceSKalle Valo 	int ret;
2732939f1cceSKalle Valo 
2733939f1cceSKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2734939f1cceSKalle Valo 	if (!skb)
2735939f1cceSKalle Valo 		return -ENOMEM;
2736939f1cceSKalle Valo 
2737939f1cceSKalle Valo 	cmd = (struct ath6kl_wmix_dbglog_cfg_module_cmd *) skb->data;
2738939f1cceSKalle Valo 	cmd->valid = cpu_to_le32(valid);
2739939f1cceSKalle Valo 	cmd->config = cpu_to_le32(config);
2740939f1cceSKalle Valo 
2741939f1cceSKalle Valo 	ret = ath6kl_wmi_cmd_send_xtnd(wmi, skb, WMIX_DBGLOG_CFG_MODULE_CMDID,
2742939f1cceSKalle Valo 				       NO_SYNC_WMIFLAG);
2743939f1cceSKalle Valo 	return ret;
2744939f1cceSKalle Valo }
2745939f1cceSKalle Valo 
2746334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_get_stats_cmd(struct wmi *wmi, u8 if_idx)
2747bdcd8170SKalle Valo {
2748334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_GET_STATISTICS_CMDID);
2749bdcd8170SKalle Valo }
2750bdcd8170SKalle Valo 
2751990bd915SVasanthakumar Thiagarajan int ath6kl_wmi_set_tx_pwr_cmd(struct wmi *wmi, u8 if_idx, u8 dbM)
2752bdcd8170SKalle Valo {
2753bdcd8170SKalle Valo 	struct sk_buff *skb;
2754bdcd8170SKalle Valo 	struct wmi_set_tx_pwr_cmd *cmd;
2755bdcd8170SKalle Valo 	int ret;
2756bdcd8170SKalle Valo 
2757bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_tx_pwr_cmd));
2758bdcd8170SKalle Valo 	if (!skb)
2759bdcd8170SKalle Valo 		return -ENOMEM;
2760bdcd8170SKalle Valo 
2761bdcd8170SKalle Valo 	cmd = (struct wmi_set_tx_pwr_cmd *) skb->data;
2762bdcd8170SKalle Valo 	cmd->dbM = dbM;
2763bdcd8170SKalle Valo 
2764990bd915SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_TX_PWR_CMDID,
2765bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2766bdcd8170SKalle Valo 
2767bdcd8170SKalle Valo 	return ret;
2768bdcd8170SKalle Valo }
2769bdcd8170SKalle Valo 
2770990bd915SVasanthakumar Thiagarajan int ath6kl_wmi_get_tx_pwr_cmd(struct wmi *wmi, u8 if_idx)
2771bdcd8170SKalle Valo {
2772990bd915SVasanthakumar Thiagarajan 	return ath6kl_wmi_simple_cmd(wmi, if_idx, WMI_GET_TX_PWR_CMDID);
2773bdcd8170SKalle Valo }
2774bdcd8170SKalle Valo 
27754b28a80dSJouni Malinen int ath6kl_wmi_get_roam_tbl_cmd(struct wmi *wmi)
27764b28a80dSJouni Malinen {
2777334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_simple_cmd(wmi, 0, WMI_GET_ROAM_TBL_CMDID);
27784b28a80dSJouni Malinen }
27794b28a80dSJouni Malinen 
27800ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_set_lpreamble_cmd(struct wmi *wmi, u8 if_idx, u8 status,
27810ce59445SVasanthakumar Thiagarajan 				 u8 preamble_policy)
2782bdcd8170SKalle Valo {
2783bdcd8170SKalle Valo 	struct sk_buff *skb;
2784bdcd8170SKalle Valo 	struct wmi_set_lpreamble_cmd *cmd;
2785bdcd8170SKalle Valo 	int ret;
2786bdcd8170SKalle Valo 
2787bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_lpreamble_cmd));
2788bdcd8170SKalle Valo 	if (!skb)
2789bdcd8170SKalle Valo 		return -ENOMEM;
2790bdcd8170SKalle Valo 
2791bdcd8170SKalle Valo 	cmd = (struct wmi_set_lpreamble_cmd *) skb->data;
2792bdcd8170SKalle Valo 	cmd->status = status;
2793bdcd8170SKalle Valo 	cmd->preamble_policy = preamble_policy;
2794bdcd8170SKalle Valo 
27950ce59445SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_LPREAMBLE_CMDID,
2796bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2797bdcd8170SKalle Valo 	return ret;
2798bdcd8170SKalle Valo }
2799bdcd8170SKalle Valo 
2800bdcd8170SKalle Valo int ath6kl_wmi_set_rts_cmd(struct wmi *wmi, u16 threshold)
2801bdcd8170SKalle Valo {
2802bdcd8170SKalle Valo 	struct sk_buff *skb;
2803bdcd8170SKalle Valo 	struct wmi_set_rts_cmd *cmd;
2804bdcd8170SKalle Valo 	int ret;
2805bdcd8170SKalle Valo 
2806bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_rts_cmd));
2807bdcd8170SKalle Valo 	if (!skb)
2808bdcd8170SKalle Valo 		return -ENOMEM;
2809bdcd8170SKalle Valo 
2810bdcd8170SKalle Valo 	cmd = (struct wmi_set_rts_cmd *) skb->data;
2811bdcd8170SKalle Valo 	cmd->threshold = cpu_to_le16(threshold);
2812bdcd8170SKalle Valo 
2813334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_SET_RTS_CMDID,
2814334234b5SVasanthakumar Thiagarajan 				  NO_SYNC_WMIFLAG);
2815bdcd8170SKalle Valo 	return ret;
2816bdcd8170SKalle Valo }
2817bdcd8170SKalle Valo 
28180ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_set_wmm_txop(struct wmi *wmi, u8 if_idx, enum wmi_txop_cfg cfg)
2819bdcd8170SKalle Valo {
2820bdcd8170SKalle Valo 	struct sk_buff *skb;
2821bdcd8170SKalle Valo 	struct wmi_set_wmm_txop_cmd *cmd;
2822bdcd8170SKalle Valo 	int ret;
2823bdcd8170SKalle Valo 
2824bdcd8170SKalle Valo 	if (!((cfg == WMI_TXOP_DISABLED) || (cfg == WMI_TXOP_ENABLED)))
2825bdcd8170SKalle Valo 		return -EINVAL;
2826bdcd8170SKalle Valo 
2827bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_set_wmm_txop_cmd));
2828bdcd8170SKalle Valo 	if (!skb)
2829bdcd8170SKalle Valo 		return -ENOMEM;
2830bdcd8170SKalle Valo 
2831bdcd8170SKalle Valo 	cmd = (struct wmi_set_wmm_txop_cmd *) skb->data;
2832bdcd8170SKalle Valo 	cmd->txop_enable = cfg;
2833bdcd8170SKalle Valo 
28340ce59445SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_WMM_TXOP_CMDID,
2835bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2836bdcd8170SKalle Valo 	return ret;
2837bdcd8170SKalle Valo }
2838bdcd8170SKalle Valo 
28390ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_set_keepalive_cmd(struct wmi *wmi, u8 if_idx,
28400ce59445SVasanthakumar Thiagarajan 				 u8 keep_alive_intvl)
2841bdcd8170SKalle Valo {
2842bdcd8170SKalle Valo 	struct sk_buff *skb;
2843bdcd8170SKalle Valo 	struct wmi_set_keepalive_cmd *cmd;
2844bdcd8170SKalle Valo 	int ret;
2845bdcd8170SKalle Valo 
2846bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2847bdcd8170SKalle Valo 	if (!skb)
2848bdcd8170SKalle Valo 		return -ENOMEM;
2849bdcd8170SKalle Valo 
2850bdcd8170SKalle Valo 	cmd = (struct wmi_set_keepalive_cmd *) skb->data;
2851bdcd8170SKalle Valo 	cmd->keep_alive_intvl = keep_alive_intvl;
2852bdcd8170SKalle Valo 
28530ce59445SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_KEEPALIVE_CMDID,
2854bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
2855334234b5SVasanthakumar Thiagarajan 
2856ff0b0075SJouni Malinen 	if (ret == 0)
2857ff0b0075SJouni Malinen 		ath6kl_debug_set_keepalive(wmi->parent_dev, keep_alive_intvl);
2858334234b5SVasanthakumar Thiagarajan 
2859bdcd8170SKalle Valo 	return ret;
2860bdcd8170SKalle Valo }
2861bdcd8170SKalle Valo 
2862003353b0SKalle Valo int ath6kl_wmi_test_cmd(struct wmi *wmi, void *buf, size_t len)
2863003353b0SKalle Valo {
2864003353b0SKalle Valo 	struct sk_buff *skb;
2865003353b0SKalle Valo 	int ret;
2866003353b0SKalle Valo 
2867003353b0SKalle Valo 	skb = ath6kl_wmi_get_new_buf(len);
2868003353b0SKalle Valo 	if (!skb)
2869003353b0SKalle Valo 		return -ENOMEM;
2870003353b0SKalle Valo 
2871003353b0SKalle Valo 	memcpy(skb->data, buf, len);
2872003353b0SKalle Valo 
2873334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_TEST_CMDID, NO_SYNC_WMIFLAG);
2874003353b0SKalle Valo 
2875003353b0SKalle Valo 	return ret;
2876003353b0SKalle Valo }
2877003353b0SKalle Valo 
28783f3c4ee7SVasanthakumar Thiagarajan int ath6kl_wmi_mcast_filter_cmd(struct wmi *wmi, u8 if_idx, bool mc_all_on)
28793f3c4ee7SVasanthakumar Thiagarajan {
28803f3c4ee7SVasanthakumar Thiagarajan 	struct sk_buff *skb;
28813f3c4ee7SVasanthakumar Thiagarajan 	struct wmi_mcast_filter_cmd *cmd;
28823f3c4ee7SVasanthakumar Thiagarajan 	int ret;
28833f3c4ee7SVasanthakumar Thiagarajan 
28843f3c4ee7SVasanthakumar Thiagarajan 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
28853f3c4ee7SVasanthakumar Thiagarajan 	if (!skb)
28863f3c4ee7SVasanthakumar Thiagarajan 		return -ENOMEM;
28873f3c4ee7SVasanthakumar Thiagarajan 
28883f3c4ee7SVasanthakumar Thiagarajan 	cmd = (struct wmi_mcast_filter_cmd *) skb->data;
28893f3c4ee7SVasanthakumar Thiagarajan 	cmd->mcast_all_enable = mc_all_on;
28903f3c4ee7SVasanthakumar Thiagarajan 
28913f3c4ee7SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_MCAST_FILTER_CMDID,
28923f3c4ee7SVasanthakumar Thiagarajan 				  NO_SYNC_WMIFLAG);
28933f3c4ee7SVasanthakumar Thiagarajan 	return ret;
28943f3c4ee7SVasanthakumar Thiagarajan }
2895003353b0SKalle Valo 
2896f914edd3SVasanthakumar Thiagarajan int ath6kl_wmi_add_del_mcast_filter_cmd(struct wmi *wmi, u8 if_idx,
2897f914edd3SVasanthakumar Thiagarajan 					u8 *filter, bool add_filter)
2898f914edd3SVasanthakumar Thiagarajan {
2899f914edd3SVasanthakumar Thiagarajan 	struct sk_buff *skb;
2900f914edd3SVasanthakumar Thiagarajan 	struct wmi_mcast_filter_add_del_cmd *cmd;
2901f914edd3SVasanthakumar Thiagarajan 	int ret;
2902f914edd3SVasanthakumar Thiagarajan 
2903f914edd3SVasanthakumar Thiagarajan 	if ((filter[0] != 0x33 || filter[1] != 0x33) &&
2904f914edd3SVasanthakumar Thiagarajan 	    (filter[0] != 0x01 || filter[1] != 0x00 ||
2905f914edd3SVasanthakumar Thiagarajan 	    filter[2] != 0x5e || filter[3] > 0x7f)) {
2906f914edd3SVasanthakumar Thiagarajan 		ath6kl_warn("invalid multicast filter address\n");
2907f914edd3SVasanthakumar Thiagarajan 		return -EINVAL;
2908f914edd3SVasanthakumar Thiagarajan 	}
2909f914edd3SVasanthakumar Thiagarajan 
2910f914edd3SVasanthakumar Thiagarajan 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
2911f914edd3SVasanthakumar Thiagarajan 	if (!skb)
2912f914edd3SVasanthakumar Thiagarajan 		return -ENOMEM;
2913f914edd3SVasanthakumar Thiagarajan 
2914f914edd3SVasanthakumar Thiagarajan 	cmd = (struct wmi_mcast_filter_add_del_cmd *) skb->data;
2915f914edd3SVasanthakumar Thiagarajan 	memcpy(cmd->mcast_mac, filter, ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE);
2916f914edd3SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb,
2917f914edd3SVasanthakumar Thiagarajan 				  add_filter ? WMI_SET_MCAST_FILTER_CMDID :
2918f914edd3SVasanthakumar Thiagarajan 				  WMI_DEL_MCAST_FILTER_CMDID,
2919f914edd3SVasanthakumar Thiagarajan 				  NO_SYNC_WMIFLAG);
2920f914edd3SVasanthakumar Thiagarajan 
2921f914edd3SVasanthakumar Thiagarajan 	return ret;
2922f914edd3SVasanthakumar Thiagarajan }
2923f914edd3SVasanthakumar Thiagarajan 
2924bdcd8170SKalle Valo s32 ath6kl_wmi_get_rate(s8 rate_index)
2925bdcd8170SKalle Valo {
2926bdcd8170SKalle Valo 	if (rate_index == RATE_AUTO)
2927bdcd8170SKalle Valo 		return 0;
2928bdcd8170SKalle Valo 
2929bdcd8170SKalle Valo 	return wmi_rate_tbl[(u32) rate_index][0];
2930bdcd8170SKalle Valo }
2931bdcd8170SKalle Valo 
2932bdcd8170SKalle Valo static int ath6kl_wmi_get_pmkid_list_event_rx(struct wmi *wmi, u8 *datap,
2933bdcd8170SKalle Valo 					      u32 len)
2934bdcd8170SKalle Valo {
2935bdcd8170SKalle Valo 	struct wmi_pmkid_list_reply *reply;
2936bdcd8170SKalle Valo 	u32 expected_len;
2937bdcd8170SKalle Valo 
2938bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_pmkid_list_reply))
2939bdcd8170SKalle Valo 		return -EINVAL;
2940bdcd8170SKalle Valo 
2941bdcd8170SKalle Valo 	reply = (struct wmi_pmkid_list_reply *)datap;
2942bdcd8170SKalle Valo 	expected_len = sizeof(reply->num_pmkid) +
2943bdcd8170SKalle Valo 		le32_to_cpu(reply->num_pmkid) * WMI_PMKID_LEN;
2944bdcd8170SKalle Valo 
2945bdcd8170SKalle Valo 	if (len < expected_len)
2946bdcd8170SKalle Valo 		return -EINVAL;
2947bdcd8170SKalle Valo 
2948bdcd8170SKalle Valo 	return 0;
2949bdcd8170SKalle Valo }
2950bdcd8170SKalle Valo 
2951240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_addba_req_event_rx(struct wmi *wmi, u8 *datap, int len,
2952240d2799SVasanthakumar Thiagarajan 					 struct ath6kl_vif *vif)
2953bdcd8170SKalle Valo {
2954bdcd8170SKalle Valo 	struct wmi_addba_req_event *cmd = (struct wmi_addba_req_event *) datap;
2955bdcd8170SKalle Valo 
2956240d2799SVasanthakumar Thiagarajan 	aggr_recv_addba_req_evt(vif, cmd->tid,
2957bdcd8170SKalle Valo 				le16_to_cpu(cmd->st_seq_no), cmd->win_sz);
2958bdcd8170SKalle Valo 
2959bdcd8170SKalle Valo 	return 0;
2960bdcd8170SKalle Valo }
2961bdcd8170SKalle Valo 
2962240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_delba_req_event_rx(struct wmi *wmi, u8 *datap, int len,
2963240d2799SVasanthakumar Thiagarajan 					 struct ath6kl_vif *vif)
2964bdcd8170SKalle Valo {
2965bdcd8170SKalle Valo 	struct wmi_delba_event *cmd = (struct wmi_delba_event *) datap;
2966bdcd8170SKalle Valo 
2967240d2799SVasanthakumar Thiagarajan 	aggr_recv_delba_req_evt(vif, cmd->tid);
2968bdcd8170SKalle Valo 
2969bdcd8170SKalle Valo 	return 0;
2970bdcd8170SKalle Valo }
2971bdcd8170SKalle Valo 
2972bdcd8170SKalle Valo /*  AP mode functions */
29736a7c9badSJouni Malinen 
2974334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_ap_profile_commit(struct wmi *wmip, u8 if_idx,
2975334234b5SVasanthakumar Thiagarajan 				 struct wmi_connect_cmd *p)
29766a7c9badSJouni Malinen {
29776a7c9badSJouni Malinen 	struct sk_buff *skb;
29786a7c9badSJouni Malinen 	struct wmi_connect_cmd *cm;
29796a7c9badSJouni Malinen 	int res;
29806a7c9badSJouni Malinen 
29816a7c9badSJouni Malinen 	skb = ath6kl_wmi_get_new_buf(sizeof(*cm));
29826a7c9badSJouni Malinen 	if (!skb)
29836a7c9badSJouni Malinen 		return -ENOMEM;
29846a7c9badSJouni Malinen 
29856a7c9badSJouni Malinen 	cm = (struct wmi_connect_cmd *) skb->data;
29866a7c9badSJouni Malinen 	memcpy(cm, p, sizeof(*cm));
29876a7c9badSJouni Malinen 
2988334234b5SVasanthakumar Thiagarajan 	res = ath6kl_wmi_cmd_send(wmip, if_idx, skb, WMI_AP_CONFIG_COMMIT_CMDID,
29896a7c9badSJouni Malinen 				  NO_SYNC_WMIFLAG);
29906a7c9badSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "%s: nw_type=%u auth_mode=%u ch=%u "
29916a7c9badSJouni Malinen 		   "ctrl_flags=0x%x-> res=%d\n",
29926a7c9badSJouni Malinen 		   __func__, p->nw_type, p->auth_mode, le16_to_cpu(p->ch),
29936a7c9badSJouni Malinen 		   le32_to_cpu(p->ctrl_flags), res);
29946a7c9badSJouni Malinen 	return res;
29956a7c9badSJouni Malinen }
29966a7c9badSJouni Malinen 
2997334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_ap_set_mlme(struct wmi *wmip, u8 if_idx, u8 cmd, const u8 *mac,
2998334234b5SVasanthakumar Thiagarajan 			   u16 reason)
299923875136SJouni Malinen {
300023875136SJouni Malinen 	struct sk_buff *skb;
300123875136SJouni Malinen 	struct wmi_ap_set_mlme_cmd *cm;
300223875136SJouni Malinen 
300323875136SJouni Malinen 	skb = ath6kl_wmi_get_new_buf(sizeof(*cm));
300423875136SJouni Malinen 	if (!skb)
300523875136SJouni Malinen 		return -ENOMEM;
300623875136SJouni Malinen 
300723875136SJouni Malinen 	cm = (struct wmi_ap_set_mlme_cmd *) skb->data;
300823875136SJouni Malinen 	memcpy(cm->mac, mac, ETH_ALEN);
300923875136SJouni Malinen 	cm->reason = cpu_to_le16(reason);
301023875136SJouni Malinen 	cm->cmd = cmd;
301123875136SJouni Malinen 
3012334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmip, if_idx, skb, WMI_AP_SET_MLME_CMDID,
301323875136SJouni Malinen 				   NO_SYNC_WMIFLAG);
301423875136SJouni Malinen }
301523875136SJouni Malinen 
3016c1762a3fSThirumalai Pachamuthu /* This command will be used to enable/disable AP uAPSD feature */
3017c1762a3fSThirumalai Pachamuthu int ath6kl_wmi_ap_set_apsd(struct wmi *wmi, u8 if_idx, u8 enable)
3018c1762a3fSThirumalai Pachamuthu {
3019c1762a3fSThirumalai Pachamuthu 	struct wmi_ap_set_apsd_cmd *cmd;
3020c1762a3fSThirumalai Pachamuthu 	struct sk_buff *skb;
3021c1762a3fSThirumalai Pachamuthu 
3022c1762a3fSThirumalai Pachamuthu 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3023c1762a3fSThirumalai Pachamuthu 	if (!skb)
3024c1762a3fSThirumalai Pachamuthu 		return -ENOMEM;
3025c1762a3fSThirumalai Pachamuthu 
3026c1762a3fSThirumalai Pachamuthu 	cmd = (struct wmi_ap_set_apsd_cmd *)skb->data;
3027c1762a3fSThirumalai Pachamuthu 	cmd->enable = enable;
3028c1762a3fSThirumalai Pachamuthu 
3029c1762a3fSThirumalai Pachamuthu 	return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_SET_APSD_CMDID,
3030c1762a3fSThirumalai Pachamuthu 				   NO_SYNC_WMIFLAG);
3031c1762a3fSThirumalai Pachamuthu }
3032c1762a3fSThirumalai Pachamuthu 
3033c1762a3fSThirumalai Pachamuthu int ath6kl_wmi_set_apsd_bfrd_traf(struct wmi *wmi, u8 if_idx,
3034c1762a3fSThirumalai Pachamuthu 					     u16 aid, u16 bitmap, u32 flags)
3035c1762a3fSThirumalai Pachamuthu {
3036c1762a3fSThirumalai Pachamuthu 	struct wmi_ap_apsd_buffered_traffic_cmd *cmd;
3037c1762a3fSThirumalai Pachamuthu 	struct sk_buff *skb;
3038c1762a3fSThirumalai Pachamuthu 
3039c1762a3fSThirumalai Pachamuthu 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3040c1762a3fSThirumalai Pachamuthu 	if (!skb)
3041c1762a3fSThirumalai Pachamuthu 		return -ENOMEM;
3042c1762a3fSThirumalai Pachamuthu 
3043c1762a3fSThirumalai Pachamuthu 	cmd = (struct wmi_ap_apsd_buffered_traffic_cmd *)skb->data;
3044c1762a3fSThirumalai Pachamuthu 	cmd->aid = cpu_to_le16(aid);
3045c1762a3fSThirumalai Pachamuthu 	cmd->bitmap = cpu_to_le16(bitmap);
3046c1762a3fSThirumalai Pachamuthu 	cmd->flags = cpu_to_le32(flags);
3047c1762a3fSThirumalai Pachamuthu 
3048c1762a3fSThirumalai Pachamuthu 	return ath6kl_wmi_cmd_send(wmi, if_idx, skb,
3049c1762a3fSThirumalai Pachamuthu 				   WMI_AP_APSD_BUFFERED_TRAFFIC_CMDID,
3050c1762a3fSThirumalai Pachamuthu 				   NO_SYNC_WMIFLAG);
3051c1762a3fSThirumalai Pachamuthu }
3052c1762a3fSThirumalai Pachamuthu 
3053240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_pspoll_event_rx(struct wmi *wmi, u8 *datap, int len,
3054240d2799SVasanthakumar Thiagarajan 				      struct ath6kl_vif *vif)
3055bdcd8170SKalle Valo {
3056bdcd8170SKalle Valo 	struct wmi_pspoll_event *ev;
3057bdcd8170SKalle Valo 
3058bdcd8170SKalle Valo 	if (len < sizeof(struct wmi_pspoll_event))
3059bdcd8170SKalle Valo 		return -EINVAL;
3060bdcd8170SKalle Valo 
3061bdcd8170SKalle Valo 	ev = (struct wmi_pspoll_event *) datap;
3062bdcd8170SKalle Valo 
3063240d2799SVasanthakumar Thiagarajan 	ath6kl_pspoll_event(vif, le16_to_cpu(ev->aid));
3064bdcd8170SKalle Valo 
3065bdcd8170SKalle Valo 	return 0;
3066bdcd8170SKalle Valo }
3067bdcd8170SKalle Valo 
3068240d2799SVasanthakumar Thiagarajan static int ath6kl_wmi_dtimexpiry_event_rx(struct wmi *wmi, u8 *datap, int len,
3069240d2799SVasanthakumar Thiagarajan 					  struct ath6kl_vif *vif)
3070bdcd8170SKalle Valo {
3071240d2799SVasanthakumar Thiagarajan 	ath6kl_dtimexpiry_event(vif);
3072bdcd8170SKalle Valo 
3073bdcd8170SKalle Valo 	return 0;
3074bdcd8170SKalle Valo }
3075bdcd8170SKalle Valo 
3076334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_set_pvb_cmd(struct wmi *wmi, u8 if_idx, u16 aid,
3077334234b5SVasanthakumar Thiagarajan 			   bool flag)
3078bdcd8170SKalle Valo {
3079bdcd8170SKalle Valo 	struct sk_buff *skb;
3080bdcd8170SKalle Valo 	struct wmi_ap_set_pvb_cmd *cmd;
3081bdcd8170SKalle Valo 	int ret;
3082bdcd8170SKalle Valo 
3083bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(struct wmi_ap_set_pvb_cmd));
3084bdcd8170SKalle Valo 	if (!skb)
3085bdcd8170SKalle Valo 		return -ENOMEM;
3086bdcd8170SKalle Valo 
3087bdcd8170SKalle Valo 	cmd = (struct wmi_ap_set_pvb_cmd *) skb->data;
3088bdcd8170SKalle Valo 	cmd->aid = cpu_to_le16(aid);
3089d6e51e6aSJouni Malinen 	cmd->rsvd = cpu_to_le16(0);
3090bdcd8170SKalle Valo 	cmd->flag = cpu_to_le32(flag);
3091bdcd8170SKalle Valo 
3092334234b5SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_AP_SET_PVB_CMDID,
3093bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
3094bdcd8170SKalle Valo 
3095bdcd8170SKalle Valo 	return 0;
3096bdcd8170SKalle Valo }
3097bdcd8170SKalle Valo 
30980ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_set_rx_frame_format_cmd(struct wmi *wmi, u8 if_idx,
30990ce59445SVasanthakumar Thiagarajan 				       u8 rx_meta_ver,
3100bdcd8170SKalle Valo 				       bool rx_dot11_hdr, bool defrag_on_host)
3101bdcd8170SKalle Valo {
3102bdcd8170SKalle Valo 	struct sk_buff *skb;
3103bdcd8170SKalle Valo 	struct wmi_rx_frame_format_cmd *cmd;
3104bdcd8170SKalle Valo 	int ret;
3105bdcd8170SKalle Valo 
3106bdcd8170SKalle Valo 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
3107bdcd8170SKalle Valo 	if (!skb)
3108bdcd8170SKalle Valo 		return -ENOMEM;
3109bdcd8170SKalle Valo 
3110bdcd8170SKalle Valo 	cmd = (struct wmi_rx_frame_format_cmd *) skb->data;
3111bdcd8170SKalle Valo 	cmd->dot11_hdr = rx_dot11_hdr ? 1 : 0;
3112bdcd8170SKalle Valo 	cmd->defrag_on_host = defrag_on_host ? 1 : 0;
3113bdcd8170SKalle Valo 	cmd->meta_ver = rx_meta_ver;
3114bdcd8170SKalle Valo 
3115bdcd8170SKalle Valo 	/* Delete the local aggr state, on host */
31160ce59445SVasanthakumar Thiagarajan 	ret = ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_RX_FRAME_FORMAT_CMDID,
3117bdcd8170SKalle Valo 				  NO_SYNC_WMIFLAG);
3118bdcd8170SKalle Valo 
3119bdcd8170SKalle Valo 	return ret;
3120bdcd8170SKalle Valo }
3121bdcd8170SKalle Valo 
3122334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_set_appie_cmd(struct wmi *wmi, u8 if_idx, u8 mgmt_frm_type,
3123334234b5SVasanthakumar Thiagarajan 			     const u8 *ie, u8 ie_len)
31246a7c9badSJouni Malinen {
31256a7c9badSJouni Malinen 	struct sk_buff *skb;
31266a7c9badSJouni Malinen 	struct wmi_set_appie_cmd *p;
31276a7c9badSJouni Malinen 
31286a7c9badSJouni Malinen 	skb = ath6kl_wmi_get_new_buf(sizeof(*p) + ie_len);
31296a7c9badSJouni Malinen 	if (!skb)
31306a7c9badSJouni Malinen 		return -ENOMEM;
31316a7c9badSJouni Malinen 
31326a7c9badSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "set_appie_cmd: mgmt_frm_type=%u "
31336a7c9badSJouni Malinen 		   "ie_len=%u\n", mgmt_frm_type, ie_len);
31346a7c9badSJouni Malinen 	p = (struct wmi_set_appie_cmd *) skb->data;
31356a7c9badSJouni Malinen 	p->mgmt_frm_type = mgmt_frm_type;
31366a7c9badSJouni Malinen 	p->ie_len = ie_len;
313710509f90SKalle Valo 
313810509f90SKalle Valo 	if (ie != NULL && ie_len > 0)
31396a7c9badSJouni Malinen 		memcpy(p->ie_info, ie, ie_len);
314010509f90SKalle Valo 
3141334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SET_APPIE_CMDID,
31426a7c9badSJouni Malinen 				   NO_SYNC_WMIFLAG);
31436a7c9badSJouni Malinen }
31446a7c9badSJouni Malinen 
31456465ddcfSJouni Malinen int ath6kl_wmi_disable_11b_rates_cmd(struct wmi *wmi, bool disable)
31466465ddcfSJouni Malinen {
31476465ddcfSJouni Malinen 	struct sk_buff *skb;
31486465ddcfSJouni Malinen 	struct wmi_disable_11b_rates_cmd *cmd;
31496465ddcfSJouni Malinen 
31506465ddcfSJouni Malinen 	skb = ath6kl_wmi_get_new_buf(sizeof(*cmd));
31516465ddcfSJouni Malinen 	if (!skb)
31526465ddcfSJouni Malinen 		return -ENOMEM;
31536465ddcfSJouni Malinen 
31546465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "disable_11b_rates_cmd: disable=%u\n",
31556465ddcfSJouni Malinen 		   disable);
31566465ddcfSJouni Malinen 	cmd = (struct wmi_disable_11b_rates_cmd *) skb->data;
31576465ddcfSJouni Malinen 	cmd->disable = disable ? 1 : 0;
31586465ddcfSJouni Malinen 
3159334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmi, 0, skb, WMI_DISABLE_11B_RATES_CMDID,
31606465ddcfSJouni Malinen 				   NO_SYNC_WMIFLAG);
31616465ddcfSJouni Malinen }
31626465ddcfSJouni Malinen 
3163334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx, u32 freq, u32 dur)
31646465ddcfSJouni Malinen {
31656465ddcfSJouni Malinen 	struct sk_buff *skb;
31666465ddcfSJouni Malinen 	struct wmi_remain_on_chnl_cmd *p;
31676465ddcfSJouni Malinen 
31686465ddcfSJouni Malinen 	skb = ath6kl_wmi_get_new_buf(sizeof(*p));
31696465ddcfSJouni Malinen 	if (!skb)
31706465ddcfSJouni Malinen 		return -ENOMEM;
31716465ddcfSJouni Malinen 
31726465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "remain_on_chnl_cmd: freq=%u dur=%u\n",
31736465ddcfSJouni Malinen 		   freq, dur);
31746465ddcfSJouni Malinen 	p = (struct wmi_remain_on_chnl_cmd *) skb->data;
31756465ddcfSJouni Malinen 	p->freq = cpu_to_le32(freq);
31766465ddcfSJouni Malinen 	p->duration = cpu_to_le32(dur);
3177334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_REMAIN_ON_CHNL_CMDID,
31786465ddcfSJouni Malinen 				   NO_SYNC_WMIFLAG);
31796465ddcfSJouni Malinen }
31806465ddcfSJouni Malinen 
31813ca9d1fcSAarthi Thiruvengadam /* ath6kl_wmi_send_action_cmd is to be deprecated. Use
31823ca9d1fcSAarthi Thiruvengadam  * ath6kl_wmi_send_mgmt_cmd instead. The new function supports P2P
31833ca9d1fcSAarthi Thiruvengadam  * mgmt operations using station interface.
31843ca9d1fcSAarthi Thiruvengadam  */
3185d0ff7383SNaveen Gangadharan static int ath6kl_wmi_send_action_cmd(struct wmi *wmi, u8 if_idx, u32 id,
3186d0ff7383SNaveen Gangadharan 				      u32 freq, u32 wait, const u8 *data,
3187d0ff7383SNaveen Gangadharan 				      u16 data_len)
31886465ddcfSJouni Malinen {
31896465ddcfSJouni Malinen 	struct sk_buff *skb;
31906465ddcfSJouni Malinen 	struct wmi_send_action_cmd *p;
3191a0df5db1SJouni Malinen 	u8 *buf;
31926465ddcfSJouni Malinen 
31936465ddcfSJouni Malinen 	if (wait)
31946465ddcfSJouni Malinen 		return -EINVAL; /* Offload for wait not supported */
31956465ddcfSJouni Malinen 
3196a0df5db1SJouni Malinen 	buf = kmalloc(data_len, GFP_KERNEL);
3197a0df5db1SJouni Malinen 	if (!buf)
31986465ddcfSJouni Malinen 		return -ENOMEM;
31996465ddcfSJouni Malinen 
3200a0df5db1SJouni Malinen 	skb = ath6kl_wmi_get_new_buf(sizeof(*p) + data_len);
3201a0df5db1SJouni Malinen 	if (!skb) {
3202a0df5db1SJouni Malinen 		kfree(buf);
3203a0df5db1SJouni Malinen 		return -ENOMEM;
3204a0df5db1SJouni Malinen 	}
3205a0df5db1SJouni Malinen 
3206a0df5db1SJouni Malinen 	kfree(wmi->last_mgmt_tx_frame);
32073101edefSAarthi Thiruvengadam 	memcpy(buf, data, data_len);
3208a0df5db1SJouni Malinen 	wmi->last_mgmt_tx_frame = buf;
3209a0df5db1SJouni Malinen 	wmi->last_mgmt_tx_frame_len = data_len;
3210a0df5db1SJouni Malinen 
32116465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "send_action_cmd: id=%u freq=%u wait=%u "
32126465ddcfSJouni Malinen 		   "len=%u\n", id, freq, wait, data_len);
32136465ddcfSJouni Malinen 	p = (struct wmi_send_action_cmd *) skb->data;
32146465ddcfSJouni Malinen 	p->id = cpu_to_le32(id);
32156465ddcfSJouni Malinen 	p->freq = cpu_to_le32(freq);
32166465ddcfSJouni Malinen 	p->wait = cpu_to_le32(wait);
32176465ddcfSJouni Malinen 	p->len = cpu_to_le16(data_len);
32186465ddcfSJouni Malinen 	memcpy(p->data, data, data_len);
3219334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SEND_ACTION_CMDID,
32206465ddcfSJouni Malinen 				   NO_SYNC_WMIFLAG);
32216465ddcfSJouni Malinen }
32226465ddcfSJouni Malinen 
3223d0ff7383SNaveen Gangadharan static int __ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id,
3224d0ff7383SNaveen Gangadharan 				      u32 freq, u32 wait, const u8 *data,
3225d0ff7383SNaveen Gangadharan 				      u16 data_len, u32 no_cck)
32263ca9d1fcSAarthi Thiruvengadam {
32273ca9d1fcSAarthi Thiruvengadam 	struct sk_buff *skb;
32283ca9d1fcSAarthi Thiruvengadam 	struct wmi_send_mgmt_cmd *p;
32293ca9d1fcSAarthi Thiruvengadam 	u8 *buf;
32303ca9d1fcSAarthi Thiruvengadam 
32313ca9d1fcSAarthi Thiruvengadam 	if (wait)
32323ca9d1fcSAarthi Thiruvengadam 		return -EINVAL; /* Offload for wait not supported */
32333ca9d1fcSAarthi Thiruvengadam 
32343ca9d1fcSAarthi Thiruvengadam 	buf = kmalloc(data_len, GFP_KERNEL);
32353ca9d1fcSAarthi Thiruvengadam 	if (!buf)
32363ca9d1fcSAarthi Thiruvengadam 		return -ENOMEM;
32373ca9d1fcSAarthi Thiruvengadam 
32383ca9d1fcSAarthi Thiruvengadam 	skb = ath6kl_wmi_get_new_buf(sizeof(*p) + data_len);
32393ca9d1fcSAarthi Thiruvengadam 	if (!skb) {
32403ca9d1fcSAarthi Thiruvengadam 		kfree(buf);
32413ca9d1fcSAarthi Thiruvengadam 		return -ENOMEM;
32423ca9d1fcSAarthi Thiruvengadam 	}
32433ca9d1fcSAarthi Thiruvengadam 
32443ca9d1fcSAarthi Thiruvengadam 	kfree(wmi->last_mgmt_tx_frame);
32453ca9d1fcSAarthi Thiruvengadam 	memcpy(buf, data, data_len);
32463ca9d1fcSAarthi Thiruvengadam 	wmi->last_mgmt_tx_frame = buf;
32473ca9d1fcSAarthi Thiruvengadam 	wmi->last_mgmt_tx_frame_len = data_len;
32483ca9d1fcSAarthi Thiruvengadam 
32493ca9d1fcSAarthi Thiruvengadam 	ath6kl_dbg(ATH6KL_DBG_WMI, "send_action_cmd: id=%u freq=%u wait=%u "
32503ca9d1fcSAarthi Thiruvengadam 		   "len=%u\n", id, freq, wait, data_len);
32513ca9d1fcSAarthi Thiruvengadam 	p = (struct wmi_send_mgmt_cmd *) skb->data;
32523ca9d1fcSAarthi Thiruvengadam 	p->id = cpu_to_le32(id);
32533ca9d1fcSAarthi Thiruvengadam 	p->freq = cpu_to_le32(freq);
32543ca9d1fcSAarthi Thiruvengadam 	p->wait = cpu_to_le32(wait);
32553ca9d1fcSAarthi Thiruvengadam 	p->no_cck = cpu_to_le32(no_cck);
32563ca9d1fcSAarthi Thiruvengadam 	p->len = cpu_to_le16(data_len);
32573ca9d1fcSAarthi Thiruvengadam 	memcpy(p->data, data, data_len);
32583ca9d1fcSAarthi Thiruvengadam 	return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_SEND_MGMT_CMDID,
32593ca9d1fcSAarthi Thiruvengadam 				   NO_SYNC_WMIFLAG);
32603ca9d1fcSAarthi Thiruvengadam }
32613ca9d1fcSAarthi Thiruvengadam 
3262d0ff7383SNaveen Gangadharan int ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id, u32 freq,
3263d0ff7383SNaveen Gangadharan 				u32 wait, const u8 *data, u16 data_len,
3264d0ff7383SNaveen Gangadharan 				u32 no_cck)
3265d0ff7383SNaveen Gangadharan {
3266d0ff7383SNaveen Gangadharan 	int status;
3267d0ff7383SNaveen Gangadharan 	struct ath6kl *ar = wmi->parent_dev;
3268d0ff7383SNaveen Gangadharan 
3269d0ff7383SNaveen Gangadharan 	if (test_bit(ATH6KL_FW_CAPABILITY_STA_P2PDEV_DUPLEX,
3270d0ff7383SNaveen Gangadharan 		     ar->fw_capabilities)) {
3271d0ff7383SNaveen Gangadharan 		/*
3272d0ff7383SNaveen Gangadharan 		 * If capable of doing P2P mgmt operations using
3273d0ff7383SNaveen Gangadharan 		 * station interface, send additional information like
3274d0ff7383SNaveen Gangadharan 		 * supported rates to advertise and xmit rates for
3275d0ff7383SNaveen Gangadharan 		 * probe requests
3276d0ff7383SNaveen Gangadharan 		 */
3277d0ff7383SNaveen Gangadharan 		status = __ath6kl_wmi_send_mgmt_cmd(ar->wmi, if_idx, id, freq,
3278d0ff7383SNaveen Gangadharan 						    wait, data, data_len,
3279d0ff7383SNaveen Gangadharan 						    no_cck);
3280d0ff7383SNaveen Gangadharan 	} else {
3281d0ff7383SNaveen Gangadharan 		status = ath6kl_wmi_send_action_cmd(ar->wmi, if_idx, id, freq,
3282d0ff7383SNaveen Gangadharan 						    wait, data, data_len);
3283d0ff7383SNaveen Gangadharan 	}
3284d0ff7383SNaveen Gangadharan 
3285d0ff7383SNaveen Gangadharan 	return status;
3286d0ff7383SNaveen Gangadharan }
3287d0ff7383SNaveen Gangadharan 
3288334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_send_probe_response_cmd(struct wmi *wmi, u8 if_idx, u32 freq,
3289334234b5SVasanthakumar Thiagarajan 				       const u8 *dst, const u8 *data,
3290334234b5SVasanthakumar Thiagarajan 				       u16 data_len)
32916465ddcfSJouni Malinen {
32926465ddcfSJouni Malinen 	struct sk_buff *skb;
32936465ddcfSJouni Malinen 	struct wmi_p2p_probe_response_cmd *p;
3294bd24a50fSAarthi Thiruvengadam 	size_t cmd_len = sizeof(*p) + data_len;
32956465ddcfSJouni Malinen 
3296bd24a50fSAarthi Thiruvengadam 	if (data_len == 0)
3297bd24a50fSAarthi Thiruvengadam 		cmd_len++; /* work around target minimum length requirement */
3298bd24a50fSAarthi Thiruvengadam 
3299bd24a50fSAarthi Thiruvengadam 	skb = ath6kl_wmi_get_new_buf(cmd_len);
33006465ddcfSJouni Malinen 	if (!skb)
33016465ddcfSJouni Malinen 		return -ENOMEM;
33026465ddcfSJouni Malinen 
33036465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "send_probe_response_cmd: freq=%u dst=%pM "
33046465ddcfSJouni Malinen 		   "len=%u\n", freq, dst, data_len);
33056465ddcfSJouni Malinen 	p = (struct wmi_p2p_probe_response_cmd *) skb->data;
33066465ddcfSJouni Malinen 	p->freq = cpu_to_le32(freq);
33076465ddcfSJouni Malinen 	memcpy(p->destination_addr, dst, ETH_ALEN);
33086465ddcfSJouni Malinen 	p->len = cpu_to_le16(data_len);
33096465ddcfSJouni Malinen 	memcpy(p->data, data, data_len);
3310334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmi, if_idx, skb,
3311334234b5SVasanthakumar Thiagarajan 				   WMI_SEND_PROBE_RESPONSE_CMDID,
33126465ddcfSJouni Malinen 				   NO_SYNC_WMIFLAG);
33136465ddcfSJouni Malinen }
33146465ddcfSJouni Malinen 
33150ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_probe_report_req_cmd(struct wmi *wmi, u8 if_idx, bool enable)
33166465ddcfSJouni Malinen {
33176465ddcfSJouni Malinen 	struct sk_buff *skb;
33186465ddcfSJouni Malinen 	struct wmi_probe_req_report_cmd *p;
33196465ddcfSJouni Malinen 
33206465ddcfSJouni Malinen 	skb = ath6kl_wmi_get_new_buf(sizeof(*p));
33216465ddcfSJouni Malinen 	if (!skb)
33226465ddcfSJouni Malinen 		return -ENOMEM;
33236465ddcfSJouni Malinen 
33246465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "probe_report_req_cmd: enable=%u\n",
33256465ddcfSJouni Malinen 		   enable);
33266465ddcfSJouni Malinen 	p = (struct wmi_probe_req_report_cmd *) skb->data;
33276465ddcfSJouni Malinen 	p->enable = enable ? 1 : 0;
33280ce59445SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_PROBE_REQ_REPORT_CMDID,
33296465ddcfSJouni Malinen 				   NO_SYNC_WMIFLAG);
33306465ddcfSJouni Malinen }
33316465ddcfSJouni Malinen 
33320ce59445SVasanthakumar Thiagarajan int ath6kl_wmi_info_req_cmd(struct wmi *wmi, u8 if_idx, u32 info_req_flags)
33336465ddcfSJouni Malinen {
33346465ddcfSJouni Malinen 	struct sk_buff *skb;
33356465ddcfSJouni Malinen 	struct wmi_get_p2p_info *p;
33366465ddcfSJouni Malinen 
33376465ddcfSJouni Malinen 	skb = ath6kl_wmi_get_new_buf(sizeof(*p));
33386465ddcfSJouni Malinen 	if (!skb)
33396465ddcfSJouni Malinen 		return -ENOMEM;
33406465ddcfSJouni Malinen 
33416465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "info_req_cmd: flags=%x\n",
33426465ddcfSJouni Malinen 		   info_req_flags);
33436465ddcfSJouni Malinen 	p = (struct wmi_get_p2p_info *) skb->data;
33446465ddcfSJouni Malinen 	p->info_req_flags = cpu_to_le32(info_req_flags);
33450ce59445SVasanthakumar Thiagarajan 	return ath6kl_wmi_cmd_send(wmi, if_idx, skb, WMI_GET_P2P_INFO_CMDID,
33466465ddcfSJouni Malinen 				   NO_SYNC_WMIFLAG);
33476465ddcfSJouni Malinen }
33486465ddcfSJouni Malinen 
3349334234b5SVasanthakumar Thiagarajan int ath6kl_wmi_cancel_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx)
33506465ddcfSJouni Malinen {
33516465ddcfSJouni Malinen 	ath6kl_dbg(ATH6KL_DBG_WMI, "cancel_remain_on_chnl_cmd\n");
3352334234b5SVasanthakumar Thiagarajan 	return ath6kl_wmi_simple_cmd(wmi, if_idx,
3353334234b5SVasanthakumar Thiagarajan 				     WMI_CANCEL_REMAIN_ON_CHNL_CMDID);
33546465ddcfSJouni Malinen }
33556465ddcfSJouni Malinen 
3356bdcd8170SKalle Valo static int ath6kl_wmi_control_rx_xtnd(struct wmi *wmi, struct sk_buff *skb)
3357bdcd8170SKalle Valo {
3358bdcd8170SKalle Valo 	struct wmix_cmd_hdr *cmd;
3359bdcd8170SKalle Valo 	u32 len;
3360bdcd8170SKalle Valo 	u16 id;
3361bdcd8170SKalle Valo 	u8 *datap;
3362bdcd8170SKalle Valo 	int ret = 0;
3363bdcd8170SKalle Valo 
3364bdcd8170SKalle Valo 	if (skb->len < sizeof(struct wmix_cmd_hdr)) {
3365bdcd8170SKalle Valo 		ath6kl_err("bad packet 1\n");
3366bdcd8170SKalle Valo 		return -EINVAL;
3367bdcd8170SKalle Valo 	}
3368bdcd8170SKalle Valo 
3369bdcd8170SKalle Valo 	cmd = (struct wmix_cmd_hdr *) skb->data;
3370bdcd8170SKalle Valo 	id = le32_to_cpu(cmd->cmd_id);
3371bdcd8170SKalle Valo 
3372bdcd8170SKalle Valo 	skb_pull(skb, sizeof(struct wmix_cmd_hdr));
3373bdcd8170SKalle Valo 
3374bdcd8170SKalle Valo 	datap = skb->data;
3375bdcd8170SKalle Valo 	len = skb->len;
3376bdcd8170SKalle Valo 
3377bdcd8170SKalle Valo 	switch (id) {
3378bdcd8170SKalle Valo 	case WMIX_HB_CHALLENGE_RESP_EVENTID:
3379b9b6ee60SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "wmi event hb challenge resp\n");
3380bdcd8170SKalle Valo 		break;
3381bdcd8170SKalle Valo 	case WMIX_DBGLOG_EVENTID:
3382b9b6ee60SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "wmi event dbglog len %d\n", len);
3383bdf5396bSKalle Valo 		ath6kl_debug_fwlog_event(wmi->parent_dev, datap, len);
3384bdcd8170SKalle Valo 		break;
3385bdcd8170SKalle Valo 	default:
3386b9b6ee60SKalle Valo 		ath6kl_warn("unknown cmd id 0x%x\n", id);
3387bdcd8170SKalle Valo 		ret = -EINVAL;
3388bdcd8170SKalle Valo 		break;
3389bdcd8170SKalle Valo 	}
3390bdcd8170SKalle Valo 
3391bdcd8170SKalle Valo 	return ret;
3392bdcd8170SKalle Valo }
3393bdcd8170SKalle Valo 
33944b28a80dSJouni Malinen static int ath6kl_wmi_roam_tbl_event_rx(struct wmi *wmi, u8 *datap, int len)
33954b28a80dSJouni Malinen {
33964b28a80dSJouni Malinen 	return ath6kl_debug_roam_tbl_event(wmi->parent_dev, datap, len);
33974b28a80dSJouni Malinen }
33984b28a80dSJouni Malinen 
33995dbc811fSVasanthakumar Thiagarajan /* Process interface specific wmi events, caller would free the datap */
34005dbc811fSVasanthakumar Thiagarajan static int ath6kl_wmi_proc_events_vif(struct wmi *wmi, u16 if_idx, u16 cmd_id,
34015dbc811fSVasanthakumar Thiagarajan 					u8 *datap, u32 len)
3402bdcd8170SKalle Valo {
3403240d2799SVasanthakumar Thiagarajan 	struct ath6kl_vif *vif;
3404bdcd8170SKalle Valo 
3405240d2799SVasanthakumar Thiagarajan 	vif = ath6kl_get_vif_by_index(wmi->parent_dev, if_idx);
3406240d2799SVasanthakumar Thiagarajan 	if (!vif) {
3407240d2799SVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI,
3408240d2799SVasanthakumar Thiagarajan 			   "Wmi event for unavailable vif, vif_index:%d\n",
3409240d2799SVasanthakumar Thiagarajan 			    if_idx);
3410240d2799SVasanthakumar Thiagarajan 		return -EINVAL;
3411240d2799SVasanthakumar Thiagarajan 	}
3412240d2799SVasanthakumar Thiagarajan 
34135dbc811fSVasanthakumar Thiagarajan 	switch (cmd_id) {
34145dbc811fSVasanthakumar Thiagarajan 	case WMI_CONNECT_EVENTID:
34155dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CONNECT_EVENTID\n");
34165dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_connect_event_rx(wmi, datap, len, vif);
34175dbc811fSVasanthakumar Thiagarajan 	case WMI_DISCONNECT_EVENTID:
34185dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DISCONNECT_EVENTID\n");
34195dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_disconnect_event_rx(wmi, datap, len, vif);
34205dbc811fSVasanthakumar Thiagarajan 	case WMI_TKIP_MICERR_EVENTID:
34215dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TKIP_MICERR_EVENTID\n");
34225dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_tkip_micerr_event_rx(wmi, datap, len, vif);
34235dbc811fSVasanthakumar Thiagarajan 	case WMI_BSSINFO_EVENTID:
34245dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_BSSINFO_EVENTID\n");
34255dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_bssinfo_event_rx(wmi, datap, len, vif);
34265dbc811fSVasanthakumar Thiagarajan 	case WMI_NEIGHBOR_REPORT_EVENTID:
34275dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_NEIGHBOR_REPORT_EVENTID\n");
34285dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_neighbor_report_event_rx(wmi, datap, len,
34295dbc811fSVasanthakumar Thiagarajan 							   vif);
34305dbc811fSVasanthakumar Thiagarajan 	case WMI_SCAN_COMPLETE_EVENTID:
34315dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SCAN_COMPLETE_EVENTID\n");
34325dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_scan_complete_rx(wmi, datap, len, vif);
34335dbc811fSVasanthakumar Thiagarajan 	case WMI_REPORT_STATISTICS_EVENTID:
34345dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_STATISTICS_EVENTID\n");
34355dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_stats_event_rx(wmi, datap, len, vif);
34365dbc811fSVasanthakumar Thiagarajan 	case WMI_CAC_EVENTID:
34375dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CAC_EVENTID\n");
34385dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_cac_event_rx(wmi, datap, len, vif);
34395dbc811fSVasanthakumar Thiagarajan 	case WMI_PSPOLL_EVENTID:
34405dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSPOLL_EVENTID\n");
34415dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_pspoll_event_rx(wmi, datap, len, vif);
34425dbc811fSVasanthakumar Thiagarajan 	case WMI_DTIMEXPIRY_EVENTID:
34435dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DTIMEXPIRY_EVENTID\n");
34445dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_dtimexpiry_event_rx(wmi, datap, len, vif);
34455dbc811fSVasanthakumar Thiagarajan 	case WMI_ADDBA_REQ_EVENTID:
34465dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_REQ_EVENTID\n");
34475dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_addba_req_event_rx(wmi, datap, len, vif);
34485dbc811fSVasanthakumar Thiagarajan 	case WMI_DELBA_REQ_EVENTID:
34495dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_DELBA_REQ_EVENTID\n");
34505dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_delba_req_event_rx(wmi, datap, len, vif);
34515dbc811fSVasanthakumar Thiagarajan 	case WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID:
34525dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI,
34535dbc811fSVasanthakumar Thiagarajan 			   "WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID");
34545dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_host_sleep_mode_cmd_prcd_evt_rx(wmi, vif);
34555dbc811fSVasanthakumar Thiagarajan 	case WMI_REMAIN_ON_CHNL_EVENTID:
34565dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REMAIN_ON_CHNL_EVENTID\n");
34575dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_remain_on_chnl_event_rx(wmi, datap, len, vif);
34585dbc811fSVasanthakumar Thiagarajan 	case WMI_CANCEL_REMAIN_ON_CHNL_EVENTID:
34595dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI,
34605dbc811fSVasanthakumar Thiagarajan 			   "WMI_CANCEL_REMAIN_ON_CHNL_EVENTID\n");
34615dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_cancel_remain_on_chnl_event_rx(wmi, datap,
34625dbc811fSVasanthakumar Thiagarajan 								 len, vif);
34635dbc811fSVasanthakumar Thiagarajan 	case WMI_TX_STATUS_EVENTID:
34645dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_STATUS_EVENTID\n");
34655dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_tx_status_event_rx(wmi, datap, len, vif);
34665dbc811fSVasanthakumar Thiagarajan 	case WMI_RX_PROBE_REQ_EVENTID:
34675dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RX_PROBE_REQ_EVENTID\n");
34685dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_rx_probe_req_event_rx(wmi, datap, len, vif);
34695dbc811fSVasanthakumar Thiagarajan 	case WMI_RX_ACTION_EVENTID:
34705dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RX_ACTION_EVENTID\n");
34715dbc811fSVasanthakumar Thiagarajan 		return ath6kl_wmi_rx_action_event_rx(wmi, datap, len, vif);
34725dbc811fSVasanthakumar Thiagarajan 	default:
34735dbc811fSVasanthakumar Thiagarajan 		ath6kl_dbg(ATH6KL_DBG_WMI, "unknown cmd id 0x%x\n", cmd_id);
34745dbc811fSVasanthakumar Thiagarajan 		return -EINVAL;
34755dbc811fSVasanthakumar Thiagarajan 	}
34765dbc811fSVasanthakumar Thiagarajan 
34775dbc811fSVasanthakumar Thiagarajan 	return 0;
34785dbc811fSVasanthakumar Thiagarajan }
34795dbc811fSVasanthakumar Thiagarajan 
34805dbc811fSVasanthakumar Thiagarajan static int ath6kl_wmi_proc_events(struct wmi *wmi, struct sk_buff *skb)
34815dbc811fSVasanthakumar Thiagarajan {
34825dbc811fSVasanthakumar Thiagarajan 	struct wmi_cmd_hdr *cmd;
34835dbc811fSVasanthakumar Thiagarajan 	int ret = 0;
34845dbc811fSVasanthakumar Thiagarajan 	u32 len;
34855dbc811fSVasanthakumar Thiagarajan 	u16 id;
34865dbc811fSVasanthakumar Thiagarajan 	u8 if_idx;
34875dbc811fSVasanthakumar Thiagarajan 	u8 *datap;
34885dbc811fSVasanthakumar Thiagarajan 
34895dbc811fSVasanthakumar Thiagarajan 	cmd = (struct wmi_cmd_hdr *) skb->data;
34905dbc811fSVasanthakumar Thiagarajan 	id = le16_to_cpu(cmd->cmd_id);
34915dbc811fSVasanthakumar Thiagarajan 	if_idx = le16_to_cpu(cmd->info1) & WMI_CMD_HDR_IF_ID_MASK;
34925dbc811fSVasanthakumar Thiagarajan 
34935dbc811fSVasanthakumar Thiagarajan 	skb_pull(skb, sizeof(struct wmi_cmd_hdr));
34945dbc811fSVasanthakumar Thiagarajan 	datap = skb->data;
34955dbc811fSVasanthakumar Thiagarajan 	len = skb->len;
34965dbc811fSVasanthakumar Thiagarajan 
34975dbc811fSVasanthakumar Thiagarajan 	ath6kl_dbg(ATH6KL_DBG_WMI, "wmi rx id %d len %d\n", id, len);
34985dbc811fSVasanthakumar Thiagarajan 	ath6kl_dbg_dump(ATH6KL_DBG_WMI_DUMP, NULL, "wmi rx ",
34995dbc811fSVasanthakumar Thiagarajan 			datap, len);
35005dbc811fSVasanthakumar Thiagarajan 
3501bdcd8170SKalle Valo 	switch (id) {
3502bdcd8170SKalle Valo 	case WMI_GET_BITRATE_CMDID:
3503bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_BITRATE_CMDID\n");
3504bdcd8170SKalle Valo 		ret = ath6kl_wmi_bitrate_reply_rx(wmi, datap, len);
3505bdcd8170SKalle Valo 		break;
3506bdcd8170SKalle Valo 	case WMI_GET_CHANNEL_LIST_CMDID:
3507bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_CHANNEL_LIST_CMDID\n");
3508bdcd8170SKalle Valo 		ret = ath6kl_wmi_ch_list_reply_rx(wmi, datap, len);
3509bdcd8170SKalle Valo 		break;
3510bdcd8170SKalle Valo 	case WMI_GET_TX_PWR_CMDID:
3511bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_TX_PWR_CMDID\n");
3512bdcd8170SKalle Valo 		ret = ath6kl_wmi_tx_pwr_reply_rx(wmi, datap, len);
3513bdcd8170SKalle Valo 		break;
3514bdcd8170SKalle Valo 	case WMI_READY_EVENTID:
3515bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_READY_EVENTID\n");
3516bdcd8170SKalle Valo 		ret = ath6kl_wmi_ready_event_rx(wmi, datap, len);
3517bdcd8170SKalle Valo 		break;
3518bdcd8170SKalle Valo 	case WMI_PEER_NODE_EVENTID:
3519bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PEER_NODE_EVENTID\n");
3520bdcd8170SKalle Valo 		ret = ath6kl_wmi_peer_node_event_rx(wmi, datap, len);
3521bdcd8170SKalle Valo 		break;
3522bdcd8170SKalle Valo 	case WMI_REGDOMAIN_EVENTID:
3523bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REGDOMAIN_EVENTID\n");
352406033760SVivek Natarajan 		ath6kl_wmi_regdomain_event(wmi, datap, len);
3525bdcd8170SKalle Valo 		break;
3526bdcd8170SKalle Valo 	case WMI_PSTREAM_TIMEOUT_EVENTID:
3527bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_PSTREAM_TIMEOUT_EVENTID\n");
3528bdcd8170SKalle Valo 		ret = ath6kl_wmi_pstream_timeout_event_rx(wmi, datap, len);
3529bdcd8170SKalle Valo 		break;
3530bdcd8170SKalle Valo 	case WMI_CMDERROR_EVENTID:
3531bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CMDERROR_EVENTID\n");
3532bdcd8170SKalle Valo 		ret = ath6kl_wmi_error_event_rx(wmi, datap, len);
3533bdcd8170SKalle Valo 		break;
3534bdcd8170SKalle Valo 	case WMI_RSSI_THRESHOLD_EVENTID:
3535bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_RSSI_THRESHOLD_EVENTID\n");
3536bdcd8170SKalle Valo 		ret = ath6kl_wmi_rssi_threshold_event_rx(wmi, datap, len);
3537bdcd8170SKalle Valo 		break;
3538bdcd8170SKalle Valo 	case WMI_ERROR_REPORT_EVENTID:
3539bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ERROR_REPORT_EVENTID\n");
3540bdcd8170SKalle Valo 		break;
3541bdcd8170SKalle Valo 	case WMI_OPT_RX_FRAME_EVENTID:
3542bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_OPT_RX_FRAME_EVENTID\n");
3543f195d507SJouni Malinen 		/* this event has been deprecated */
3544bdcd8170SKalle Valo 		break;
3545bdcd8170SKalle Valo 	case WMI_REPORT_ROAM_TBL_EVENTID:
3546bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_TBL_EVENTID\n");
35474b28a80dSJouni Malinen 		ret = ath6kl_wmi_roam_tbl_event_rx(wmi, datap, len);
3548bdcd8170SKalle Valo 		break;
3549bdcd8170SKalle Valo 	case WMI_EXTENSION_EVENTID:
3550bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_EXTENSION_EVENTID\n");
3551bdcd8170SKalle Valo 		ret = ath6kl_wmi_control_rx_xtnd(wmi, skb);
3552bdcd8170SKalle Valo 		break;
3553bdcd8170SKalle Valo 	case WMI_CHANNEL_CHANGE_EVENTID:
3554bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_CHANNEL_CHANGE_EVENTID\n");
3555bdcd8170SKalle Valo 		break;
3556bdcd8170SKalle Valo 	case WMI_REPORT_ROAM_DATA_EVENTID:
3557bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_REPORT_ROAM_DATA_EVENTID\n");
3558bdcd8170SKalle Valo 		break;
3559003353b0SKalle Valo 	case WMI_TEST_EVENTID:
3560003353b0SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TEST_EVENTID\n");
35614f34daceSThomas Pedersen 		ret = ath6kl_wmi_test_rx(wmi, datap, len);
3562003353b0SKalle Valo 		break;
3563bdcd8170SKalle Valo 	case WMI_GET_FIXRATES_CMDID:
3564bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_FIXRATES_CMDID\n");
3565bdcd8170SKalle Valo 		ret = ath6kl_wmi_ratemask_reply_rx(wmi, datap, len);
3566bdcd8170SKalle Valo 		break;
3567bdcd8170SKalle Valo 	case WMI_TX_RETRY_ERR_EVENTID:
3568bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_RETRY_ERR_EVENTID\n");
3569bdcd8170SKalle Valo 		break;
3570bdcd8170SKalle Valo 	case WMI_SNR_THRESHOLD_EVENTID:
3571bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SNR_THRESHOLD_EVENTID\n");
3572bdcd8170SKalle Valo 		ret = ath6kl_wmi_snr_threshold_event_rx(wmi, datap, len);
3573bdcd8170SKalle Valo 		break;
3574bdcd8170SKalle Valo 	case WMI_LQ_THRESHOLD_EVENTID:
3575bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_LQ_THRESHOLD_EVENTID\n");
3576bdcd8170SKalle Valo 		break;
3577bdcd8170SKalle Valo 	case WMI_APLIST_EVENTID:
3578bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_APLIST_EVENTID\n");
3579bdcd8170SKalle Valo 		ret = ath6kl_wmi_aplist_event_rx(wmi, datap, len);
3580bdcd8170SKalle Valo 		break;
3581bdcd8170SKalle Valo 	case WMI_GET_KEEPALIVE_CMDID:
3582bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_KEEPALIVE_CMDID\n");
3583bdcd8170SKalle Valo 		ret = ath6kl_wmi_keepalive_reply_rx(wmi, datap, len);
3584bdcd8170SKalle Valo 		break;
3585bdcd8170SKalle Valo 	case WMI_GET_WOW_LIST_EVENTID:
3586bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_WOW_LIST_EVENTID\n");
3587bdcd8170SKalle Valo 		break;
3588bdcd8170SKalle Valo 	case WMI_GET_PMKID_LIST_EVENTID:
3589bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_PMKID_LIST_EVENTID\n");
3590bdcd8170SKalle Valo 		ret = ath6kl_wmi_get_pmkid_list_event_rx(wmi, datap, len);
3591bdcd8170SKalle Valo 		break;
3592bdcd8170SKalle Valo 	case WMI_SET_PARAMS_REPLY_EVENTID:
3593bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_SET_PARAMS_REPLY_EVENTID\n");
3594bdcd8170SKalle Valo 		break;
3595bdcd8170SKalle Valo 	case WMI_ADDBA_RESP_EVENTID:
3596bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_ADDBA_RESP_EVENTID\n");
3597bdcd8170SKalle Valo 		break;
3598bdcd8170SKalle Valo 	case WMI_REPORT_BTCOEX_CONFIG_EVENTID:
3599bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI,
3600bdcd8170SKalle Valo 			   "WMI_REPORT_BTCOEX_CONFIG_EVENTID\n");
3601bdcd8170SKalle Valo 		break;
3602bdcd8170SKalle Valo 	case WMI_REPORT_BTCOEX_STATS_EVENTID:
3603bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI,
3604bdcd8170SKalle Valo 			   "WMI_REPORT_BTCOEX_STATS_EVENTID\n");
3605bdcd8170SKalle Valo 		break;
3606bdcd8170SKalle Valo 	case WMI_TX_COMPLETE_EVENTID:
3607bdcd8170SKalle Valo 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_TX_COMPLETE_EVENTID\n");
3608bdcd8170SKalle Valo 		ret = ath6kl_wmi_tx_complete_event_rx(datap, len);
3609bdcd8170SKalle Valo 		break;
36106465ddcfSJouni Malinen 	case WMI_P2P_CAPABILITIES_EVENTID:
36116465ddcfSJouni Malinen 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_P2P_CAPABILITIES_EVENTID\n");
36126465ddcfSJouni Malinen 		ret = ath6kl_wmi_p2p_capabilities_event_rx(datap, len);
36136465ddcfSJouni Malinen 		break;
36146465ddcfSJouni Malinen 	case WMI_P2P_INFO_EVENTID:
36156465ddcfSJouni Malinen 		ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_P2P_INFO_EVENTID\n");
36166465ddcfSJouni Malinen 		ret = ath6kl_wmi_p2p_info_event_rx(datap, len);
36176465ddcfSJouni Malinen 		break;
3618bdcd8170SKalle Valo 	default:
36195dbc811fSVasanthakumar Thiagarajan 		/* may be the event is interface specific */
36205dbc811fSVasanthakumar Thiagarajan 		ret = ath6kl_wmi_proc_events_vif(wmi, if_idx, id, datap, len);
3621bdcd8170SKalle Valo 		break;
3622bdcd8170SKalle Valo 	}
3623bdcd8170SKalle Valo 
3624bdcd8170SKalle Valo 	dev_kfree_skb(skb);
3625bdcd8170SKalle Valo 	return ret;
3626bdcd8170SKalle Valo }
3627bdcd8170SKalle Valo 
36285dbc811fSVasanthakumar Thiagarajan /* Control Path */
36295dbc811fSVasanthakumar Thiagarajan int ath6kl_wmi_control_rx(struct wmi *wmi, struct sk_buff *skb)
36305dbc811fSVasanthakumar Thiagarajan {
36315dbc811fSVasanthakumar Thiagarajan 	if (WARN_ON(skb == NULL))
36325dbc811fSVasanthakumar Thiagarajan 		return -EINVAL;
36335dbc811fSVasanthakumar Thiagarajan 
36345dbc811fSVasanthakumar Thiagarajan 	if (skb->len < sizeof(struct wmi_cmd_hdr)) {
36355dbc811fSVasanthakumar Thiagarajan 		ath6kl_err("bad packet 1\n");
36365dbc811fSVasanthakumar Thiagarajan 		dev_kfree_skb(skb);
36375dbc811fSVasanthakumar Thiagarajan 		return -EINVAL;
36385dbc811fSVasanthakumar Thiagarajan 	}
36395dbc811fSVasanthakumar Thiagarajan 
36405dbc811fSVasanthakumar Thiagarajan 	return ath6kl_wmi_proc_events(wmi, skb);
36415dbc811fSVasanthakumar Thiagarajan }
36425dbc811fSVasanthakumar Thiagarajan 
3643c89c591dSKalle Valo void ath6kl_wmi_reset(struct wmi *wmi)
3644bdcd8170SKalle Valo {
3645bdcd8170SKalle Valo 	spin_lock_bh(&wmi->lock);
3646bdcd8170SKalle Valo 
3647bdcd8170SKalle Valo 	wmi->fat_pipe_exist = 0;
3648bdcd8170SKalle Valo 	memset(wmi->stream_exist_for_ac, 0, sizeof(wmi->stream_exist_for_ac));
3649bdcd8170SKalle Valo 
3650bdcd8170SKalle Valo 	spin_unlock_bh(&wmi->lock);
3651bdcd8170SKalle Valo }
3652bdcd8170SKalle Valo 
36532865785eSVasanthakumar Thiagarajan void *ath6kl_wmi_init(struct ath6kl *dev)
3654bdcd8170SKalle Valo {
3655bdcd8170SKalle Valo 	struct wmi *wmi;
3656bdcd8170SKalle Valo 
3657bdcd8170SKalle Valo 	wmi = kzalloc(sizeof(struct wmi), GFP_KERNEL);
3658bdcd8170SKalle Valo 	if (!wmi)
3659bdcd8170SKalle Valo 		return NULL;
3660bdcd8170SKalle Valo 
3661bdcd8170SKalle Valo 	spin_lock_init(&wmi->lock);
3662bdcd8170SKalle Valo 
3663bdcd8170SKalle Valo 	wmi->parent_dev = dev;
3664bdcd8170SKalle Valo 
3665bdcd8170SKalle Valo 	wmi->pwr_mode = REC_POWER;
3666bdcd8170SKalle Valo 
3667c89c591dSKalle Valo 	ath6kl_wmi_reset(wmi);
3668bdcd8170SKalle Valo 
3669bdcd8170SKalle Valo 	return wmi;
3670bdcd8170SKalle Valo }
3671bdcd8170SKalle Valo 
3672bdcd8170SKalle Valo void ath6kl_wmi_shutdown(struct wmi *wmi)
3673bdcd8170SKalle Valo {
3674bdcd8170SKalle Valo 	if (!wmi)
3675bdcd8170SKalle Valo 		return;
3676bdcd8170SKalle Valo 
3677a0df5db1SJouni Malinen 	kfree(wmi->last_mgmt_tx_frame);
3678bdcd8170SKalle Valo 	kfree(wmi);
3679bdcd8170SKalle Valo }
3680