pcie.c 84.4 KB
Newer Older
1 2 3
/*
 * Marvell Wireless LAN device driver: PCIE specific handling
 *
X
Xinming Hu 已提交
4
 * Copyright (C) 2011-2014, Marvell International Ltd.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
 *
 * This software file (the "File") is distributed by Marvell International
 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
 * (the "License").  You may use, redistribute and/or modify this File in
 * accordance with the terms and conditions of the License, a copy of which
 * is available by writing to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
 *
 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
 * ARE EXPRESSLY DISCLAIMED.  The License provides additional details about
 * this warranty disclaimer.
 */

#include <linux/firmware.h>

#include "decl.h"
#include "ioctl.h"
#include "util.h"
#include "fw.h"
#include "main.h"
#include "wmm.h"
#include "11n.h"
#include "pcie.h"

#define PCIE_VERSION	"1.0"
#define DRV_NAME        "Marvell mwifiex PCIe"

static u8 user_rmmod;

static struct mwifiex_if_ops pcie_ops;

38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
static const struct of_device_id mwifiex_pcie_of_match_table[] = {
	{ .compatible = "pci11ab,2b42" },
	{ .compatible = "pci1b4b,2b42" },
	{ }
};

static int mwifiex_pcie_probe_of(struct device *dev)
{
	if (!of_match_node(mwifiex_pcie_of_match_table, dev->of_node)) {
		dev_err(dev, "required compatible string missing\n");
		return -EINVAL;
	}

	return 0;
}

54 55
static int
mwifiex_map_pci_memory(struct mwifiex_adapter *adapter, struct sk_buff *skb,
56
		       size_t size, int flags)
57
{
58
	struct pcie_service_card *card = adapter->card;
59
	struct mwifiex_dma_mapping mapping;
60

61 62
	mapping.addr = pci_map_single(card->dev, skb->data, size, flags);
	if (pci_dma_mapping_error(card->dev, mapping.addr)) {
63
		mwifiex_dbg(adapter, ERROR, "failed to map pci memory!\n");
64 65
		return -1;
	}
66
	mapping.len = size;
67
	mwifiex_store_mapping(skb, &mapping);
68
	return 0;
69 70
}

71 72 73 74 75 76
static void mwifiex_unmap_pci_memory(struct mwifiex_adapter *adapter,
				     struct sk_buff *skb, int flags)
{
	struct pcie_service_card *card = adapter->card;
	struct mwifiex_dma_mapping mapping;

77
	mwifiex_get_mapping(skb, &mapping);
78 79 80
	pci_unmap_single(card->dev, mapping.addr, mapping.len, flags);
}

81 82 83 84 85 86 87
/*
 * This function reads sleep cookie and checks if FW is ready
 */
static bool mwifiex_pcie_ok_to_access_hw(struct mwifiex_adapter *adapter)
{
	u32 *cookie_addr;
	struct pcie_service_card *card = adapter->card;
88 89 90 91
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;

	if (!reg->sleep_cookie)
		return true;
92

93 94
	if (card->sleep_cookie_vbase) {
		cookie_addr = (u32 *)card->sleep_cookie_vbase;
95 96 97
		mwifiex_dbg(adapter, INFO,
			    "info: ACCESS_HW: sleep cookie=0x%x\n",
			    *cookie_addr);
98 99 100 101 102 103 104
		if (*cookie_addr == FW_AWAKE_COOKIE)
			return true;
	}

	return false;
}

105
#ifdef CONFIG_PM_SLEEP
106 107 108 109 110 111 112 113
/*
 * Kernel needs to suspend all functions separately. Therefore all
 * registered functions must have drivers with suspend and resume
 * methods. Failing that the kernel simply removes the whole card.
 *
 * If already not suspended, this function allocates and sends a host
 * sleep activate request to the firmware and turns off the traffic.
 */
114
static int mwifiex_pcie_suspend(struct device *dev)
115 116 117
{
	struct mwifiex_adapter *adapter;
	struct pcie_service_card *card;
118
	struct pci_dev *pdev = to_pci_dev(dev);
119

120 121 122
	card = pci_get_drvdata(pdev);
	if (!card || !card->adapter) {
		pr_err("Card or adapter structure is not valid\n");
123 124 125 126
		return 0;
	}

	adapter = card->adapter;
127
	mwifiex_enable_wake(adapter);
128

129 130 131 132 133 134 135 136
	/* Enable the Host Sleep */
	if (!mwifiex_enable_hs(adapter)) {
		mwifiex_dbg(adapter, ERROR,
			    "cmd: failed to suspend\n");
		adapter->hs_enabling = false;
		return -EFAULT;
	}

137
	flush_workqueue(adapter->workqueue);
138 139 140

	/* Indicate device suspended */
	adapter->is_suspended = true;
141
	adapter->hs_enabling = false;
142 143 144 145 146 147 148 149 150 151 152 153

	return 0;
}

/*
 * Kernel needs to suspend all functions separately. Therefore all
 * registered functions must have drivers with suspend and resume
 * methods. Failing that the kernel simply removes the whole card.
 *
 * If already not resumed, this function turns on the traffic and
 * sends a host sleep cancel request to the firmware.
 */
154
static int mwifiex_pcie_resume(struct device *dev)
155 156 157
{
	struct mwifiex_adapter *adapter;
	struct pcie_service_card *card;
158
	struct pci_dev *pdev = to_pci_dev(dev);
159

160 161 162
	card = pci_get_drvdata(pdev);
	if (!card || !card->adapter) {
		dev_err(dev, "Card or adapter structure is not valid\n");
163 164 165 166 167 168
		return 0;
	}

	adapter = card->adapter;

	if (!adapter->is_suspended) {
169 170
		mwifiex_dbg(adapter, WARN,
			    "Device already resumed\n");
171 172 173 174 175 176 177
		return 0;
	}

	adapter->is_suspended = false;

	mwifiex_cancel_hs(mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA),
			  MWIFIEX_ASYNC_CMD);
178
	mwifiex_disable_wake(adapter);
179 180 181

	return 0;
}
182
#endif
183

184 185 186 187 188 189 190 191 192 193
/*
 * This function probes an mwifiex device and registers it. It allocates
 * the card structure, enables PCIE function number and initiates the
 * device registration and initialization procedure by adding a logical
 * interface.
 */
static int mwifiex_pcie_probe(struct pci_dev *pdev,
					const struct pci_device_id *ent)
{
	struct pcie_service_card *card;
194
	int ret;
195 196

	pr_debug("info: vendor=0x%4.04X device=0x%4.04X rev=%d\n",
197
		 pdev->vendor, pdev->device, pdev->revision);
198

199
	card = devm_kzalloc(&pdev->dev, sizeof(*card), GFP_KERNEL);
200
	if (!card)
201 202
		return -ENOMEM;

203 204
	init_completion(&card->fw_done);

205 206
	card->dev = pdev;

207 208 209 210
	if (ent->driver_data) {
		struct mwifiex_pcie_device *data = (void *)ent->driver_data;
		card->pcie.reg = data->reg;
		card->pcie.blksz_fw_dl = data->blksz_fw_dl;
211
		card->pcie.tx_buf_size = data->tx_buf_size;
212
		card->pcie.can_dump_fw = data->can_dump_fw;
213 214
		card->pcie.mem_type_mapping_tbl = data->mem_type_mapping_tbl;
		card->pcie.num_mem_types = data->num_mem_types;
215
		card->pcie.can_ext_scan = data->can_ext_scan;
216 217
	}

218 219 220 221 222 223 224
	/* device tree node parsing and platform specific configuration*/
	if (pdev->dev.of_node) {
		ret = mwifiex_pcie_probe_of(&pdev->dev);
		if (ret)
			return ret;
	}

225
	if (mwifiex_add_card(card, &card->fw_done, &pcie_ops,
226
			     MWIFIEX_PCIE, &pdev->dev)) {
227 228 229 230 231 232 233 234 235 236 237 238 239 240
		pr_err("%s failed\n", __func__);
		return -1;
	}

	return 0;
}

/*
 * This function removes the interface and frees up the card structure.
 */
static void mwifiex_pcie_remove(struct pci_dev *pdev)
{
	struct pcie_service_card *card;
	struct mwifiex_adapter *adapter;
241
	struct mwifiex_private *priv;
242 243 244 245 246

	card = pci_get_drvdata(pdev);
	if (!card)
		return;

247 248
	wait_for_completion(&card->fw_done);

249 250 251 252
	adapter = card->adapter;
	if (!adapter || !adapter->priv_num)
		return;

253
	if (user_rmmod && !adapter->mfg_mode) {
254
		mwifiex_deauthenticate_all(adapter);
255

256
		priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
257

258 259 260
		mwifiex_disable_auto_ds(priv);

		mwifiex_init_shutdown_fw(priv, MWIFIEX_FUNC_SHUTDOWN);
261 262
	}

263
	mwifiex_remove_card(adapter);
264 265
}

266 267 268 269 270 271 272 273
static void mwifiex_pcie_shutdown(struct pci_dev *pdev)
{
	user_rmmod = 1;
	mwifiex_pcie_remove(pdev);

	return;
}

274
static const struct pci_device_id mwifiex_ids[] = {
275 276 277
	{
		PCIE_VENDOR_ID_MARVELL, PCIE_DEVICE_ID_MARVELL_88W8766P,
		PCI_ANY_ID, PCI_ANY_ID, 0, 0,
278
		.driver_data = (unsigned long)&mwifiex_pcie8766,
279
	},
A
Avinash Patil 已提交
280 281 282
	{
		PCIE_VENDOR_ID_MARVELL, PCIE_DEVICE_ID_MARVELL_88W8897,
		PCI_ANY_ID, PCI_ANY_ID, 0, 0,
283 284 285 286 287 288
		.driver_data = (unsigned long)&mwifiex_pcie8897,
	},
	{
		PCIE_VENDOR_ID_MARVELL, PCIE_DEVICE_ID_MARVELL_88W8997,
		PCI_ANY_ID, PCI_ANY_ID, 0, 0,
		.driver_data = (unsigned long)&mwifiex_pcie8997,
A
Avinash Patil 已提交
289
	},
290 291 292 293 294
	{
		PCIE_VENDOR_ID_V2_MARVELL, PCIE_DEVICE_ID_MARVELL_88W8997,
		PCI_ANY_ID, PCI_ANY_ID, 0, 0,
		.driver_data = (unsigned long)&mwifiex_pcie8997,
	},
295 296 297 298 299
	{},
};

MODULE_DEVICE_TABLE(pci, mwifiex_ids);

300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
static void mwifiex_pcie_reset_notify(struct pci_dev *pdev, bool prepare)
{
	struct mwifiex_adapter *adapter;
	struct pcie_service_card *card;

	if (!pdev) {
		pr_err("%s: PCIe device is not specified\n", __func__);
		return;
	}

	card = (struct pcie_service_card *)pci_get_drvdata(pdev);
	if (!card || !card->adapter) {
		pr_err("%s: Card or adapter structure is not valid (%ld)\n",
		       __func__, (long)card);
		return;
	}

	adapter = card->adapter;
	mwifiex_dbg(adapter, INFO,
		    "%s: vendor=0x%4.04x device=0x%4.04x rev=%d %s\n",
		    __func__, pdev->vendor, pdev->device,
		    pdev->revision,
		    prepare ? "Pre-FLR" : "Post-FLR");

	if (prepare) {
		/* Kernel would be performing FLR after this notification.
		 * Cleanup all software without cleaning anything related to
		 * PCIe and HW.
		 */
		mwifiex_do_flr(adapter, prepare);
		adapter->surprise_removed = true;
	} else {
		/* Kernel stores and restores PCIe function context before and
		 * after performing FLR respectively. Reconfigure the software
		 * and firmware including firmware redownload
		 */
		adapter->surprise_removed = false;
		mwifiex_do_flr(adapter, prepare);
	}
	mwifiex_dbg(adapter, INFO, "%s, successful\n", __func__);
}

static const struct pci_error_handlers mwifiex_pcie_err_handler[] = {
		{ .reset_notify = mwifiex_pcie_reset_notify, },
};

346 347 348 349 350 351
#ifdef CONFIG_PM_SLEEP
/* Power Management Hooks */
static SIMPLE_DEV_PM_OPS(mwifiex_pcie_pm_ops, mwifiex_pcie_suspend,
				mwifiex_pcie_resume);
#endif

352 353 354 355 356 357
/* PCI Device Driver */
static struct pci_driver __refdata mwifiex_pcie = {
	.name     = "mwifiex_pcie",
	.id_table = mwifiex_ids,
	.probe    = mwifiex_pcie_probe,
	.remove   = mwifiex_pcie_remove,
358 359 360 361
#ifdef CONFIG_PM_SLEEP
	.driver   = {
		.pm = &mwifiex_pcie_pm_ops,
	},
362
#endif
363
	.shutdown = mwifiex_pcie_shutdown,
364
	.err_handler = mwifiex_pcie_err_handler,
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
};

/*
 * This function writes data into PCIE card register.
 */
static int mwifiex_write_reg(struct mwifiex_adapter *adapter, int reg, u32 data)
{
	struct pcie_service_card *card = adapter->card;

	iowrite32(data, card->pci_mmap1 + reg);

	return 0;
}

/*
 * This function reads data from PCIE card register.
 */
static int mwifiex_read_reg(struct mwifiex_adapter *adapter, int reg, u32 *data)
{
	struct pcie_service_card *card = adapter->card;

	*data = ioread32(card->pci_mmap1 + reg);
387 388
	if (*data == 0xffffffff)
		return 0xffffffff;
389 390 391 392

	return 0;
}

393 394 395 396 397 398 399 400 401 402 403
/* This function reads u8 data from PCIE card register. */
static int mwifiex_read_reg_byte(struct mwifiex_adapter *adapter,
				 int reg, u8 *data)
{
	struct pcie_service_card *card = adapter->card;

	*data = ioread8(card->pci_mmap1 + reg);

	return 0;
}

404
/*
405
 * This function adds delay loop to ensure FW is awake before proceeding.
406
 */
407
static void mwifiex_pcie_dev_wakeup_delay(struct mwifiex_adapter *adapter)
408 409 410
{
	int i = 0;

411
	while (mwifiex_pcie_ok_to_access_hw(adapter)) {
412
		i++;
413
		usleep_range(10, 20);
414
		/* 50ms max wait */
415
		if (i == 5000)
416 417 418
			break;
	}

419 420 421
	return;
}

422 423 424 425 426 427 428 429 430 431 432 433
static void mwifiex_delay_for_sleep_cookie(struct mwifiex_adapter *adapter,
					   u32 max_delay_loop_cnt)
{
	struct pcie_service_card *card = adapter->card;
	u8 *buffer;
	u32 sleep_cookie, count;

	for (count = 0; count < max_delay_loop_cnt; count++) {
		buffer = card->cmdrsp_buf->data - INTF_HEADER_LEN;
		sleep_cookie = *(u32 *)buffer;

		if (sleep_cookie == MWIFIEX_DEF_SLEEP_COOKIE) {
434 435
			mwifiex_dbg(adapter, INFO,
				    "sleep cookie found at count %d\n", count);
436 437 438 439 440 441
			break;
		}
		usleep_range(20, 30);
	}

	if (count >= max_delay_loop_cnt)
442 443
		mwifiex_dbg(adapter, INFO,
			    "max count reached while accessing sleep cookie\n");
444 445
}

446 447 448 449 450 451 452
/* This function wakes up the card by reading fw_status register. */
static int mwifiex_pm_wakeup_card(struct mwifiex_adapter *adapter)
{
	u32 fw_status;
	struct pcie_service_card *card = adapter->card;
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;

453 454
	mwifiex_dbg(adapter, EVENT,
		    "event: Wakeup device...\n");
455

456 457 458 459 460
	if (reg->sleep_cookie)
		mwifiex_pcie_dev_wakeup_delay(adapter);

	/* Reading fw_status register will wakeup device */
	if (mwifiex_read_reg(adapter, reg->fw_status, &fw_status)) {
461 462
		mwifiex_dbg(adapter, ERROR,
			    "Reading fw_status register failed\n");
463 464 465
		return -1;
	}

466 467
	if (reg->sleep_cookie) {
		mwifiex_pcie_dev_wakeup_delay(adapter);
468 469
		mwifiex_dbg(adapter, INFO,
			    "PCIE wakeup: Setting PS_STATE_AWAKE\n");
470 471
		adapter->ps_state = PS_STATE_AWAKE;
	}
472 473 474 475 476 477 478 479 480 481 482

	return 0;
}

/*
 * This function is called after the card has woken up.
 *
 * The card configuration register is reset.
 */
static int mwifiex_pm_wakeup_card_complete(struct mwifiex_adapter *adapter)
{
483 484
	mwifiex_dbg(adapter, CMD,
		    "cmd: Wakeup device completed\n");
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499

	return 0;
}

/*
 * This function disables the host interrupt.
 *
 * The host interrupt mask is read, the disable bit is reset and
 * written back to the card host interrupt mask register.
 */
static int mwifiex_pcie_disable_host_int(struct mwifiex_adapter *adapter)
{
	if (mwifiex_pcie_ok_to_access_hw(adapter)) {
		if (mwifiex_write_reg(adapter, PCIE_HOST_INT_MASK,
				      0x00000000)) {
500 501
			mwifiex_dbg(adapter, ERROR,
				    "Disable host interrupt failed\n");
502 503 504 505
			return -1;
		}
	}

506
	atomic_set(&adapter->tx_hw_pending, 0);
507 508 509
	return 0;
}

510 511 512 513 514
static void mwifiex_pcie_disable_host_int_noerr(struct mwifiex_adapter *adapter)
{
	WARN_ON(mwifiex_pcie_disable_host_int(adapter));
}

515 516 517 518 519 520 521 522 523 524 525 526
/*
 * This function enables the host interrupt.
 *
 * The host interrupt enable mask is written to the card
 * host interrupt mask register.
 */
static int mwifiex_pcie_enable_host_int(struct mwifiex_adapter *adapter)
{
	if (mwifiex_pcie_ok_to_access_hw(adapter)) {
		/* Simply write the mask to the register */
		if (mwifiex_write_reg(adapter, PCIE_HOST_INT_MASK,
				      HOST_INTR_MASK)) {
527 528
			mwifiex_dbg(adapter, ERROR,
				    "Enable host interrupt failed\n");
529 530 531 532 533 534 535 536
			return -1;
		}
	}

	return 0;
}

/*
537 538 539 540 541
 * This function initializes TX buffer ring descriptors
 */
static int mwifiex_init_txq_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
A
Avinash Patil 已提交
542
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
543
	struct mwifiex_pcie_buf_desc *desc;
A
Avinash Patil 已提交
544
	struct mwifiex_pfu_buf_desc *desc2;
545 546 547 548
	int i;

	for (i = 0; i < MWIFIEX_MAX_TXRX_BD; i++) {
		card->tx_buf_list[i] = NULL;
A
Avinash Patil 已提交
549 550 551 552 553 554 555 556 557 558 559
		if (reg->pfu_enabled) {
			card->txbd_ring[i] = (void *)card->txbd_ring_vbase +
					     (sizeof(*desc2) * i);
			desc2 = card->txbd_ring[i];
			memset(desc2, 0, sizeof(*desc2));
		} else {
			card->txbd_ring[i] = (void *)card->txbd_ring_vbase +
					     (sizeof(*desc) * i);
			desc = card->txbd_ring[i];
			memset(desc, 0, sizeof(*desc));
		}
560 561 562 563 564 565 566 567 568 569 570 571
	}

	return 0;
}

/* This function initializes RX buffer ring descriptors. Each SKB is allocated
 * here and after mapping PCI memory, its physical address is assigned to
 * PCIE Rx buffer descriptor's physical address.
 */
static int mwifiex_init_rxq_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
A
Avinash Patil 已提交
572
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
573 574
	struct sk_buff *skb;
	struct mwifiex_pcie_buf_desc *desc;
A
Avinash Patil 已提交
575
	struct mwifiex_pfu_buf_desc *desc2;
576 577 578 579 580
	dma_addr_t buf_pa;
	int i;

	for (i = 0; i < MWIFIEX_MAX_TXRX_BD; i++) {
		/* Allocate skb here so that firmware can DMA data from it */
581
		skb = mwifiex_alloc_dma_align_buf(MWIFIEX_RX_DATA_BUF_SIZE,
582
						  GFP_KERNEL);
583
		if (!skb) {
584 585
			mwifiex_dbg(adapter, ERROR,
				    "Unable to allocate skb for RX ring.\n");
586 587 588 589 590 591 592 593 594
			kfree(card->rxbd_ring_vbase);
			return -ENOMEM;
		}

		if (mwifiex_map_pci_memory(adapter, skb,
					   MWIFIEX_RX_DATA_BUF_SIZE,
					   PCI_DMA_FROMDEVICE))
			return -1;

595
		buf_pa = MWIFIEX_SKB_DMA_ADDR(skb);
596

597 598 599 600
		mwifiex_dbg(adapter, INFO,
			    "info: RX ring: skb=%p len=%d data=%p buf_pa=%#x:%x\n",
			    skb, skb->len, skb->data, (u32)buf_pa,
			    (u32)((u64)buf_pa >> 32));
601 602

		card->rx_buf_list[i] = skb;
A
Avinash Patil 已提交
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619
		if (reg->pfu_enabled) {
			card->rxbd_ring[i] = (void *)card->rxbd_ring_vbase +
					     (sizeof(*desc2) * i);
			desc2 = card->rxbd_ring[i];
			desc2->paddr = buf_pa;
			desc2->len = (u16)skb->len;
			desc2->frag_len = (u16)skb->len;
			desc2->flags = reg->ring_flag_eop | reg->ring_flag_sop;
			desc2->offset = 0;
		} else {
			card->rxbd_ring[i] = (void *)(card->rxbd_ring_vbase +
					     (sizeof(*desc) * i));
			desc = card->rxbd_ring[i];
			desc->paddr = buf_pa;
			desc->len = (u16)skb->len;
			desc->flags = 0;
		}
620 621 622 623 624 625 626 627 628 629 630 631
	}

	return 0;
}

/* This function initializes event buffer ring descriptors. Each SKB is
 * allocated here and after mapping PCI memory, its physical address is assigned
 * to PCIE Rx buffer descriptor's physical address
 */
static int mwifiex_pcie_init_evt_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
632
	struct mwifiex_evt_buf_desc *desc;
633 634 635 636 637 638 639 640
	struct sk_buff *skb;
	dma_addr_t buf_pa;
	int i;

	for (i = 0; i < MWIFIEX_MAX_EVT_BD; i++) {
		/* Allocate skb here so that firmware can DMA data from it */
		skb = dev_alloc_skb(MAX_EVENT_SIZE);
		if (!skb) {
641 642
			mwifiex_dbg(adapter, ERROR,
				    "Unable to allocate skb for EVENT buf.\n");
643 644 645 646 647 648 649 650 651
			kfree(card->evtbd_ring_vbase);
			return -ENOMEM;
		}
		skb_put(skb, MAX_EVENT_SIZE);

		if (mwifiex_map_pci_memory(adapter, skb, MAX_EVENT_SIZE,
					   PCI_DMA_FROMDEVICE))
			return -1;

652
		buf_pa = MWIFIEX_SKB_DMA_ADDR(skb);
653

654 655 656 657
		mwifiex_dbg(adapter, EVENT,
			    "info: EVT ring: skb=%p len=%d data=%p buf_pa=%#x:%x\n",
			    skb, skb->len, skb->data, (u32)buf_pa,
			    (u32)((u64)buf_pa >> 32));
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676

		card->evt_buf_list[i] = skb;
		card->evtbd_ring[i] = (void *)(card->evtbd_ring_vbase +
				      (sizeof(*desc) * i));
		desc = card->evtbd_ring[i];
		desc->paddr = buf_pa;
		desc->len = (u16)skb->len;
		desc->flags = 0;
	}

	return 0;
}

/* This function cleans up TX buffer rings. If any of the buffer list has valid
 * SKB address, associated SKB is freed.
 */
static void mwifiex_cleanup_txq_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
A
Avinash Patil 已提交
677
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
678 679
	struct sk_buff *skb;
	struct mwifiex_pcie_buf_desc *desc;
A
Avinash Patil 已提交
680
	struct mwifiex_pfu_buf_desc *desc2;
681 682 683
	int i;

	for (i = 0; i < MWIFIEX_MAX_TXRX_BD; i++) {
A
Avinash Patil 已提交
684 685 686 687
		if (reg->pfu_enabled) {
			desc2 = card->txbd_ring[i];
			if (card->tx_buf_list[i]) {
				skb = card->tx_buf_list[i];
688 689
				mwifiex_unmap_pci_memory(adapter, skb,
							 PCI_DMA_TODEVICE);
A
Avinash Patil 已提交
690 691 692 693 694 695 696
				dev_kfree_skb_any(skb);
			}
			memset(desc2, 0, sizeof(*desc2));
		} else {
			desc = card->txbd_ring[i];
			if (card->tx_buf_list[i]) {
				skb = card->tx_buf_list[i];
697 698
				mwifiex_unmap_pci_memory(adapter, skb,
							 PCI_DMA_TODEVICE);
A
Avinash Patil 已提交
699 700 701
				dev_kfree_skb_any(skb);
			}
			memset(desc, 0, sizeof(*desc));
702 703 704 705
		}
		card->tx_buf_list[i] = NULL;
	}

706
	atomic_set(&adapter->tx_hw_pending, 0);
707 708 709 710 711 712 713 714 715
	return;
}

/* This function cleans up RX buffer rings. If any of the buffer list has valid
 * SKB address, associated SKB is freed.
 */
static void mwifiex_cleanup_rxq_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
A
Avinash Patil 已提交
716
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
717
	struct mwifiex_pcie_buf_desc *desc;
A
Avinash Patil 已提交
718
	struct mwifiex_pfu_buf_desc *desc2;
719 720 721 722
	struct sk_buff *skb;
	int i;

	for (i = 0; i < MWIFIEX_MAX_TXRX_BD; i++) {
A
Avinash Patil 已提交
723 724 725 726
		if (reg->pfu_enabled) {
			desc2 = card->rxbd_ring[i];
			if (card->rx_buf_list[i]) {
				skb = card->rx_buf_list[i];
727 728
				mwifiex_unmap_pci_memory(adapter, skb,
							 PCI_DMA_FROMDEVICE);
A
Avinash Patil 已提交
729 730 731 732 733 734 735
				dev_kfree_skb_any(skb);
			}
			memset(desc2, 0, sizeof(*desc2));
		} else {
			desc = card->rxbd_ring[i];
			if (card->rx_buf_list[i]) {
				skb = card->rx_buf_list[i];
736 737
				mwifiex_unmap_pci_memory(adapter, skb,
							 PCI_DMA_FROMDEVICE);
A
Avinash Patil 已提交
738 739 740
				dev_kfree_skb_any(skb);
			}
			memset(desc, 0, sizeof(*desc));
741
		}
A
Avinash Patil 已提交
742
		card->rx_buf_list[i] = NULL;
743 744 745 746 747 748 749 750 751 752 753
	}

	return;
}

/* This function cleans up event buffer rings. If any of the buffer list has
 * valid SKB address, associated SKB is freed.
 */
static void mwifiex_cleanup_evt_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
754
	struct mwifiex_evt_buf_desc *desc;
755 756 757 758 759 760 761
	struct sk_buff *skb;
	int i;

	for (i = 0; i < MWIFIEX_MAX_EVT_BD; i++) {
		desc = card->evtbd_ring[i];
		if (card->evt_buf_list[i]) {
			skb = card->evt_buf_list[i];
762 763
			mwifiex_unmap_pci_memory(adapter, skb,
						 PCI_DMA_FROMDEVICE);
764 765 766 767 768 769 770 771 772 773
			dev_kfree_skb_any(skb);
		}
		card->evt_buf_list[i] = NULL;
		memset(desc, 0, sizeof(*desc));
	}

	return;
}

/* This function creates buffer descriptor ring for TX
774 775 776 777
 */
static int mwifiex_pcie_create_txbd_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
778
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
779 780 781 782 783 784 785

	/*
	 * driver maintaines the write pointer and firmware maintaines the read
	 * pointer. The write pointer starts at 0 (zero) while the read pointer
	 * starts at zero with rollover bit set
	 */
	card->txbd_wrptr = 0;
A
Avinash Patil 已提交
786 787 788 789 790

	if (reg->pfu_enabled)
		card->txbd_rdptr = 0;
	else
		card->txbd_rdptr |= reg->tx_rollover_ind;
791 792 793

	/* allocate shared memory for the BD ring and divide the same in to
	   several descriptors */
A
Avinash Patil 已提交
794 795 796 797 798 799 800
	if (reg->pfu_enabled)
		card->txbd_ring_size = sizeof(struct mwifiex_pfu_buf_desc) *
				       MWIFIEX_MAX_TXRX_BD;
	else
		card->txbd_ring_size = sizeof(struct mwifiex_pcie_buf_desc) *
				       MWIFIEX_MAX_TXRX_BD;

801 802 803
	mwifiex_dbg(adapter, INFO,
		    "info: txbd_ring: Allocating %d bytes\n",
		    card->txbd_ring_size);
804 805 806
	card->txbd_ring_vbase = pci_alloc_consistent(card->dev,
						     card->txbd_ring_size,
						     &card->txbd_ring_pbase);
807
	if (!card->txbd_ring_vbase) {
808 809 810
		mwifiex_dbg(adapter, ERROR,
			    "allocate consistent memory (%d bytes) failed!\n",
			    card->txbd_ring_size);
811
		return -ENOMEM;
812
	}
813 814 815 816 817
	mwifiex_dbg(adapter, DATA,
		    "info: txbd_ring - base: %p, pbase: %#x:%x, len: %x\n",
		    card->txbd_ring_vbase, (unsigned int)card->txbd_ring_pbase,
		    (u32)((u64)card->txbd_ring_pbase >> 32),
		    card->txbd_ring_size);
818

819
	return mwifiex_init_txq_ring(adapter);
820 821 822 823 824
}

static int mwifiex_pcie_delete_txbd_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
825
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
826

827
	mwifiex_cleanup_txq_ring(adapter);
828

829 830 831 832
	if (card->txbd_ring_vbase)
		pci_free_consistent(card->dev, card->txbd_ring_size,
				    card->txbd_ring_vbase,
				    card->txbd_ring_pbase);
833 834
	card->txbd_ring_size = 0;
	card->txbd_wrptr = 0;
835
	card->txbd_rdptr = 0 | reg->tx_rollover_ind;
836
	card->txbd_ring_vbase = NULL;
837
	card->txbd_ring_pbase = 0;
838 839 840 841 842 843 844 845 846 847

	return 0;
}

/*
 * This function creates buffer descriptor ring for RX
 */
static int mwifiex_pcie_create_rxbd_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
848
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
849 850 851 852 853 854 855

	/*
	 * driver maintaines the read pointer and firmware maintaines the write
	 * pointer. The write pointer starts at 0 (zero) while the read pointer
	 * starts at zero with rollover bit set
	 */
	card->rxbd_wrptr = 0;
856
	card->rxbd_rdptr = reg->rx_rollover_ind;
857

A
Avinash Patil 已提交
858 859 860 861 862 863 864
	if (reg->pfu_enabled)
		card->rxbd_ring_size = sizeof(struct mwifiex_pfu_buf_desc) *
				       MWIFIEX_MAX_TXRX_BD;
	else
		card->rxbd_ring_size = sizeof(struct mwifiex_pcie_buf_desc) *
				       MWIFIEX_MAX_TXRX_BD;

865 866 867
	mwifiex_dbg(adapter, INFO,
		    "info: rxbd_ring: Allocating %d bytes\n",
		    card->rxbd_ring_size);
868 869 870
	card->rxbd_ring_vbase = pci_alloc_consistent(card->dev,
						     card->rxbd_ring_size,
						     &card->rxbd_ring_pbase);
871
	if (!card->rxbd_ring_vbase) {
872 873 874
		mwifiex_dbg(adapter, ERROR,
			    "allocate consistent memory (%d bytes) failed!\n",
			    card->rxbd_ring_size);
875
		return -ENOMEM;
876 877
	}

878 879 880 881 882
	mwifiex_dbg(adapter, DATA,
		    "info: rxbd_ring - base: %p, pbase: %#x:%x, len: %#x\n",
		    card->rxbd_ring_vbase, (u32)card->rxbd_ring_pbase,
		    (u32)((u64)card->rxbd_ring_pbase >> 32),
		    card->rxbd_ring_size);
883

884
	return mwifiex_init_rxq_ring(adapter);
885 886 887 888 889 890 891 892
}

/*
 * This function deletes Buffer descriptor ring for RX
 */
static int mwifiex_pcie_delete_rxbd_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
893
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
894

895
	mwifiex_cleanup_rxq_ring(adapter);
896

897 898 899 900
	if (card->rxbd_ring_vbase)
		pci_free_consistent(card->dev, card->rxbd_ring_size,
				    card->rxbd_ring_vbase,
				    card->rxbd_ring_pbase);
901 902
	card->rxbd_ring_size = 0;
	card->rxbd_wrptr = 0;
903
	card->rxbd_rdptr = 0 | reg->rx_rollover_ind;
904
	card->rxbd_ring_vbase = NULL;
905
	card->rxbd_ring_pbase = 0;
906 907 908 909 910 911 912 913 914 915

	return 0;
}

/*
 * This function creates buffer descriptor ring for Events
 */
static int mwifiex_pcie_create_evtbd_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
916
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
917 918 919 920 921 922 923

	/*
	 * driver maintaines the read pointer and firmware maintaines the write
	 * pointer. The write pointer starts at 0 (zero) while the read pointer
	 * starts at zero with rollover bit set
	 */
	card->evtbd_wrptr = 0;
924
	card->evtbd_rdptr = reg->evt_rollover_ind;
925

926
	card->evtbd_ring_size = sizeof(struct mwifiex_evt_buf_desc) *
A
Avinash Patil 已提交
927 928
				MWIFIEX_MAX_EVT_BD;

929 930
	mwifiex_dbg(adapter, INFO,
		    "info: evtbd_ring: Allocating %d bytes\n",
931
		card->evtbd_ring_size);
932 933 934
	card->evtbd_ring_vbase = pci_alloc_consistent(card->dev,
						      card->evtbd_ring_size,
						      &card->evtbd_ring_pbase);
935
	if (!card->evtbd_ring_vbase) {
936 937 938
		mwifiex_dbg(adapter, ERROR,
			    "allocate consistent memory (%d bytes) failed!\n",
			    card->evtbd_ring_size);
939
		return -ENOMEM;
940 941
	}

942 943 944 945 946
	mwifiex_dbg(adapter, EVENT,
		    "info: CMDRSP/EVT bd_ring - base: %p pbase: %#x:%x len: %#x\n",
		    card->evtbd_ring_vbase, (u32)card->evtbd_ring_pbase,
		    (u32)((u64)card->evtbd_ring_pbase >> 32),
		    card->evtbd_ring_size);
947

948
	return mwifiex_pcie_init_evt_ring(adapter);
949 950 951 952 953 954 955 956
}

/*
 * This function deletes Buffer descriptor ring for Events
 */
static int mwifiex_pcie_delete_evtbd_ring(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
957
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
958

959
	mwifiex_cleanup_evt_ring(adapter);
960

961 962 963 964
	if (card->evtbd_ring_vbase)
		pci_free_consistent(card->dev, card->evtbd_ring_size,
				    card->evtbd_ring_vbase,
				    card->evtbd_ring_pbase);
965
	card->evtbd_wrptr = 0;
966
	card->evtbd_rdptr = 0 | reg->evt_rollover_ind;
967 968
	card->evtbd_ring_size = 0;
	card->evtbd_ring_vbase = NULL;
969
	card->evtbd_ring_pbase = 0;
970 971 972 973 974 975 976 977 978 979 980 981 982 983 984

	return 0;
}

/*
 * This function allocates a buffer for CMDRSP
 */
static int mwifiex_pcie_alloc_cmdrsp_buf(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
	struct sk_buff *skb;

	/* Allocate memory for receiving command response data */
	skb = dev_alloc_skb(MWIFIEX_UPLD_SIZE);
	if (!skb) {
985 986
		mwifiex_dbg(adapter, ERROR,
			    "Unable to allocate skb for command response data.\n");
987 988 989
		return -ENOMEM;
	}
	skb_put(skb, MWIFIEX_UPLD_SIZE);
990 991 992
	if (mwifiex_map_pci_memory(adapter, skb, MWIFIEX_UPLD_SIZE,
				   PCI_DMA_FROMDEVICE))
		return -1;
993

994
	card->cmdrsp_buf = skb;
995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010

	return 0;
}

/*
 * This function deletes a buffer for CMDRSP
 */
static int mwifiex_pcie_delete_cmdrsp_buf(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card;

	if (!adapter)
		return 0;

	card = adapter->card;

1011
	if (card && card->cmdrsp_buf) {
1012 1013
		mwifiex_unmap_pci_memory(adapter, card->cmdrsp_buf,
					 PCI_DMA_FROMDEVICE);
1014
		dev_kfree_skb_any(card->cmdrsp_buf);
1015
	}
1016

1017
	if (card && card->cmd_buf) {
1018 1019
		mwifiex_unmap_pci_memory(adapter, card->cmd_buf,
					 PCI_DMA_TODEVICE);
1020
	}
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
	return 0;
}

/*
 * This function allocates a buffer for sleep cookie
 */
static int mwifiex_pcie_alloc_sleep_cookie_buf(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;

1031 1032 1033
	card->sleep_cookie_vbase = pci_alloc_consistent(card->dev, sizeof(u32),
						     &card->sleep_cookie_pbase);
	if (!card->sleep_cookie_vbase) {
1034 1035
		mwifiex_dbg(adapter, ERROR,
			    "pci_alloc_consistent failed!\n");
1036 1037 1038
		return -ENOMEM;
	}
	/* Init val of Sleep Cookie */
1039
	*(u32 *)card->sleep_cookie_vbase = FW_AWAKE_COOKIE;
1040

1041 1042 1043
	mwifiex_dbg(adapter, INFO,
		    "alloc_scook: sleep cookie=0x%x\n",
		    *((u32 *)card->sleep_cookie_vbase));
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059

	return 0;
}

/*
 * This function deletes buffer for sleep cookie
 */
static int mwifiex_pcie_delete_sleep_cookie_buf(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card;

	if (!adapter)
		return 0;

	card = adapter->card;

1060 1061 1062 1063 1064
	if (card && card->sleep_cookie_vbase) {
		pci_free_consistent(card->dev, sizeof(u32),
				    card->sleep_cookie_vbase,
				    card->sleep_cookie_pbase);
		card->sleep_cookie_vbase = NULL;
1065 1066 1067 1068 1069
	}

	return 0;
}

1070 1071 1072 1073 1074 1075 1076 1077
/* This function flushes the TX buffer descriptor ring
 * This function defined as handler is also called while cleaning TXRX
 * during disconnect/ bss stop.
 */
static int mwifiex_clean_pcie_ring_buf(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;

1078
	if (!mwifiex_pcie_txbd_empty(card, card->txbd_rdptr)) {
1079 1080 1081 1082 1083 1084
		card->txbd_flush = 1;
		/* write pointer already set at last send
		 * send dnld-rdy intr again, wait for completion.
		 */
		if (mwifiex_write_reg(adapter, PCIE_CPU_INT_EVENT,
				      CPU_INTR_DNLD_RDY)) {
1085 1086
			mwifiex_dbg(adapter, ERROR,
				    "failed to assert dnld-rdy interrupt.\n");
1087 1088 1089 1090 1091 1092
			return -1;
		}
	}
	return 0;
}

1093
/*
1094
 * This function unmaps and frees downloaded data buffer
1095
 */
1096
static int mwifiex_pcie_send_data_complete(struct mwifiex_adapter *adapter)
1097
{
1098
	struct sk_buff *skb;
A
Avinash Patil 已提交
1099
	u32 wrdoneidx, rdptr, num_tx_buffs, unmap_count = 0;
1100
	struct mwifiex_pcie_buf_desc *desc;
A
Avinash Patil 已提交
1101
	struct mwifiex_pfu_buf_desc *desc2;
1102
	struct pcie_service_card *card = adapter->card;
1103
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
1104 1105 1106 1107 1108

	if (!mwifiex_pcie_ok_to_access_hw(adapter))
		mwifiex_pm_wakeup_card(adapter);

	/* Read the TX ring read pointer set by firmware */
1109
	if (mwifiex_read_reg(adapter, reg->tx_rdptr, &rdptr)) {
1110 1111
		mwifiex_dbg(adapter, ERROR,
			    "SEND COMP: failed to read reg->tx_rdptr\n");
1112 1113 1114
		return -1;
	}

1115 1116 1117
	mwifiex_dbg(adapter, DATA,
		    "SEND COMP: rdptr_prev=0x%x, rdptr=0x%x\n",
		    card->txbd_rdptr, rdptr);
1118

A
Avinash Patil 已提交
1119
	num_tx_buffs = MWIFIEX_MAX_TXRX_BD << reg->tx_start_ptr;
1120
	/* free from previous txbd_rdptr to current txbd_rdptr */
1121 1122 1123 1124
	while (((card->txbd_rdptr & reg->tx_mask) !=
		(rdptr & reg->tx_mask)) ||
	       ((card->txbd_rdptr & reg->tx_rollover_ind) !=
		(rdptr & reg->tx_rollover_ind))) {
A
Avinash Patil 已提交
1125 1126
		wrdoneidx = (card->txbd_rdptr & reg->tx_mask) >>
			    reg->tx_start_ptr;
1127 1128

		skb = card->tx_buf_list[wrdoneidx];
1129

1130
		if (skb) {
1131 1132 1133
			mwifiex_dbg(adapter, DATA,
				    "SEND COMP: Detach skb %p at txbd_rdidx=%d\n",
				    skb, wrdoneidx);
1134 1135
			mwifiex_unmap_pci_memory(adapter, skb,
						 PCI_DMA_TODEVICE);
1136 1137 1138 1139 1140 1141 1142 1143

			unmap_count++;

			if (card->txbd_flush)
				mwifiex_write_data_complete(adapter, skb, 0,
							    -1);
			else
				mwifiex_write_data_complete(adapter, skb, 0, 0);
1144
			atomic_dec(&adapter->tx_hw_pending);
1145 1146 1147
		}

		card->tx_buf_list[wrdoneidx] = NULL;
A
Avinash Patil 已提交
1148 1149

		if (reg->pfu_enabled) {
1150
			desc2 = card->txbd_ring[wrdoneidx];
A
Avinash Patil 已提交
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160
			memset(desc2, 0, sizeof(*desc2));
		} else {
			desc = card->txbd_ring[wrdoneidx];
			memset(desc, 0, sizeof(*desc));
		}
		switch (card->dev->device) {
		case PCIE_DEVICE_ID_MARVELL_88W8766P:
			card->txbd_rdptr++;
			break;
		case PCIE_DEVICE_ID_MARVELL_88W8897:
1161
		case PCIE_DEVICE_ID_MARVELL_88W8997:
A
Avinash Patil 已提交
1162 1163 1164 1165
			card->txbd_rdptr += reg->ring_tx_start_ptr;
			break;
		}

1166

1167
		if ((card->txbd_rdptr & reg->tx_mask) == num_tx_buffs)
1168
			card->txbd_rdptr = ((card->txbd_rdptr &
1169 1170
					     reg->tx_rollover_ind) ^
					     reg->tx_rollover_ind);
1171 1172 1173 1174 1175 1176
	}

	if (unmap_count)
		adapter->data_sent = false;

	if (card->txbd_flush) {
1177
		if (mwifiex_pcie_txbd_empty(card, card->txbd_rdptr))
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
			card->txbd_flush = 0;
		else
			mwifiex_clean_pcie_ring_buf(adapter);
	}

	return 0;
}

/* This function sends data buffer to device. First 4 bytes of payload
 * are filled with payload length and payload type. Then this payload
 * is mapped to PCI device memory. Tx ring pointers are advanced accordingly.
 * Download ready interrupt to FW is deffered if Tx ring is not full and
 * additional payload can be accomodated.
1191
 * Caller must ensure tx_param parameter to this function is not NULL.
1192 1193 1194 1195 1196 1197
 */
static int
mwifiex_pcie_send_data(struct mwifiex_adapter *adapter, struct sk_buff *skb,
		       struct mwifiex_tx_param *tx_param)
{
	struct pcie_service_card *card = adapter->card;
1198
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
A
Avinash Patil 已提交
1199
	u32 wrindx, num_tx_buffs, rx_val;
1200 1201
	int ret;
	dma_addr_t buf_pa;
1202 1203
	struct mwifiex_pcie_buf_desc *desc = NULL;
	struct mwifiex_pfu_buf_desc *desc2 = NULL;
1204 1205 1206
	__le16 *tmp;

	if (!(skb->data && skb->len)) {
1207 1208 1209
		mwifiex_dbg(adapter, ERROR,
			    "%s(): invalid parameter <%p, %#x>\n",
			    __func__, skb->data, skb->len);
1210 1211 1212 1213 1214 1215
		return -1;
	}

	if (!mwifiex_pcie_ok_to_access_hw(adapter))
		mwifiex_pm_wakeup_card(adapter);

A
Avinash Patil 已提交
1216
	num_tx_buffs = MWIFIEX_MAX_TXRX_BD << reg->tx_start_ptr;
1217 1218
	mwifiex_dbg(adapter, DATA,
		    "info: SEND DATA: <Rd: %#x, Wr: %#x>\n",
1219 1220
		card->txbd_rdptr, card->txbd_wrptr);
	if (mwifiex_pcie_txbd_not_full(card)) {
1221 1222 1223
		u8 *payload;

		adapter->data_sent = true;
1224
		payload = skb->data;
1225 1226 1227 1228
		tmp = (__le16 *)&payload[0];
		*tmp = cpu_to_le16((u16)skb->len);
		tmp = (__le16 *)&payload[2];
		*tmp = cpu_to_le16(MWIFIEX_TYPE_DATA);
1229

1230
		if (mwifiex_map_pci_memory(adapter, skb, skb->len,
1231 1232 1233
					   PCI_DMA_TODEVICE))
			return -1;

A
Avinash Patil 已提交
1234
		wrindx = (card->txbd_wrptr & reg->tx_mask) >> reg->tx_start_ptr;
1235
		buf_pa = MWIFIEX_SKB_DMA_ADDR(skb);
1236
		card->tx_buf_list[wrindx] = skb;
1237
		atomic_inc(&adapter->tx_hw_pending);
1238

A
Avinash Patil 已提交
1239
		if (reg->pfu_enabled) {
1240
			desc2 = card->txbd_ring[wrindx];
A
Avinash Patil 已提交
1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259
			desc2->paddr = buf_pa;
			desc2->len = (u16)skb->len;
			desc2->frag_len = (u16)skb->len;
			desc2->offset = 0;
			desc2->flags = MWIFIEX_BD_FLAG_FIRST_DESC |
					 MWIFIEX_BD_FLAG_LAST_DESC;
		} else {
			desc = card->txbd_ring[wrindx];
			desc->paddr = buf_pa;
			desc->len = (u16)skb->len;
			desc->flags = MWIFIEX_BD_FLAG_FIRST_DESC |
				      MWIFIEX_BD_FLAG_LAST_DESC;
		}

		switch (card->dev->device) {
		case PCIE_DEVICE_ID_MARVELL_88W8766P:
			card->txbd_wrptr++;
			break;
		case PCIE_DEVICE_ID_MARVELL_88W8897:
1260
		case PCIE_DEVICE_ID_MARVELL_88W8997:
A
Avinash Patil 已提交
1261 1262 1263 1264 1265
			card->txbd_wrptr += reg->ring_tx_start_ptr;
			break;
		}

		if ((card->txbd_wrptr & reg->tx_mask) == num_tx_buffs)
1266
			card->txbd_wrptr = ((card->txbd_wrptr &
1267 1268
						reg->tx_rollover_ind) ^
						reg->tx_rollover_ind);
1269

A
Avinash Patil 已提交
1270
		rx_val = card->rxbd_rdptr & reg->rx_wrap_mask;
1271 1272
		/* Write the TX ring write pointer in to reg->tx_wrptr */
		if (mwifiex_write_reg(adapter, reg->tx_wrptr,
A
Avinash Patil 已提交
1273
				      card->txbd_wrptr | rx_val)) {
1274 1275
			mwifiex_dbg(adapter, ERROR,
				    "SEND DATA: failed to write reg->tx_wrptr\n");
1276 1277
			ret = -1;
			goto done_unmap;
1278
		}
1279 1280 1281
		if ((mwifiex_pcie_txbd_not_full(card)) &&
		    tx_param->next_pkt_len) {
			/* have more packets and TxBD still can hold more */
1282 1283
			mwifiex_dbg(adapter, DATA,
				    "SEND DATA: delay dnld-rdy interrupt.\n");
1284 1285 1286 1287 1288
			adapter->data_sent = false;
		} else {
			/* Send the TX ready interrupt */
			if (mwifiex_write_reg(adapter, PCIE_CPU_INT_EVENT,
					      CPU_INTR_DNLD_RDY)) {
1289 1290
				mwifiex_dbg(adapter, ERROR,
					    "SEND DATA: failed to assert dnld-rdy interrupt.\n");
1291 1292 1293
				ret = -1;
				goto done_unmap;
			}
1294
		}
1295 1296 1297 1298
		mwifiex_dbg(adapter, DATA,
			    "info: SEND DATA: Updated <Rd: %#x, Wr:\t"
			    "%#x> and sent packet to firmware successfully\n",
			    card->txbd_rdptr, card->txbd_wrptr);
1299
	} else {
1300 1301
		mwifiex_dbg(adapter, DATA,
			    "info: TX Ring full, can't send packets to fw\n");
1302 1303 1304 1305
		adapter->data_sent = true;
		/* Send the TX ready interrupt */
		if (mwifiex_write_reg(adapter, PCIE_CPU_INT_EVENT,
				      CPU_INTR_DNLD_RDY))
1306 1307
			mwifiex_dbg(adapter, ERROR,
				    "SEND DATA: failed to assert door-bell intr\n");
1308 1309 1310
		return -EBUSY;
	}

1311 1312
	return -EINPROGRESS;
done_unmap:
1313
	mwifiex_unmap_pci_memory(adapter, skb, PCI_DMA_TODEVICE);
1314
	card->tx_buf_list[wrindx] = NULL;
1315
	atomic_dec(&adapter->tx_hw_pending);
A
Avinash Patil 已提交
1316 1317 1318 1319 1320
	if (reg->pfu_enabled)
		memset(desc2, 0, sizeof(*desc2));
	else
		memset(desc, 0, sizeof(*desc));

1321
	return ret;
1322 1323 1324 1325 1326 1327 1328 1329 1330
}

/*
 * This function handles received buffer ring and
 * dispatches packets to upper
 */
static int mwifiex_pcie_process_recv_data(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
1331
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
A
Avinash Patil 已提交
1332
	u32 wrptr, rd_index, tx_val;
1333
	dma_addr_t buf_pa;
1334 1335
	int ret = 0;
	struct sk_buff *skb_tmp = NULL;
1336
	struct mwifiex_pcie_buf_desc *desc;
A
Avinash Patil 已提交
1337
	struct mwifiex_pfu_buf_desc *desc2;
1338

1339 1340 1341
	if (!mwifiex_pcie_ok_to_access_hw(adapter))
		mwifiex_pm_wakeup_card(adapter);

1342
	/* Read the RX ring Write pointer set by firmware */
1343
	if (mwifiex_read_reg(adapter, reg->rx_wrptr, &wrptr)) {
1344 1345
		mwifiex_dbg(adapter, ERROR,
			    "RECV DATA: failed to read reg->rx_wrptr\n");
1346 1347 1348
		ret = -1;
		goto done;
	}
1349
	card->rxbd_wrptr = wrptr;
1350

1351 1352 1353 1354
	while (((wrptr & reg->rx_mask) !=
		(card->rxbd_rdptr & reg->rx_mask)) ||
	       ((wrptr & reg->rx_rollover_ind) ==
		(card->rxbd_rdptr & reg->rx_rollover_ind))) {
1355 1356
		struct sk_buff *skb_data;
		u16 rx_len;
1357
		__le16 pkt_len;
1358

1359
		rd_index = card->rxbd_rdptr & reg->rx_mask;
1360 1361
		skb_data = card->rx_buf_list[rd_index];

1362 1363 1364 1365 1366 1367
		/* If skb allocation was failed earlier for Rx packet,
		 * rx_buf_list[rd_index] would have been left with a NULL.
		 */
		if (!skb_data)
			return -ENOMEM;

1368
		mwifiex_unmap_pci_memory(adapter, skb_data, PCI_DMA_FROMDEVICE);
1369 1370
		card->rx_buf_list[rd_index] = NULL;

1371
		/* Get data length from interface header -
1372 1373 1374 1375
		 * first 2 bytes for len, next 2 bytes is for type
		 */
		pkt_len = *((__le16 *)skb_data->data);
		rx_len = le16_to_cpu(pkt_len);
1376 1377
		if (WARN_ON(rx_len <= INTF_HEADER_LEN ||
			    rx_len > MWIFIEX_RX_DATA_BUF_SIZE)) {
1378 1379 1380
			mwifiex_dbg(adapter, ERROR,
				    "Invalid RX len %d, Rd=%#x, Wr=%#x\n",
				    rx_len, card->rxbd_rdptr, wrptr);
1381 1382 1383
			dev_kfree_skb_any(skb_data);
		} else {
			skb_put(skb_data, rx_len);
1384 1385 1386
			mwifiex_dbg(adapter, DATA,
				    "info: RECV DATA: Rd=%#x, Wr=%#x, Len=%d\n",
				    card->rxbd_rdptr, wrptr, rx_len);
1387
			skb_pull(skb_data, INTF_HEADER_LEN);
1388 1389 1390 1391 1392 1393 1394
			if (adapter->rx_work_enabled) {
				skb_queue_tail(&adapter->rx_data_q, skb_data);
				adapter->data_received = true;
				atomic_inc(&adapter->rx_pending);
			} else {
				mwifiex_handle_rx_packet(adapter, skb_data);
			}
1395
		}
1396

1397
		skb_tmp = mwifiex_alloc_dma_align_buf(MWIFIEX_RX_DATA_BUF_SIZE,
1398
						      GFP_KERNEL);
1399
		if (!skb_tmp) {
1400 1401
			mwifiex_dbg(adapter, ERROR,
				    "Unable to allocate skb.\n");
1402
			return -ENOMEM;
1403 1404
		}

1405 1406 1407 1408 1409
		if (mwifiex_map_pci_memory(adapter, skb_tmp,
					   MWIFIEX_RX_DATA_BUF_SIZE,
					   PCI_DMA_FROMDEVICE))
			return -1;

1410
		buf_pa = MWIFIEX_SKB_DMA_ADDR(skb_tmp);
1411

1412 1413 1414
		mwifiex_dbg(adapter, INFO,
			    "RECV DATA: Attach new sk_buff %p at rxbd_rdidx=%d\n",
			    skb_tmp, rd_index);
1415
		card->rx_buf_list[rd_index] = skb_tmp;
A
Avinash Patil 已提交
1416 1417

		if (reg->pfu_enabled) {
1418
			desc2 = card->rxbd_ring[rd_index];
A
Avinash Patil 已提交
1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429
			desc2->paddr = buf_pa;
			desc2->len = skb_tmp->len;
			desc2->frag_len = skb_tmp->len;
			desc2->offset = 0;
			desc2->flags = reg->ring_flag_sop | reg->ring_flag_eop;
		} else {
			desc = card->rxbd_ring[rd_index];
			desc->paddr = buf_pa;
			desc->len = skb_tmp->len;
			desc->flags = 0;
		}
1430

1431
		if ((++card->rxbd_rdptr & reg->rx_mask) ==
1432 1433
							MWIFIEX_MAX_TXRX_BD) {
			card->rxbd_rdptr = ((card->rxbd_rdptr &
1434 1435
					     reg->rx_rollover_ind) ^
					     reg->rx_rollover_ind);
1436
		}
1437 1438 1439
		mwifiex_dbg(adapter, DATA,
			    "info: RECV DATA: <Rd: %#x, Wr: %#x>\n",
			    card->rxbd_rdptr, wrptr);
1440

A
Avinash Patil 已提交
1441
		tx_val = card->txbd_wrptr & reg->tx_wrap_mask;
1442 1443
		/* Write the RX ring read pointer in to reg->rx_rdptr */
		if (mwifiex_write_reg(adapter, reg->rx_rdptr,
A
Avinash Patil 已提交
1444
				      card->rxbd_rdptr | tx_val)) {
1445 1446
			mwifiex_dbg(adapter, DATA,
				    "RECV DATA: failed to write reg->rx_rdptr\n");
1447 1448 1449 1450 1451
			ret = -1;
			goto done;
		}

		/* Read the RX ring Write pointer set by firmware */
1452
		if (mwifiex_read_reg(adapter, reg->rx_wrptr, &wrptr)) {
1453 1454
			mwifiex_dbg(adapter, ERROR,
				    "RECV DATA: failed to read reg->rx_wrptr\n");
1455 1456 1457
			ret = -1;
			goto done;
		}
1458 1459
		mwifiex_dbg(adapter, DATA,
			    "info: RECV DATA: Rcvd packet from fw successfully\n");
1460
		card->rxbd_wrptr = wrptr;
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472
	}

done:
	return ret;
}

/*
 * This function downloads the boot command to device
 */
static int
mwifiex_pcie_send_boot_cmd(struct mwifiex_adapter *adapter, struct sk_buff *skb)
{
1473 1474
	dma_addr_t buf_pa;
	struct pcie_service_card *card = adapter->card;
1475
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
1476

1477
	if (!(skb->data && skb->len)) {
1478 1479 1480
		mwifiex_dbg(adapter, ERROR,
			    "Invalid parameter in %s <%p. len %d>\n",
			    __func__, skb->data, skb->len);
1481 1482 1483
		return -1;
	}

1484
	if (mwifiex_map_pci_memory(adapter, skb, skb->len, PCI_DMA_TODEVICE))
1485 1486
		return -1;

1487
	buf_pa = MWIFIEX_SKB_DMA_ADDR(skb);
1488

1489 1490 1491 1492
	/* Write the lower 32bits of the physical address to low command
	 * address scratch register
	 */
	if (mwifiex_write_reg(adapter, reg->cmd_addr_lo, (u32)buf_pa)) {
1493 1494 1495
		mwifiex_dbg(adapter, ERROR,
			    "%s: failed to write download command to boot code.\n",
			    __func__);
1496
		mwifiex_unmap_pci_memory(adapter, skb, PCI_DMA_TODEVICE);
1497 1498 1499
		return -1;
	}

1500 1501 1502 1503
	/* Write the upper 32bits of the physical address to high command
	 * address scratch register
	 */
	if (mwifiex_write_reg(adapter, reg->cmd_addr_hi,
1504
			      (u32)((u64)buf_pa >> 32))) {
1505 1506 1507
		mwifiex_dbg(adapter, ERROR,
			    "%s: failed to write download command to boot code.\n",
			    __func__);
1508
		mwifiex_unmap_pci_memory(adapter, skb, PCI_DMA_TODEVICE);
1509 1510 1511
		return -1;
	}

1512 1513
	/* Write the command length to cmd_size scratch register */
	if (mwifiex_write_reg(adapter, reg->cmd_size, skb->len)) {
1514 1515 1516
		mwifiex_dbg(adapter, ERROR,
			    "%s: failed to write command len to cmd_size scratch reg\n",
			    __func__);
1517
		mwifiex_unmap_pci_memory(adapter, skb, PCI_DMA_TODEVICE);
1518 1519 1520 1521 1522 1523
		return -1;
	}

	/* Ring the door bell */
	if (mwifiex_write_reg(adapter, PCIE_CPU_INT_EVENT,
			      CPU_INTR_DOOR_BELL)) {
1524 1525
		mwifiex_dbg(adapter, ERROR,
			    "%s: failed to assert door-bell intr\n", __func__);
1526
		mwifiex_unmap_pci_memory(adapter, skb, PCI_DMA_TODEVICE);
1527 1528 1529 1530 1531 1532
		return -1;
	}

	return 0;
}

1533 1534 1535 1536 1537 1538
/* This function init rx port in firmware which in turn enables to receive data
 * from device before transmitting any packet.
 */
static int mwifiex_pcie_init_fw_port(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
1539
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
A
Avinash Patil 已提交
1540
	int tx_wrap = card->txbd_wrptr & reg->tx_wrap_mask;
1541

1542
	/* Write the RX ring read pointer in to reg->rx_rdptr */
A
Avinash Patil 已提交
1543 1544
	if (mwifiex_write_reg(adapter, reg->rx_rdptr, card->rxbd_rdptr |
			      tx_wrap)) {
1545 1546
		mwifiex_dbg(adapter, ERROR,
			    "RECV DATA: failed to write reg->rx_rdptr\n");
1547 1548 1549 1550 1551 1552
		return -1;
	}
	return 0;
}

/* This function downloads commands to the device
1553 1554 1555 1556 1557
 */
static int
mwifiex_pcie_send_cmd(struct mwifiex_adapter *adapter, struct sk_buff *skb)
{
	struct pcie_service_card *card = adapter->card;
1558
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
1559
	int ret = 0;
1560 1561
	dma_addr_t cmd_buf_pa, cmdrsp_buf_pa;
	u8 *payload = (u8 *)skb->data;
1562 1563

	if (!(skb->data && skb->len)) {
1564 1565 1566
		mwifiex_dbg(adapter, ERROR,
			    "Invalid parameter in %s <%p, %#x>\n",
			    __func__, skb->data, skb->len);
1567 1568 1569 1570 1571
		return -1;
	}

	/* Make sure a command response buffer is available */
	if (!card->cmdrsp_buf) {
1572 1573
		mwifiex_dbg(adapter, ERROR,
			    "No response buffer available, send command failed\n");
1574 1575 1576
		return -EBUSY;
	}

1577 1578
	if (!mwifiex_pcie_ok_to_access_hw(adapter))
		mwifiex_pm_wakeup_card(adapter);
1579 1580

	adapter->cmd_sent = true;
1581 1582 1583 1584 1585 1586 1587 1588

	*(__le16 *)&payload[0] = cpu_to_le16((u16)skb->len);
	*(__le16 *)&payload[2] = cpu_to_le16(MWIFIEX_TYPE_CMD);

	if (mwifiex_map_pci_memory(adapter, skb, skb->len, PCI_DMA_TODEVICE))
		return -1;

	card->cmd_buf = skb;
1589 1590 1591

	/* To send a command, the driver will:
		1. Write the 64bit physical address of the data buffer to
1592
		   cmd response address low  + cmd response address high
1593 1594 1595 1596 1597 1598 1599 1600
		2. Ring the door bell (i.e. set the door bell interrupt)

		In response to door bell interrupt, the firmware will perform
		the DMA of the command packet (first header to obtain the total
		length and then rest of the command).
	*/

	if (card->cmdrsp_buf) {
1601
		cmdrsp_buf_pa = MWIFIEX_SKB_DMA_ADDR(card->cmdrsp_buf);
1602 1603
		/* Write the lower 32bits of the cmdrsp buffer physical
		   address */
1604
		if (mwifiex_write_reg(adapter, reg->cmdrsp_addr_lo,
1605
				      (u32)cmdrsp_buf_pa)) {
1606 1607
			mwifiex_dbg(adapter, ERROR,
				    "Failed to write download cmd to boot code.\n");
1608 1609 1610 1611 1612
			ret = -1;
			goto done;
		}
		/* Write the upper 32bits of the cmdrsp buffer physical
		   address */
1613
		if (mwifiex_write_reg(adapter, reg->cmdrsp_addr_hi,
1614
				      (u32)((u64)cmdrsp_buf_pa >> 32))) {
1615 1616
			mwifiex_dbg(adapter, ERROR,
				    "Failed to write download cmd to boot code.\n");
1617 1618 1619 1620 1621
			ret = -1;
			goto done;
		}
	}

1622
	cmd_buf_pa = MWIFIEX_SKB_DMA_ADDR(card->cmd_buf);
1623 1624 1625
	/* Write the lower 32bits of the physical address to reg->cmd_addr_lo */
	if (mwifiex_write_reg(adapter, reg->cmd_addr_lo,
			      (u32)cmd_buf_pa)) {
1626 1627
		mwifiex_dbg(adapter, ERROR,
			    "Failed to write download cmd to boot code.\n");
1628 1629 1630
		ret = -1;
		goto done;
	}
1631 1632
	/* Write the upper 32bits of the physical address to reg->cmd_addr_hi */
	if (mwifiex_write_reg(adapter, reg->cmd_addr_hi,
1633
			      (u32)((u64)cmd_buf_pa >> 32))) {
1634 1635
		mwifiex_dbg(adapter, ERROR,
			    "Failed to write download cmd to boot code.\n");
1636 1637 1638 1639
		ret = -1;
		goto done;
	}

1640 1641 1642
	/* Write the command length to reg->cmd_size */
	if (mwifiex_write_reg(adapter, reg->cmd_size,
			      card->cmd_buf->len)) {
1643 1644
		mwifiex_dbg(adapter, ERROR,
			    "Failed to write cmd len to reg->cmd_size\n");
1645 1646 1647 1648 1649 1650 1651
		ret = -1;
		goto done;
	}

	/* Ring the door bell */
	if (mwifiex_write_reg(adapter, PCIE_CPU_INT_EVENT,
			      CPU_INTR_DOOR_BELL)) {
1652 1653
		mwifiex_dbg(adapter, ERROR,
			    "Failed to assert door-bell intr\n");
1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670
		ret = -1;
		goto done;
	}

done:
	if (ret)
		adapter->cmd_sent = false;

	return 0;
}

/*
 * This function handles command complete interrupt
 */
static int mwifiex_pcie_process_cmd_complete(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
1671
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
1672
	struct sk_buff *skb = card->cmdrsp_buf;
1673
	int count = 0;
1674 1675
	u16 rx_len;
	__le16 pkt_len;
1676

1677 1678
	mwifiex_dbg(adapter, CMD,
		    "info: Rx CMD Response\n");
1679

1680
	mwifiex_unmap_pci_memory(adapter, skb, PCI_DMA_FROMDEVICE);
1681

1682 1683 1684 1685 1686 1687 1688
	/* Unmap the command as a response has been received. */
	if (card->cmd_buf) {
		mwifiex_unmap_pci_memory(adapter, card->cmd_buf,
					 PCI_DMA_TODEVICE);
		card->cmd_buf = NULL;
	}

1689 1690
	pkt_len = *((__le16 *)skb->data);
	rx_len = le16_to_cpu(pkt_len);
1691
	skb_put(skb, MWIFIEX_UPLD_SIZE - skb->len);
1692 1693 1694
	skb_trim(skb, rx_len);
	skb_pull(skb, INTF_HEADER_LEN);

1695 1696
	if (!adapter->curr_cmd) {
		if (adapter->ps_state == PS_STATE_SLEEP_CFM) {
1697 1698 1699
			if (mwifiex_write_reg(adapter,
					      PCIE_CPU_INT_EVENT,
					      CPU_INTR_SLEEP_CFM_DONE)) {
1700 1701
				mwifiex_dbg(adapter, ERROR,
					    "Write register failed\n");
1702 1703
				return -1;
			}
1704 1705
			mwifiex_delay_for_sleep_cookie(adapter,
						       MWIFIEX_MAX_DELAY_COUNT);
1706 1707
			while (reg->sleep_cookie && (count++ < 10) &&
			       mwifiex_pcie_ok_to_access_hw(adapter))
1708
				usleep_range(50, 60);
1709 1710 1711
			mwifiex_pcie_enable_host_int(adapter);
			mwifiex_process_sleep_confirm_resp(adapter, skb->data,
							   skb->len);
1712
		} else {
1713 1714
			mwifiex_dbg(adapter, ERROR,
				    "There is no command but got cmdrsp\n");
1715
		}
1716 1717
		memcpy(adapter->upld_buf, skb->data,
		       min_t(u32, MWIFIEX_SIZE_OF_CMD_BUFFER, skb->len));
1718
		skb_push(skb, INTF_HEADER_LEN);
1719 1720 1721
		if (mwifiex_map_pci_memory(adapter, skb, MWIFIEX_UPLD_SIZE,
					   PCI_DMA_FROMDEVICE))
			return -1;
1722
	} else if (mwifiex_pcie_ok_to_access_hw(adapter)) {
1723
		adapter->curr_cmd->resp_skb = skb;
1724 1725 1726 1727 1728 1729 1730 1731
		adapter->cmd_resp_received = true;
		/* Take the pointer and set it to CMD node and will
		   return in the response complete callback */
		card->cmdrsp_buf = NULL;

		/* Clear the cmd-rsp buffer address in scratch registers. This
		   will prevent firmware from writing to the same response
		   buffer again. */
1732
		if (mwifiex_write_reg(adapter, reg->cmdrsp_addr_lo, 0)) {
1733 1734
			mwifiex_dbg(adapter, ERROR,
				    "cmd_done: failed to clear cmd_rsp_addr_lo\n");
1735 1736 1737 1738
			return -1;
		}
		/* Write the upper 32bits of the cmdrsp buffer physical
		   address */
1739
		if (mwifiex_write_reg(adapter, reg->cmdrsp_addr_hi, 0)) {
1740 1741
			mwifiex_dbg(adapter, ERROR,
				    "cmd_done: failed to clear cmd_rsp_addr_hi\n");
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759
			return -1;
		}
	}

	return 0;
}

/*
 * Command Response processing complete handler
 */
static int mwifiex_pcie_cmdrsp_complete(struct mwifiex_adapter *adapter,
					struct sk_buff *skb)
{
	struct pcie_service_card *card = adapter->card;

	if (skb) {
		card->cmdrsp_buf = skb;
		skb_push(card->cmdrsp_buf, INTF_HEADER_LEN);
1760 1761 1762 1763 1764
		if (mwifiex_map_pci_memory(adapter, skb, MWIFIEX_UPLD_SIZE,
					   PCI_DMA_FROMDEVICE))
			return -1;
	}

1765 1766 1767 1768 1769 1770 1771 1772 1773
	return 0;
}

/*
 * This function handles firmware event ready interrupt
 */
static int mwifiex_pcie_process_event_ready(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
1774
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
1775 1776
	u32 rdptr = card->evtbd_rdptr & MWIFIEX_EVTBD_MASK;
	u32 wrptr, event;
1777
	struct mwifiex_evt_buf_desc *desc;
1778 1779 1780

	if (!mwifiex_pcie_ok_to_access_hw(adapter))
		mwifiex_pm_wakeup_card(adapter);
1781 1782

	if (adapter->event_received) {
1783 1784 1785
		mwifiex_dbg(adapter, EVENT,
			    "info: Event being processed,\t"
			    "do not process this interrupt just yet\n");
1786 1787 1788 1789
		return 0;
	}

	if (rdptr >= MWIFIEX_MAX_EVT_BD) {
1790 1791
		mwifiex_dbg(adapter, ERROR,
			    "info: Invalid read pointer...\n");
1792 1793 1794 1795
		return -1;
	}

	/* Read the event ring write pointer set by firmware */
1796
	if (mwifiex_read_reg(adapter, reg->evt_wrptr, &wrptr)) {
1797 1798
		mwifiex_dbg(adapter, ERROR,
			    "EventReady: failed to read reg->evt_wrptr\n");
1799 1800 1801
		return -1;
	}

1802 1803 1804
	mwifiex_dbg(adapter, EVENT,
		    "info: EventReady: Initial <Rd: 0x%x, Wr: 0x%x>",
		    card->evtbd_rdptr, wrptr);
1805 1806
	if (((wrptr & MWIFIEX_EVTBD_MASK) != (card->evtbd_rdptr
					      & MWIFIEX_EVTBD_MASK)) ||
1807 1808
	    ((wrptr & reg->evt_rollover_ind) ==
	     (card->evtbd_rdptr & reg->evt_rollover_ind))) {
1809 1810 1811 1812
		struct sk_buff *skb_cmd;
		__le16 data_len = 0;
		u16 evt_len;

1813 1814
		mwifiex_dbg(adapter, INFO,
			    "info: Read Index: %d\n", rdptr);
1815
		skb_cmd = card->evt_buf_list[rdptr];
1816
		mwifiex_unmap_pci_memory(adapter, skb_cmd, PCI_DMA_FROMDEVICE);
1817

1818 1819 1820
		/* Take the pointer and set it to event pointer in adapter
		   and will return back after event handling callback */
		card->evt_buf_list[rdptr] = NULL;
1821 1822
		desc = card->evtbd_ring[rdptr];
		memset(desc, 0, sizeof(*desc));
1823 1824 1825 1826 1827 1828 1829

		event = *(u32 *) &skb_cmd->data[INTF_HEADER_LEN];
		adapter->event_cause = event;
		/* The first 4bytes will be the event transfer header
		   len is 2 bytes followed by type which is 2 bytes */
		memcpy(&data_len, skb_cmd->data, sizeof(__le16));
		evt_len = le16_to_cpu(data_len);
1830
		skb_trim(skb_cmd, evt_len);
1831
		skb_pull(skb_cmd, INTF_HEADER_LEN);
1832 1833
		mwifiex_dbg(adapter, EVENT,
			    "info: Event length: %d\n", evt_len);
1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846

		if ((evt_len > 0) && (evt_len  < MAX_EVENT_SIZE))
			memcpy(adapter->event_body, skb_cmd->data +
			       MWIFIEX_EVENT_HEADER_LEN, evt_len -
			       MWIFIEX_EVENT_HEADER_LEN);

		adapter->event_received = true;
		adapter->event_skb = skb_cmd;

		/* Do not update the event read pointer here, wait till the
		   buffer is released. This is just to make things simpler,
		   we need to find a better method of managing these buffers.
		*/
1847 1848 1849
	} else {
		if (mwifiex_write_reg(adapter, PCIE_CPU_INT_EVENT,
				      CPU_INTR_EVENT_DONE)) {
1850 1851
			mwifiex_dbg(adapter, ERROR,
				    "Write register failed\n");
1852 1853
			return -1;
		}
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865
	}

	return 0;
}

/*
 * Event processing complete handler
 */
static int mwifiex_pcie_event_complete(struct mwifiex_adapter *adapter,
				       struct sk_buff *skb)
{
	struct pcie_service_card *card = adapter->card;
1866
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
1867 1868 1869
	int ret = 0;
	u32 rdptr = card->evtbd_rdptr & MWIFIEX_EVTBD_MASK;
	u32 wrptr;
1870
	struct mwifiex_evt_buf_desc *desc;
1871 1872 1873 1874

	if (!skb)
		return 0;

1875
	if (rdptr >= MWIFIEX_MAX_EVT_BD) {
1876 1877 1878
		mwifiex_dbg(adapter, ERROR,
			    "event_complete: Invalid rdptr 0x%x\n",
			    rdptr);
1879
		return -EINVAL;
1880
	}
1881 1882

	/* Read the event ring write pointer set by firmware */
1883
	if (mwifiex_read_reg(adapter, reg->evt_wrptr, &wrptr)) {
1884 1885
		mwifiex_dbg(adapter, ERROR,
			    "event_complete: failed to read reg->evt_wrptr\n");
1886
		return -1;
1887 1888 1889 1890
	}

	if (!card->evt_buf_list[rdptr]) {
		skb_push(skb, INTF_HEADER_LEN);
1891
		skb_put(skb, MAX_EVENT_SIZE - skb->len);
1892 1893 1894 1895
		if (mwifiex_map_pci_memory(adapter, skb,
					   MAX_EVENT_SIZE,
					   PCI_DMA_FROMDEVICE))
			return -1;
1896
		card->evt_buf_list[rdptr] = skb;
1897
		desc = card->evtbd_ring[rdptr];
1898
		desc->paddr = MWIFIEX_SKB_DMA_ADDR(skb);
1899 1900
		desc->len = (u16)skb->len;
		desc->flags = 0;
1901 1902
		skb = NULL;
	} else {
1903 1904 1905
		mwifiex_dbg(adapter, ERROR,
			    "info: ERROR: buf still valid at index %d, <%p, %p>\n",
			    rdptr, card->evt_buf_list[rdptr], skb);
1906 1907 1908 1909
	}

	if ((++card->evtbd_rdptr & MWIFIEX_EVTBD_MASK) == MWIFIEX_MAX_EVT_BD) {
		card->evtbd_rdptr = ((card->evtbd_rdptr &
1910 1911
					reg->evt_rollover_ind) ^
					reg->evt_rollover_ind);
1912 1913
	}

1914 1915 1916
	mwifiex_dbg(adapter, EVENT,
		    "info: Updated <Rd: 0x%x, Wr: 0x%x>",
		    card->evtbd_rdptr, wrptr);
1917

1918 1919 1920
	/* Write the event ring read pointer in to reg->evt_rdptr */
	if (mwifiex_write_reg(adapter, reg->evt_rdptr,
			      card->evtbd_rdptr)) {
1921 1922
		mwifiex_dbg(adapter, ERROR,
			    "event_complete: failed to read reg->evt_rdptr\n");
1923
		return -1;
1924 1925
	}

1926 1927
	mwifiex_dbg(adapter, EVENT,
		    "info: Check Events Again\n");
1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949
	ret = mwifiex_pcie_process_event_ready(adapter);

	return ret;
}

/*
 * This function downloads the firmware to the card.
 *
 * Firmware is downloaded to the card in blocks. Every block download
 * is tested for CRC errors, and retried a number of times before
 * returning failure.
 */
static int mwifiex_prog_fw_w_helper(struct mwifiex_adapter *adapter,
				    struct mwifiex_fw_image *fw)
{
	int ret;
	u8 *firmware = fw->fw_buf;
	u32 firmware_len = fw->fw_len;
	u32 offset = 0;
	struct sk_buff *skb;
	u32 txlen, tx_blocks = 0, tries, len;
	u32 block_retry_cnt = 0;
1950
	struct pcie_service_card *card = adapter->card;
1951
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
1952 1953

	if (!firmware || !firmware_len) {
1954 1955
		mwifiex_dbg(adapter, ERROR,
			    "No firmware image found! Terminating download\n");
1956 1957 1958
		return -1;
	}

1959 1960 1961
	mwifiex_dbg(adapter, INFO,
		    "info: Downloading FW image (%d bytes)\n",
		    firmware_len);
1962 1963

	if (mwifiex_pcie_disable_host_int(adapter)) {
1964 1965
		mwifiex_dbg(adapter, ERROR,
			    "%s: Disabling interrupts failed.\n", __func__);
1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983
		return -1;
	}

	skb = dev_alloc_skb(MWIFIEX_UPLD_SIZE);
	if (!skb) {
		ret = -ENOMEM;
		goto done;
	}

	/* Perform firmware data transfer */
	do {
		u32 ireg_intr = 0;

		/* More data? */
		if (offset >= firmware_len)
			break;

		for (tries = 0; tries < MAX_POLL_TRIES; tries++) {
1984
			ret = mwifiex_read_reg(adapter, reg->cmd_size,
1985 1986
					       &len);
			if (ret) {
1987 1988
				mwifiex_dbg(adapter, FATAL,
					    "Failed reading len from boot code\n");
1989 1990 1991 1992
				goto done;
			}
			if (len)
				break;
1993
			usleep_range(10, 20);
1994 1995 1996 1997 1998
		}

		if (!len) {
			break;
		} else if (len > MWIFIEX_UPLD_SIZE) {
1999 2000 2001
			mwifiex_dbg(adapter, ERROR,
				    "FW download failure @ %d, invalid length %d\n",
				    offset, len);
2002 2003 2004 2005 2006 2007 2008 2009 2010
			ret = -1;
			goto done;
		}

		txlen = len;

		if (len & BIT(0)) {
			block_retry_cnt++;
			if (block_retry_cnt > MAX_WRITE_IOMEM_RETRY) {
2011 2012 2013
				mwifiex_dbg(adapter, ERROR,
					    "FW download failure @ %d, over max\t"
					    "retry count\n", offset);
2014 2015 2016
				ret = -1;
				goto done;
			}
2017 2018 2019 2020
			mwifiex_dbg(adapter, ERROR,
				    "FW CRC error indicated by the\t"
				    "helper: len = 0x%04X, txlen = %d\n",
				    len, txlen);
2021 2022 2023 2024 2025 2026 2027 2028 2029 2030
			len &= ~BIT(0);
			/* Setting this to 0 to resend from same offset */
			txlen = 0;
		} else {
			block_retry_cnt = 0;
			/* Set blocksize to transfer - checking for
			   last block */
			if (firmware_len - offset < txlen)
				txlen = firmware_len - offset;

2031 2032
			tx_blocks = (txlen + card->pcie.blksz_fw_dl - 1) /
				    card->pcie.blksz_fw_dl;
2033 2034 2035 2036 2037 2038

			/* Copy payload to buffer */
			memmove(skb->data, &firmware[offset], txlen);
		}

		skb_put(skb, MWIFIEX_UPLD_SIZE - skb->len);
2039
		skb_trim(skb, tx_blocks * card->pcie.blksz_fw_dl);
2040 2041 2042

		/* Send the boot command to device */
		if (mwifiex_pcie_send_boot_cmd(adapter, skb)) {
2043 2044
			mwifiex_dbg(adapter, ERROR,
				    "Failed to send firmware download command\n");
2045 2046 2047
			ret = -1;
			goto done;
		}
2048

2049 2050 2051 2052
		/* Wait for the command done interrupt */
		do {
			if (mwifiex_read_reg(adapter, PCIE_CPU_INT_STATUS,
					     &ireg_intr)) {
2053 2054 2055 2056
				mwifiex_dbg(adapter, ERROR,
					    "%s: Failed to read\t"
					    "interrupt status during fw dnld.\n",
					    __func__);
2057 2058
				mwifiex_unmap_pci_memory(adapter, skb,
							 PCI_DMA_TODEVICE);
2059 2060 2061 2062 2063
				ret = -1;
				goto done;
			}
		} while ((ireg_intr & CPU_INTR_DOOR_BELL) ==
			 CPU_INTR_DOOR_BELL);
2064

2065
		mwifiex_unmap_pci_memory(adapter, skb, PCI_DMA_TODEVICE);
2066

2067 2068 2069
		offset += txlen;
	} while (true);

2070 2071
	mwifiex_dbg(adapter, MSG,
		    "info: FW download over, size %d bytes\n", offset);
2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086

	ret = 0;

done:
	dev_kfree_skb_any(skb);
	return ret;
}

/*
 * This function checks the firmware status in card.
 */
static int
mwifiex_check_fw_status(struct mwifiex_adapter *adapter, u32 poll_num)
{
	int ret = 0;
2087
	u32 firmware_stat;
2088 2089
	struct pcie_service_card *card = adapter->card;
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
2090 2091 2092 2093
	u32 tries;

	/* Mask spurios interrupts */
	if (mwifiex_write_reg(adapter, PCIE_HOST_INT_STATUS_MASK,
2094
			      HOST_INTR_MASK)) {
2095 2096
		mwifiex_dbg(adapter, ERROR,
			    "Write register failed\n");
2097 2098 2099
		return -1;
	}

2100 2101
	mwifiex_dbg(adapter, INFO,
		    "Setting driver ready signature\n");
2102 2103
	if (mwifiex_write_reg(adapter, reg->drv_rdy,
			      FIRMWARE_READY_PCIE)) {
2104 2105
		mwifiex_dbg(adapter, ERROR,
			    "Failed to write driver ready signature\n");
2106 2107 2108 2109 2110
		return -1;
	}

	/* Wait for firmware initialization event */
	for (tries = 0; tries < poll_num; tries++) {
2111
		if (mwifiex_read_reg(adapter, reg->fw_status,
2112 2113 2114 2115
				     &firmware_stat))
			ret = -1;
		else
			ret = 0;
2116 2117 2118 2119

		mwifiex_dbg(adapter, INFO, "Try %d if FW is ready <%d,%#x>",
			    tries, ret, firmware_stat);

2120 2121 2122 2123 2124 2125
		if (ret)
			continue;
		if (firmware_stat == FIRMWARE_READY_PCIE) {
			ret = 0;
			break;
		} else {
2126
			msleep(100);
2127 2128 2129 2130
			ret = -1;
		}
	}

2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150
	return ret;
}

/* This function checks if WLAN is the winner.
 */
static int
mwifiex_check_winner_status(struct mwifiex_adapter *adapter)
{
	u32 winner = 0;
	int ret = 0;
	struct pcie_service_card *card = adapter->card;
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;

	if (mwifiex_read_reg(adapter, reg->fw_status, &winner)) {
		ret = -1;
	} else if (!winner) {
		mwifiex_dbg(adapter, INFO, "PCI-E is the winner\n");
		adapter->winner = 1;
	} else {
		mwifiex_dbg(adapter, ERROR,
2151
			    "PCI-E is not the winner <%#x>", winner);
2152 2153 2154 2155 2156 2157 2158 2159
	}

	return ret;
}

/*
 * This function reads the interrupt status from card.
 */
2160 2161
static void mwifiex_interrupt_status(struct mwifiex_adapter *adapter,
				     int msg_id)
2162 2163 2164
{
	u32 pcie_ireg;
	unsigned long flags;
2165
	struct pcie_service_card *card = adapter->card;
2166

2167 2168 2169 2170 2171 2172 2173
	if (card->msi_enable) {
		spin_lock_irqsave(&adapter->int_lock, flags);
		adapter->int_status = 1;
		spin_unlock_irqrestore(&adapter->int_lock, flags);
		return;
	}

2174 2175 2176
	if (!mwifiex_pcie_ok_to_access_hw(adapter))
		return;

2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187
	if (card->msix_enable && msg_id >= 0) {
		pcie_ireg = BIT(msg_id);
	} else {
		if (mwifiex_read_reg(adapter, PCIE_HOST_INT_STATUS,
				     &pcie_ireg)) {
			mwifiex_dbg(adapter, ERROR, "Read register failed\n");
			return;
		}

		if ((pcie_ireg == 0xFFFFFFFF) || !pcie_ireg)
			return;
2188 2189 2190 2191 2192 2193 2194


		mwifiex_pcie_disable_host_int(adapter);

		/* Clear the pending interrupts */
		if (mwifiex_write_reg(adapter, PCIE_HOST_INT_STATUS,
				      ~pcie_ireg)) {
2195 2196
			mwifiex_dbg(adapter, ERROR,
				    "Write register failed\n");
2197 2198
			return;
		}
2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210
	}

	if (!adapter->pps_uapsd_mode &&
	    adapter->ps_state == PS_STATE_SLEEP &&
	    mwifiex_pcie_ok_to_access_hw(adapter)) {
		/* Potentially for PCIe we could get other
		 * interrupts like shared. Don't change power
		 * state until cookie is set
		 */
		adapter->ps_state = PS_STATE_AWAKE;
		adapter->pm_wakeup_fw_try = false;
		del_timer(&adapter->wakeup_timer);
2211
	}
2212 2213 2214 2215 2216

	spin_lock_irqsave(&adapter->int_lock, flags);
	adapter->int_status |= pcie_ireg;
	spin_unlock_irqrestore(&adapter->int_lock, flags);
	mwifiex_dbg(adapter, INTR, "ireg: 0x%08x\n", pcie_ireg);
2217 2218 2219 2220 2221 2222 2223 2224 2225 2226
}

/*
 * Interrupt handler for PCIe root port
 *
 * This function reads the interrupt status from firmware and assigns
 * the main process in workqueue which will handle the interrupt.
 */
static irqreturn_t mwifiex_pcie_interrupt(int irq, void *context)
{
2227 2228
	struct mwifiex_msix_context *ctx = context;
	struct pci_dev *pdev = ctx->dev;
2229 2230 2231 2232
	struct pcie_service_card *card;
	struct mwifiex_adapter *adapter;

	if (!pdev) {
2233
		pr_err("info: %s: pdev is NULL\n", __func__);
2234 2235 2236
		goto exit;
	}

2237
	card = pci_get_drvdata(pdev);
2238
	if (!card || !card->adapter) {
2239 2240
		pr_err("info: %s: card=%p adapter=%p\n", __func__, card,
		       card ? card->adapter : NULL);
2241 2242 2243 2244 2245 2246 2247
		goto exit;
	}
	adapter = card->adapter;

	if (adapter->surprise_removed)
		goto exit;

2248 2249 2250 2251 2252
	if (card->msix_enable)
		mwifiex_interrupt_status(adapter, ctx->msg_id);
	else
		mwifiex_interrupt_status(adapter, -1);

2253
	mwifiex_queue_main_work(adapter);
2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271

exit:
	return IRQ_HANDLED;
}

/*
 * This function checks the current interrupt status.
 *
 * The following interrupts are checked and handled by this function -
 *      - Data sent
 *      - Command sent
 *      - Command received
 *      - Packets received
 *      - Events received
 *
 * In case of Rx packets received, the packets are uploaded from card to
 * host and processed accordingly.
 */
2272
static int mwifiex_process_pcie_int(struct mwifiex_adapter *adapter)
2273 2274
{
	int ret;
2275
	u32 pcie_ireg = 0;
2276
	unsigned long flags;
2277
	struct pcie_service_card *card = adapter->card;
2278 2279

	spin_lock_irqsave(&adapter->int_lock, flags);
2280 2281 2282 2283
	if (!card->msi_enable) {
		/* Clear out unused interrupts */
		pcie_ireg = adapter->int_status;
	}
2284
	adapter->int_status = 0;
2285 2286
	spin_unlock_irqrestore(&adapter->int_lock, flags);

2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312
	if (card->msi_enable) {
		if (mwifiex_pcie_ok_to_access_hw(adapter)) {
			if (mwifiex_read_reg(adapter, PCIE_HOST_INT_STATUS,
					     &pcie_ireg)) {
				mwifiex_dbg(adapter, ERROR,
					    "Read register failed\n");
				return -1;
			}

			if ((pcie_ireg != 0xFFFFFFFF) && (pcie_ireg)) {
				if (mwifiex_write_reg(adapter,
						      PCIE_HOST_INT_STATUS,
						      ~pcie_ireg)) {
					mwifiex_dbg(adapter, ERROR,
						    "Write register failed\n");
					return -1;
				}
				if (!adapter->pps_uapsd_mode &&
				    adapter->ps_state == PS_STATE_SLEEP) {
					adapter->ps_state = PS_STATE_AWAKE;
					adapter->pm_wakeup_fw_try = false;
					del_timer(&adapter->wakeup_timer);
				}
			}
		}
	}
2313 2314 2315
	while (pcie_ireg & HOST_INTR_MASK) {
		if (pcie_ireg & HOST_INTR_DNLD_DONE) {
			pcie_ireg &= ~HOST_INTR_DNLD_DONE;
2316 2317
			mwifiex_dbg(adapter, INTR,
				    "info: TX DNLD Done\n");
2318 2319 2320
			ret = mwifiex_pcie_send_data_complete(adapter);
			if (ret)
				return ret;
2321
		}
2322 2323
		if (pcie_ireg & HOST_INTR_UPLD_RDY) {
			pcie_ireg &= ~HOST_INTR_UPLD_RDY;
2324 2325
			mwifiex_dbg(adapter, INTR,
				    "info: Rx DATA\n");
2326 2327 2328 2329
			ret = mwifiex_pcie_process_recv_data(adapter);
			if (ret)
				return ret;
		}
2330 2331
		if (pcie_ireg & HOST_INTR_EVENT_RDY) {
			pcie_ireg &= ~HOST_INTR_EVENT_RDY;
2332 2333
			mwifiex_dbg(adapter, INTR,
				    "info: Rx EVENT\n");
2334 2335 2336 2337 2338
			ret = mwifiex_pcie_process_event_ready(adapter);
			if (ret)
				return ret;
		}

2339 2340
		if (pcie_ireg & HOST_INTR_CMD_DONE) {
			pcie_ireg &= ~HOST_INTR_CMD_DONE;
2341
			if (adapter->cmd_sent) {
2342 2343
				mwifiex_dbg(adapter, INTR,
					    "info: CMD sent Interrupt\n");
2344 2345 2346 2347 2348 2349
				adapter->cmd_sent = false;
			}
			/* Handle command response */
			ret = mwifiex_pcie_process_cmd_complete(adapter);
			if (ret)
				return ret;
2350 2351
			if (adapter->hs_activated)
				return ret;
2352 2353
		}

2354 2355 2356 2357 2358 2359
		if (card->msi_enable) {
			spin_lock_irqsave(&adapter->int_lock, flags);
			adapter->int_status = 0;
			spin_unlock_irqrestore(&adapter->int_lock, flags);
		}

2360 2361 2362
		if (mwifiex_pcie_ok_to_access_hw(adapter)) {
			if (mwifiex_read_reg(adapter, PCIE_HOST_INT_STATUS,
					     &pcie_ireg)) {
2363 2364
				mwifiex_dbg(adapter, ERROR,
					    "Read register failed\n");
2365 2366 2367 2368 2369
				return -1;
			}

			if ((pcie_ireg != 0xFFFFFFFF) && (pcie_ireg)) {
				if (mwifiex_write_reg(adapter,
2370 2371
						      PCIE_HOST_INT_STATUS,
						      ~pcie_ireg)) {
2372 2373
					mwifiex_dbg(adapter, ERROR,
						    "Write register failed\n");
2374 2375 2376 2377 2378
					return -1;
				}
			}

		}
2379 2380 2381 2382 2383 2384
		if (!card->msi_enable) {
			spin_lock_irqsave(&adapter->int_lock, flags);
			pcie_ireg |= adapter->int_status;
			adapter->int_status = 0;
			spin_unlock_irqrestore(&adapter->int_lock, flags);
		}
2385
	}
2386 2387 2388
	mwifiex_dbg(adapter, INTR,
		    "info: cmd_sent=%d data_sent=%d\n",
		    adapter->cmd_sent, adapter->data_sent);
2389
	if (!card->msi_enable && adapter->ps_state != PS_STATE_SLEEP)
2390
		mwifiex_pcie_enable_host_int(adapter);
2391 2392 2393 2394

	return 0;
}

2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457
static int mwifiex_process_msix_int(struct mwifiex_adapter *adapter)
{
	int ret;
	u32 pcie_ireg;
	unsigned long flags;

	spin_lock_irqsave(&adapter->int_lock, flags);
	/* Clear out unused interrupts */
	pcie_ireg = adapter->int_status;
	adapter->int_status = 0;
	spin_unlock_irqrestore(&adapter->int_lock, flags);

	if (pcie_ireg & HOST_INTR_DNLD_DONE) {
		mwifiex_dbg(adapter, INTR,
			    "info: TX DNLD Done\n");
		ret = mwifiex_pcie_send_data_complete(adapter);
		if (ret)
			return ret;
	}
	if (pcie_ireg & HOST_INTR_UPLD_RDY) {
		mwifiex_dbg(adapter, INTR,
			    "info: Rx DATA\n");
		ret = mwifiex_pcie_process_recv_data(adapter);
		if (ret)
			return ret;
	}
	if (pcie_ireg & HOST_INTR_EVENT_RDY) {
		mwifiex_dbg(adapter, INTR,
			    "info: Rx EVENT\n");
		ret = mwifiex_pcie_process_event_ready(adapter);
		if (ret)
			return ret;
	}

	if (pcie_ireg & HOST_INTR_CMD_DONE) {
		if (adapter->cmd_sent) {
			mwifiex_dbg(adapter, INTR,
				    "info: CMD sent Interrupt\n");
			adapter->cmd_sent = false;
		}
		/* Handle command response */
		ret = mwifiex_pcie_process_cmd_complete(adapter);
		if (ret)
			return ret;
	}

	mwifiex_dbg(adapter, INTR,
		    "info: cmd_sent=%d data_sent=%d\n",
		    adapter->cmd_sent, adapter->data_sent);

	return 0;
}

static int mwifiex_process_int_status(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;

	if (card->msix_enable)
		return mwifiex_process_msix_int(adapter);
	else
		return mwifiex_process_pcie_int(adapter);
}

2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471
/*
 * This function downloads data from driver to card.
 *
 * Both commands and data packets are transferred to the card by this
 * function.
 *
 * This function adds the PCIE specific header to the front of the buffer
 * before transferring. The header contains the length of the packet and
 * the type. The firmware handles the packets based upon this set type.
 */
static int mwifiex_pcie_host_to_card(struct mwifiex_adapter *adapter, u8 type,
				     struct sk_buff *skb,
				     struct mwifiex_tx_param *tx_param)
{
2472
	if (!skb) {
2473 2474
		mwifiex_dbg(adapter, ERROR,
			    "Passed NULL skb to %s\n", __func__);
2475 2476 2477 2478
		return -1;
	}

	if (type == MWIFIEX_TYPE_DATA)
2479
		return mwifiex_pcie_send_data(adapter, skb, tx_param);
2480 2481 2482 2483 2484 2485
	else if (type == MWIFIEX_TYPE_CMD)
		return mwifiex_pcie_send_cmd(adapter, skb);

	return 0;
}

2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526
/* Function to dump PCIE scratch registers in case of FW crash
 */
static int
mwifiex_pcie_reg_dump(struct mwifiex_adapter *adapter, char *drv_buf)
{
	char *p = drv_buf;
	char buf[256], *ptr;
	int i;
	u32 value;
	struct pcie_service_card *card = adapter->card;
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
	int pcie_scratch_reg[] = {PCIE_SCRATCH_12_REG,
				  PCIE_SCRATCH_13_REG,
				  PCIE_SCRATCH_14_REG};

	if (!p)
		return 0;

	mwifiex_dbg(adapter, MSG, "PCIE register dump start\n");

	if (mwifiex_read_reg(adapter, reg->fw_status, &value)) {
		mwifiex_dbg(adapter, ERROR, "failed to read firmware status");
		return 0;
	}

	ptr = buf;
	mwifiex_dbg(adapter, MSG, "pcie scratch register:");
	for (i = 0; i < ARRAY_SIZE(pcie_scratch_reg); i++) {
		mwifiex_read_reg(adapter, pcie_scratch_reg[i], &value);
		ptr += sprintf(ptr, "reg:0x%x, value=0x%x\n",
			       pcie_scratch_reg[i], value);
	}

	mwifiex_dbg(adapter, MSG, "%s\n", buf);
	p += sprintf(p, "%s\n", buf);

	mwifiex_dbg(adapter, MSG, "PCIE register dump end\n");

	return p - drv_buf;
}

2527 2528 2529 2530 2531 2532
/* This function read/write firmware */
static enum rdwr_status
mwifiex_pcie_rdwr_firmware(struct mwifiex_adapter *adapter, u8 doneflag)
{
	int ret, tries;
	u8 ctrl_data;
2533
	u32 fw_status;
2534 2535 2536
	struct pcie_service_card *card = adapter->card;
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;

2537 2538 2539
	if (mwifiex_read_reg(adapter, reg->fw_status, &fw_status))
		return RDWR_STATUS_FAILURE;

2540 2541
	ret = mwifiex_write_reg(adapter, reg->fw_dump_ctrl,
				reg->fw_dump_host_ready);
2542
	if (ret) {
2543 2544
		mwifiex_dbg(adapter, ERROR,
			    "PCIE write err\n");
2545 2546 2547 2548 2549 2550 2551 2552 2553
		return RDWR_STATUS_FAILURE;
	}

	for (tries = 0; tries < MAX_POLL_TRIES; tries++) {
		mwifiex_read_reg_byte(adapter, reg->fw_dump_ctrl, &ctrl_data);
		if (ctrl_data == FW_DUMP_DONE)
			return RDWR_STATUS_SUCCESS;
		if (doneflag && ctrl_data == doneflag)
			return RDWR_STATUS_DONE;
2554
		if (ctrl_data != reg->fw_dump_host_ready) {
2555 2556
			mwifiex_dbg(adapter, WARN,
				    "The ctrl reg was changed, re-try again!\n");
2557
			ret = mwifiex_write_reg(adapter, reg->fw_dump_ctrl,
2558
						reg->fw_dump_host_ready);
2559
			if (ret) {
2560 2561
				mwifiex_dbg(adapter, ERROR,
					    "PCIE write err\n");
2562 2563 2564 2565 2566 2567
				return RDWR_STATUS_FAILURE;
			}
		}
		usleep_range(100, 200);
	}

2568
	mwifiex_dbg(adapter, ERROR, "Fail to pull ctrl_data\n");
2569 2570 2571 2572
	return RDWR_STATUS_FAILURE;
}

/* This function dump firmware memory to file */
2573
static void mwifiex_pcie_fw_dump(struct mwifiex_adapter *adapter)
2574 2575 2576 2577
{
	struct pcie_service_card *card = adapter->card;
	const struct mwifiex_pcie_card_reg *creg = card->pcie.reg;
	unsigned int reg, reg_start, reg_end;
2578
	u8 *dbg_ptr, *end_ptr, *tmp_ptr, fw_dump_num, dump_num;
2579
	u8 idx, i, read_reg, doneflag = 0;
2580 2581
	enum rdwr_status stat;
	u32 memory_size;
2582
	int ret;
2583

2584
	if (!card->pcie.can_dump_fw)
2585 2586
		return;

2587 2588 2589
	for (idx = 0; idx < adapter->num_mem_types; idx++) {
		struct memory_type_mapping *entry =
				&adapter->mem_type_mapping_tbl[idx];
2590 2591 2592 2593 2594 2595 2596 2597

		if (entry->mem_ptr) {
			vfree(entry->mem_ptr);
			entry->mem_ptr = NULL;
		}
		entry->mem_size = 0;
	}

2598
	mwifiex_dbg(adapter, MSG, "== mwifiex firmware dump start ==\n");
2599 2600 2601 2602

	/* Read the number of the memories which will dump */
	stat = mwifiex_pcie_rdwr_firmware(adapter, doneflag);
	if (stat == RDWR_STATUS_FAILURE)
2603
		return;
2604 2605

	reg = creg->fw_dump_start;
2606 2607 2608 2609 2610 2611 2612
	mwifiex_read_reg_byte(adapter, reg, &fw_dump_num);

	/* W8997 chipset firmware dump will be restore in single region*/
	if (fw_dump_num == 0)
		dump_num = 1;
	else
		dump_num = fw_dump_num;
2613 2614 2615

	/* Read the length of every memory which will dump */
	for (idx = 0; idx < dump_num; idx++) {
2616 2617
		struct memory_type_mapping *entry =
				&adapter->mem_type_mapping_tbl[idx];
2618
		memory_size = 0;
2619 2620 2621 2622 2623 2624 2625 2626 2627
		if (fw_dump_num != 0) {
			stat = mwifiex_pcie_rdwr_firmware(adapter, doneflag);
			if (stat == RDWR_STATUS_FAILURE)
				return;

			reg = creg->fw_dump_start;
			for (i = 0; i < 4; i++) {
				mwifiex_read_reg_byte(adapter, reg, &read_reg);
				memory_size |= (read_reg << (i * 8));
2628
				reg++;
2629 2630 2631
			}
		} else {
			memory_size = MWIFIEX_FW_DUMP_MAX_MEMSIZE;
2632 2633 2634
		}

		if (memory_size == 0) {
2635
			mwifiex_dbg(adapter, MSG, "Firmware dump Finished!\n");
2636
			ret = mwifiex_write_reg(adapter, creg->fw_dump_ctrl,
2637
						creg->fw_dump_read_done);
2638
			if (ret) {
2639
				mwifiex_dbg(adapter, ERROR, "PCIE write err\n");
2640
				return;
2641
			}
2642 2643 2644
			break;
		}

2645 2646
		mwifiex_dbg(adapter, DUMP,
			    "%s_SIZE=0x%x\n", entry->mem_name, memory_size);
2647 2648 2649
		entry->mem_ptr = vmalloc(memory_size + 1);
		entry->mem_size = memory_size;
		if (!entry->mem_ptr) {
2650 2651
			mwifiex_dbg(adapter, ERROR,
				    "Vmalloc %s failed\n", entry->mem_name);
2652
			return;
2653 2654 2655 2656 2657
		}
		dbg_ptr = entry->mem_ptr;
		end_ptr = dbg_ptr + memory_size;

		doneflag = entry->done_flag;
2658 2659
		mwifiex_dbg(adapter, DUMP, "Start %s output, please wait...\n",
			    entry->mem_name);
2660 2661 2662 2663

		do {
			stat = mwifiex_pcie_rdwr_firmware(adapter, doneflag);
			if (RDWR_STATUS_FAILURE == stat)
2664
				return;
2665 2666 2667 2668 2669

			reg_start = creg->fw_dump_start;
			reg_end = creg->fw_dump_end;
			for (reg = reg_start; reg <= reg_end; reg++) {
				mwifiex_read_reg_byte(adapter, reg, dbg_ptr);
2670
				if (dbg_ptr < end_ptr) {
2671
					dbg_ptr++;
2672
					continue;
2673
				}
2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686
				mwifiex_dbg(adapter, ERROR,
					    "pre-allocated buf not enough\n");
				tmp_ptr =
					vzalloc(memory_size + MWIFIEX_SIZE_4K);
				if (!tmp_ptr)
					return;
				memcpy(tmp_ptr, entry->mem_ptr, memory_size);
				vfree(entry->mem_ptr);
				entry->mem_ptr = tmp_ptr;
				tmp_ptr = NULL;
				dbg_ptr = entry->mem_ptr + memory_size;
				memory_size += MWIFIEX_SIZE_4K;
				end_ptr = entry->mem_ptr + memory_size;
2687 2688 2689 2690 2691
			}

			if (stat != RDWR_STATUS_DONE)
				continue;

2692 2693 2694
			mwifiex_dbg(adapter, DUMP,
				    "%s done: size=0x%tx\n",
				    entry->mem_name, dbg_ptr - entry->mem_ptr);
2695 2696 2697
			break;
		} while (true);
	}
2698
	mwifiex_dbg(adapter, MSG, "== mwifiex firmware dump end ==\n");
2699 2700
}

2701 2702 2703 2704
static void mwifiex_pcie_device_dump_work(struct mwifiex_adapter *adapter)
{
	mwifiex_drv_info_dump(adapter);
	mwifiex_pcie_fw_dump(adapter);
2705
	mwifiex_upload_device_dump(adapter);
2706 2707
}

2708 2709
static unsigned long iface_work_flags;
static struct mwifiex_adapter *save_adapter;
2710 2711
static void mwifiex_pcie_work(struct work_struct *work)
{
2712
	if (test_and_clear_bit(MWIFIEX_IFACE_WORK_DEVICE_DUMP,
2713
			       &iface_work_flags))
2714
		mwifiex_pcie_device_dump_work(save_adapter);
2715 2716
}

2717
static DECLARE_WORK(pcie_work, mwifiex_pcie_work);
2718
/* This function dumps FW information */
2719
static void mwifiex_pcie_device_dump(struct mwifiex_adapter *adapter)
2720
{
2721
	save_adapter = adapter;
2722
	if (test_bit(MWIFIEX_IFACE_WORK_DEVICE_DUMP, &iface_work_flags))
2723 2724
		return;

2725
	set_bit(MWIFIEX_IFACE_WORK_DEVICE_DUMP, &iface_work_flags);
2726

2727
	schedule_work(&pcie_work);
2728 2729
}

2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744
/*
 * This function initializes the PCI-E host memory space, WCB rings, etc.
 *
 * The following initializations steps are followed -
 *      - Allocate TXBD ring buffers
 *      - Allocate RXBD ring buffers
 *      - Allocate event BD ring buffers
 *      - Allocate command response ring buffer
 *      - Allocate sleep cookie buffer
 */
static int mwifiex_pcie_init(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
	int ret;
	struct pci_dev *pdev = card->dev;
2745
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
2746 2747 2748 2749 2750 2751 2752 2753 2754

	pci_set_drvdata(pdev, card);

	ret = pci_enable_device(pdev);
	if (ret)
		goto err_enable_dev;

	pci_set_master(pdev);

X
Xinming Hu 已提交
2755
	pr_notice("try set_consistent_dma_mask(32)\n");
2756 2757
	ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
	if (ret) {
X
Xinming Hu 已提交
2758
		pr_err("set_dma_mask(32) failed\n");
2759 2760 2761 2762 2763
		goto err_set_dma_mask;
	}

	ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
	if (ret) {
X
Xinming Hu 已提交
2764
		pr_err("set_consistent_dma_mask(64) failed\n");
2765 2766 2767 2768 2769
		goto err_set_dma_mask;
	}

	ret = pci_request_region(pdev, 0, DRV_NAME);
	if (ret) {
X
Xinming Hu 已提交
2770
		pr_err("req_reg(0) error\n");
2771 2772 2773 2774
		goto err_req_region0;
	}
	card->pci_mmap = pci_iomap(pdev, 0, 0);
	if (!card->pci_mmap) {
X
Xinming Hu 已提交
2775
		pr_err("iomap(0) error\n");
2776
		ret = -EIO;
2777 2778 2779 2780
		goto err_iomap0;
	}
	ret = pci_request_region(pdev, 2, DRV_NAME);
	if (ret) {
X
Xinming Hu 已提交
2781
		pr_err("req_reg(2) error\n");
2782 2783 2784 2785
		goto err_req_region2;
	}
	card->pci_mmap1 = pci_iomap(pdev, 2, 0);
	if (!card->pci_mmap1) {
X
Xinming Hu 已提交
2786
		pr_err("iomap(2) error\n");
2787
		ret = -EIO;
2788 2789 2790
		goto err_iomap2;
	}

X
Xinming Hu 已提交
2791 2792
	pr_notice("PCI memory map Virt0: %p PCI memory map Virt2: %p\n",
		  card->pci_mmap, card->pci_mmap1);
2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806

	card->cmdrsp_buf = NULL;
	ret = mwifiex_pcie_create_txbd_ring(adapter);
	if (ret)
		goto err_cre_txbd;
	ret = mwifiex_pcie_create_rxbd_ring(adapter);
	if (ret)
		goto err_cre_rxbd;
	ret = mwifiex_pcie_create_evtbd_ring(adapter);
	if (ret)
		goto err_cre_evtbd;
	ret = mwifiex_pcie_alloc_cmdrsp_buf(adapter);
	if (ret)
		goto err_alloc_cmdbuf;
2807 2808 2809 2810 2811 2812 2813
	if (reg->sleep_cookie) {
		ret = mwifiex_pcie_alloc_sleep_cookie_buf(adapter);
		if (ret)
			goto err_alloc_cookie;
	} else {
		card->sleep_cookie_vbase = NULL;
	}
2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852
	return ret;

err_alloc_cookie:
	mwifiex_pcie_delete_cmdrsp_buf(adapter);
err_alloc_cmdbuf:
	mwifiex_pcie_delete_evtbd_ring(adapter);
err_cre_evtbd:
	mwifiex_pcie_delete_rxbd_ring(adapter);
err_cre_rxbd:
	mwifiex_pcie_delete_txbd_ring(adapter);
err_cre_txbd:
	pci_iounmap(pdev, card->pci_mmap1);
err_iomap2:
	pci_release_region(pdev, 2);
err_req_region2:
	pci_iounmap(pdev, card->pci_mmap);
err_iomap0:
	pci_release_region(pdev, 0);
err_req_region0:
err_set_dma_mask:
	pci_disable_device(pdev);
err_enable_dev:
	return ret;
}

/*
 * This function cleans up the allocated card buffers.
 *
 * The following are freed by this function -
 *      - TXBD ring buffers
 *      - RXBD ring buffers
 *      - Event BD ring buffers
 *      - Command response ring buffer
 *      - Sleep cookie buffer
 */
static void mwifiex_pcie_cleanup(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
	struct pci_dev *pdev = card->dev;
2853
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;
2854 2855

	if (user_rmmod) {
2856 2857
		mwifiex_dbg(adapter, INFO,
			    "Clearing driver ready signature\n");
2858
		if (mwifiex_write_reg(adapter, reg->drv_rdy, 0x00000000))
2859 2860
			mwifiex_dbg(adapter, ERROR,
				    "Failed to write driver not-ready signature\n");
2861 2862 2863 2864 2865
	}

	if (pdev) {
		pci_iounmap(pdev, card->pci_mmap);
		pci_iounmap(pdev, card->pci_mmap1);
2866
		pci_disable_device(pdev);
2867 2868
		pci_release_region(pdev, 2);
		pci_release_region(pdev, 0);
2869 2870 2871
	}
}

2872 2873
static int mwifiex_pcie_request_irq(struct mwifiex_adapter *adapter)
{
2874
	int ret, i, j;
2875 2876 2877
	struct pcie_service_card *card = adapter->card;
	struct pci_dev *pdev = card->dev;

2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910
	if (card->pcie.reg->msix_support) {
		for (i = 0; i < MWIFIEX_NUM_MSIX_VECTORS; i++)
			card->msix_entries[i].entry = i;
		ret = pci_enable_msix_exact(pdev, card->msix_entries,
					    MWIFIEX_NUM_MSIX_VECTORS);
		if (!ret) {
			for (i = 0; i < MWIFIEX_NUM_MSIX_VECTORS; i++) {
				card->msix_ctx[i].dev = pdev;
				card->msix_ctx[i].msg_id = i;

				ret = request_irq(card->msix_entries[i].vector,
						  mwifiex_pcie_interrupt, 0,
						  "MWIFIEX_PCIE_MSIX",
						  &card->msix_ctx[i]);
				if (ret)
					break;
			}

			if (ret) {
				mwifiex_dbg(adapter, INFO, "request_irq fail: %d\n",
					    ret);
				for (j = 0; j < i; j++)
					free_irq(card->msix_entries[j].vector,
						 &card->msix_ctx[i]);
				pci_disable_msix(pdev);
			} else {
				mwifiex_dbg(adapter, MSG, "MSIx enabled!");
				card->msix_enable = 1;
				return 0;
			}
		}
	}

2911 2912 2913 2914 2915 2916 2917
	if (pci_enable_msi(pdev) != 0)
		pci_disable_msi(pdev);
	else
		card->msi_enable = 1;

	mwifiex_dbg(adapter, INFO, "msi_enable = %d\n", card->msi_enable);

2918 2919
	card->share_irq_ctx.dev = pdev;
	card->share_irq_ctx.msg_id = -1;
2920
	ret = request_irq(pdev->irq, mwifiex_pcie_interrupt, IRQF_SHARED,
2921
			  "MRVL_PCIE", &card->share_irq_ctx);
2922 2923 2924 2925 2926 2927 2928 2929
	if (ret) {
		pr_err("request_irq failed: ret=%d\n", ret);
		return -1;
	}

	return 0;
}

2930
/*
J
Julia Lawall 已提交
2931
 * This function gets the firmware name for downloading by revision id
2932 2933 2934 2935 2936 2937
 *
 * Read revision id register to get revision id
 */
static void mwifiex_pcie_get_fw_name(struct mwifiex_adapter *adapter)
{
	int revision_id = 0;
2938
	int version, magic;
2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956
	struct pcie_service_card *card = adapter->card;

	switch (card->dev->device) {
	case PCIE_DEVICE_ID_MARVELL_88W8766P:
		strcpy(adapter->fw_name, PCIE8766_DEFAULT_FW_NAME);
		break;
	case PCIE_DEVICE_ID_MARVELL_88W8897:
		mwifiex_write_reg(adapter, 0x0c58, 0x80c00000);
		mwifiex_read_reg(adapter, 0x0c58, &revision_id);
		revision_id &= 0xff00;
		switch (revision_id) {
		case PCIE8897_A0:
			strcpy(adapter->fw_name, PCIE8897_A0_FW_NAME);
			break;
		case PCIE8897_B0:
			strcpy(adapter->fw_name, PCIE8897_B0_FW_NAME);
			break;
		default:
2957 2958
			strcpy(adapter->fw_name, PCIE8897_DEFAULT_FW_NAME);

2959 2960
			break;
		}
2961
		break;
2962
	case PCIE_DEVICE_ID_MARVELL_88W8997:
2963
		mwifiex_read_reg(adapter, 0x8, &revision_id);
2964
		mwifiex_read_reg(adapter, 0x0cd0, &version);
2965 2966
		mwifiex_read_reg(adapter, 0x0cd4, &magic);
		revision_id &= 0xff;
2967
		version &= 0x7;
2968 2969 2970 2971 2972 2973 2974 2975
		magic &= 0xff;
		if (revision_id == PCIE8997_A1 &&
		    magic == CHIP_MAGIC_VALUE &&
		    version == CHIP_VER_PCIEUART)
			strcpy(adapter->fw_name, PCIEUART8997_FW_NAME_V4);
		else
			strcpy(adapter->fw_name, PCIEUSB8997_FW_NAME_V4);
		break;
2976 2977 2978 2979 2980
	default:
		break;
	}
}

2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992
/*
 * This function registers the PCIE device.
 *
 * PCIE IRQ is claimed, block size is set and driver data is initialized.
 */
static int mwifiex_register_dev(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;

	/* save adapter pointer in card */
	card->adapter = adapter;

2993
	if (mwifiex_pcie_request_irq(adapter))
2994 2995
		return -1;

2996
	adapter->tx_buf_size = card->pcie.tx_buf_size;
2997 2998
	adapter->mem_type_mapping_tbl = card->pcie.mem_type_mapping_tbl;
	adapter->num_mem_types = card->pcie.num_mem_types;
2999
	adapter->ext_scan = card->pcie.can_ext_scan;
3000
	mwifiex_pcie_get_fw_name(adapter);
3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013

	return 0;
}

/*
 * This function unregisters the PCIE device.
 *
 * The PCIE IRQ is released, the function is disabled and driver
 * data is set to null.
 */
static void mwifiex_unregister_dev(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
3014
	struct pci_dev *pdev;
3015
	int i;
3016 3017

	if (card) {
3018
		pdev = card->dev;
3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036
		if (card->msix_enable) {
			for (i = 0; i < MWIFIEX_NUM_MSIX_VECTORS; i++)
				synchronize_irq(card->msix_entries[i].vector);

			for (i = 0; i < MWIFIEX_NUM_MSIX_VECTORS; i++)
				free_irq(card->msix_entries[i].vector,
					 &card->msix_ctx[i]);

			card->msix_enable = 0;
			pci_disable_msix(pdev);
	       } else {
			mwifiex_dbg(adapter, INFO,
				    "%s(): calling free_irq()\n", __func__);
		       free_irq(card->dev->irq, &card->share_irq_ctx);

			if (card->msi_enable)
				pci_disable_msi(pdev);
	       }
3037 3038
	}
}
3039

3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120
/* This function initializes the PCI-E host memory space, WCB rings, etc.
 *
 * The following initializations steps are followed -
 *      - Allocate TXBD ring buffers
 *      - Allocate RXBD ring buffers
 *      - Allocate event BD ring buffers
 *      - Allocate command response ring buffer
 *      - Allocate sleep cookie buffer
 * Part of mwifiex_pcie_init(), not reset the PCIE registers
 */
static void mwifiex_pcie_up_dev(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
	int ret;
	struct pci_dev *pdev = card->dev;
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;

	card->cmdrsp_buf = NULL;
	ret = mwifiex_pcie_create_txbd_ring(adapter);
	if (ret) {
		mwifiex_dbg(adapter, ERROR, "Failed to create txbd ring\n");
		goto err_cre_txbd;
	}

	ret = mwifiex_pcie_create_rxbd_ring(adapter);
	if (ret) {
		mwifiex_dbg(adapter, ERROR, "Failed to create rxbd ring\n");
		goto err_cre_rxbd;
	}

	ret = mwifiex_pcie_create_evtbd_ring(adapter);
	if (ret) {
		mwifiex_dbg(adapter, ERROR, "Failed to create evtbd ring\n");
		goto err_cre_evtbd;
	}

	ret = mwifiex_pcie_alloc_cmdrsp_buf(adapter);
	if (ret) {
		mwifiex_dbg(adapter, ERROR, "Failed to allocate cmdbuf buffer\n");
		goto err_alloc_cmdbuf;
	}

	if (reg->sleep_cookie) {
		ret = mwifiex_pcie_alloc_sleep_cookie_buf(adapter);
		if (ret) {
			mwifiex_dbg(adapter, ERROR, "Failed to allocate sleep_cookie buffer\n");
			goto err_alloc_cookie;
		}
	} else {
		card->sleep_cookie_vbase = NULL;
	}
	return;

err_alloc_cookie:
	mwifiex_pcie_delete_cmdrsp_buf(adapter);
err_alloc_cmdbuf:
	mwifiex_pcie_delete_evtbd_ring(adapter);
err_cre_evtbd:
	mwifiex_pcie_delete_rxbd_ring(adapter);
err_cre_rxbd:
	mwifiex_pcie_delete_txbd_ring(adapter);
err_cre_txbd:
	pci_iounmap(pdev, card->pci_mmap1);
}

/* This function cleans up the PCI-E host memory space.
 * Some code is extracted from mwifiex_unregister_dev()
 *
 */
static void mwifiex_pcie_down_dev(struct mwifiex_adapter *adapter)
{
	struct pcie_service_card *card = adapter->card;
	const struct mwifiex_pcie_card_reg *reg = card->pcie.reg;

	if (mwifiex_write_reg(adapter, reg->drv_rdy, 0x00000000))
		mwifiex_dbg(adapter, ERROR, "Failed to write driver not-ready signature\n");

	adapter->seq_num = 0;
	adapter->tx_buf_size = MWIFIEX_TX_DATA_BUF_SIZE_4K;

	if (card) {
3121 3122 3123
		if (reg->sleep_cookie)
			mwifiex_pcie_delete_sleep_cookie_buf(adapter);

3124 3125 3126 3127 3128
		mwifiex_pcie_delete_cmdrsp_buf(adapter);
		mwifiex_pcie_delete_evtbd_ring(adapter);
		mwifiex_pcie_delete_rxbd_ring(adapter);
		mwifiex_pcie_delete_txbd_ring(adapter);
		card->cmdrsp_buf = NULL;
3129
	}
3130 3131

	return;
3132 3133 3134 3135 3136 3137
}

static struct mwifiex_if_ops pcie_ops = {
	.init_if =			mwifiex_pcie_init,
	.cleanup_if =			mwifiex_pcie_cleanup,
	.check_fw_status =		mwifiex_check_fw_status,
3138
	.check_winner_status =          mwifiex_check_winner_status,
3139 3140 3141 3142
	.prog_fw =			mwifiex_prog_fw_w_helper,
	.register_dev =			mwifiex_register_dev,
	.unregister_dev =		mwifiex_unregister_dev,
	.enable_int =			mwifiex_pcie_enable_host_int,
3143
	.disable_int =			mwifiex_pcie_disable_host_int_noerr,
3144 3145 3146 3147 3148 3149 3150 3151 3152 3153
	.process_int_status =		mwifiex_process_int_status,
	.host_to_card =			mwifiex_pcie_host_to_card,
	.wakeup =			mwifiex_pm_wakeup_card,
	.wakeup_complete =		mwifiex_pm_wakeup_card_complete,

	/* PCIE specific */
	.cmdrsp_complete =		mwifiex_pcie_cmdrsp_complete,
	.event_complete =		mwifiex_pcie_event_complete,
	.update_mp_end_port =		NULL,
	.cleanup_mpa_buf =		NULL,
3154
	.init_fw_port =			mwifiex_pcie_init_fw_port,
3155
	.clean_pcie_ring =		mwifiex_clean_pcie_ring_buf,
3156
	.reg_dump =			mwifiex_pcie_reg_dump,
3157
	.device_dump =			mwifiex_pcie_device_dump,
3158 3159
	.down_dev =			mwifiex_pcie_down_dev,
	.up_dev =			mwifiex_pcie_up_dev,
3160 3161 3162 3163 3164
};

/*
 * This function initializes the PCIE driver module.
 *
3165
 * This registers the device with PCIE bus.
3166 3167 3168 3169 3170
 */
static int mwifiex_pcie_init_module(void)
{
	int ret;

A
Avinash Patil 已提交
3171
	pr_debug("Marvell PCIe Driver\n");
3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198

	/* Clear the flag in case user removes the card. */
	user_rmmod = 0;

	ret = pci_register_driver(&mwifiex_pcie);
	if (ret)
		pr_err("Driver register failed!\n");
	else
		pr_debug("info: Driver registered successfully!\n");

	return ret;
}

/*
 * This function cleans up the PCIE driver.
 *
 * The following major steps are followed for cleanup -
 *      - Resume the device if its suspended
 *      - Disconnect the device if connected
 *      - Shutdown the firmware
 *      - Unregister the device from PCIE bus.
 */
static void mwifiex_pcie_cleanup_module(void)
{
	/* Set the flag as user is removing this module. */
	user_rmmod = 1;

3199
	cancel_work_sync(&pcie_work);
3200 3201 3202 3203 3204 3205 3206 3207 3208 3209
	pci_unregister_driver(&mwifiex_pcie);
}

module_init(mwifiex_pcie_init_module);
module_exit(mwifiex_pcie_cleanup_module);

MODULE_AUTHOR("Marvell International Ltd.");
MODULE_DESCRIPTION("Marvell WiFi-Ex PCI-Express Driver version " PCIE_VERSION);
MODULE_VERSION(PCIE_VERSION);
MODULE_LICENSE("GPL v2");