main.c 18.6 KB
Newer Older
1
/*
2
 * Copyright (c) 2012-2014 Qualcomm Atheros, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <linux/moduleparam.h>
#include <linux/if_arp.h>
19
#include <linux/etherdevice.h>
20 21

#include "wil6210.h"
V
Vladimir Kondratiev 已提交
22
#include "txrx.h"
23 24 25 26
#include "wmi.h"

#define WAIT_FOR_DISCONNECT_TIMEOUT_MS 2000
#define WAIT_FOR_DISCONNECT_INTERVAL_MS 10
27

V
Vladimir Kondratiev 已提交
28 29 30 31
static bool no_fw_recovery;
module_param(no_fw_recovery, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(no_fw_recovery, " disable FW error recovery");

V
Vladimir Kondratiev 已提交
32 33 34 35
static bool no_fw_load = true;
module_param(no_fw_load, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(no_fw_load, " do not download FW, use one in on-card flash.");

V
Vladimir Kondratiev 已提交
36 37 38 39 40
static unsigned int itr_trsh = WIL6210_ITR_TRSH_DEFAULT;

module_param(itr_trsh, uint, S_IRUGO);
MODULE_PARM_DESC(itr_trsh, " Interrupt moderation threshold, usecs.");

41 42 43
#define RST_DELAY (20) /* msec, for loop in @wil_target_reset */
#define RST_COUNT (1 + 1000/RST_DELAY) /* round up to be above 1 sec total */

44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
/*
 * Due to a hardware issue,
 * one has to read/write to/from NIC in 32-bit chunks;
 * regular memcpy_fromio and siblings will
 * not work on 64-bit platform - it uses 64-bit transactions
 *
 * Force 32-bit transactions to enable NIC on 64-bit platforms
 *
 * To avoid byte swap on big endian host, __raw_{read|write}l
 * should be used - {read|write}l would swap bytes to provide
 * little endian on PCI value in host endianness.
 */
void wil_memcpy_fromio_32(void *dst, const volatile void __iomem *src,
			  size_t count)
{
	u32 *d = dst;
	const volatile u32 __iomem *s = src;

	/* size_t is unsigned, if (count%4 != 0) it will wrap */
	for (count += 4; count > 4; count -= 4)
		*d++ = __raw_readl(s++);
}

void wil_memcpy_toio_32(volatile void __iomem *dst, const void *src,
			size_t count)
{
	volatile u32 __iomem *d = dst;
	const u32 *s = src;

	for (count += 4; count > 4; count -= 4)
		__raw_writel(*s++, d++);
}

77 78 79
static void wil_disconnect_cid(struct wil6210_priv *wil, int cid)
{
	uint i;
80 81
	struct net_device *ndev = wil_to_ndev(wil);
	struct wireless_dev *wdev = wil->wdev;
82
	struct wil_sta_info *sta = &wil->sta[cid];
83

84 85
	wil_dbg_misc(wil, "%s(CID %d, status %d)\n", __func__, cid,
		     sta->status);
86

87
	sta->data_port_open = false;
88 89
	if (sta->status != wil_sta_unused) {
		wmi_disconnect_sta(wil, sta->addr, WLAN_REASON_DEAUTH_LEAVING);
90 91 92 93 94 95 96 97 98
		switch (wdev->iftype) {
		case NL80211_IFTYPE_AP:
		case NL80211_IFTYPE_P2P_GO:
			/* AP-like interface */
			cfg80211_del_sta(ndev, sta->addr, GFP_KERNEL);
			break;
		default:
			break;
		}
99 100 101
		sta->status = wil_sta_unused;
	}

102
	for (i = 0; i < WIL_STA_TID_NUM; i++) {
103 104 105 106 107 108
		struct wil_tid_ampdu_rx *r;
		unsigned long flags;

		spin_lock_irqsave(&sta->tid_rx_lock, flags);

		r = sta->tid_rx[i];
109 110
		sta->tid_rx[i] = NULL;
		wil_tid_ampdu_rx_free(wil, r);
111 112

		spin_unlock_irqrestore(&sta->tid_rx_lock, flags);
113 114 115 116 117 118 119 120
	}
	for (i = 0; i < ARRAY_SIZE(wil->vring_tx); i++) {
		if (wil->vring2cid_tid[i][0] == cid)
			wil_vring_fini_tx(wil, i);
	}
	memset(&sta->stats, 0, sizeof(sta->stats));
}

121
static void _wil6210_disconnect(struct wil6210_priv *wil, const u8 *bssid)
122
{
123
	int cid = -ENOENT;
124
	struct net_device *ndev = wil_to_ndev(wil);
125 126 127 128 129 130 131 132
	struct wireless_dev *wdev = wil->wdev;

	might_sleep();
	if (bssid) {
		cid = wil_find_cid(wil, bssid);
		wil_dbg_misc(wil, "%s(%pM, CID %d)\n", __func__, bssid, cid);
	} else {
		wil_dbg_misc(wil, "%s(all)\n", __func__);
V
Vladimir Kondratiev 已提交
133 134
	}

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
	if (cid >= 0) /* disconnect 1 peer */
		wil_disconnect_cid(wil, cid);
	else /* disconnect all */
		for (cid = 0; cid < WIL6210_MAX_CID; cid++)
			wil_disconnect_cid(wil, cid);

	/* link state */
	switch (wdev->iftype) {
	case NL80211_IFTYPE_STATION:
	case NL80211_IFTYPE_P2P_CLIENT:
		wil_link_off(wil);
		if (test_bit(wil_status_fwconnected, &wil->status)) {
			clear_bit(wil_status_fwconnected, &wil->status);
			cfg80211_disconnected(ndev,
					      WLAN_STATUS_UNSPECIFIED_FAILURE,
					      NULL, 0, GFP_KERNEL);
		} else if (test_bit(wil_status_fwconnecting, &wil->status)) {
			cfg80211_connect_result(ndev, bssid, NULL, 0, NULL, 0,
						WLAN_STATUS_UNSPECIFIED_FAILURE,
						GFP_KERNEL);
		}
		clear_bit(wil_status_fwconnecting, &wil->status);
		break;
	default:
		break;
160 161 162 163 164 165 166 167
	}
}

static void wil_disconnect_worker(struct work_struct *work)
{
	struct wil6210_priv *wil = container_of(work,
			struct wil6210_priv, disconnect_worker);

168
	mutex_lock(&wil->mutex);
169
	_wil6210_disconnect(wil, NULL);
170
	mutex_unlock(&wil->mutex);
171 172 173 174 175 176
}

static void wil_connect_timer_fn(ulong x)
{
	struct wil6210_priv *wil = (void *)x;

177
	wil_dbg_misc(wil, "Connect timeout\n");
178 179 180 181 182 183 184

	/* reschedule to thread context - disconnect won't
	 * run from atomic context
	 */
	schedule_work(&wil->disconnect_worker);
}

185 186 187 188 189 190 191 192 193
static void wil_scan_timer_fn(ulong x)
{
	struct wil6210_priv *wil = (void *)x;

	clear_bit(wil_status_fwready, &wil->status);
	wil_err(wil, "Scan timeout detected, start fw error recovery\n");
	schedule_work(&wil->fw_error_worker);
}

V
Vladimir Kondratiev 已提交
194 195 196 197 198 199 200 201 202 203 204
static void wil_fw_error_worker(struct work_struct *work)
{
	struct wil6210_priv *wil = container_of(work,
			struct wil6210_priv, fw_error_worker);
	struct wireless_dev *wdev = wil->wdev;

	wil_dbg_misc(wil, "fw error worker\n");

	if (no_fw_recovery)
		return;

205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
	/* increment @recovery_count if less then WIL6210_FW_RECOVERY_TO
	 * passed since last recovery attempt
	 */
	if (time_is_after_jiffies(wil->last_fw_recovery +
				  WIL6210_FW_RECOVERY_TO))
		wil->recovery_count++;
	else
		wil->recovery_count = 1; /* fw was alive for a long time */

	if (wil->recovery_count > WIL6210_FW_RECOVERY_RETRIES) {
		wil_err(wil, "too many recovery attempts (%d), giving up\n",
			wil->recovery_count);
		return;
	}

	wil->last_fw_recovery = jiffies;

222
	mutex_lock(&wil->mutex);
V
Vladimir Kondratiev 已提交
223 224 225 226
	switch (wdev->iftype) {
	case NL80211_IFTYPE_STATION:
	case NL80211_IFTYPE_P2P_CLIENT:
	case NL80211_IFTYPE_MONITOR:
227 228
		wil_info(wil, "fw error recovery started (try %d)...\n",
			 wil->recovery_count);
229 230
		__wil_down(wil);
		__wil_up(wil);
V
Vladimir Kondratiev 已提交
231 232 233 234 235 236 237 238
		break;
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_P2P_GO:
		/* recovery in these modes is done by upper layers */
		break;
	default:
		break;
	}
239
	mutex_unlock(&wil->mutex);
V
Vladimir Kondratiev 已提交
240 241
}

242 243 244
static int wil_find_free_vring(struct wil6210_priv *wil)
{
	int i;
245

246 247 248 249 250 251 252
	for (i = 0; i < WIL6210_MAX_TX_RINGS; i++) {
		if (!wil->vring_tx[i].va)
			return i;
	}
	return -EINVAL;
}

253 254 255 256 257 258
static void wil_connect_worker(struct work_struct *work)
{
	int rc;
	struct wil6210_priv *wil = container_of(work, struct wil6210_priv,
						connect_worker);
	int cid = wil->pending_connect_cid;
259
	int ringid = wil_find_free_vring(wil);
260 261 262 263 264 265 266 267

	if (cid < 0) {
		wil_err(wil, "No connection pending\n");
		return;
	}

	wil_dbg_wmi(wil, "Configure for connection CID %d\n", cid);

268
	rc = wil_vring_init_tx(wil, ringid, WIL6210_TX_RING_SIZE, cid, 0);
269
	wil->pending_connect_cid = -1;
270 271
	if (rc == 0) {
		wil->sta[cid].status = wil_sta_connected;
272
		wil_link_on(wil);
273 274 275
	} else {
		wil->sta[cid].status = wil_sta_unused;
	}
276 277
}

278 279
int wil_priv_init(struct wil6210_priv *wil)
{
280 281
	uint i;

282
	wil_dbg_misc(wil, "%s()\n", __func__);
283

284
	memset(wil->sta, 0, sizeof(wil->sta));
285 286
	for (i = 0; i < WIL6210_MAX_CID; i++)
		spin_lock_init(&wil->sta[i].tid_rx_lock);
287

288 289 290 291
	mutex_init(&wil->mutex);
	mutex_init(&wil->wmi_mutex);

	init_completion(&wil->wmi_ready);
292
	init_completion(&wil->wmi_call);
293 294 295

	wil->pending_connect_cid = -1;
	setup_timer(&wil->connect_timer, wil_connect_timer_fn, (ulong)wil);
296
	setup_timer(&wil->scan_timer, wil_scan_timer_fn, (ulong)wil);
297

298
	INIT_WORK(&wil->connect_worker, wil_connect_worker);
299 300
	INIT_WORK(&wil->disconnect_worker, wil_disconnect_worker);
	INIT_WORK(&wil->wmi_event_worker, wmi_event_worker);
V
Vladimir Kondratiev 已提交
301
	INIT_WORK(&wil->fw_error_worker, wil_fw_error_worker);
302 303 304 305 306 307 308 309 310 311 312 313 314 315

	INIT_LIST_HEAD(&wil->pending_wmi_ev);
	spin_lock_init(&wil->wmi_ev_lock);

	wil->wmi_wq = create_singlethread_workqueue(WIL_NAME"_wmi");
	if (!wil->wmi_wq)
		return -EAGAIN;

	wil->wmi_wq_conn = create_singlethread_workqueue(WIL_NAME"_connect");
	if (!wil->wmi_wq_conn) {
		destroy_workqueue(wil->wmi_wq);
		return -EAGAIN;
	}

316
	wil->last_fw_recovery = jiffies;
V
Vladimir Kondratiev 已提交
317
	wil->itr_trsh = itr_trsh;
318

319 320 321
	return 0;
}

322
void wil6210_disconnect(struct wil6210_priv *wil, const u8 *bssid)
323
{
324 325
	wil_dbg_misc(wil, "%s()\n", __func__);

326 327 328 329 330 331
	del_timer_sync(&wil->connect_timer);
	_wil6210_disconnect(wil, bssid);
}

void wil_priv_deinit(struct wil6210_priv *wil)
{
332 333
	wil_dbg_misc(wil, "%s()\n", __func__);

334
	del_timer_sync(&wil->scan_timer);
335
	cancel_work_sync(&wil->disconnect_worker);
V
Vladimir Kondratiev 已提交
336
	cancel_work_sync(&wil->fw_error_worker);
337
	mutex_lock(&wil->mutex);
338
	wil6210_disconnect(wil, NULL);
339
	mutex_unlock(&wil->mutex);
340 341 342 343 344
	wmi_event_flush(wil);
	destroy_workqueue(wil->wmi_wq_conn);
	destroy_workqueue(wil->wmi_wq);
}

V
Vladimir Kondratiev 已提交
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
/* target operations */
/* register read */
#define R(a) ioread32(wil->csr + HOSTADDR(a))
/* register write. wmb() to make sure it is completed */
#define W(a, v) do { iowrite32(v, wil->csr + HOSTADDR(a)); wmb(); } while (0)
/* register set = read, OR, write */
#define S(a, v) W(a, R(a) | v)
/* register clear = read, AND with inverted, write */
#define C(a, v) W(a, R(a) & ~v)

static inline void wil_halt_cpu(struct wil6210_priv *wil)
{
	W(RGF_USER_USER_CPU_0, BIT_USER_USER_CPU_MAN_RST);
	W(RGF_USER_MAC_CPU_0,  BIT_USER_MAC_CPU_MAN_RST);
}

static inline void wil_release_cpu(struct wil6210_priv *wil)
{
	/* Start CPU */
	W(RGF_USER_USER_CPU_0, 1);
}

367
static int wil_target_reset(struct wil6210_priv *wil)
368
{
V
Vladimir Kondratiev 已提交
369
	int delay = 0;
370
	u32 hw_state;
371
	u32 rev_id;
372
	bool is_sparrow = (wil->board->board == WIL_BOARD_SPARROW);
373

374
	wil_dbg_misc(wil, "Resetting \"%s\"...\n", wil->board->name);
375

376
	wil->hw_version = R(RGF_USER_FW_REV_ID);
377
	rev_id = wil->hw_version & 0xff;
378 379 380

	/* Clear MAC link up */
	S(RGF_HP_CTRL, BIT(15));
V
Vladimir Kondratiev 已提交
381 382 383 384 385
	S(RGF_USER_CLKS_CTL_SW_RST_MASK_0, BIT_HPAL_PERST_FROM_PAD);
	S(RGF_USER_CLKS_CTL_SW_RST_MASK_0, BIT_CAR_PERST_RST);

	wil_halt_cpu(wil);
	C(RGF_USER_CLKS_CTL_0, BIT_USER_CLKS_CAR_AHB_SW_SEL); /* 40 MHz */
386

387 388
	if (is_sparrow) {
		W(RGF_USER_CLKS_CTL_EXT_SW_RST_VEC_0, 0x3ff81f);
V
Vladimir Kondratiev 已提交
389
		W(RGF_USER_CLKS_CTL_EXT_SW_RST_VEC_1, 0xf);
390 391
	}

392 393
	W(RGF_USER_CLKS_CTL_SW_RST_VEC_2, 0xFE000000);
	W(RGF_USER_CLKS_CTL_SW_RST_VEC_1, 0x0000003F);
V
Vladimir Kondratiev 已提交
394 395
	W(RGF_USER_CLKS_CTL_SW_RST_VEC_3, is_sparrow ? 0x000000f0 : 0x00000170);
	W(RGF_USER_CLKS_CTL_SW_RST_VEC_0, 0xFFE7FE00);
396

397 398
	if (is_sparrow) {
		W(RGF_USER_CLKS_CTL_EXT_SW_RST_VEC_0, 0x0);
V
Vladimir Kondratiev 已提交
399
		W(RGF_USER_CLKS_CTL_EXT_SW_RST_VEC_1, 0x0);
400 401
	}

402 403 404 405 406
	W(RGF_USER_CLKS_CTL_SW_RST_VEC_3, 0);
	W(RGF_USER_CLKS_CTL_SW_RST_VEC_2, 0);
	W(RGF_USER_CLKS_CTL_SW_RST_VEC_1, 0);
	W(RGF_USER_CLKS_CTL_SW_RST_VEC_0, 0);

407 408 409
	if (is_sparrow) {
		W(RGF_USER_CLKS_CTL_SW_RST_VEC_3, 0x00000003);
		/* reset A2 PCIE AHB */
410
		W(RGF_USER_CLKS_CTL_SW_RST_VEC_2, 0x00008000);
411 412 413 414 415 416 417 418 419
	} else {
		W(RGF_USER_CLKS_CTL_SW_RST_VEC_3, 0x00000001);
		if (rev_id == 1) {
			/* reset A1 BOTH PCIE AHB & PCIE RGF */
			W(RGF_USER_CLKS_CTL_SW_RST_VEC_2, 0x00000080);
		} else {
			W(RGF_PCIE_LOS_COUNTER_CTL, BIT(6) | BIT(8));
			W(RGF_USER_CLKS_CTL_SW_RST_VEC_2, 0x00008000);
		}
420
	}
421 422

	/* TODO: check order here!!! Erez code is different */
423 424
	W(RGF_USER_CLKS_CTL_SW_RST_VEC_0, 0);

425
	/* wait until device ready. typical time is 200..250 msec */
426
	do {
427
		msleep(RST_DELAY);
428
		hw_state = R(RGF_USER_HW_MACHINE_STATE);
429
		if (delay++ > RST_COUNT) {
430 431
			wil_err(wil, "Reset not completed, hw_state 0x%08x\n",
				hw_state);
432
			return -ETIME;
433
		}
434
	} while (hw_state != HW_MACHINE_BOOT_DONE);
435

436 437
	/* TODO: Erez check rev_id != 1 */
	if (!is_sparrow && (rev_id != 1))
438
		W(RGF_PCIE_LOS_COUNTER_CTL, BIT(8));
439

440 441
	C(RGF_USER_CLKS_CTL_0, BIT_USER_CLKS_RST_PWGD);

442
	wil_dbg_misc(wil, "Reset completed in %d ms\n", delay * RST_DELAY);
443
	return 0;
V
Vladimir Kondratiev 已提交
444
}
445

V
Vladimir Kondratiev 已提交
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
/**
 * wil_set_itr_trsh: - apply interrupt coalescing params
 */
void wil_set_itr_trsh(struct wil6210_priv *wil)
{
	/* disable, use usec resolution */
	W(RGF_DMA_ITR_CNT_CRL, BIT_DMA_ITR_CNT_CRL_EXT_TICK);

	/* disable interrupt moderation for monitor
	 * to get better timestamp precision
	 */
	if (wil->wdev->iftype == NL80211_IFTYPE_MONITOR)
		return;

	wil_info(wil, "set ITR_TRSH = %d usec\n", wil->itr_trsh);
	W(RGF_DMA_ITR_CNT_TRSH, wil->itr_trsh);
	W(RGF_DMA_ITR_CNT_CRL, BIT_DMA_ITR_CNT_CRL_EN |
	  BIT_DMA_ITR_CNT_CRL_EXT_TICK); /* start it */
}

466
#undef R
467 468
#undef W
#undef S
469
#undef C
470 471 472 473 474 475 476 477 478 479 480 481 482 483

void wil_mbox_ring_le2cpus(struct wil6210_mbox_ring *r)
{
	le32_to_cpus(&r->base);
	le16_to_cpus(&r->entry_size);
	le16_to_cpus(&r->size);
	le32_to_cpus(&r->tail);
	le32_to_cpus(&r->head);
}

static int wil_wait_for_fw_ready(struct wil6210_priv *wil)
{
	ulong to = msecs_to_jiffies(1000);
	ulong left = wait_for_completion_timeout(&wil->wmi_ready, to);
484

485 486 487 488
	if (0 == left) {
		wil_err(wil, "Firmware not ready\n");
		return -ETIME;
	} else {
489 490
		wil_info(wil, "FW ready after %d ms. HW version 0x%08x\n",
			 jiffies_to_msecs(to-left), wil->hw_version);
491 492 493 494 495 496 497 498 499 500 501 502 503
	}
	return 0;
}

/*
 * We reset all the structures, and we reset the UMAC.
 * After calling this routine, you're expected to reload
 * the firmware.
 */
int wil_reset(struct wil6210_priv *wil)
{
	int rc;

504 505
	wil_dbg_misc(wil, "%s()\n", __func__);

506
	WARN_ON(!mutex_is_locked(&wil->mutex));
507
	WARN_ON(test_bit(wil_status_napi_en, &wil->status));
508 509 510 511

	cancel_work_sync(&wil->disconnect_worker);
	wil6210_disconnect(wil, NULL);

512 513
	wil->status = 0; /* prevent NAPI from being scheduled */

V
Vladimir Kondratiev 已提交
514 515 516
	if (wil->scan_request) {
		wil_dbg_misc(wil, "Abort scan_request 0x%p\n",
			     wil->scan_request);
517
		del_timer_sync(&wil->scan_timer);
V
Vladimir Kondratiev 已提交
518 519 520 521
		cfg80211_scan_done(wil->scan_request, true);
		wil->scan_request = NULL;
	}

522
	wil_mask_irq(wil);
523

524 525 526
	wmi_event_flush(wil);

	flush_workqueue(wil->wmi_wq_conn);
527
	flush_workqueue(wil->wmi_wq);
528

529
	rc = wil_target_reset(wil);
530
	wil_rx_fini(wil);
531 532 533
	if (rc)
		return rc;

V
Vladimir Kondratiev 已提交
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
	if (!no_fw_load) {
		wil_info(wil, "Use firmware <%s>\n", WIL_FW_NAME);
		wil_halt_cpu(wil);
		/* Loading f/w from the file */
		rc = wil_request_firmware(wil, WIL_FW_NAME);
		if (rc)
			return rc;

		/* clear any interrupts which on-card-firmware may have set */
		wil6210_clear_irq(wil);
		{ /* CAF_ICR - clear and mask */
			u32 a = HOSTADDR(RGF_CAF_ICR) +
				offsetof(struct RGF_ICR, ICR);
			u32 m = HOSTADDR(RGF_CAF_ICR) +
				offsetof(struct RGF_ICR, IMV);
			u32 icr = ioread32(wil->csr + a);

			iowrite32(icr, wil->csr + a); /* W1C */
			iowrite32(~0, wil->csr + m);
			wmb(); /* wait for completion */
		}
		wil_release_cpu(wil);
	} else {
		wil_info(wil, "Use firmware from on-card flash\n");
	}
559

560 561
	/* init after reset */
	wil->pending_connect_cid = -1;
562
	reinit_completion(&wil->wmi_ready);
563
	reinit_completion(&wil->wmi_call);
564

565
	wil_unmask_irq(wil);
566 567 568 569 570 571 572

	/* we just started MAC, wait for FW ready */
	rc = wil_wait_for_fw_ready(wil);

	return rc;
}

V
Vladimir Kondratiev 已提交
573 574 575 576 577
void wil_fw_error_recovery(struct wil6210_priv *wil)
{
	wil_dbg_misc(wil, "starting fw error recovery\n");
	schedule_work(&wil->fw_error_worker);
}
578 579 580 581 582

void wil_link_on(struct wil6210_priv *wil)
{
	struct net_device *ndev = wil_to_ndev(wil);

583
	wil_dbg_misc(wil, "%s()\n", __func__);
584 585

	netif_carrier_on(ndev);
586
	wil_dbg_misc(wil, "netif_tx_wake : link on\n");
587 588 589 590 591 592 593
	netif_tx_wake_all_queues(ndev);
}

void wil_link_off(struct wil6210_priv *wil)
{
	struct net_device *ndev = wil_to_ndev(wil);

594
	wil_dbg_misc(wil, "%s()\n", __func__);
595 596

	netif_tx_stop_all_queues(ndev);
597
	wil_dbg_misc(wil, "netif_tx_stop : link off\n");
598 599 600
	netif_carrier_off(ndev);
}

601
int __wil_up(struct wil6210_priv *wil)
602 603 604 605 606
{
	struct net_device *ndev = wil_to_ndev(wil);
	struct wireless_dev *wdev = wil->wdev;
	int rc;

607 608
	WARN_ON(!mutex_is_locked(&wil->mutex));

609 610 611 612
	rc = wil_reset(wil);
	if (rc)
		return rc;

613 614 615 616 617
	/* Rx VRING. After MAC and beacon */
	rc = wil_rx_init(wil);
	if (rc)
		return rc;

618 619
	switch (wdev->iftype) {
	case NL80211_IFTYPE_STATION:
620
		wil_dbg_misc(wil, "type: STATION\n");
621 622 623
		ndev->type = ARPHRD_ETHER;
		break;
	case NL80211_IFTYPE_AP:
624
		wil_dbg_misc(wil, "type: AP\n");
625 626 627
		ndev->type = ARPHRD_ETHER;
		break;
	case NL80211_IFTYPE_P2P_CLIENT:
628
		wil_dbg_misc(wil, "type: P2P_CLIENT\n");
629 630 631
		ndev->type = ARPHRD_ETHER;
		break;
	case NL80211_IFTYPE_P2P_GO:
632
		wil_dbg_misc(wil, "type: P2P_GO\n");
633 634 635
		ndev->type = ARPHRD_ETHER;
		break;
	case NL80211_IFTYPE_MONITOR:
636
		wil_dbg_misc(wil, "type: Monitor\n");
637 638 639 640 641 642 643 644 645 646
		ndev->type = ARPHRD_IEEE80211_RADIOTAP;
		/* ARPHRD_IEEE80211 or ARPHRD_IEEE80211_RADIOTAP ? */
		break;
	default:
		return -EOPNOTSUPP;
	}

	/* MAC address - pre-requisite for other commands */
	wmi_set_mac_address(wil, ndev->dev_addr);

647
	wil_dbg_misc(wil, "NAPI enable\n");
V
Vladimir Kondratiev 已提交
648 649
	napi_enable(&wil->napi_rx);
	napi_enable(&wil->napi_tx);
650
	set_bit(wil_status_napi_en, &wil->status);
V
Vladimir Kondratiev 已提交
651

652 653 654 655
	if (wil->platform_ops.bus_request)
		wil->platform_ops.bus_request(wil->platform_handle,
					      WIL_MAX_BUS_REQUEST_KBPS);

656 657 658 659 660 661 662
	return 0;
}

int wil_up(struct wil6210_priv *wil)
{
	int rc;

663 664
	wil_dbg_misc(wil, "%s()\n", __func__);

665 666 667 668 669 670 671
	mutex_lock(&wil->mutex);
	rc = __wil_up(wil);
	mutex_unlock(&wil->mutex);

	return rc;
}

672
int __wil_down(struct wil6210_priv *wil)
673
{
674 675 676
	int iter = WAIT_FOR_DISCONNECT_TIMEOUT_MS /
			WAIT_FOR_DISCONNECT_INTERVAL_MS;

677 678
	WARN_ON(!mutex_is_locked(&wil->mutex));

679 680 681
	if (wil->platform_ops.bus_request)
		wil->platform_ops.bus_request(wil->platform_handle, 0);

682 683 684 685 686 687 688
	wil_disable_irq(wil);
	if (test_and_clear_bit(wil_status_napi_en, &wil->status)) {
		napi_disable(&wil->napi_rx);
		napi_disable(&wil->napi_tx);
		wil_dbg_misc(wil, "NAPI disable\n");
	}
	wil_enable_irq(wil);
V
Vladimir Kondratiev 已提交
689

690
	if (wil->scan_request) {
691 692
		wil_dbg_misc(wil, "Abort scan_request 0x%p\n",
			     wil->scan_request);
693
		del_timer_sync(&wil->scan_timer);
694 695 696 697
		cfg80211_scan_done(wil->scan_request, true);
		wil->scan_request = NULL;
	}

698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
	if (test_bit(wil_status_fwconnected, &wil->status) ||
	    test_bit(wil_status_fwconnecting, &wil->status))
		wmi_send(wil, WMI_DISCONNECT_CMDID, NULL, 0);

	/* make sure wil is idle (not connected) */
	mutex_unlock(&wil->mutex);
	while (iter--) {
		int idle = !test_bit(wil_status_fwconnected, &wil->status) &&
			   !test_bit(wil_status_fwconnecting, &wil->status);
		if (idle)
			break;
		msleep(WAIT_FOR_DISCONNECT_INTERVAL_MS);
	}
	mutex_lock(&wil->mutex);

	if (!iter)
		wil_err(wil, "timeout waiting for idle FW/HW\n");

716 717 718 719 720 721 722 723 724
	wil_rx_fini(wil);

	return 0;
}

int wil_down(struct wil6210_priv *wil)
{
	int rc;

725 726
	wil_dbg_misc(wil, "%s()\n", __func__);

727 728 729 730 731 732
	mutex_lock(&wil->mutex);
	rc = __wil_down(wil);
	mutex_unlock(&wil->mutex);

	return rc;
}
733 734 735 736 737 738 739 740

int wil_find_cid(struct wil6210_priv *wil, const u8 *mac)
{
	int i;
	int rc = -ENOENT;

	for (i = 0; i < ARRAY_SIZE(wil->sta); i++) {
		if ((wil->sta[i].status != wil_sta_unused) &&
741
		    ether_addr_equal(wil->sta[i].addr, mac)) {
742 743 744 745 746 747 748
			rc = i;
			break;
		}
	}

	return rc;
}