wmi.c 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216
  1. /*
  2. * Copyright (c) 2012-2014 Qualcomm Atheros, Inc.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #include <linux/moduleparam.h>
  17. #include <linux/etherdevice.h>
  18. #include <linux/if_arp.h>
  19. #include "wil6210.h"
  20. #include "txrx.h"
  21. #include "wmi.h"
  22. #include "trace.h"
  23. static uint max_assoc_sta = 1;
  24. module_param(max_assoc_sta, uint, S_IRUGO | S_IWUSR);
  25. MODULE_PARM_DESC(max_assoc_sta, " Max number of stations associated to the AP");
  26. /**
  27. * WMI event receiving - theory of operations
  28. *
  29. * When firmware about to report WMI event, it fills memory area
  30. * in the mailbox and raises misc. IRQ. Thread interrupt handler invoked for
  31. * the misc IRQ, function @wmi_recv_cmd called by thread IRQ handler.
  32. *
  33. * @wmi_recv_cmd reads event, allocates memory chunk and attaches it to the
  34. * event list @wil->pending_wmi_ev. Then, work queue @wil->wmi_wq wakes up
  35. * and handles events within the @wmi_event_worker. Every event get detached
  36. * from list, processed and deleted.
  37. *
  38. * Purpose for this mechanism is to release IRQ thread; otherwise,
  39. * if WMI event handling involves another WMI command flow, this 2-nd flow
  40. * won't be completed because of blocked IRQ thread.
  41. */
  42. /**
  43. * Addressing - theory of operations
  44. *
  45. * There are several buses present on the WIL6210 card.
  46. * Same memory areas are visible at different address on
  47. * the different busses. There are 3 main bus masters:
  48. * - MAC CPU (ucode)
  49. * - User CPU (firmware)
  50. * - AHB (host)
  51. *
  52. * On the PCI bus, there is one BAR (BAR0) of 2Mb size, exposing
  53. * AHB addresses starting from 0x880000
  54. *
  55. * Internally, firmware uses addresses that allows faster access but
  56. * are invisible from the host. To read from these addresses, alternative
  57. * AHB address must be used.
  58. *
  59. * Memory mapping
  60. * Linker address PCI/Host address
  61. * 0x880000 .. 0xa80000 2Mb BAR0
  62. * 0x800000 .. 0x807000 0x900000 .. 0x907000 28k DCCM
  63. * 0x840000 .. 0x857000 0x908000 .. 0x91f000 92k PERIPH
  64. */
  65. /**
  66. * @fw_mapping provides memory remapping table
  67. *
  68. * array size should be in sync with the declaration in the wil6210.h
  69. */
  70. const struct fw_map fw_mapping[] = {
  71. {0x000000, 0x040000, 0x8c0000, "fw_code"}, /* FW code RAM 256k */
  72. {0x800000, 0x808000, 0x900000, "fw_data"}, /* FW data RAM 32k */
  73. {0x840000, 0x860000, 0x908000, "fw_peri"}, /* periph. data RAM 128k */
  74. {0x880000, 0x88a000, 0x880000, "rgf"}, /* various RGF 40k */
  75. {0x88a000, 0x88b000, 0x88a000, "AGC_tbl"}, /* AGC table 4k */
  76. {0x88b000, 0x88c000, 0x88b000, "rgf_ext"}, /* Pcie_ext_rgf 4k */
  77. {0x8c0000, 0x949000, 0x8c0000, "upper"}, /* upper area 548k */
  78. /*
  79. * 920000..930000 ucode code RAM
  80. * 930000..932000 ucode data RAM
  81. * 932000..949000 back-door debug data
  82. */
  83. };
  84. /**
  85. * return AHB address for given firmware/ucode internal (linker) address
  86. * @x - internal address
  87. * If address have no valid AHB mapping, return 0
  88. */
  89. static u32 wmi_addr_remap(u32 x)
  90. {
  91. uint i;
  92. for (i = 0; i < ARRAY_SIZE(fw_mapping); i++) {
  93. if ((x >= fw_mapping[i].from) && (x < fw_mapping[i].to))
  94. return x + fw_mapping[i].host - fw_mapping[i].from;
  95. }
  96. return 0;
  97. }
  98. /**
  99. * Check address validity for WMI buffer; remap if needed
  100. * @ptr - internal (linker) fw/ucode address
  101. *
  102. * Valid buffer should be DWORD aligned
  103. *
  104. * return address for accessing buffer from the host;
  105. * if buffer is not valid, return NULL.
  106. */
  107. void __iomem *wmi_buffer(struct wil6210_priv *wil, __le32 ptr_)
  108. {
  109. u32 off;
  110. u32 ptr = le32_to_cpu(ptr_);
  111. if (ptr % 4)
  112. return NULL;
  113. ptr = wmi_addr_remap(ptr);
  114. if (ptr < WIL6210_FW_HOST_OFF)
  115. return NULL;
  116. off = HOSTADDR(ptr);
  117. if (off > WIL6210_MEM_SIZE - 4)
  118. return NULL;
  119. return wil->csr + off;
  120. }
  121. /**
  122. * Check address validity
  123. */
  124. void __iomem *wmi_addr(struct wil6210_priv *wil, u32 ptr)
  125. {
  126. u32 off;
  127. if (ptr % 4)
  128. return NULL;
  129. if (ptr < WIL6210_FW_HOST_OFF)
  130. return NULL;
  131. off = HOSTADDR(ptr);
  132. if (off > WIL6210_MEM_SIZE - 4)
  133. return NULL;
  134. return wil->csr + off;
  135. }
  136. int wmi_read_hdr(struct wil6210_priv *wil, __le32 ptr,
  137. struct wil6210_mbox_hdr *hdr)
  138. {
  139. void __iomem *src = wmi_buffer(wil, ptr);
  140. if (!src)
  141. return -EINVAL;
  142. wil_memcpy_fromio_32(hdr, src, sizeof(*hdr));
  143. return 0;
  144. }
  145. static int __wmi_send(struct wil6210_priv *wil, u16 cmdid, void *buf, u16 len)
  146. {
  147. struct {
  148. struct wil6210_mbox_hdr hdr;
  149. struct wil6210_mbox_hdr_wmi wmi;
  150. } __packed cmd = {
  151. .hdr = {
  152. .type = WIL_MBOX_HDR_TYPE_WMI,
  153. .flags = 0,
  154. .len = cpu_to_le16(sizeof(cmd.wmi) + len),
  155. },
  156. .wmi = {
  157. .mid = 0,
  158. .id = cpu_to_le16(cmdid),
  159. },
  160. };
  161. struct wil6210_mbox_ring *r = &wil->mbox_ctl.tx;
  162. struct wil6210_mbox_ring_desc d_head;
  163. u32 next_head;
  164. void __iomem *dst;
  165. void __iomem *head = wmi_addr(wil, r->head);
  166. uint retry;
  167. if (sizeof(cmd) + len > r->entry_size) {
  168. wil_err(wil, "WMI size too large: %d bytes, max is %d\n",
  169. (int)(sizeof(cmd) + len), r->entry_size);
  170. return -ERANGE;
  171. }
  172. might_sleep();
  173. if (!test_bit(wil_status_fwready, &wil->status)) {
  174. wil_err(wil, "WMI: cannot send command while FW not ready\n");
  175. return -EAGAIN;
  176. }
  177. if (!head) {
  178. wil_err(wil, "WMI head is garbage: 0x%08x\n", r->head);
  179. return -EINVAL;
  180. }
  181. /* read Tx head till it is not busy */
  182. for (retry = 5; retry > 0; retry--) {
  183. wil_memcpy_fromio_32(&d_head, head, sizeof(d_head));
  184. if (d_head.sync == 0)
  185. break;
  186. msleep(20);
  187. }
  188. if (d_head.sync != 0) {
  189. wil_err(wil, "WMI head busy\n");
  190. return -EBUSY;
  191. }
  192. /* next head */
  193. next_head = r->base + ((r->head - r->base + sizeof(d_head)) % r->size);
  194. wil_dbg_wmi(wil, "Head 0x%08x -> 0x%08x\n", r->head, next_head);
  195. /* wait till FW finish with previous command */
  196. for (retry = 5; retry > 0; retry--) {
  197. r->tail = ioread32(wil->csr + HOST_MBOX +
  198. offsetof(struct wil6210_mbox_ctl, tx.tail));
  199. if (next_head != r->tail)
  200. break;
  201. msleep(20);
  202. }
  203. if (next_head == r->tail) {
  204. wil_err(wil, "WMI ring full\n");
  205. return -EBUSY;
  206. }
  207. dst = wmi_buffer(wil, d_head.addr);
  208. if (!dst) {
  209. wil_err(wil, "invalid WMI buffer: 0x%08x\n",
  210. le32_to_cpu(d_head.addr));
  211. return -EINVAL;
  212. }
  213. cmd.hdr.seq = cpu_to_le16(++wil->wmi_seq);
  214. /* set command */
  215. wil_dbg_wmi(wil, "WMI command 0x%04x [%d]\n", cmdid, len);
  216. wil_hex_dump_wmi("Cmd ", DUMP_PREFIX_OFFSET, 16, 1, &cmd,
  217. sizeof(cmd), true);
  218. wil_hex_dump_wmi("cmd ", DUMP_PREFIX_OFFSET, 16, 1, buf,
  219. len, true);
  220. wil_memcpy_toio_32(dst, &cmd, sizeof(cmd));
  221. wil_memcpy_toio_32(dst + sizeof(cmd), buf, len);
  222. /* mark entry as full */
  223. iowrite32(1, wil->csr + HOSTADDR(r->head) +
  224. offsetof(struct wil6210_mbox_ring_desc, sync));
  225. /* advance next ptr */
  226. iowrite32(r->head = next_head, wil->csr + HOST_MBOX +
  227. offsetof(struct wil6210_mbox_ctl, tx.head));
  228. trace_wil6210_wmi_cmd(&cmd.wmi, buf, len);
  229. /* interrupt to FW */
  230. iowrite32(SW_INT_MBOX, wil->csr + HOST_SW_INT);
  231. return 0;
  232. }
  233. int wmi_send(struct wil6210_priv *wil, u16 cmdid, void *buf, u16 len)
  234. {
  235. int rc;
  236. mutex_lock(&wil->wmi_mutex);
  237. rc = __wmi_send(wil, cmdid, buf, len);
  238. mutex_unlock(&wil->wmi_mutex);
  239. return rc;
  240. }
  241. /*=== Event handlers ===*/
  242. static void wmi_evt_ready(struct wil6210_priv *wil, int id, void *d, int len)
  243. {
  244. struct net_device *ndev = wil_to_ndev(wil);
  245. struct wireless_dev *wdev = wil->wdev;
  246. struct wmi_ready_event *evt = d;
  247. wil->fw_version = le32_to_cpu(evt->sw_version);
  248. wil->n_mids = evt->numof_additional_mids;
  249. wil_info(wil, "FW ver. %d; MAC %pM; %d MID's\n", wil->fw_version,
  250. evt->mac, wil->n_mids);
  251. if (!is_valid_ether_addr(ndev->dev_addr)) {
  252. memcpy(ndev->dev_addr, evt->mac, ETH_ALEN);
  253. memcpy(ndev->perm_addr, evt->mac, ETH_ALEN);
  254. }
  255. snprintf(wdev->wiphy->fw_version, sizeof(wdev->wiphy->fw_version),
  256. "%d", wil->fw_version);
  257. }
  258. static void wmi_evt_fw_ready(struct wil6210_priv *wil, int id, void *d,
  259. int len)
  260. {
  261. wil_dbg_wmi(wil, "WMI: got FW ready event\n");
  262. wil_set_recovery_state(wil, fw_recovery_idle);
  263. set_bit(wil_status_fwready, &wil->status);
  264. /* let the reset sequence continue */
  265. complete(&wil->wmi_ready);
  266. }
  267. static void wmi_evt_rx_mgmt(struct wil6210_priv *wil, int id, void *d, int len)
  268. {
  269. struct wmi_rx_mgmt_packet_event *data = d;
  270. struct wiphy *wiphy = wil_to_wiphy(wil);
  271. struct ieee80211_mgmt *rx_mgmt_frame =
  272. (struct ieee80211_mgmt *)data->payload;
  273. int ch_no = data->info.channel+1;
  274. u32 freq = ieee80211_channel_to_frequency(ch_no,
  275. IEEE80211_BAND_60GHZ);
  276. struct ieee80211_channel *channel = ieee80211_get_channel(wiphy, freq);
  277. s32 signal = data->info.sqi;
  278. __le16 fc = rx_mgmt_frame->frame_control;
  279. u32 d_len = le32_to_cpu(data->info.len);
  280. u16 d_status = le16_to_cpu(data->info.status);
  281. wil_dbg_wmi(wil, "MGMT: channel %d MCS %d SNR %d SQI %d%%\n",
  282. data->info.channel, data->info.mcs, data->info.snr,
  283. data->info.sqi);
  284. wil_dbg_wmi(wil, "status 0x%04x len %d fc 0x%04x\n", d_status, d_len,
  285. le16_to_cpu(fc));
  286. wil_dbg_wmi(wil, "qid %d mid %d cid %d\n",
  287. data->info.qid, data->info.mid, data->info.cid);
  288. if (!channel) {
  289. wil_err(wil, "Frame on unsupported channel\n");
  290. return;
  291. }
  292. if (ieee80211_is_beacon(fc) || ieee80211_is_probe_resp(fc)) {
  293. struct cfg80211_bss *bss;
  294. u64 tsf = le64_to_cpu(rx_mgmt_frame->u.beacon.timestamp);
  295. u16 cap = le16_to_cpu(rx_mgmt_frame->u.beacon.capab_info);
  296. u16 bi = le16_to_cpu(rx_mgmt_frame->u.beacon.beacon_int);
  297. const u8 *ie_buf = rx_mgmt_frame->u.beacon.variable;
  298. size_t ie_len = d_len - offsetof(struct ieee80211_mgmt,
  299. u.beacon.variable);
  300. wil_dbg_wmi(wil, "Capability info : 0x%04x\n", cap);
  301. wil_dbg_wmi(wil, "TSF : 0x%016llx\n", tsf);
  302. wil_dbg_wmi(wil, "Beacon interval : %d\n", bi);
  303. wil_hex_dump_wmi("IE ", DUMP_PREFIX_OFFSET, 16, 1, ie_buf,
  304. ie_len, true);
  305. bss = cfg80211_inform_bss_frame(wiphy, channel, rx_mgmt_frame,
  306. d_len, signal, GFP_KERNEL);
  307. if (bss) {
  308. wil_dbg_wmi(wil, "Added BSS %pM\n",
  309. rx_mgmt_frame->bssid);
  310. cfg80211_put_bss(wiphy, bss);
  311. } else {
  312. wil_err(wil, "cfg80211_inform_bss_frame() failed\n");
  313. }
  314. } else {
  315. cfg80211_rx_mgmt(wil->wdev, freq, signal,
  316. (void *)rx_mgmt_frame, d_len, 0);
  317. }
  318. }
  319. static void wmi_evt_scan_complete(struct wil6210_priv *wil, int id,
  320. void *d, int len)
  321. {
  322. if (wil->scan_request) {
  323. struct wmi_scan_complete_event *data = d;
  324. bool aborted = (data->status != WMI_SCAN_SUCCESS);
  325. wil_dbg_wmi(wil, "SCAN_COMPLETE(0x%08x)\n", data->status);
  326. wil_dbg_misc(wil, "Complete scan_request 0x%p aborted %d\n",
  327. wil->scan_request, aborted);
  328. del_timer_sync(&wil->scan_timer);
  329. cfg80211_scan_done(wil->scan_request, aborted);
  330. wil->scan_request = NULL;
  331. } else {
  332. wil_err(wil, "SCAN_COMPLETE while not scanning\n");
  333. }
  334. }
  335. static void wmi_evt_connect(struct wil6210_priv *wil, int id, void *d, int len)
  336. {
  337. struct net_device *ndev = wil_to_ndev(wil);
  338. struct wireless_dev *wdev = wil->wdev;
  339. struct wmi_connect_event *evt = d;
  340. int ch; /* channel number */
  341. struct station_info sinfo;
  342. u8 *assoc_req_ie, *assoc_resp_ie;
  343. size_t assoc_req_ielen, assoc_resp_ielen;
  344. /* capinfo(u16) + listen_interval(u16) + IEs */
  345. const size_t assoc_req_ie_offset = sizeof(u16) * 2;
  346. /* capinfo(u16) + status_code(u16) + associd(u16) + IEs */
  347. const size_t assoc_resp_ie_offset = sizeof(u16) * 3;
  348. if (len < sizeof(*evt)) {
  349. wil_err(wil, "Connect event too short : %d bytes\n", len);
  350. return;
  351. }
  352. if (len != sizeof(*evt) + evt->beacon_ie_len + evt->assoc_req_len +
  353. evt->assoc_resp_len) {
  354. wil_err(wil,
  355. "Connect event corrupted : %d != %d + %d + %d + %d\n",
  356. len, (int)sizeof(*evt), evt->beacon_ie_len,
  357. evt->assoc_req_len, evt->assoc_resp_len);
  358. return;
  359. }
  360. if (evt->cid >= WIL6210_MAX_CID) {
  361. wil_err(wil, "Connect CID invalid : %d\n", evt->cid);
  362. return;
  363. }
  364. ch = evt->channel + 1;
  365. wil_dbg_wmi(wil, "Connect %pM channel [%d] cid %d\n",
  366. evt->bssid, ch, evt->cid);
  367. wil_hex_dump_wmi("connect AI : ", DUMP_PREFIX_OFFSET, 16, 1,
  368. evt->assoc_info, len - sizeof(*evt), true);
  369. /* figure out IE's */
  370. assoc_req_ie = &evt->assoc_info[evt->beacon_ie_len +
  371. assoc_req_ie_offset];
  372. assoc_req_ielen = evt->assoc_req_len - assoc_req_ie_offset;
  373. if (evt->assoc_req_len <= assoc_req_ie_offset) {
  374. assoc_req_ie = NULL;
  375. assoc_req_ielen = 0;
  376. }
  377. assoc_resp_ie = &evt->assoc_info[evt->beacon_ie_len +
  378. evt->assoc_req_len +
  379. assoc_resp_ie_offset];
  380. assoc_resp_ielen = evt->assoc_resp_len - assoc_resp_ie_offset;
  381. if (evt->assoc_resp_len <= assoc_resp_ie_offset) {
  382. assoc_resp_ie = NULL;
  383. assoc_resp_ielen = 0;
  384. }
  385. if ((wdev->iftype == NL80211_IFTYPE_STATION) ||
  386. (wdev->iftype == NL80211_IFTYPE_P2P_CLIENT)) {
  387. if (!test_bit(wil_status_fwconnecting, &wil->status)) {
  388. wil_err(wil, "Not in connecting state\n");
  389. return;
  390. }
  391. del_timer_sync(&wil->connect_timer);
  392. cfg80211_connect_result(ndev, evt->bssid,
  393. assoc_req_ie, assoc_req_ielen,
  394. assoc_resp_ie, assoc_resp_ielen,
  395. WLAN_STATUS_SUCCESS, GFP_KERNEL);
  396. } else if ((wdev->iftype == NL80211_IFTYPE_AP) ||
  397. (wdev->iftype == NL80211_IFTYPE_P2P_GO)) {
  398. memset(&sinfo, 0, sizeof(sinfo));
  399. sinfo.generation = wil->sinfo_gen++;
  400. if (assoc_req_ie) {
  401. sinfo.assoc_req_ies = assoc_req_ie;
  402. sinfo.assoc_req_ies_len = assoc_req_ielen;
  403. }
  404. cfg80211_new_sta(ndev, evt->bssid, &sinfo, GFP_KERNEL);
  405. }
  406. clear_bit(wil_status_fwconnecting, &wil->status);
  407. set_bit(wil_status_fwconnected, &wil->status);
  408. /* FIXME FW can transmit only ucast frames to peer */
  409. /* FIXME real ring_id instead of hard coded 0 */
  410. memcpy(wil->sta[evt->cid].addr, evt->bssid, ETH_ALEN);
  411. wil->sta[evt->cid].status = wil_sta_conn_pending;
  412. wil->pending_connect_cid = evt->cid;
  413. queue_work(wil->wmi_wq_conn, &wil->connect_worker);
  414. }
  415. static void wmi_evt_disconnect(struct wil6210_priv *wil, int id,
  416. void *d, int len)
  417. {
  418. struct wmi_disconnect_event *evt = d;
  419. u16 reason_code = le16_to_cpu(evt->protocol_reason_status);
  420. wil_dbg_wmi(wil, "Disconnect %pM reason [proto %d wmi %d]\n",
  421. evt->bssid, reason_code, evt->disconnect_reason);
  422. wil->sinfo_gen++;
  423. mutex_lock(&wil->mutex);
  424. wil6210_disconnect(wil, evt->bssid, reason_code, true);
  425. mutex_unlock(&wil->mutex);
  426. }
  427. /*
  428. * Firmware reports EAPOL frame using WME event.
  429. * Reconstruct Ethernet frame and deliver it via normal Rx
  430. */
  431. static void wmi_evt_eapol_rx(struct wil6210_priv *wil, int id,
  432. void *d, int len)
  433. {
  434. struct net_device *ndev = wil_to_ndev(wil);
  435. struct wmi_eapol_rx_event *evt = d;
  436. u16 eapol_len = le16_to_cpu(evt->eapol_len);
  437. int sz = eapol_len + ETH_HLEN;
  438. struct sk_buff *skb;
  439. struct ethhdr *eth;
  440. int cid;
  441. struct wil_net_stats *stats = NULL;
  442. wil_dbg_wmi(wil, "EAPOL len %d from %pM\n", eapol_len,
  443. evt->src_mac);
  444. cid = wil_find_cid(wil, evt->src_mac);
  445. if (cid >= 0)
  446. stats = &wil->sta[cid].stats;
  447. if (eapol_len > 196) { /* TODO: revisit size limit */
  448. wil_err(wil, "EAPOL too large\n");
  449. return;
  450. }
  451. skb = alloc_skb(sz, GFP_KERNEL);
  452. if (!skb) {
  453. wil_err(wil, "Failed to allocate skb\n");
  454. return;
  455. }
  456. eth = (struct ethhdr *)skb_put(skb, ETH_HLEN);
  457. memcpy(eth->h_dest, ndev->dev_addr, ETH_ALEN);
  458. memcpy(eth->h_source, evt->src_mac, ETH_ALEN);
  459. eth->h_proto = cpu_to_be16(ETH_P_PAE);
  460. memcpy(skb_put(skb, eapol_len), evt->eapol, eapol_len);
  461. skb->protocol = eth_type_trans(skb, ndev);
  462. if (likely(netif_rx_ni(skb) == NET_RX_SUCCESS)) {
  463. ndev->stats.rx_packets++;
  464. ndev->stats.rx_bytes += sz;
  465. if (stats) {
  466. stats->rx_packets++;
  467. stats->rx_bytes += sz;
  468. }
  469. } else {
  470. ndev->stats.rx_dropped++;
  471. if (stats)
  472. stats->rx_dropped++;
  473. }
  474. }
  475. static void wmi_evt_linkup(struct wil6210_priv *wil, int id, void *d, int len)
  476. {
  477. struct net_device *ndev = wil_to_ndev(wil);
  478. struct wmi_data_port_open_event *evt = d;
  479. u8 cid = evt->cid;
  480. wil_dbg_wmi(wil, "Link UP for CID %d\n", cid);
  481. if (cid >= ARRAY_SIZE(wil->sta)) {
  482. wil_err(wil, "Link UP for invalid CID %d\n", cid);
  483. return;
  484. }
  485. wil->sta[cid].data_port_open = true;
  486. netif_carrier_on(ndev);
  487. }
  488. static void wmi_evt_linkdown(struct wil6210_priv *wil, int id, void *d, int len)
  489. {
  490. struct net_device *ndev = wil_to_ndev(wil);
  491. struct wmi_wbe_link_down_event *evt = d;
  492. u8 cid = evt->cid;
  493. wil_dbg_wmi(wil, "Link DOWN for CID %d, reason %d\n",
  494. cid, le32_to_cpu(evt->reason));
  495. if (cid >= ARRAY_SIZE(wil->sta)) {
  496. wil_err(wil, "Link DOWN for invalid CID %d\n", cid);
  497. return;
  498. }
  499. wil->sta[cid].data_port_open = false;
  500. netif_carrier_off(ndev);
  501. }
  502. static void wmi_evt_ba_status(struct wil6210_priv *wil, int id, void *d,
  503. int len)
  504. {
  505. struct wmi_vring_ba_status_event *evt = d;
  506. struct wil_sta_info *sta;
  507. uint i, cid;
  508. /* TODO: use Rx BA status, not Tx one */
  509. wil_dbg_wmi(wil, "BACK[%d] %s {%d} timeout %d\n",
  510. evt->ringid,
  511. evt->status == WMI_BA_AGREED ? "OK" : "N/A",
  512. evt->agg_wsize, __le16_to_cpu(evt->ba_timeout));
  513. if (evt->ringid >= WIL6210_MAX_TX_RINGS) {
  514. wil_err(wil, "invalid ring id %d\n", evt->ringid);
  515. return;
  516. }
  517. mutex_lock(&wil->mutex);
  518. cid = wil->vring2cid_tid[evt->ringid][0];
  519. if (cid >= WIL6210_MAX_CID) {
  520. wil_err(wil, "invalid CID %d for vring %d\n", cid, evt->ringid);
  521. goto out;
  522. }
  523. sta = &wil->sta[cid];
  524. if (sta->status == wil_sta_unused) {
  525. wil_err(wil, "CID %d unused\n", cid);
  526. goto out;
  527. }
  528. wil_dbg_wmi(wil, "BACK for CID %d %pM\n", cid, sta->addr);
  529. for (i = 0; i < WIL_STA_TID_NUM; i++) {
  530. struct wil_tid_ampdu_rx *r;
  531. unsigned long flags;
  532. spin_lock_irqsave(&sta->tid_rx_lock, flags);
  533. r = sta->tid_rx[i];
  534. sta->tid_rx[i] = NULL;
  535. wil_tid_ampdu_rx_free(wil, r);
  536. spin_unlock_irqrestore(&sta->tid_rx_lock, flags);
  537. if ((evt->status == WMI_BA_AGREED) && evt->agg_wsize)
  538. sta->tid_rx[i] = wil_tid_ampdu_rx_alloc(wil,
  539. evt->agg_wsize, 0);
  540. }
  541. out:
  542. mutex_unlock(&wil->mutex);
  543. }
  544. static const struct {
  545. int eventid;
  546. void (*handler)(struct wil6210_priv *wil, int eventid,
  547. void *data, int data_len);
  548. } wmi_evt_handlers[] = {
  549. {WMI_READY_EVENTID, wmi_evt_ready},
  550. {WMI_FW_READY_EVENTID, wmi_evt_fw_ready},
  551. {WMI_RX_MGMT_PACKET_EVENTID, wmi_evt_rx_mgmt},
  552. {WMI_SCAN_COMPLETE_EVENTID, wmi_evt_scan_complete},
  553. {WMI_CONNECT_EVENTID, wmi_evt_connect},
  554. {WMI_DISCONNECT_EVENTID, wmi_evt_disconnect},
  555. {WMI_EAPOL_RX_EVENTID, wmi_evt_eapol_rx},
  556. {WMI_DATA_PORT_OPEN_EVENTID, wmi_evt_linkup},
  557. {WMI_WBE_LINKDOWN_EVENTID, wmi_evt_linkdown},
  558. {WMI_BA_STATUS_EVENTID, wmi_evt_ba_status},
  559. };
  560. /*
  561. * Run in IRQ context
  562. * Extract WMI command from mailbox. Queue it to the @wil->pending_wmi_ev
  563. * that will be eventually handled by the @wmi_event_worker in the thread
  564. * context of thread "wil6210_wmi"
  565. */
  566. void wmi_recv_cmd(struct wil6210_priv *wil)
  567. {
  568. struct wil6210_mbox_ring_desc d_tail;
  569. struct wil6210_mbox_hdr hdr;
  570. struct wil6210_mbox_ring *r = &wil->mbox_ctl.rx;
  571. struct pending_wmi_event *evt;
  572. u8 *cmd;
  573. void __iomem *src;
  574. ulong flags;
  575. unsigned n;
  576. if (!test_bit(wil_status_reset_done, &wil->status)) {
  577. wil_err(wil, "Reset in progress. Cannot handle WMI event\n");
  578. return;
  579. }
  580. for (n = 0;; n++) {
  581. u16 len;
  582. bool q;
  583. r->head = ioread32(wil->csr + HOST_MBOX +
  584. offsetof(struct wil6210_mbox_ctl, rx.head));
  585. if (r->tail == r->head)
  586. break;
  587. wil_dbg_wmi(wil, "Mbox head %08x tail %08x\n",
  588. r->head, r->tail);
  589. /* read cmd descriptor from tail */
  590. wil_memcpy_fromio_32(&d_tail, wil->csr + HOSTADDR(r->tail),
  591. sizeof(struct wil6210_mbox_ring_desc));
  592. if (d_tail.sync == 0) {
  593. wil_err(wil, "Mbox evt not owned by FW?\n");
  594. break;
  595. }
  596. /* read cmd header from descriptor */
  597. if (0 != wmi_read_hdr(wil, d_tail.addr, &hdr)) {
  598. wil_err(wil, "Mbox evt at 0x%08x?\n",
  599. le32_to_cpu(d_tail.addr));
  600. break;
  601. }
  602. len = le16_to_cpu(hdr.len);
  603. wil_dbg_wmi(wil, "Mbox evt %04x %04x %04x %02x\n",
  604. le16_to_cpu(hdr.seq), len, le16_to_cpu(hdr.type),
  605. hdr.flags);
  606. /* read cmd buffer from descriptor */
  607. src = wmi_buffer(wil, d_tail.addr) +
  608. sizeof(struct wil6210_mbox_hdr);
  609. evt = kmalloc(ALIGN(offsetof(struct pending_wmi_event,
  610. event.wmi) + len, 4),
  611. GFP_KERNEL);
  612. if (!evt)
  613. break;
  614. evt->event.hdr = hdr;
  615. cmd = (void *)&evt->event.wmi;
  616. wil_memcpy_fromio_32(cmd, src, len);
  617. /* mark entry as empty */
  618. iowrite32(0, wil->csr + HOSTADDR(r->tail) +
  619. offsetof(struct wil6210_mbox_ring_desc, sync));
  620. /* indicate */
  621. if ((hdr.type == WIL_MBOX_HDR_TYPE_WMI) &&
  622. (len >= sizeof(struct wil6210_mbox_hdr_wmi))) {
  623. struct wil6210_mbox_hdr_wmi *wmi = &evt->event.wmi;
  624. u16 id = le16_to_cpu(wmi->id);
  625. u32 tstamp = le32_to_cpu(wmi->timestamp);
  626. wil_dbg_wmi(wil, "WMI event 0x%04x MID %d @%d msec\n",
  627. id, wmi->mid, tstamp);
  628. trace_wil6210_wmi_event(wmi, &wmi[1],
  629. len - sizeof(*wmi));
  630. }
  631. wil_hex_dump_wmi("evt ", DUMP_PREFIX_OFFSET, 16, 1,
  632. &evt->event.hdr, sizeof(hdr) + len, true);
  633. /* advance tail */
  634. r->tail = r->base + ((r->tail - r->base +
  635. sizeof(struct wil6210_mbox_ring_desc)) % r->size);
  636. iowrite32(r->tail, wil->csr + HOST_MBOX +
  637. offsetof(struct wil6210_mbox_ctl, rx.tail));
  638. /* add to the pending list */
  639. spin_lock_irqsave(&wil->wmi_ev_lock, flags);
  640. list_add_tail(&evt->list, &wil->pending_wmi_ev);
  641. spin_unlock_irqrestore(&wil->wmi_ev_lock, flags);
  642. q = queue_work(wil->wmi_wq, &wil->wmi_event_worker);
  643. wil_dbg_wmi(wil, "queue_work -> %d\n", q);
  644. }
  645. /* normally, 1 event per IRQ should be processed */
  646. wil_dbg_wmi(wil, "%s -> %d events queued\n", __func__, n);
  647. }
  648. int wmi_call(struct wil6210_priv *wil, u16 cmdid, void *buf, u16 len,
  649. u16 reply_id, void *reply, u8 reply_size, int to_msec)
  650. {
  651. int rc;
  652. int remain;
  653. mutex_lock(&wil->wmi_mutex);
  654. rc = __wmi_send(wil, cmdid, buf, len);
  655. if (rc)
  656. goto out;
  657. wil->reply_id = reply_id;
  658. wil->reply_buf = reply;
  659. wil->reply_size = reply_size;
  660. remain = wait_for_completion_timeout(&wil->wmi_call,
  661. msecs_to_jiffies(to_msec));
  662. if (0 == remain) {
  663. wil_err(wil, "wmi_call(0x%04x->0x%04x) timeout %d msec\n",
  664. cmdid, reply_id, to_msec);
  665. rc = -ETIME;
  666. } else {
  667. wil_dbg_wmi(wil,
  668. "wmi_call(0x%04x->0x%04x) completed in %d msec\n",
  669. cmdid, reply_id,
  670. to_msec - jiffies_to_msecs(remain));
  671. }
  672. wil->reply_id = 0;
  673. wil->reply_buf = NULL;
  674. wil->reply_size = 0;
  675. out:
  676. mutex_unlock(&wil->wmi_mutex);
  677. return rc;
  678. }
  679. int wmi_echo(struct wil6210_priv *wil)
  680. {
  681. struct wmi_echo_cmd cmd = {
  682. .value = cpu_to_le32(0x12345678),
  683. };
  684. return wmi_call(wil, WMI_ECHO_CMDID, &cmd, sizeof(cmd),
  685. WMI_ECHO_RSP_EVENTID, NULL, 0, 20);
  686. }
  687. int wmi_set_mac_address(struct wil6210_priv *wil, void *addr)
  688. {
  689. struct wmi_set_mac_address_cmd cmd;
  690. memcpy(cmd.mac, addr, ETH_ALEN);
  691. wil_dbg_wmi(wil, "Set MAC %pM\n", addr);
  692. return wmi_send(wil, WMI_SET_MAC_ADDRESS_CMDID, &cmd, sizeof(cmd));
  693. }
  694. int wmi_pcp_start(struct wil6210_priv *wil, int bi, u8 wmi_nettype, u8 chan)
  695. {
  696. int rc;
  697. struct wmi_pcp_start_cmd cmd = {
  698. .bcon_interval = cpu_to_le16(bi),
  699. .network_type = wmi_nettype,
  700. .disable_sec_offload = 1,
  701. .channel = chan - 1,
  702. .pcp_max_assoc_sta = max_assoc_sta,
  703. };
  704. struct {
  705. struct wil6210_mbox_hdr_wmi wmi;
  706. struct wmi_pcp_started_event evt;
  707. } __packed reply;
  708. if (!wil->secure_pcp)
  709. cmd.disable_sec = 1;
  710. if ((cmd.pcp_max_assoc_sta > WIL6210_MAX_CID) ||
  711. (cmd.pcp_max_assoc_sta <= 0)) {
  712. wil_info(wil,
  713. "Requested connection limit %u, valid values are 1 - %d. Setting to %d\n",
  714. max_assoc_sta, WIL6210_MAX_CID, WIL6210_MAX_CID);
  715. cmd.pcp_max_assoc_sta = WIL6210_MAX_CID;
  716. }
  717. /*
  718. * Processing time may be huge, in case of secure AP it takes about
  719. * 3500ms for FW to start AP
  720. */
  721. rc = wmi_call(wil, WMI_PCP_START_CMDID, &cmd, sizeof(cmd),
  722. WMI_PCP_STARTED_EVENTID, &reply, sizeof(reply), 5000);
  723. if (rc)
  724. return rc;
  725. if (reply.evt.status != WMI_FW_STATUS_SUCCESS)
  726. rc = -EINVAL;
  727. return rc;
  728. }
  729. int wmi_pcp_stop(struct wil6210_priv *wil)
  730. {
  731. return wmi_call(wil, WMI_PCP_STOP_CMDID, NULL, 0,
  732. WMI_PCP_STOPPED_EVENTID, NULL, 0, 20);
  733. }
  734. int wmi_set_ssid(struct wil6210_priv *wil, u8 ssid_len, const void *ssid)
  735. {
  736. struct wmi_set_ssid_cmd cmd = {
  737. .ssid_len = cpu_to_le32(ssid_len),
  738. };
  739. if (ssid_len > sizeof(cmd.ssid))
  740. return -EINVAL;
  741. memcpy(cmd.ssid, ssid, ssid_len);
  742. return wmi_send(wil, WMI_SET_SSID_CMDID, &cmd, sizeof(cmd));
  743. }
  744. int wmi_get_ssid(struct wil6210_priv *wil, u8 *ssid_len, void *ssid)
  745. {
  746. int rc;
  747. struct {
  748. struct wil6210_mbox_hdr_wmi wmi;
  749. struct wmi_set_ssid_cmd cmd;
  750. } __packed reply;
  751. int len; /* reply.cmd.ssid_len in CPU order */
  752. rc = wmi_call(wil, WMI_GET_SSID_CMDID, NULL, 0, WMI_GET_SSID_EVENTID,
  753. &reply, sizeof(reply), 20);
  754. if (rc)
  755. return rc;
  756. len = le32_to_cpu(reply.cmd.ssid_len);
  757. if (len > sizeof(reply.cmd.ssid))
  758. return -EINVAL;
  759. *ssid_len = len;
  760. memcpy(ssid, reply.cmd.ssid, len);
  761. return 0;
  762. }
  763. int wmi_set_channel(struct wil6210_priv *wil, int channel)
  764. {
  765. struct wmi_set_pcp_channel_cmd cmd = {
  766. .channel = channel - 1,
  767. };
  768. return wmi_send(wil, WMI_SET_PCP_CHANNEL_CMDID, &cmd, sizeof(cmd));
  769. }
  770. int wmi_get_channel(struct wil6210_priv *wil, int *channel)
  771. {
  772. int rc;
  773. struct {
  774. struct wil6210_mbox_hdr_wmi wmi;
  775. struct wmi_set_pcp_channel_cmd cmd;
  776. } __packed reply;
  777. rc = wmi_call(wil, WMI_GET_PCP_CHANNEL_CMDID, NULL, 0,
  778. WMI_GET_PCP_CHANNEL_EVENTID, &reply, sizeof(reply), 20);
  779. if (rc)
  780. return rc;
  781. if (reply.cmd.channel > 3)
  782. return -EINVAL;
  783. *channel = reply.cmd.channel + 1;
  784. return 0;
  785. }
  786. int wmi_p2p_cfg(struct wil6210_priv *wil, int channel)
  787. {
  788. struct wmi_p2p_cfg_cmd cmd = {
  789. .discovery_mode = WMI_DISCOVERY_MODE_NON_OFFLOAD,
  790. .channel = channel - 1,
  791. };
  792. return wmi_send(wil, WMI_P2P_CFG_CMDID, &cmd, sizeof(cmd));
  793. }
  794. int wmi_del_cipher_key(struct wil6210_priv *wil, u8 key_index,
  795. const void *mac_addr)
  796. {
  797. struct wmi_delete_cipher_key_cmd cmd = {
  798. .key_index = key_index,
  799. };
  800. if (mac_addr)
  801. memcpy(cmd.mac, mac_addr, WMI_MAC_LEN);
  802. return wmi_send(wil, WMI_DELETE_CIPHER_KEY_CMDID, &cmd, sizeof(cmd));
  803. }
  804. int wmi_add_cipher_key(struct wil6210_priv *wil, u8 key_index,
  805. const void *mac_addr, int key_len, const void *key)
  806. {
  807. struct wmi_add_cipher_key_cmd cmd = {
  808. .key_index = key_index,
  809. .key_usage = WMI_KEY_USE_PAIRWISE,
  810. .key_len = key_len,
  811. };
  812. if (!key || (key_len > sizeof(cmd.key)))
  813. return -EINVAL;
  814. memcpy(cmd.key, key, key_len);
  815. if (mac_addr)
  816. memcpy(cmd.mac, mac_addr, WMI_MAC_LEN);
  817. return wmi_send(wil, WMI_ADD_CIPHER_KEY_CMDID, &cmd, sizeof(cmd));
  818. }
  819. int wmi_set_ie(struct wil6210_priv *wil, u8 type, u16 ie_len, const void *ie)
  820. {
  821. int rc;
  822. u16 len = sizeof(struct wmi_set_appie_cmd) + ie_len;
  823. struct wmi_set_appie_cmd *cmd = kzalloc(len, GFP_KERNEL);
  824. if (!cmd)
  825. return -ENOMEM;
  826. if (!ie)
  827. ie_len = 0;
  828. cmd->mgmt_frm_type = type;
  829. /* BUG: FW API define ieLen as u8. Will fix FW */
  830. cmd->ie_len = cpu_to_le16(ie_len);
  831. memcpy(cmd->ie_info, ie, ie_len);
  832. rc = wmi_send(wil, WMI_SET_APPIE_CMDID, cmd, len);
  833. kfree(cmd);
  834. return rc;
  835. }
  836. /**
  837. * wmi_rxon - turn radio on/off
  838. * @on: turn on if true, off otherwise
  839. *
  840. * Only switch radio. Channel should be set separately.
  841. * No timeout for rxon - radio turned on forever unless some other call
  842. * turns it off
  843. */
  844. int wmi_rxon(struct wil6210_priv *wil, bool on)
  845. {
  846. int rc;
  847. struct {
  848. struct wil6210_mbox_hdr_wmi wmi;
  849. struct wmi_listen_started_event evt;
  850. } __packed reply;
  851. wil_info(wil, "%s(%s)\n", __func__, on ? "on" : "off");
  852. if (on) {
  853. rc = wmi_call(wil, WMI_START_LISTEN_CMDID, NULL, 0,
  854. WMI_LISTEN_STARTED_EVENTID,
  855. &reply, sizeof(reply), 100);
  856. if ((rc == 0) && (reply.evt.status != WMI_FW_STATUS_SUCCESS))
  857. rc = -EINVAL;
  858. } else {
  859. rc = wmi_call(wil, WMI_DISCOVERY_STOP_CMDID, NULL, 0,
  860. WMI_DISCOVERY_STOPPED_EVENTID, NULL, 0, 20);
  861. }
  862. return rc;
  863. }
  864. int wmi_rx_chain_add(struct wil6210_priv *wil, struct vring *vring)
  865. {
  866. struct wireless_dev *wdev = wil->wdev;
  867. struct net_device *ndev = wil_to_ndev(wil);
  868. struct wmi_cfg_rx_chain_cmd cmd = {
  869. .action = WMI_RX_CHAIN_ADD,
  870. .rx_sw_ring = {
  871. .max_mpdu_size = cpu_to_le16(mtu_max + ETH_HLEN),
  872. .ring_mem_base = cpu_to_le64(vring->pa),
  873. .ring_size = cpu_to_le16(vring->size),
  874. },
  875. .mid = 0, /* TODO - what is it? */
  876. .decap_trans_type = WMI_DECAP_TYPE_802_3,
  877. .reorder_type = WMI_RX_SW_REORDER,
  878. };
  879. struct {
  880. struct wil6210_mbox_hdr_wmi wmi;
  881. struct wmi_cfg_rx_chain_done_event evt;
  882. } __packed evt;
  883. int rc;
  884. if (wdev->iftype == NL80211_IFTYPE_MONITOR) {
  885. struct ieee80211_channel *ch = wdev->preset_chandef.chan;
  886. cmd.sniffer_cfg.mode = cpu_to_le32(WMI_SNIFFER_ON);
  887. if (ch)
  888. cmd.sniffer_cfg.channel = ch->hw_value - 1;
  889. cmd.sniffer_cfg.phy_info_mode =
  890. cpu_to_le32(ndev->type == ARPHRD_IEEE80211_RADIOTAP);
  891. cmd.sniffer_cfg.phy_support =
  892. cpu_to_le32((wil->monitor_flags & MONITOR_FLAG_CONTROL)
  893. ? WMI_SNIFFER_CP : WMI_SNIFFER_DP);
  894. } else {
  895. /* Initialize offload (in non-sniffer mode).
  896. * Linux IP stack always calculates IP checksum
  897. * HW always calculate TCP/UDP checksum
  898. */
  899. cmd.l3_l4_ctrl |= (1 << L3_L4_CTRL_TCPIP_CHECKSUM_EN_POS);
  900. }
  901. /* typical time for secure PCP is 840ms */
  902. rc = wmi_call(wil, WMI_CFG_RX_CHAIN_CMDID, &cmd, sizeof(cmd),
  903. WMI_CFG_RX_CHAIN_DONE_EVENTID, &evt, sizeof(evt), 2000);
  904. if (rc)
  905. return rc;
  906. vring->hwtail = le32_to_cpu(evt.evt.rx_ring_tail_ptr);
  907. wil_dbg_misc(wil, "Rx init: status %d tail 0x%08x\n",
  908. le32_to_cpu(evt.evt.status), vring->hwtail);
  909. if (le32_to_cpu(evt.evt.status) != WMI_CFG_RX_CHAIN_SUCCESS)
  910. rc = -EINVAL;
  911. return rc;
  912. }
  913. int wmi_get_temperature(struct wil6210_priv *wil, u32 *t_m, u32 *t_r)
  914. {
  915. int rc;
  916. struct wmi_temp_sense_cmd cmd = {
  917. .measure_marlon_m_en = cpu_to_le32(!!t_m),
  918. .measure_marlon_r_en = cpu_to_le32(!!t_r),
  919. };
  920. struct {
  921. struct wil6210_mbox_hdr_wmi wmi;
  922. struct wmi_temp_sense_done_event evt;
  923. } __packed reply;
  924. rc = wmi_call(wil, WMI_TEMP_SENSE_CMDID, &cmd, sizeof(cmd),
  925. WMI_TEMP_SENSE_DONE_EVENTID, &reply, sizeof(reply), 100);
  926. if (rc)
  927. return rc;
  928. if (t_m)
  929. *t_m = le32_to_cpu(reply.evt.marlon_m_t1000);
  930. if (t_r)
  931. *t_r = le32_to_cpu(reply.evt.marlon_r_t1000);
  932. return 0;
  933. }
  934. int wmi_disconnect_sta(struct wil6210_priv *wil, const u8 *mac, u16 reason)
  935. {
  936. struct wmi_disconnect_sta_cmd cmd = {
  937. .disconnect_reason = cpu_to_le16(reason),
  938. };
  939. memcpy(cmd.dst_mac, mac, ETH_ALEN);
  940. wil_dbg_wmi(wil, "%s(%pM, reason %d)\n", __func__, mac, reason);
  941. return wmi_send(wil, WMI_DISCONNECT_STA_CMDID, &cmd, sizeof(cmd));
  942. }
  943. void wmi_event_flush(struct wil6210_priv *wil)
  944. {
  945. struct pending_wmi_event *evt, *t;
  946. wil_dbg_wmi(wil, "%s()\n", __func__);
  947. list_for_each_entry_safe(evt, t, &wil->pending_wmi_ev, list) {
  948. list_del(&evt->list);
  949. kfree(evt);
  950. }
  951. }
  952. static bool wmi_evt_call_handler(struct wil6210_priv *wil, int id,
  953. void *d, int len)
  954. {
  955. uint i;
  956. for (i = 0; i < ARRAY_SIZE(wmi_evt_handlers); i++) {
  957. if (wmi_evt_handlers[i].eventid == id) {
  958. wmi_evt_handlers[i].handler(wil, id, d, len);
  959. return true;
  960. }
  961. }
  962. return false;
  963. }
  964. static void wmi_event_handle(struct wil6210_priv *wil,
  965. struct wil6210_mbox_hdr *hdr)
  966. {
  967. u16 len = le16_to_cpu(hdr->len);
  968. if ((hdr->type == WIL_MBOX_HDR_TYPE_WMI) &&
  969. (len >= sizeof(struct wil6210_mbox_hdr_wmi))) {
  970. struct wil6210_mbox_hdr_wmi *wmi = (void *)(&hdr[1]);
  971. void *evt_data = (void *)(&wmi[1]);
  972. u16 id = le16_to_cpu(wmi->id);
  973. wil_dbg_wmi(wil, "Handle WMI 0x%04x (reply_id 0x%04x)\n",
  974. id, wil->reply_id);
  975. /* check if someone waits for this event */
  976. if (wil->reply_id && wil->reply_id == id) {
  977. if (wil->reply_buf) {
  978. memcpy(wil->reply_buf, wmi,
  979. min(len, wil->reply_size));
  980. } else {
  981. wmi_evt_call_handler(wil, id, evt_data,
  982. len - sizeof(*wmi));
  983. }
  984. wil_dbg_wmi(wil, "Complete WMI 0x%04x\n", id);
  985. complete(&wil->wmi_call);
  986. return;
  987. }
  988. /* unsolicited event */
  989. /* search for handler */
  990. if (!wmi_evt_call_handler(wil, id, evt_data,
  991. len - sizeof(*wmi))) {
  992. wil_err(wil, "Unhandled event 0x%04x\n", id);
  993. }
  994. } else {
  995. wil_err(wil, "Unknown event type\n");
  996. print_hex_dump(KERN_ERR, "evt?? ", DUMP_PREFIX_OFFSET, 16, 1,
  997. hdr, sizeof(*hdr) + len, true);
  998. }
  999. }
  1000. /*
  1001. * Retrieve next WMI event from the pending list
  1002. */
  1003. static struct list_head *next_wmi_ev(struct wil6210_priv *wil)
  1004. {
  1005. ulong flags;
  1006. struct list_head *ret = NULL;
  1007. spin_lock_irqsave(&wil->wmi_ev_lock, flags);
  1008. if (!list_empty(&wil->pending_wmi_ev)) {
  1009. ret = wil->pending_wmi_ev.next;
  1010. list_del(ret);
  1011. }
  1012. spin_unlock_irqrestore(&wil->wmi_ev_lock, flags);
  1013. return ret;
  1014. }
  1015. /*
  1016. * Handler for the WMI events
  1017. */
  1018. void wmi_event_worker(struct work_struct *work)
  1019. {
  1020. struct wil6210_priv *wil = container_of(work, struct wil6210_priv,
  1021. wmi_event_worker);
  1022. struct pending_wmi_event *evt;
  1023. struct list_head *lh;
  1024. wil_dbg_wmi(wil, "Start %s\n", __func__);
  1025. while ((lh = next_wmi_ev(wil)) != NULL) {
  1026. evt = list_entry(lh, struct pending_wmi_event, list);
  1027. wmi_event_handle(wil, &evt->event.hdr);
  1028. kfree(evt);
  1029. }
  1030. wil_dbg_wmi(wil, "Finished %s\n", __func__);
  1031. }