12be7d22fSVladimir Kondratiev /*
22be7d22fSVladimir Kondratiev  * Copyright (c) 2012 Qualcomm Atheros, Inc.
32be7d22fSVladimir Kondratiev  *
42be7d22fSVladimir Kondratiev  * Permission to use, copy, modify, and/or distribute this software for any
52be7d22fSVladimir Kondratiev  * purpose with or without fee is hereby granted, provided that the above
62be7d22fSVladimir Kondratiev  * copyright notice and this permission notice appear in all copies.
72be7d22fSVladimir Kondratiev  *
82be7d22fSVladimir Kondratiev  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
92be7d22fSVladimir Kondratiev  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
102be7d22fSVladimir Kondratiev  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
112be7d22fSVladimir Kondratiev  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
122be7d22fSVladimir Kondratiev  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
132be7d22fSVladimir Kondratiev  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
142be7d22fSVladimir Kondratiev  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
152be7d22fSVladimir Kondratiev  */
162be7d22fSVladimir Kondratiev 
172be7d22fSVladimir Kondratiev #include <linux/etherdevice.h>
1847e19af9SVladimir Kondratiev #include <linux/if_arp.h>
192be7d22fSVladimir Kondratiev 
202be7d22fSVladimir Kondratiev #include "wil6210.h"
2147e19af9SVladimir Kondratiev #include "txrx.h"
222be7d22fSVladimir Kondratiev #include "wmi.h"
2398658095SVladimir Kondratiev #include "trace.h"
242be7d22fSVladimir Kondratiev 
252be7d22fSVladimir Kondratiev /**
262be7d22fSVladimir Kondratiev  * WMI event receiving - theory of operations
272be7d22fSVladimir Kondratiev  *
282be7d22fSVladimir Kondratiev  * When firmware about to report WMI event, it fills memory area
292be7d22fSVladimir Kondratiev  * in the mailbox and raises misc. IRQ. Thread interrupt handler invoked for
302be7d22fSVladimir Kondratiev  * the misc IRQ, function @wmi_recv_cmd called by thread IRQ handler.
312be7d22fSVladimir Kondratiev  *
322be7d22fSVladimir Kondratiev  * @wmi_recv_cmd reads event, allocates memory chunk  and attaches it to the
332be7d22fSVladimir Kondratiev  * event list @wil->pending_wmi_ev. Then, work queue @wil->wmi_wq wakes up
342be7d22fSVladimir Kondratiev  * and handles events within the @wmi_event_worker. Every event get detached
352be7d22fSVladimir Kondratiev  * from list, processed and deleted.
362be7d22fSVladimir Kondratiev  *
372be7d22fSVladimir Kondratiev  * Purpose for this mechanism is to release IRQ thread; otherwise,
382be7d22fSVladimir Kondratiev  * if WMI event handling involves another WMI command flow, this 2-nd flow
392be7d22fSVladimir Kondratiev  * won't be completed because of blocked IRQ thread.
402be7d22fSVladimir Kondratiev  */
412be7d22fSVladimir Kondratiev 
422be7d22fSVladimir Kondratiev /**
432be7d22fSVladimir Kondratiev  * Addressing - theory of operations
442be7d22fSVladimir Kondratiev  *
452be7d22fSVladimir Kondratiev  * There are several buses present on the WIL6210 card.
462be7d22fSVladimir Kondratiev  * Same memory areas are visible at different address on
472be7d22fSVladimir Kondratiev  * the different busses. There are 3 main bus masters:
482be7d22fSVladimir Kondratiev  *  - MAC CPU (ucode)
492be7d22fSVladimir Kondratiev  *  - User CPU (firmware)
502be7d22fSVladimir Kondratiev  *  - AHB (host)
512be7d22fSVladimir Kondratiev  *
522be7d22fSVladimir Kondratiev  * On the PCI bus, there is one BAR (BAR0) of 2Mb size, exposing
532be7d22fSVladimir Kondratiev  * AHB addresses starting from 0x880000
542be7d22fSVladimir Kondratiev  *
552be7d22fSVladimir Kondratiev  * Internally, firmware uses addresses that allows faster access but
562be7d22fSVladimir Kondratiev  * are invisible from the host. To read from these addresses, alternative
572be7d22fSVladimir Kondratiev  * AHB address must be used.
582be7d22fSVladimir Kondratiev  *
592be7d22fSVladimir Kondratiev  * Memory mapping
602be7d22fSVladimir Kondratiev  * Linker address         PCI/Host address
612be7d22fSVladimir Kondratiev  *                        0x880000 .. 0xa80000  2Mb BAR0
622be7d22fSVladimir Kondratiev  * 0x800000 .. 0x807000   0x900000 .. 0x907000  28k DCCM
632be7d22fSVladimir Kondratiev  * 0x840000 .. 0x857000   0x908000 .. 0x91f000  92k PERIPH
642be7d22fSVladimir Kondratiev  */
652be7d22fSVladimir Kondratiev 
662be7d22fSVladimir Kondratiev /**
672be7d22fSVladimir Kondratiev  * @fw_mapping provides memory remapping table
682be7d22fSVladimir Kondratiev  */
692be7d22fSVladimir Kondratiev static const struct {
702be7d22fSVladimir Kondratiev 	u32 from; /* linker address - from, inclusive */
712be7d22fSVladimir Kondratiev 	u32 to;   /* linker address - to, exclusive */
722be7d22fSVladimir Kondratiev 	u32 host; /* PCI/Host address - BAR0 + 0x880000 */
732be7d22fSVladimir Kondratiev } fw_mapping[] = {
742be7d22fSVladimir Kondratiev 	{0x000000, 0x040000, 0x8c0000}, /* FW code RAM 256k */
752be7d22fSVladimir Kondratiev 	{0x800000, 0x808000, 0x900000}, /* FW data RAM 32k */
762be7d22fSVladimir Kondratiev 	{0x840000, 0x860000, 0x908000}, /* peripheral data RAM 128k/96k used */
772be7d22fSVladimir Kondratiev 	{0x880000, 0x88a000, 0x880000}, /* various RGF */
782be7d22fSVladimir Kondratiev 	{0x8c0000, 0x932000, 0x8c0000}, /* trivial mapping for upper area */
792be7d22fSVladimir Kondratiev 	/*
802be7d22fSVladimir Kondratiev 	 * 920000..930000 ucode code RAM
812be7d22fSVladimir Kondratiev 	 * 930000..932000 ucode data RAM
822be7d22fSVladimir Kondratiev 	 */
832be7d22fSVladimir Kondratiev };
842be7d22fSVladimir Kondratiev 
852be7d22fSVladimir Kondratiev /**
862be7d22fSVladimir Kondratiev  * return AHB address for given firmware/ucode internal (linker) address
872be7d22fSVladimir Kondratiev  * @x - internal address
882be7d22fSVladimir Kondratiev  * If address have no valid AHB mapping, return 0
892be7d22fSVladimir Kondratiev  */
902be7d22fSVladimir Kondratiev static u32 wmi_addr_remap(u32 x)
912be7d22fSVladimir Kondratiev {
922be7d22fSVladimir Kondratiev 	uint i;
932be7d22fSVladimir Kondratiev 
942be7d22fSVladimir Kondratiev 	for (i = 0; i < ARRAY_SIZE(fw_mapping); i++) {
952be7d22fSVladimir Kondratiev 		if ((x >= fw_mapping[i].from) && (x < fw_mapping[i].to))
962be7d22fSVladimir Kondratiev 			return x + fw_mapping[i].host - fw_mapping[i].from;
972be7d22fSVladimir Kondratiev 	}
982be7d22fSVladimir Kondratiev 
992be7d22fSVladimir Kondratiev 	return 0;
1002be7d22fSVladimir Kondratiev }
1012be7d22fSVladimir Kondratiev 
1022be7d22fSVladimir Kondratiev /**
1032be7d22fSVladimir Kondratiev  * Check address validity for WMI buffer; remap if needed
1042be7d22fSVladimir Kondratiev  * @ptr - internal (linker) fw/ucode address
1052be7d22fSVladimir Kondratiev  *
1062be7d22fSVladimir Kondratiev  * Valid buffer should be DWORD aligned
1072be7d22fSVladimir Kondratiev  *
1082be7d22fSVladimir Kondratiev  * return address for accessing buffer from the host;
1092be7d22fSVladimir Kondratiev  * if buffer is not valid, return NULL.
1102be7d22fSVladimir Kondratiev  */
1112be7d22fSVladimir Kondratiev void __iomem *wmi_buffer(struct wil6210_priv *wil, __le32 ptr_)
1122be7d22fSVladimir Kondratiev {
1132be7d22fSVladimir Kondratiev 	u32 off;
1142be7d22fSVladimir Kondratiev 	u32 ptr = le32_to_cpu(ptr_);
1152be7d22fSVladimir Kondratiev 
1162be7d22fSVladimir Kondratiev 	if (ptr % 4)
1172be7d22fSVladimir Kondratiev 		return NULL;
1182be7d22fSVladimir Kondratiev 
1192be7d22fSVladimir Kondratiev 	ptr = wmi_addr_remap(ptr);
1202be7d22fSVladimir Kondratiev 	if (ptr < WIL6210_FW_HOST_OFF)
1212be7d22fSVladimir Kondratiev 		return NULL;
1222be7d22fSVladimir Kondratiev 
1232be7d22fSVladimir Kondratiev 	off = HOSTADDR(ptr);
1242be7d22fSVladimir Kondratiev 	if (off > WIL6210_MEM_SIZE - 4)
1252be7d22fSVladimir Kondratiev 		return NULL;
1262be7d22fSVladimir Kondratiev 
1272be7d22fSVladimir Kondratiev 	return wil->csr + off;
1282be7d22fSVladimir Kondratiev }
1292be7d22fSVladimir Kondratiev 
1302be7d22fSVladimir Kondratiev /**
1312be7d22fSVladimir Kondratiev  * Check address validity
1322be7d22fSVladimir Kondratiev  */
1332be7d22fSVladimir Kondratiev void __iomem *wmi_addr(struct wil6210_priv *wil, u32 ptr)
1342be7d22fSVladimir Kondratiev {
1352be7d22fSVladimir Kondratiev 	u32 off;
1362be7d22fSVladimir Kondratiev 
1372be7d22fSVladimir Kondratiev 	if (ptr % 4)
1382be7d22fSVladimir Kondratiev 		return NULL;
1392be7d22fSVladimir Kondratiev 
1402be7d22fSVladimir Kondratiev 	if (ptr < WIL6210_FW_HOST_OFF)
1412be7d22fSVladimir Kondratiev 		return NULL;
1422be7d22fSVladimir Kondratiev 
1432be7d22fSVladimir Kondratiev 	off = HOSTADDR(ptr);
1442be7d22fSVladimir Kondratiev 	if (off > WIL6210_MEM_SIZE - 4)
1452be7d22fSVladimir Kondratiev 		return NULL;
1462be7d22fSVladimir Kondratiev 
1472be7d22fSVladimir Kondratiev 	return wil->csr + off;
1482be7d22fSVladimir Kondratiev }
1492be7d22fSVladimir Kondratiev 
1502be7d22fSVladimir Kondratiev int wmi_read_hdr(struct wil6210_priv *wil, __le32 ptr,
1512be7d22fSVladimir Kondratiev 		 struct wil6210_mbox_hdr *hdr)
1522be7d22fSVladimir Kondratiev {
1532be7d22fSVladimir Kondratiev 	void __iomem *src = wmi_buffer(wil, ptr);
1542be7d22fSVladimir Kondratiev 	if (!src)
1552be7d22fSVladimir Kondratiev 		return -EINVAL;
1562be7d22fSVladimir Kondratiev 
1572be7d22fSVladimir Kondratiev 	wil_memcpy_fromio_32(hdr, src, sizeof(*hdr));
1582be7d22fSVladimir Kondratiev 
1592be7d22fSVladimir Kondratiev 	return 0;
1602be7d22fSVladimir Kondratiev }
1612be7d22fSVladimir Kondratiev 
1622be7d22fSVladimir Kondratiev static int __wmi_send(struct wil6210_priv *wil, u16 cmdid, void *buf, u16 len)
1632be7d22fSVladimir Kondratiev {
1642be7d22fSVladimir Kondratiev 	struct {
1652be7d22fSVladimir Kondratiev 		struct wil6210_mbox_hdr hdr;
1662be7d22fSVladimir Kondratiev 		struct wil6210_mbox_hdr_wmi wmi;
1672be7d22fSVladimir Kondratiev 	} __packed cmd = {
1682be7d22fSVladimir Kondratiev 		.hdr = {
1692be7d22fSVladimir Kondratiev 			.type = WIL_MBOX_HDR_TYPE_WMI,
1702be7d22fSVladimir Kondratiev 			.flags = 0,
1712be7d22fSVladimir Kondratiev 			.len = cpu_to_le16(sizeof(cmd.wmi) + len),
1722be7d22fSVladimir Kondratiev 		},
1732be7d22fSVladimir Kondratiev 		.wmi = {
1742be7d22fSVladimir Kondratiev 			.id = cpu_to_le16(cmdid),
1752be7d22fSVladimir Kondratiev 			.info1 = 0,
1762be7d22fSVladimir Kondratiev 		},
1772be7d22fSVladimir Kondratiev 	};
1782be7d22fSVladimir Kondratiev 	struct wil6210_mbox_ring *r = &wil->mbox_ctl.tx;
1792be7d22fSVladimir Kondratiev 	struct wil6210_mbox_ring_desc d_head;
1802be7d22fSVladimir Kondratiev 	u32 next_head;
1812be7d22fSVladimir Kondratiev 	void __iomem *dst;
1822be7d22fSVladimir Kondratiev 	void __iomem *head = wmi_addr(wil, r->head);
1832be7d22fSVladimir Kondratiev 	uint retry;
1842be7d22fSVladimir Kondratiev 
1852be7d22fSVladimir Kondratiev 	if (sizeof(cmd) + len > r->entry_size) {
1862be7d22fSVladimir Kondratiev 		wil_err(wil, "WMI size too large: %d bytes, max is %d\n",
1872be7d22fSVladimir Kondratiev 			(int)(sizeof(cmd) + len), r->entry_size);
1882be7d22fSVladimir Kondratiev 		return -ERANGE;
1892be7d22fSVladimir Kondratiev 	}
1902be7d22fSVladimir Kondratiev 
1912be7d22fSVladimir Kondratiev 	might_sleep();
1922be7d22fSVladimir Kondratiev 
1932be7d22fSVladimir Kondratiev 	if (!test_bit(wil_status_fwready, &wil->status)) {
1942be7d22fSVladimir Kondratiev 		wil_err(wil, "FW not ready\n");
1952be7d22fSVladimir Kondratiev 		return -EAGAIN;
1962be7d22fSVladimir Kondratiev 	}
1972be7d22fSVladimir Kondratiev 
1982be7d22fSVladimir Kondratiev 	if (!head) {
1992be7d22fSVladimir Kondratiev 		wil_err(wil, "WMI head is garbage: 0x%08x\n", r->head);
2002be7d22fSVladimir Kondratiev 		return -EINVAL;
2012be7d22fSVladimir Kondratiev 	}
2022be7d22fSVladimir Kondratiev 	/* read Tx head till it is not busy */
2032be7d22fSVladimir Kondratiev 	for (retry = 5; retry > 0; retry--) {
2042be7d22fSVladimir Kondratiev 		wil_memcpy_fromio_32(&d_head, head, sizeof(d_head));
2052be7d22fSVladimir Kondratiev 		if (d_head.sync == 0)
2062be7d22fSVladimir Kondratiev 			break;
2072be7d22fSVladimir Kondratiev 		msleep(20);
2082be7d22fSVladimir Kondratiev 	}
2092be7d22fSVladimir Kondratiev 	if (d_head.sync != 0) {
2102be7d22fSVladimir Kondratiev 		wil_err(wil, "WMI head busy\n");
2112be7d22fSVladimir Kondratiev 		return -EBUSY;
2122be7d22fSVladimir Kondratiev 	}
2132be7d22fSVladimir Kondratiev 	/* next head */
2142be7d22fSVladimir Kondratiev 	next_head = r->base + ((r->head - r->base + sizeof(d_head)) % r->size);
2157743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "Head 0x%08x -> 0x%08x\n", r->head, next_head);
2162be7d22fSVladimir Kondratiev 	/* wait till FW finish with previous command */
2172be7d22fSVladimir Kondratiev 	for (retry = 5; retry > 0; retry--) {
2182be7d22fSVladimir Kondratiev 		r->tail = ioread32(wil->csr + HOST_MBOX +
2192be7d22fSVladimir Kondratiev 				   offsetof(struct wil6210_mbox_ctl, tx.tail));
2202be7d22fSVladimir Kondratiev 		if (next_head != r->tail)
2212be7d22fSVladimir Kondratiev 			break;
2222be7d22fSVladimir Kondratiev 		msleep(20);
2232be7d22fSVladimir Kondratiev 	}
2242be7d22fSVladimir Kondratiev 	if (next_head == r->tail) {
2252be7d22fSVladimir Kondratiev 		wil_err(wil, "WMI ring full\n");
2262be7d22fSVladimir Kondratiev 		return -EBUSY;
2272be7d22fSVladimir Kondratiev 	}
2282be7d22fSVladimir Kondratiev 	dst = wmi_buffer(wil, d_head.addr);
2292be7d22fSVladimir Kondratiev 	if (!dst) {
2302be7d22fSVladimir Kondratiev 		wil_err(wil, "invalid WMI buffer: 0x%08x\n",
2312be7d22fSVladimir Kondratiev 			le32_to_cpu(d_head.addr));
2322be7d22fSVladimir Kondratiev 		return -EINVAL;
2332be7d22fSVladimir Kondratiev 	}
2342be7d22fSVladimir Kondratiev 	cmd.hdr.seq = cpu_to_le16(++wil->wmi_seq);
2352be7d22fSVladimir Kondratiev 	/* set command */
2367743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "WMI command 0x%04x [%d]\n", cmdid, len);
2377743882dSVladimir Kondratiev 	wil_hex_dump_wmi("Cmd ", DUMP_PREFIX_OFFSET, 16, 1, &cmd,
2382be7d22fSVladimir Kondratiev 			 sizeof(cmd), true);
2397743882dSVladimir Kondratiev 	wil_hex_dump_wmi("cmd ", DUMP_PREFIX_OFFSET, 16, 1, buf,
2402be7d22fSVladimir Kondratiev 			 len, true);
2412be7d22fSVladimir Kondratiev 	wil_memcpy_toio_32(dst, &cmd, sizeof(cmd));
2422be7d22fSVladimir Kondratiev 	wil_memcpy_toio_32(dst + sizeof(cmd), buf, len);
2432be7d22fSVladimir Kondratiev 	/* mark entry as full */
2442be7d22fSVladimir Kondratiev 	iowrite32(1, wil->csr + HOSTADDR(r->head) +
2452be7d22fSVladimir Kondratiev 		  offsetof(struct wil6210_mbox_ring_desc, sync));
2462be7d22fSVladimir Kondratiev 	/* advance next ptr */
2472be7d22fSVladimir Kondratiev 	iowrite32(r->head = next_head, wil->csr + HOST_MBOX +
2482be7d22fSVladimir Kondratiev 		  offsetof(struct wil6210_mbox_ctl, tx.head));
2492be7d22fSVladimir Kondratiev 
25098658095SVladimir Kondratiev 	trace_wil6210_wmi_cmd(cmdid, buf, len);
25198658095SVladimir Kondratiev 
2522be7d22fSVladimir Kondratiev 	/* interrupt to FW */
2532be7d22fSVladimir Kondratiev 	iowrite32(SW_INT_MBOX, wil->csr + HOST_SW_INT);
2542be7d22fSVladimir Kondratiev 
2552be7d22fSVladimir Kondratiev 	return 0;
2562be7d22fSVladimir Kondratiev }
2572be7d22fSVladimir Kondratiev 
2582be7d22fSVladimir Kondratiev int wmi_send(struct wil6210_priv *wil, u16 cmdid, void *buf, u16 len)
2592be7d22fSVladimir Kondratiev {
2602be7d22fSVladimir Kondratiev 	int rc;
2612be7d22fSVladimir Kondratiev 
2622be7d22fSVladimir Kondratiev 	mutex_lock(&wil->wmi_mutex);
2632be7d22fSVladimir Kondratiev 	rc = __wmi_send(wil, cmdid, buf, len);
2642be7d22fSVladimir Kondratiev 	mutex_unlock(&wil->wmi_mutex);
2652be7d22fSVladimir Kondratiev 
2662be7d22fSVladimir Kondratiev 	return rc;
2672be7d22fSVladimir Kondratiev }
2682be7d22fSVladimir Kondratiev 
2692be7d22fSVladimir Kondratiev /*=== Event handlers ===*/
2702be7d22fSVladimir Kondratiev static void wmi_evt_ready(struct wil6210_priv *wil, int id, void *d, int len)
2712be7d22fSVladimir Kondratiev {
2722be7d22fSVladimir Kondratiev 	struct net_device *ndev = wil_to_ndev(wil);
2732be7d22fSVladimir Kondratiev 	struct wireless_dev *wdev = wil->wdev;
2742be7d22fSVladimir Kondratiev 	struct wmi_ready_event *evt = d;
275b8023177SVladimir Kondratiev 	wil->fw_version = le32_to_cpu(evt->sw_version);
276b8023177SVladimir Kondratiev 	wil->n_mids = evt->numof_additional_mids;
2772be7d22fSVladimir Kondratiev 
278b8023177SVladimir Kondratiev 	wil_dbg_wmi(wil, "FW ver. %d; MAC %pM; %d MID's\n", wil->fw_version,
279b8023177SVladimir Kondratiev 		    evt->mac, wil->n_mids);
2802be7d22fSVladimir Kondratiev 
2812be7d22fSVladimir Kondratiev 	if (!is_valid_ether_addr(ndev->dev_addr)) {
2822be7d22fSVladimir Kondratiev 		memcpy(ndev->dev_addr, evt->mac, ETH_ALEN);
2832be7d22fSVladimir Kondratiev 		memcpy(ndev->perm_addr, evt->mac, ETH_ALEN);
2842be7d22fSVladimir Kondratiev 	}
2852be7d22fSVladimir Kondratiev 	snprintf(wdev->wiphy->fw_version, sizeof(wdev->wiphy->fw_version),
286b8023177SVladimir Kondratiev 		 "%d", wil->fw_version);
2872be7d22fSVladimir Kondratiev }
2882be7d22fSVladimir Kondratiev 
2892be7d22fSVladimir Kondratiev static void wmi_evt_fw_ready(struct wil6210_priv *wil, int id, void *d,
2902be7d22fSVladimir Kondratiev 			     int len)
2912be7d22fSVladimir Kondratiev {
2927743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "WMI: FW ready\n");
2932be7d22fSVladimir Kondratiev 
2942be7d22fSVladimir Kondratiev 	set_bit(wil_status_fwready, &wil->status);
2952be7d22fSVladimir Kondratiev 	/* reuse wmi_ready for the firmware ready indication */
2962be7d22fSVladimir Kondratiev 	complete(&wil->wmi_ready);
2972be7d22fSVladimir Kondratiev }
2982be7d22fSVladimir Kondratiev 
2992be7d22fSVladimir Kondratiev static void wmi_evt_rx_mgmt(struct wil6210_priv *wil, int id, void *d, int len)
3002be7d22fSVladimir Kondratiev {
3012be7d22fSVladimir Kondratiev 	struct wmi_rx_mgmt_packet_event *data = d;
3022be7d22fSVladimir Kondratiev 	struct wiphy *wiphy = wil_to_wiphy(wil);
3032be7d22fSVladimir Kondratiev 	struct ieee80211_mgmt *rx_mgmt_frame =
3042be7d22fSVladimir Kondratiev 			(struct ieee80211_mgmt *)data->payload;
3052be7d22fSVladimir Kondratiev 	int ch_no = data->info.channel+1;
3062be7d22fSVladimir Kondratiev 	u32 freq = ieee80211_channel_to_frequency(ch_no,
3072be7d22fSVladimir Kondratiev 			IEEE80211_BAND_60GHZ);
3082be7d22fSVladimir Kondratiev 	struct ieee80211_channel *channel = ieee80211_get_channel(wiphy, freq);
3092be7d22fSVladimir Kondratiev 	/* TODO convert LE to CPU */
3102be7d22fSVladimir Kondratiev 	s32 signal = 0; /* TODO */
3112be7d22fSVladimir Kondratiev 	__le16 fc = rx_mgmt_frame->frame_control;
3122be7d22fSVladimir Kondratiev 	u32 d_len = le32_to_cpu(data->info.len);
3132be7d22fSVladimir Kondratiev 	u16 d_status = le16_to_cpu(data->info.status);
3142be7d22fSVladimir Kondratiev 
3157743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "MGMT: channel %d MCS %d SNR %d\n",
3162be7d22fSVladimir Kondratiev 		    data->info.channel, data->info.mcs, data->info.snr);
3177743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "status 0x%04x len %d stype %04x\n", d_status, d_len,
3182be7d22fSVladimir Kondratiev 		    le16_to_cpu(data->info.stype));
3197743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "qid %d mid %d cid %d\n",
3202be7d22fSVladimir Kondratiev 		    data->info.qid, data->info.mid, data->info.cid);
3212be7d22fSVladimir Kondratiev 
3222be7d22fSVladimir Kondratiev 	if (!channel) {
3232be7d22fSVladimir Kondratiev 		wil_err(wil, "Frame on unsupported channel\n");
3242be7d22fSVladimir Kondratiev 		return;
3252be7d22fSVladimir Kondratiev 	}
3262be7d22fSVladimir Kondratiev 
3272be7d22fSVladimir Kondratiev 	if (ieee80211_is_beacon(fc) || ieee80211_is_probe_resp(fc)) {
3282be7d22fSVladimir Kondratiev 		struct cfg80211_bss *bss;
3292be7d22fSVladimir Kondratiev 
330a0f7845bSVladimir Kondratiev 		bss = cfg80211_inform_bss_frame(wiphy, channel, rx_mgmt_frame,
331a0f7845bSVladimir Kondratiev 						d_len, signal, GFP_KERNEL);
3322be7d22fSVladimir Kondratiev 		if (bss) {
3337743882dSVladimir Kondratiev 			wil_dbg_wmi(wil, "Added BSS %pM\n",
3342be7d22fSVladimir Kondratiev 				    rx_mgmt_frame->bssid);
3355b112d3dSJohannes Berg 			cfg80211_put_bss(wiphy, bss);
3362be7d22fSVladimir Kondratiev 		} else {
3372be7d22fSVladimir Kondratiev 			wil_err(wil, "cfg80211_inform_bss() failed\n");
3382be7d22fSVladimir Kondratiev 		}
339102b1d99SVladimir Kondratiev 	} else {
340102b1d99SVladimir Kondratiev 		cfg80211_rx_mgmt(wil->wdev, freq, signal,
341102b1d99SVladimir Kondratiev 				 (void *)rx_mgmt_frame, d_len, GFP_KERNEL);
3422be7d22fSVladimir Kondratiev 	}
3432be7d22fSVladimir Kondratiev }
3442be7d22fSVladimir Kondratiev 
3452be7d22fSVladimir Kondratiev static void wmi_evt_scan_complete(struct wil6210_priv *wil, int id,
3462be7d22fSVladimir Kondratiev 				  void *d, int len)
3472be7d22fSVladimir Kondratiev {
3482be7d22fSVladimir Kondratiev 	if (wil->scan_request) {
3492be7d22fSVladimir Kondratiev 		struct wmi_scan_complete_event *data = d;
3502be7d22fSVladimir Kondratiev 		bool aborted = (data->status != 0);
3512be7d22fSVladimir Kondratiev 
3527743882dSVladimir Kondratiev 		wil_dbg_wmi(wil, "SCAN_COMPLETE(0x%08x)\n", data->status);
3532be7d22fSVladimir Kondratiev 		cfg80211_scan_done(wil->scan_request, aborted);
3542be7d22fSVladimir Kondratiev 		wil->scan_request = NULL;
3552be7d22fSVladimir Kondratiev 	} else {
3562be7d22fSVladimir Kondratiev 		wil_err(wil, "SCAN_COMPLETE while not scanning\n");
3572be7d22fSVladimir Kondratiev 	}
3582be7d22fSVladimir Kondratiev }
3592be7d22fSVladimir Kondratiev 
3602be7d22fSVladimir Kondratiev static void wmi_evt_connect(struct wil6210_priv *wil, int id, void *d, int len)
3612be7d22fSVladimir Kondratiev {
3622be7d22fSVladimir Kondratiev 	struct net_device *ndev = wil_to_ndev(wil);
3632be7d22fSVladimir Kondratiev 	struct wireless_dev *wdev = wil->wdev;
3642be7d22fSVladimir Kondratiev 	struct wmi_connect_event *evt = d;
3652be7d22fSVladimir Kondratiev 	int ch; /* channel number */
3662be7d22fSVladimir Kondratiev 	struct station_info sinfo;
3672be7d22fSVladimir Kondratiev 	u8 *assoc_req_ie, *assoc_resp_ie;
3682be7d22fSVladimir Kondratiev 	size_t assoc_req_ielen, assoc_resp_ielen;
3692be7d22fSVladimir Kondratiev 	/* capinfo(u16) + listen_interval(u16) + IEs */
3702be7d22fSVladimir Kondratiev 	const size_t assoc_req_ie_offset = sizeof(u16) * 2;
3712be7d22fSVladimir Kondratiev 	/* capinfo(u16) + status_code(u16) + associd(u16) + IEs */
3722be7d22fSVladimir Kondratiev 	const size_t assoc_resp_ie_offset = sizeof(u16) * 3;
3732be7d22fSVladimir Kondratiev 
3742be7d22fSVladimir Kondratiev 	if (len < sizeof(*evt)) {
3752be7d22fSVladimir Kondratiev 		wil_err(wil, "Connect event too short : %d bytes\n", len);
3762be7d22fSVladimir Kondratiev 		return;
3772be7d22fSVladimir Kondratiev 	}
3782be7d22fSVladimir Kondratiev 	if (len != sizeof(*evt) + evt->beacon_ie_len + evt->assoc_req_len +
3792be7d22fSVladimir Kondratiev 		   evt->assoc_resp_len) {
3802be7d22fSVladimir Kondratiev 		wil_err(wil,
3812be7d22fSVladimir Kondratiev 			"Connect event corrupted : %d != %d + %d + %d + %d\n",
3822be7d22fSVladimir Kondratiev 			len, (int)sizeof(*evt), evt->beacon_ie_len,
3832be7d22fSVladimir Kondratiev 			evt->assoc_req_len, evt->assoc_resp_len);
3842be7d22fSVladimir Kondratiev 		return;
3852be7d22fSVladimir Kondratiev 	}
3862be7d22fSVladimir Kondratiev 	ch = evt->channel + 1;
3877743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "Connect %pM channel [%d] cid %d\n",
3882be7d22fSVladimir Kondratiev 		    evt->bssid, ch, evt->cid);
3897743882dSVladimir Kondratiev 	wil_hex_dump_wmi("connect AI : ", DUMP_PREFIX_OFFSET, 16, 1,
3902be7d22fSVladimir Kondratiev 			 evt->assoc_info, len - sizeof(*evt), true);
3912be7d22fSVladimir Kondratiev 
3922be7d22fSVladimir Kondratiev 	/* figure out IE's */
3932be7d22fSVladimir Kondratiev 	assoc_req_ie = &evt->assoc_info[evt->beacon_ie_len +
3942be7d22fSVladimir Kondratiev 					assoc_req_ie_offset];
3952be7d22fSVladimir Kondratiev 	assoc_req_ielen = evt->assoc_req_len - assoc_req_ie_offset;
3962be7d22fSVladimir Kondratiev 	if (evt->assoc_req_len <= assoc_req_ie_offset) {
3972be7d22fSVladimir Kondratiev 		assoc_req_ie = NULL;
3982be7d22fSVladimir Kondratiev 		assoc_req_ielen = 0;
3992be7d22fSVladimir Kondratiev 	}
4002be7d22fSVladimir Kondratiev 
4012be7d22fSVladimir Kondratiev 	assoc_resp_ie = &evt->assoc_info[evt->beacon_ie_len +
4022be7d22fSVladimir Kondratiev 					 evt->assoc_req_len +
4032be7d22fSVladimir Kondratiev 					 assoc_resp_ie_offset];
4042be7d22fSVladimir Kondratiev 	assoc_resp_ielen = evt->assoc_resp_len - assoc_resp_ie_offset;
4052be7d22fSVladimir Kondratiev 	if (evt->assoc_resp_len <= assoc_resp_ie_offset) {
4062be7d22fSVladimir Kondratiev 		assoc_resp_ie = NULL;
4072be7d22fSVladimir Kondratiev 		assoc_resp_ielen = 0;
4082be7d22fSVladimir Kondratiev 	}
4092be7d22fSVladimir Kondratiev 
4102be7d22fSVladimir Kondratiev 	if ((wdev->iftype == NL80211_IFTYPE_STATION) ||
4112be7d22fSVladimir Kondratiev 	    (wdev->iftype == NL80211_IFTYPE_P2P_CLIENT)) {
412b338f74eSVladimir Kondratiev 		if (!test_bit(wil_status_fwconnecting, &wil->status)) {
4132be7d22fSVladimir Kondratiev 			wil_err(wil, "Not in connecting state\n");
4142be7d22fSVladimir Kondratiev 			return;
4152be7d22fSVladimir Kondratiev 		}
4162be7d22fSVladimir Kondratiev 		del_timer_sync(&wil->connect_timer);
4172be7d22fSVladimir Kondratiev 		cfg80211_connect_result(ndev, evt->bssid,
4182be7d22fSVladimir Kondratiev 					assoc_req_ie, assoc_req_ielen,
4192be7d22fSVladimir Kondratiev 					assoc_resp_ie, assoc_resp_ielen,
4202be7d22fSVladimir Kondratiev 					WLAN_STATUS_SUCCESS, GFP_KERNEL);
4212be7d22fSVladimir Kondratiev 
4222be7d22fSVladimir Kondratiev 	} else if ((wdev->iftype == NL80211_IFTYPE_AP) ||
4232be7d22fSVladimir Kondratiev 		   (wdev->iftype == NL80211_IFTYPE_P2P_GO)) {
4242be7d22fSVladimir Kondratiev 		memset(&sinfo, 0, sizeof(sinfo));
4252be7d22fSVladimir Kondratiev 
4262be7d22fSVladimir Kondratiev 		sinfo.generation = wil->sinfo_gen++;
4272be7d22fSVladimir Kondratiev 
4282be7d22fSVladimir Kondratiev 		if (assoc_req_ie) {
4292be7d22fSVladimir Kondratiev 			sinfo.assoc_req_ies = assoc_req_ie;
4302be7d22fSVladimir Kondratiev 			sinfo.assoc_req_ies_len = assoc_req_ielen;
4312be7d22fSVladimir Kondratiev 			sinfo.filled |= STATION_INFO_ASSOC_REQ_IES;
4322be7d22fSVladimir Kondratiev 		}
4332be7d22fSVladimir Kondratiev 
4342be7d22fSVladimir Kondratiev 		cfg80211_new_sta(ndev, evt->bssid, &sinfo, GFP_KERNEL);
4352be7d22fSVladimir Kondratiev 	}
436b338f74eSVladimir Kondratiev 	clear_bit(wil_status_fwconnecting, &wil->status);
4372be7d22fSVladimir Kondratiev 	set_bit(wil_status_fwconnected, &wil->status);
4382be7d22fSVladimir Kondratiev 
4392be7d22fSVladimir Kondratiev 	/* FIXME FW can transmit only ucast frames to peer */
4402be7d22fSVladimir Kondratiev 	/* FIXME real ring_id instead of hard coded 0 */
4412be7d22fSVladimir Kondratiev 	memcpy(wil->dst_addr[0], evt->bssid, ETH_ALEN);
4422be7d22fSVladimir Kondratiev 
4432be7d22fSVladimir Kondratiev 	wil->pending_connect_cid = evt->cid;
444d81079f1SVladimir Kondratiev 	queue_work(wil->wmi_wq_conn, &wil->connect_worker);
4452be7d22fSVladimir Kondratiev }
4462be7d22fSVladimir Kondratiev 
4472be7d22fSVladimir Kondratiev static void wmi_evt_disconnect(struct wil6210_priv *wil, int id,
4482be7d22fSVladimir Kondratiev 			       void *d, int len)
4492be7d22fSVladimir Kondratiev {
4502be7d22fSVladimir Kondratiev 	struct wmi_disconnect_event *evt = d;
4512be7d22fSVladimir Kondratiev 
4527743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "Disconnect %pM reason %d proto %d wmi\n",
4532be7d22fSVladimir Kondratiev 		    evt->bssid,
4542be7d22fSVladimir Kondratiev 		    evt->protocol_reason_status, evt->disconnect_reason);
4552be7d22fSVladimir Kondratiev 
4562be7d22fSVladimir Kondratiev 	wil->sinfo_gen++;
4572be7d22fSVladimir Kondratiev 
4582be7d22fSVladimir Kondratiev 	wil6210_disconnect(wil, evt->bssid);
4592be7d22fSVladimir Kondratiev }
4602be7d22fSVladimir Kondratiev 
4612be7d22fSVladimir Kondratiev static void wmi_evt_notify(struct wil6210_priv *wil, int id, void *d, int len)
4622be7d22fSVladimir Kondratiev {
4632be7d22fSVladimir Kondratiev 	struct wmi_notify_req_done_event *evt = d;
4642be7d22fSVladimir Kondratiev 
4652be7d22fSVladimir Kondratiev 	if (len < sizeof(*evt)) {
4662be7d22fSVladimir Kondratiev 		wil_err(wil, "Short NOTIFY event\n");
4672be7d22fSVladimir Kondratiev 		return;
4682be7d22fSVladimir Kondratiev 	}
4692be7d22fSVladimir Kondratiev 
4702be7d22fSVladimir Kondratiev 	wil->stats.tsf = le64_to_cpu(evt->tsf);
4712be7d22fSVladimir Kondratiev 	wil->stats.snr = le32_to_cpu(evt->snr_val);
4722be7d22fSVladimir Kondratiev 	wil->stats.bf_mcs = le16_to_cpu(evt->bf_mcs);
4732be7d22fSVladimir Kondratiev 	wil->stats.my_rx_sector = le16_to_cpu(evt->my_rx_sector);
4742be7d22fSVladimir Kondratiev 	wil->stats.my_tx_sector = le16_to_cpu(evt->my_tx_sector);
4752be7d22fSVladimir Kondratiev 	wil->stats.peer_rx_sector = le16_to_cpu(evt->other_rx_sector);
4762be7d22fSVladimir Kondratiev 	wil->stats.peer_tx_sector = le16_to_cpu(evt->other_tx_sector);
4777743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "Link status, MCS %d TSF 0x%016llx\n"
4782be7d22fSVladimir Kondratiev 		    "BF status 0x%08x SNR 0x%08x\n"
4792be7d22fSVladimir Kondratiev 		    "Tx Tpt %d goodput %d Rx goodput %d\n"
4802be7d22fSVladimir Kondratiev 		    "Sectors(rx:tx) my %d:%d peer %d:%d\n",
4812be7d22fSVladimir Kondratiev 		    wil->stats.bf_mcs, wil->stats.tsf, evt->status,
4822be7d22fSVladimir Kondratiev 		    wil->stats.snr, le32_to_cpu(evt->tx_tpt),
4832be7d22fSVladimir Kondratiev 		    le32_to_cpu(evt->tx_goodput), le32_to_cpu(evt->rx_goodput),
4842be7d22fSVladimir Kondratiev 		    wil->stats.my_rx_sector, wil->stats.my_tx_sector,
4852be7d22fSVladimir Kondratiev 		    wil->stats.peer_rx_sector, wil->stats.peer_tx_sector);
4862be7d22fSVladimir Kondratiev }
4872be7d22fSVladimir Kondratiev 
4882be7d22fSVladimir Kondratiev /*
4892be7d22fSVladimir Kondratiev  * Firmware reports EAPOL frame using WME event.
4902be7d22fSVladimir Kondratiev  * Reconstruct Ethernet frame and deliver it via normal Rx
4912be7d22fSVladimir Kondratiev  */
4922be7d22fSVladimir Kondratiev static void wmi_evt_eapol_rx(struct wil6210_priv *wil, int id,
4932be7d22fSVladimir Kondratiev 			     void *d, int len)
4942be7d22fSVladimir Kondratiev {
4952be7d22fSVladimir Kondratiev 	struct net_device *ndev = wil_to_ndev(wil);
4962be7d22fSVladimir Kondratiev 	struct wmi_eapol_rx_event *evt = d;
4972be7d22fSVladimir Kondratiev 	u16 eapol_len = le16_to_cpu(evt->eapol_len);
4982be7d22fSVladimir Kondratiev 	int sz = eapol_len + ETH_HLEN;
4992be7d22fSVladimir Kondratiev 	struct sk_buff *skb;
5002be7d22fSVladimir Kondratiev 	struct ethhdr *eth;
5012be7d22fSVladimir Kondratiev 
5027743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "EAPOL len %d from %pM\n", eapol_len,
5032be7d22fSVladimir Kondratiev 		    evt->src_mac);
5042be7d22fSVladimir Kondratiev 
5052be7d22fSVladimir Kondratiev 	if (eapol_len > 196) { /* TODO: revisit size limit */
5062be7d22fSVladimir Kondratiev 		wil_err(wil, "EAPOL too large\n");
5072be7d22fSVladimir Kondratiev 		return;
5082be7d22fSVladimir Kondratiev 	}
5092be7d22fSVladimir Kondratiev 
5102be7d22fSVladimir Kondratiev 	skb = alloc_skb(sz, GFP_KERNEL);
5112be7d22fSVladimir Kondratiev 	if (!skb) {
5122be7d22fSVladimir Kondratiev 		wil_err(wil, "Failed to allocate skb\n");
5132be7d22fSVladimir Kondratiev 		return;
5142be7d22fSVladimir Kondratiev 	}
5152be7d22fSVladimir Kondratiev 	eth = (struct ethhdr *)skb_put(skb, ETH_HLEN);
5162be7d22fSVladimir Kondratiev 	memcpy(eth->h_dest, ndev->dev_addr, ETH_ALEN);
5172be7d22fSVladimir Kondratiev 	memcpy(eth->h_source, evt->src_mac, ETH_ALEN);
5182be7d22fSVladimir Kondratiev 	eth->h_proto = cpu_to_be16(ETH_P_PAE);
5192be7d22fSVladimir Kondratiev 	memcpy(skb_put(skb, eapol_len), evt->eapol, eapol_len);
5202be7d22fSVladimir Kondratiev 	skb->protocol = eth_type_trans(skb, ndev);
5212be7d22fSVladimir Kondratiev 	if (likely(netif_rx_ni(skb) == NET_RX_SUCCESS)) {
5222be7d22fSVladimir Kondratiev 		ndev->stats.rx_packets++;
5232be7d22fSVladimir Kondratiev 		ndev->stats.rx_bytes += skb->len;
5242be7d22fSVladimir Kondratiev 	} else {
5252be7d22fSVladimir Kondratiev 		ndev->stats.rx_dropped++;
5262be7d22fSVladimir Kondratiev 	}
5272be7d22fSVladimir Kondratiev }
5282be7d22fSVladimir Kondratiev 
5293442a504SVladimir Kondratiev static void wmi_evt_linkup(struct wil6210_priv *wil, int id, void *d, int len)
5303442a504SVladimir Kondratiev {
5313442a504SVladimir Kondratiev 	struct net_device *ndev = wil_to_ndev(wil);
5323442a504SVladimir Kondratiev 	struct wmi_data_port_open_event *evt = d;
5333442a504SVladimir Kondratiev 
5343442a504SVladimir Kondratiev 	wil_dbg_wmi(wil, "Link UP for CID %d\n", evt->cid);
5353442a504SVladimir Kondratiev 
5363442a504SVladimir Kondratiev 	netif_carrier_on(ndev);
5373442a504SVladimir Kondratiev }
5383442a504SVladimir Kondratiev 
5393442a504SVladimir Kondratiev static void wmi_evt_linkdown(struct wil6210_priv *wil, int id, void *d, int len)
5403442a504SVladimir Kondratiev {
5413442a504SVladimir Kondratiev 	struct net_device *ndev = wil_to_ndev(wil);
5423442a504SVladimir Kondratiev 	struct wmi_wbe_link_down_event *evt = d;
5433442a504SVladimir Kondratiev 
5443442a504SVladimir Kondratiev 	wil_dbg_wmi(wil, "Link DOWN for CID %d, reason %d\n",
5453442a504SVladimir Kondratiev 		    evt->cid, le32_to_cpu(evt->reason));
5463442a504SVladimir Kondratiev 
5473442a504SVladimir Kondratiev 	netif_carrier_off(ndev);
5483442a504SVladimir Kondratiev }
5493442a504SVladimir Kondratiev 
550249a382bSVladimir Kondratiev static void wmi_evt_ba_status(struct wil6210_priv *wil, int id, void *d,
551249a382bSVladimir Kondratiev 			      int len)
552249a382bSVladimir Kondratiev {
553249a382bSVladimir Kondratiev 	struct wmi_vring_ba_status_event *evt = d;
554249a382bSVladimir Kondratiev 
555249a382bSVladimir Kondratiev 	wil_dbg_wmi(wil, "BACK[%d] %s {%d} timeout %d\n",
556249a382bSVladimir Kondratiev 		    evt->ringid, evt->status ? "N/A" : "OK", evt->agg_wsize,
557249a382bSVladimir Kondratiev 		    __le16_to_cpu(evt->ba_timeout));
558249a382bSVladimir Kondratiev }
559249a382bSVladimir Kondratiev 
5602be7d22fSVladimir Kondratiev static const struct {
5612be7d22fSVladimir Kondratiev 	int eventid;
5622be7d22fSVladimir Kondratiev 	void (*handler)(struct wil6210_priv *wil, int eventid,
5632be7d22fSVladimir Kondratiev 			void *data, int data_len);
5642be7d22fSVladimir Kondratiev } wmi_evt_handlers[] = {
5652be7d22fSVladimir Kondratiev 	{WMI_READY_EVENTID,		wmi_evt_ready},
5662be7d22fSVladimir Kondratiev 	{WMI_FW_READY_EVENTID,		wmi_evt_fw_ready},
5672be7d22fSVladimir Kondratiev 	{WMI_RX_MGMT_PACKET_EVENTID,	wmi_evt_rx_mgmt},
5682be7d22fSVladimir Kondratiev 	{WMI_SCAN_COMPLETE_EVENTID,	wmi_evt_scan_complete},
5692be7d22fSVladimir Kondratiev 	{WMI_CONNECT_EVENTID,		wmi_evt_connect},
5702be7d22fSVladimir Kondratiev 	{WMI_DISCONNECT_EVENTID,	wmi_evt_disconnect},
5712be7d22fSVladimir Kondratiev 	{WMI_NOTIFY_REQ_DONE_EVENTID,	wmi_evt_notify},
5722be7d22fSVladimir Kondratiev 	{WMI_EAPOL_RX_EVENTID,		wmi_evt_eapol_rx},
5733442a504SVladimir Kondratiev 	{WMI_DATA_PORT_OPEN_EVENTID,	wmi_evt_linkup},
5743442a504SVladimir Kondratiev 	{WMI_WBE_LINKDOWN_EVENTID,	wmi_evt_linkdown},
575249a382bSVladimir Kondratiev 	{WMI_BA_STATUS_EVENTID,		wmi_evt_ba_status},
5762be7d22fSVladimir Kondratiev };
5772be7d22fSVladimir Kondratiev 
5782be7d22fSVladimir Kondratiev /*
5792be7d22fSVladimir Kondratiev  * Run in IRQ context
5802be7d22fSVladimir Kondratiev  * Extract WMI command from mailbox. Queue it to the @wil->pending_wmi_ev
5812be7d22fSVladimir Kondratiev  * that will be eventually handled by the @wmi_event_worker in the thread
5822be7d22fSVladimir Kondratiev  * context of thread "wil6210_wmi"
5832be7d22fSVladimir Kondratiev  */
5842be7d22fSVladimir Kondratiev void wmi_recv_cmd(struct wil6210_priv *wil)
5852be7d22fSVladimir Kondratiev {
5862be7d22fSVladimir Kondratiev 	struct wil6210_mbox_ring_desc d_tail;
5872be7d22fSVladimir Kondratiev 	struct wil6210_mbox_hdr hdr;
5882be7d22fSVladimir Kondratiev 	struct wil6210_mbox_ring *r = &wil->mbox_ctl.rx;
5892be7d22fSVladimir Kondratiev 	struct pending_wmi_event *evt;
5902be7d22fSVladimir Kondratiev 	u8 *cmd;
5912be7d22fSVladimir Kondratiev 	void __iomem *src;
5922be7d22fSVladimir Kondratiev 	ulong flags;
5932be7d22fSVladimir Kondratiev 
59455f7acddSVladimir Kondratiev 	if (!test_bit(wil_status_reset_done, &wil->status)) {
59555f7acddSVladimir Kondratiev 		wil_err(wil, "Reset not completed\n");
59655f7acddSVladimir Kondratiev 		return;
59755f7acddSVladimir Kondratiev 	}
59855f7acddSVladimir Kondratiev 
5992be7d22fSVladimir Kondratiev 	for (;;) {
6002be7d22fSVladimir Kondratiev 		u16 len;
6012be7d22fSVladimir Kondratiev 
6022be7d22fSVladimir Kondratiev 		r->head = ioread32(wil->csr + HOST_MBOX +
6032be7d22fSVladimir Kondratiev 				   offsetof(struct wil6210_mbox_ctl, rx.head));
6042be7d22fSVladimir Kondratiev 		if (r->tail == r->head)
6052be7d22fSVladimir Kondratiev 			return;
6062be7d22fSVladimir Kondratiev 
6072be7d22fSVladimir Kondratiev 		/* read cmd from tail */
6082be7d22fSVladimir Kondratiev 		wil_memcpy_fromio_32(&d_tail, wil->csr + HOSTADDR(r->tail),
6092be7d22fSVladimir Kondratiev 				     sizeof(struct wil6210_mbox_ring_desc));
6102be7d22fSVladimir Kondratiev 		if (d_tail.sync == 0) {
6112be7d22fSVladimir Kondratiev 			wil_err(wil, "Mbox evt not owned by FW?\n");
6122be7d22fSVladimir Kondratiev 			return;
6132be7d22fSVladimir Kondratiev 		}
6142be7d22fSVladimir Kondratiev 
6152be7d22fSVladimir Kondratiev 		if (0 != wmi_read_hdr(wil, d_tail.addr, &hdr)) {
6162be7d22fSVladimir Kondratiev 			wil_err(wil, "Mbox evt at 0x%08x?\n",
6172be7d22fSVladimir Kondratiev 				le32_to_cpu(d_tail.addr));
6182be7d22fSVladimir Kondratiev 			return;
6192be7d22fSVladimir Kondratiev 		}
6202be7d22fSVladimir Kondratiev 
6212be7d22fSVladimir Kondratiev 		len = le16_to_cpu(hdr.len);
6222be7d22fSVladimir Kondratiev 		src = wmi_buffer(wil, d_tail.addr) +
6232be7d22fSVladimir Kondratiev 		      sizeof(struct wil6210_mbox_hdr);
6242be7d22fSVladimir Kondratiev 		evt = kmalloc(ALIGN(offsetof(struct pending_wmi_event,
6252be7d22fSVladimir Kondratiev 					     event.wmi) + len, 4),
6262be7d22fSVladimir Kondratiev 			      GFP_KERNEL);
62714f8dc49SJoe Perches 		if (!evt)
6282be7d22fSVladimir Kondratiev 			return;
62914f8dc49SJoe Perches 
6302be7d22fSVladimir Kondratiev 		evt->event.hdr = hdr;
6312be7d22fSVladimir Kondratiev 		cmd = (void *)&evt->event.wmi;
6322be7d22fSVladimir Kondratiev 		wil_memcpy_fromio_32(cmd, src, len);
6332be7d22fSVladimir Kondratiev 		/* mark entry as empty */
6342be7d22fSVladimir Kondratiev 		iowrite32(0, wil->csr + HOSTADDR(r->tail) +
6352be7d22fSVladimir Kondratiev 			  offsetof(struct wil6210_mbox_ring_desc, sync));
6362be7d22fSVladimir Kondratiev 		/* indicate */
6377743882dSVladimir Kondratiev 		wil_dbg_wmi(wil, "Mbox evt %04x %04x %04x %02x\n",
6382be7d22fSVladimir Kondratiev 			    le16_to_cpu(hdr.seq), len, le16_to_cpu(hdr.type),
6392be7d22fSVladimir Kondratiev 			    hdr.flags);
6402be7d22fSVladimir Kondratiev 		if ((hdr.type == WIL_MBOX_HDR_TYPE_WMI) &&
6412be7d22fSVladimir Kondratiev 		    (len >= sizeof(struct wil6210_mbox_hdr_wmi))) {
64298658095SVladimir Kondratiev 			u16 id = le16_to_cpu(evt->event.wmi.id);
64398658095SVladimir Kondratiev 			wil_dbg_wmi(wil, "WMI event 0x%04x\n", id);
64498658095SVladimir Kondratiev 			trace_wil6210_wmi_event(id, &evt->event.wmi, len);
6452be7d22fSVladimir Kondratiev 		}
6467743882dSVladimir Kondratiev 		wil_hex_dump_wmi("evt ", DUMP_PREFIX_OFFSET, 16, 1,
6472be7d22fSVladimir Kondratiev 				 &evt->event.hdr, sizeof(hdr) + len, true);
6482be7d22fSVladimir Kondratiev 
6492be7d22fSVladimir Kondratiev 		/* advance tail */
6502be7d22fSVladimir Kondratiev 		r->tail = r->base + ((r->tail - r->base +
6512be7d22fSVladimir Kondratiev 			  sizeof(struct wil6210_mbox_ring_desc)) % r->size);
6522be7d22fSVladimir Kondratiev 		iowrite32(r->tail, wil->csr + HOST_MBOX +
6532be7d22fSVladimir Kondratiev 			  offsetof(struct wil6210_mbox_ctl, rx.tail));
6542be7d22fSVladimir Kondratiev 
6552be7d22fSVladimir Kondratiev 		/* add to the pending list */
6562be7d22fSVladimir Kondratiev 		spin_lock_irqsave(&wil->wmi_ev_lock, flags);
6572be7d22fSVladimir Kondratiev 		list_add_tail(&evt->list, &wil->pending_wmi_ev);
6582be7d22fSVladimir Kondratiev 		spin_unlock_irqrestore(&wil->wmi_ev_lock, flags);
6592be7d22fSVladimir Kondratiev 		{
6602be7d22fSVladimir Kondratiev 			int q =	queue_work(wil->wmi_wq,
6612be7d22fSVladimir Kondratiev 					   &wil->wmi_event_worker);
6627743882dSVladimir Kondratiev 			wil_dbg_wmi(wil, "queue_work -> %d\n", q);
6632be7d22fSVladimir Kondratiev 		}
6642be7d22fSVladimir Kondratiev 	}
6652be7d22fSVladimir Kondratiev }
6662be7d22fSVladimir Kondratiev 
6672be7d22fSVladimir Kondratiev int wmi_call(struct wil6210_priv *wil, u16 cmdid, void *buf, u16 len,
6682be7d22fSVladimir Kondratiev 	     u16 reply_id, void *reply, u8 reply_size, int to_msec)
6692be7d22fSVladimir Kondratiev {
6702be7d22fSVladimir Kondratiev 	int rc;
6712be7d22fSVladimir Kondratiev 	int remain;
6722be7d22fSVladimir Kondratiev 
6732be7d22fSVladimir Kondratiev 	mutex_lock(&wil->wmi_mutex);
6742be7d22fSVladimir Kondratiev 
6752be7d22fSVladimir Kondratiev 	rc = __wmi_send(wil, cmdid, buf, len);
6762be7d22fSVladimir Kondratiev 	if (rc)
6772be7d22fSVladimir Kondratiev 		goto out;
6782be7d22fSVladimir Kondratiev 
6792be7d22fSVladimir Kondratiev 	wil->reply_id = reply_id;
6802be7d22fSVladimir Kondratiev 	wil->reply_buf = reply;
6812be7d22fSVladimir Kondratiev 	wil->reply_size = reply_size;
6822be7d22fSVladimir Kondratiev 	remain = wait_for_completion_timeout(&wil->wmi_ready,
6832be7d22fSVladimir Kondratiev 			msecs_to_jiffies(to_msec));
6842be7d22fSVladimir Kondratiev 	if (0 == remain) {
6852be7d22fSVladimir Kondratiev 		wil_err(wil, "wmi_call(0x%04x->0x%04x) timeout %d msec\n",
6862be7d22fSVladimir Kondratiev 			cmdid, reply_id, to_msec);
6872be7d22fSVladimir Kondratiev 		rc = -ETIME;
6882be7d22fSVladimir Kondratiev 	} else {
6897743882dSVladimir Kondratiev 		wil_dbg_wmi(wil,
6902be7d22fSVladimir Kondratiev 			    "wmi_call(0x%04x->0x%04x) completed in %d msec\n",
6912be7d22fSVladimir Kondratiev 			    cmdid, reply_id,
6922be7d22fSVladimir Kondratiev 			    to_msec - jiffies_to_msecs(remain));
6932be7d22fSVladimir Kondratiev 	}
6942be7d22fSVladimir Kondratiev 	wil->reply_id = 0;
6952be7d22fSVladimir Kondratiev 	wil->reply_buf = NULL;
6962be7d22fSVladimir Kondratiev 	wil->reply_size = 0;
6972be7d22fSVladimir Kondratiev  out:
6982be7d22fSVladimir Kondratiev 	mutex_unlock(&wil->wmi_mutex);
6992be7d22fSVladimir Kondratiev 
7002be7d22fSVladimir Kondratiev 	return rc;
7012be7d22fSVladimir Kondratiev }
7022be7d22fSVladimir Kondratiev 
7032be7d22fSVladimir Kondratiev int wmi_echo(struct wil6210_priv *wil)
7042be7d22fSVladimir Kondratiev {
7052be7d22fSVladimir Kondratiev 	struct wmi_echo_cmd cmd = {
7062be7d22fSVladimir Kondratiev 		.value = cpu_to_le32(0x12345678),
7072be7d22fSVladimir Kondratiev 	};
7082be7d22fSVladimir Kondratiev 
7092be7d22fSVladimir Kondratiev 	return wmi_call(wil, WMI_ECHO_CMDID, &cmd, sizeof(cmd),
7102be7d22fSVladimir Kondratiev 			 WMI_ECHO_RSP_EVENTID, NULL, 0, 20);
7112be7d22fSVladimir Kondratiev }
7122be7d22fSVladimir Kondratiev 
7132be7d22fSVladimir Kondratiev int wmi_set_mac_address(struct wil6210_priv *wil, void *addr)
7142be7d22fSVladimir Kondratiev {
7152be7d22fSVladimir Kondratiev 	struct wmi_set_mac_address_cmd cmd;
7162be7d22fSVladimir Kondratiev 
7172be7d22fSVladimir Kondratiev 	memcpy(cmd.mac, addr, ETH_ALEN);
7182be7d22fSVladimir Kondratiev 
7197743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "Set MAC %pM\n", addr);
7202be7d22fSVladimir Kondratiev 
7212be7d22fSVladimir Kondratiev 	return wmi_send(wil, WMI_SET_MAC_ADDRESS_CMDID, &cmd, sizeof(cmd));
7222be7d22fSVladimir Kondratiev }
7232be7d22fSVladimir Kondratiev 
724b8023177SVladimir Kondratiev int wmi_pcp_start(struct wil6210_priv *wil, int bi, u8 wmi_nettype, u8 chan)
7252be7d22fSVladimir Kondratiev {
726b8023177SVladimir Kondratiev 	int rc;
727b8023177SVladimir Kondratiev 
728b8023177SVladimir Kondratiev 	struct wmi_pcp_start_cmd cmd = {
7292be7d22fSVladimir Kondratiev 		.bcon_interval = cpu_to_le16(bi),
7302be7d22fSVladimir Kondratiev 		.network_type = wmi_nettype,
7312be7d22fSVladimir Kondratiev 		.disable_sec_offload = 1,
732adc2d122SVladimir Kondratiev 		.channel = chan - 1,
7332be7d22fSVladimir Kondratiev 	};
734b8023177SVladimir Kondratiev 	struct {
735b8023177SVladimir Kondratiev 		struct wil6210_mbox_hdr_wmi wmi;
736b8023177SVladimir Kondratiev 		struct wmi_pcp_started_event evt;
737b8023177SVladimir Kondratiev 	} __packed reply;
7382be7d22fSVladimir Kondratiev 
7392be7d22fSVladimir Kondratiev 	if (!wil->secure_pcp)
7402be7d22fSVladimir Kondratiev 		cmd.disable_sec = 1;
7412be7d22fSVladimir Kondratiev 
742b8023177SVladimir Kondratiev 	rc = wmi_call(wil, WMI_PCP_START_CMDID, &cmd, sizeof(cmd),
743b8023177SVladimir Kondratiev 		      WMI_PCP_STARTED_EVENTID, &reply, sizeof(reply), 100);
744b8023177SVladimir Kondratiev 	if (rc)
745b8023177SVladimir Kondratiev 		return rc;
746b8023177SVladimir Kondratiev 
747b8023177SVladimir Kondratiev 	if (reply.evt.status != WMI_FW_STATUS_SUCCESS)
748b8023177SVladimir Kondratiev 		rc = -EINVAL;
749b8023177SVladimir Kondratiev 
750b8023177SVladimir Kondratiev 	return rc;
751b8023177SVladimir Kondratiev }
752b8023177SVladimir Kondratiev 
753b8023177SVladimir Kondratiev int wmi_pcp_stop(struct wil6210_priv *wil)
754b8023177SVladimir Kondratiev {
755b8023177SVladimir Kondratiev 	return wmi_call(wil, WMI_PCP_STOP_CMDID, NULL, 0,
756b8023177SVladimir Kondratiev 			WMI_PCP_STOPPED_EVENTID, NULL, 0, 20);
7572be7d22fSVladimir Kondratiev }
7582be7d22fSVladimir Kondratiev 
7592be7d22fSVladimir Kondratiev int wmi_set_ssid(struct wil6210_priv *wil, u8 ssid_len, const void *ssid)
7602be7d22fSVladimir Kondratiev {
7612be7d22fSVladimir Kondratiev 	struct wmi_set_ssid_cmd cmd = {
7622be7d22fSVladimir Kondratiev 		.ssid_len = cpu_to_le32(ssid_len),
7632be7d22fSVladimir Kondratiev 	};
7642be7d22fSVladimir Kondratiev 
7652be7d22fSVladimir Kondratiev 	if (ssid_len > sizeof(cmd.ssid))
7662be7d22fSVladimir Kondratiev 		return -EINVAL;
7672be7d22fSVladimir Kondratiev 
7682be7d22fSVladimir Kondratiev 	memcpy(cmd.ssid, ssid, ssid_len);
7692be7d22fSVladimir Kondratiev 
7702be7d22fSVladimir Kondratiev 	return wmi_send(wil, WMI_SET_SSID_CMDID, &cmd, sizeof(cmd));
7712be7d22fSVladimir Kondratiev }
7722be7d22fSVladimir Kondratiev 
7732be7d22fSVladimir Kondratiev int wmi_get_ssid(struct wil6210_priv *wil, u8 *ssid_len, void *ssid)
7742be7d22fSVladimir Kondratiev {
7752be7d22fSVladimir Kondratiev 	int rc;
7762be7d22fSVladimir Kondratiev 	struct {
7772be7d22fSVladimir Kondratiev 		struct wil6210_mbox_hdr_wmi wmi;
7782be7d22fSVladimir Kondratiev 		struct wmi_set_ssid_cmd cmd;
7792be7d22fSVladimir Kondratiev 	} __packed reply;
7802be7d22fSVladimir Kondratiev 	int len; /* reply.cmd.ssid_len in CPU order */
7812be7d22fSVladimir Kondratiev 
7822be7d22fSVladimir Kondratiev 	rc = wmi_call(wil, WMI_GET_SSID_CMDID, NULL, 0, WMI_GET_SSID_EVENTID,
7832be7d22fSVladimir Kondratiev 		      &reply, sizeof(reply), 20);
7842be7d22fSVladimir Kondratiev 	if (rc)
7852be7d22fSVladimir Kondratiev 		return rc;
7862be7d22fSVladimir Kondratiev 
7872be7d22fSVladimir Kondratiev 	len = le32_to_cpu(reply.cmd.ssid_len);
7882be7d22fSVladimir Kondratiev 	if (len > sizeof(reply.cmd.ssid))
7892be7d22fSVladimir Kondratiev 		return -EINVAL;
7902be7d22fSVladimir Kondratiev 
7912be7d22fSVladimir Kondratiev 	*ssid_len = len;
7922be7d22fSVladimir Kondratiev 	memcpy(ssid, reply.cmd.ssid, len);
7932be7d22fSVladimir Kondratiev 
7942be7d22fSVladimir Kondratiev 	return 0;
7952be7d22fSVladimir Kondratiev }
7962be7d22fSVladimir Kondratiev 
7972be7d22fSVladimir Kondratiev int wmi_set_channel(struct wil6210_priv *wil, int channel)
7982be7d22fSVladimir Kondratiev {
7992be7d22fSVladimir Kondratiev 	struct wmi_set_pcp_channel_cmd cmd = {
8002be7d22fSVladimir Kondratiev 		.channel = channel - 1,
8012be7d22fSVladimir Kondratiev 	};
8022be7d22fSVladimir Kondratiev 
8032be7d22fSVladimir Kondratiev 	return wmi_send(wil, WMI_SET_PCP_CHANNEL_CMDID, &cmd, sizeof(cmd));
8042be7d22fSVladimir Kondratiev }
8052be7d22fSVladimir Kondratiev 
8062be7d22fSVladimir Kondratiev int wmi_get_channel(struct wil6210_priv *wil, int *channel)
8072be7d22fSVladimir Kondratiev {
8082be7d22fSVladimir Kondratiev 	int rc;
8092be7d22fSVladimir Kondratiev 	struct {
8102be7d22fSVladimir Kondratiev 		struct wil6210_mbox_hdr_wmi wmi;
8112be7d22fSVladimir Kondratiev 		struct wmi_set_pcp_channel_cmd cmd;
8122be7d22fSVladimir Kondratiev 	} __packed reply;
8132be7d22fSVladimir Kondratiev 
8142be7d22fSVladimir Kondratiev 	rc = wmi_call(wil, WMI_GET_PCP_CHANNEL_CMDID, NULL, 0,
8152be7d22fSVladimir Kondratiev 		      WMI_GET_PCP_CHANNEL_EVENTID, &reply, sizeof(reply), 20);
8162be7d22fSVladimir Kondratiev 	if (rc)
8172be7d22fSVladimir Kondratiev 		return rc;
8182be7d22fSVladimir Kondratiev 
8192be7d22fSVladimir Kondratiev 	if (reply.cmd.channel > 3)
8202be7d22fSVladimir Kondratiev 		return -EINVAL;
8212be7d22fSVladimir Kondratiev 
8222be7d22fSVladimir Kondratiev 	*channel = reply.cmd.channel + 1;
8232be7d22fSVladimir Kondratiev 
8242be7d22fSVladimir Kondratiev 	return 0;
8252be7d22fSVladimir Kondratiev }
8262be7d22fSVladimir Kondratiev 
827b8023177SVladimir Kondratiev int wmi_p2p_cfg(struct wil6210_priv *wil, int channel)
828b8023177SVladimir Kondratiev {
829b8023177SVladimir Kondratiev 	struct wmi_p2p_cfg_cmd cmd = {
830b8023177SVladimir Kondratiev 		.discovery_mode = WMI_DISCOVERY_MODE_NON_OFFLOAD,
831b8023177SVladimir Kondratiev 		.channel = channel - 1,
832b8023177SVladimir Kondratiev 	};
833b8023177SVladimir Kondratiev 
834b8023177SVladimir Kondratiev 	return wmi_send(wil, WMI_P2P_CFG_CMDID, &cmd, sizeof(cmd));
835b8023177SVladimir Kondratiev }
836b8023177SVladimir Kondratiev 
8372be7d22fSVladimir Kondratiev int wmi_tx_eapol(struct wil6210_priv *wil, struct sk_buff *skb)
8382be7d22fSVladimir Kondratiev {
8392be7d22fSVladimir Kondratiev 	struct wmi_eapol_tx_cmd *cmd;
8402be7d22fSVladimir Kondratiev 	struct ethhdr *eth;
8412be7d22fSVladimir Kondratiev 	u16 eapol_len = skb->len - ETH_HLEN;
8422be7d22fSVladimir Kondratiev 	void *eapol = skb->data + ETH_HLEN;
8432be7d22fSVladimir Kondratiev 	uint i;
8442be7d22fSVladimir Kondratiev 	int rc;
8452be7d22fSVladimir Kondratiev 
8462be7d22fSVladimir Kondratiev 	skb_set_mac_header(skb, 0);
8472be7d22fSVladimir Kondratiev 	eth = eth_hdr(skb);
8487743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "EAPOL %d bytes to %pM\n", eapol_len, eth->h_dest);
8492be7d22fSVladimir Kondratiev 	for (i = 0; i < ARRAY_SIZE(wil->vring_tx); i++) {
8502be7d22fSVladimir Kondratiev 		if (memcmp(wil->dst_addr[i], eth->h_dest, ETH_ALEN) == 0)
8512be7d22fSVladimir Kondratiev 			goto found_dest;
8522be7d22fSVladimir Kondratiev 	}
8532be7d22fSVladimir Kondratiev 
8542be7d22fSVladimir Kondratiev 	return -EINVAL;
8552be7d22fSVladimir Kondratiev 
8562be7d22fSVladimir Kondratiev  found_dest:
8572be7d22fSVladimir Kondratiev 	/* find out eapol data & len */
8582be7d22fSVladimir Kondratiev 	cmd = kzalloc(sizeof(*cmd) + eapol_len, GFP_KERNEL);
8592be7d22fSVladimir Kondratiev 	if (!cmd)
8602be7d22fSVladimir Kondratiev 		return -EINVAL;
8612be7d22fSVladimir Kondratiev 
8622be7d22fSVladimir Kondratiev 	memcpy(cmd->dst_mac, eth->h_dest, ETH_ALEN);
8632be7d22fSVladimir Kondratiev 	cmd->eapol_len = cpu_to_le16(eapol_len);
8642be7d22fSVladimir Kondratiev 	memcpy(cmd->eapol, eapol, eapol_len);
8652be7d22fSVladimir Kondratiev 	rc = wmi_send(wil, WMI_EAPOL_TX_CMDID, cmd, sizeof(*cmd) + eapol_len);
8662be7d22fSVladimir Kondratiev 	kfree(cmd);
8672be7d22fSVladimir Kondratiev 
8682be7d22fSVladimir Kondratiev 	return rc;
8692be7d22fSVladimir Kondratiev }
8702be7d22fSVladimir Kondratiev 
8712be7d22fSVladimir Kondratiev int wmi_del_cipher_key(struct wil6210_priv *wil, u8 key_index,
8722be7d22fSVladimir Kondratiev 		       const void *mac_addr)
8732be7d22fSVladimir Kondratiev {
8742be7d22fSVladimir Kondratiev 	struct wmi_delete_cipher_key_cmd cmd = {
8752be7d22fSVladimir Kondratiev 		.key_index = key_index,
8762be7d22fSVladimir Kondratiev 	};
8772be7d22fSVladimir Kondratiev 
8782be7d22fSVladimir Kondratiev 	if (mac_addr)
8792be7d22fSVladimir Kondratiev 		memcpy(cmd.mac, mac_addr, WMI_MAC_LEN);
8802be7d22fSVladimir Kondratiev 
8812be7d22fSVladimir Kondratiev 	return wmi_send(wil, WMI_DELETE_CIPHER_KEY_CMDID, &cmd, sizeof(cmd));
8822be7d22fSVladimir Kondratiev }
8832be7d22fSVladimir Kondratiev 
8842be7d22fSVladimir Kondratiev int wmi_add_cipher_key(struct wil6210_priv *wil, u8 key_index,
8852be7d22fSVladimir Kondratiev 		       const void *mac_addr, int key_len, const void *key)
8862be7d22fSVladimir Kondratiev {
8872be7d22fSVladimir Kondratiev 	struct wmi_add_cipher_key_cmd cmd = {
8882be7d22fSVladimir Kondratiev 		.key_index = key_index,
8892be7d22fSVladimir Kondratiev 		.key_usage = WMI_KEY_USE_PAIRWISE,
8902be7d22fSVladimir Kondratiev 		.key_len = key_len,
8912be7d22fSVladimir Kondratiev 	};
8922be7d22fSVladimir Kondratiev 
8932be7d22fSVladimir Kondratiev 	if (!key || (key_len > sizeof(cmd.key)))
8942be7d22fSVladimir Kondratiev 		return -EINVAL;
8952be7d22fSVladimir Kondratiev 
8962be7d22fSVladimir Kondratiev 	memcpy(cmd.key, key, key_len);
8972be7d22fSVladimir Kondratiev 	if (mac_addr)
8982be7d22fSVladimir Kondratiev 		memcpy(cmd.mac, mac_addr, WMI_MAC_LEN);
8992be7d22fSVladimir Kondratiev 
9002be7d22fSVladimir Kondratiev 	return wmi_send(wil, WMI_ADD_CIPHER_KEY_CMDID, &cmd, sizeof(cmd));
9012be7d22fSVladimir Kondratiev }
9022be7d22fSVladimir Kondratiev 
9032be7d22fSVladimir Kondratiev int wmi_set_ie(struct wil6210_priv *wil, u8 type, u16 ie_len, const void *ie)
9042be7d22fSVladimir Kondratiev {
9052be7d22fSVladimir Kondratiev 	int rc;
9062be7d22fSVladimir Kondratiev 	u16 len = sizeof(struct wmi_set_appie_cmd) + ie_len;
9072be7d22fSVladimir Kondratiev 	struct wmi_set_appie_cmd *cmd = kzalloc(len, GFP_KERNEL);
90814f8dc49SJoe Perches 	if (!cmd)
9092be7d22fSVladimir Kondratiev 		return -ENOMEM;
9102be7d22fSVladimir Kondratiev 
9112be7d22fSVladimir Kondratiev 	cmd->mgmt_frm_type = type;
9122be7d22fSVladimir Kondratiev 	/* BUG: FW API define ieLen as u8. Will fix FW */
9132be7d22fSVladimir Kondratiev 	cmd->ie_len = cpu_to_le16(ie_len);
9142be7d22fSVladimir Kondratiev 	memcpy(cmd->ie_info, ie, ie_len);
91503866e7dSVladimir Kondratiev 	rc = wmi_send(wil, WMI_SET_APPIE_CMDID, cmd, len);
9162be7d22fSVladimir Kondratiev 	kfree(cmd);
9172be7d22fSVladimir Kondratiev 
9182be7d22fSVladimir Kondratiev 	return rc;
9192be7d22fSVladimir Kondratiev }
9202be7d22fSVladimir Kondratiev 
92147e19af9SVladimir Kondratiev int wmi_rx_chain_add(struct wil6210_priv *wil, struct vring *vring)
92247e19af9SVladimir Kondratiev {
92347e19af9SVladimir Kondratiev 	struct wireless_dev *wdev = wil->wdev;
92447e19af9SVladimir Kondratiev 	struct net_device *ndev = wil_to_ndev(wil);
92547e19af9SVladimir Kondratiev 	struct wmi_cfg_rx_chain_cmd cmd = {
92647e19af9SVladimir Kondratiev 		.action = WMI_RX_CHAIN_ADD,
92747e19af9SVladimir Kondratiev 		.rx_sw_ring = {
92847e19af9SVladimir Kondratiev 			.max_mpdu_size = cpu_to_le16(RX_BUF_LEN),
92947e19af9SVladimir Kondratiev 			.ring_mem_base = cpu_to_le64(vring->pa),
93047e19af9SVladimir Kondratiev 			.ring_size = cpu_to_le16(vring->size),
93147e19af9SVladimir Kondratiev 		},
93247e19af9SVladimir Kondratiev 		.mid = 0, /* TODO - what is it? */
93347e19af9SVladimir Kondratiev 		.decap_trans_type = WMI_DECAP_TYPE_802_3,
93447e19af9SVladimir Kondratiev 	};
93547e19af9SVladimir Kondratiev 	struct {
93647e19af9SVladimir Kondratiev 		struct wil6210_mbox_hdr_wmi wmi;
93747e19af9SVladimir Kondratiev 		struct wmi_cfg_rx_chain_done_event evt;
93847e19af9SVladimir Kondratiev 	} __packed evt;
93947e19af9SVladimir Kondratiev 	int rc;
94047e19af9SVladimir Kondratiev 
94147e19af9SVladimir Kondratiev 	if (wdev->iftype == NL80211_IFTYPE_MONITOR) {
94247e19af9SVladimir Kondratiev 		struct ieee80211_channel *ch = wdev->preset_chandef.chan;
94347e19af9SVladimir Kondratiev 
94447e19af9SVladimir Kondratiev 		cmd.sniffer_cfg.mode = cpu_to_le32(WMI_SNIFFER_ON);
94547e19af9SVladimir Kondratiev 		if (ch)
94647e19af9SVladimir Kondratiev 			cmd.sniffer_cfg.channel = ch->hw_value - 1;
94747e19af9SVladimir Kondratiev 		cmd.sniffer_cfg.phy_info_mode =
94847e19af9SVladimir Kondratiev 			cpu_to_le32(ndev->type == ARPHRD_IEEE80211_RADIOTAP);
94947e19af9SVladimir Kondratiev 		cmd.sniffer_cfg.phy_support =
95047e19af9SVladimir Kondratiev 			cpu_to_le32((wil->monitor_flags & MONITOR_FLAG_CONTROL)
95147e19af9SVladimir Kondratiev 				    ? WMI_SNIFFER_CP : WMI_SNIFFER_DP);
95247e19af9SVladimir Kondratiev 	}
95347e19af9SVladimir Kondratiev 	/* typical time for secure PCP is 840ms */
95447e19af9SVladimir Kondratiev 	rc = wmi_call(wil, WMI_CFG_RX_CHAIN_CMDID, &cmd, sizeof(cmd),
95547e19af9SVladimir Kondratiev 		      WMI_CFG_RX_CHAIN_DONE_EVENTID, &evt, sizeof(evt), 2000);
95647e19af9SVladimir Kondratiev 	if (rc)
95747e19af9SVladimir Kondratiev 		return rc;
95847e19af9SVladimir Kondratiev 
95947e19af9SVladimir Kondratiev 	vring->hwtail = le32_to_cpu(evt.evt.rx_ring_tail_ptr);
96047e19af9SVladimir Kondratiev 
9617743882dSVladimir Kondratiev 	wil_dbg_misc(wil, "Rx init: status %d tail 0x%08x\n",
96247e19af9SVladimir Kondratiev 		     le32_to_cpu(evt.evt.status), vring->hwtail);
96347e19af9SVladimir Kondratiev 
96447e19af9SVladimir Kondratiev 	if (le32_to_cpu(evt.evt.status) != WMI_CFG_RX_CHAIN_SUCCESS)
96547e19af9SVladimir Kondratiev 		rc = -EINVAL;
96647e19af9SVladimir Kondratiev 
96747e19af9SVladimir Kondratiev 	return rc;
96847e19af9SVladimir Kondratiev }
96947e19af9SVladimir Kondratiev 
9701a2780e0SVladimir Kondratiev int wmi_get_temperature(struct wil6210_priv *wil, u32 *t_m, u32 *t_r)
9711a2780e0SVladimir Kondratiev {
9721a2780e0SVladimir Kondratiev 	int rc;
9731a2780e0SVladimir Kondratiev 	struct wmi_temp_sense_cmd cmd = {
9741a2780e0SVladimir Kondratiev 		.measure_marlon_m_en = cpu_to_le32(!!t_m),
9751a2780e0SVladimir Kondratiev 		.measure_marlon_r_en = cpu_to_le32(!!t_r),
9761a2780e0SVladimir Kondratiev 	};
9771a2780e0SVladimir Kondratiev 	struct {
9781a2780e0SVladimir Kondratiev 		struct wil6210_mbox_hdr_wmi wmi;
9791a2780e0SVladimir Kondratiev 		struct wmi_temp_sense_done_event evt;
9801a2780e0SVladimir Kondratiev 	} __packed reply;
9811a2780e0SVladimir Kondratiev 
9821a2780e0SVladimir Kondratiev 	rc = wmi_call(wil, WMI_TEMP_SENSE_CMDID, &cmd, sizeof(cmd),
9831a2780e0SVladimir Kondratiev 		      WMI_TEMP_SENSE_DONE_EVENTID, &reply, sizeof(reply), 100);
9841a2780e0SVladimir Kondratiev 	if (rc)
9851a2780e0SVladimir Kondratiev 		return rc;
9861a2780e0SVladimir Kondratiev 
9871a2780e0SVladimir Kondratiev 	if (t_m)
9881a2780e0SVladimir Kondratiev 		*t_m = le32_to_cpu(reply.evt.marlon_m_t1000);
9891a2780e0SVladimir Kondratiev 	if (t_r)
9901a2780e0SVladimir Kondratiev 		*t_r = le32_to_cpu(reply.evt.marlon_r_t1000);
9911a2780e0SVladimir Kondratiev 
9921a2780e0SVladimir Kondratiev 	return 0;
9931a2780e0SVladimir Kondratiev }
9941a2780e0SVladimir Kondratiev 
9952be7d22fSVladimir Kondratiev void wmi_event_flush(struct wil6210_priv *wil)
9962be7d22fSVladimir Kondratiev {
9972be7d22fSVladimir Kondratiev 	struct pending_wmi_event *evt, *t;
9982be7d22fSVladimir Kondratiev 
9997743882dSVladimir Kondratiev 	wil_dbg_wmi(wil, "%s()\n", __func__);
10002be7d22fSVladimir Kondratiev 
10012be7d22fSVladimir Kondratiev 	list_for_each_entry_safe(evt, t, &wil->pending_wmi_ev, list) {
10022be7d22fSVladimir Kondratiev 		list_del(&evt->list);
10032be7d22fSVladimir Kondratiev 		kfree(evt);
10042be7d22fSVladimir Kondratiev 	}
10052be7d22fSVladimir Kondratiev }
10062be7d22fSVladimir Kondratiev 
10072be7d22fSVladimir Kondratiev static bool wmi_evt_call_handler(struct wil6210_priv *wil, int id,
10082be7d22fSVladimir Kondratiev 				 void *d, int len)
10092be7d22fSVladimir Kondratiev {
10102be7d22fSVladimir Kondratiev 	uint i;
10112be7d22fSVladimir Kondratiev 
10122be7d22fSVladimir Kondratiev 	for (i = 0; i < ARRAY_SIZE(wmi_evt_handlers); i++) {
10132be7d22fSVladimir Kondratiev 		if (wmi_evt_handlers[i].eventid == id) {
10142be7d22fSVladimir Kondratiev 			wmi_evt_handlers[i].handler(wil, id, d, len);
10152be7d22fSVladimir Kondratiev 			return true;
10162be7d22fSVladimir Kondratiev 		}
10172be7d22fSVladimir Kondratiev 	}
10182be7d22fSVladimir Kondratiev 
10192be7d22fSVladimir Kondratiev 	return false;
10202be7d22fSVladimir Kondratiev }
10212be7d22fSVladimir Kondratiev 
10222be7d22fSVladimir Kondratiev static void wmi_event_handle(struct wil6210_priv *wil,
10232be7d22fSVladimir Kondratiev 			     struct wil6210_mbox_hdr *hdr)
10242be7d22fSVladimir Kondratiev {
10252be7d22fSVladimir Kondratiev 	u16 len = le16_to_cpu(hdr->len);
10262be7d22fSVladimir Kondratiev 
10272be7d22fSVladimir Kondratiev 	if ((hdr->type == WIL_MBOX_HDR_TYPE_WMI) &&
10282be7d22fSVladimir Kondratiev 	    (len >= sizeof(struct wil6210_mbox_hdr_wmi))) {
10292be7d22fSVladimir Kondratiev 		struct wil6210_mbox_hdr_wmi *wmi = (void *)(&hdr[1]);
10302be7d22fSVladimir Kondratiev 		void *evt_data = (void *)(&wmi[1]);
10312be7d22fSVladimir Kondratiev 		u16 id = le16_to_cpu(wmi->id);
10322be7d22fSVladimir Kondratiev 		/* check if someone waits for this event */
10332be7d22fSVladimir Kondratiev 		if (wil->reply_id && wil->reply_id == id) {
10342be7d22fSVladimir Kondratiev 			if (wil->reply_buf) {
10352be7d22fSVladimir Kondratiev 				memcpy(wil->reply_buf, wmi,
10362be7d22fSVladimir Kondratiev 				       min(len, wil->reply_size));
10372be7d22fSVladimir Kondratiev 			} else {
10382be7d22fSVladimir Kondratiev 				wmi_evt_call_handler(wil, id, evt_data,
10392be7d22fSVladimir Kondratiev 						     len - sizeof(*wmi));
10402be7d22fSVladimir Kondratiev 			}
10417743882dSVladimir Kondratiev 			wil_dbg_wmi(wil, "Complete WMI 0x%04x\n", id);
10422be7d22fSVladimir Kondratiev 			complete(&wil->wmi_ready);
10432be7d22fSVladimir Kondratiev 			return;
10442be7d22fSVladimir Kondratiev 		}
10452be7d22fSVladimir Kondratiev 		/* unsolicited event */
10462be7d22fSVladimir Kondratiev 		/* search for handler */
10472be7d22fSVladimir Kondratiev 		if (!wmi_evt_call_handler(wil, id, evt_data,
10482be7d22fSVladimir Kondratiev 					  len - sizeof(*wmi))) {
10492be7d22fSVladimir Kondratiev 			wil_err(wil, "Unhandled event 0x%04x\n", id);
10502be7d22fSVladimir Kondratiev 		}
10512be7d22fSVladimir Kondratiev 	} else {
10522be7d22fSVladimir Kondratiev 		wil_err(wil, "Unknown event type\n");
10532be7d22fSVladimir Kondratiev 		print_hex_dump(KERN_ERR, "evt?? ", DUMP_PREFIX_OFFSET, 16, 1,
10542be7d22fSVladimir Kondratiev 			       hdr, sizeof(*hdr) + len, true);
10552be7d22fSVladimir Kondratiev 	}
10562be7d22fSVladimir Kondratiev }
10572be7d22fSVladimir Kondratiev 
10582be7d22fSVladimir Kondratiev /*
10592be7d22fSVladimir Kondratiev  * Retrieve next WMI event from the pending list
10602be7d22fSVladimir Kondratiev  */
10612be7d22fSVladimir Kondratiev static struct list_head *next_wmi_ev(struct wil6210_priv *wil)
10622be7d22fSVladimir Kondratiev {
10632be7d22fSVladimir Kondratiev 	ulong flags;
10642be7d22fSVladimir Kondratiev 	struct list_head *ret = NULL;
10652be7d22fSVladimir Kondratiev 
10662be7d22fSVladimir Kondratiev 	spin_lock_irqsave(&wil->wmi_ev_lock, flags);
10672be7d22fSVladimir Kondratiev 
10682be7d22fSVladimir Kondratiev 	if (!list_empty(&wil->pending_wmi_ev)) {
10692be7d22fSVladimir Kondratiev 		ret = wil->pending_wmi_ev.next;
10702be7d22fSVladimir Kondratiev 		list_del(ret);
10712be7d22fSVladimir Kondratiev 	}
10722be7d22fSVladimir Kondratiev 
10732be7d22fSVladimir Kondratiev 	spin_unlock_irqrestore(&wil->wmi_ev_lock, flags);
10742be7d22fSVladimir Kondratiev 
10752be7d22fSVladimir Kondratiev 	return ret;
10762be7d22fSVladimir Kondratiev }
10772be7d22fSVladimir Kondratiev 
10782be7d22fSVladimir Kondratiev /*
10792be7d22fSVladimir Kondratiev  * Handler for the WMI events
10802be7d22fSVladimir Kondratiev  */
10812be7d22fSVladimir Kondratiev void wmi_event_worker(struct work_struct *work)
10822be7d22fSVladimir Kondratiev {
10832be7d22fSVladimir Kondratiev 	struct wil6210_priv *wil = container_of(work, struct wil6210_priv,
10842be7d22fSVladimir Kondratiev 						 wmi_event_worker);
10852be7d22fSVladimir Kondratiev 	struct pending_wmi_event *evt;
10862be7d22fSVladimir Kondratiev 	struct list_head *lh;
10872be7d22fSVladimir Kondratiev 
10882be7d22fSVladimir Kondratiev 	while ((lh = next_wmi_ev(wil)) != NULL) {
10892be7d22fSVladimir Kondratiev 		evt = list_entry(lh, struct pending_wmi_event, list);
10902be7d22fSVladimir Kondratiev 		wmi_event_handle(wil, &evt->event.hdr);
10912be7d22fSVladimir Kondratiev 		kfree(evt);
10922be7d22fSVladimir Kondratiev 	}
10932be7d22fSVladimir Kondratiev }
1094