1e705c121SKalle Valo /******************************************************************************
2e705c121SKalle Valo  *
3e705c121SKalle Valo  * This file is provided under a dual BSD/GPLv2 license.  When using or
4e705c121SKalle Valo  * redistributing this file, you may do so under either license.
5e705c121SKalle Valo  *
6e705c121SKalle Valo  * GPL LICENSE SUMMARY
7e705c121SKalle Valo  *
8e705c121SKalle Valo  * Copyright(c) 2007 - 2015 Intel Corporation. All rights reserved.
9e705c121SKalle Valo  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10afb84431SEmmanuel Grumbach  * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
11ea695b7cSShaul Triebitz  * Copyright(c) 2018 - 2019 Intel Corporation
12e705c121SKalle Valo  *
13e705c121SKalle Valo  * This program is free software; you can redistribute it and/or modify
14e705c121SKalle Valo  * it under the terms of version 2 of the GNU General Public License as
15e705c121SKalle Valo  * published by the Free Software Foundation.
16e705c121SKalle Valo  *
17e705c121SKalle Valo  * This program is distributed in the hope that it will be useful, but
18e705c121SKalle Valo  * WITHOUT ANY WARRANTY; without even the implied warranty of
19e705c121SKalle Valo  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20e705c121SKalle Valo  * General Public License for more details.
21e705c121SKalle Valo  *
22e705c121SKalle Valo  * The full GNU General Public License is included in this distribution
23e705c121SKalle Valo  * in the file called COPYING.
24e705c121SKalle Valo  *
25e705c121SKalle Valo  * Contact Information:
26cb2f8277SEmmanuel Grumbach  *  Intel Linux Wireless <linuxwifi@intel.com>
27e705c121SKalle Valo  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28e705c121SKalle Valo  *
29e705c121SKalle Valo  * BSD LICENSE
30e705c121SKalle Valo  *
31e705c121SKalle Valo  * Copyright(c) 2005 - 2015 Intel Corporation. All rights reserved.
32e705c121SKalle Valo  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
33afb84431SEmmanuel Grumbach  * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
34ea695b7cSShaul Triebitz  * Copyright(c) 2018 - 2019 Intel Corporation
35e705c121SKalle Valo  * All rights reserved.
36e705c121SKalle Valo  *
37e705c121SKalle Valo  * Redistribution and use in source and binary forms, with or without
38e705c121SKalle Valo  * modification, are permitted provided that the following conditions
39e705c121SKalle Valo  * are met:
40e705c121SKalle Valo  *
41e705c121SKalle Valo  *  * Redistributions of source code must retain the above copyright
42e705c121SKalle Valo  *    notice, this list of conditions and the following disclaimer.
43e705c121SKalle Valo  *  * Redistributions in binary form must reproduce the above copyright
44e705c121SKalle Valo  *    notice, this list of conditions and the following disclaimer in
45e705c121SKalle Valo  *    the documentation and/or other materials provided with the
46e705c121SKalle Valo  *    distribution.
47e705c121SKalle Valo  *  * Neither the name Intel Corporation nor the names of its
48e705c121SKalle Valo  *    contributors may be used to endorse or promote products derived
49e705c121SKalle Valo  *    from this software without specific prior written permission.
50e705c121SKalle Valo  *
51e705c121SKalle Valo  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
52e705c121SKalle Valo  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
53e705c121SKalle Valo  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
54e705c121SKalle Valo  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
55e705c121SKalle Valo  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
56e705c121SKalle Valo  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
57e705c121SKalle Valo  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58e705c121SKalle Valo  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
59e705c121SKalle Valo  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
60e705c121SKalle Valo  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
61e705c121SKalle Valo  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62e705c121SKalle Valo  *
63e705c121SKalle Valo  *****************************************************************************/
64e705c121SKalle Valo #include <linux/pci.h>
65e705c121SKalle Valo #include <linux/pci-aspm.h>
66e705c121SKalle Valo #include <linux/interrupt.h>
67e705c121SKalle Valo #include <linux/debugfs.h>
68e705c121SKalle Valo #include <linux/sched.h>
69e705c121SKalle Valo #include <linux/bitops.h>
70e705c121SKalle Valo #include <linux/gfp.h>
71e705c121SKalle Valo #include <linux/vmalloc.h>
7249564a80SLuca Coelho #include <linux/module.h>
73f7805b33SLior Cohen #include <linux/wait.h>
74e705c121SKalle Valo 
75e705c121SKalle Valo #include "iwl-drv.h"
76e705c121SKalle Valo #include "iwl-trans.h"
77e705c121SKalle Valo #include "iwl-csr.h"
78e705c121SKalle Valo #include "iwl-prph.h"
79e705c121SKalle Valo #include "iwl-scd.h"
80e705c121SKalle Valo #include "iwl-agn-hw.h"
81d962f9b1SJohannes Berg #include "fw/error-dump.h"
82520f03eaSShahar S Matityahu #include "fw/dbg.h"
83e705c121SKalle Valo #include "internal.h"
84e705c121SKalle Valo #include "iwl-fh.h"
85e705c121SKalle Valo 
86e705c121SKalle Valo /* extended range in FW SRAM */
87e705c121SKalle Valo #define IWL_FW_MEM_EXTENDED_START	0x40000
88e705c121SKalle Valo #define IWL_FW_MEM_EXTENDED_END		0x57FFF
89e705c121SKalle Valo 
904290eaadSJohannes Berg void iwl_trans_pcie_dump_regs(struct iwl_trans *trans)
91a6d24fadSRajat Jain {
92c4d3f2eeSLuca Coelho #define PCI_DUMP_SIZE		352
93c4d3f2eeSLuca Coelho #define PCI_MEM_DUMP_SIZE	64
94c4d3f2eeSLuca Coelho #define PCI_PARENT_DUMP_SIZE	524
95a6d24fadSRajat Jain #define PREFIX_LEN		32
96a6d24fadSRajat Jain 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
97a6d24fadSRajat Jain 	struct pci_dev *pdev = trans_pcie->pci_dev;
98a6d24fadSRajat Jain 	u32 i, pos, alloc_size, *ptr, *buf;
99a6d24fadSRajat Jain 	char *prefix;
100a6d24fadSRajat Jain 
101a6d24fadSRajat Jain 	if (trans_pcie->pcie_dbg_dumped_once)
102a6d24fadSRajat Jain 		return;
103a6d24fadSRajat Jain 
104a6d24fadSRajat Jain 	/* Should be a multiple of 4 */
105a6d24fadSRajat Jain 	BUILD_BUG_ON(PCI_DUMP_SIZE > 4096 || PCI_DUMP_SIZE & 0x3);
106c4d3f2eeSLuca Coelho 	BUILD_BUG_ON(PCI_MEM_DUMP_SIZE > 4096 || PCI_MEM_DUMP_SIZE & 0x3);
107c4d3f2eeSLuca Coelho 	BUILD_BUG_ON(PCI_PARENT_DUMP_SIZE > 4096 || PCI_PARENT_DUMP_SIZE & 0x3);
108c4d3f2eeSLuca Coelho 
109a6d24fadSRajat Jain 	/* Alloc a max size buffer */
110a6d24fadSRajat Jain 	alloc_size = PCI_ERR_ROOT_ERR_SRC +  4 + PREFIX_LEN;
111c4d3f2eeSLuca Coelho 	alloc_size = max_t(u32, alloc_size, PCI_DUMP_SIZE + PREFIX_LEN);
112c4d3f2eeSLuca Coelho 	alloc_size = max_t(u32, alloc_size, PCI_MEM_DUMP_SIZE + PREFIX_LEN);
113c4d3f2eeSLuca Coelho 	alloc_size = max_t(u32, alloc_size, PCI_PARENT_DUMP_SIZE + PREFIX_LEN);
114c4d3f2eeSLuca Coelho 
115a6d24fadSRajat Jain 	buf = kmalloc(alloc_size, GFP_ATOMIC);
116a6d24fadSRajat Jain 	if (!buf)
117a6d24fadSRajat Jain 		return;
118a6d24fadSRajat Jain 	prefix = (char *)buf + alloc_size - PREFIX_LEN;
119a6d24fadSRajat Jain 
120a6d24fadSRajat Jain 	IWL_ERR(trans, "iwlwifi transaction failed, dumping registers\n");
121a6d24fadSRajat Jain 
122a6d24fadSRajat Jain 	/* Print wifi device registers */
123a6d24fadSRajat Jain 	sprintf(prefix, "iwlwifi %s: ", pci_name(pdev));
124a6d24fadSRajat Jain 	IWL_ERR(trans, "iwlwifi device config registers:\n");
125a6d24fadSRajat Jain 	for (i = 0, ptr = buf; i < PCI_DUMP_SIZE; i += 4, ptr++)
126a6d24fadSRajat Jain 		if (pci_read_config_dword(pdev, i, ptr))
127a6d24fadSRajat Jain 			goto err_read;
128a6d24fadSRajat Jain 	print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET, 32, 4, buf, i, 0);
129a6d24fadSRajat Jain 
130a6d24fadSRajat Jain 	IWL_ERR(trans, "iwlwifi device memory mapped registers:\n");
131c4d3f2eeSLuca Coelho 	for (i = 0, ptr = buf; i < PCI_MEM_DUMP_SIZE; i += 4, ptr++)
132a6d24fadSRajat Jain 		*ptr = iwl_read32(trans, i);
133a6d24fadSRajat Jain 	print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET, 32, 4, buf, i, 0);
134a6d24fadSRajat Jain 
135a6d24fadSRajat Jain 	pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ERR);
136a6d24fadSRajat Jain 	if (pos) {
137a6d24fadSRajat Jain 		IWL_ERR(trans, "iwlwifi device AER capability structure:\n");
138a6d24fadSRajat Jain 		for (i = 0, ptr = buf; i < PCI_ERR_ROOT_COMMAND; i += 4, ptr++)
139a6d24fadSRajat Jain 			if (pci_read_config_dword(pdev, pos + i, ptr))
140a6d24fadSRajat Jain 				goto err_read;
141a6d24fadSRajat Jain 		print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET,
142a6d24fadSRajat Jain 			       32, 4, buf, i, 0);
143a6d24fadSRajat Jain 	}
144a6d24fadSRajat Jain 
145a6d24fadSRajat Jain 	/* Print parent device registers next */
146a6d24fadSRajat Jain 	if (!pdev->bus->self)
147a6d24fadSRajat Jain 		goto out;
148a6d24fadSRajat Jain 
149a6d24fadSRajat Jain 	pdev = pdev->bus->self;
150a6d24fadSRajat Jain 	sprintf(prefix, "iwlwifi %s: ", pci_name(pdev));
151a6d24fadSRajat Jain 
152a6d24fadSRajat Jain 	IWL_ERR(trans, "iwlwifi parent port (%s) config registers:\n",
153a6d24fadSRajat Jain 		pci_name(pdev));
154c4d3f2eeSLuca Coelho 	for (i = 0, ptr = buf; i < PCI_PARENT_DUMP_SIZE; i += 4, ptr++)
155a6d24fadSRajat Jain 		if (pci_read_config_dword(pdev, i, ptr))
156a6d24fadSRajat Jain 			goto err_read;
157a6d24fadSRajat Jain 	print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET, 32, 4, buf, i, 0);
158a6d24fadSRajat Jain 
159a6d24fadSRajat Jain 	/* Print root port AER registers */
160a6d24fadSRajat Jain 	pos = 0;
161a6d24fadSRajat Jain 	pdev = pcie_find_root_port(pdev);
162a6d24fadSRajat Jain 	if (pdev)
163a6d24fadSRajat Jain 		pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ERR);
164a6d24fadSRajat Jain 	if (pos) {
165a6d24fadSRajat Jain 		IWL_ERR(trans, "iwlwifi root port (%s) AER cap structure:\n",
166a6d24fadSRajat Jain 			pci_name(pdev));
167a6d24fadSRajat Jain 		sprintf(prefix, "iwlwifi %s: ", pci_name(pdev));
168a6d24fadSRajat Jain 		for (i = 0, ptr = buf; i <= PCI_ERR_ROOT_ERR_SRC; i += 4, ptr++)
169a6d24fadSRajat Jain 			if (pci_read_config_dword(pdev, pos + i, ptr))
170a6d24fadSRajat Jain 				goto err_read;
171a6d24fadSRajat Jain 		print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET, 32,
172a6d24fadSRajat Jain 			       4, buf, i, 0);
173a6d24fadSRajat Jain 	}
174f3402d6dSSara Sharon 	goto out;
175a6d24fadSRajat Jain 
176a6d24fadSRajat Jain err_read:
177a6d24fadSRajat Jain 	print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET, 32, 4, buf, i, 0);
178a6d24fadSRajat Jain 	IWL_ERR(trans, "Read failed at 0x%X\n", i);
179a6d24fadSRajat Jain out:
180a6d24fadSRajat Jain 	trans_pcie->pcie_dbg_dumped_once = 1;
181a6d24fadSRajat Jain 	kfree(buf);
182a6d24fadSRajat Jain }
183a6d24fadSRajat Jain 
184870c2a11SGolan Ben Ami static void iwl_trans_pcie_sw_reset(struct iwl_trans *trans)
185870c2a11SGolan Ben Ami {
186870c2a11SGolan Ben Ami 	/* Reset entire device - do controller reset (results in SHRD_HW_RST) */
18779b6c8feSLuca Coelho 	iwl_set_bit(trans, trans->cfg->trans.csr->addr_sw_reset,
18879b6c8feSLuca Coelho 		    BIT(trans->cfg->trans.csr->flag_sw_reset));
189870c2a11SGolan Ben Ami 	usleep_range(5000, 6000);
190870c2a11SGolan Ben Ami }
191870c2a11SGolan Ben Ami 
192e705c121SKalle Valo static void iwl_pcie_free_fw_monitor(struct iwl_trans *trans)
193e705c121SKalle Valo {
19488964b2eSSara Sharon 	int i;
195e705c121SKalle Valo 
19691c28b83SShahar S Matityahu 	for (i = 0; i < trans->dbg.num_blocks; i++) {
19791c28b83SShahar S Matityahu 		dma_free_coherent(trans->dev, trans->dbg.fw_mon[i].size,
19891c28b83SShahar S Matityahu 				  trans->dbg.fw_mon[i].block,
19991c28b83SShahar S Matityahu 				  trans->dbg.fw_mon[i].physical);
20091c28b83SShahar S Matityahu 		trans->dbg.fw_mon[i].block = NULL;
20191c28b83SShahar S Matityahu 		trans->dbg.fw_mon[i].physical = 0;
20291c28b83SShahar S Matityahu 		trans->dbg.fw_mon[i].size = 0;
20391c28b83SShahar S Matityahu 		trans->dbg.num_blocks--;
20488964b2eSSara Sharon 	}
205e705c121SKalle Valo }
206e705c121SKalle Valo 
20788964b2eSSara Sharon static void iwl_pcie_alloc_fw_monitor_block(struct iwl_trans *trans,
20888964b2eSSara Sharon 					    u8 max_power, u8 min_power)
209e705c121SKalle Valo {
210c5f97542SShahar S Matityahu 	void *cpu_addr = NULL;
21188964b2eSSara Sharon 	dma_addr_t phys = 0;
212e705c121SKalle Valo 	u32 size = 0;
213e705c121SKalle Valo 	u8 power;
214e705c121SKalle Valo 
21588964b2eSSara Sharon 	for (power = max_power; power >= min_power; power--) {
216e705c121SKalle Valo 		size = BIT(power);
217c5f97542SShahar S Matityahu 		cpu_addr = dma_alloc_coherent(trans->dev, size, &phys,
2182d46f7afSChristoph Hellwig 					      GFP_KERNEL | __GFP_NOWARN);
219c5f97542SShahar S Matityahu 		if (!cpu_addr)
220e705c121SKalle Valo 			continue;
221e705c121SKalle Valo 
222e705c121SKalle Valo 		IWL_INFO(trans,
223c5f97542SShahar S Matityahu 			 "Allocated 0x%08x bytes for firmware monitor.\n",
224c5f97542SShahar S Matityahu 			 size);
225e705c121SKalle Valo 		break;
226e705c121SKalle Valo 	}
227e705c121SKalle Valo 
228c5f97542SShahar S Matityahu 	if (WARN_ON_ONCE(!cpu_addr))
229e705c121SKalle Valo 		return;
230e705c121SKalle Valo 
231e705c121SKalle Valo 	if (power != max_power)
232e705c121SKalle Valo 		IWL_ERR(trans,
233e705c121SKalle Valo 			"Sorry - debug buffer is only %luK while you requested %luK\n",
234e705c121SKalle Valo 			(unsigned long)BIT(power - 10),
235e705c121SKalle Valo 			(unsigned long)BIT(max_power - 10));
236e705c121SKalle Valo 
23791c28b83SShahar S Matityahu 	trans->dbg.fw_mon[trans->dbg.num_blocks].block = cpu_addr;
23891c28b83SShahar S Matityahu 	trans->dbg.fw_mon[trans->dbg.num_blocks].physical = phys;
23991c28b83SShahar S Matityahu 	trans->dbg.fw_mon[trans->dbg.num_blocks].size = size;
24091c28b83SShahar S Matityahu 	trans->dbg.num_blocks++;
24188964b2eSSara Sharon }
24288964b2eSSara Sharon 
24388964b2eSSara Sharon void iwl_pcie_alloc_fw_monitor(struct iwl_trans *trans, u8 max_power)
24488964b2eSSara Sharon {
24588964b2eSSara Sharon 	if (!max_power) {
24688964b2eSSara Sharon 		/* default max_power is maximum */
24788964b2eSSara Sharon 		max_power = 26;
24888964b2eSSara Sharon 	} else {
24988964b2eSSara Sharon 		max_power += 11;
25088964b2eSSara Sharon 	}
25188964b2eSSara Sharon 
25288964b2eSSara Sharon 	if (WARN(max_power > 26,
25388964b2eSSara Sharon 		 "External buffer size for monitor is too big %d, check the FW TLV\n",
25488964b2eSSara Sharon 		 max_power))
25588964b2eSSara Sharon 		return;
25688964b2eSSara Sharon 
25788964b2eSSara Sharon 	/*
25888964b2eSSara Sharon 	 * This function allocats the default fw monitor.
25988964b2eSSara Sharon 	 * The optional additional ones will be allocated in runtime
26088964b2eSSara Sharon 	 */
26191c28b83SShahar S Matityahu 	if (trans->dbg.num_blocks)
26288964b2eSSara Sharon 		return;
26388964b2eSSara Sharon 
26488964b2eSSara Sharon 	iwl_pcie_alloc_fw_monitor_block(trans, max_power, 11);
265e705c121SKalle Valo }
266e705c121SKalle Valo 
267e705c121SKalle Valo static u32 iwl_trans_pcie_read_shr(struct iwl_trans *trans, u32 reg)
268e705c121SKalle Valo {
269e705c121SKalle Valo 	iwl_write32(trans, HEEP_CTRL_WRD_PCIEX_CTRL_REG,
270e705c121SKalle Valo 		    ((reg & 0x0000ffff) | (2 << 28)));
271e705c121SKalle Valo 	return iwl_read32(trans, HEEP_CTRL_WRD_PCIEX_DATA_REG);
272e705c121SKalle Valo }
273e705c121SKalle Valo 
274e705c121SKalle Valo static void iwl_trans_pcie_write_shr(struct iwl_trans *trans, u32 reg, u32 val)
275e705c121SKalle Valo {
276e705c121SKalle Valo 	iwl_write32(trans, HEEP_CTRL_WRD_PCIEX_DATA_REG, val);
277e705c121SKalle Valo 	iwl_write32(trans, HEEP_CTRL_WRD_PCIEX_CTRL_REG,
278e705c121SKalle Valo 		    ((reg & 0x0000ffff) | (3 << 28)));
279e705c121SKalle Valo }
280e705c121SKalle Valo 
281e705c121SKalle Valo static void iwl_pcie_set_pwr(struct iwl_trans *trans, bool vaux)
282e705c121SKalle Valo {
283e705c121SKalle Valo 	if (trans->cfg->apmg_not_supported)
284e705c121SKalle Valo 		return;
285e705c121SKalle Valo 
286e705c121SKalle Valo 	if (vaux && pci_pme_capable(to_pci_dev(trans->dev), PCI_D3cold))
287e705c121SKalle Valo 		iwl_set_bits_mask_prph(trans, APMG_PS_CTRL_REG,
288e705c121SKalle Valo 				       APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
289e705c121SKalle Valo 				       ~APMG_PS_CTRL_MSK_PWR_SRC);
290e705c121SKalle Valo 	else
291e705c121SKalle Valo 		iwl_set_bits_mask_prph(trans, APMG_PS_CTRL_REG,
292e705c121SKalle Valo 				       APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
293e705c121SKalle Valo 				       ~APMG_PS_CTRL_MSK_PWR_SRC);
294e705c121SKalle Valo }
295e705c121SKalle Valo 
296e705c121SKalle Valo /* PCI registers */
297e705c121SKalle Valo #define PCI_CFG_RETRY_TIMEOUT	0x041
298e705c121SKalle Valo 
299eda50cdeSSara Sharon void iwl_pcie_apm_config(struct iwl_trans *trans)
300e705c121SKalle Valo {
301e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
302e705c121SKalle Valo 	u16 lctl;
303e705c121SKalle Valo 	u16 cap;
304e705c121SKalle Valo 
305e705c121SKalle Valo 	/*
306e705c121SKalle Valo 	 * HW bug W/A for instability in PCIe bus L0S->L1 transition.
307e705c121SKalle Valo 	 * Check if BIOS (or OS) enabled L1-ASPM on this device.
308e705c121SKalle Valo 	 * If so (likely), disable L0S, so device moves directly L0->L1;
309e705c121SKalle Valo 	 *    costs negligible amount of power savings.
310e705c121SKalle Valo 	 * If not (unlikely), enable L0S, so there is at least some
311e705c121SKalle Valo 	 *    power savings, even without L1.
312e705c121SKalle Valo 	 */
313e705c121SKalle Valo 	pcie_capability_read_word(trans_pcie->pci_dev, PCI_EXP_LNKCTL, &lctl);
314e705c121SKalle Valo 	if (lctl & PCI_EXP_LNKCTL_ASPM_L1)
315e705c121SKalle Valo 		iwl_set_bit(trans, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_ENABLED);
316e705c121SKalle Valo 	else
317e705c121SKalle Valo 		iwl_clear_bit(trans, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_ENABLED);
318e705c121SKalle Valo 	trans->pm_support = !(lctl & PCI_EXP_LNKCTL_ASPM_L0S);
319e705c121SKalle Valo 
320e705c121SKalle Valo 	pcie_capability_read_word(trans_pcie->pci_dev, PCI_EXP_DEVCTL2, &cap);
321e705c121SKalle Valo 	trans->ltr_enabled = cap & PCI_EXP_DEVCTL2_LTR_EN;
322d74a61fcSLuca Coelho 	IWL_DEBUG_POWER(trans, "L1 %sabled - LTR %sabled\n",
323e705c121SKalle Valo 			(lctl & PCI_EXP_LNKCTL_ASPM_L1) ? "En" : "Dis",
324e705c121SKalle Valo 			trans->ltr_enabled ? "En" : "Dis");
325e705c121SKalle Valo }
326e705c121SKalle Valo 
327e705c121SKalle Valo /*
328e705c121SKalle Valo  * Start up NIC's basic functionality after it has been reset
329e705c121SKalle Valo  * (e.g. after platform boot, or shutdown via iwl_pcie_apm_stop())
330e705c121SKalle Valo  * NOTE:  This does not load uCode nor start the embedded processor
331e705c121SKalle Valo  */
332e705c121SKalle Valo static int iwl_pcie_apm_init(struct iwl_trans *trans)
333e705c121SKalle Valo {
33452b6e168SEmmanuel Grumbach 	int ret;
33552b6e168SEmmanuel Grumbach 
336e705c121SKalle Valo 	IWL_DEBUG_INFO(trans, "Init card's basic functions\n");
337e705c121SKalle Valo 
338e705c121SKalle Valo 	/*
339e705c121SKalle Valo 	 * Use "set_bit" below rather than "write", to preserve any hardware
340e705c121SKalle Valo 	 * bits already set by default after reset.
341e705c121SKalle Valo 	 */
342e705c121SKalle Valo 
343e705c121SKalle Valo 	/* Disable L0S exit timer (platform NMI Work/Around) */
34479b6c8feSLuca Coelho 	if (trans->cfg->trans.device_family < IWL_DEVICE_FAMILY_8000)
345e705c121SKalle Valo 		iwl_set_bit(trans, CSR_GIO_CHICKEN_BITS,
346e705c121SKalle Valo 			    CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
347e705c121SKalle Valo 
348e705c121SKalle Valo 	/*
349e705c121SKalle Valo 	 * Disable L0s without affecting L1;
350e705c121SKalle Valo 	 *  don't wait for ICH L0s (ICH bug W/A)
351e705c121SKalle Valo 	 */
352e705c121SKalle Valo 	iwl_set_bit(trans, CSR_GIO_CHICKEN_BITS,
353e705c121SKalle Valo 		    CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
354e705c121SKalle Valo 
355e705c121SKalle Valo 	/* Set FH wait threshold to maximum (HW error during stress W/A) */
356e705c121SKalle Valo 	iwl_set_bit(trans, CSR_DBG_HPET_MEM_REG, CSR_DBG_HPET_MEM_REG_VAL);
357e705c121SKalle Valo 
358e705c121SKalle Valo 	/*
359e705c121SKalle Valo 	 * Enable HAP INTA (interrupt from management bus) to
360e705c121SKalle Valo 	 * wake device's PCI Express link L1a -> L0s
361e705c121SKalle Valo 	 */
362e705c121SKalle Valo 	iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
363e705c121SKalle Valo 		    CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A);
364e705c121SKalle Valo 
365e705c121SKalle Valo 	iwl_pcie_apm_config(trans);
366e705c121SKalle Valo 
367e705c121SKalle Valo 	/* Configure analog phase-lock-loop before activating to D0A */
36879b6c8feSLuca Coelho 	if (trans->cfg->trans.base_params->pll_cfg)
36977d76931SJohannes Berg 		iwl_set_bit(trans, CSR_ANA_PLL_CFG, CSR50_ANA_PLL_CFG_VAL);
370e705c121SKalle Valo 
37179b6c8feSLuca Coelho 	ret = iwl_finish_nic_init(trans, &trans->cfg->trans);
372c96b5eecSJohannes Berg 	if (ret)
37352b6e168SEmmanuel Grumbach 		return ret;
374e705c121SKalle Valo 
375e705c121SKalle Valo 	if (trans->cfg->host_interrupt_operation_mode) {
376e705c121SKalle Valo 		/*
377e705c121SKalle Valo 		 * This is a bit of an abuse - This is needed for 7260 / 3160
378e705c121SKalle Valo 		 * only check host_interrupt_operation_mode even if this is
379e705c121SKalle Valo 		 * not related to host_interrupt_operation_mode.
380e705c121SKalle Valo 		 *
381e705c121SKalle Valo 		 * Enable the oscillator to count wake up time for L1 exit. This
382e705c121SKalle Valo 		 * consumes slightly more power (100uA) - but allows to be sure
383e705c121SKalle Valo 		 * that we wake up from L1 on time.
384e705c121SKalle Valo 		 *
385e705c121SKalle Valo 		 * This looks weird: read twice the same register, discard the
386e705c121SKalle Valo 		 * value, set a bit, and yet again, read that same register
387e705c121SKalle Valo 		 * just to discard the value. But that's the way the hardware
388e705c121SKalle Valo 		 * seems to like it.
389e705c121SKalle Valo 		 */
390e705c121SKalle Valo 		iwl_read_prph(trans, OSC_CLK);
391e705c121SKalle Valo 		iwl_read_prph(trans, OSC_CLK);
392e705c121SKalle Valo 		iwl_set_bits_prph(trans, OSC_CLK, OSC_CLK_FORCE_CONTROL);
393e705c121SKalle Valo 		iwl_read_prph(trans, OSC_CLK);
394e705c121SKalle Valo 		iwl_read_prph(trans, OSC_CLK);
395e705c121SKalle Valo 	}
396e705c121SKalle Valo 
397e705c121SKalle Valo 	/*
398e705c121SKalle Valo 	 * Enable DMA clock and wait for it to stabilize.
399e705c121SKalle Valo 	 *
400e705c121SKalle Valo 	 * Write to "CLK_EN_REG"; "1" bits enable clocks, while "0"
401e705c121SKalle Valo 	 * bits do not disable clocks.  This preserves any hardware
402e705c121SKalle Valo 	 * bits already set by default in "CLK_CTRL_REG" after reset.
403e705c121SKalle Valo 	 */
404e705c121SKalle Valo 	if (!trans->cfg->apmg_not_supported) {
405e705c121SKalle Valo 		iwl_write_prph(trans, APMG_CLK_EN_REG,
406e705c121SKalle Valo 			       APMG_CLK_VAL_DMA_CLK_RQT);
407e705c121SKalle Valo 		udelay(20);
408e705c121SKalle Valo 
409e705c121SKalle Valo 		/* Disable L1-Active */
410e705c121SKalle Valo 		iwl_set_bits_prph(trans, APMG_PCIDEV_STT_REG,
411e705c121SKalle Valo 				  APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
412e705c121SKalle Valo 
413e705c121SKalle Valo 		/* Clear the interrupt in APMG if the NIC is in RFKILL */
414e705c121SKalle Valo 		iwl_write_prph(trans, APMG_RTC_INT_STT_REG,
415e705c121SKalle Valo 			       APMG_RTC_INT_STT_RFKILL);
416e705c121SKalle Valo 	}
417e705c121SKalle Valo 
418e705c121SKalle Valo 	set_bit(STATUS_DEVICE_ENABLED, &trans->status);
419e705c121SKalle Valo 
42052b6e168SEmmanuel Grumbach 	return 0;
421e705c121SKalle Valo }
422e705c121SKalle Valo 
423e705c121SKalle Valo /*
424e705c121SKalle Valo  * Enable LP XTAL to avoid HW bug where device may consume much power if
425e705c121SKalle Valo  * FW is not loaded after device reset. LP XTAL is disabled by default
426e705c121SKalle Valo  * after device HW reset. Do it only if XTAL is fed by internal source.
427e705c121SKalle Valo  * Configure device's "persistence" mode to avoid resetting XTAL again when
428e705c121SKalle Valo  * SHRD_HW_RST occurs in S3.
429e705c121SKalle Valo  */
430e705c121SKalle Valo static void iwl_pcie_apm_lp_xtal_enable(struct iwl_trans *trans)
431e705c121SKalle Valo {
432e705c121SKalle Valo 	int ret;
433e705c121SKalle Valo 	u32 apmg_gp1_reg;
434e705c121SKalle Valo 	u32 apmg_xtal_cfg_reg;
435e705c121SKalle Valo 	u32 dl_cfg_reg;
436e705c121SKalle Valo 
437e705c121SKalle Valo 	/* Force XTAL ON */
438e705c121SKalle Valo 	__iwl_trans_pcie_set_bit(trans, CSR_GP_CNTRL,
439e705c121SKalle Valo 				 CSR_GP_CNTRL_REG_FLAG_XTAL_ON);
440e705c121SKalle Valo 
441870c2a11SGolan Ben Ami 	iwl_trans_pcie_sw_reset(trans);
442e705c121SKalle Valo 
44379b6c8feSLuca Coelho 	ret = iwl_finish_nic_init(trans, &trans->cfg->trans);
444c96b5eecSJohannes Berg 	if (WARN_ON(ret)) {
445e705c121SKalle Valo 		/* Release XTAL ON request */
446e705c121SKalle Valo 		__iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
447e705c121SKalle Valo 					   CSR_GP_CNTRL_REG_FLAG_XTAL_ON);
448e705c121SKalle Valo 		return;
449e705c121SKalle Valo 	}
450e705c121SKalle Valo 
451e705c121SKalle Valo 	/*
452e705c121SKalle Valo 	 * Clear "disable persistence" to avoid LP XTAL resetting when
453e705c121SKalle Valo 	 * SHRD_HW_RST is applied in S3.
454e705c121SKalle Valo 	 */
455e705c121SKalle Valo 	iwl_clear_bits_prph(trans, APMG_PCIDEV_STT_REG,
456e705c121SKalle Valo 				    APMG_PCIDEV_STT_VAL_PERSIST_DIS);
457e705c121SKalle Valo 
458e705c121SKalle Valo 	/*
459e705c121SKalle Valo 	 * Force APMG XTAL to be active to prevent its disabling by HW
460e705c121SKalle Valo 	 * caused by APMG idle state.
461e705c121SKalle Valo 	 */
462e705c121SKalle Valo 	apmg_xtal_cfg_reg = iwl_trans_pcie_read_shr(trans,
463e705c121SKalle Valo 						    SHR_APMG_XTAL_CFG_REG);
464e705c121SKalle Valo 	iwl_trans_pcie_write_shr(trans, SHR_APMG_XTAL_CFG_REG,
465e705c121SKalle Valo 				 apmg_xtal_cfg_reg |
466e705c121SKalle Valo 				 SHR_APMG_XTAL_CFG_XTAL_ON_REQ);
467e705c121SKalle Valo 
468870c2a11SGolan Ben Ami 	iwl_trans_pcie_sw_reset(trans);
469e705c121SKalle Valo 
470e705c121SKalle Valo 	/* Enable LP XTAL by indirect access through CSR */
471e705c121SKalle Valo 	apmg_gp1_reg = iwl_trans_pcie_read_shr(trans, SHR_APMG_GP1_REG);
472e705c121SKalle Valo 	iwl_trans_pcie_write_shr(trans, SHR_APMG_GP1_REG, apmg_gp1_reg |
473e705c121SKalle Valo 				 SHR_APMG_GP1_WF_XTAL_LP_EN |
474e705c121SKalle Valo 				 SHR_APMG_GP1_CHICKEN_BIT_SELECT);
475e705c121SKalle Valo 
476e705c121SKalle Valo 	/* Clear delay line clock power up */
477e705c121SKalle Valo 	dl_cfg_reg = iwl_trans_pcie_read_shr(trans, SHR_APMG_DL_CFG_REG);
478e705c121SKalle Valo 	iwl_trans_pcie_write_shr(trans, SHR_APMG_DL_CFG_REG, dl_cfg_reg &
479e705c121SKalle Valo 				 ~SHR_APMG_DL_CFG_DL_CLOCK_POWER_UP);
480e705c121SKalle Valo 
481e705c121SKalle Valo 	/*
482e705c121SKalle Valo 	 * Enable persistence mode to avoid LP XTAL resetting when
483e705c121SKalle Valo 	 * SHRD_HW_RST is applied in S3.
484e705c121SKalle Valo 	 */
485e705c121SKalle Valo 	iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
486e705c121SKalle Valo 		    CSR_HW_IF_CONFIG_REG_PERSIST_MODE);
487e705c121SKalle Valo 
488e705c121SKalle Valo 	/*
489e705c121SKalle Valo 	 * Clear "initialization complete" bit to move adapter from
490e705c121SKalle Valo 	 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
491e705c121SKalle Valo 	 */
492e705c121SKalle Valo 	iwl_clear_bit(trans, CSR_GP_CNTRL,
49379b6c8feSLuca Coelho 		      BIT(trans->cfg->trans.csr->flag_init_done));
494e705c121SKalle Valo 
495e705c121SKalle Valo 	/* Activates XTAL resources monitor */
496e705c121SKalle Valo 	__iwl_trans_pcie_set_bit(trans, CSR_MONITOR_CFG_REG,
497e705c121SKalle Valo 				 CSR_MONITOR_XTAL_RESOURCES);
498e705c121SKalle Valo 
499e705c121SKalle Valo 	/* Release XTAL ON request */
500e705c121SKalle Valo 	__iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
501e705c121SKalle Valo 				   CSR_GP_CNTRL_REG_FLAG_XTAL_ON);
502e705c121SKalle Valo 	udelay(10);
503e705c121SKalle Valo 
504e705c121SKalle Valo 	/* Release APMG XTAL */
505e705c121SKalle Valo 	iwl_trans_pcie_write_shr(trans, SHR_APMG_XTAL_CFG_REG,
506e705c121SKalle Valo 				 apmg_xtal_cfg_reg &
507e705c121SKalle Valo 				 ~SHR_APMG_XTAL_CFG_XTAL_ON_REQ);
508e705c121SKalle Valo }
509e705c121SKalle Valo 
510e8c8935eSJohannes Berg void iwl_pcie_apm_stop_master(struct iwl_trans *trans)
511e705c121SKalle Valo {
512e8c8935eSJohannes Berg 	int ret;
513e705c121SKalle Valo 
514e705c121SKalle Valo 	/* stop device's busmaster DMA activity */
51579b6c8feSLuca Coelho 	iwl_set_bit(trans, trans->cfg->trans.csr->addr_sw_reset,
51679b6c8feSLuca Coelho 		    BIT(trans->cfg->trans.csr->flag_stop_master));
517e705c121SKalle Valo 
51879b6c8feSLuca Coelho 	ret = iwl_poll_bit(trans, trans->cfg->trans.csr->addr_sw_reset,
51979b6c8feSLuca Coelho 			   BIT(trans->cfg->trans.csr->flag_master_dis),
52079b6c8feSLuca Coelho 			   BIT(trans->cfg->trans.csr->flag_master_dis), 100);
521e705c121SKalle Valo 	if (ret < 0)
522e705c121SKalle Valo 		IWL_WARN(trans, "Master Disable Timed Out, 100 usec\n");
523e705c121SKalle Valo 
524e705c121SKalle Valo 	IWL_DEBUG_INFO(trans, "stop master\n");
525e705c121SKalle Valo }
526e705c121SKalle Valo 
527e705c121SKalle Valo static void iwl_pcie_apm_stop(struct iwl_trans *trans, bool op_mode_leave)
528e705c121SKalle Valo {
529e705c121SKalle Valo 	IWL_DEBUG_INFO(trans, "Stop card, put in low power state\n");
530e705c121SKalle Valo 
531e705c121SKalle Valo 	if (op_mode_leave) {
532e705c121SKalle Valo 		if (!test_bit(STATUS_DEVICE_ENABLED, &trans->status))
533e705c121SKalle Valo 			iwl_pcie_apm_init(trans);
534e705c121SKalle Valo 
535e705c121SKalle Valo 		/* inform ME that we are leaving */
53679b6c8feSLuca Coelho 		if (trans->cfg->trans.device_family == IWL_DEVICE_FAMILY_7000)
537e705c121SKalle Valo 			iwl_set_bits_prph(trans, APMG_PCIDEV_STT_REG,
538e705c121SKalle Valo 					  APMG_PCIDEV_STT_VAL_WAKE_ME);
53979b6c8feSLuca Coelho 		else if (trans->cfg->trans.device_family >=
54079b6c8feSLuca Coelho 			 IWL_DEVICE_FAMILY_8000) {
541e705c121SKalle Valo 			iwl_set_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
542e705c121SKalle Valo 				    CSR_RESET_LINK_PWR_MGMT_DISABLED);
543e705c121SKalle Valo 			iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
544e705c121SKalle Valo 				    CSR_HW_IF_CONFIG_REG_PREPARE |
545e705c121SKalle Valo 				    CSR_HW_IF_CONFIG_REG_ENABLE_PME);
546e705c121SKalle Valo 			mdelay(1);
547e705c121SKalle Valo 			iwl_clear_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
548e705c121SKalle Valo 				      CSR_RESET_LINK_PWR_MGMT_DISABLED);
549e705c121SKalle Valo 		}
550e705c121SKalle Valo 		mdelay(5);
551e705c121SKalle Valo 	}
552e705c121SKalle Valo 
553e705c121SKalle Valo 	clear_bit(STATUS_DEVICE_ENABLED, &trans->status);
554e705c121SKalle Valo 
555e705c121SKalle Valo 	/* Stop device's DMA activity */
556e705c121SKalle Valo 	iwl_pcie_apm_stop_master(trans);
557e705c121SKalle Valo 
558e705c121SKalle Valo 	if (trans->cfg->lp_xtal_workaround) {
559e705c121SKalle Valo 		iwl_pcie_apm_lp_xtal_enable(trans);
560e705c121SKalle Valo 		return;
561e705c121SKalle Valo 	}
562e705c121SKalle Valo 
563870c2a11SGolan Ben Ami 	iwl_trans_pcie_sw_reset(trans);
564e705c121SKalle Valo 
565e705c121SKalle Valo 	/*
566e705c121SKalle Valo 	 * Clear "initialization complete" bit to move adapter from
567e705c121SKalle Valo 	 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
568e705c121SKalle Valo 	 */
569e705c121SKalle Valo 	iwl_clear_bit(trans, CSR_GP_CNTRL,
57079b6c8feSLuca Coelho 		      BIT(trans->cfg->trans.csr->flag_init_done));
571e705c121SKalle Valo }
572e705c121SKalle Valo 
573e705c121SKalle Valo static int iwl_pcie_nic_init(struct iwl_trans *trans)
574e705c121SKalle Valo {
575e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
57652b6e168SEmmanuel Grumbach 	int ret;
577e705c121SKalle Valo 
578e705c121SKalle Valo 	/* nic_init */
579e705c121SKalle Valo 	spin_lock(&trans_pcie->irq_lock);
58052b6e168SEmmanuel Grumbach 	ret = iwl_pcie_apm_init(trans);
581e705c121SKalle Valo 	spin_unlock(&trans_pcie->irq_lock);
582e705c121SKalle Valo 
58352b6e168SEmmanuel Grumbach 	if (ret)
58452b6e168SEmmanuel Grumbach 		return ret;
58552b6e168SEmmanuel Grumbach 
586e705c121SKalle Valo 	iwl_pcie_set_pwr(trans, false);
587e705c121SKalle Valo 
588e705c121SKalle Valo 	iwl_op_mode_nic_config(trans->op_mode);
589e705c121SKalle Valo 
590e705c121SKalle Valo 	/* Allocate the RX queue, or reset if it is already allocated */
591e705c121SKalle Valo 	iwl_pcie_rx_init(trans);
592e705c121SKalle Valo 
593e705c121SKalle Valo 	/* Allocate or reset and init all Tx and Command queues */
594e705c121SKalle Valo 	if (iwl_pcie_tx_init(trans))
595e705c121SKalle Valo 		return -ENOMEM;
596e705c121SKalle Valo 
59779b6c8feSLuca Coelho 	if (trans->cfg->trans.base_params->shadow_reg_enable) {
598e705c121SKalle Valo 		/* enable shadow regs in HW */
599e705c121SKalle Valo 		iwl_set_bit(trans, CSR_MAC_SHADOW_REG_CTRL, 0x800FFFFF);
600e705c121SKalle Valo 		IWL_DEBUG_INFO(trans, "Enabling shadow registers in device\n");
601e705c121SKalle Valo 	}
602e705c121SKalle Valo 
603e705c121SKalle Valo 	return 0;
604e705c121SKalle Valo }
605e705c121SKalle Valo 
606e705c121SKalle Valo #define HW_READY_TIMEOUT (50)
607e705c121SKalle Valo 
608e705c121SKalle Valo /* Note: returns poll_bit return value, which is >= 0 if success */
609e705c121SKalle Valo static int iwl_pcie_set_hw_ready(struct iwl_trans *trans)
610e705c121SKalle Valo {
611e705c121SKalle Valo 	int ret;
612e705c121SKalle Valo 
613e705c121SKalle Valo 	iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
614e705c121SKalle Valo 		    CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
615e705c121SKalle Valo 
616e705c121SKalle Valo 	/* See if we got it */
617e705c121SKalle Valo 	ret = iwl_poll_bit(trans, CSR_HW_IF_CONFIG_REG,
618e705c121SKalle Valo 			   CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
619e705c121SKalle Valo 			   CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
620e705c121SKalle Valo 			   HW_READY_TIMEOUT);
621e705c121SKalle Valo 
622e705c121SKalle Valo 	if (ret >= 0)
623e705c121SKalle Valo 		iwl_set_bit(trans, CSR_MBOX_SET_REG, CSR_MBOX_SET_REG_OS_ALIVE);
624e705c121SKalle Valo 
625e705c121SKalle Valo 	IWL_DEBUG_INFO(trans, "hardware%s ready\n", ret < 0 ? " not" : "");
626e705c121SKalle Valo 	return ret;
627e705c121SKalle Valo }
628e705c121SKalle Valo 
629e705c121SKalle Valo /* Note: returns standard 0/-ERROR code */
630eda50cdeSSara Sharon int iwl_pcie_prepare_card_hw(struct iwl_trans *trans)
631e705c121SKalle Valo {
632e705c121SKalle Valo 	int ret;
633e705c121SKalle Valo 	int t = 0;
634e705c121SKalle Valo 	int iter;
635e705c121SKalle Valo 
636e705c121SKalle Valo 	IWL_DEBUG_INFO(trans, "iwl_trans_prepare_card_hw enter\n");
637e705c121SKalle Valo 
638e705c121SKalle Valo 	ret = iwl_pcie_set_hw_ready(trans);
639e705c121SKalle Valo 	/* If the card is ready, exit 0 */
640e705c121SKalle Valo 	if (ret >= 0)
641e705c121SKalle Valo 		return 0;
642e705c121SKalle Valo 
643e705c121SKalle Valo 	iwl_set_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
644e705c121SKalle Valo 		    CSR_RESET_LINK_PWR_MGMT_DISABLED);
645192185d6SJohannes Berg 	usleep_range(1000, 2000);
646e705c121SKalle Valo 
647e705c121SKalle Valo 	for (iter = 0; iter < 10; iter++) {
648e705c121SKalle Valo 		/* If HW is not ready, prepare the conditions to check again */
649e705c121SKalle Valo 		iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
650e705c121SKalle Valo 			    CSR_HW_IF_CONFIG_REG_PREPARE);
651e705c121SKalle Valo 
652e705c121SKalle Valo 		do {
653e705c121SKalle Valo 			ret = iwl_pcie_set_hw_ready(trans);
654e705c121SKalle Valo 			if (ret >= 0)
655e705c121SKalle Valo 				return 0;
656e705c121SKalle Valo 
657e705c121SKalle Valo 			usleep_range(200, 1000);
658e705c121SKalle Valo 			t += 200;
659e705c121SKalle Valo 		} while (t < 150000);
660e705c121SKalle Valo 		msleep(25);
661e705c121SKalle Valo 	}
662e705c121SKalle Valo 
663e705c121SKalle Valo 	IWL_ERR(trans, "Couldn't prepare the card\n");
664e705c121SKalle Valo 
665e705c121SKalle Valo 	return ret;
666e705c121SKalle Valo }
667e705c121SKalle Valo 
668e705c121SKalle Valo /*
669e705c121SKalle Valo  * ucode
670e705c121SKalle Valo  */
671564cdce7SSara Sharon static void iwl_pcie_load_firmware_chunk_fh(struct iwl_trans *trans,
672564cdce7SSara Sharon 					    u32 dst_addr, dma_addr_t phy_addr,
673564cdce7SSara Sharon 					    u32 byte_cnt)
674e705c121SKalle Valo {
675bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
676e705c121SKalle Valo 		    FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE);
677e705c121SKalle Valo 
678bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_SRVC_CHNL_SRAM_ADDR_REG(FH_SRVC_CHNL),
679e705c121SKalle Valo 		    dst_addr);
680e705c121SKalle Valo 
681bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_TFDIB_CTRL0_REG(FH_SRVC_CHNL),
682e705c121SKalle Valo 		    phy_addr & FH_MEM_TFDIB_DRAM_ADDR_LSB_MSK);
683e705c121SKalle Valo 
684bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_TFDIB_CTRL1_REG(FH_SRVC_CHNL),
685e705c121SKalle Valo 		    (iwl_get_dma_hi_addr(phy_addr)
686e705c121SKalle Valo 			<< FH_MEM_TFDIB_REG1_ADDR_BITSHIFT) | byte_cnt);
687e705c121SKalle Valo 
688bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_TCSR_CHNL_TX_BUF_STS_REG(FH_SRVC_CHNL),
689bac842daSEmmanuel Grumbach 		    BIT(FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_NUM) |
690bac842daSEmmanuel Grumbach 		    BIT(FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_IDX) |
691e705c121SKalle Valo 		    FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_VALID);
692e705c121SKalle Valo 
693bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
694e705c121SKalle Valo 		    FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
695e705c121SKalle Valo 		    FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_DISABLE |
696e705c121SKalle Valo 		    FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_ENDTFD);
697564cdce7SSara Sharon }
698e705c121SKalle Valo 
699564cdce7SSara Sharon static int iwl_pcie_load_firmware_chunk(struct iwl_trans *trans,
700564cdce7SSara Sharon 					u32 dst_addr, dma_addr_t phy_addr,
701564cdce7SSara Sharon 					u32 byte_cnt)
702564cdce7SSara Sharon {
703564cdce7SSara Sharon 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
704564cdce7SSara Sharon 	unsigned long flags;
705564cdce7SSara Sharon 	int ret;
706564cdce7SSara Sharon 
707564cdce7SSara Sharon 	trans_pcie->ucode_write_complete = false;
708564cdce7SSara Sharon 
709564cdce7SSara Sharon 	if (!iwl_trans_grab_nic_access(trans, &flags))
710564cdce7SSara Sharon 		return -EIO;
711564cdce7SSara Sharon 
712564cdce7SSara Sharon 	iwl_pcie_load_firmware_chunk_fh(trans, dst_addr, phy_addr,
713564cdce7SSara Sharon 					byte_cnt);
714bac842daSEmmanuel Grumbach 	iwl_trans_release_nic_access(trans, &flags);
715bac842daSEmmanuel Grumbach 
716e705c121SKalle Valo 	ret = wait_event_timeout(trans_pcie->ucode_write_waitq,
717e705c121SKalle Valo 				 trans_pcie->ucode_write_complete, 5 * HZ);
718e705c121SKalle Valo 	if (!ret) {
719e705c121SKalle Valo 		IWL_ERR(trans, "Failed to load firmware chunk!\n");
720fb12777aSKirtika Ruchandani 		iwl_trans_pcie_dump_regs(trans);
721e705c121SKalle Valo 		return -ETIMEDOUT;
722e705c121SKalle Valo 	}
723e705c121SKalle Valo 
724e705c121SKalle Valo 	return 0;
725e705c121SKalle Valo }
726e705c121SKalle Valo 
727e705c121SKalle Valo static int iwl_pcie_load_section(struct iwl_trans *trans, u8 section_num,
728e705c121SKalle Valo 			    const struct fw_desc *section)
729e705c121SKalle Valo {
730e705c121SKalle Valo 	u8 *v_addr;
731e705c121SKalle Valo 	dma_addr_t p_addr;
732e705c121SKalle Valo 	u32 offset, chunk_sz = min_t(u32, FH_MEM_TB_MAX_LENGTH, section->len);
733e705c121SKalle Valo 	int ret = 0;
734e705c121SKalle Valo 
735e705c121SKalle Valo 	IWL_DEBUG_FW(trans, "[%d] uCode section being loaded...\n",
736e705c121SKalle Valo 		     section_num);
737e705c121SKalle Valo 
738e705c121SKalle Valo 	v_addr = dma_alloc_coherent(trans->dev, chunk_sz, &p_addr,
739e705c121SKalle Valo 				    GFP_KERNEL | __GFP_NOWARN);
740e705c121SKalle Valo 	if (!v_addr) {
741e705c121SKalle Valo 		IWL_DEBUG_INFO(trans, "Falling back to small chunks of DMA\n");
742e705c121SKalle Valo 		chunk_sz = PAGE_SIZE;
743e705c121SKalle Valo 		v_addr = dma_alloc_coherent(trans->dev, chunk_sz,
744e705c121SKalle Valo 					    &p_addr, GFP_KERNEL);
745e705c121SKalle Valo 		if (!v_addr)
746e705c121SKalle Valo 			return -ENOMEM;
747e705c121SKalle Valo 	}
748e705c121SKalle Valo 
749e705c121SKalle Valo 	for (offset = 0; offset < section->len; offset += chunk_sz) {
750e705c121SKalle Valo 		u32 copy_size, dst_addr;
751e705c121SKalle Valo 		bool extended_addr = false;
752e705c121SKalle Valo 
753e705c121SKalle Valo 		copy_size = min_t(u32, chunk_sz, section->len - offset);
754e705c121SKalle Valo 		dst_addr = section->offset + offset;
755e705c121SKalle Valo 
756e705c121SKalle Valo 		if (dst_addr >= IWL_FW_MEM_EXTENDED_START &&
757e705c121SKalle Valo 		    dst_addr <= IWL_FW_MEM_EXTENDED_END)
758e705c121SKalle Valo 			extended_addr = true;
759e705c121SKalle Valo 
760e705c121SKalle Valo 		if (extended_addr)
761e705c121SKalle Valo 			iwl_set_bits_prph(trans, LMPM_CHICK,
762e705c121SKalle Valo 					  LMPM_CHICK_EXTENDED_ADDR_SPACE);
763e705c121SKalle Valo 
764e705c121SKalle Valo 		memcpy(v_addr, (u8 *)section->data + offset, copy_size);
765e705c121SKalle Valo 		ret = iwl_pcie_load_firmware_chunk(trans, dst_addr, p_addr,
766e705c121SKalle Valo 						   copy_size);
767e705c121SKalle Valo 
768e705c121SKalle Valo 		if (extended_addr)
769e705c121SKalle Valo 			iwl_clear_bits_prph(trans, LMPM_CHICK,
770e705c121SKalle Valo 					    LMPM_CHICK_EXTENDED_ADDR_SPACE);
771e705c121SKalle Valo 
772e705c121SKalle Valo 		if (ret) {
773e705c121SKalle Valo 			IWL_ERR(trans,
774e705c121SKalle Valo 				"Could not load the [%d] uCode section\n",
775e705c121SKalle Valo 				section_num);
776e705c121SKalle Valo 			break;
777e705c121SKalle Valo 		}
778e705c121SKalle Valo 	}
779e705c121SKalle Valo 
780e705c121SKalle Valo 	dma_free_coherent(trans->dev, chunk_sz, v_addr, p_addr);
781e705c121SKalle Valo 	return ret;
782e705c121SKalle Valo }
783e705c121SKalle Valo 
784e705c121SKalle Valo static int iwl_pcie_load_cpu_sections_8000(struct iwl_trans *trans,
785e705c121SKalle Valo 					   const struct fw_img *image,
786e705c121SKalle Valo 					   int cpu,
787e705c121SKalle Valo 					   int *first_ucode_section)
788e705c121SKalle Valo {
789e705c121SKalle Valo 	int shift_param;
790e705c121SKalle Valo 	int i, ret = 0, sec_num = 0x1;
791e705c121SKalle Valo 	u32 val, last_read_idx = 0;
792e705c121SKalle Valo 
793e705c121SKalle Valo 	if (cpu == 1) {
794e705c121SKalle Valo 		shift_param = 0;
795e705c121SKalle Valo 		*first_ucode_section = 0;
796e705c121SKalle Valo 	} else {
797e705c121SKalle Valo 		shift_param = 16;
798e705c121SKalle Valo 		(*first_ucode_section)++;
799e705c121SKalle Valo 	}
800e705c121SKalle Valo 
801eef187a7SSara Sharon 	for (i = *first_ucode_section; i < image->num_sec; i++) {
802e705c121SKalle Valo 		last_read_idx = i;
803e705c121SKalle Valo 
804e705c121SKalle Valo 		/*
805e705c121SKalle Valo 		 * CPU1_CPU2_SEPARATOR_SECTION delimiter - separate between
806e705c121SKalle Valo 		 * CPU1 to CPU2.
807e705c121SKalle Valo 		 * PAGING_SEPARATOR_SECTION delimiter - separate between
808e705c121SKalle Valo 		 * CPU2 non paged to CPU2 paging sec.
809e705c121SKalle Valo 		 */
810e705c121SKalle Valo 		if (!image->sec[i].data ||
811e705c121SKalle Valo 		    image->sec[i].offset == CPU1_CPU2_SEPARATOR_SECTION ||
812e705c121SKalle Valo 		    image->sec[i].offset == PAGING_SEPARATOR_SECTION) {
813e705c121SKalle Valo 			IWL_DEBUG_FW(trans,
814e705c121SKalle Valo 				     "Break since Data not valid or Empty section, sec = %d\n",
815e705c121SKalle Valo 				     i);
816e705c121SKalle Valo 			break;
817e705c121SKalle Valo 		}
818e705c121SKalle Valo 
819e705c121SKalle Valo 		ret = iwl_pcie_load_section(trans, i, &image->sec[i]);
820e705c121SKalle Valo 		if (ret)
821e705c121SKalle Valo 			return ret;
822e705c121SKalle Valo 
823d6a2c5c7SSara Sharon 		/* Notify ucode of loaded section number and status */
824e705c121SKalle Valo 		val = iwl_read_direct32(trans, FH_UCODE_LOAD_STATUS);
825e705c121SKalle Valo 		val = val | (sec_num << shift_param);
826e705c121SKalle Valo 		iwl_write_direct32(trans, FH_UCODE_LOAD_STATUS, val);
827eda50cdeSSara Sharon 
828e705c121SKalle Valo 		sec_num = (sec_num << 1) | 0x1;
829e705c121SKalle Valo 	}
830e705c121SKalle Valo 
831e705c121SKalle Valo 	*first_ucode_section = last_read_idx;
832e705c121SKalle Valo 
8332aabdbdcSEmmanuel Grumbach 	iwl_enable_interrupts(trans);
8342aabdbdcSEmmanuel Grumbach 
83579b6c8feSLuca Coelho 	if (trans->cfg->trans.use_tfh) {
836e705c121SKalle Valo 		if (cpu == 1)
837d6a2c5c7SSara Sharon 			iwl_write_prph(trans, UREG_UCODE_LOAD_STATUS,
838d6a2c5c7SSara Sharon 				       0xFFFF);
839e705c121SKalle Valo 		else
840d6a2c5c7SSara Sharon 			iwl_write_prph(trans, UREG_UCODE_LOAD_STATUS,
841d6a2c5c7SSara Sharon 				       0xFFFFFFFF);
842d6a2c5c7SSara Sharon 	} else {
843d6a2c5c7SSara Sharon 		if (cpu == 1)
844d6a2c5c7SSara Sharon 			iwl_write_direct32(trans, FH_UCODE_LOAD_STATUS,
845d6a2c5c7SSara Sharon 					   0xFFFF);
846d6a2c5c7SSara Sharon 		else
847d6a2c5c7SSara Sharon 			iwl_write_direct32(trans, FH_UCODE_LOAD_STATUS,
848d6a2c5c7SSara Sharon 					   0xFFFFFFFF);
849d6a2c5c7SSara Sharon 	}
850e705c121SKalle Valo 
851e705c121SKalle Valo 	return 0;
852e705c121SKalle Valo }
853e705c121SKalle Valo 
854e705c121SKalle Valo static int iwl_pcie_load_cpu_sections(struct iwl_trans *trans,
855e705c121SKalle Valo 				      const struct fw_img *image,
856e705c121SKalle Valo 				      int cpu,
857e705c121SKalle Valo 				      int *first_ucode_section)
858e705c121SKalle Valo {
859e705c121SKalle Valo 	int i, ret = 0;
860e705c121SKalle Valo 	u32 last_read_idx = 0;
861e705c121SKalle Valo 
8623ce4a038SKirtika Ruchandani 	if (cpu == 1)
863e705c121SKalle Valo 		*first_ucode_section = 0;
8643ce4a038SKirtika Ruchandani 	else
865e705c121SKalle Valo 		(*first_ucode_section)++;
866e705c121SKalle Valo 
867eef187a7SSara Sharon 	for (i = *first_ucode_section; i < image->num_sec; i++) {
868e705c121SKalle Valo 		last_read_idx = i;
869e705c121SKalle Valo 
870e705c121SKalle Valo 		/*
871e705c121SKalle Valo 		 * CPU1_CPU2_SEPARATOR_SECTION delimiter - separate between
872e705c121SKalle Valo 		 * CPU1 to CPU2.
873e705c121SKalle Valo 		 * PAGING_SEPARATOR_SECTION delimiter - separate between
874e705c121SKalle Valo 		 * CPU2 non paged to CPU2 paging sec.
875e705c121SKalle Valo 		 */
876e705c121SKalle Valo 		if (!image->sec[i].data ||
877e705c121SKalle Valo 		    image->sec[i].offset == CPU1_CPU2_SEPARATOR_SECTION ||
878e705c121SKalle Valo 		    image->sec[i].offset == PAGING_SEPARATOR_SECTION) {
879e705c121SKalle Valo 			IWL_DEBUG_FW(trans,
880e705c121SKalle Valo 				     "Break since Data not valid or Empty section, sec = %d\n",
881e705c121SKalle Valo 				     i);
882e705c121SKalle Valo 			break;
883e705c121SKalle Valo 		}
884e705c121SKalle Valo 
885e705c121SKalle Valo 		ret = iwl_pcie_load_section(trans, i, &image->sec[i]);
886e705c121SKalle Valo 		if (ret)
887e705c121SKalle Valo 			return ret;
888e705c121SKalle Valo 	}
889e705c121SKalle Valo 
890e705c121SKalle Valo 	*first_ucode_section = last_read_idx;
891e705c121SKalle Valo 
892e705c121SKalle Valo 	return 0;
893e705c121SKalle Valo }
894e705c121SKalle Valo 
895c9be849dSLiad Kaufman void iwl_pcie_apply_destination(struct iwl_trans *trans)
896e705c121SKalle Valo {
89791c28b83SShahar S Matityahu 	const struct iwl_fw_dbg_dest_tlv_v1 *dest = trans->dbg.dest_tlv;
898e705c121SKalle Valo 	int i;
899e705c121SKalle Valo 
900a1af4c48SShahar S Matityahu 	if (iwl_trans_dbg_ini_valid(trans)) {
90191c28b83SShahar S Matityahu 		if (!trans->dbg.num_blocks)
9027a14c23dSSara Sharon 			return;
9037a14c23dSSara Sharon 
90453032e6eSShahar S Matityahu 		IWL_DEBUG_FW(trans,
905a64d4e8dSShahar S Matityahu 			     "WRT: Applying DRAM buffer[0] destination\n");
906ea695b7cSShaul Triebitz 		iwl_write_umac_prph(trans, MON_BUFF_BASE_ADDR_VER2,
90791c28b83SShahar S Matityahu 				    trans->dbg.fw_mon[0].physical >>
9087a14c23dSSara Sharon 				    MON_BUFF_SHIFT_VER2);
909ea695b7cSShaul Triebitz 		iwl_write_umac_prph(trans, MON_BUFF_END_ADDR_VER2,
91091c28b83SShahar S Matityahu 				    (trans->dbg.fw_mon[0].physical +
91191c28b83SShahar S Matityahu 				     trans->dbg.fw_mon[0].size - 256) >>
9127a14c23dSSara Sharon 				    MON_BUFF_SHIFT_VER2);
9137a14c23dSSara Sharon 		return;
9147a14c23dSSara Sharon 	}
9157a14c23dSSara Sharon 
916e705c121SKalle Valo 	IWL_INFO(trans, "Applying debug destination %s\n",
917e705c121SKalle Valo 		 get_fw_dbg_mode_string(dest->monitor_mode));
918e705c121SKalle Valo 
919e705c121SKalle Valo 	if (dest->monitor_mode == EXTERNAL_MODE)
920e705c121SKalle Valo 		iwl_pcie_alloc_fw_monitor(trans, dest->size_power);
921e705c121SKalle Valo 	else
922e705c121SKalle Valo 		IWL_WARN(trans, "PCI should have external buffer debug\n");
923e705c121SKalle Valo 
92491c28b83SShahar S Matityahu 	for (i = 0; i < trans->dbg.n_dest_reg; i++) {
925e705c121SKalle Valo 		u32 addr = le32_to_cpu(dest->reg_ops[i].addr);
926e705c121SKalle Valo 		u32 val = le32_to_cpu(dest->reg_ops[i].val);
927e705c121SKalle Valo 
928e705c121SKalle Valo 		switch (dest->reg_ops[i].op) {
929e705c121SKalle Valo 		case CSR_ASSIGN:
930e705c121SKalle Valo 			iwl_write32(trans, addr, val);
931e705c121SKalle Valo 			break;
932e705c121SKalle Valo 		case CSR_SETBIT:
933e705c121SKalle Valo 			iwl_set_bit(trans, addr, BIT(val));
934e705c121SKalle Valo 			break;
935e705c121SKalle Valo 		case CSR_CLEARBIT:
936e705c121SKalle Valo 			iwl_clear_bit(trans, addr, BIT(val));
937e705c121SKalle Valo 			break;
938e705c121SKalle Valo 		case PRPH_ASSIGN:
939e705c121SKalle Valo 			iwl_write_prph(trans, addr, val);
940e705c121SKalle Valo 			break;
941e705c121SKalle Valo 		case PRPH_SETBIT:
942e705c121SKalle Valo 			iwl_set_bits_prph(trans, addr, BIT(val));
943e705c121SKalle Valo 			break;
944e705c121SKalle Valo 		case PRPH_CLEARBIT:
945e705c121SKalle Valo 			iwl_clear_bits_prph(trans, addr, BIT(val));
946e705c121SKalle Valo 			break;
947e705c121SKalle Valo 		case PRPH_BLOCKBIT:
948e705c121SKalle Valo 			if (iwl_read_prph(trans, addr) & BIT(val)) {
949e705c121SKalle Valo 				IWL_ERR(trans,
950e705c121SKalle Valo 					"BIT(%u) in address 0x%x is 1, stopping FW configuration\n",
951e705c121SKalle Valo 					val, addr);
952e705c121SKalle Valo 				goto monitor;
953e705c121SKalle Valo 			}
954e705c121SKalle Valo 			break;
955e705c121SKalle Valo 		default:
956e705c121SKalle Valo 			IWL_ERR(trans, "FW debug - unknown OP %d\n",
957e705c121SKalle Valo 				dest->reg_ops[i].op);
958e705c121SKalle Valo 			break;
959e705c121SKalle Valo 		}
960e705c121SKalle Valo 	}
961e705c121SKalle Valo 
962e705c121SKalle Valo monitor:
96391c28b83SShahar S Matityahu 	if (dest->monitor_mode == EXTERNAL_MODE && trans->dbg.fw_mon[0].size) {
964e705c121SKalle Valo 		iwl_write_prph(trans, le32_to_cpu(dest->base_reg),
96591c28b83SShahar S Matityahu 			       trans->dbg.fw_mon[0].physical >>
96691c28b83SShahar S Matityahu 			       dest->base_shift);
96779b6c8feSLuca Coelho 		if (trans->cfg->trans.device_family >= IWL_DEVICE_FAMILY_8000)
968e705c121SKalle Valo 			iwl_write_prph(trans, le32_to_cpu(dest->end_reg),
96991c28b83SShahar S Matityahu 				       (trans->dbg.fw_mon[0].physical +
97091c28b83SShahar S Matityahu 					trans->dbg.fw_mon[0].size - 256) >>
97162d7476dSEmmanuel Grumbach 						dest->end_shift);
97262d7476dSEmmanuel Grumbach 		else
97362d7476dSEmmanuel Grumbach 			iwl_write_prph(trans, le32_to_cpu(dest->end_reg),
97491c28b83SShahar S Matityahu 				       (trans->dbg.fw_mon[0].physical +
97591c28b83SShahar S Matityahu 					trans->dbg.fw_mon[0].size) >>
97662d7476dSEmmanuel Grumbach 						dest->end_shift);
977e705c121SKalle Valo 	}
978e705c121SKalle Valo }
979e705c121SKalle Valo 
980e705c121SKalle Valo static int iwl_pcie_load_given_ucode(struct iwl_trans *trans,
981e705c121SKalle Valo 				const struct fw_img *image)
982e705c121SKalle Valo {
983e705c121SKalle Valo 	int ret = 0;
984e705c121SKalle Valo 	int first_ucode_section;
985e705c121SKalle Valo 
986e705c121SKalle Valo 	IWL_DEBUG_FW(trans, "working with %s CPU\n",
987e705c121SKalle Valo 		     image->is_dual_cpus ? "Dual" : "Single");
988e705c121SKalle Valo 
989e705c121SKalle Valo 	/* load to FW the binary non secured sections of CPU1 */
990e705c121SKalle Valo 	ret = iwl_pcie_load_cpu_sections(trans, image, 1, &first_ucode_section);
991e705c121SKalle Valo 	if (ret)
992e705c121SKalle Valo 		return ret;
993e705c121SKalle Valo 
994e705c121SKalle Valo 	if (image->is_dual_cpus) {
995e705c121SKalle Valo 		/* set CPU2 header address */
996e705c121SKalle Valo 		iwl_write_prph(trans,
997e705c121SKalle Valo 			       LMPM_SECURE_UCODE_LOAD_CPU2_HDR_ADDR,
998e705c121SKalle Valo 			       LMPM_SECURE_CPU2_HDR_MEM_SPACE);
999e705c121SKalle Valo 
1000e705c121SKalle Valo 		/* load to FW the binary sections of CPU2 */
1001e705c121SKalle Valo 		ret = iwl_pcie_load_cpu_sections(trans, image, 2,
1002e705c121SKalle Valo 						 &first_ucode_section);
1003e705c121SKalle Valo 		if (ret)
1004e705c121SKalle Valo 			return ret;
1005e705c121SKalle Valo 	}
1006e705c121SKalle Valo 
1007e705c121SKalle Valo 	/* supported for 7000 only for the moment */
1008e705c121SKalle Valo 	if (iwlwifi_mod_params.fw_monitor &&
100979b6c8feSLuca Coelho 	    trans->cfg->trans.device_family == IWL_DEVICE_FAMILY_7000) {
1010e705c121SKalle Valo 		iwl_pcie_alloc_fw_monitor(trans, 0);
1011e705c121SKalle Valo 
101291c28b83SShahar S Matityahu 		if (trans->dbg.fw_mon[0].size) {
1013e705c121SKalle Valo 			iwl_write_prph(trans, MON_BUFF_BASE_ADDR,
101491c28b83SShahar S Matityahu 				       trans->dbg.fw_mon[0].physical >> 4);
1015e705c121SKalle Valo 			iwl_write_prph(trans, MON_BUFF_END_ADDR,
101691c28b83SShahar S Matityahu 				       (trans->dbg.fw_mon[0].physical +
101791c28b83SShahar S Matityahu 					trans->dbg.fw_mon[0].size) >> 4);
1018e705c121SKalle Valo 		}
10197a14c23dSSara Sharon 	} else if (iwl_pcie_dbg_on(trans)) {
1020e705c121SKalle Valo 		iwl_pcie_apply_destination(trans);
1021e705c121SKalle Valo 	}
1022e705c121SKalle Valo 
10232aabdbdcSEmmanuel Grumbach 	iwl_enable_interrupts(trans);
10242aabdbdcSEmmanuel Grumbach 
1025e705c121SKalle Valo 	/* release CPU reset */
1026e705c121SKalle Valo 	iwl_write32(trans, CSR_RESET, 0);
1027e705c121SKalle Valo 
1028e705c121SKalle Valo 	return 0;
1029e705c121SKalle Valo }
1030e705c121SKalle Valo 
1031e705c121SKalle Valo static int iwl_pcie_load_given_ucode_8000(struct iwl_trans *trans,
1032e705c121SKalle Valo 					  const struct fw_img *image)
1033e705c121SKalle Valo {
1034e705c121SKalle Valo 	int ret = 0;
1035e705c121SKalle Valo 	int first_ucode_section;
1036e705c121SKalle Valo 
1037e705c121SKalle Valo 	IWL_DEBUG_FW(trans, "working with %s CPU\n",
1038e705c121SKalle Valo 		     image->is_dual_cpus ? "Dual" : "Single");
1039e705c121SKalle Valo 
10407a14c23dSSara Sharon 	if (iwl_pcie_dbg_on(trans))
1041e705c121SKalle Valo 		iwl_pcie_apply_destination(trans);
1042e705c121SKalle Valo 
104382ea7966SSara Sharon 	IWL_DEBUG_POWER(trans, "Original WFPM value = 0x%08X\n",
104482ea7966SSara Sharon 			iwl_read_prph(trans, WFPM_GP2));
104582ea7966SSara Sharon 
104682ea7966SSara Sharon 	/*
104782ea7966SSara Sharon 	 * Set default value. On resume reading the values that were
104882ea7966SSara Sharon 	 * zeored can provide debug data on the resume flow.
104982ea7966SSara Sharon 	 * This is for debugging only and has no functional impact.
105082ea7966SSara Sharon 	 */
105182ea7966SSara Sharon 	iwl_write_prph(trans, WFPM_GP2, 0x01010101);
105282ea7966SSara Sharon 
1053e705c121SKalle Valo 	/* configure the ucode to be ready to get the secured image */
1054e705c121SKalle Valo 	/* release CPU reset */
1055e705c121SKalle Valo 	iwl_write_prph(trans, RELEASE_CPU_RESET, RELEASE_CPU_RESET_BIT);
1056e705c121SKalle Valo 
1057e705c121SKalle Valo 	/* load to FW the binary Secured sections of CPU1 */
1058e705c121SKalle Valo 	ret = iwl_pcie_load_cpu_sections_8000(trans, image, 1,
1059e705c121SKalle Valo 					      &first_ucode_section);
1060e705c121SKalle Valo 	if (ret)
1061e705c121SKalle Valo 		return ret;
1062e705c121SKalle Valo 
1063e705c121SKalle Valo 	/* load to FW the binary sections of CPU2 */
1064e705c121SKalle Valo 	return iwl_pcie_load_cpu_sections_8000(trans, image, 2,
1065e705c121SKalle Valo 					       &first_ucode_section);
1066e705c121SKalle Valo }
1067e705c121SKalle Valo 
10689ad8fd0bSJohannes Berg bool iwl_pcie_check_hw_rf_kill(struct iwl_trans *trans)
1069727c02dfSSara Sharon {
1070326477e4SJohannes Berg 	struct iwl_trans_pcie *trans_pcie =  IWL_TRANS_GET_PCIE_TRANS(trans);
1071727c02dfSSara Sharon 	bool hw_rfkill = iwl_is_rfkill_set(trans);
1072326477e4SJohannes Berg 	bool prev = test_bit(STATUS_RFKILL_OPMODE, &trans->status);
1073326477e4SJohannes Berg 	bool report;
1074727c02dfSSara Sharon 
1075326477e4SJohannes Berg 	if (hw_rfkill) {
1076326477e4SJohannes Berg 		set_bit(STATUS_RFKILL_HW, &trans->status);
1077326477e4SJohannes Berg 		set_bit(STATUS_RFKILL_OPMODE, &trans->status);
1078326477e4SJohannes Berg 	} else {
1079326477e4SJohannes Berg 		clear_bit(STATUS_RFKILL_HW, &trans->status);
1080326477e4SJohannes Berg 		if (trans_pcie->opmode_down)
1081326477e4SJohannes Berg 			clear_bit(STATUS_RFKILL_OPMODE, &trans->status);
1082326477e4SJohannes Berg 	}
1083727c02dfSSara Sharon 
1084326477e4SJohannes Berg 	report = test_bit(STATUS_RFKILL_OPMODE, &trans->status);
1085326477e4SJohannes Berg 
1086326477e4SJohannes Berg 	if (prev != report)
1087326477e4SJohannes Berg 		iwl_trans_pcie_rf_kill(trans, report);
1088727c02dfSSara Sharon 
1089727c02dfSSara Sharon 	return hw_rfkill;
1090727c02dfSSara Sharon }
1091727c02dfSSara Sharon 
10927ca00409SHaim Dreyfuss struct iwl_causes_list {
10937ca00409SHaim Dreyfuss 	u32 cause_num;
10947ca00409SHaim Dreyfuss 	u32 mask_reg;
10957ca00409SHaim Dreyfuss 	u8 addr;
10967ca00409SHaim Dreyfuss };
10977ca00409SHaim Dreyfuss 
10987ca00409SHaim Dreyfuss static struct iwl_causes_list causes_list[] = {
10997ca00409SHaim Dreyfuss 	{MSIX_FH_INT_CAUSES_D2S_CH0_NUM,	CSR_MSIX_FH_INT_MASK_AD, 0},
11007ca00409SHaim Dreyfuss 	{MSIX_FH_INT_CAUSES_D2S_CH1_NUM,	CSR_MSIX_FH_INT_MASK_AD, 0x1},
11017ca00409SHaim Dreyfuss 	{MSIX_FH_INT_CAUSES_S2D,		CSR_MSIX_FH_INT_MASK_AD, 0x3},
11027ca00409SHaim Dreyfuss 	{MSIX_FH_INT_CAUSES_FH_ERR,		CSR_MSIX_FH_INT_MASK_AD, 0x5},
11037ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_ALIVE,		CSR_MSIX_HW_INT_MASK_AD, 0x10},
11047ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_WAKEUP,		CSR_MSIX_HW_INT_MASK_AD, 0x11},
1105ff911dcaSShaul Triebitz 	{MSIX_HW_INT_CAUSES_REG_IML,            CSR_MSIX_HW_INT_MASK_AD, 0x12},
11067ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_CT_KILL,	CSR_MSIX_HW_INT_MASK_AD, 0x16},
11077ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_RF_KILL,	CSR_MSIX_HW_INT_MASK_AD, 0x17},
11087ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_PERIODIC,	CSR_MSIX_HW_INT_MASK_AD, 0x18},
11097ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_SW_ERR,		CSR_MSIX_HW_INT_MASK_AD, 0x29},
11107ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_SCD,		CSR_MSIX_HW_INT_MASK_AD, 0x2A},
11117ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_FH_TX,		CSR_MSIX_HW_INT_MASK_AD, 0x2B},
11127ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_HW_ERR,		CSR_MSIX_HW_INT_MASK_AD, 0x2D},
11137ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_HAP,		CSR_MSIX_HW_INT_MASK_AD, 0x2E},
11147ca00409SHaim Dreyfuss };
11157ca00409SHaim Dreyfuss 
11169b58419eSGolan Ben Ami static struct iwl_causes_list causes_list_v2[] = {
11179b58419eSGolan Ben Ami 	{MSIX_FH_INT_CAUSES_D2S_CH0_NUM,	CSR_MSIX_FH_INT_MASK_AD, 0},
11189b58419eSGolan Ben Ami 	{MSIX_FH_INT_CAUSES_D2S_CH1_NUM,	CSR_MSIX_FH_INT_MASK_AD, 0x1},
11199b58419eSGolan Ben Ami 	{MSIX_FH_INT_CAUSES_S2D,		CSR_MSIX_FH_INT_MASK_AD, 0x3},
11209b58419eSGolan Ben Ami 	{MSIX_FH_INT_CAUSES_FH_ERR,		CSR_MSIX_FH_INT_MASK_AD, 0x5},
11219b58419eSGolan Ben Ami 	{MSIX_HW_INT_CAUSES_REG_ALIVE,		CSR_MSIX_HW_INT_MASK_AD, 0x10},
11229b58419eSGolan Ben Ami 	{MSIX_HW_INT_CAUSES_REG_IPC,		CSR_MSIX_HW_INT_MASK_AD, 0x11},
11239b58419eSGolan Ben Ami 	{MSIX_HW_INT_CAUSES_REG_SW_ERR_V2,	CSR_MSIX_HW_INT_MASK_AD, 0x15},
11249b58419eSGolan Ben Ami 	{MSIX_HW_INT_CAUSES_REG_CT_KILL,	CSR_MSIX_HW_INT_MASK_AD, 0x16},
11259b58419eSGolan Ben Ami 	{MSIX_HW_INT_CAUSES_REG_RF_KILL,	CSR_MSIX_HW_INT_MASK_AD, 0x17},
11269b58419eSGolan Ben Ami 	{MSIX_HW_INT_CAUSES_REG_PERIODIC,	CSR_MSIX_HW_INT_MASK_AD, 0x18},
11279b58419eSGolan Ben Ami 	{MSIX_HW_INT_CAUSES_REG_SCD,		CSR_MSIX_HW_INT_MASK_AD, 0x2A},
11289b58419eSGolan Ben Ami 	{MSIX_HW_INT_CAUSES_REG_FH_TX,		CSR_MSIX_HW_INT_MASK_AD, 0x2B},
11299b58419eSGolan Ben Ami 	{MSIX_HW_INT_CAUSES_REG_HW_ERR,		CSR_MSIX_HW_INT_MASK_AD, 0x2D},
11309b58419eSGolan Ben Ami 	{MSIX_HW_INT_CAUSES_REG_HAP,		CSR_MSIX_HW_INT_MASK_AD, 0x2E},
11319b58419eSGolan Ben Ami };
11329b58419eSGolan Ben Ami 
11337ca00409SHaim Dreyfuss static void iwl_pcie_map_non_rx_causes(struct iwl_trans *trans)
11347ca00409SHaim Dreyfuss {
11357ca00409SHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie =  IWL_TRANS_GET_PCIE_TRANS(trans);
11367ca00409SHaim Dreyfuss 	int val = trans_pcie->def_irq | MSIX_NON_AUTO_CLEAR_CAUSE;
11379b58419eSGolan Ben Ami 	int i, arr_size =
113879b6c8feSLuca Coelho 		(trans->cfg->trans.device_family != IWL_DEVICE_FAMILY_22560) ?
11399b58419eSGolan Ben Ami 		ARRAY_SIZE(causes_list) : ARRAY_SIZE(causes_list_v2);
11407ca00409SHaim Dreyfuss 
11417ca00409SHaim Dreyfuss 	/*
11427ca00409SHaim Dreyfuss 	 * Access all non RX causes and map them to the default irq.
11437ca00409SHaim Dreyfuss 	 * In case we are missing at least one interrupt vector,
11447ca00409SHaim Dreyfuss 	 * the first interrupt vector will serve non-RX and FBQ causes.
11457ca00409SHaim Dreyfuss 	 */
11469b58419eSGolan Ben Ami 	for (i = 0; i < arr_size; i++) {
11479b58419eSGolan Ben Ami 		struct iwl_causes_list *causes =
114879b6c8feSLuca Coelho 			(trans->cfg->trans.device_family !=
114979b6c8feSLuca Coelho 			 IWL_DEVICE_FAMILY_22560) ?
11509b58419eSGolan Ben Ami 			causes_list : causes_list_v2;
11519b58419eSGolan Ben Ami 
11529b58419eSGolan Ben Ami 		iwl_write8(trans, CSR_MSIX_IVAR(causes[i].addr), val);
11539b58419eSGolan Ben Ami 		iwl_clear_bit(trans, causes[i].mask_reg,
11549b58419eSGolan Ben Ami 			      causes[i].cause_num);
11557ca00409SHaim Dreyfuss 	}
11567ca00409SHaim Dreyfuss }
11577ca00409SHaim Dreyfuss 
11587ca00409SHaim Dreyfuss static void iwl_pcie_map_rx_causes(struct iwl_trans *trans)
11597ca00409SHaim Dreyfuss {
11607ca00409SHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
11617ca00409SHaim Dreyfuss 	u32 offset =
11627ca00409SHaim Dreyfuss 		trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_FIRST_RSS ? 1 : 0;
11637ca00409SHaim Dreyfuss 	u32 val, idx;
11647ca00409SHaim Dreyfuss 
11657ca00409SHaim Dreyfuss 	/*
11667ca00409SHaim Dreyfuss 	 * The first RX queue - fallback queue, which is designated for
11677ca00409SHaim Dreyfuss 	 * management frame, command responses etc, is always mapped to the
11687ca00409SHaim Dreyfuss 	 * first interrupt vector. The other RX queues are mapped to
11697ca00409SHaim Dreyfuss 	 * the other (N - 2) interrupt vectors.
11707ca00409SHaim Dreyfuss 	 */
11717ca00409SHaim Dreyfuss 	val = BIT(MSIX_FH_INT_CAUSES_Q(0));
11727ca00409SHaim Dreyfuss 	for (idx = 1; idx < trans->num_rx_queues; idx++) {
11737ca00409SHaim Dreyfuss 		iwl_write8(trans, CSR_MSIX_RX_IVAR(idx),
11747ca00409SHaim Dreyfuss 			   MSIX_FH_INT_CAUSES_Q(idx - offset));
11757ca00409SHaim Dreyfuss 		val |= BIT(MSIX_FH_INT_CAUSES_Q(idx));
11767ca00409SHaim Dreyfuss 	}
11777ca00409SHaim Dreyfuss 	iwl_write32(trans, CSR_MSIX_FH_INT_MASK_AD, ~val);
11787ca00409SHaim Dreyfuss 
11797ca00409SHaim Dreyfuss 	val = MSIX_FH_INT_CAUSES_Q(0);
11807ca00409SHaim Dreyfuss 	if (trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_NON_RX)
11817ca00409SHaim Dreyfuss 		val |= MSIX_NON_AUTO_CLEAR_CAUSE;
11827ca00409SHaim Dreyfuss 	iwl_write8(trans, CSR_MSIX_RX_IVAR(0), val);
11837ca00409SHaim Dreyfuss 
11847ca00409SHaim Dreyfuss 	if (trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_FIRST_RSS)
11857ca00409SHaim Dreyfuss 		iwl_write8(trans, CSR_MSIX_RX_IVAR(1), val);
11867ca00409SHaim Dreyfuss }
11877ca00409SHaim Dreyfuss 
118877c09bc8SSara Sharon void iwl_pcie_conf_msix_hw(struct iwl_trans_pcie *trans_pcie)
11897ca00409SHaim Dreyfuss {
11907ca00409SHaim Dreyfuss 	struct iwl_trans *trans = trans_pcie->trans;
11917ca00409SHaim Dreyfuss 
11927ca00409SHaim Dreyfuss 	if (!trans_pcie->msix_enabled) {
119379b6c8feSLuca Coelho 		if (trans->cfg->trans.mq_rx_supported &&
1194d7270d61SHaim Dreyfuss 		    test_bit(STATUS_DEVICE_ENABLED, &trans->status))
1195ea695b7cSShaul Triebitz 			iwl_write_umac_prph(trans, UREG_CHICK,
11967ca00409SHaim Dreyfuss 					    UREG_CHICK_MSI_ENABLE);
11977ca00409SHaim Dreyfuss 		return;
11987ca00409SHaim Dreyfuss 	}
1199d7270d61SHaim Dreyfuss 	/*
1200d7270d61SHaim Dreyfuss 	 * The IVAR table needs to be configured again after reset,
1201d7270d61SHaim Dreyfuss 	 * but if the device is disabled, we can't write to
1202d7270d61SHaim Dreyfuss 	 * prph.
1203d7270d61SHaim Dreyfuss 	 */
1204d7270d61SHaim Dreyfuss 	if (test_bit(STATUS_DEVICE_ENABLED, &trans->status))
1205ea695b7cSShaul Triebitz 		iwl_write_umac_prph(trans, UREG_CHICK, UREG_CHICK_MSIX_ENABLE);
12067ca00409SHaim Dreyfuss 
12077ca00409SHaim Dreyfuss 	/*
12087ca00409SHaim Dreyfuss 	 * Each cause from the causes list above and the RX causes is
12097ca00409SHaim Dreyfuss 	 * represented as a byte in the IVAR table. The first nibble
12107ca00409SHaim Dreyfuss 	 * represents the bound interrupt vector of the cause, the second
12117ca00409SHaim Dreyfuss 	 * represents no auto clear for this cause. This will be set if its
12127ca00409SHaim Dreyfuss 	 * interrupt vector is bound to serve other causes.
12137ca00409SHaim Dreyfuss 	 */
12147ca00409SHaim Dreyfuss 	iwl_pcie_map_rx_causes(trans);
12157ca00409SHaim Dreyfuss 
12167ca00409SHaim Dreyfuss 	iwl_pcie_map_non_rx_causes(trans);
121783730058SHaim Dreyfuss }
12187ca00409SHaim Dreyfuss 
121983730058SHaim Dreyfuss static void iwl_pcie_init_msix(struct iwl_trans_pcie *trans_pcie)
122083730058SHaim Dreyfuss {
122183730058SHaim Dreyfuss 	struct iwl_trans *trans = trans_pcie->trans;
122283730058SHaim Dreyfuss 
122383730058SHaim Dreyfuss 	iwl_pcie_conf_msix_hw(trans_pcie);
122483730058SHaim Dreyfuss 
122583730058SHaim Dreyfuss 	if (!trans_pcie->msix_enabled)
122683730058SHaim Dreyfuss 		return;
122783730058SHaim Dreyfuss 
122883730058SHaim Dreyfuss 	trans_pcie->fh_init_mask = ~iwl_read32(trans, CSR_MSIX_FH_INT_MASK_AD);
12297ca00409SHaim Dreyfuss 	trans_pcie->fh_mask = trans_pcie->fh_init_mask;
123083730058SHaim Dreyfuss 	trans_pcie->hw_init_mask = ~iwl_read32(trans, CSR_MSIX_HW_INT_MASK_AD);
12317ca00409SHaim Dreyfuss 	trans_pcie->hw_mask = trans_pcie->hw_init_mask;
12327ca00409SHaim Dreyfuss }
12337ca00409SHaim Dreyfuss 
1234bab3cb92SEmmanuel Grumbach static void _iwl_trans_pcie_stop_device(struct iwl_trans *trans)
1235e705c121SKalle Valo {
1236e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1237e705c121SKalle Valo 
1238e705c121SKalle Valo 	lockdep_assert_held(&trans_pcie->mutex);
1239e705c121SKalle Valo 
1240e705c121SKalle Valo 	if (trans_pcie->is_down)
1241e705c121SKalle Valo 		return;
1242e705c121SKalle Valo 
1243e705c121SKalle Valo 	trans_pcie->is_down = true;
1244e705c121SKalle Valo 
1245e705c121SKalle Valo 	/* tell the device to stop sending interrupts */
1246e705c121SKalle Valo 	iwl_disable_interrupts(trans);
1247e705c121SKalle Valo 
1248e705c121SKalle Valo 	/* device going down, Stop using ICT table */
1249e705c121SKalle Valo 	iwl_pcie_disable_ict(trans);
1250e705c121SKalle Valo 
1251e705c121SKalle Valo 	/*
1252e705c121SKalle Valo 	 * If a HW restart happens during firmware loading,
1253e705c121SKalle Valo 	 * then the firmware loading might call this function
1254e705c121SKalle Valo 	 * and later it might be called again due to the
1255e705c121SKalle Valo 	 * restart. So don't process again if the device is
1256e705c121SKalle Valo 	 * already dead.
1257e705c121SKalle Valo 	 */
1258e705c121SKalle Valo 	if (test_and_clear_bit(STATUS_DEVICE_ENABLED, &trans->status)) {
1259a6bd005fSEmmanuel Grumbach 		IWL_DEBUG_INFO(trans,
1260a6bd005fSEmmanuel Grumbach 			       "DEVICE_ENABLED bit was set and is now cleared\n");
1261e705c121SKalle Valo 		iwl_pcie_tx_stop(trans);
1262e705c121SKalle Valo 		iwl_pcie_rx_stop(trans);
1263e705c121SKalle Valo 
1264e705c121SKalle Valo 		/* Power-down device's busmaster DMA clocks */
1265e705c121SKalle Valo 		if (!trans->cfg->apmg_not_supported) {
1266e705c121SKalle Valo 			iwl_write_prph(trans, APMG_CLK_DIS_REG,
1267e705c121SKalle Valo 				       APMG_CLK_VAL_DMA_CLK_RQT);
1268e705c121SKalle Valo 			udelay(5);
1269e705c121SKalle Valo 		}
1270e705c121SKalle Valo 	}
1271e705c121SKalle Valo 
1272e705c121SKalle Valo 	/* Make sure (redundant) we've released our request to stay awake */
1273e705c121SKalle Valo 	iwl_clear_bit(trans, CSR_GP_CNTRL,
127479b6c8feSLuca Coelho 		      BIT(trans->cfg->trans.csr->flag_mac_access_req));
1275e705c121SKalle Valo 
1276e705c121SKalle Valo 	/* Stop the device, and put it in low power state */
1277e705c121SKalle Valo 	iwl_pcie_apm_stop(trans, false);
1278e705c121SKalle Valo 
1279870c2a11SGolan Ben Ami 	iwl_trans_pcie_sw_reset(trans);
1280e705c121SKalle Valo 
1281e705c121SKalle Valo 	/*
1282f4a1f04aSGolan Ben Ami 	 * Upon stop, the IVAR table gets erased, so msi-x won't
1283f4a1f04aSGolan Ben Ami 	 * work. This causes a bug in RF-KILL flows, since the interrupt
1284f4a1f04aSGolan Ben Ami 	 * that enables radio won't fire on the correct irq, and the
1285f4a1f04aSGolan Ben Ami 	 * driver won't be able to handle the interrupt.
1286f4a1f04aSGolan Ben Ami 	 * Configure the IVAR table again after reset.
1287f4a1f04aSGolan Ben Ami 	 */
1288f4a1f04aSGolan Ben Ami 	iwl_pcie_conf_msix_hw(trans_pcie);
1289f4a1f04aSGolan Ben Ami 
1290f4a1f04aSGolan Ben Ami 	/*
1291e705c121SKalle Valo 	 * Upon stop, the APM issues an interrupt if HW RF kill is set.
1292e705c121SKalle Valo 	 * This is a bug in certain verions of the hardware.
1293e705c121SKalle Valo 	 * Certain devices also keep sending HW RF kill interrupt all
1294e705c121SKalle Valo 	 * the time, unless the interrupt is ACKed even if the interrupt
1295e705c121SKalle Valo 	 * should be masked. Re-ACK all the interrupts here.
1296e705c121SKalle Valo 	 */
1297e705c121SKalle Valo 	iwl_disable_interrupts(trans);
1298e705c121SKalle Valo 
1299e705c121SKalle Valo 	/* clear all status bits */
1300e705c121SKalle Valo 	clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
1301e705c121SKalle Valo 	clear_bit(STATUS_INT_ENABLED, &trans->status);
1302e705c121SKalle Valo 	clear_bit(STATUS_TPOWER_PMI, &trans->status);
1303e705c121SKalle Valo 
1304e705c121SKalle Valo 	/*
1305e705c121SKalle Valo 	 * Even if we stop the HW, we still want the RF kill
1306e705c121SKalle Valo 	 * interrupt
1307e705c121SKalle Valo 	 */
1308e705c121SKalle Valo 	iwl_enable_rfkill_int(trans);
1309e705c121SKalle Valo 
1310a6bd005fSEmmanuel Grumbach 	/* re-take ownership to prevent other users from stealing the device */
1311e705c121SKalle Valo 	iwl_pcie_prepare_card_hw(trans);
1312e705c121SKalle Valo }
1313e705c121SKalle Valo 
1314eda50cdeSSara Sharon void iwl_pcie_synchronize_irqs(struct iwl_trans *trans)
13152e5d4a8fSHaim Dreyfuss {
13162e5d4a8fSHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
13172e5d4a8fSHaim Dreyfuss 
13182e5d4a8fSHaim Dreyfuss 	if (trans_pcie->msix_enabled) {
13192e5d4a8fSHaim Dreyfuss 		int i;
13202e5d4a8fSHaim Dreyfuss 
1321496d83caSHaim Dreyfuss 		for (i = 0; i < trans_pcie->alloc_vecs; i++)
13222e5d4a8fSHaim Dreyfuss 			synchronize_irq(trans_pcie->msix_entries[i].vector);
13232e5d4a8fSHaim Dreyfuss 	} else {
13242e5d4a8fSHaim Dreyfuss 		synchronize_irq(trans_pcie->pci_dev->irq);
13252e5d4a8fSHaim Dreyfuss 	}
13262e5d4a8fSHaim Dreyfuss }
13272e5d4a8fSHaim Dreyfuss 
1328a6bd005fSEmmanuel Grumbach static int iwl_trans_pcie_start_fw(struct iwl_trans *trans,
1329a6bd005fSEmmanuel Grumbach 				   const struct fw_img *fw, bool run_in_rfkill)
1330a6bd005fSEmmanuel Grumbach {
1331a6bd005fSEmmanuel Grumbach 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1332a6bd005fSEmmanuel Grumbach 	bool hw_rfkill;
1333a6bd005fSEmmanuel Grumbach 	int ret;
1334a6bd005fSEmmanuel Grumbach 
1335a6bd005fSEmmanuel Grumbach 	/* This may fail if AMT took ownership of the device */
1336a6bd005fSEmmanuel Grumbach 	if (iwl_pcie_prepare_card_hw(trans)) {
1337a6bd005fSEmmanuel Grumbach 		IWL_WARN(trans, "Exit HW not ready\n");
1338a6bd005fSEmmanuel Grumbach 		ret = -EIO;
1339a6bd005fSEmmanuel Grumbach 		goto out;
1340a6bd005fSEmmanuel Grumbach 	}
1341a6bd005fSEmmanuel Grumbach 
1342a6bd005fSEmmanuel Grumbach 	iwl_enable_rfkill_int(trans);
1343a6bd005fSEmmanuel Grumbach 
1344a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_INT, 0xFFFFFFFF);
1345a6bd005fSEmmanuel Grumbach 
1346a6bd005fSEmmanuel Grumbach 	/*
1347a6bd005fSEmmanuel Grumbach 	 * We enabled the RF-Kill interrupt and the handler may very
1348a6bd005fSEmmanuel Grumbach 	 * well be running. Disable the interrupts to make sure no other
1349a6bd005fSEmmanuel Grumbach 	 * interrupt can be fired.
1350a6bd005fSEmmanuel Grumbach 	 */
1351a6bd005fSEmmanuel Grumbach 	iwl_disable_interrupts(trans);
1352a6bd005fSEmmanuel Grumbach 
1353a6bd005fSEmmanuel Grumbach 	/* Make sure it finished running */
13542e5d4a8fSHaim Dreyfuss 	iwl_pcie_synchronize_irqs(trans);
1355a6bd005fSEmmanuel Grumbach 
1356a6bd005fSEmmanuel Grumbach 	mutex_lock(&trans_pcie->mutex);
1357a6bd005fSEmmanuel Grumbach 
1358a6bd005fSEmmanuel Grumbach 	/* If platform's RF_KILL switch is NOT set to KILL */
13599ad8fd0bSJohannes Berg 	hw_rfkill = iwl_pcie_check_hw_rf_kill(trans);
1360a6bd005fSEmmanuel Grumbach 	if (hw_rfkill && !run_in_rfkill) {
1361a6bd005fSEmmanuel Grumbach 		ret = -ERFKILL;
1362a6bd005fSEmmanuel Grumbach 		goto out;
1363a6bd005fSEmmanuel Grumbach 	}
1364a6bd005fSEmmanuel Grumbach 
1365a6bd005fSEmmanuel Grumbach 	/* Someone called stop_device, don't try to start_fw */
1366a6bd005fSEmmanuel Grumbach 	if (trans_pcie->is_down) {
1367a6bd005fSEmmanuel Grumbach 		IWL_WARN(trans,
1368a6bd005fSEmmanuel Grumbach 			 "Can't start_fw since the HW hasn't been started\n");
136920aa99bbSAnton Protopopov 		ret = -EIO;
1370a6bd005fSEmmanuel Grumbach 		goto out;
1371a6bd005fSEmmanuel Grumbach 	}
1372a6bd005fSEmmanuel Grumbach 
1373a6bd005fSEmmanuel Grumbach 	/* make sure rfkill handshake bits are cleared */
1374a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1375a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR,
1376a6bd005fSEmmanuel Grumbach 		    CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1377a6bd005fSEmmanuel Grumbach 
1378a6bd005fSEmmanuel Grumbach 	/* clear (again), then enable host interrupts */
1379a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_INT, 0xFFFFFFFF);
1380a6bd005fSEmmanuel Grumbach 
1381a6bd005fSEmmanuel Grumbach 	ret = iwl_pcie_nic_init(trans);
1382a6bd005fSEmmanuel Grumbach 	if (ret) {
1383a6bd005fSEmmanuel Grumbach 		IWL_ERR(trans, "Unable to init nic\n");
1384a6bd005fSEmmanuel Grumbach 		goto out;
1385a6bd005fSEmmanuel Grumbach 	}
1386a6bd005fSEmmanuel Grumbach 
1387a6bd005fSEmmanuel Grumbach 	/*
1388a6bd005fSEmmanuel Grumbach 	 * Now, we load the firmware and don't want to be interrupted, even
1389a6bd005fSEmmanuel Grumbach 	 * by the RF-Kill interrupt (hence mask all the interrupt besides the
1390a6bd005fSEmmanuel Grumbach 	 * FH_TX interrupt which is needed to load the firmware). If the
1391a6bd005fSEmmanuel Grumbach 	 * RF-Kill switch is toggled, we will find out after having loaded
1392a6bd005fSEmmanuel Grumbach 	 * the firmware and return the proper value to the caller.
1393a6bd005fSEmmanuel Grumbach 	 */
1394a6bd005fSEmmanuel Grumbach 	iwl_enable_fw_load_int(trans);
1395a6bd005fSEmmanuel Grumbach 
1396a6bd005fSEmmanuel Grumbach 	/* really make sure rfkill handshake bits are cleared */
1397a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1398a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1399a6bd005fSEmmanuel Grumbach 
1400a6bd005fSEmmanuel Grumbach 	/* Load the given image to the HW */
140179b6c8feSLuca Coelho 	if (trans->cfg->trans.device_family >= IWL_DEVICE_FAMILY_8000)
1402a6bd005fSEmmanuel Grumbach 		ret = iwl_pcie_load_given_ucode_8000(trans, fw);
1403a6bd005fSEmmanuel Grumbach 	else
1404a6bd005fSEmmanuel Grumbach 		ret = iwl_pcie_load_given_ucode(trans, fw);
1405a6bd005fSEmmanuel Grumbach 
1406a6bd005fSEmmanuel Grumbach 	/* re-check RF-Kill state since we may have missed the interrupt */
14079ad8fd0bSJohannes Berg 	hw_rfkill = iwl_pcie_check_hw_rf_kill(trans);
1408a6bd005fSEmmanuel Grumbach 	if (hw_rfkill && !run_in_rfkill)
1409a6bd005fSEmmanuel Grumbach 		ret = -ERFKILL;
1410a6bd005fSEmmanuel Grumbach 
1411a6bd005fSEmmanuel Grumbach out:
1412a6bd005fSEmmanuel Grumbach 	mutex_unlock(&trans_pcie->mutex);
1413a6bd005fSEmmanuel Grumbach 	return ret;
1414a6bd005fSEmmanuel Grumbach }
1415a6bd005fSEmmanuel Grumbach 
1416a6bd005fSEmmanuel Grumbach static void iwl_trans_pcie_fw_alive(struct iwl_trans *trans, u32 scd_addr)
1417a6bd005fSEmmanuel Grumbach {
1418a6bd005fSEmmanuel Grumbach 	iwl_pcie_reset_ict(trans);
1419a6bd005fSEmmanuel Grumbach 	iwl_pcie_tx_start(trans, scd_addr);
1420a6bd005fSEmmanuel Grumbach }
1421a6bd005fSEmmanuel Grumbach 
1422326477e4SJohannes Berg void iwl_trans_pcie_handle_stop_rfkill(struct iwl_trans *trans,
1423326477e4SJohannes Berg 				       bool was_in_rfkill)
1424326477e4SJohannes Berg {
1425326477e4SJohannes Berg 	bool hw_rfkill;
1426326477e4SJohannes Berg 
1427326477e4SJohannes Berg 	/*
1428326477e4SJohannes Berg 	 * Check again since the RF kill state may have changed while
1429326477e4SJohannes Berg 	 * all the interrupts were disabled, in this case we couldn't
1430326477e4SJohannes Berg 	 * receive the RF kill interrupt and update the state in the
1431326477e4SJohannes Berg 	 * op_mode.
1432326477e4SJohannes Berg 	 * Don't call the op_mode if the rkfill state hasn't changed.
1433326477e4SJohannes Berg 	 * This allows the op_mode to call stop_device from the rfkill
1434326477e4SJohannes Berg 	 * notification without endless recursion. Under very rare
1435326477e4SJohannes Berg 	 * circumstances, we might have a small recursion if the rfkill
1436326477e4SJohannes Berg 	 * state changed exactly now while we were called from stop_device.
1437326477e4SJohannes Berg 	 * This is very unlikely but can happen and is supported.
1438326477e4SJohannes Berg 	 */
1439326477e4SJohannes Berg 	hw_rfkill = iwl_is_rfkill_set(trans);
1440326477e4SJohannes Berg 	if (hw_rfkill) {
1441326477e4SJohannes Berg 		set_bit(STATUS_RFKILL_HW, &trans->status);
1442326477e4SJohannes Berg 		set_bit(STATUS_RFKILL_OPMODE, &trans->status);
1443326477e4SJohannes Berg 	} else {
1444326477e4SJohannes Berg 		clear_bit(STATUS_RFKILL_HW, &trans->status);
1445326477e4SJohannes Berg 		clear_bit(STATUS_RFKILL_OPMODE, &trans->status);
1446326477e4SJohannes Berg 	}
1447326477e4SJohannes Berg 	if (hw_rfkill != was_in_rfkill)
1448326477e4SJohannes Berg 		iwl_trans_pcie_rf_kill(trans, hw_rfkill);
1449326477e4SJohannes Berg }
1450326477e4SJohannes Berg 
1451bab3cb92SEmmanuel Grumbach static void iwl_trans_pcie_stop_device(struct iwl_trans *trans)
1452e705c121SKalle Valo {
1453e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1454326477e4SJohannes Berg 	bool was_in_rfkill;
1455e705c121SKalle Valo 
1456e705c121SKalle Valo 	mutex_lock(&trans_pcie->mutex);
1457326477e4SJohannes Berg 	trans_pcie->opmode_down = true;
1458326477e4SJohannes Berg 	was_in_rfkill = test_bit(STATUS_RFKILL_OPMODE, &trans->status);
1459bab3cb92SEmmanuel Grumbach 	_iwl_trans_pcie_stop_device(trans);
1460326477e4SJohannes Berg 	iwl_trans_pcie_handle_stop_rfkill(trans, was_in_rfkill);
1461e705c121SKalle Valo 	mutex_unlock(&trans_pcie->mutex);
1462e705c121SKalle Valo }
1463e705c121SKalle Valo 
1464e705c121SKalle Valo void iwl_trans_pcie_rf_kill(struct iwl_trans *trans, bool state)
1465e705c121SKalle Valo {
1466e705c121SKalle Valo 	struct iwl_trans_pcie __maybe_unused *trans_pcie =
1467e705c121SKalle Valo 		IWL_TRANS_GET_PCIE_TRANS(trans);
1468e705c121SKalle Valo 
1469e705c121SKalle Valo 	lockdep_assert_held(&trans_pcie->mutex);
1470e705c121SKalle Valo 
1471326477e4SJohannes Berg 	IWL_WARN(trans, "reporting RF_KILL (radio %s)\n",
1472326477e4SJohannes Berg 		 state ? "disabled" : "enabled");
147377c09bc8SSara Sharon 	if (iwl_op_mode_hw_rf_kill(trans->op_mode, state)) {
147479b6c8feSLuca Coelho 		if (trans->cfg->trans.gen2)
1475bab3cb92SEmmanuel Grumbach 			_iwl_trans_pcie_gen2_stop_device(trans);
147677c09bc8SSara Sharon 		else
1477bab3cb92SEmmanuel Grumbach 			_iwl_trans_pcie_stop_device(trans);
1478e705c121SKalle Valo 	}
147977c09bc8SSara Sharon }
1480e705c121SKalle Valo 
148123ae6128SMatti Gottlieb static void iwl_trans_pcie_d3_suspend(struct iwl_trans *trans, bool test,
148223ae6128SMatti Gottlieb 				      bool reset)
1483e705c121SKalle Valo {
148423ae6128SMatti Gottlieb 	if (!reset) {
1485e705c121SKalle Valo 		/* Enable persistence mode to avoid reset */
1486e705c121SKalle Valo 		iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
1487e705c121SKalle Valo 			    CSR_HW_IF_CONFIG_REG_PERSIST_MODE);
1488e705c121SKalle Valo 	}
1489e705c121SKalle Valo 
1490e705c121SKalle Valo 	iwl_disable_interrupts(trans);
1491e705c121SKalle Valo 
1492e705c121SKalle Valo 	/*
1493e705c121SKalle Valo 	 * in testing mode, the host stays awake and the
1494e705c121SKalle Valo 	 * hardware won't be reset (not even partially)
1495e705c121SKalle Valo 	 */
1496e705c121SKalle Valo 	if (test)
1497e705c121SKalle Valo 		return;
1498e705c121SKalle Valo 
1499e705c121SKalle Valo 	iwl_pcie_disable_ict(trans);
1500e705c121SKalle Valo 
15012e5d4a8fSHaim Dreyfuss 	iwl_pcie_synchronize_irqs(trans);
1502e705c121SKalle Valo 
1503e705c121SKalle Valo 	iwl_clear_bit(trans, CSR_GP_CNTRL,
150479b6c8feSLuca Coelho 		      BIT(trans->cfg->trans.csr->flag_mac_access_req));
1505e705c121SKalle Valo 	iwl_clear_bit(trans, CSR_GP_CNTRL,
150679b6c8feSLuca Coelho 		      BIT(trans->cfg->trans.csr->flag_init_done));
1507e705c121SKalle Valo 
150823ae6128SMatti Gottlieb 	if (reset) {
1509e705c121SKalle Valo 		/*
1510e705c121SKalle Valo 		 * reset TX queues -- some of their registers reset during S3
1511e705c121SKalle Valo 		 * so if we don't reset everything here the D3 image would try
1512e705c121SKalle Valo 		 * to execute some invalid memory upon resume
1513e705c121SKalle Valo 		 */
1514e705c121SKalle Valo 		iwl_trans_pcie_tx_reset(trans);
1515e705c121SKalle Valo 	}
1516e705c121SKalle Valo 
1517e705c121SKalle Valo 	iwl_pcie_set_pwr(trans, true);
1518e705c121SKalle Valo }
1519e705c121SKalle Valo 
1520e705c121SKalle Valo static int iwl_trans_pcie_d3_resume(struct iwl_trans *trans,
1521e705c121SKalle Valo 				    enum iwl_d3_status *status,
152223ae6128SMatti Gottlieb 				    bool test,  bool reset)
1523e705c121SKalle Valo {
1524d7270d61SHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie =  IWL_TRANS_GET_PCIE_TRANS(trans);
1525e705c121SKalle Valo 	u32 val;
1526e705c121SKalle Valo 	int ret;
1527e705c121SKalle Valo 
1528e705c121SKalle Valo 	if (test) {
1529e705c121SKalle Valo 		iwl_enable_interrupts(trans);
1530e705c121SKalle Valo 		*status = IWL_D3_STATUS_ALIVE;
1531e705c121SKalle Valo 		return 0;
1532e705c121SKalle Valo 	}
1533e705c121SKalle Valo 
1534a8cbb46fSGolan Ben Ami 	iwl_set_bit(trans, CSR_GP_CNTRL,
153579b6c8feSLuca Coelho 		    BIT(trans->cfg->trans.csr->flag_mac_access_req));
1536e705c121SKalle Valo 
153779b6c8feSLuca Coelho 	ret = iwl_finish_nic_init(trans, &trans->cfg->trans);
1538c96b5eecSJohannes Berg 	if (ret)
1539e705c121SKalle Valo 		return ret;
1540e705c121SKalle Valo 
1541f98ad635SEmmanuel Grumbach 	/*
1542f98ad635SEmmanuel Grumbach 	 * Reconfigure IVAR table in case of MSIX or reset ict table in
1543f98ad635SEmmanuel Grumbach 	 * MSI mode since HW reset erased it.
1544f98ad635SEmmanuel Grumbach 	 * Also enables interrupts - none will happen as
1545f98ad635SEmmanuel Grumbach 	 * the device doesn't know we're waking it up, only when
1546f98ad635SEmmanuel Grumbach 	 * the opmode actually tells it after this call.
1547f98ad635SEmmanuel Grumbach 	 */
1548f98ad635SEmmanuel Grumbach 	iwl_pcie_conf_msix_hw(trans_pcie);
1549f98ad635SEmmanuel Grumbach 	if (!trans_pcie->msix_enabled)
1550f98ad635SEmmanuel Grumbach 		iwl_pcie_reset_ict(trans);
1551f98ad635SEmmanuel Grumbach 	iwl_enable_interrupts(trans);
1552f98ad635SEmmanuel Grumbach 
1553e705c121SKalle Valo 	iwl_pcie_set_pwr(trans, false);
1554e705c121SKalle Valo 
155523ae6128SMatti Gottlieb 	if (!reset) {
1556e705c121SKalle Valo 		iwl_clear_bit(trans, CSR_GP_CNTRL,
155779b6c8feSLuca Coelho 			      BIT(trans->cfg->trans.csr->flag_mac_access_req));
1558e705c121SKalle Valo 	} else {
1559e705c121SKalle Valo 		iwl_trans_pcie_tx_reset(trans);
1560e705c121SKalle Valo 
1561e705c121SKalle Valo 		ret = iwl_pcie_rx_init(trans);
1562e705c121SKalle Valo 		if (ret) {
1563e705c121SKalle Valo 			IWL_ERR(trans,
1564e705c121SKalle Valo 				"Failed to resume the device (RX reset)\n");
1565e705c121SKalle Valo 			return ret;
1566e705c121SKalle Valo 		}
1567e705c121SKalle Valo 	}
1568e705c121SKalle Valo 
156982ea7966SSara Sharon 	IWL_DEBUG_POWER(trans, "WFPM value upon resume = 0x%08X\n",
1570ea695b7cSShaul Triebitz 			iwl_read_umac_prph(trans, WFPM_GP2));
157182ea7966SSara Sharon 
1572e705c121SKalle Valo 	val = iwl_read32(trans, CSR_RESET);
1573e705c121SKalle Valo 	if (val & CSR_RESET_REG_FLAG_NEVO_RESET)
1574e705c121SKalle Valo 		*status = IWL_D3_STATUS_RESET;
1575e705c121SKalle Valo 	else
1576e705c121SKalle Valo 		*status = IWL_D3_STATUS_ALIVE;
1577e705c121SKalle Valo 
1578e705c121SKalle Valo 	return 0;
1579e705c121SKalle Valo }
1580e705c121SKalle Valo 
15812e5d4a8fSHaim Dreyfuss static void iwl_pcie_set_interrupt_capa(struct pci_dev *pdev,
15822e5d4a8fSHaim Dreyfuss 					struct iwl_trans *trans)
15832e5d4a8fSHaim Dreyfuss {
15842e5d4a8fSHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1585ab1068d6SHao Wei Tee 	int max_irqs, num_irqs, i, ret;
15862e5d4a8fSHaim Dreyfuss 	u16 pci_cmd;
15872e5d4a8fSHaim Dreyfuss 
158879b6c8feSLuca Coelho 	if (!trans->cfg->trans.mq_rx_supported)
158906f4b081SSara Sharon 		goto enable_msi;
159006f4b081SSara Sharon 
1591ab1068d6SHao Wei Tee 	max_irqs = min_t(u32, num_online_cpus() + 2, IWL_MAX_RX_HW_QUEUES);
159206f4b081SSara Sharon 	for (i = 0; i < max_irqs; i++)
15932e5d4a8fSHaim Dreyfuss 		trans_pcie->msix_entries[i].entry = i;
15942e5d4a8fSHaim Dreyfuss 
159506f4b081SSara Sharon 	num_irqs = pci_enable_msix_range(pdev, trans_pcie->msix_entries,
15962e5d4a8fSHaim Dreyfuss 					 MSIX_MIN_INTERRUPT_VECTORS,
159706f4b081SSara Sharon 					 max_irqs);
159806f4b081SSara Sharon 	if (num_irqs < 0) {
1599496d83caSHaim Dreyfuss 		IWL_DEBUG_INFO(trans,
160006f4b081SSara Sharon 			       "Failed to enable msi-x mode (ret %d). Moving to msi mode.\n",
160106f4b081SSara Sharon 			       num_irqs);
160206f4b081SSara Sharon 		goto enable_msi;
1603496d83caSHaim Dreyfuss 	}
160406f4b081SSara Sharon 	trans_pcie->def_irq = (num_irqs == max_irqs) ? num_irqs - 1 : 0;
1605496d83caSHaim Dreyfuss 
16062e5d4a8fSHaim Dreyfuss 	IWL_DEBUG_INFO(trans,
160706f4b081SSara Sharon 		       "MSI-X enabled. %d interrupt vectors were allocated\n",
160806f4b081SSara Sharon 		       num_irqs);
160906f4b081SSara Sharon 
1610496d83caSHaim Dreyfuss 	/*
161106f4b081SSara Sharon 	 * In case the OS provides fewer interrupts than requested, different
161206f4b081SSara Sharon 	 * causes will share the same interrupt vector as follows:
1613496d83caSHaim Dreyfuss 	 * One interrupt less: non rx causes shared with FBQ.
1614496d83caSHaim Dreyfuss 	 * Two interrupts less: non rx causes shared with FBQ and RSS.
1615496d83caSHaim Dreyfuss 	 * More than two interrupts: we will use fewer RSS queues.
1616496d83caSHaim Dreyfuss 	 */
1617ab1068d6SHao Wei Tee 	if (num_irqs <= max_irqs - 2) {
161806f4b081SSara Sharon 		trans_pcie->trans->num_rx_queues = num_irqs + 1;
1619496d83caSHaim Dreyfuss 		trans_pcie->shared_vec_mask = IWL_SHARED_IRQ_NON_RX |
1620496d83caSHaim Dreyfuss 			IWL_SHARED_IRQ_FIRST_RSS;
1621ab1068d6SHao Wei Tee 	} else if (num_irqs == max_irqs - 1) {
162206f4b081SSara Sharon 		trans_pcie->trans->num_rx_queues = num_irqs;
1623496d83caSHaim Dreyfuss 		trans_pcie->shared_vec_mask = IWL_SHARED_IRQ_NON_RX;
1624496d83caSHaim Dreyfuss 	} else {
162506f4b081SSara Sharon 		trans_pcie->trans->num_rx_queues = num_irqs - 1;
1626496d83caSHaim Dreyfuss 	}
1627ab1068d6SHao Wei Tee 	WARN_ON(trans_pcie->trans->num_rx_queues > IWL_MAX_RX_HW_QUEUES);
16282e5d4a8fSHaim Dreyfuss 
162906f4b081SSara Sharon 	trans_pcie->alloc_vecs = num_irqs;
1630496d83caSHaim Dreyfuss 	trans_pcie->msix_enabled = true;
16312e5d4a8fSHaim Dreyfuss 	return;
16322e5d4a8fSHaim Dreyfuss 
163306f4b081SSara Sharon enable_msi:
163406f4b081SSara Sharon 	ret = pci_enable_msi(pdev);
163506f4b081SSara Sharon 	if (ret) {
163606f4b081SSara Sharon 		dev_err(&pdev->dev, "pci_enable_msi failed - %d\n", ret);
16372e5d4a8fSHaim Dreyfuss 		/* enable rfkill interrupt: hw bug w/a */
16382e5d4a8fSHaim Dreyfuss 		pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
16392e5d4a8fSHaim Dreyfuss 		if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
16402e5d4a8fSHaim Dreyfuss 			pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
16412e5d4a8fSHaim Dreyfuss 			pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
16422e5d4a8fSHaim Dreyfuss 		}
16432e5d4a8fSHaim Dreyfuss 	}
16442e5d4a8fSHaim Dreyfuss }
16452e5d4a8fSHaim Dreyfuss 
16467c8d91ebSHaim Dreyfuss static void iwl_pcie_irq_set_affinity(struct iwl_trans *trans)
16477c8d91ebSHaim Dreyfuss {
16487c8d91ebSHaim Dreyfuss 	int iter_rx_q, i, ret, cpu, offset;
16497c8d91ebSHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
16507c8d91ebSHaim Dreyfuss 
16517c8d91ebSHaim Dreyfuss 	i = trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_FIRST_RSS ? 0 : 1;
16527c8d91ebSHaim Dreyfuss 	iter_rx_q = trans_pcie->trans->num_rx_queues - 1 + i;
16537c8d91ebSHaim Dreyfuss 	offset = 1 + i;
16547c8d91ebSHaim Dreyfuss 	for (; i < iter_rx_q ; i++) {
16557c8d91ebSHaim Dreyfuss 		/*
16567c8d91ebSHaim Dreyfuss 		 * Get the cpu prior to the place to search
16577c8d91ebSHaim Dreyfuss 		 * (i.e. return will be > i - 1).
16587c8d91ebSHaim Dreyfuss 		 */
16597c8d91ebSHaim Dreyfuss 		cpu = cpumask_next(i - offset, cpu_online_mask);
16607c8d91ebSHaim Dreyfuss 		cpumask_set_cpu(cpu, &trans_pcie->affinity_mask[i]);
16617c8d91ebSHaim Dreyfuss 		ret = irq_set_affinity_hint(trans_pcie->msix_entries[i].vector,
16627c8d91ebSHaim Dreyfuss 					    &trans_pcie->affinity_mask[i]);
16637c8d91ebSHaim Dreyfuss 		if (ret)
16647c8d91ebSHaim Dreyfuss 			IWL_ERR(trans_pcie->trans,
16657c8d91ebSHaim Dreyfuss 				"Failed to set affinity mask for IRQ %d\n",
16667c8d91ebSHaim Dreyfuss 				i);
16677c8d91ebSHaim Dreyfuss 	}
16687c8d91ebSHaim Dreyfuss }
16697c8d91ebSHaim Dreyfuss 
16702e5d4a8fSHaim Dreyfuss static int iwl_pcie_init_msix_handler(struct pci_dev *pdev,
16712e5d4a8fSHaim Dreyfuss 				      struct iwl_trans_pcie *trans_pcie)
16722e5d4a8fSHaim Dreyfuss {
1673496d83caSHaim Dreyfuss 	int i;
16742e5d4a8fSHaim Dreyfuss 
1675496d83caSHaim Dreyfuss 	for (i = 0; i < trans_pcie->alloc_vecs; i++) {
16762e5d4a8fSHaim Dreyfuss 		int ret;
16775a41a86cSSharon Dvir 		struct msix_entry *msix_entry;
167864fa3affSSharon Dvir 		const char *qname = queue_name(&pdev->dev, trans_pcie, i);
167964fa3affSSharon Dvir 
168064fa3affSSharon Dvir 		if (!qname)
168164fa3affSSharon Dvir 			return -ENOMEM;
16822e5d4a8fSHaim Dreyfuss 
16835a41a86cSSharon Dvir 		msix_entry = &trans_pcie->msix_entries[i];
16845a41a86cSSharon Dvir 		ret = devm_request_threaded_irq(&pdev->dev,
16855a41a86cSSharon Dvir 						msix_entry->vector,
16862e5d4a8fSHaim Dreyfuss 						iwl_pcie_msix_isr,
1687496d83caSHaim Dreyfuss 						(i == trans_pcie->def_irq) ?
16882e5d4a8fSHaim Dreyfuss 						iwl_pcie_irq_msix_handler :
16892e5d4a8fSHaim Dreyfuss 						iwl_pcie_irq_rx_msix_handler,
16902e5d4a8fSHaim Dreyfuss 						IRQF_SHARED,
169164fa3affSSharon Dvir 						qname,
16925a41a86cSSharon Dvir 						msix_entry);
16932e5d4a8fSHaim Dreyfuss 		if (ret) {
16942e5d4a8fSHaim Dreyfuss 			IWL_ERR(trans_pcie->trans,
16952e5d4a8fSHaim Dreyfuss 				"Error allocating IRQ %d\n", i);
16965a41a86cSSharon Dvir 
16972e5d4a8fSHaim Dreyfuss 			return ret;
16982e5d4a8fSHaim Dreyfuss 		}
16992e5d4a8fSHaim Dreyfuss 	}
17007c8d91ebSHaim Dreyfuss 	iwl_pcie_irq_set_affinity(trans_pcie->trans);
17012e5d4a8fSHaim Dreyfuss 
17022e5d4a8fSHaim Dreyfuss 	return 0;
17032e5d4a8fSHaim Dreyfuss }
17042e5d4a8fSHaim Dreyfuss 
170544f61b5cSShahar S Matityahu static int iwl_trans_pcie_clear_persistence_bit(struct iwl_trans *trans)
170644f61b5cSShahar S Matityahu {
170744f61b5cSShahar S Matityahu 	u32 hpm, wprot;
170844f61b5cSShahar S Matityahu 
170979b6c8feSLuca Coelho 	switch (trans->cfg->trans.device_family) {
171044f61b5cSShahar S Matityahu 	case IWL_DEVICE_FAMILY_9000:
171144f61b5cSShahar S Matityahu 		wprot = PREG_PRPH_WPROT_9000;
171244f61b5cSShahar S Matityahu 		break;
171344f61b5cSShahar S Matityahu 	case IWL_DEVICE_FAMILY_22000:
171444f61b5cSShahar S Matityahu 		wprot = PREG_PRPH_WPROT_22000;
171544f61b5cSShahar S Matityahu 		break;
171644f61b5cSShahar S Matityahu 	default:
171744f61b5cSShahar S Matityahu 		return 0;
171844f61b5cSShahar S Matityahu 	}
171944f61b5cSShahar S Matityahu 
172044f61b5cSShahar S Matityahu 	hpm = iwl_read_umac_prph_no_grab(trans, HPM_DEBUG);
172144f61b5cSShahar S Matityahu 	if (hpm != 0xa5a5a5a0 && (hpm & PERSISTENCE_BIT)) {
172244f61b5cSShahar S Matityahu 		u32 wprot_val = iwl_read_umac_prph_no_grab(trans, wprot);
172344f61b5cSShahar S Matityahu 
172444f61b5cSShahar S Matityahu 		if (wprot_val & PREG_WFPM_ACCESS) {
172544f61b5cSShahar S Matityahu 			IWL_ERR(trans,
172644f61b5cSShahar S Matityahu 				"Error, can not clear persistence bit\n");
172744f61b5cSShahar S Matityahu 			return -EPERM;
172844f61b5cSShahar S Matityahu 		}
172944f61b5cSShahar S Matityahu 		iwl_write_umac_prph_no_grab(trans, HPM_DEBUG,
173044f61b5cSShahar S Matityahu 					    hpm & ~PERSISTENCE_BIT);
173144f61b5cSShahar S Matityahu 	}
173244f61b5cSShahar S Matityahu 
173344f61b5cSShahar S Matityahu 	return 0;
173444f61b5cSShahar S Matityahu }
173544f61b5cSShahar S Matityahu 
1736bab3cb92SEmmanuel Grumbach static int _iwl_trans_pcie_start_hw(struct iwl_trans *trans)
1737e705c121SKalle Valo {
1738e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1739e705c121SKalle Valo 	int err;
1740e705c121SKalle Valo 
1741e705c121SKalle Valo 	lockdep_assert_held(&trans_pcie->mutex);
1742e705c121SKalle Valo 
1743e705c121SKalle Valo 	err = iwl_pcie_prepare_card_hw(trans);
1744e705c121SKalle Valo 	if (err) {
1745e705c121SKalle Valo 		IWL_ERR(trans, "Error while preparing HW: %d\n", err);
1746e705c121SKalle Valo 		return err;
1747e705c121SKalle Valo 	}
1748e705c121SKalle Valo 
174944f61b5cSShahar S Matityahu 	err = iwl_trans_pcie_clear_persistence_bit(trans);
175044f61b5cSShahar S Matityahu 	if (err)
175144f61b5cSShahar S Matityahu 		return err;
17528954e1ebSShahar S Matityahu 
1753870c2a11SGolan Ben Ami 	iwl_trans_pcie_sw_reset(trans);
1754e705c121SKalle Valo 
175552b6e168SEmmanuel Grumbach 	err = iwl_pcie_apm_init(trans);
175652b6e168SEmmanuel Grumbach 	if (err)
175752b6e168SEmmanuel Grumbach 		return err;
1758e705c121SKalle Valo 
17592e5d4a8fSHaim Dreyfuss 	iwl_pcie_init_msix(trans_pcie);
176083730058SHaim Dreyfuss 
1761e705c121SKalle Valo 	/* From now on, the op_mode will be kept updated about RF kill state */
1762e705c121SKalle Valo 	iwl_enable_rfkill_int(trans);
1763e705c121SKalle Valo 
1764326477e4SJohannes Berg 	trans_pcie->opmode_down = false;
1765326477e4SJohannes Berg 
1766e705c121SKalle Valo 	/* Set is_down to false here so that...*/
1767e705c121SKalle Valo 	trans_pcie->is_down = false;
1768e705c121SKalle Valo 
1769e705c121SKalle Valo 	/* ...rfkill can call stop_device and set it false if needed */
17709ad8fd0bSJohannes Berg 	iwl_pcie_check_hw_rf_kill(trans);
1771e705c121SKalle Valo 
1772e705c121SKalle Valo 	return 0;
1773e705c121SKalle Valo }
1774e705c121SKalle Valo 
1775bab3cb92SEmmanuel Grumbach static int iwl_trans_pcie_start_hw(struct iwl_trans *trans)
1776e705c121SKalle Valo {
1777e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1778e705c121SKalle Valo 	int ret;
1779e705c121SKalle Valo 
1780e705c121SKalle Valo 	mutex_lock(&trans_pcie->mutex);
1781bab3cb92SEmmanuel Grumbach 	ret = _iwl_trans_pcie_start_hw(trans);
1782e705c121SKalle Valo 	mutex_unlock(&trans_pcie->mutex);
1783e705c121SKalle Valo 
1784e705c121SKalle Valo 	return ret;
1785e705c121SKalle Valo }
1786e705c121SKalle Valo 
1787e705c121SKalle Valo static void iwl_trans_pcie_op_mode_leave(struct iwl_trans *trans)
1788e705c121SKalle Valo {
1789e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1790e705c121SKalle Valo 
1791e705c121SKalle Valo 	mutex_lock(&trans_pcie->mutex);
1792e705c121SKalle Valo 
1793e705c121SKalle Valo 	/* disable interrupts - don't enable HW RF kill interrupt */
1794e705c121SKalle Valo 	iwl_disable_interrupts(trans);
1795e705c121SKalle Valo 
1796e705c121SKalle Valo 	iwl_pcie_apm_stop(trans, true);
1797e705c121SKalle Valo 
1798e705c121SKalle Valo 	iwl_disable_interrupts(trans);
1799e705c121SKalle Valo 
1800e705c121SKalle Valo 	iwl_pcie_disable_ict(trans);
1801e705c121SKalle Valo 
1802e705c121SKalle Valo 	mutex_unlock(&trans_pcie->mutex);
1803e705c121SKalle Valo 
18042e5d4a8fSHaim Dreyfuss 	iwl_pcie_synchronize_irqs(trans);
1805e705c121SKalle Valo }
1806e705c121SKalle Valo 
1807e705c121SKalle Valo static void iwl_trans_pcie_write8(struct iwl_trans *trans, u32 ofs, u8 val)
1808e705c121SKalle Valo {
1809e705c121SKalle Valo 	writeb(val, IWL_TRANS_GET_PCIE_TRANS(trans)->hw_base + ofs);
1810e705c121SKalle Valo }
1811e705c121SKalle Valo 
1812e705c121SKalle Valo static void iwl_trans_pcie_write32(struct iwl_trans *trans, u32 ofs, u32 val)
1813e705c121SKalle Valo {
1814e705c121SKalle Valo 	writel(val, IWL_TRANS_GET_PCIE_TRANS(trans)->hw_base + ofs);
1815e705c121SKalle Valo }
1816e705c121SKalle Valo 
1817e705c121SKalle Valo static u32 iwl_trans_pcie_read32(struct iwl_trans *trans, u32 ofs)
1818e705c121SKalle Valo {
1819e705c121SKalle Valo 	return readl(IWL_TRANS_GET_PCIE_TRANS(trans)->hw_base + ofs);
1820e705c121SKalle Valo }
1821e705c121SKalle Valo 
182284fb372cSSara Sharon static u32 iwl_trans_pcie_prph_msk(struct iwl_trans *trans)
182384fb372cSSara Sharon {
182479b6c8feSLuca Coelho 	if (trans->cfg->trans.device_family >= IWL_DEVICE_FAMILY_22560)
182584fb372cSSara Sharon 		return 0x00FFFFFF;
182684fb372cSSara Sharon 	else
182784fb372cSSara Sharon 		return 0x000FFFFF;
182884fb372cSSara Sharon }
182984fb372cSSara Sharon 
1830e705c121SKalle Valo static u32 iwl_trans_pcie_read_prph(struct iwl_trans *trans, u32 reg)
1831e705c121SKalle Valo {
183284fb372cSSara Sharon 	u32 mask = iwl_trans_pcie_prph_msk(trans);
183384fb372cSSara Sharon 
1834e705c121SKalle Valo 	iwl_trans_pcie_write32(trans, HBUS_TARG_PRPH_RADDR,
183584fb372cSSara Sharon 			       ((reg & mask) | (3 << 24)));
1836e705c121SKalle Valo 	return iwl_trans_pcie_read32(trans, HBUS_TARG_PRPH_RDAT);
1837e705c121SKalle Valo }
1838e705c121SKalle Valo 
1839e705c121SKalle Valo static void iwl_trans_pcie_write_prph(struct iwl_trans *trans, u32 addr,
1840e705c121SKalle Valo 				      u32 val)
1841e705c121SKalle Valo {
184284fb372cSSara Sharon 	u32 mask = iwl_trans_pcie_prph_msk(trans);
184384fb372cSSara Sharon 
1844e705c121SKalle Valo 	iwl_trans_pcie_write32(trans, HBUS_TARG_PRPH_WADDR,
184584fb372cSSara Sharon 			       ((addr & mask) | (3 << 24)));
1846e705c121SKalle Valo 	iwl_trans_pcie_write32(trans, HBUS_TARG_PRPH_WDAT, val);
1847e705c121SKalle Valo }
1848e705c121SKalle Valo 
1849e705c121SKalle Valo static void iwl_trans_pcie_configure(struct iwl_trans *trans,
1850e705c121SKalle Valo 				     const struct iwl_trans_config *trans_cfg)
1851e705c121SKalle Valo {
1852e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1853e705c121SKalle Valo 
1854e705c121SKalle Valo 	trans_pcie->cmd_queue = trans_cfg->cmd_queue;
1855e705c121SKalle Valo 	trans_pcie->cmd_fifo = trans_cfg->cmd_fifo;
1856e705c121SKalle Valo 	trans_pcie->cmd_q_wdg_timeout = trans_cfg->cmd_q_wdg_timeout;
1857e705c121SKalle Valo 	if (WARN_ON(trans_cfg->n_no_reclaim_cmds > MAX_NO_RECLAIM_CMDS))
1858e705c121SKalle Valo 		trans_pcie->n_no_reclaim_cmds = 0;
1859e705c121SKalle Valo 	else
1860e705c121SKalle Valo 		trans_pcie->n_no_reclaim_cmds = trans_cfg->n_no_reclaim_cmds;
1861e705c121SKalle Valo 	if (trans_pcie->n_no_reclaim_cmds)
1862e705c121SKalle Valo 		memcpy(trans_pcie->no_reclaim_cmds, trans_cfg->no_reclaim_cmds,
1863e705c121SKalle Valo 		       trans_pcie->n_no_reclaim_cmds * sizeof(u8));
1864e705c121SKalle Valo 
18656c4fbcbcSEmmanuel Grumbach 	trans_pcie->rx_buf_size = trans_cfg->rx_buf_size;
18666c4fbcbcSEmmanuel Grumbach 	trans_pcie->rx_page_order =
18676c4fbcbcSEmmanuel Grumbach 		iwl_trans_get_rb_size_order(trans_pcie->rx_buf_size);
1868e705c121SKalle Valo 
1869e705c121SKalle Valo 	trans_pcie->bc_table_dword = trans_cfg->bc_table_dword;
1870e705c121SKalle Valo 	trans_pcie->scd_set_active = trans_cfg->scd_set_active;
187141837ca9SEmmanuel Grumbach 	trans_pcie->sw_csum_tx = trans_cfg->sw_csum_tx;
1872e705c121SKalle Valo 
187321cb3222SJohannes Berg 	trans_pcie->page_offs = trans_cfg->cb_data_offs;
187421cb3222SJohannes Berg 	trans_pcie->dev_cmd_offs = trans_cfg->cb_data_offs + sizeof(void *);
187521cb3222SJohannes Berg 
187639bdb17eSSharon Dvir 	trans->command_groups = trans_cfg->command_groups;
187739bdb17eSSharon Dvir 	trans->command_groups_size = trans_cfg->command_groups_size;
187839bdb17eSSharon Dvir 
1879e705c121SKalle Valo 	/* Initialize NAPI here - it should be before registering to mac80211
1880e705c121SKalle Valo 	 * in the opmode but after the HW struct is allocated.
1881e705c121SKalle Valo 	 * As this function may be called again in some corner cases don't
1882e705c121SKalle Valo 	 * do anything if NAPI was already initialized.
1883e705c121SKalle Valo 	 */
1884bce97731SSara Sharon 	if (trans_pcie->napi_dev.reg_state != NETREG_DUMMY)
1885e705c121SKalle Valo 		init_dummy_netdev(&trans_pcie->napi_dev);
1886e705c121SKalle Valo }
1887e705c121SKalle Valo 
1888e705c121SKalle Valo void iwl_trans_pcie_free(struct iwl_trans *trans)
1889e705c121SKalle Valo {
1890e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
18916eb5e529SEmmanuel Grumbach 	int i;
1892e705c121SKalle Valo 
18932e5d4a8fSHaim Dreyfuss 	iwl_pcie_synchronize_irqs(trans);
1894e705c121SKalle Valo 
189579b6c8feSLuca Coelho 	if (trans->cfg->trans.gen2)
189613a3a390SSara Sharon 		iwl_pcie_gen2_tx_free(trans);
189713a3a390SSara Sharon 	else
1898e705c121SKalle Valo 		iwl_pcie_tx_free(trans);
1899e705c121SKalle Valo 	iwl_pcie_rx_free(trans);
1900e705c121SKalle Valo 
190110a54d81SLuca Coelho 	if (trans_pcie->rba.alloc_wq) {
190210a54d81SLuca Coelho 		destroy_workqueue(trans_pcie->rba.alloc_wq);
190310a54d81SLuca Coelho 		trans_pcie->rba.alloc_wq = NULL;
190410a54d81SLuca Coelho 	}
190510a54d81SLuca Coelho 
19062e5d4a8fSHaim Dreyfuss 	if (trans_pcie->msix_enabled) {
19077c8d91ebSHaim Dreyfuss 		for (i = 0; i < trans_pcie->alloc_vecs; i++) {
19087c8d91ebSHaim Dreyfuss 			irq_set_affinity_hint(
19097c8d91ebSHaim Dreyfuss 				trans_pcie->msix_entries[i].vector,
19107c8d91ebSHaim Dreyfuss 				NULL);
19117c8d91ebSHaim Dreyfuss 		}
19122e5d4a8fSHaim Dreyfuss 
19132e5d4a8fSHaim Dreyfuss 		trans_pcie->msix_enabled = false;
19142e5d4a8fSHaim Dreyfuss 	} else {
1915e705c121SKalle Valo 		iwl_pcie_free_ict(trans);
19162e5d4a8fSHaim Dreyfuss 	}
1917e705c121SKalle Valo 
1918e705c121SKalle Valo 	iwl_pcie_free_fw_monitor(trans);
1919e705c121SKalle Valo 
19206eb5e529SEmmanuel Grumbach 	for_each_possible_cpu(i) {
19216eb5e529SEmmanuel Grumbach 		struct iwl_tso_hdr_page *p =
19226eb5e529SEmmanuel Grumbach 			per_cpu_ptr(trans_pcie->tso_hdr_page, i);
19236eb5e529SEmmanuel Grumbach 
19246eb5e529SEmmanuel Grumbach 		if (p->page)
19256eb5e529SEmmanuel Grumbach 			__free_page(p->page);
19266eb5e529SEmmanuel Grumbach 	}
19276eb5e529SEmmanuel Grumbach 
19286eb5e529SEmmanuel Grumbach 	free_percpu(trans_pcie->tso_hdr_page);
1929a2a57a35SEmmanuel Grumbach 	mutex_destroy(&trans_pcie->mutex);
1930e705c121SKalle Valo 	iwl_trans_free(trans);
1931e705c121SKalle Valo }
1932e705c121SKalle Valo 
1933e705c121SKalle Valo static void iwl_trans_pcie_set_pmi(struct iwl_trans *trans, bool state)
1934e705c121SKalle Valo {
1935e705c121SKalle Valo 	if (state)
1936e705c121SKalle Valo 		set_bit(STATUS_TPOWER_PMI, &trans->status);
1937e705c121SKalle Valo 	else
1938e705c121SKalle Valo 		clear_bit(STATUS_TPOWER_PMI, &trans->status);
1939e705c121SKalle Valo }
1940e705c121SKalle Valo 
194149564a80SLuca Coelho struct iwl_trans_pcie_removal {
194249564a80SLuca Coelho 	struct pci_dev *pdev;
194349564a80SLuca Coelho 	struct work_struct work;
194449564a80SLuca Coelho };
194549564a80SLuca Coelho 
194649564a80SLuca Coelho static void iwl_trans_pcie_removal_wk(struct work_struct *wk)
194749564a80SLuca Coelho {
194849564a80SLuca Coelho 	struct iwl_trans_pcie_removal *removal =
194949564a80SLuca Coelho 		container_of(wk, struct iwl_trans_pcie_removal, work);
195049564a80SLuca Coelho 	struct pci_dev *pdev = removal->pdev;
1951aba1e632SColin Ian King 	static char *prop[] = {"EVENT=INACCESSIBLE", NULL};
195249564a80SLuca Coelho 
195349564a80SLuca Coelho 	dev_err(&pdev->dev, "Device gone - attempting removal\n");
195449564a80SLuca Coelho 	kobject_uevent_env(&pdev->dev.kobj, KOBJ_CHANGE, prop);
195549564a80SLuca Coelho 	pci_lock_rescan_remove();
195649564a80SLuca Coelho 	pci_dev_put(pdev);
195749564a80SLuca Coelho 	pci_stop_and_remove_bus_device(pdev);
195849564a80SLuca Coelho 	pci_unlock_rescan_remove();
195949564a80SLuca Coelho 
196049564a80SLuca Coelho 	kfree(removal);
196149564a80SLuca Coelho 	module_put(THIS_MODULE);
196249564a80SLuca Coelho }
196349564a80SLuca Coelho 
196423ba9340SEmmanuel Grumbach static bool iwl_trans_pcie_grab_nic_access(struct iwl_trans *trans,
1965e705c121SKalle Valo 					   unsigned long *flags)
1966e705c121SKalle Valo {
1967e705c121SKalle Valo 	int ret;
1968e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1969e705c121SKalle Valo 
1970e705c121SKalle Valo 	spin_lock_irqsave(&trans_pcie->reg_lock, *flags);
1971e705c121SKalle Valo 
1972e705c121SKalle Valo 	if (trans_pcie->cmd_hold_nic_awake)
1973e705c121SKalle Valo 		goto out;
1974e705c121SKalle Valo 
1975e705c121SKalle Valo 	/* this bit wakes up the NIC */
1976e705c121SKalle Valo 	__iwl_trans_pcie_set_bit(trans, CSR_GP_CNTRL,
197779b6c8feSLuca Coelho 				 BIT(trans->cfg->trans.csr->flag_mac_access_req));
197879b6c8feSLuca Coelho 	if (trans->cfg->trans.device_family >= IWL_DEVICE_FAMILY_8000)
1979e705c121SKalle Valo 		udelay(2);
1980e705c121SKalle Valo 
1981e705c121SKalle Valo 	/*
1982e705c121SKalle Valo 	 * These bits say the device is running, and should keep running for
1983e705c121SKalle Valo 	 * at least a short while (at least as long as MAC_ACCESS_REQ stays 1),
1984e705c121SKalle Valo 	 * but they do not indicate that embedded SRAM is restored yet;
1985fb70d49fSLuca Coelho 	 * HW with volatile SRAM must save/restore contents to/from
1986fb70d49fSLuca Coelho 	 * host DRAM when sleeping/waking for power-saving.
1987e705c121SKalle Valo 	 * Each direction takes approximately 1/4 millisecond; with this
1988e705c121SKalle Valo 	 * overhead, it's a good idea to grab and hold MAC_ACCESS_REQUEST if a
1989e705c121SKalle Valo 	 * series of register accesses are expected (e.g. reading Event Log),
1990e705c121SKalle Valo 	 * to keep device from sleeping.
1991e705c121SKalle Valo 	 *
1992e705c121SKalle Valo 	 * CSR_UCODE_DRV_GP1 register bit MAC_SLEEP == 0 indicates that
1993e705c121SKalle Valo 	 * SRAM is okay/restored.  We don't check that here because this call
1994fb70d49fSLuca Coelho 	 * is just for hardware register access; but GP1 MAC_SLEEP
1995fb70d49fSLuca Coelho 	 * check is a good idea before accessing the SRAM of HW with
1996fb70d49fSLuca Coelho 	 * volatile SRAM (e.g. reading Event Log).
1997e705c121SKalle Valo 	 *
1998e705c121SKalle Valo 	 * 5000 series and later (including 1000 series) have non-volatile SRAM,
1999e705c121SKalle Valo 	 * and do not save/restore SRAM when power cycling.
2000e705c121SKalle Valo 	 */
2001e705c121SKalle Valo 	ret = iwl_poll_bit(trans, CSR_GP_CNTRL,
200279b6c8feSLuca Coelho 			   BIT(trans->cfg->trans.csr->flag_val_mac_access_en),
200379b6c8feSLuca Coelho 			   (BIT(trans->cfg->trans.csr->flag_mac_clock_ready) |
2004e705c121SKalle Valo 			    CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP), 15000);
2005e705c121SKalle Valo 	if (unlikely(ret < 0)) {
200649564a80SLuca Coelho 		u32 cntrl = iwl_read32(trans, CSR_GP_CNTRL);
200749564a80SLuca Coelho 
2008e705c121SKalle Valo 		WARN_ONCE(1,
2009e705c121SKalle Valo 			  "Timeout waiting for hardware access (CSR_GP_CNTRL 0x%08x)\n",
201049564a80SLuca Coelho 			  cntrl);
201149564a80SLuca Coelho 
201249564a80SLuca Coelho 		iwl_trans_pcie_dump_regs(trans);
201349564a80SLuca Coelho 
201449564a80SLuca Coelho 		if (iwlwifi_mod_params.remove_when_gone && cntrl == ~0U) {
201549564a80SLuca Coelho 			struct iwl_trans_pcie_removal *removal;
201649564a80SLuca Coelho 
2017f60c9e59SEmmanuel Grumbach 			if (test_bit(STATUS_TRANS_DEAD, &trans->status))
201849564a80SLuca Coelho 				goto err;
201949564a80SLuca Coelho 
202049564a80SLuca Coelho 			IWL_ERR(trans, "Device gone - scheduling removal!\n");
202149564a80SLuca Coelho 
202249564a80SLuca Coelho 			/*
202349564a80SLuca Coelho 			 * get a module reference to avoid doing this
202449564a80SLuca Coelho 			 * while unloading anyway and to avoid
202549564a80SLuca Coelho 			 * scheduling a work with code that's being
202649564a80SLuca Coelho 			 * removed.
202749564a80SLuca Coelho 			 */
202849564a80SLuca Coelho 			if (!try_module_get(THIS_MODULE)) {
202949564a80SLuca Coelho 				IWL_ERR(trans,
203049564a80SLuca Coelho 					"Module is being unloaded - abort\n");
203149564a80SLuca Coelho 				goto err;
203249564a80SLuca Coelho 			}
203349564a80SLuca Coelho 
203449564a80SLuca Coelho 			removal = kzalloc(sizeof(*removal), GFP_ATOMIC);
203549564a80SLuca Coelho 			if (!removal) {
203649564a80SLuca Coelho 				module_put(THIS_MODULE);
203749564a80SLuca Coelho 				goto err;
203849564a80SLuca Coelho 			}
203949564a80SLuca Coelho 			/*
204049564a80SLuca Coelho 			 * we don't need to clear this flag, because
204149564a80SLuca Coelho 			 * the trans will be freed and reallocated.
204249564a80SLuca Coelho 			*/
2043f60c9e59SEmmanuel Grumbach 			set_bit(STATUS_TRANS_DEAD, &trans->status);
204449564a80SLuca Coelho 
204549564a80SLuca Coelho 			removal->pdev = to_pci_dev(trans->dev);
204649564a80SLuca Coelho 			INIT_WORK(&removal->work, iwl_trans_pcie_removal_wk);
204749564a80SLuca Coelho 			pci_dev_get(removal->pdev);
204849564a80SLuca Coelho 			schedule_work(&removal->work);
204949564a80SLuca Coelho 		} else {
205049564a80SLuca Coelho 			iwl_write32(trans, CSR_RESET,
205149564a80SLuca Coelho 				    CSR_RESET_REG_FLAG_FORCE_NMI);
205249564a80SLuca Coelho 		}
205349564a80SLuca Coelho 
205449564a80SLuca Coelho err:
2055e705c121SKalle Valo 		spin_unlock_irqrestore(&trans_pcie->reg_lock, *flags);
2056e705c121SKalle Valo 		return false;
2057e705c121SKalle Valo 	}
2058e705c121SKalle Valo 
2059e705c121SKalle Valo out:
2060e705c121SKalle Valo 	/*
2061e705c121SKalle Valo 	 * Fool sparse by faking we release the lock - sparse will
2062e705c121SKalle Valo 	 * track nic_access anyway.
2063e705c121SKalle Valo 	 */
2064e705c121SKalle Valo 	__release(&trans_pcie->reg_lock);
2065e705c121SKalle Valo 	return true;
2066e705c121SKalle Valo }
2067e705c121SKalle Valo 
2068e705c121SKalle Valo static void iwl_trans_pcie_release_nic_access(struct iwl_trans *trans,
2069e705c121SKalle Valo 					      unsigned long *flags)
2070e705c121SKalle Valo {
2071e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2072e705c121SKalle Valo 
2073e705c121SKalle Valo 	lockdep_assert_held(&trans_pcie->reg_lock);
2074e705c121SKalle Valo 
2075e705c121SKalle Valo 	/*
2076e705c121SKalle Valo 	 * Fool sparse by faking we acquiring the lock - sparse will
2077e705c121SKalle Valo 	 * track nic_access anyway.
2078e705c121SKalle Valo 	 */
2079e705c121SKalle Valo 	__acquire(&trans_pcie->reg_lock);
2080e705c121SKalle Valo 
2081e705c121SKalle Valo 	if (trans_pcie->cmd_hold_nic_awake)
2082e705c121SKalle Valo 		goto out;
2083e705c121SKalle Valo 
2084e705c121SKalle Valo 	__iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
208579b6c8feSLuca Coelho 				   BIT(trans->cfg->trans.csr->flag_mac_access_req));
2086e705c121SKalle Valo 	/*
2087e705c121SKalle Valo 	 * Above we read the CSR_GP_CNTRL register, which will flush
2088e705c121SKalle Valo 	 * any previous writes, but we need the write that clears the
2089e705c121SKalle Valo 	 * MAC_ACCESS_REQ bit to be performed before any other writes
2090e705c121SKalle Valo 	 * scheduled on different CPUs (after we drop reg_lock).
2091e705c121SKalle Valo 	 */
2092e705c121SKalle Valo out:
2093e705c121SKalle Valo 	spin_unlock_irqrestore(&trans_pcie->reg_lock, *flags);
2094e705c121SKalle Valo }
2095e705c121SKalle Valo 
2096e705c121SKalle Valo static int iwl_trans_pcie_read_mem(struct iwl_trans *trans, u32 addr,
2097e705c121SKalle Valo 				   void *buf, int dwords)
2098e705c121SKalle Valo {
2099e705c121SKalle Valo 	unsigned long flags;
2100e705c121SKalle Valo 	int offs, ret = 0;
2101e705c121SKalle Valo 	u32 *vals = buf;
2102e705c121SKalle Valo 
210323ba9340SEmmanuel Grumbach 	if (iwl_trans_grab_nic_access(trans, &flags)) {
2104e705c121SKalle Valo 		iwl_write32(trans, HBUS_TARG_MEM_RADDR, addr);
2105e705c121SKalle Valo 		for (offs = 0; offs < dwords; offs++)
2106e705c121SKalle Valo 			vals[offs] = iwl_read32(trans, HBUS_TARG_MEM_RDAT);
2107e705c121SKalle Valo 		iwl_trans_release_nic_access(trans, &flags);
2108e705c121SKalle Valo 	} else {
2109e705c121SKalle Valo 		ret = -EBUSY;
2110e705c121SKalle Valo 	}
2111e705c121SKalle Valo 	return ret;
2112e705c121SKalle Valo }
2113e705c121SKalle Valo 
2114e705c121SKalle Valo static int iwl_trans_pcie_write_mem(struct iwl_trans *trans, u32 addr,
2115e705c121SKalle Valo 				    const void *buf, int dwords)
2116e705c121SKalle Valo {
2117e705c121SKalle Valo 	unsigned long flags;
2118e705c121SKalle Valo 	int offs, ret = 0;
2119e705c121SKalle Valo 	const u32 *vals = buf;
2120e705c121SKalle Valo 
212123ba9340SEmmanuel Grumbach 	if (iwl_trans_grab_nic_access(trans, &flags)) {
2122e705c121SKalle Valo 		iwl_write32(trans, HBUS_TARG_MEM_WADDR, addr);
2123e705c121SKalle Valo 		for (offs = 0; offs < dwords; offs++)
2124e705c121SKalle Valo 			iwl_write32(trans, HBUS_TARG_MEM_WDAT,
2125e705c121SKalle Valo 				    vals ? vals[offs] : 0);
2126e705c121SKalle Valo 		iwl_trans_release_nic_access(trans, &flags);
2127e705c121SKalle Valo 	} else {
2128e705c121SKalle Valo 		ret = -EBUSY;
2129e705c121SKalle Valo 	}
2130e705c121SKalle Valo 	return ret;
2131e705c121SKalle Valo }
2132e705c121SKalle Valo 
2133e705c121SKalle Valo static void iwl_trans_pcie_freeze_txq_timer(struct iwl_trans *trans,
2134e705c121SKalle Valo 					    unsigned long txqs,
2135e705c121SKalle Valo 					    bool freeze)
2136e705c121SKalle Valo {
2137e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2138e705c121SKalle Valo 	int queue;
2139e705c121SKalle Valo 
2140e705c121SKalle Valo 	for_each_set_bit(queue, &txqs, BITS_PER_LONG) {
2141b2a3b1c1SSara Sharon 		struct iwl_txq *txq = trans_pcie->txq[queue];
2142e705c121SKalle Valo 		unsigned long now;
2143e705c121SKalle Valo 
2144e705c121SKalle Valo 		spin_lock_bh(&txq->lock);
2145e705c121SKalle Valo 
2146e705c121SKalle Valo 		now = jiffies;
2147e705c121SKalle Valo 
2148e705c121SKalle Valo 		if (txq->frozen == freeze)
2149e705c121SKalle Valo 			goto next_queue;
2150e705c121SKalle Valo 
2151e705c121SKalle Valo 		IWL_DEBUG_TX_QUEUES(trans, "%s TXQ %d\n",
2152e705c121SKalle Valo 				    freeze ? "Freezing" : "Waking", queue);
2153e705c121SKalle Valo 
2154e705c121SKalle Valo 		txq->frozen = freeze;
2155e705c121SKalle Valo 
2156bb98ecd4SSara Sharon 		if (txq->read_ptr == txq->write_ptr)
2157e705c121SKalle Valo 			goto next_queue;
2158e705c121SKalle Valo 
2159e705c121SKalle Valo 		if (freeze) {
2160e705c121SKalle Valo 			if (unlikely(time_after(now,
2161e705c121SKalle Valo 						txq->stuck_timer.expires))) {
2162e705c121SKalle Valo 				/*
2163e705c121SKalle Valo 				 * The timer should have fired, maybe it is
2164e705c121SKalle Valo 				 * spinning right now on the lock.
2165e705c121SKalle Valo 				 */
2166e705c121SKalle Valo 				goto next_queue;
2167e705c121SKalle Valo 			}
2168e705c121SKalle Valo 			/* remember how long until the timer fires */
2169e705c121SKalle Valo 			txq->frozen_expiry_remainder =
2170e705c121SKalle Valo 				txq->stuck_timer.expires - now;
2171e705c121SKalle Valo 			del_timer(&txq->stuck_timer);
2172e705c121SKalle Valo 			goto next_queue;
2173e705c121SKalle Valo 		}
2174e705c121SKalle Valo 
2175e705c121SKalle Valo 		/*
2176e705c121SKalle Valo 		 * Wake a non-empty queue -> arm timer with the
2177e705c121SKalle Valo 		 * remainder before it froze
2178e705c121SKalle Valo 		 */
2179e705c121SKalle Valo 		mod_timer(&txq->stuck_timer,
2180e705c121SKalle Valo 			  now + txq->frozen_expiry_remainder);
2181e705c121SKalle Valo 
2182e705c121SKalle Valo next_queue:
2183e705c121SKalle Valo 		spin_unlock_bh(&txq->lock);
2184e705c121SKalle Valo 	}
2185e705c121SKalle Valo }
2186e705c121SKalle Valo 
21870cd58eaaSEmmanuel Grumbach static void iwl_trans_pcie_block_txq_ptrs(struct iwl_trans *trans, bool block)
21880cd58eaaSEmmanuel Grumbach {
21890cd58eaaSEmmanuel Grumbach 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
21900cd58eaaSEmmanuel Grumbach 	int i;
21910cd58eaaSEmmanuel Grumbach 
219279b6c8feSLuca Coelho 	for (i = 0; i < trans->cfg->trans.base_params->num_of_queues; i++) {
2193b2a3b1c1SSara Sharon 		struct iwl_txq *txq = trans_pcie->txq[i];
21940cd58eaaSEmmanuel Grumbach 
21950cd58eaaSEmmanuel Grumbach 		if (i == trans_pcie->cmd_queue)
21960cd58eaaSEmmanuel Grumbach 			continue;
21970cd58eaaSEmmanuel Grumbach 
21980cd58eaaSEmmanuel Grumbach 		spin_lock_bh(&txq->lock);
21990cd58eaaSEmmanuel Grumbach 
22000cd58eaaSEmmanuel Grumbach 		if (!block && !(WARN_ON_ONCE(!txq->block))) {
22010cd58eaaSEmmanuel Grumbach 			txq->block--;
22020cd58eaaSEmmanuel Grumbach 			if (!txq->block) {
22030cd58eaaSEmmanuel Grumbach 				iwl_write32(trans, HBUS_TARG_WRPTR,
2204bb98ecd4SSara Sharon 					    txq->write_ptr | (i << 8));
22050cd58eaaSEmmanuel Grumbach 			}
22060cd58eaaSEmmanuel Grumbach 		} else if (block) {
22070cd58eaaSEmmanuel Grumbach 			txq->block++;
22080cd58eaaSEmmanuel Grumbach 		}
22090cd58eaaSEmmanuel Grumbach 
22100cd58eaaSEmmanuel Grumbach 		spin_unlock_bh(&txq->lock);
22110cd58eaaSEmmanuel Grumbach 	}
22120cd58eaaSEmmanuel Grumbach }
22130cd58eaaSEmmanuel Grumbach 
2214e705c121SKalle Valo #define IWL_FLUSH_WAIT_MS	2000
2215e705c121SKalle Valo 
221638398efbSSara Sharon void iwl_trans_pcie_log_scd_error(struct iwl_trans *trans, struct iwl_txq *txq)
221738398efbSSara Sharon {
2218afb84431SEmmanuel Grumbach 	u32 txq_id = txq->id;
2219afb84431SEmmanuel Grumbach 	u32 status;
2220afb84431SEmmanuel Grumbach 	bool active;
2221afb84431SEmmanuel Grumbach 	u8 fifo;
222238398efbSSara Sharon 
222379b6c8feSLuca Coelho 	if (trans->cfg->trans.use_tfh) {
2224afb84431SEmmanuel Grumbach 		IWL_ERR(trans, "Queue %d is stuck %d %d\n", txq_id,
2225bb98ecd4SSara Sharon 			txq->read_ptr, txq->write_ptr);
2226ae79785fSSara Sharon 		/* TODO: access new SCD registers and dump them */
2227ae79785fSSara Sharon 		return;
2228afb84431SEmmanuel Grumbach 	}
2229ae79785fSSara Sharon 
2230afb84431SEmmanuel Grumbach 	status = iwl_read_prph(trans, SCD_QUEUE_STATUS_BITS(txq_id));
2231afb84431SEmmanuel Grumbach 	fifo = (status >> SCD_QUEUE_STTS_REG_POS_TXF) & 0x7;
2232afb84431SEmmanuel Grumbach 	active = !!(status & BIT(SCD_QUEUE_STTS_REG_POS_ACTIVE));
223338398efbSSara Sharon 
223438398efbSSara Sharon 	IWL_ERR(trans,
2235afb84431SEmmanuel Grumbach 		"Queue %d is %sactive on fifo %d and stuck for %u ms. SW [%d, %d] HW [%d, %d] FH TRB=0x0%x\n",
2236afb84431SEmmanuel Grumbach 		txq_id, active ? "" : "in", fifo,
2237afb84431SEmmanuel Grumbach 		jiffies_to_msecs(txq->wd_timeout),
2238afb84431SEmmanuel Grumbach 		txq->read_ptr, txq->write_ptr,
2239afb84431SEmmanuel Grumbach 		iwl_read_prph(trans, SCD_QUEUE_RDPTR(txq_id)) &
224079b6c8feSLuca Coelho 			(trans->cfg->trans.base_params->max_tfd_queue_size - 1),
2241afb84431SEmmanuel Grumbach 		iwl_read_prph(trans, SCD_QUEUE_WRPTR(txq_id)) &
224279b6c8feSLuca Coelho 			(trans->cfg->trans.base_params->max_tfd_queue_size - 1),
2243afb84431SEmmanuel Grumbach 		iwl_read_direct32(trans, FH_TX_TRB_REG(fifo)));
224438398efbSSara Sharon }
224538398efbSSara Sharon 
224692536c96SSara Sharon static int iwl_trans_pcie_rxq_dma_data(struct iwl_trans *trans, int queue,
224792536c96SSara Sharon 				       struct iwl_trans_rxq_dma_data *data)
224892536c96SSara Sharon {
224992536c96SSara Sharon 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
225092536c96SSara Sharon 
225192536c96SSara Sharon 	if (queue >= trans->num_rx_queues || !trans_pcie->rxq)
225292536c96SSara Sharon 		return -EINVAL;
225392536c96SSara Sharon 
225492536c96SSara Sharon 	data->fr_bd_cb = trans_pcie->rxq[queue].bd_dma;
225592536c96SSara Sharon 	data->urbd_stts_wrptr = trans_pcie->rxq[queue].rb_stts_dma;
225692536c96SSara Sharon 	data->ur_bd_cb = trans_pcie->rxq[queue].used_bd_dma;
225792536c96SSara Sharon 	data->fr_bd_wid = 0;
225892536c96SSara Sharon 
225992536c96SSara Sharon 	return 0;
226092536c96SSara Sharon }
226192536c96SSara Sharon 
2262d6d517b7SSara Sharon static int iwl_trans_pcie_wait_txq_empty(struct iwl_trans *trans, int txq_idx)
2263e705c121SKalle Valo {
2264e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2265e705c121SKalle Valo 	struct iwl_txq *txq;
2266e705c121SKalle Valo 	unsigned long now = jiffies;
22672ae48edcSSara Sharon 	bool overflow_tx;
2268e705c121SKalle Valo 	u8 wr_ptr;
2269e705c121SKalle Valo 
22702b3fae66SMatt Chen 	/* Make sure the NIC is still alive in the bus */
2271f60c9e59SEmmanuel Grumbach 	if (test_bit(STATUS_TRANS_DEAD, &trans->status))
2272f60c9e59SEmmanuel Grumbach 		return -ENODEV;
22732b3fae66SMatt Chen 
2274d6d517b7SSara Sharon 	if (!test_bit(txq_idx, trans_pcie->queue_used))
2275d6d517b7SSara Sharon 		return -EINVAL;
2276e705c121SKalle Valo 
2277d6d517b7SSara Sharon 	IWL_DEBUG_TX_QUEUES(trans, "Emptying queue %d...\n", txq_idx);
2278d6d517b7SSara Sharon 	txq = trans_pcie->txq[txq_idx];
22792ae48edcSSara Sharon 
22802ae48edcSSara Sharon 	spin_lock_bh(&txq->lock);
22812ae48edcSSara Sharon 	overflow_tx = txq->overflow_tx ||
22822ae48edcSSara Sharon 		      !skb_queue_empty(&txq->overflow_q);
22832ae48edcSSara Sharon 	spin_unlock_bh(&txq->lock);
22842ae48edcSSara Sharon 
22856aa7de05SMark Rutland 	wr_ptr = READ_ONCE(txq->write_ptr);
2286e705c121SKalle Valo 
22872ae48edcSSara Sharon 	while ((txq->read_ptr != READ_ONCE(txq->write_ptr) ||
22882ae48edcSSara Sharon 		overflow_tx) &&
2289e705c121SKalle Valo 	       !time_after(jiffies,
2290e705c121SKalle Valo 			   now + msecs_to_jiffies(IWL_FLUSH_WAIT_MS))) {
22916aa7de05SMark Rutland 		u8 write_ptr = READ_ONCE(txq->write_ptr);
2292e705c121SKalle Valo 
22932ae48edcSSara Sharon 		/*
22942ae48edcSSara Sharon 		 * If write pointer moved during the wait, warn only
22952ae48edcSSara Sharon 		 * if the TX came from op mode. In case TX came from
22962ae48edcSSara Sharon 		 * trans layer (overflow TX) don't warn.
22972ae48edcSSara Sharon 		 */
22982ae48edcSSara Sharon 		if (WARN_ONCE(wr_ptr != write_ptr && !overflow_tx,
2299e705c121SKalle Valo 			      "WR pointer moved while flushing %d -> %d\n",
2300e705c121SKalle Valo 			      wr_ptr, write_ptr))
2301e705c121SKalle Valo 			return -ETIMEDOUT;
23022ae48edcSSara Sharon 		wr_ptr = write_ptr;
23032ae48edcSSara Sharon 
2304192185d6SJohannes Berg 		usleep_range(1000, 2000);
23052ae48edcSSara Sharon 
23062ae48edcSSara Sharon 		spin_lock_bh(&txq->lock);
23072ae48edcSSara Sharon 		overflow_tx = txq->overflow_tx ||
23082ae48edcSSara Sharon 			      !skb_queue_empty(&txq->overflow_q);
23092ae48edcSSara Sharon 		spin_unlock_bh(&txq->lock);
2310e705c121SKalle Valo 	}
2311e705c121SKalle Valo 
2312bb98ecd4SSara Sharon 	if (txq->read_ptr != txq->write_ptr) {
2313e705c121SKalle Valo 		IWL_ERR(trans,
2314d6d517b7SSara Sharon 			"fail to flush all tx fifo queues Q %d\n", txq_idx);
2315d6d517b7SSara Sharon 		iwl_trans_pcie_log_scd_error(trans, txq);
2316d6d517b7SSara Sharon 		return -ETIMEDOUT;
2317e705c121SKalle Valo 	}
2318e705c121SKalle Valo 
2319d6d517b7SSara Sharon 	IWL_DEBUG_TX_QUEUES(trans, "Queue %d is now empty.\n", txq_idx);
2320d6d517b7SSara Sharon 
2321d6d517b7SSara Sharon 	return 0;
2322d6d517b7SSara Sharon }
2323d6d517b7SSara Sharon 
2324d6d517b7SSara Sharon static int iwl_trans_pcie_wait_txqs_empty(struct iwl_trans *trans, u32 txq_bm)
2325d6d517b7SSara Sharon {
2326d6d517b7SSara Sharon 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2327d6d517b7SSara Sharon 	int cnt;
2328d6d517b7SSara Sharon 	int ret = 0;
2329d6d517b7SSara Sharon 
2330d6d517b7SSara Sharon 	/* waiting for all the tx frames complete might take a while */
233179b6c8feSLuca Coelho 	for (cnt = 0;
233279b6c8feSLuca Coelho 	     cnt < trans->cfg->trans.base_params->num_of_queues;
233379b6c8feSLuca Coelho 	     cnt++) {
2334d6d517b7SSara Sharon 
2335d6d517b7SSara Sharon 		if (cnt == trans_pcie->cmd_queue)
2336d6d517b7SSara Sharon 			continue;
2337d6d517b7SSara Sharon 		if (!test_bit(cnt, trans_pcie->queue_used))
2338d6d517b7SSara Sharon 			continue;
2339d6d517b7SSara Sharon 		if (!(BIT(cnt) & txq_bm))
2340d6d517b7SSara Sharon 			continue;
2341d6d517b7SSara Sharon 
2342d6d517b7SSara Sharon 		ret = iwl_trans_pcie_wait_txq_empty(trans, cnt);
234338398efbSSara Sharon 		if (ret)
2344d6d517b7SSara Sharon 			break;
2345d6d517b7SSara Sharon 	}
2346e705c121SKalle Valo 
2347e705c121SKalle Valo 	return ret;
2348e705c121SKalle Valo }
2349e705c121SKalle Valo 
2350e705c121SKalle Valo static void iwl_trans_pcie_set_bits_mask(struct iwl_trans *trans, u32 reg,
2351e705c121SKalle Valo 					 u32 mask, u32 value)
2352e705c121SKalle Valo {
2353e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2354e705c121SKalle Valo 	unsigned long flags;
2355e705c121SKalle Valo 
2356e705c121SKalle Valo 	spin_lock_irqsave(&trans_pcie->reg_lock, flags);
2357e705c121SKalle Valo 	__iwl_trans_pcie_set_bits_mask(trans, reg, mask, value);
2358e705c121SKalle Valo 	spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
2359e705c121SKalle Valo }
2360e705c121SKalle Valo 
2361e705c121SKalle Valo static const char *get_csr_string(int cmd)
2362e705c121SKalle Valo {
2363e705c121SKalle Valo #define IWL_CMD(x) case x: return #x
2364e705c121SKalle Valo 	switch (cmd) {
2365e705c121SKalle Valo 	IWL_CMD(CSR_HW_IF_CONFIG_REG);
2366e705c121SKalle Valo 	IWL_CMD(CSR_INT_COALESCING);
2367e705c121SKalle Valo 	IWL_CMD(CSR_INT);
2368e705c121SKalle Valo 	IWL_CMD(CSR_INT_MASK);
2369e705c121SKalle Valo 	IWL_CMD(CSR_FH_INT_STATUS);
2370e705c121SKalle Valo 	IWL_CMD(CSR_GPIO_IN);
2371e705c121SKalle Valo 	IWL_CMD(CSR_RESET);
2372e705c121SKalle Valo 	IWL_CMD(CSR_GP_CNTRL);
2373e705c121SKalle Valo 	IWL_CMD(CSR_HW_REV);
2374e705c121SKalle Valo 	IWL_CMD(CSR_EEPROM_REG);
2375e705c121SKalle Valo 	IWL_CMD(CSR_EEPROM_GP);
2376e705c121SKalle Valo 	IWL_CMD(CSR_OTP_GP_REG);
2377e705c121SKalle Valo 	IWL_CMD(CSR_GIO_REG);
2378e705c121SKalle Valo 	IWL_CMD(CSR_GP_UCODE_REG);
2379e705c121SKalle Valo 	IWL_CMD(CSR_GP_DRIVER_REG);
2380e705c121SKalle Valo 	IWL_CMD(CSR_UCODE_DRV_GP1);
2381e705c121SKalle Valo 	IWL_CMD(CSR_UCODE_DRV_GP2);
2382e705c121SKalle Valo 	IWL_CMD(CSR_LED_REG);
2383e705c121SKalle Valo 	IWL_CMD(CSR_DRAM_INT_TBL_REG);
2384e705c121SKalle Valo 	IWL_CMD(CSR_GIO_CHICKEN_BITS);
2385e705c121SKalle Valo 	IWL_CMD(CSR_ANA_PLL_CFG);
2386e705c121SKalle Valo 	IWL_CMD(CSR_HW_REV_WA_REG);
2387e705c121SKalle Valo 	IWL_CMD(CSR_MONITOR_STATUS_REG);
2388e705c121SKalle Valo 	IWL_CMD(CSR_DBG_HPET_MEM_REG);
2389e705c121SKalle Valo 	default:
2390e705c121SKalle Valo 		return "UNKNOWN";
2391e705c121SKalle Valo 	}
2392e705c121SKalle Valo #undef IWL_CMD
2393e705c121SKalle Valo }
2394e705c121SKalle Valo 
2395e705c121SKalle Valo void iwl_pcie_dump_csr(struct iwl_trans *trans)
2396e705c121SKalle Valo {
2397e705c121SKalle Valo 	int i;
2398e705c121SKalle Valo 	static const u32 csr_tbl[] = {
2399e705c121SKalle Valo 		CSR_HW_IF_CONFIG_REG,
2400e705c121SKalle Valo 		CSR_INT_COALESCING,
2401e705c121SKalle Valo 		CSR_INT,
2402e705c121SKalle Valo 		CSR_INT_MASK,
2403e705c121SKalle Valo 		CSR_FH_INT_STATUS,
2404e705c121SKalle Valo 		CSR_GPIO_IN,
2405e705c121SKalle Valo 		CSR_RESET,
2406e705c121SKalle Valo 		CSR_GP_CNTRL,
2407e705c121SKalle Valo 		CSR_HW_REV,
2408e705c121SKalle Valo 		CSR_EEPROM_REG,
2409e705c121SKalle Valo 		CSR_EEPROM_GP,
2410e705c121SKalle Valo 		CSR_OTP_GP_REG,
2411e705c121SKalle Valo 		CSR_GIO_REG,
2412e705c121SKalle Valo 		CSR_GP_UCODE_REG,
2413e705c121SKalle Valo 		CSR_GP_DRIVER_REG,
2414e705c121SKalle Valo 		CSR_UCODE_DRV_GP1,
2415e705c121SKalle Valo 		CSR_UCODE_DRV_GP2,
2416e705c121SKalle Valo 		CSR_LED_REG,
2417e705c121SKalle Valo 		CSR_DRAM_INT_TBL_REG,
2418e705c121SKalle Valo 		CSR_GIO_CHICKEN_BITS,
2419e705c121SKalle Valo 		CSR_ANA_PLL_CFG,
2420e705c121SKalle Valo 		CSR_MONITOR_STATUS_REG,
2421e705c121SKalle Valo 		CSR_HW_REV_WA_REG,
2422e705c121SKalle Valo 		CSR_DBG_HPET_MEM_REG
2423e705c121SKalle Valo 	};
2424e705c121SKalle Valo 	IWL_ERR(trans, "CSR values:\n");
2425e705c121SKalle Valo 	IWL_ERR(trans, "(2nd byte of CSR_INT_COALESCING is "
2426e705c121SKalle Valo 		"CSR_INT_PERIODIC_REG)\n");
2427e705c121SKalle Valo 	for (i = 0; i <  ARRAY_SIZE(csr_tbl); i++) {
2428e705c121SKalle Valo 		IWL_ERR(trans, "  %25s: 0X%08x\n",
2429e705c121SKalle Valo 			get_csr_string(csr_tbl[i]),
2430e705c121SKalle Valo 			iwl_read32(trans, csr_tbl[i]));
2431e705c121SKalle Valo 	}
2432e705c121SKalle Valo }
2433e705c121SKalle Valo 
2434e705c121SKalle Valo #ifdef CONFIG_IWLWIFI_DEBUGFS
2435e705c121SKalle Valo /* create and remove of files */
2436e705c121SKalle Valo #define DEBUGFS_ADD_FILE(name, parent, mode) do {			\
2437cf5d5663SGreg Kroah-Hartman 	debugfs_create_file(#name, mode, parent, trans,			\
2438cf5d5663SGreg Kroah-Hartman 			    &iwl_dbgfs_##name##_ops);			\
2439e705c121SKalle Valo } while (0)
2440e705c121SKalle Valo 
2441e705c121SKalle Valo /* file operation */
2442e705c121SKalle Valo #define DEBUGFS_READ_FILE_OPS(name)					\
2443e705c121SKalle Valo static const struct file_operations iwl_dbgfs_##name##_ops = {		\
2444e705c121SKalle Valo 	.read = iwl_dbgfs_##name##_read,				\
2445e705c121SKalle Valo 	.open = simple_open,						\
2446e705c121SKalle Valo 	.llseek = generic_file_llseek,					\
2447e705c121SKalle Valo };
2448e705c121SKalle Valo 
2449e705c121SKalle Valo #define DEBUGFS_WRITE_FILE_OPS(name)                                    \
2450e705c121SKalle Valo static const struct file_operations iwl_dbgfs_##name##_ops = {          \
2451e705c121SKalle Valo 	.write = iwl_dbgfs_##name##_write,                              \
2452e705c121SKalle Valo 	.open = simple_open,						\
2453e705c121SKalle Valo 	.llseek = generic_file_llseek,					\
2454e705c121SKalle Valo };
2455e705c121SKalle Valo 
2456e705c121SKalle Valo #define DEBUGFS_READ_WRITE_FILE_OPS(name)				\
2457e705c121SKalle Valo static const struct file_operations iwl_dbgfs_##name##_ops = {		\
2458e705c121SKalle Valo 	.write = iwl_dbgfs_##name##_write,				\
2459e705c121SKalle Valo 	.read = iwl_dbgfs_##name##_read,				\
2460e705c121SKalle Valo 	.open = simple_open,						\
2461e705c121SKalle Valo 	.llseek = generic_file_llseek,					\
2462e705c121SKalle Valo };
2463e705c121SKalle Valo 
2464e705c121SKalle Valo static ssize_t iwl_dbgfs_tx_queue_read(struct file *file,
2465e705c121SKalle Valo 				       char __user *user_buf,
2466e705c121SKalle Valo 				       size_t count, loff_t *ppos)
2467e705c121SKalle Valo {
2468e705c121SKalle Valo 	struct iwl_trans *trans = file->private_data;
2469e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2470e705c121SKalle Valo 	struct iwl_txq *txq;
2471e705c121SKalle Valo 	char *buf;
2472e705c121SKalle Valo 	int pos = 0;
2473e705c121SKalle Valo 	int cnt;
2474e705c121SKalle Valo 	int ret;
2475e705c121SKalle Valo 	size_t bufsz;
2476e705c121SKalle Valo 
247779b6c8feSLuca Coelho 	bufsz = sizeof(char) * 75 *
247879b6c8feSLuca Coelho 		trans->cfg->trans.base_params->num_of_queues;
2479e705c121SKalle Valo 
2480b2a3b1c1SSara Sharon 	if (!trans_pcie->txq_memory)
2481e705c121SKalle Valo 		return -EAGAIN;
2482e705c121SKalle Valo 
2483e705c121SKalle Valo 	buf = kzalloc(bufsz, GFP_KERNEL);
2484e705c121SKalle Valo 	if (!buf)
2485e705c121SKalle Valo 		return -ENOMEM;
2486e705c121SKalle Valo 
248779b6c8feSLuca Coelho 	for (cnt = 0;
248879b6c8feSLuca Coelho 	     cnt < trans->cfg->trans.base_params->num_of_queues;
248979b6c8feSLuca Coelho 	     cnt++) {
2490b2a3b1c1SSara Sharon 		txq = trans_pcie->txq[cnt];
2491e705c121SKalle Valo 		pos += scnprintf(buf + pos, bufsz - pos,
2492e705c121SKalle Valo 				"hwq %.2d: read=%u write=%u use=%d stop=%d need_update=%d frozen=%d%s\n",
2493bb98ecd4SSara Sharon 				cnt, txq->read_ptr, txq->write_ptr,
2494e705c121SKalle Valo 				!!test_bit(cnt, trans_pcie->queue_used),
2495e705c121SKalle Valo 				 !!test_bit(cnt, trans_pcie->queue_stopped),
2496e705c121SKalle Valo 				 txq->need_update, txq->frozen,
2497e705c121SKalle Valo 				 (cnt == trans_pcie->cmd_queue ? " HCMD" : ""));
2498e705c121SKalle Valo 	}
2499e705c121SKalle Valo 	ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2500e705c121SKalle Valo 	kfree(buf);
2501e705c121SKalle Valo 	return ret;
2502e705c121SKalle Valo }
2503e705c121SKalle Valo 
2504e705c121SKalle Valo static ssize_t iwl_dbgfs_rx_queue_read(struct file *file,
2505e705c121SKalle Valo 				       char __user *user_buf,
2506e705c121SKalle Valo 				       size_t count, loff_t *ppos)
2507e705c121SKalle Valo {
2508e705c121SKalle Valo 	struct iwl_trans *trans = file->private_data;
2509e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
251078485054SSara Sharon 	char *buf;
251178485054SSara Sharon 	int pos = 0, i, ret;
251278485054SSara Sharon 	size_t bufsz = sizeof(buf);
2513e705c121SKalle Valo 
251478485054SSara Sharon 	bufsz = sizeof(char) * 121 * trans->num_rx_queues;
251578485054SSara Sharon 
251678485054SSara Sharon 	if (!trans_pcie->rxq)
251778485054SSara Sharon 		return -EAGAIN;
251878485054SSara Sharon 
251978485054SSara Sharon 	buf = kzalloc(bufsz, GFP_KERNEL);
252078485054SSara Sharon 	if (!buf)
252178485054SSara Sharon 		return -ENOMEM;
252278485054SSara Sharon 
252378485054SSara Sharon 	for (i = 0; i < trans->num_rx_queues && pos < bufsz; i++) {
252478485054SSara Sharon 		struct iwl_rxq *rxq = &trans_pcie->rxq[i];
252578485054SSara Sharon 
252678485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "queue#: %2d\n",
252778485054SSara Sharon 				 i);
252878485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "\tread: %u\n",
2529e705c121SKalle Valo 				 rxq->read);
253078485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "\twrite: %u\n",
2531e705c121SKalle Valo 				 rxq->write);
253278485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "\twrite_actual: %u\n",
2533e705c121SKalle Valo 				 rxq->write_actual);
253478485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "\tneed_update: %2d\n",
2535e705c121SKalle Valo 				 rxq->need_update);
253678485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "\tfree_count: %u\n",
2537e705c121SKalle Valo 				 rxq->free_count);
2538e705c121SKalle Valo 		if (rxq->rb_stts) {
25390307c839SGolan Ben Ami 			u32 r =	__le16_to_cpu(iwl_get_closed_rb_stts(trans,
25400307c839SGolan Ben Ami 								     rxq));
254178485054SSara Sharon 			pos += scnprintf(buf + pos, bufsz - pos,
254278485054SSara Sharon 					 "\tclosed_rb_num: %u\n",
25430307c839SGolan Ben Ami 					 r & 0x0FFF);
2544e705c121SKalle Valo 		} else {
2545e705c121SKalle Valo 			pos += scnprintf(buf + pos, bufsz - pos,
254678485054SSara Sharon 					 "\tclosed_rb_num: Not Allocated\n");
2547e705c121SKalle Valo 		}
254878485054SSara Sharon 	}
254978485054SSara Sharon 	ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
255078485054SSara Sharon 	kfree(buf);
255178485054SSara Sharon 
255278485054SSara Sharon 	return ret;
2553e705c121SKalle Valo }
2554e705c121SKalle Valo 
2555e705c121SKalle Valo static ssize_t iwl_dbgfs_interrupt_read(struct file *file,
2556e705c121SKalle Valo 					char __user *user_buf,
2557e705c121SKalle Valo 					size_t count, loff_t *ppos)
2558e705c121SKalle Valo {
2559e705c121SKalle Valo 	struct iwl_trans *trans = file->private_data;
2560e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2561e705c121SKalle Valo 	struct isr_statistics *isr_stats = &trans_pcie->isr_stats;
2562e705c121SKalle Valo 
2563e705c121SKalle Valo 	int pos = 0;
2564e705c121SKalle Valo 	char *buf;
2565e705c121SKalle Valo 	int bufsz = 24 * 64; /* 24 items * 64 char per item */
2566e705c121SKalle Valo 	ssize_t ret;
2567e705c121SKalle Valo 
2568e705c121SKalle Valo 	buf = kzalloc(bufsz, GFP_KERNEL);
2569e705c121SKalle Valo 	if (!buf)
2570e705c121SKalle Valo 		return -ENOMEM;
2571e705c121SKalle Valo 
2572e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos,
2573e705c121SKalle Valo 			"Interrupt Statistics Report:\n");
2574e705c121SKalle Valo 
2575e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "HW Error:\t\t\t %u\n",
2576e705c121SKalle Valo 		isr_stats->hw);
2577e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "SW Error:\t\t\t %u\n",
2578e705c121SKalle Valo 		isr_stats->sw);
2579e705c121SKalle Valo 	if (isr_stats->sw || isr_stats->hw) {
2580e705c121SKalle Valo 		pos += scnprintf(buf + pos, bufsz - pos,
2581e705c121SKalle Valo 			"\tLast Restarting Code:  0x%X\n",
2582e705c121SKalle Valo 			isr_stats->err_code);
2583e705c121SKalle Valo 	}
2584e705c121SKalle Valo #ifdef CONFIG_IWLWIFI_DEBUG
2585e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "Frame transmitted:\t\t %u\n",
2586e705c121SKalle Valo 		isr_stats->sch);
2587e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "Alive interrupt:\t\t %u\n",
2588e705c121SKalle Valo 		isr_stats->alive);
2589e705c121SKalle Valo #endif
2590e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos,
2591e705c121SKalle Valo 		"HW RF KILL switch toggled:\t %u\n", isr_stats->rfkill);
2592e705c121SKalle Valo 
2593e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "CT KILL:\t\t\t %u\n",
2594e705c121SKalle Valo 		isr_stats->ctkill);
2595e705c121SKalle Valo 
2596e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "Wakeup Interrupt:\t\t %u\n",
2597e705c121SKalle Valo 		isr_stats->wakeup);
2598e705c121SKalle Valo 
2599e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos,
2600e705c121SKalle Valo 		"Rx command responses:\t\t %u\n", isr_stats->rx);
2601e705c121SKalle Valo 
2602e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "Tx/FH interrupt:\t\t %u\n",
2603e705c121SKalle Valo 		isr_stats->tx);
2604e705c121SKalle Valo 
2605e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "Unexpected INTA:\t\t %u\n",
2606e705c121SKalle Valo 		isr_stats->unhandled);
2607e705c121SKalle Valo 
2608e705c121SKalle Valo 	ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2609e705c121SKalle Valo 	kfree(buf);
2610e705c121SKalle Valo 	return ret;
2611e705c121SKalle Valo }
2612e705c121SKalle Valo 
2613e705c121SKalle Valo static ssize_t iwl_dbgfs_interrupt_write(struct file *file,
2614e705c121SKalle Valo 					 const char __user *user_buf,
2615e705c121SKalle Valo 					 size_t count, loff_t *ppos)
2616e705c121SKalle Valo {
2617e705c121SKalle Valo 	struct iwl_trans *trans = file->private_data;
2618e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2619e705c121SKalle Valo 	struct isr_statistics *isr_stats = &trans_pcie->isr_stats;
2620e705c121SKalle Valo 	u32 reset_flag;
2621078f1131SJohannes Berg 	int ret;
2622e705c121SKalle Valo 
2623078f1131SJohannes Berg 	ret = kstrtou32_from_user(user_buf, count, 16, &reset_flag);
2624078f1131SJohannes Berg 	if (ret)
2625078f1131SJohannes Berg 		return ret;
2626e705c121SKalle Valo 	if (reset_flag == 0)
2627e705c121SKalle Valo 		memset(isr_stats, 0, sizeof(*isr_stats));
2628e705c121SKalle Valo 
2629e705c121SKalle Valo 	return count;
2630e705c121SKalle Valo }
2631e705c121SKalle Valo 
2632e705c121SKalle Valo static ssize_t iwl_dbgfs_csr_write(struct file *file,
2633e705c121SKalle Valo 				   const char __user *user_buf,
2634e705c121SKalle Valo 				   size_t count, loff_t *ppos)
2635e705c121SKalle Valo {
2636e705c121SKalle Valo 	struct iwl_trans *trans = file->private_data;
2637e705c121SKalle Valo 
2638e705c121SKalle Valo 	iwl_pcie_dump_csr(trans);
2639e705c121SKalle Valo 
2640e705c121SKalle Valo 	return count;
2641e705c121SKalle Valo }
2642e705c121SKalle Valo 
2643e705c121SKalle Valo static ssize_t iwl_dbgfs_fh_reg_read(struct file *file,
2644e705c121SKalle Valo 				     char __user *user_buf,
2645e705c121SKalle Valo 				     size_t count, loff_t *ppos)
2646e705c121SKalle Valo {
2647e705c121SKalle Valo 	struct iwl_trans *trans = file->private_data;
2648e705c121SKalle Valo 	char *buf = NULL;
2649e705c121SKalle Valo 	ssize_t ret;
2650e705c121SKalle Valo 
2651e705c121SKalle Valo 	ret = iwl_dump_fh(trans, &buf);
2652e705c121SKalle Valo 	if (ret < 0)
2653e705c121SKalle Valo 		return ret;
2654e705c121SKalle Valo 	if (!buf)
2655e705c121SKalle Valo 		return -EINVAL;
2656e705c121SKalle Valo 	ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
2657e705c121SKalle Valo 	kfree(buf);
2658e705c121SKalle Valo 	return ret;
2659e705c121SKalle Valo }
2660e705c121SKalle Valo 
2661fa4de7f7SJohannes Berg static ssize_t iwl_dbgfs_rfkill_read(struct file *file,
2662fa4de7f7SJohannes Berg 				     char __user *user_buf,
2663fa4de7f7SJohannes Berg 				     size_t count, loff_t *ppos)
2664fa4de7f7SJohannes Berg {
2665fa4de7f7SJohannes Berg 	struct iwl_trans *trans = file->private_data;
2666fa4de7f7SJohannes Berg 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2667fa4de7f7SJohannes Berg 	char buf[100];
2668fa4de7f7SJohannes Berg 	int pos;
2669fa4de7f7SJohannes Berg 
2670fa4de7f7SJohannes Berg 	pos = scnprintf(buf, sizeof(buf), "debug: %d\nhw: %d\n",
2671fa4de7f7SJohannes Berg 			trans_pcie->debug_rfkill,
2672fa4de7f7SJohannes Berg 			!(iwl_read32(trans, CSR_GP_CNTRL) &
2673fa4de7f7SJohannes Berg 				CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW));
2674fa4de7f7SJohannes Berg 
2675fa4de7f7SJohannes Berg 	return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2676fa4de7f7SJohannes Berg }
2677fa4de7f7SJohannes Berg 
2678fa4de7f7SJohannes Berg static ssize_t iwl_dbgfs_rfkill_write(struct file *file,
2679fa4de7f7SJohannes Berg 				      const char __user *user_buf,
2680fa4de7f7SJohannes Berg 				      size_t count, loff_t *ppos)
2681fa4de7f7SJohannes Berg {
2682fa4de7f7SJohannes Berg 	struct iwl_trans *trans = file->private_data;
2683fa4de7f7SJohannes Berg 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2684c5bf4fa1SJohannes Berg 	bool new_value;
2685fa4de7f7SJohannes Berg 	int ret;
2686fa4de7f7SJohannes Berg 
2687c5bf4fa1SJohannes Berg 	ret = kstrtobool_from_user(user_buf, count, &new_value);
2688fa4de7f7SJohannes Berg 	if (ret)
2689fa4de7f7SJohannes Berg 		return ret;
2690c5bf4fa1SJohannes Berg 	if (new_value == trans_pcie->debug_rfkill)
2691fa4de7f7SJohannes Berg 		return count;
2692fa4de7f7SJohannes Berg 	IWL_WARN(trans, "changing debug rfkill %d->%d\n",
2693c5bf4fa1SJohannes Berg 		 trans_pcie->debug_rfkill, new_value);
2694c5bf4fa1SJohannes Berg 	trans_pcie->debug_rfkill = new_value;
2695fa4de7f7SJohannes Berg 	iwl_pcie_handle_rfkill_irq(trans);
2696fa4de7f7SJohannes Berg 
2697fa4de7f7SJohannes Berg 	return count;
2698fa4de7f7SJohannes Berg }
2699fa4de7f7SJohannes Berg 
2700f7805b33SLior Cohen static int iwl_dbgfs_monitor_data_open(struct inode *inode,
2701f7805b33SLior Cohen 				       struct file *file)
2702f7805b33SLior Cohen {
2703f7805b33SLior Cohen 	struct iwl_trans *trans = inode->i_private;
2704f7805b33SLior Cohen 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2705f7805b33SLior Cohen 
270691c28b83SShahar S Matityahu 	if (!trans->dbg.dest_tlv ||
270791c28b83SShahar S Matityahu 	    trans->dbg.dest_tlv->monitor_mode != EXTERNAL_MODE) {
2708f7805b33SLior Cohen 		IWL_ERR(trans, "Debug destination is not set to DRAM\n");
2709f7805b33SLior Cohen 		return -ENOENT;
2710f7805b33SLior Cohen 	}
2711f7805b33SLior Cohen 
2712f7805b33SLior Cohen 	if (trans_pcie->fw_mon_data.state != IWL_FW_MON_DBGFS_STATE_CLOSED)
2713f7805b33SLior Cohen 		return -EBUSY;
2714f7805b33SLior Cohen 
2715f7805b33SLior Cohen 	trans_pcie->fw_mon_data.state = IWL_FW_MON_DBGFS_STATE_OPEN;
2716f7805b33SLior Cohen 	return simple_open(inode, file);
2717f7805b33SLior Cohen }
2718f7805b33SLior Cohen 
2719f7805b33SLior Cohen static int iwl_dbgfs_monitor_data_release(struct inode *inode,
2720f7805b33SLior Cohen 					  struct file *file)
2721f7805b33SLior Cohen {
2722f7805b33SLior Cohen 	struct iwl_trans_pcie *trans_pcie =
2723f7805b33SLior Cohen 		IWL_TRANS_GET_PCIE_TRANS(inode->i_private);
2724f7805b33SLior Cohen 
2725f7805b33SLior Cohen 	if (trans_pcie->fw_mon_data.state == IWL_FW_MON_DBGFS_STATE_OPEN)
2726f7805b33SLior Cohen 		trans_pcie->fw_mon_data.state = IWL_FW_MON_DBGFS_STATE_CLOSED;
2727f7805b33SLior Cohen 	return 0;
2728f7805b33SLior Cohen }
2729f7805b33SLior Cohen 
2730f7805b33SLior Cohen static bool iwl_write_to_user_buf(char __user *user_buf, ssize_t count,
2731f7805b33SLior Cohen 				  void *buf, ssize_t *size,
2732f7805b33SLior Cohen 				  ssize_t *bytes_copied)
2733f7805b33SLior Cohen {
2734f7805b33SLior Cohen 	int buf_size_left = count - *bytes_copied;
2735f7805b33SLior Cohen 
2736f7805b33SLior Cohen 	buf_size_left = buf_size_left - (buf_size_left % sizeof(u32));
2737f7805b33SLior Cohen 	if (*size > buf_size_left)
2738f7805b33SLior Cohen 		*size = buf_size_left;
2739f7805b33SLior Cohen 
2740f7805b33SLior Cohen 	*size -= copy_to_user(user_buf, buf, *size);
2741f7805b33SLior Cohen 	*bytes_copied += *size;
2742f7805b33SLior Cohen 
2743f7805b33SLior Cohen 	if (buf_size_left == *size)
2744f7805b33SLior Cohen 		return true;
2745f7805b33SLior Cohen 	return false;
2746f7805b33SLior Cohen }
2747f7805b33SLior Cohen 
2748f7805b33SLior Cohen static ssize_t iwl_dbgfs_monitor_data_read(struct file *file,
2749f7805b33SLior Cohen 					   char __user *user_buf,
2750f7805b33SLior Cohen 					   size_t count, loff_t *ppos)
2751f7805b33SLior Cohen {
2752f7805b33SLior Cohen 	struct iwl_trans *trans = file->private_data;
2753f7805b33SLior Cohen 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
275491c28b83SShahar S Matityahu 	void *cpu_addr = (void *)trans->dbg.fw_mon[0].block, *curr_buf;
2755f7805b33SLior Cohen 	struct cont_rec *data = &trans_pcie->fw_mon_data;
2756f7805b33SLior Cohen 	u32 write_ptr_addr, wrap_cnt_addr, write_ptr, wrap_cnt;
2757f7805b33SLior Cohen 	ssize_t size, bytes_copied = 0;
2758f7805b33SLior Cohen 	bool b_full;
2759f7805b33SLior Cohen 
276091c28b83SShahar S Matityahu 	if (trans->dbg.dest_tlv) {
2761f7805b33SLior Cohen 		write_ptr_addr =
276291c28b83SShahar S Matityahu 			le32_to_cpu(trans->dbg.dest_tlv->write_ptr_reg);
276391c28b83SShahar S Matityahu 		wrap_cnt_addr = le32_to_cpu(trans->dbg.dest_tlv->wrap_count);
2764f7805b33SLior Cohen 	} else {
2765f7805b33SLior Cohen 		write_ptr_addr = MON_BUFF_WRPTR;
2766f7805b33SLior Cohen 		wrap_cnt_addr = MON_BUFF_CYCLE_CNT;
2767f7805b33SLior Cohen 	}
2768f7805b33SLior Cohen 
276991c28b83SShahar S Matityahu 	if (unlikely(!trans->dbg.rec_on))
2770f7805b33SLior Cohen 		return 0;
2771f7805b33SLior Cohen 
2772f7805b33SLior Cohen 	mutex_lock(&data->mutex);
2773f7805b33SLior Cohen 	if (data->state ==
2774f7805b33SLior Cohen 	    IWL_FW_MON_DBGFS_STATE_DISABLED) {
2775f7805b33SLior Cohen 		mutex_unlock(&data->mutex);
2776f7805b33SLior Cohen 		return 0;
2777f7805b33SLior Cohen 	}
2778f7805b33SLior Cohen 
2779f7805b33SLior Cohen 	/* write_ptr position in bytes rather then DW */
2780f7805b33SLior Cohen 	write_ptr = iwl_read_prph(trans, write_ptr_addr) * sizeof(u32);
2781f7805b33SLior Cohen 	wrap_cnt = iwl_read_prph(trans, wrap_cnt_addr);
2782f7805b33SLior Cohen 
2783f7805b33SLior Cohen 	if (data->prev_wrap_cnt == wrap_cnt) {
2784f7805b33SLior Cohen 		size = write_ptr - data->prev_wr_ptr;
2785f7805b33SLior Cohen 		curr_buf = cpu_addr + data->prev_wr_ptr;
2786f7805b33SLior Cohen 		b_full = iwl_write_to_user_buf(user_buf, count,
2787f7805b33SLior Cohen 					       curr_buf, &size,
2788f7805b33SLior Cohen 					       &bytes_copied);
2789f7805b33SLior Cohen 		data->prev_wr_ptr += size;
2790f7805b33SLior Cohen 
2791f7805b33SLior Cohen 	} else if (data->prev_wrap_cnt == wrap_cnt - 1 &&
2792f7805b33SLior Cohen 		   write_ptr < data->prev_wr_ptr) {
279391c28b83SShahar S Matityahu 		size = trans->dbg.fw_mon[0].size - data->prev_wr_ptr;
2794f7805b33SLior Cohen 		curr_buf = cpu_addr + data->prev_wr_ptr;
2795f7805b33SLior Cohen 		b_full = iwl_write_to_user_buf(user_buf, count,
2796f7805b33SLior Cohen 					       curr_buf, &size,
2797f7805b33SLior Cohen 					       &bytes_copied);
2798f7805b33SLior Cohen 		data->prev_wr_ptr += size;
2799f7805b33SLior Cohen 
2800f7805b33SLior Cohen 		if (!b_full) {
2801f7805b33SLior Cohen 			size = write_ptr;
2802f7805b33SLior Cohen 			b_full = iwl_write_to_user_buf(user_buf, count,
2803f7805b33SLior Cohen 						       cpu_addr, &size,
2804f7805b33SLior Cohen 						       &bytes_copied);
2805f7805b33SLior Cohen 			data->prev_wr_ptr = size;
2806f7805b33SLior Cohen 			data->prev_wrap_cnt++;
2807f7805b33SLior Cohen 		}
2808f7805b33SLior Cohen 	} else {
2809f7805b33SLior Cohen 		if (data->prev_wrap_cnt == wrap_cnt - 1 &&
2810f7805b33SLior Cohen 		    write_ptr > data->prev_wr_ptr)
2811f7805b33SLior Cohen 			IWL_WARN(trans,
2812f7805b33SLior Cohen 				 "write pointer passed previous write pointer, start copying from the beginning\n");
2813f7805b33SLior Cohen 		else if (!unlikely(data->prev_wrap_cnt == 0 &&
2814f7805b33SLior Cohen 				   data->prev_wr_ptr == 0))
2815f7805b33SLior Cohen 			IWL_WARN(trans,
2816f7805b33SLior Cohen 				 "monitor data is out of sync, start copying from the beginning\n");
2817f7805b33SLior Cohen 
2818f7805b33SLior Cohen 		size = write_ptr;
2819f7805b33SLior Cohen 		b_full = iwl_write_to_user_buf(user_buf, count,
2820f7805b33SLior Cohen 					       cpu_addr, &size,
2821f7805b33SLior Cohen 					       &bytes_copied);
2822f7805b33SLior Cohen 		data->prev_wr_ptr = size;
2823f7805b33SLior Cohen 		data->prev_wrap_cnt = wrap_cnt;
2824f7805b33SLior Cohen 	}
2825f7805b33SLior Cohen 
2826f7805b33SLior Cohen 	mutex_unlock(&data->mutex);
2827f7805b33SLior Cohen 
2828f7805b33SLior Cohen 	return bytes_copied;
2829f7805b33SLior Cohen }
2830f7805b33SLior Cohen 
2831e705c121SKalle Valo DEBUGFS_READ_WRITE_FILE_OPS(interrupt);
2832e705c121SKalle Valo DEBUGFS_READ_FILE_OPS(fh_reg);
2833e705c121SKalle Valo DEBUGFS_READ_FILE_OPS(rx_queue);
2834e705c121SKalle Valo DEBUGFS_READ_FILE_OPS(tx_queue);
2835e705c121SKalle Valo DEBUGFS_WRITE_FILE_OPS(csr);
2836fa4de7f7SJohannes Berg DEBUGFS_READ_WRITE_FILE_OPS(rfkill);
2837e705c121SKalle Valo 
2838f7805b33SLior Cohen static const struct file_operations iwl_dbgfs_monitor_data_ops = {
2839f7805b33SLior Cohen 	.read = iwl_dbgfs_monitor_data_read,
2840f7805b33SLior Cohen 	.open = iwl_dbgfs_monitor_data_open,
2841f7805b33SLior Cohen 	.release = iwl_dbgfs_monitor_data_release,
2842f7805b33SLior Cohen };
2843f7805b33SLior Cohen 
2844f8a1edb7SJohannes Berg /* Create the debugfs files and directories */
2845cf5d5663SGreg Kroah-Hartman void iwl_trans_pcie_dbgfs_register(struct iwl_trans *trans)
2846e705c121SKalle Valo {
2847f8a1edb7SJohannes Berg 	struct dentry *dir = trans->dbgfs_dir;
2848f8a1edb7SJohannes Berg 
28492ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(rx_queue, dir, 0400);
28502ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(tx_queue, dir, 0400);
28512ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(interrupt, dir, 0600);
28522ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(csr, dir, 0200);
28532ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(fh_reg, dir, 0400);
28542ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(rfkill, dir, 0600);
2855f7805b33SLior Cohen 	DEBUGFS_ADD_FILE(monitor_data, dir, 0400);
2856e705c121SKalle Valo }
2857f7805b33SLior Cohen 
2858f7805b33SLior Cohen static void iwl_trans_pcie_debugfs_cleanup(struct iwl_trans *trans)
2859f7805b33SLior Cohen {
2860f7805b33SLior Cohen 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2861f7805b33SLior Cohen 	struct cont_rec *data = &trans_pcie->fw_mon_data;
2862f7805b33SLior Cohen 
2863f7805b33SLior Cohen 	mutex_lock(&data->mutex);
2864f7805b33SLior Cohen 	data->state = IWL_FW_MON_DBGFS_STATE_DISABLED;
2865f7805b33SLior Cohen 	mutex_unlock(&data->mutex);
2866f7805b33SLior Cohen }
2867e705c121SKalle Valo #endif /*CONFIG_IWLWIFI_DEBUGFS */
2868e705c121SKalle Valo 
28696983ba69SSara Sharon static u32 iwl_trans_pcie_get_cmdlen(struct iwl_trans *trans, void *tfd)
2870e705c121SKalle Valo {
28713cd1980bSSara Sharon 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2872e705c121SKalle Valo 	u32 cmdlen = 0;
2873e705c121SKalle Valo 	int i;
2874e705c121SKalle Valo 
28753cd1980bSSara Sharon 	for (i = 0; i < trans_pcie->max_tbs; i++)
28766983ba69SSara Sharon 		cmdlen += iwl_pcie_tfd_tb_get_len(trans, tfd, i);
2877e705c121SKalle Valo 
2878e705c121SKalle Valo 	return cmdlen;
2879e705c121SKalle Valo }
2880e705c121SKalle Valo 
2881e705c121SKalle Valo static u32 iwl_trans_pcie_dump_rbs(struct iwl_trans *trans,
2882e705c121SKalle Valo 				   struct iwl_fw_error_dump_data **data,
2883e705c121SKalle Valo 				   int allocated_rb_nums)
2884e705c121SKalle Valo {
2885e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2886e705c121SKalle Valo 	int max_len = PAGE_SIZE << trans_pcie->rx_page_order;
288778485054SSara Sharon 	/* Dump RBs is supported only for pre-9000 devices (1 queue) */
288878485054SSara Sharon 	struct iwl_rxq *rxq = &trans_pcie->rxq[0];
2889e705c121SKalle Valo 	u32 i, r, j, rb_len = 0;
2890e705c121SKalle Valo 
2891e705c121SKalle Valo 	spin_lock(&rxq->lock);
2892e705c121SKalle Valo 
28930307c839SGolan Ben Ami 	r = le16_to_cpu(iwl_get_closed_rb_stts(trans, rxq)) & 0x0FFF;
2894e705c121SKalle Valo 
2895e705c121SKalle Valo 	for (i = rxq->read, j = 0;
2896e705c121SKalle Valo 	     i != r && j < allocated_rb_nums;
2897e705c121SKalle Valo 	     i = (i + 1) & RX_QUEUE_MASK, j++) {
2898e705c121SKalle Valo 		struct iwl_rx_mem_buffer *rxb = rxq->queue[i];
2899e705c121SKalle Valo 		struct iwl_fw_error_dump_rb *rb;
2900e705c121SKalle Valo 
2901e705c121SKalle Valo 		dma_unmap_page(trans->dev, rxb->page_dma, max_len,
2902e705c121SKalle Valo 			       DMA_FROM_DEVICE);
2903e705c121SKalle Valo 
2904e705c121SKalle Valo 		rb_len += sizeof(**data) + sizeof(*rb) + max_len;
2905e705c121SKalle Valo 
2906e705c121SKalle Valo 		(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_RB);
2907e705c121SKalle Valo 		(*data)->len = cpu_to_le32(sizeof(*rb) + max_len);
2908e705c121SKalle Valo 		rb = (void *)(*data)->data;
2909e705c121SKalle Valo 		rb->index = cpu_to_le32(i);
2910e705c121SKalle Valo 		memcpy(rb->data, page_address(rxb->page), max_len);
2911e705c121SKalle Valo 		/* remap the page for the free benefit */
2912e705c121SKalle Valo 		rxb->page_dma = dma_map_page(trans->dev, rxb->page, 0,
2913e705c121SKalle Valo 						     max_len,
2914e705c121SKalle Valo 						     DMA_FROM_DEVICE);
2915e705c121SKalle Valo 
2916e705c121SKalle Valo 		*data = iwl_fw_error_next_data(*data);
2917e705c121SKalle Valo 	}
2918e705c121SKalle Valo 
2919e705c121SKalle Valo 	spin_unlock(&rxq->lock);
2920e705c121SKalle Valo 
2921e705c121SKalle Valo 	return rb_len;
2922e705c121SKalle Valo }
2923e705c121SKalle Valo #define IWL_CSR_TO_DUMP (0x250)
2924e705c121SKalle Valo 
2925e705c121SKalle Valo static u32 iwl_trans_pcie_dump_csr(struct iwl_trans *trans,
2926e705c121SKalle Valo 				   struct iwl_fw_error_dump_data **data)
2927e705c121SKalle Valo {
2928e705c121SKalle Valo 	u32 csr_len = sizeof(**data) + IWL_CSR_TO_DUMP;
2929e705c121SKalle Valo 	__le32 *val;
2930e705c121SKalle Valo 	int i;
2931e705c121SKalle Valo 
2932e705c121SKalle Valo 	(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_CSR);
2933e705c121SKalle Valo 	(*data)->len = cpu_to_le32(IWL_CSR_TO_DUMP);
2934e705c121SKalle Valo 	val = (void *)(*data)->data;
2935e705c121SKalle Valo 
2936e705c121SKalle Valo 	for (i = 0; i < IWL_CSR_TO_DUMP; i += 4)
2937e705c121SKalle Valo 		*val++ = cpu_to_le32(iwl_trans_pcie_read32(trans, i));
2938e705c121SKalle Valo 
2939e705c121SKalle Valo 	*data = iwl_fw_error_next_data(*data);
2940e705c121SKalle Valo 
2941e705c121SKalle Valo 	return csr_len;
2942e705c121SKalle Valo }
2943e705c121SKalle Valo 
2944e705c121SKalle Valo static u32 iwl_trans_pcie_fh_regs_dump(struct iwl_trans *trans,
2945e705c121SKalle Valo 				       struct iwl_fw_error_dump_data **data)
2946e705c121SKalle Valo {
2947e705c121SKalle Valo 	u32 fh_regs_len = FH_MEM_UPPER_BOUND - FH_MEM_LOWER_BOUND;
2948e705c121SKalle Valo 	unsigned long flags;
2949e705c121SKalle Valo 	__le32 *val;
2950e705c121SKalle Valo 	int i;
2951e705c121SKalle Valo 
295223ba9340SEmmanuel Grumbach 	if (!iwl_trans_grab_nic_access(trans, &flags))
2953e705c121SKalle Valo 		return 0;
2954e705c121SKalle Valo 
2955e705c121SKalle Valo 	(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_FH_REGS);
2956e705c121SKalle Valo 	(*data)->len = cpu_to_le32(fh_regs_len);
2957e705c121SKalle Valo 	val = (void *)(*data)->data;
2958e705c121SKalle Valo 
295979b6c8feSLuca Coelho 	if (!trans->cfg->trans.gen2)
2960723b45e2SLiad Kaufman 		for (i = FH_MEM_LOWER_BOUND; i < FH_MEM_UPPER_BOUND;
2961723b45e2SLiad Kaufman 		     i += sizeof(u32))
2962e705c121SKalle Valo 			*val++ = cpu_to_le32(iwl_trans_pcie_read32(trans, i));
2963723b45e2SLiad Kaufman 	else
2964ea695b7cSShaul Triebitz 		for (i = iwl_umac_prph(trans, FH_MEM_LOWER_BOUND_GEN2);
2965ea695b7cSShaul Triebitz 		     i < iwl_umac_prph(trans, FH_MEM_UPPER_BOUND_GEN2);
2966723b45e2SLiad Kaufman 		     i += sizeof(u32))
2967723b45e2SLiad Kaufman 			*val++ = cpu_to_le32(iwl_trans_pcie_read_prph(trans,
2968723b45e2SLiad Kaufman 								      i));
2969e705c121SKalle Valo 
2970e705c121SKalle Valo 	iwl_trans_release_nic_access(trans, &flags);
2971e705c121SKalle Valo 
2972e705c121SKalle Valo 	*data = iwl_fw_error_next_data(*data);
2973e705c121SKalle Valo 
2974e705c121SKalle Valo 	return sizeof(**data) + fh_regs_len;
2975e705c121SKalle Valo }
2976e705c121SKalle Valo 
2977e705c121SKalle Valo static u32
2978e705c121SKalle Valo iwl_trans_pci_dump_marbh_monitor(struct iwl_trans *trans,
2979e705c121SKalle Valo 				 struct iwl_fw_error_dump_fw_mon *fw_mon_data,
2980e705c121SKalle Valo 				 u32 monitor_len)
2981e705c121SKalle Valo {
2982e705c121SKalle Valo 	u32 buf_size_in_dwords = (monitor_len >> 2);
2983e705c121SKalle Valo 	u32 *buffer = (u32 *)fw_mon_data->data;
2984e705c121SKalle Valo 	unsigned long flags;
2985e705c121SKalle Valo 	u32 i;
2986e705c121SKalle Valo 
298723ba9340SEmmanuel Grumbach 	if (!iwl_trans_grab_nic_access(trans, &flags))
2988e705c121SKalle Valo 		return 0;
2989e705c121SKalle Valo 
2990ea695b7cSShaul Triebitz 	iwl_write_umac_prph_no_grab(trans, MON_DMARB_RD_CTL_ADDR, 0x1);
2991e705c121SKalle Valo 	for (i = 0; i < buf_size_in_dwords; i++)
2992ea695b7cSShaul Triebitz 		buffer[i] = iwl_read_umac_prph_no_grab(trans,
299314ef1b43SGolan Ben-Ami 						       MON_DMARB_RD_DATA_ADDR);
2994ea695b7cSShaul Triebitz 	iwl_write_umac_prph_no_grab(trans, MON_DMARB_RD_CTL_ADDR, 0x0);
2995e705c121SKalle Valo 
2996e705c121SKalle Valo 	iwl_trans_release_nic_access(trans, &flags);
2997e705c121SKalle Valo 
2998e705c121SKalle Valo 	return monitor_len;
2999e705c121SKalle Valo }
3000e705c121SKalle Valo 
30017a14c23dSSara Sharon static void
30027a14c23dSSara Sharon iwl_trans_pcie_dump_pointers(struct iwl_trans *trans,
30037a14c23dSSara Sharon 			     struct iwl_fw_error_dump_fw_mon *fw_mon_data)
30047a14c23dSSara Sharon {
3005c88580e1SShahar S Matityahu 	u32 base, base_high, write_ptr, write_ptr_val, wrap_cnt;
30067a14c23dSSara Sharon 
300779b6c8feSLuca Coelho 	if (trans->cfg->trans.device_family >= IWL_DEVICE_FAMILY_AX210) {
3008c88580e1SShahar S Matityahu 		base = DBGC_CUR_DBGBUF_BASE_ADDR_LSB;
3009c88580e1SShahar S Matityahu 		base_high = DBGC_CUR_DBGBUF_BASE_ADDR_MSB;
3010c88580e1SShahar S Matityahu 		write_ptr = DBGC_CUR_DBGBUF_STATUS;
3011c88580e1SShahar S Matityahu 		wrap_cnt = DBGC_DBGBUF_WRAP_AROUND;
301291c28b83SShahar S Matityahu 	} else if (trans->dbg.dest_tlv) {
301391c28b83SShahar S Matityahu 		write_ptr = le32_to_cpu(trans->dbg.dest_tlv->write_ptr_reg);
301491c28b83SShahar S Matityahu 		wrap_cnt = le32_to_cpu(trans->dbg.dest_tlv->wrap_count);
301591c28b83SShahar S Matityahu 		base = le32_to_cpu(trans->dbg.dest_tlv->base_reg);
30167a14c23dSSara Sharon 	} else {
30177a14c23dSSara Sharon 		base = MON_BUFF_BASE_ADDR;
30187a14c23dSSara Sharon 		write_ptr = MON_BUFF_WRPTR;
30197a14c23dSSara Sharon 		wrap_cnt = MON_BUFF_CYCLE_CNT;
30207a14c23dSSara Sharon 	}
3021c88580e1SShahar S Matityahu 
3022c88580e1SShahar S Matityahu 	write_ptr_val = iwl_read_prph(trans, write_ptr);
30237a14c23dSSara Sharon 	fw_mon_data->fw_mon_cycle_cnt =
30247a14c23dSSara Sharon 		cpu_to_le32(iwl_read_prph(trans, wrap_cnt));
30257a14c23dSSara Sharon 	fw_mon_data->fw_mon_base_ptr =
30267a14c23dSSara Sharon 		cpu_to_le32(iwl_read_prph(trans, base));
302779b6c8feSLuca Coelho 	if (trans->cfg->trans.device_family >= IWL_DEVICE_FAMILY_AX210) {
3028c88580e1SShahar S Matityahu 		fw_mon_data->fw_mon_base_high_ptr =
3029c88580e1SShahar S Matityahu 			cpu_to_le32(iwl_read_prph(trans, base_high));
3030c88580e1SShahar S Matityahu 		write_ptr_val &= DBGC_CUR_DBGBUF_STATUS_OFFSET_MSK;
3031c88580e1SShahar S Matityahu 	}
3032c88580e1SShahar S Matityahu 	fw_mon_data->fw_mon_wr_ptr = cpu_to_le32(write_ptr_val);
30337a14c23dSSara Sharon }
30347a14c23dSSara Sharon 
3035e705c121SKalle Valo static u32
3036e705c121SKalle Valo iwl_trans_pcie_dump_monitor(struct iwl_trans *trans,
3037e705c121SKalle Valo 			    struct iwl_fw_error_dump_data **data,
3038e705c121SKalle Valo 			    u32 monitor_len)
3039e705c121SKalle Valo {
3040e705c121SKalle Valo 	u32 len = 0;
3041e705c121SKalle Valo 
304291c28b83SShahar S Matityahu 	if (trans->dbg.dest_tlv ||
304391c28b83SShahar S Matityahu 	    (trans->dbg.num_blocks &&
304479b6c8feSLuca Coelho 	     (trans->cfg->trans.device_family == IWL_DEVICE_FAMILY_7000 ||
304579b6c8feSLuca Coelho 	      trans->cfg->trans.device_family >= IWL_DEVICE_FAMILY_AX210))) {
3046e705c121SKalle Valo 		struct iwl_fw_error_dump_fw_mon *fw_mon_data;
3047e705c121SKalle Valo 
3048e705c121SKalle Valo 		(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_FW_MONITOR);
3049e705c121SKalle Valo 		fw_mon_data = (void *)(*data)->data;
30507a14c23dSSara Sharon 
30517a14c23dSSara Sharon 		iwl_trans_pcie_dump_pointers(trans, fw_mon_data);
3052e705c121SKalle Valo 
3053e705c121SKalle Valo 		len += sizeof(**data) + sizeof(*fw_mon_data);
305491c28b83SShahar S Matityahu 		if (trans->dbg.num_blocks) {
3055e705c121SKalle Valo 			memcpy(fw_mon_data->data,
305691c28b83SShahar S Matityahu 			       trans->dbg.fw_mon[0].block,
305791c28b83SShahar S Matityahu 			       trans->dbg.fw_mon[0].size);
3058e705c121SKalle Valo 
305991c28b83SShahar S Matityahu 			monitor_len = trans->dbg.fw_mon[0].size;
306091c28b83SShahar S Matityahu 		} else if (trans->dbg.dest_tlv->monitor_mode == SMEM_MODE) {
30617a14c23dSSara Sharon 			u32 base = le32_to_cpu(fw_mon_data->fw_mon_base_ptr);
3062e705c121SKalle Valo 			/*
3063e705c121SKalle Valo 			 * Update pointers to reflect actual values after
3064e705c121SKalle Valo 			 * shifting
3065e705c121SKalle Valo 			 */
306691c28b83SShahar S Matityahu 			if (trans->dbg.dest_tlv->version) {
3067fd527eb5SGolan Ben Ami 				base = (iwl_read_prph(trans, base) &
3068fd527eb5SGolan Ben Ami 					IWL_LDBG_M2S_BUF_BA_MSK) <<
306991c28b83SShahar S Matityahu 				       trans->dbg.dest_tlv->base_shift;
3070fd527eb5SGolan Ben Ami 				base *= IWL_M2S_UNIT_SIZE;
3071fd527eb5SGolan Ben Ami 				base += trans->cfg->smem_offset;
3072fd527eb5SGolan Ben Ami 			} else {
3073e705c121SKalle Valo 				base = iwl_read_prph(trans, base) <<
307491c28b83SShahar S Matityahu 				       trans->dbg.dest_tlv->base_shift;
3075fd527eb5SGolan Ben Ami 			}
3076fd527eb5SGolan Ben Ami 
3077e705c121SKalle Valo 			iwl_trans_read_mem(trans, base, fw_mon_data->data,
3078e705c121SKalle Valo 					   monitor_len / sizeof(u32));
307991c28b83SShahar S Matityahu 		} else if (trans->dbg.dest_tlv->monitor_mode == MARBH_MODE) {
3080e705c121SKalle Valo 			monitor_len =
3081e705c121SKalle Valo 				iwl_trans_pci_dump_marbh_monitor(trans,
3082e705c121SKalle Valo 								 fw_mon_data,
3083e705c121SKalle Valo 								 monitor_len);
3084e705c121SKalle Valo 		} else {
3085e705c121SKalle Valo 			/* Didn't match anything - output no monitor data */
3086e705c121SKalle Valo 			monitor_len = 0;
3087e705c121SKalle Valo 		}
3088e705c121SKalle Valo 
3089e705c121SKalle Valo 		len += monitor_len;
3090e705c121SKalle Valo 		(*data)->len = cpu_to_le32(monitor_len + sizeof(*fw_mon_data));
3091e705c121SKalle Valo 	}
3092e705c121SKalle Valo 
3093e705c121SKalle Valo 	return len;
3094e705c121SKalle Valo }
3095e705c121SKalle Valo 
309693079fd5SJohannes Berg static int iwl_trans_get_fw_monitor_len(struct iwl_trans *trans, u32 *len)
3097e705c121SKalle Valo {
309891c28b83SShahar S Matityahu 	if (trans->dbg.num_blocks) {
3099da752717SShahar S Matityahu 		*len += sizeof(struct iwl_fw_error_dump_data) +
3100da752717SShahar S Matityahu 			sizeof(struct iwl_fw_error_dump_fw_mon) +
310191c28b83SShahar S Matityahu 			trans->dbg.fw_mon[0].size;
310291c28b83SShahar S Matityahu 		return trans->dbg.fw_mon[0].size;
310391c28b83SShahar S Matityahu 	} else if (trans->dbg.dest_tlv) {
3104da752717SShahar S Matityahu 		u32 base, end, cfg_reg, monitor_len;
3105e705c121SKalle Valo 
310691c28b83SShahar S Matityahu 		if (trans->dbg.dest_tlv->version == 1) {
310791c28b83SShahar S Matityahu 			cfg_reg = le32_to_cpu(trans->dbg.dest_tlv->base_reg);
3108fd527eb5SGolan Ben Ami 			cfg_reg = iwl_read_prph(trans, cfg_reg);
3109fd527eb5SGolan Ben Ami 			base = (cfg_reg & IWL_LDBG_M2S_BUF_BA_MSK) <<
311091c28b83SShahar S Matityahu 				trans->dbg.dest_tlv->base_shift;
3111fd527eb5SGolan Ben Ami 			base *= IWL_M2S_UNIT_SIZE;
3112fd527eb5SGolan Ben Ami 			base += trans->cfg->smem_offset;
3113fd527eb5SGolan Ben Ami 
3114fd527eb5SGolan Ben Ami 			monitor_len =
3115fd527eb5SGolan Ben Ami 				(cfg_reg & IWL_LDBG_M2S_BUF_SIZE_MSK) >>
311691c28b83SShahar S Matityahu 				trans->dbg.dest_tlv->end_shift;
3117fd527eb5SGolan Ben Ami 			monitor_len *= IWL_M2S_UNIT_SIZE;
3118fd527eb5SGolan Ben Ami 		} else {
311991c28b83SShahar S Matityahu 			base = le32_to_cpu(trans->dbg.dest_tlv->base_reg);
312091c28b83SShahar S Matityahu 			end = le32_to_cpu(trans->dbg.dest_tlv->end_reg);
3121e705c121SKalle Valo 
3122e705c121SKalle Valo 			base = iwl_read_prph(trans, base) <<
312391c28b83SShahar S Matityahu 			       trans->dbg.dest_tlv->base_shift;
3124e705c121SKalle Valo 			end = iwl_read_prph(trans, end) <<
312591c28b83SShahar S Matityahu 			      trans->dbg.dest_tlv->end_shift;
3126e705c121SKalle Valo 
3127e705c121SKalle Valo 			/* Make "end" point to the actual end */
312879b6c8feSLuca Coelho 			if (trans->cfg->trans.device_family >=
3129fd527eb5SGolan Ben Ami 			    IWL_DEVICE_FAMILY_8000 ||
313091c28b83SShahar S Matityahu 			    trans->dbg.dest_tlv->monitor_mode == MARBH_MODE)
313191c28b83SShahar S Matityahu 				end += (1 << trans->dbg.dest_tlv->end_shift);
3132e705c121SKalle Valo 			monitor_len = end - base;
3133fd527eb5SGolan Ben Ami 		}
3134da752717SShahar S Matityahu 		*len += sizeof(struct iwl_fw_error_dump_data) +
3135da752717SShahar S Matityahu 			sizeof(struct iwl_fw_error_dump_fw_mon) +
3136e705c121SKalle Valo 			monitor_len;
3137da752717SShahar S Matityahu 		return monitor_len;
3138e705c121SKalle Valo 	}
3139da752717SShahar S Matityahu 	return 0;
3140da752717SShahar S Matityahu }
3141da752717SShahar S Matityahu 
3142da752717SShahar S Matityahu static struct iwl_trans_dump_data
3143da752717SShahar S Matityahu *iwl_trans_pcie_dump_data(struct iwl_trans *trans,
314479f033f6SSara Sharon 			  u32 dump_mask)
3145da752717SShahar S Matityahu {
3146da752717SShahar S Matityahu 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
3147da752717SShahar S Matityahu 	struct iwl_fw_error_dump_data *data;
3148da752717SShahar S Matityahu 	struct iwl_txq *cmdq = trans_pcie->txq[trans_pcie->cmd_queue];
3149da752717SShahar S Matityahu 	struct iwl_fw_error_dump_txcmd *txcmd;
3150da752717SShahar S Matityahu 	struct iwl_trans_dump_data *dump_data;
3151fefbf853SShahar S Matityahu 	u32 len, num_rbs = 0, monitor_len = 0;
3152da752717SShahar S Matityahu 	int i, ptr;
3153da752717SShahar S Matityahu 	bool dump_rbs = test_bit(STATUS_FW_ERROR, &trans->status) &&
315479b6c8feSLuca Coelho 			!trans->cfg->trans.mq_rx_supported &&
315579f033f6SSara Sharon 			dump_mask & BIT(IWL_FW_ERROR_DUMP_RB);
315679f033f6SSara Sharon 
315779f033f6SSara Sharon 	if (!dump_mask)
315879f033f6SSara Sharon 		return NULL;
3159da752717SShahar S Matityahu 
3160da752717SShahar S Matityahu 	/* transport dump header */
3161da752717SShahar S Matityahu 	len = sizeof(*dump_data);
3162da752717SShahar S Matityahu 
3163da752717SShahar S Matityahu 	/* host commands */
3164e4eee943SShahar S Matityahu 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_TXCMD) && cmdq)
3165da752717SShahar S Matityahu 		len += sizeof(*data) +
31668672aad3SShahar S Matityahu 			cmdq->n_window * (sizeof(*txcmd) +
31678672aad3SShahar S Matityahu 					  TFD_MAX_PAYLOAD_SIZE);
3168da752717SShahar S Matityahu 
3169da752717SShahar S Matityahu 	/* FW monitor */
3170fefbf853SShahar S Matityahu 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FW_MONITOR))
3171da752717SShahar S Matityahu 		monitor_len = iwl_trans_get_fw_monitor_len(trans, &len);
3172e705c121SKalle Valo 
3173e705c121SKalle Valo 	/* CSR registers */
317479f033f6SSara Sharon 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_CSR))
3175e705c121SKalle Valo 		len += sizeof(*data) + IWL_CSR_TO_DUMP;
3176e705c121SKalle Valo 
3177e705c121SKalle Valo 	/* FH registers */
317879f033f6SSara Sharon 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FH_REGS)) {
317979b6c8feSLuca Coelho 		if (trans->cfg->trans.gen2)
3180723b45e2SLiad Kaufman 			len += sizeof(*data) +
3181ea695b7cSShaul Triebitz 			       (iwl_umac_prph(trans, FH_MEM_UPPER_BOUND_GEN2) -
3182ea695b7cSShaul Triebitz 				iwl_umac_prph(trans, FH_MEM_LOWER_BOUND_GEN2));
3183723b45e2SLiad Kaufman 		else
3184723b45e2SLiad Kaufman 			len += sizeof(*data) +
3185520f03eaSShahar S Matityahu 			       (FH_MEM_UPPER_BOUND -
3186520f03eaSShahar S Matityahu 				FH_MEM_LOWER_BOUND);
3187520f03eaSShahar S Matityahu 	}
3188e705c121SKalle Valo 
3189e705c121SKalle Valo 	if (dump_rbs) {
319078485054SSara Sharon 		/* Dump RBs is supported only for pre-9000 devices (1 queue) */
319178485054SSara Sharon 		struct iwl_rxq *rxq = &trans_pcie->rxq[0];
3192e705c121SKalle Valo 		/* RBs */
31930307c839SGolan Ben Ami 		num_rbs =
31940307c839SGolan Ben Ami 			le16_to_cpu(iwl_get_closed_rb_stts(trans, rxq))
3195e705c121SKalle Valo 			& 0x0FFF;
319678485054SSara Sharon 		num_rbs = (num_rbs - rxq->read) & RX_QUEUE_MASK;
3197e705c121SKalle Valo 		len += num_rbs * (sizeof(*data) +
3198e705c121SKalle Valo 				  sizeof(struct iwl_fw_error_dump_rb) +
3199e705c121SKalle Valo 				  (PAGE_SIZE << trans_pcie->rx_page_order));
3200e705c121SKalle Valo 	}
3201e705c121SKalle Valo 
32025538409bSLiad Kaufman 	/* Paged memory for gen2 HW */
320379b6c8feSLuca Coelho 	if (trans->cfg->trans.gen2 && dump_mask & BIT(IWL_FW_ERROR_DUMP_PAGING))
3204505a00c0SShahar S Matityahu 		for (i = 0; i < trans->init_dram.paging_cnt; i++)
32055538409bSLiad Kaufman 			len += sizeof(*data) +
32065538409bSLiad Kaufman 			       sizeof(struct iwl_fw_error_dump_paging) +
3207505a00c0SShahar S Matityahu 			       trans->init_dram.paging[i].size;
32085538409bSLiad Kaufman 
3209e705c121SKalle Valo 	dump_data = vzalloc(len);
3210e705c121SKalle Valo 	if (!dump_data)
3211e705c121SKalle Valo 		return NULL;
3212e705c121SKalle Valo 
3213e705c121SKalle Valo 	len = 0;
3214e705c121SKalle Valo 	data = (void *)dump_data->data;
3215520f03eaSShahar S Matityahu 
3216e4eee943SShahar S Matityahu 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_TXCMD) && cmdq) {
3217520f03eaSShahar S Matityahu 		u16 tfd_size = trans_pcie->tfd_size;
3218520f03eaSShahar S Matityahu 
3219e705c121SKalle Valo 		data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_TXCMD);
3220e705c121SKalle Valo 		txcmd = (void *)data->data;
3221e705c121SKalle Valo 		spin_lock_bh(&cmdq->lock);
3222bb98ecd4SSara Sharon 		ptr = cmdq->write_ptr;
3223bb98ecd4SSara Sharon 		for (i = 0; i < cmdq->n_window; i++) {
32244ecab561SEmmanuel Grumbach 			u8 idx = iwl_pcie_get_cmd_index(cmdq, ptr);
3225e705c121SKalle Valo 			u32 caplen, cmdlen;
3226e705c121SKalle Valo 
3227520f03eaSShahar S Matityahu 			cmdlen = iwl_trans_pcie_get_cmdlen(trans,
3228520f03eaSShahar S Matityahu 							   cmdq->tfds +
3229520f03eaSShahar S Matityahu 							   tfd_size * ptr);
3230e705c121SKalle Valo 			caplen = min_t(u32, TFD_MAX_PAYLOAD_SIZE, cmdlen);
3231e705c121SKalle Valo 
3232e705c121SKalle Valo 			if (cmdlen) {
3233e705c121SKalle Valo 				len += sizeof(*txcmd) + caplen;
3234e705c121SKalle Valo 				txcmd->cmdlen = cpu_to_le32(cmdlen);
3235e705c121SKalle Valo 				txcmd->caplen = cpu_to_le32(caplen);
3236520f03eaSShahar S Matityahu 				memcpy(txcmd->data, cmdq->entries[idx].cmd,
3237520f03eaSShahar S Matityahu 				       caplen);
3238e705c121SKalle Valo 				txcmd = (void *)((u8 *)txcmd->data + caplen);
3239e705c121SKalle Valo 			}
3240e705c121SKalle Valo 
32417b3e42eaSGolan Ben Ami 			ptr = iwl_queue_dec_wrap(trans, ptr);
3242e705c121SKalle Valo 		}
3243e705c121SKalle Valo 		spin_unlock_bh(&cmdq->lock);
3244e705c121SKalle Valo 
3245e705c121SKalle Valo 		data->len = cpu_to_le32(len);
3246e705c121SKalle Valo 		len += sizeof(*data);
3247e705c121SKalle Valo 		data = iwl_fw_error_next_data(data);
3248520f03eaSShahar S Matityahu 	}
3249e705c121SKalle Valo 
325079f033f6SSara Sharon 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_CSR))
3251e705c121SKalle Valo 		len += iwl_trans_pcie_dump_csr(trans, &data);
325279f033f6SSara Sharon 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FH_REGS))
3253e705c121SKalle Valo 		len += iwl_trans_pcie_fh_regs_dump(trans, &data);
3254e705c121SKalle Valo 	if (dump_rbs)
3255e705c121SKalle Valo 		len += iwl_trans_pcie_dump_rbs(trans, &data, num_rbs);
3256e705c121SKalle Valo 
32575538409bSLiad Kaufman 	/* Paged memory for gen2 HW */
325879b6c8feSLuca Coelho 	if (trans->cfg->trans.gen2 &&
325979b6c8feSLuca Coelho 	    dump_mask & BIT(IWL_FW_ERROR_DUMP_PAGING)) {
3260505a00c0SShahar S Matityahu 		for (i = 0; i < trans->init_dram.paging_cnt; i++) {
32615538409bSLiad Kaufman 			struct iwl_fw_error_dump_paging *paging;
3262505a00c0SShahar S Matityahu 			u32 page_len = trans->init_dram.paging[i].size;
32635538409bSLiad Kaufman 
32645538409bSLiad Kaufman 			data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_PAGING);
32655538409bSLiad Kaufman 			data->len = cpu_to_le32(sizeof(*paging) + page_len);
32665538409bSLiad Kaufman 			paging = (void *)data->data;
32675538409bSLiad Kaufman 			paging->index = cpu_to_le32(i);
32685538409bSLiad Kaufman 			memcpy(paging->data,
3269505a00c0SShahar S Matityahu 			       trans->init_dram.paging[i].block, page_len);
32705538409bSLiad Kaufman 			data = iwl_fw_error_next_data(data);
32715538409bSLiad Kaufman 
32725538409bSLiad Kaufman 			len += sizeof(*data) + sizeof(*paging) + page_len;
32735538409bSLiad Kaufman 		}
32745538409bSLiad Kaufman 	}
327579f033f6SSara Sharon 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FW_MONITOR))
3276e705c121SKalle Valo 		len += iwl_trans_pcie_dump_monitor(trans, &data, monitor_len);
3277e705c121SKalle Valo 
3278e705c121SKalle Valo 	dump_data->len = len;
3279e705c121SKalle Valo 
3280e705c121SKalle Valo 	return dump_data;
3281e705c121SKalle Valo }
3282e705c121SKalle Valo 
32834cbb8e50SLuciano Coelho #ifdef CONFIG_PM_SLEEP
32844cbb8e50SLuciano Coelho static int iwl_trans_pcie_suspend(struct iwl_trans *trans)
32854cbb8e50SLuciano Coelho {
32864cbb8e50SLuciano Coelho 	return 0;
32874cbb8e50SLuciano Coelho }
32884cbb8e50SLuciano Coelho 
32894cbb8e50SLuciano Coelho static void iwl_trans_pcie_resume(struct iwl_trans *trans)
32904cbb8e50SLuciano Coelho {
32914cbb8e50SLuciano Coelho }
32924cbb8e50SLuciano Coelho #endif /* CONFIG_PM_SLEEP */
32934cbb8e50SLuciano Coelho 
3294623e7766SSara Sharon #define IWL_TRANS_COMMON_OPS						\
3295623e7766SSara Sharon 	.op_mode_leave = iwl_trans_pcie_op_mode_leave,			\
3296623e7766SSara Sharon 	.write8 = iwl_trans_pcie_write8,				\
3297623e7766SSara Sharon 	.write32 = iwl_trans_pcie_write32,				\
3298623e7766SSara Sharon 	.read32 = iwl_trans_pcie_read32,				\
3299623e7766SSara Sharon 	.read_prph = iwl_trans_pcie_read_prph,				\
3300623e7766SSara Sharon 	.write_prph = iwl_trans_pcie_write_prph,			\
3301623e7766SSara Sharon 	.read_mem = iwl_trans_pcie_read_mem,				\
3302623e7766SSara Sharon 	.write_mem = iwl_trans_pcie_write_mem,				\
3303623e7766SSara Sharon 	.configure = iwl_trans_pcie_configure,				\
3304623e7766SSara Sharon 	.set_pmi = iwl_trans_pcie_set_pmi,				\
3305870c2a11SGolan Ben Ami 	.sw_reset = iwl_trans_pcie_sw_reset,				\
3306623e7766SSara Sharon 	.grab_nic_access = iwl_trans_pcie_grab_nic_access,		\
3307623e7766SSara Sharon 	.release_nic_access = iwl_trans_pcie_release_nic_access,	\
3308623e7766SSara Sharon 	.set_bits_mask = iwl_trans_pcie_set_bits_mask,			\
3309623e7766SSara Sharon 	.dump_data = iwl_trans_pcie_dump_data,				\
3310623e7766SSara Sharon 	.d3_suspend = iwl_trans_pcie_d3_suspend,			\
3311d1967ce6SShahar S Matityahu 	.d3_resume = iwl_trans_pcie_d3_resume,				\
3312d1967ce6SShahar S Matityahu 	.sync_nmi = iwl_trans_pcie_sync_nmi
3313623e7766SSara Sharon 
3314623e7766SSara Sharon #ifdef CONFIG_PM_SLEEP
3315623e7766SSara Sharon #define IWL_TRANS_PM_OPS						\
3316623e7766SSara Sharon 	.suspend = iwl_trans_pcie_suspend,				\
3317623e7766SSara Sharon 	.resume = iwl_trans_pcie_resume,
3318623e7766SSara Sharon #else
3319623e7766SSara Sharon #define IWL_TRANS_PM_OPS
3320623e7766SSara Sharon #endif /* CONFIG_PM_SLEEP */
3321623e7766SSara Sharon 
3322e705c121SKalle Valo static const struct iwl_trans_ops trans_ops_pcie = {
3323623e7766SSara Sharon 	IWL_TRANS_COMMON_OPS,
3324623e7766SSara Sharon 	IWL_TRANS_PM_OPS
3325e705c121SKalle Valo 	.start_hw = iwl_trans_pcie_start_hw,
3326e705c121SKalle Valo 	.fw_alive = iwl_trans_pcie_fw_alive,
3327e705c121SKalle Valo 	.start_fw = iwl_trans_pcie_start_fw,
3328e705c121SKalle Valo 	.stop_device = iwl_trans_pcie_stop_device,
3329e705c121SKalle Valo 
3330e705c121SKalle Valo 	.send_cmd = iwl_trans_pcie_send_hcmd,
3331e705c121SKalle Valo 
3332e705c121SKalle Valo 	.tx = iwl_trans_pcie_tx,
3333e705c121SKalle Valo 	.reclaim = iwl_trans_pcie_reclaim,
3334e705c121SKalle Valo 
3335e705c121SKalle Valo 	.txq_disable = iwl_trans_pcie_txq_disable,
3336e705c121SKalle Valo 	.txq_enable = iwl_trans_pcie_txq_enable,
3337e705c121SKalle Valo 
333842db09c1SLiad Kaufman 	.txq_set_shared_mode = iwl_trans_pcie_txq_set_shared_mode,
333942db09c1SLiad Kaufman 
3340d6d517b7SSara Sharon 	.wait_tx_queues_empty = iwl_trans_pcie_wait_txqs_empty,
3341d6d517b7SSara Sharon 
3342e705c121SKalle Valo 	.freeze_txq_timer = iwl_trans_pcie_freeze_txq_timer,
33430cd58eaaSEmmanuel Grumbach 	.block_txq_ptrs = iwl_trans_pcie_block_txq_ptrs,
3344f7805b33SLior Cohen #ifdef CONFIG_IWLWIFI_DEBUGFS
3345f7805b33SLior Cohen 	.debugfs_cleanup = iwl_trans_pcie_debugfs_cleanup,
3346f7805b33SLior Cohen #endif
3347623e7766SSara Sharon };
3348e705c121SKalle Valo 
3349623e7766SSara Sharon static const struct iwl_trans_ops trans_ops_pcie_gen2 = {
3350623e7766SSara Sharon 	IWL_TRANS_COMMON_OPS,
3351623e7766SSara Sharon 	IWL_TRANS_PM_OPS
3352623e7766SSara Sharon 	.start_hw = iwl_trans_pcie_start_hw,
3353eda50cdeSSara Sharon 	.fw_alive = iwl_trans_pcie_gen2_fw_alive,
3354eda50cdeSSara Sharon 	.start_fw = iwl_trans_pcie_gen2_start_fw,
335577c09bc8SSara Sharon 	.stop_device = iwl_trans_pcie_gen2_stop_device,
3356e705c121SKalle Valo 
3357ca60da2eSSara Sharon 	.send_cmd = iwl_trans_pcie_gen2_send_hcmd,
3358e705c121SKalle Valo 
3359ab6c6445SSara Sharon 	.tx = iwl_trans_pcie_gen2_tx,
3360623e7766SSara Sharon 	.reclaim = iwl_trans_pcie_reclaim,
3361623e7766SSara Sharon 
3362ba7136f3SAlex Malamud 	.set_q_ptrs = iwl_trans_pcie_set_q_ptrs,
3363ba7136f3SAlex Malamud 
33646b35ff91SSara Sharon 	.txq_alloc = iwl_trans_pcie_dyn_txq_alloc,
33656b35ff91SSara Sharon 	.txq_free = iwl_trans_pcie_dyn_txq_free,
3366d6d517b7SSara Sharon 	.wait_txq_empty = iwl_trans_pcie_wait_txq_empty,
336792536c96SSara Sharon 	.rxq_dma_data = iwl_trans_pcie_rxq_dma_data,
3368f7805b33SLior Cohen #ifdef CONFIG_IWLWIFI_DEBUGFS
3369f7805b33SLior Cohen 	.debugfs_cleanup = iwl_trans_pcie_debugfs_cleanup,
3370f7805b33SLior Cohen #endif
3371e705c121SKalle Valo };
3372e705c121SKalle Valo 
3373e705c121SKalle Valo struct iwl_trans *iwl_trans_pcie_alloc(struct pci_dev *pdev,
3374e705c121SKalle Valo 				       const struct pci_device_id *ent,
3375e705c121SKalle Valo 				       const struct iwl_cfg *cfg)
3376e705c121SKalle Valo {
3377e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie;
3378e705c121SKalle Valo 	struct iwl_trans *trans;
337996a6497bSSara Sharon 	int ret, addr_size;
3380e705c121SKalle Valo 
33815a41a86cSSharon Dvir 	ret = pcim_enable_device(pdev);
33825a41a86cSSharon Dvir 	if (ret)
33835a41a86cSSharon Dvir 		return ERR_PTR(ret);
33845a41a86cSSharon Dvir 
338579b6c8feSLuca Coelho 	if (cfg->trans.gen2)
3386623e7766SSara Sharon 		trans = iwl_trans_alloc(sizeof(struct iwl_trans_pcie),
3387623e7766SSara Sharon 					&pdev->dev, cfg, &trans_ops_pcie_gen2);
3388623e7766SSara Sharon 	else
3389e705c121SKalle Valo 		trans = iwl_trans_alloc(sizeof(struct iwl_trans_pcie),
33901ea423b0SLuca Coelho 					&pdev->dev, cfg, &trans_ops_pcie);
3391e705c121SKalle Valo 	if (!trans)
3392e705c121SKalle Valo 		return ERR_PTR(-ENOMEM);
3393e705c121SKalle Valo 
3394e705c121SKalle Valo 	trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
3395e705c121SKalle Valo 
3396e705c121SKalle Valo 	trans_pcie->trans = trans;
3397326477e4SJohannes Berg 	trans_pcie->opmode_down = true;
3398e705c121SKalle Valo 	spin_lock_init(&trans_pcie->irq_lock);
3399e705c121SKalle Valo 	spin_lock_init(&trans_pcie->reg_lock);
3400e705c121SKalle Valo 	mutex_init(&trans_pcie->mutex);
3401e705c121SKalle Valo 	init_waitqueue_head(&trans_pcie->ucode_write_waitq);
34026eb5e529SEmmanuel Grumbach 	trans_pcie->tso_hdr_page = alloc_percpu(struct iwl_tso_hdr_page);
34036eb5e529SEmmanuel Grumbach 	if (!trans_pcie->tso_hdr_page) {
34046eb5e529SEmmanuel Grumbach 		ret = -ENOMEM;
34056eb5e529SEmmanuel Grumbach 		goto out_no_pci;
34066eb5e529SEmmanuel Grumbach 	}
3407c5bf4fa1SJohannes Berg 	trans_pcie->debug_rfkill = -1;
3408e705c121SKalle Valo 
340979b6c8feSLuca Coelho 	if (!cfg->trans.base_params->pcie_l1_allowed) {
3410e705c121SKalle Valo 		/*
3411e705c121SKalle Valo 		 * W/A - seems to solve weird behavior. We need to remove this
3412e705c121SKalle Valo 		 * if we don't want to stay in L1 all the time. This wastes a
3413e705c121SKalle Valo 		 * lot of power.
3414e705c121SKalle Valo 		 */
3415e705c121SKalle Valo 		pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S |
3416e705c121SKalle Valo 				       PCIE_LINK_STATE_L1 |
3417e705c121SKalle Valo 				       PCIE_LINK_STATE_CLKPM);
3418e705c121SKalle Valo 	}
3419e705c121SKalle Valo 
34209416560eSGolan Ben Ami 	trans_pcie->def_rx_queue = 0;
34219416560eSGolan Ben Ami 
342279b6c8feSLuca Coelho 	if (cfg->trans.use_tfh) {
34232c6262b7SSara Sharon 		addr_size = 64;
34243cd1980bSSara Sharon 		trans_pcie->max_tbs = IWL_TFH_NUM_TBS;
34258352e62aSSara Sharon 		trans_pcie->tfd_size = sizeof(struct iwl_tfh_tfd);
34266983ba69SSara Sharon 	} else {
34272c6262b7SSara Sharon 		addr_size = 36;
34283cd1980bSSara Sharon 		trans_pcie->max_tbs = IWL_NUM_OF_TBS;
34296983ba69SSara Sharon 		trans_pcie->tfd_size = sizeof(struct iwl_tfd);
34306983ba69SSara Sharon 	}
34313cd1980bSSara Sharon 	trans->max_skb_frags = IWL_PCIE_MAX_FRAGS(trans_pcie);
34323cd1980bSSara Sharon 
3433e705c121SKalle Valo 	pci_set_master(pdev);
3434e705c121SKalle Valo 
343596a6497bSSara Sharon 	ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(addr_size));
3436e705c121SKalle Valo 	if (!ret)
343796a6497bSSara Sharon 		ret = pci_set_consistent_dma_mask(pdev,
343896a6497bSSara Sharon 						  DMA_BIT_MASK(addr_size));
3439e705c121SKalle Valo 	if (ret) {
3440e705c121SKalle Valo 		ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
3441e705c121SKalle Valo 		if (!ret)
3442e705c121SKalle Valo 			ret = pci_set_consistent_dma_mask(pdev,
3443e705c121SKalle Valo 							  DMA_BIT_MASK(32));
3444e705c121SKalle Valo 		/* both attempts failed: */
3445e705c121SKalle Valo 		if (ret) {
3446e705c121SKalle Valo 			dev_err(&pdev->dev, "No suitable DMA available\n");
34475a41a86cSSharon Dvir 			goto out_no_pci;
3448e705c121SKalle Valo 		}
3449e705c121SKalle Valo 	}
3450e705c121SKalle Valo 
34515a41a86cSSharon Dvir 	ret = pcim_iomap_regions_request_all(pdev, BIT(0), DRV_NAME);
3452e705c121SKalle Valo 	if (ret) {
34535a41a86cSSharon Dvir 		dev_err(&pdev->dev, "pcim_iomap_regions_request_all failed\n");
34545a41a86cSSharon Dvir 		goto out_no_pci;
3455e705c121SKalle Valo 	}
3456e705c121SKalle Valo 
34575a41a86cSSharon Dvir 	trans_pcie->hw_base = pcim_iomap_table(pdev)[0];
3458e705c121SKalle Valo 	if (!trans_pcie->hw_base) {
34595a41a86cSSharon Dvir 		dev_err(&pdev->dev, "pcim_iomap_table failed\n");
3460e705c121SKalle Valo 		ret = -ENODEV;
34615a41a86cSSharon Dvir 		goto out_no_pci;
3462e705c121SKalle Valo 	}
3463e705c121SKalle Valo 
3464e705c121SKalle Valo 	/* We disable the RETRY_TIMEOUT register (0x41) to keep
3465e705c121SKalle Valo 	 * PCI Tx retries from interfering with C3 CPU state */
3466e705c121SKalle Valo 	pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3467e705c121SKalle Valo 
3468e705c121SKalle Valo 	trans_pcie->pci_dev = pdev;
3469e705c121SKalle Valo 	iwl_disable_interrupts(trans);
3470e705c121SKalle Valo 
3471e705c121SKalle Valo 	trans->hw_rev = iwl_read32(trans, CSR_HW_REV);
34729a098a89SRajat Jain 	if (trans->hw_rev == 0xffffffff) {
34739a098a89SRajat Jain 		dev_err(&pdev->dev, "HW_REV=0xFFFFFFFF, PCI issues?\n");
34749a098a89SRajat Jain 		ret = -EIO;
34759a098a89SRajat Jain 		goto out_no_pci;
34769a098a89SRajat Jain 	}
34779a098a89SRajat Jain 
3478e705c121SKalle Valo 	/*
3479e705c121SKalle Valo 	 * In the 8000 HW family the format of the 4 bytes of CSR_HW_REV have
3480e705c121SKalle Valo 	 * changed, and now the revision step also includes bit 0-1 (no more
3481e705c121SKalle Valo 	 * "dash" value). To keep hw_rev backwards compatible - we'll store it
3482e705c121SKalle Valo 	 * in the old format.
3483e705c121SKalle Valo 	 */
348479b6c8feSLuca Coelho 	if (trans->cfg->trans.device_family >= IWL_DEVICE_FAMILY_8000) {
3485e705c121SKalle Valo 		unsigned long flags;
3486e705c121SKalle Valo 
3487e705c121SKalle Valo 		trans->hw_rev = (trans->hw_rev & 0xfff0) |
3488e705c121SKalle Valo 				(CSR_HW_REV_STEP(trans->hw_rev << 2) << 2);
3489e705c121SKalle Valo 
3490e705c121SKalle Valo 		ret = iwl_pcie_prepare_card_hw(trans);
3491e705c121SKalle Valo 		if (ret) {
3492e705c121SKalle Valo 			IWL_WARN(trans, "Exit HW not ready\n");
34935a41a86cSSharon Dvir 			goto out_no_pci;
3494e705c121SKalle Valo 		}
3495e705c121SKalle Valo 
3496e705c121SKalle Valo 		/*
3497e705c121SKalle Valo 		 * in-order to recognize C step driver should read chip version
3498e705c121SKalle Valo 		 * id located at the AUX bus MISC address space.
3499e705c121SKalle Valo 		 */
350079b6c8feSLuca Coelho 		ret = iwl_finish_nic_init(trans, &trans->cfg->trans);
3501c96b5eecSJohannes Berg 		if (ret)
35025a41a86cSSharon Dvir 			goto out_no_pci;
3503e705c121SKalle Valo 
350423ba9340SEmmanuel Grumbach 		if (iwl_trans_grab_nic_access(trans, &flags)) {
3505e705c121SKalle Valo 			u32 hw_step;
3506e705c121SKalle Valo 
3507ea695b7cSShaul Triebitz 			hw_step = iwl_read_umac_prph_no_grab(trans,
3508ea695b7cSShaul Triebitz 							     WFPM_CTRL_REG);
3509e705c121SKalle Valo 			hw_step |= ENABLE_WFPM;
3510ea695b7cSShaul Triebitz 			iwl_write_umac_prph_no_grab(trans, WFPM_CTRL_REG,
3511ea695b7cSShaul Triebitz 						    hw_step);
3512cc5470dfSShahar S Matityahu 			hw_step = iwl_read_prph_no_grab(trans,
3513cc5470dfSShahar S Matityahu 							CNVI_AUX_MISC_CHIP);
3514e705c121SKalle Valo 			hw_step = (hw_step >> HW_STEP_LOCATION_BITS) & 0xF;
3515e705c121SKalle Valo 			if (hw_step == 0x3)
3516e705c121SKalle Valo 				trans->hw_rev = (trans->hw_rev & 0xFFFFFFF3) |
3517e705c121SKalle Valo 						(SILICON_C_STEP << 2);
3518e705c121SKalle Valo 			iwl_trans_release_nic_access(trans, &flags);
3519e705c121SKalle Valo 		}
3520e705c121SKalle Valo 	}
3521e705c121SKalle Valo 
352299be6166SLuca Coelho 	IWL_DEBUG_INFO(trans, "HW REV: 0x%0x\n", trans->hw_rev);
352399be6166SLuca Coelho 
3524f6586b69STzipi Peres #if IS_ENABLED(CONFIG_IWLMVM)
35251afb0ae4SHaim Dreyfuss 	trans->hw_rf_id = iwl_read32(trans, CSR_HW_RF_ID);
352633708052SLuca Coelho 
352779b6c8feSLuca Coelho 	if (trans->cfg == &iwlax210_2ax_cfg_so_hr_a0) {
3528ff911dcaSShaul Triebitz 		if (trans->hw_rev == CSR_HW_REV_TYPE_TY) {
3529ff911dcaSShaul Triebitz 			trans->cfg = &iwlax210_2ax_cfg_ty_gf_a0;
3530ff911dcaSShaul Triebitz 		} else if (CSR_HW_RF_ID_TYPE_CHIP_ID(trans->hw_rf_id) ==
3531ff911dcaSShaul Triebitz 			   CSR_HW_RF_ID_TYPE_CHIP_ID(CSR_HW_RF_ID_TYPE_JF)) {
3532ff911dcaSShaul Triebitz 			trans->cfg = &iwlax210_2ax_cfg_so_jf_a0;
3533ff911dcaSShaul Triebitz 		} else if (CSR_HW_RF_ID_TYPE_CHIP_ID(trans->hw_rf_id) ==
3534ff911dcaSShaul Triebitz 			   CSR_HW_RF_ID_TYPE_CHIP_ID(CSR_HW_RF_ID_TYPE_GF)) {
3535d151b0a2SIhab Zhaika 			trans->cfg = &iwlax211_2ax_cfg_so_gf_a0;
35365bd757a6SShaul Triebitz 		} else if (CSR_HW_RF_ID_TYPE_CHIP_ID(trans->hw_rf_id) ==
35375bd757a6SShaul Triebitz 			   CSR_HW_RF_ID_TYPE_CHIP_ID(CSR_HW_RF_ID_TYPE_GF4)) {
3538d151b0a2SIhab Zhaika 			trans->cfg = &iwlax411_2ax_cfg_so_gf4_a0;
3539ff911dcaSShaul Triebitz 		}
3540085486deSIhab Zhaika 	} else if (cfg == &iwl_ax101_cfg_qu_hr) {
3541498d3eb5SOren Givon 		if ((CSR_HW_RF_ID_TYPE_CHIP_ID(trans->hw_rf_id) ==
3542debec2f2SLuca Coelho 		     CSR_HW_RF_ID_TYPE_CHIP_ID(CSR_HW_RF_ID_TYPE_HR) &&
3543498d3eb5SOren Givon 		     trans->hw_rev == CSR_HW_REV_TYPE_QNJ_B0) ||
3544498d3eb5SOren Givon 		    (CSR_HW_RF_ID_TYPE_CHIP_ID(trans->hw_rf_id) ==
3545498d3eb5SOren Givon 		     CSR_HW_RF_ID_TYPE_CHIP_ID(CSR_HW_RF_ID_TYPE_HR1))) {
3546debec2f2SLuca Coelho 			trans->cfg = &iwl22000_2ax_cfg_qnj_hr_b0;
3547debec2f2SLuca Coelho 		} else if (CSR_HW_RF_ID_TYPE_CHIP_ID(trans->hw_rf_id) ==
354833708052SLuca Coelho 		    CSR_HW_RF_ID_TYPE_CHIP_ID(CSR_HW_RF_ID_TYPE_HR)) {
3549085486deSIhab Zhaika 			trans->cfg = &iwl_ax101_cfg_qu_hr;
3550b1bbc1a6SLuca Coelho 		} else if (CSR_HW_RF_ID_TYPE_CHIP_ID(trans->hw_rf_id) ==
3551b1bbc1a6SLuca Coelho 			   CSR_HW_RF_ID_TYPE_CHIP_ID(CSR_HW_RF_ID_TYPE_JF)) {
3552b1bbc1a6SLuca Coelho 			trans->cfg = &iwl22000_2ax_cfg_jf;
3553b1bbc1a6SLuca Coelho 		} else if (CSR_HW_RF_ID_TYPE_CHIP_ID(trans->hw_rf_id) ==
3554b1bbc1a6SLuca Coelho 			   CSR_HW_RF_ID_TYPE_CHIP_ID(CSR_HW_RF_ID_TYPE_HRCDB)) {
3555b1bbc1a6SLuca Coelho 			IWL_ERR(trans, "RF ID HRCDB is not supported\n");
3556b1bbc1a6SLuca Coelho 			ret = -EINVAL;
3557b1bbc1a6SLuca Coelho 			goto out_no_pci;
3558b1bbc1a6SLuca Coelho 		} else {
3559b1bbc1a6SLuca Coelho 			IWL_ERR(trans, "Unrecognized RF ID 0x%08x\n",
3560b1bbc1a6SLuca Coelho 				CSR_HW_RF_ID_TYPE_CHIP_ID(trans->hw_rf_id));
3561b1bbc1a6SLuca Coelho 			ret = -EINVAL;
3562b1bbc1a6SLuca Coelho 			goto out_no_pci;
3563b1bbc1a6SLuca Coelho 		}
3564b1bbc1a6SLuca Coelho 	} else if (CSR_HW_RF_ID_TYPE_CHIP_ID(trans->hw_rf_id) ==
35658093bb6dSLuca Coelho 		   CSR_HW_RF_ID_TYPE_CHIP_ID(CSR_HW_RF_ID_TYPE_HR) &&
3566b9500577SLuca Coelho 		   trans->hw_rev == CSR_HW_REV_TYPE_QNJ_B0) {
3567f6586b69STzipi Peres 		u32 hw_status;
3568f6586b69STzipi Peres 
3569f6586b69STzipi Peres 		hw_status = iwl_read_prph(trans, UMAG_GEN_HW_STATUS);
357033708052SLuca Coelho 		if (CSR_HW_RF_STEP(trans->hw_rf_id) == SILICON_B_STEP)
357133708052SLuca Coelho 			/*
357233708052SLuca Coelho 			* b step fw is the same for physical card and fpga
357333708052SLuca Coelho 			*/
357433708052SLuca Coelho 			trans->cfg = &iwl22000_2ax_cfg_qnj_hr_b0;
357533708052SLuca Coelho 		else if ((hw_status & UMAG_GEN_HW_IS_FPGA) &&
357633708052SLuca Coelho 			 CSR_HW_RF_STEP(trans->hw_rf_id) == SILICON_A_STEP) {
357733708052SLuca Coelho 			trans->cfg = &iwl22000_2ax_cfg_qnj_hr_a0_f0;
357833708052SLuca Coelho 		} else {
357933708052SLuca Coelho 			/*
358033708052SLuca Coelho 			* a step no FPGA
358133708052SLuca Coelho 			*/
35822f7a3863SLuca Coelho 			trans->cfg = &iwl22000_2ac_cfg_hr;
3583f6586b69STzipi Peres 		}
358433708052SLuca Coelho 	}
3585f6586b69STzipi Peres #endif
35861afb0ae4SHaim Dreyfuss 
35872e5d4a8fSHaim Dreyfuss 	iwl_pcie_set_interrupt_capa(pdev, trans);
3588e705c121SKalle Valo 	trans->hw_id = (pdev->device << 16) + pdev->subsystem_device;
3589e705c121SKalle Valo 	snprintf(trans->hw_id_str, sizeof(trans->hw_id_str),
3590e705c121SKalle Valo 		 "PCI ID: 0x%04X:0x%04X", pdev->device, pdev->subsystem_device);
3591e705c121SKalle Valo 
3592e705c121SKalle Valo 	/* Initialize the wait queue for commands */
3593e705c121SKalle Valo 	init_waitqueue_head(&trans_pcie->wait_command_queue);
3594e705c121SKalle Valo 
35952e5d4a8fSHaim Dreyfuss 	if (trans_pcie->msix_enabled) {
35962388bd7bSDan Carpenter 		ret = iwl_pcie_init_msix_handler(pdev, trans_pcie);
35972388bd7bSDan Carpenter 		if (ret)
35985a41a86cSSharon Dvir 			goto out_no_pci;
35992e5d4a8fSHaim Dreyfuss 	 } else {
3600e705c121SKalle Valo 		ret = iwl_pcie_alloc_ict(trans);
3601e705c121SKalle Valo 		if (ret)
36025a41a86cSSharon Dvir 			goto out_no_pci;
3603e705c121SKalle Valo 
36045a41a86cSSharon Dvir 		ret = devm_request_threaded_irq(&pdev->dev, pdev->irq,
36055a41a86cSSharon Dvir 						iwl_pcie_isr,
3606e705c121SKalle Valo 						iwl_pcie_irq_handler,
3607e705c121SKalle Valo 						IRQF_SHARED, DRV_NAME, trans);
3608e705c121SKalle Valo 		if (ret) {
3609e705c121SKalle Valo 			IWL_ERR(trans, "Error allocating IRQ %d\n", pdev->irq);
3610e705c121SKalle Valo 			goto out_free_ict;
3611e705c121SKalle Valo 		}
3612e705c121SKalle Valo 		trans_pcie->inta_mask = CSR_INI_SET_MASK;
36132e5d4a8fSHaim Dreyfuss 	 }
3614e705c121SKalle Valo 
361510a54d81SLuca Coelho 	trans_pcie->rba.alloc_wq = alloc_workqueue("rb_allocator",
361610a54d81SLuca Coelho 						   WQ_HIGHPRI | WQ_UNBOUND, 1);
361710a54d81SLuca Coelho 	INIT_WORK(&trans_pcie->rba.rx_alloc, iwl_pcie_rx_allocator_work);
361810a54d81SLuca Coelho 
3619f7805b33SLior Cohen #ifdef CONFIG_IWLWIFI_DEBUGFS
3620f7805b33SLior Cohen 	trans_pcie->fw_mon_data.state = IWL_FW_MON_DBGFS_STATE_CLOSED;
3621f7805b33SLior Cohen 	mutex_init(&trans_pcie->fw_mon_data.mutex);
3622f7805b33SLior Cohen #endif
3623f7805b33SLior Cohen 
3624e705c121SKalle Valo 	return trans;
3625e705c121SKalle Valo 
3626e705c121SKalle Valo out_free_ict:
3627e705c121SKalle Valo 	iwl_pcie_free_ict(trans);
3628e705c121SKalle Valo out_no_pci:
36296eb5e529SEmmanuel Grumbach 	free_percpu(trans_pcie->tso_hdr_page);
3630e705c121SKalle Valo 	iwl_trans_free(trans);
3631e705c121SKalle Valo 	return ERR_PTR(ret);
3632e705c121SKalle Valo }
3633b8a7547dSShahar S Matityahu 
3634d1967ce6SShahar S Matityahu void iwl_trans_pcie_sync_nmi(struct iwl_trans *trans)
3635b8a7547dSShahar S Matityahu {
36361c6bca6dSShahar S Matityahu 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
3637b8a7547dSShahar S Matityahu 	unsigned long timeout = jiffies + IWL_TRANS_NMI_TIMEOUT;
3638e4eee943SShahar S Matityahu 	bool interrupts_enabled = test_bit(STATUS_INT_ENABLED, &trans->status);
36391c6bca6dSShahar S Matityahu 	u32 inta_addr, sw_err_bit;
36401c6bca6dSShahar S Matityahu 
36411c6bca6dSShahar S Matityahu 	if (trans_pcie->msix_enabled) {
36421c6bca6dSShahar S Matityahu 		inta_addr = CSR_MSIX_HW_INT_CAUSES_AD;
36431c6bca6dSShahar S Matityahu 		sw_err_bit = MSIX_HW_INT_CAUSES_REG_SW_ERR;
36441c6bca6dSShahar S Matityahu 	} else {
36451c6bca6dSShahar S Matityahu 		inta_addr = CSR_INT;
36461c6bca6dSShahar S Matityahu 		sw_err_bit = CSR_INT_BIT_SW_ERR;
36471c6bca6dSShahar S Matityahu 	}
3648b8a7547dSShahar S Matityahu 
3649e4eee943SShahar S Matityahu 	/* if the interrupts were already disabled, there is no point in
3650e4eee943SShahar S Matityahu 	 * calling iwl_disable_interrupts
3651e4eee943SShahar S Matityahu 	 */
3652e4eee943SShahar S Matityahu 	if (interrupts_enabled)
3653b8a7547dSShahar S Matityahu 		iwl_disable_interrupts(trans);
3654e4eee943SShahar S Matityahu 
3655b8a7547dSShahar S Matityahu 	iwl_force_nmi(trans);
3656b8a7547dSShahar S Matityahu 	while (time_after(timeout, jiffies)) {
36571c6bca6dSShahar S Matityahu 		u32 inta_hw = iwl_read32(trans, inta_addr);
3658b8a7547dSShahar S Matityahu 
3659b8a7547dSShahar S Matityahu 		/* Error detected by uCode */
36601c6bca6dSShahar S Matityahu 		if (inta_hw & sw_err_bit) {
3661b8a7547dSShahar S Matityahu 			/* Clear causes register */
36621c6bca6dSShahar S Matityahu 			iwl_write32(trans, inta_addr, inta_hw & sw_err_bit);
3663b8a7547dSShahar S Matityahu 			break;
3664b8a7547dSShahar S Matityahu 		}
3665b8a7547dSShahar S Matityahu 
3666b8a7547dSShahar S Matityahu 		mdelay(1);
3667b8a7547dSShahar S Matityahu 	}
3668e4eee943SShahar S Matityahu 
3669e4eee943SShahar S Matityahu 	/* enable interrupts only if there were already enabled before this
3670e4eee943SShahar S Matityahu 	 * function to avoid a case were the driver enable interrupts before
3671e4eee943SShahar S Matityahu 	 * proper configurations were made
3672e4eee943SShahar S Matityahu 	 */
3673e4eee943SShahar S Matityahu 	if (interrupts_enabled)
3674b8a7547dSShahar S Matityahu 		iwl_enable_interrupts(trans);
3675e4eee943SShahar S Matityahu 
3676b8a7547dSShahar S Matityahu 	iwl_trans_fw_error(trans);
3677b8a7547dSShahar S Matityahu }
3678