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) 2013 - 2015 Intel Mobile Communications GmbH
9afb84431SEmmanuel Grumbach  * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
10771db3a1SHaim Dreyfuss  * Copyright(c) 2007 - 2015, 2018 - 2020 Intel Corporation
11e705c121SKalle Valo  *
12e705c121SKalle Valo  * This program is free software; you can redistribute it and/or modify
13e705c121SKalle Valo  * it under the terms of version 2 of the GNU General Public License as
14e705c121SKalle Valo  * published by the Free Software Foundation.
15e705c121SKalle Valo  *
16e705c121SKalle Valo  * This program is distributed in the hope that it will be useful, but
17e705c121SKalle Valo  * WITHOUT ANY WARRANTY; without even the implied warranty of
18e705c121SKalle Valo  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19e705c121SKalle Valo  * General Public License for more details.
20e705c121SKalle Valo  *
21e705c121SKalle Valo  * The full GNU General Public License is included in this distribution
22e705c121SKalle Valo  * in the file called COPYING.
23e705c121SKalle Valo  *
24e705c121SKalle Valo  * Contact Information:
25cb2f8277SEmmanuel Grumbach  *  Intel Linux Wireless <linuxwifi@intel.com>
26e705c121SKalle Valo  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27e705c121SKalle Valo  *
28e705c121SKalle Valo  * BSD LICENSE
29e705c121SKalle Valo  *
30e705c121SKalle Valo  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
31afb84431SEmmanuel Grumbach  * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
32771db3a1SHaim Dreyfuss  * Copyright(c) 2007 - 2015, 2018 - 2020 Intel Corporation
33e705c121SKalle Valo  * All rights reserved.
34e705c121SKalle Valo  *
35e705c121SKalle Valo  * Redistribution and use in source and binary forms, with or without
36e705c121SKalle Valo  * modification, are permitted provided that the following conditions
37e705c121SKalle Valo  * are met:
38e705c121SKalle Valo  *
39e705c121SKalle Valo  *  * Redistributions of source code must retain the above copyright
40e705c121SKalle Valo  *    notice, this list of conditions and the following disclaimer.
41e705c121SKalle Valo  *  * Redistributions in binary form must reproduce the above copyright
42e705c121SKalle Valo  *    notice, this list of conditions and the following disclaimer in
43e705c121SKalle Valo  *    the documentation and/or other materials provided with the
44e705c121SKalle Valo  *    distribution.
45e705c121SKalle Valo  *  * Neither the name Intel Corporation nor the names of its
46e705c121SKalle Valo  *    contributors may be used to endorse or promote products derived
47e705c121SKalle Valo  *    from this software without specific prior written permission.
48e705c121SKalle Valo  *
49e705c121SKalle Valo  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
50e705c121SKalle Valo  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
51e705c121SKalle Valo  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
52e705c121SKalle Valo  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
53e705c121SKalle Valo  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
54e705c121SKalle Valo  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
55e705c121SKalle Valo  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56e705c121SKalle Valo  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57e705c121SKalle Valo  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58e705c121SKalle Valo  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
59e705c121SKalle Valo  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60e705c121SKalle Valo  *
61e705c121SKalle Valo  *****************************************************************************/
62e705c121SKalle Valo #include <linux/pci.h>
63e705c121SKalle Valo #include <linux/interrupt.h>
64e705c121SKalle Valo #include <linux/debugfs.h>
65e705c121SKalle Valo #include <linux/sched.h>
66e705c121SKalle Valo #include <linux/bitops.h>
67e705c121SKalle Valo #include <linux/gfp.h>
68e705c121SKalle Valo #include <linux/vmalloc.h>
6949564a80SLuca Coelho #include <linux/module.h>
70f7805b33SLior Cohen #include <linux/wait.h>
71df67a1beSJohannes Berg #include <linux/seq_file.h>
72e705c121SKalle Valo 
73e705c121SKalle Valo #include "iwl-drv.h"
74e705c121SKalle Valo #include "iwl-trans.h"
75e705c121SKalle Valo #include "iwl-csr.h"
76e705c121SKalle Valo #include "iwl-prph.h"
77e705c121SKalle Valo #include "iwl-scd.h"
78e705c121SKalle Valo #include "iwl-agn-hw.h"
79d962f9b1SJohannes Berg #include "fw/error-dump.h"
80520f03eaSShahar S Matityahu #include "fw/dbg.h"
81a89c72ffSJohannes Berg #include "fw/api/tx.h"
82e705c121SKalle Valo #include "internal.h"
83e705c121SKalle Valo #include "iwl-fh.h"
846654cd4eSLuca Coelho #include "iwl-context-info-gen3.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) */
1876dece0e9SLuca Coelho 	iwl_set_bit(trans, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
188870c2a11SGolan Ben Ami 	usleep_range(5000, 6000);
189870c2a11SGolan Ben Ami }
190870c2a11SGolan Ben Ami 
191e705c121SKalle Valo static void iwl_pcie_free_fw_monitor(struct iwl_trans *trans)
192e705c121SKalle Valo {
19369f0e505SShahar S Matityahu 	struct iwl_dram_data *fw_mon = &trans->dbg.fw_mon;
194e705c121SKalle Valo 
19569f0e505SShahar S Matityahu 	if (!fw_mon->size)
19669f0e505SShahar S Matityahu 		return;
19769f0e505SShahar S Matityahu 
19869f0e505SShahar S Matityahu 	dma_free_coherent(trans->dev, fw_mon->size, fw_mon->block,
19969f0e505SShahar S Matityahu 			  fw_mon->physical);
20069f0e505SShahar S Matityahu 
20169f0e505SShahar S Matityahu 	fw_mon->block = NULL;
20269f0e505SShahar S Matityahu 	fw_mon->physical = 0;
20369f0e505SShahar S Matityahu 	fw_mon->size = 0;
204e705c121SKalle Valo }
205e705c121SKalle Valo 
20688964b2eSSara Sharon static void iwl_pcie_alloc_fw_monitor_block(struct iwl_trans *trans,
20788964b2eSSara Sharon 					    u8 max_power, u8 min_power)
208e705c121SKalle Valo {
20969f0e505SShahar S Matityahu 	struct iwl_dram_data *fw_mon = &trans->dbg.fw_mon;
21069f0e505SShahar S Matityahu 	void *block = NULL;
21169f0e505SShahar S Matityahu 	dma_addr_t physical = 0;
212e705c121SKalle Valo 	u32 size = 0;
213e705c121SKalle Valo 	u8 power;
214e705c121SKalle Valo 
21569f0e505SShahar S Matityahu 	if (fw_mon->size)
21669f0e505SShahar S Matityahu 		return;
21769f0e505SShahar S Matityahu 
21888964b2eSSara Sharon 	for (power = max_power; power >= min_power; power--) {
219e705c121SKalle Valo 		size = BIT(power);
22069f0e505SShahar S Matityahu 		block = dma_alloc_coherent(trans->dev, size, &physical,
2212d46f7afSChristoph Hellwig 					   GFP_KERNEL | __GFP_NOWARN);
22269f0e505SShahar S Matityahu 		if (!block)
223e705c121SKalle Valo 			continue;
224e705c121SKalle Valo 
225e705c121SKalle Valo 		IWL_INFO(trans,
226c5f97542SShahar S Matityahu 			 "Allocated 0x%08x bytes for firmware monitor.\n",
227c5f97542SShahar S Matityahu 			 size);
228e705c121SKalle Valo 		break;
229e705c121SKalle Valo 	}
230e705c121SKalle Valo 
23169f0e505SShahar S Matityahu 	if (WARN_ON_ONCE(!block))
232e705c121SKalle Valo 		return;
233e705c121SKalle Valo 
234e705c121SKalle Valo 	if (power != max_power)
235e705c121SKalle Valo 		IWL_ERR(trans,
236e705c121SKalle Valo 			"Sorry - debug buffer is only %luK while you requested %luK\n",
237e705c121SKalle Valo 			(unsigned long)BIT(power - 10),
238e705c121SKalle Valo 			(unsigned long)BIT(max_power - 10));
239e705c121SKalle Valo 
24069f0e505SShahar S Matityahu 	fw_mon->block = block;
24169f0e505SShahar S Matityahu 	fw_mon->physical = physical;
24269f0e505SShahar S Matityahu 	fw_mon->size = size;
24388964b2eSSara Sharon }
24488964b2eSSara Sharon 
24588964b2eSSara Sharon void iwl_pcie_alloc_fw_monitor(struct iwl_trans *trans, u8 max_power)
24688964b2eSSara Sharon {
24788964b2eSSara Sharon 	if (!max_power) {
24888964b2eSSara Sharon 		/* default max_power is maximum */
24988964b2eSSara Sharon 		max_power = 26;
25088964b2eSSara Sharon 	} else {
25188964b2eSSara Sharon 		max_power += 11;
25288964b2eSSara Sharon 	}
25388964b2eSSara Sharon 
25488964b2eSSara Sharon 	if (WARN(max_power > 26,
25588964b2eSSara Sharon 		 "External buffer size for monitor is too big %d, check the FW TLV\n",
25688964b2eSSara Sharon 		 max_power))
25788964b2eSSara Sharon 		return;
25888964b2eSSara Sharon 
25969f0e505SShahar S Matityahu 	if (trans->dbg.fw_mon.size)
26088964b2eSSara Sharon 		return;
26188964b2eSSara Sharon 
26288964b2eSSara Sharon 	iwl_pcie_alloc_fw_monitor_block(trans, max_power, 11);
263e705c121SKalle Valo }
264e705c121SKalle Valo 
265e705c121SKalle Valo static u32 iwl_trans_pcie_read_shr(struct iwl_trans *trans, u32 reg)
266e705c121SKalle Valo {
267e705c121SKalle Valo 	iwl_write32(trans, HEEP_CTRL_WRD_PCIEX_CTRL_REG,
268e705c121SKalle Valo 		    ((reg & 0x0000ffff) | (2 << 28)));
269e705c121SKalle Valo 	return iwl_read32(trans, HEEP_CTRL_WRD_PCIEX_DATA_REG);
270e705c121SKalle Valo }
271e705c121SKalle Valo 
272e705c121SKalle Valo static void iwl_trans_pcie_write_shr(struct iwl_trans *trans, u32 reg, u32 val)
273e705c121SKalle Valo {
274e705c121SKalle Valo 	iwl_write32(trans, HEEP_CTRL_WRD_PCIEX_DATA_REG, val);
275e705c121SKalle Valo 	iwl_write32(trans, HEEP_CTRL_WRD_PCIEX_CTRL_REG,
276e705c121SKalle Valo 		    ((reg & 0x0000ffff) | (3 << 28)));
277e705c121SKalle Valo }
278e705c121SKalle Valo 
279e705c121SKalle Valo static void iwl_pcie_set_pwr(struct iwl_trans *trans, bool vaux)
280e705c121SKalle Valo {
281e705c121SKalle Valo 	if (trans->cfg->apmg_not_supported)
282e705c121SKalle Valo 		return;
283e705c121SKalle Valo 
284e705c121SKalle Valo 	if (vaux && pci_pme_capable(to_pci_dev(trans->dev), PCI_D3cold))
285e705c121SKalle Valo 		iwl_set_bits_mask_prph(trans, APMG_PS_CTRL_REG,
286e705c121SKalle Valo 				       APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
287e705c121SKalle Valo 				       ~APMG_PS_CTRL_MSK_PWR_SRC);
288e705c121SKalle Valo 	else
289e705c121SKalle Valo 		iwl_set_bits_mask_prph(trans, APMG_PS_CTRL_REG,
290e705c121SKalle Valo 				       APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
291e705c121SKalle Valo 				       ~APMG_PS_CTRL_MSK_PWR_SRC);
292e705c121SKalle Valo }
293e705c121SKalle Valo 
294e705c121SKalle Valo /* PCI registers */
295e705c121SKalle Valo #define PCI_CFG_RETRY_TIMEOUT	0x041
296e705c121SKalle Valo 
297eda50cdeSSara Sharon void iwl_pcie_apm_config(struct iwl_trans *trans)
298e705c121SKalle Valo {
299e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
300e705c121SKalle Valo 	u16 lctl;
301e705c121SKalle Valo 	u16 cap;
302e705c121SKalle Valo 
303e705c121SKalle Valo 	/*
304cc894b85SLuca Coelho 	 * L0S states have been found to be unstable with our devices
305cc894b85SLuca Coelho 	 * and in newer hardware they are not officially supported at
306cc894b85SLuca Coelho 	 * all, so we must always set the L0S_DISABLED bit.
307e705c121SKalle Valo 	 */
3083d1b28fdSLuca Coelho 	iwl_set_bit(trans, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_DISABLED);
309cc894b85SLuca Coelho 
310cc894b85SLuca Coelho 	pcie_capability_read_word(trans_pcie->pci_dev, PCI_EXP_LNKCTL, &lctl);
311e705c121SKalle Valo 	trans->pm_support = !(lctl & PCI_EXP_LNKCTL_ASPM_L0S);
312e705c121SKalle Valo 
313e705c121SKalle Valo 	pcie_capability_read_word(trans_pcie->pci_dev, PCI_EXP_DEVCTL2, &cap);
314e705c121SKalle Valo 	trans->ltr_enabled = cap & PCI_EXP_DEVCTL2_LTR_EN;
315d74a61fcSLuca Coelho 	IWL_DEBUG_POWER(trans, "L1 %sabled - LTR %sabled\n",
316e705c121SKalle Valo 			(lctl & PCI_EXP_LNKCTL_ASPM_L1) ? "En" : "Dis",
317e705c121SKalle Valo 			trans->ltr_enabled ? "En" : "Dis");
318e705c121SKalle Valo }
319e705c121SKalle Valo 
320e705c121SKalle Valo /*
321e705c121SKalle Valo  * Start up NIC's basic functionality after it has been reset
322e705c121SKalle Valo  * (e.g. after platform boot, or shutdown via iwl_pcie_apm_stop())
323e705c121SKalle Valo  * NOTE:  This does not load uCode nor start the embedded processor
324e705c121SKalle Valo  */
325e705c121SKalle Valo static int iwl_pcie_apm_init(struct iwl_trans *trans)
326e705c121SKalle Valo {
32752b6e168SEmmanuel Grumbach 	int ret;
32852b6e168SEmmanuel Grumbach 
329e705c121SKalle Valo 	IWL_DEBUG_INFO(trans, "Init card's basic functions\n");
330e705c121SKalle Valo 
331e705c121SKalle Valo 	/*
332e705c121SKalle Valo 	 * Use "set_bit" below rather than "write", to preserve any hardware
333e705c121SKalle Valo 	 * bits already set by default after reset.
334e705c121SKalle Valo 	 */
335e705c121SKalle Valo 
336e705c121SKalle Valo 	/* Disable L0S exit timer (platform NMI Work/Around) */
337286ca8ebSLuca Coelho 	if (trans->trans_cfg->device_family < IWL_DEVICE_FAMILY_8000)
338e705c121SKalle Valo 		iwl_set_bit(trans, CSR_GIO_CHICKEN_BITS,
339e705c121SKalle Valo 			    CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
340e705c121SKalle Valo 
341e705c121SKalle Valo 	/*
342e705c121SKalle Valo 	 * Disable L0s without affecting L1;
343e705c121SKalle Valo 	 *  don't wait for ICH L0s (ICH bug W/A)
344e705c121SKalle Valo 	 */
345e705c121SKalle Valo 	iwl_set_bit(trans, CSR_GIO_CHICKEN_BITS,
346e705c121SKalle Valo 		    CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
347e705c121SKalle Valo 
348e705c121SKalle Valo 	/* Set FH wait threshold to maximum (HW error during stress W/A) */
349e705c121SKalle Valo 	iwl_set_bit(trans, CSR_DBG_HPET_MEM_REG, CSR_DBG_HPET_MEM_REG_VAL);
350e705c121SKalle Valo 
351e705c121SKalle Valo 	/*
352e705c121SKalle Valo 	 * Enable HAP INTA (interrupt from management bus) to
353e705c121SKalle Valo 	 * wake device's PCI Express link L1a -> L0s
354e705c121SKalle Valo 	 */
355e705c121SKalle Valo 	iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
356e705c121SKalle Valo 		    CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A);
357e705c121SKalle Valo 
358e705c121SKalle Valo 	iwl_pcie_apm_config(trans);
359e705c121SKalle Valo 
360e705c121SKalle Valo 	/* Configure analog phase-lock-loop before activating to D0A */
361286ca8ebSLuca Coelho 	if (trans->trans_cfg->base_params->pll_cfg)
36277d76931SJohannes Berg 		iwl_set_bit(trans, CSR_ANA_PLL_CFG, CSR50_ANA_PLL_CFG_VAL);
363e705c121SKalle Valo 
3647d34a7d7SLuca Coelho 	ret = iwl_finish_nic_init(trans, trans->trans_cfg);
365c96b5eecSJohannes Berg 	if (ret)
36652b6e168SEmmanuel Grumbach 		return ret;
367e705c121SKalle Valo 
368e705c121SKalle Valo 	if (trans->cfg->host_interrupt_operation_mode) {
369e705c121SKalle Valo 		/*
370e705c121SKalle Valo 		 * This is a bit of an abuse - This is needed for 7260 / 3160
371e705c121SKalle Valo 		 * only check host_interrupt_operation_mode even if this is
372e705c121SKalle Valo 		 * not related to host_interrupt_operation_mode.
373e705c121SKalle Valo 		 *
374e705c121SKalle Valo 		 * Enable the oscillator to count wake up time for L1 exit. This
375e705c121SKalle Valo 		 * consumes slightly more power (100uA) - but allows to be sure
376e705c121SKalle Valo 		 * that we wake up from L1 on time.
377e705c121SKalle Valo 		 *
378e705c121SKalle Valo 		 * This looks weird: read twice the same register, discard the
379e705c121SKalle Valo 		 * value, set a bit, and yet again, read that same register
380e705c121SKalle Valo 		 * just to discard the value. But that's the way the hardware
381e705c121SKalle Valo 		 * seems to like it.
382e705c121SKalle Valo 		 */
383e705c121SKalle Valo 		iwl_read_prph(trans, OSC_CLK);
384e705c121SKalle Valo 		iwl_read_prph(trans, OSC_CLK);
385e705c121SKalle Valo 		iwl_set_bits_prph(trans, OSC_CLK, OSC_CLK_FORCE_CONTROL);
386e705c121SKalle Valo 		iwl_read_prph(trans, OSC_CLK);
387e705c121SKalle Valo 		iwl_read_prph(trans, OSC_CLK);
388e705c121SKalle Valo 	}
389e705c121SKalle Valo 
390e705c121SKalle Valo 	/*
391e705c121SKalle Valo 	 * Enable DMA clock and wait for it to stabilize.
392e705c121SKalle Valo 	 *
393e705c121SKalle Valo 	 * Write to "CLK_EN_REG"; "1" bits enable clocks, while "0"
394e705c121SKalle Valo 	 * bits do not disable clocks.  This preserves any hardware
395e705c121SKalle Valo 	 * bits already set by default in "CLK_CTRL_REG" after reset.
396e705c121SKalle Valo 	 */
397e705c121SKalle Valo 	if (!trans->cfg->apmg_not_supported) {
398e705c121SKalle Valo 		iwl_write_prph(trans, APMG_CLK_EN_REG,
399e705c121SKalle Valo 			       APMG_CLK_VAL_DMA_CLK_RQT);
400e705c121SKalle Valo 		udelay(20);
401e705c121SKalle Valo 
402e705c121SKalle Valo 		/* Disable L1-Active */
403e705c121SKalle Valo 		iwl_set_bits_prph(trans, APMG_PCIDEV_STT_REG,
404e705c121SKalle Valo 				  APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
405e705c121SKalle Valo 
406e705c121SKalle Valo 		/* Clear the interrupt in APMG if the NIC is in RFKILL */
407e705c121SKalle Valo 		iwl_write_prph(trans, APMG_RTC_INT_STT_REG,
408e705c121SKalle Valo 			       APMG_RTC_INT_STT_RFKILL);
409e705c121SKalle Valo 	}
410e705c121SKalle Valo 
411e705c121SKalle Valo 	set_bit(STATUS_DEVICE_ENABLED, &trans->status);
412e705c121SKalle Valo 
41352b6e168SEmmanuel Grumbach 	return 0;
414e705c121SKalle Valo }
415e705c121SKalle Valo 
416e705c121SKalle Valo /*
417e705c121SKalle Valo  * Enable LP XTAL to avoid HW bug where device may consume much power if
418e705c121SKalle Valo  * FW is not loaded after device reset. LP XTAL is disabled by default
419e705c121SKalle Valo  * after device HW reset. Do it only if XTAL is fed by internal source.
420e705c121SKalle Valo  * Configure device's "persistence" mode to avoid resetting XTAL again when
421e705c121SKalle Valo  * SHRD_HW_RST occurs in S3.
422e705c121SKalle Valo  */
423e705c121SKalle Valo static void iwl_pcie_apm_lp_xtal_enable(struct iwl_trans *trans)
424e705c121SKalle Valo {
425e705c121SKalle Valo 	int ret;
426e705c121SKalle Valo 	u32 apmg_gp1_reg;
427e705c121SKalle Valo 	u32 apmg_xtal_cfg_reg;
428e705c121SKalle Valo 	u32 dl_cfg_reg;
429e705c121SKalle Valo 
430e705c121SKalle Valo 	/* Force XTAL ON */
431e705c121SKalle Valo 	__iwl_trans_pcie_set_bit(trans, CSR_GP_CNTRL,
432e705c121SKalle Valo 				 CSR_GP_CNTRL_REG_FLAG_XTAL_ON);
433e705c121SKalle Valo 
434870c2a11SGolan Ben Ami 	iwl_trans_pcie_sw_reset(trans);
435e705c121SKalle Valo 
4367d34a7d7SLuca Coelho 	ret = iwl_finish_nic_init(trans, trans->trans_cfg);
437c96b5eecSJohannes Berg 	if (WARN_ON(ret)) {
438e705c121SKalle Valo 		/* Release XTAL ON request */
439e705c121SKalle Valo 		__iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
440e705c121SKalle Valo 					   CSR_GP_CNTRL_REG_FLAG_XTAL_ON);
441e705c121SKalle Valo 		return;
442e705c121SKalle Valo 	}
443e705c121SKalle Valo 
444e705c121SKalle Valo 	/*
445e705c121SKalle Valo 	 * Clear "disable persistence" to avoid LP XTAL resetting when
446e705c121SKalle Valo 	 * SHRD_HW_RST is applied in S3.
447e705c121SKalle Valo 	 */
448e705c121SKalle Valo 	iwl_clear_bits_prph(trans, APMG_PCIDEV_STT_REG,
449e705c121SKalle Valo 				    APMG_PCIDEV_STT_VAL_PERSIST_DIS);
450e705c121SKalle Valo 
451e705c121SKalle Valo 	/*
452e705c121SKalle Valo 	 * Force APMG XTAL to be active to prevent its disabling by HW
453e705c121SKalle Valo 	 * caused by APMG idle state.
454e705c121SKalle Valo 	 */
455e705c121SKalle Valo 	apmg_xtal_cfg_reg = iwl_trans_pcie_read_shr(trans,
456e705c121SKalle Valo 						    SHR_APMG_XTAL_CFG_REG);
457e705c121SKalle Valo 	iwl_trans_pcie_write_shr(trans, SHR_APMG_XTAL_CFG_REG,
458e705c121SKalle Valo 				 apmg_xtal_cfg_reg |
459e705c121SKalle Valo 				 SHR_APMG_XTAL_CFG_XTAL_ON_REQ);
460e705c121SKalle Valo 
461870c2a11SGolan Ben Ami 	iwl_trans_pcie_sw_reset(trans);
462e705c121SKalle Valo 
463e705c121SKalle Valo 	/* Enable LP XTAL by indirect access through CSR */
464e705c121SKalle Valo 	apmg_gp1_reg = iwl_trans_pcie_read_shr(trans, SHR_APMG_GP1_REG);
465e705c121SKalle Valo 	iwl_trans_pcie_write_shr(trans, SHR_APMG_GP1_REG, apmg_gp1_reg |
466e705c121SKalle Valo 				 SHR_APMG_GP1_WF_XTAL_LP_EN |
467e705c121SKalle Valo 				 SHR_APMG_GP1_CHICKEN_BIT_SELECT);
468e705c121SKalle Valo 
469e705c121SKalle Valo 	/* Clear delay line clock power up */
470e705c121SKalle Valo 	dl_cfg_reg = iwl_trans_pcie_read_shr(trans, SHR_APMG_DL_CFG_REG);
471e705c121SKalle Valo 	iwl_trans_pcie_write_shr(trans, SHR_APMG_DL_CFG_REG, dl_cfg_reg &
472e705c121SKalle Valo 				 ~SHR_APMG_DL_CFG_DL_CLOCK_POWER_UP);
473e705c121SKalle Valo 
474e705c121SKalle Valo 	/*
475e705c121SKalle Valo 	 * Enable persistence mode to avoid LP XTAL resetting when
476e705c121SKalle Valo 	 * SHRD_HW_RST is applied in S3.
477e705c121SKalle Valo 	 */
478e705c121SKalle Valo 	iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
479e705c121SKalle Valo 		    CSR_HW_IF_CONFIG_REG_PERSIST_MODE);
480e705c121SKalle Valo 
481e705c121SKalle Valo 	/*
482e705c121SKalle Valo 	 * Clear "initialization complete" bit to move adapter from
483e705c121SKalle Valo 	 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
484e705c121SKalle Valo 	 */
4856dece0e9SLuca Coelho 	iwl_clear_bit(trans, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
486e705c121SKalle Valo 
487e705c121SKalle Valo 	/* Activates XTAL resources monitor */
488e705c121SKalle Valo 	__iwl_trans_pcie_set_bit(trans, CSR_MONITOR_CFG_REG,
489e705c121SKalle Valo 				 CSR_MONITOR_XTAL_RESOURCES);
490e705c121SKalle Valo 
491e705c121SKalle Valo 	/* Release XTAL ON request */
492e705c121SKalle Valo 	__iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
493e705c121SKalle Valo 				   CSR_GP_CNTRL_REG_FLAG_XTAL_ON);
494e705c121SKalle Valo 	udelay(10);
495e705c121SKalle Valo 
496e705c121SKalle Valo 	/* Release APMG XTAL */
497e705c121SKalle Valo 	iwl_trans_pcie_write_shr(trans, SHR_APMG_XTAL_CFG_REG,
498e705c121SKalle Valo 				 apmg_xtal_cfg_reg &
499e705c121SKalle Valo 				 ~SHR_APMG_XTAL_CFG_XTAL_ON_REQ);
500e705c121SKalle Valo }
501e705c121SKalle Valo 
502e8c8935eSJohannes Berg void iwl_pcie_apm_stop_master(struct iwl_trans *trans)
503e705c121SKalle Valo {
504e8c8935eSJohannes Berg 	int ret;
505e705c121SKalle Valo 
506e705c121SKalle Valo 	/* stop device's busmaster DMA activity */
5076dece0e9SLuca Coelho 	iwl_set_bit(trans, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER);
508e705c121SKalle Valo 
5096dece0e9SLuca Coelho 	ret = iwl_poll_bit(trans, CSR_RESET,
5106dece0e9SLuca Coelho 			   CSR_RESET_REG_FLAG_MASTER_DISABLED,
5116dece0e9SLuca Coelho 			   CSR_RESET_REG_FLAG_MASTER_DISABLED, 100);
512e705c121SKalle Valo 	if (ret < 0)
513e705c121SKalle Valo 		IWL_WARN(trans, "Master Disable Timed Out, 100 usec\n");
514e705c121SKalle Valo 
515e705c121SKalle Valo 	IWL_DEBUG_INFO(trans, "stop master\n");
516e705c121SKalle Valo }
517e705c121SKalle Valo 
518e705c121SKalle Valo static void iwl_pcie_apm_stop(struct iwl_trans *trans, bool op_mode_leave)
519e705c121SKalle Valo {
520e705c121SKalle Valo 	IWL_DEBUG_INFO(trans, "Stop card, put in low power state\n");
521e705c121SKalle Valo 
522e705c121SKalle Valo 	if (op_mode_leave) {
523e705c121SKalle Valo 		if (!test_bit(STATUS_DEVICE_ENABLED, &trans->status))
524e705c121SKalle Valo 			iwl_pcie_apm_init(trans);
525e705c121SKalle Valo 
526e705c121SKalle Valo 		/* inform ME that we are leaving */
527286ca8ebSLuca Coelho 		if (trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_7000)
528e705c121SKalle Valo 			iwl_set_bits_prph(trans, APMG_PCIDEV_STT_REG,
529e705c121SKalle Valo 					  APMG_PCIDEV_STT_VAL_WAKE_ME);
530286ca8ebSLuca Coelho 		else if (trans->trans_cfg->device_family >=
53179b6c8feSLuca Coelho 			 IWL_DEVICE_FAMILY_8000) {
532e705c121SKalle Valo 			iwl_set_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
533e705c121SKalle Valo 				    CSR_RESET_LINK_PWR_MGMT_DISABLED);
534e705c121SKalle Valo 			iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
535e705c121SKalle Valo 				    CSR_HW_IF_CONFIG_REG_PREPARE |
536e705c121SKalle Valo 				    CSR_HW_IF_CONFIG_REG_ENABLE_PME);
537e705c121SKalle Valo 			mdelay(1);
538e705c121SKalle Valo 			iwl_clear_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
539e705c121SKalle Valo 				      CSR_RESET_LINK_PWR_MGMT_DISABLED);
540e705c121SKalle Valo 		}
541e705c121SKalle Valo 		mdelay(5);
542e705c121SKalle Valo 	}
543e705c121SKalle Valo 
544e705c121SKalle Valo 	clear_bit(STATUS_DEVICE_ENABLED, &trans->status);
545e705c121SKalle Valo 
546e705c121SKalle Valo 	/* Stop device's DMA activity */
547e705c121SKalle Valo 	iwl_pcie_apm_stop_master(trans);
548e705c121SKalle Valo 
549e705c121SKalle Valo 	if (trans->cfg->lp_xtal_workaround) {
550e705c121SKalle Valo 		iwl_pcie_apm_lp_xtal_enable(trans);
551e705c121SKalle Valo 		return;
552e705c121SKalle Valo 	}
553e705c121SKalle Valo 
554870c2a11SGolan Ben Ami 	iwl_trans_pcie_sw_reset(trans);
555e705c121SKalle Valo 
556e705c121SKalle Valo 	/*
557e705c121SKalle Valo 	 * Clear "initialization complete" bit to move adapter from
558e705c121SKalle Valo 	 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
559e705c121SKalle Valo 	 */
5606dece0e9SLuca Coelho 	iwl_clear_bit(trans, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
561e705c121SKalle Valo }
562e705c121SKalle Valo 
563e705c121SKalle Valo static int iwl_pcie_nic_init(struct iwl_trans *trans)
564e705c121SKalle Valo {
565e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
56652b6e168SEmmanuel Grumbach 	int ret;
567e705c121SKalle Valo 
568e705c121SKalle Valo 	/* nic_init */
569e705c121SKalle Valo 	spin_lock(&trans_pcie->irq_lock);
57052b6e168SEmmanuel Grumbach 	ret = iwl_pcie_apm_init(trans);
571e705c121SKalle Valo 	spin_unlock(&trans_pcie->irq_lock);
572e705c121SKalle Valo 
57352b6e168SEmmanuel Grumbach 	if (ret)
57452b6e168SEmmanuel Grumbach 		return ret;
57552b6e168SEmmanuel Grumbach 
576e705c121SKalle Valo 	iwl_pcie_set_pwr(trans, false);
577e705c121SKalle Valo 
578e705c121SKalle Valo 	iwl_op_mode_nic_config(trans->op_mode);
579e705c121SKalle Valo 
580e705c121SKalle Valo 	/* Allocate the RX queue, or reset if it is already allocated */
581e705c121SKalle Valo 	iwl_pcie_rx_init(trans);
582e705c121SKalle Valo 
583e705c121SKalle Valo 	/* Allocate or reset and init all Tx and Command queues */
584e705c121SKalle Valo 	if (iwl_pcie_tx_init(trans))
585e705c121SKalle Valo 		return -ENOMEM;
586e705c121SKalle Valo 
587286ca8ebSLuca Coelho 	if (trans->trans_cfg->base_params->shadow_reg_enable) {
588e705c121SKalle Valo 		/* enable shadow regs in HW */
589e705c121SKalle Valo 		iwl_set_bit(trans, CSR_MAC_SHADOW_REG_CTRL, 0x800FFFFF);
590e705c121SKalle Valo 		IWL_DEBUG_INFO(trans, "Enabling shadow registers in device\n");
591e705c121SKalle Valo 	}
592e705c121SKalle Valo 
593e705c121SKalle Valo 	return 0;
594e705c121SKalle Valo }
595e705c121SKalle Valo 
596e705c121SKalle Valo #define HW_READY_TIMEOUT (50)
597e705c121SKalle Valo 
598e705c121SKalle Valo /* Note: returns poll_bit return value, which is >= 0 if success */
599e705c121SKalle Valo static int iwl_pcie_set_hw_ready(struct iwl_trans *trans)
600e705c121SKalle Valo {
601e705c121SKalle Valo 	int ret;
602e705c121SKalle Valo 
603e705c121SKalle Valo 	iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
604e705c121SKalle Valo 		    CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
605e705c121SKalle Valo 
606e705c121SKalle Valo 	/* See if we got it */
607e705c121SKalle Valo 	ret = iwl_poll_bit(trans, CSR_HW_IF_CONFIG_REG,
608e705c121SKalle Valo 			   CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
609e705c121SKalle Valo 			   CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
610e705c121SKalle Valo 			   HW_READY_TIMEOUT);
611e705c121SKalle Valo 
612e705c121SKalle Valo 	if (ret >= 0)
613e705c121SKalle Valo 		iwl_set_bit(trans, CSR_MBOX_SET_REG, CSR_MBOX_SET_REG_OS_ALIVE);
614e705c121SKalle Valo 
615e705c121SKalle Valo 	IWL_DEBUG_INFO(trans, "hardware%s ready\n", ret < 0 ? " not" : "");
616e705c121SKalle Valo 	return ret;
617e705c121SKalle Valo }
618e705c121SKalle Valo 
619e705c121SKalle Valo /* Note: returns standard 0/-ERROR code */
620eda50cdeSSara Sharon int iwl_pcie_prepare_card_hw(struct iwl_trans *trans)
621e705c121SKalle Valo {
622e705c121SKalle Valo 	int ret;
623e705c121SKalle Valo 	int t = 0;
624e705c121SKalle Valo 	int iter;
625e705c121SKalle Valo 
626e705c121SKalle Valo 	IWL_DEBUG_INFO(trans, "iwl_trans_prepare_card_hw enter\n");
627e705c121SKalle Valo 
628e705c121SKalle Valo 	ret = iwl_pcie_set_hw_ready(trans);
629e705c121SKalle Valo 	/* If the card is ready, exit 0 */
630e705c121SKalle Valo 	if (ret >= 0)
631e705c121SKalle Valo 		return 0;
632e705c121SKalle Valo 
633e705c121SKalle Valo 	iwl_set_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
634e705c121SKalle Valo 		    CSR_RESET_LINK_PWR_MGMT_DISABLED);
635192185d6SJohannes Berg 	usleep_range(1000, 2000);
636e705c121SKalle Valo 
637e705c121SKalle Valo 	for (iter = 0; iter < 10; iter++) {
638e705c121SKalle Valo 		/* If HW is not ready, prepare the conditions to check again */
639e705c121SKalle Valo 		iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
640e705c121SKalle Valo 			    CSR_HW_IF_CONFIG_REG_PREPARE);
641e705c121SKalle Valo 
642e705c121SKalle Valo 		do {
643e705c121SKalle Valo 			ret = iwl_pcie_set_hw_ready(trans);
644e705c121SKalle Valo 			if (ret >= 0)
645e705c121SKalle Valo 				return 0;
646e705c121SKalle Valo 
647e705c121SKalle Valo 			usleep_range(200, 1000);
648e705c121SKalle Valo 			t += 200;
649e705c121SKalle Valo 		} while (t < 150000);
650e705c121SKalle Valo 		msleep(25);
651e705c121SKalle Valo 	}
652e705c121SKalle Valo 
653e705c121SKalle Valo 	IWL_ERR(trans, "Couldn't prepare the card\n");
654e705c121SKalle Valo 
655e705c121SKalle Valo 	return ret;
656e705c121SKalle Valo }
657e705c121SKalle Valo 
658e705c121SKalle Valo /*
659e705c121SKalle Valo  * ucode
660e705c121SKalle Valo  */
661564cdce7SSara Sharon static void iwl_pcie_load_firmware_chunk_fh(struct iwl_trans *trans,
662564cdce7SSara Sharon 					    u32 dst_addr, dma_addr_t phy_addr,
663564cdce7SSara Sharon 					    u32 byte_cnt)
664e705c121SKalle Valo {
665bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
666e705c121SKalle Valo 		    FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE);
667e705c121SKalle Valo 
668bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_SRVC_CHNL_SRAM_ADDR_REG(FH_SRVC_CHNL),
669e705c121SKalle Valo 		    dst_addr);
670e705c121SKalle Valo 
671bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_TFDIB_CTRL0_REG(FH_SRVC_CHNL),
672e705c121SKalle Valo 		    phy_addr & FH_MEM_TFDIB_DRAM_ADDR_LSB_MSK);
673e705c121SKalle Valo 
674bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_TFDIB_CTRL1_REG(FH_SRVC_CHNL),
675e705c121SKalle Valo 		    (iwl_get_dma_hi_addr(phy_addr)
676e705c121SKalle Valo 			<< FH_MEM_TFDIB_REG1_ADDR_BITSHIFT) | byte_cnt);
677e705c121SKalle Valo 
678bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_TCSR_CHNL_TX_BUF_STS_REG(FH_SRVC_CHNL),
679bac842daSEmmanuel Grumbach 		    BIT(FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_NUM) |
680bac842daSEmmanuel Grumbach 		    BIT(FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_IDX) |
681e705c121SKalle Valo 		    FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_VALID);
682e705c121SKalle Valo 
683bac842daSEmmanuel Grumbach 	iwl_write32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
684e705c121SKalle Valo 		    FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
685e705c121SKalle Valo 		    FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_DISABLE |
686e705c121SKalle Valo 		    FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_ENDTFD);
687564cdce7SSara Sharon }
688e705c121SKalle Valo 
689564cdce7SSara Sharon static int iwl_pcie_load_firmware_chunk(struct iwl_trans *trans,
690564cdce7SSara Sharon 					u32 dst_addr, dma_addr_t phy_addr,
691564cdce7SSara Sharon 					u32 byte_cnt)
692564cdce7SSara Sharon {
693564cdce7SSara Sharon 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
694564cdce7SSara Sharon 	unsigned long flags;
695564cdce7SSara Sharon 	int ret;
696564cdce7SSara Sharon 
697564cdce7SSara Sharon 	trans_pcie->ucode_write_complete = false;
698564cdce7SSara Sharon 
699564cdce7SSara Sharon 	if (!iwl_trans_grab_nic_access(trans, &flags))
700564cdce7SSara Sharon 		return -EIO;
701564cdce7SSara Sharon 
702564cdce7SSara Sharon 	iwl_pcie_load_firmware_chunk_fh(trans, dst_addr, phy_addr,
703564cdce7SSara Sharon 					byte_cnt);
704bac842daSEmmanuel Grumbach 	iwl_trans_release_nic_access(trans, &flags);
705bac842daSEmmanuel Grumbach 
706e705c121SKalle Valo 	ret = wait_event_timeout(trans_pcie->ucode_write_waitq,
707e705c121SKalle Valo 				 trans_pcie->ucode_write_complete, 5 * HZ);
708e705c121SKalle Valo 	if (!ret) {
709e705c121SKalle Valo 		IWL_ERR(trans, "Failed to load firmware chunk!\n");
710fb12777aSKirtika Ruchandani 		iwl_trans_pcie_dump_regs(trans);
711e705c121SKalle Valo 		return -ETIMEDOUT;
712e705c121SKalle Valo 	}
713e705c121SKalle Valo 
714e705c121SKalle Valo 	return 0;
715e705c121SKalle Valo }
716e705c121SKalle Valo 
717e705c121SKalle Valo static int iwl_pcie_load_section(struct iwl_trans *trans, u8 section_num,
718e705c121SKalle Valo 			    const struct fw_desc *section)
719e705c121SKalle Valo {
720e705c121SKalle Valo 	u8 *v_addr;
721e705c121SKalle Valo 	dma_addr_t p_addr;
722e705c121SKalle Valo 	u32 offset, chunk_sz = min_t(u32, FH_MEM_TB_MAX_LENGTH, section->len);
723e705c121SKalle Valo 	int ret = 0;
724e705c121SKalle Valo 
725e705c121SKalle Valo 	IWL_DEBUG_FW(trans, "[%d] uCode section being loaded...\n",
726e705c121SKalle Valo 		     section_num);
727e705c121SKalle Valo 
728e705c121SKalle Valo 	v_addr = dma_alloc_coherent(trans->dev, chunk_sz, &p_addr,
729e705c121SKalle Valo 				    GFP_KERNEL | __GFP_NOWARN);
730e705c121SKalle Valo 	if (!v_addr) {
731e705c121SKalle Valo 		IWL_DEBUG_INFO(trans, "Falling back to small chunks of DMA\n");
732e705c121SKalle Valo 		chunk_sz = PAGE_SIZE;
733e705c121SKalle Valo 		v_addr = dma_alloc_coherent(trans->dev, chunk_sz,
734e705c121SKalle Valo 					    &p_addr, GFP_KERNEL);
735e705c121SKalle Valo 		if (!v_addr)
736e705c121SKalle Valo 			return -ENOMEM;
737e705c121SKalle Valo 	}
738e705c121SKalle Valo 
739e705c121SKalle Valo 	for (offset = 0; offset < section->len; offset += chunk_sz) {
740e705c121SKalle Valo 		u32 copy_size, dst_addr;
741e705c121SKalle Valo 		bool extended_addr = false;
742e705c121SKalle Valo 
743e705c121SKalle Valo 		copy_size = min_t(u32, chunk_sz, section->len - offset);
744e705c121SKalle Valo 		dst_addr = section->offset + offset;
745e705c121SKalle Valo 
746e705c121SKalle Valo 		if (dst_addr >= IWL_FW_MEM_EXTENDED_START &&
747e705c121SKalle Valo 		    dst_addr <= IWL_FW_MEM_EXTENDED_END)
748e705c121SKalle Valo 			extended_addr = true;
749e705c121SKalle Valo 
750e705c121SKalle Valo 		if (extended_addr)
751e705c121SKalle Valo 			iwl_set_bits_prph(trans, LMPM_CHICK,
752e705c121SKalle Valo 					  LMPM_CHICK_EXTENDED_ADDR_SPACE);
753e705c121SKalle Valo 
754e705c121SKalle Valo 		memcpy(v_addr, (u8 *)section->data + offset, copy_size);
755e705c121SKalle Valo 		ret = iwl_pcie_load_firmware_chunk(trans, dst_addr, p_addr,
756e705c121SKalle Valo 						   copy_size);
757e705c121SKalle Valo 
758e705c121SKalle Valo 		if (extended_addr)
759e705c121SKalle Valo 			iwl_clear_bits_prph(trans, LMPM_CHICK,
760e705c121SKalle Valo 					    LMPM_CHICK_EXTENDED_ADDR_SPACE);
761e705c121SKalle Valo 
762e705c121SKalle Valo 		if (ret) {
763e705c121SKalle Valo 			IWL_ERR(trans,
764e705c121SKalle Valo 				"Could not load the [%d] uCode section\n",
765e705c121SKalle Valo 				section_num);
766e705c121SKalle Valo 			break;
767e705c121SKalle Valo 		}
768e705c121SKalle Valo 	}
769e705c121SKalle Valo 
770e705c121SKalle Valo 	dma_free_coherent(trans->dev, chunk_sz, v_addr, p_addr);
771e705c121SKalle Valo 	return ret;
772e705c121SKalle Valo }
773e705c121SKalle Valo 
774e705c121SKalle Valo static int iwl_pcie_load_cpu_sections_8000(struct iwl_trans *trans,
775e705c121SKalle Valo 					   const struct fw_img *image,
776e705c121SKalle Valo 					   int cpu,
777e705c121SKalle Valo 					   int *first_ucode_section)
778e705c121SKalle Valo {
779e705c121SKalle Valo 	int shift_param;
780e705c121SKalle Valo 	int i, ret = 0, sec_num = 0x1;
781e705c121SKalle Valo 	u32 val, last_read_idx = 0;
782e705c121SKalle Valo 
783e705c121SKalle Valo 	if (cpu == 1) {
784e705c121SKalle Valo 		shift_param = 0;
785e705c121SKalle Valo 		*first_ucode_section = 0;
786e705c121SKalle Valo 	} else {
787e705c121SKalle Valo 		shift_param = 16;
788e705c121SKalle Valo 		(*first_ucode_section)++;
789e705c121SKalle Valo 	}
790e705c121SKalle Valo 
791eef187a7SSara Sharon 	for (i = *first_ucode_section; i < image->num_sec; i++) {
792e705c121SKalle Valo 		last_read_idx = i;
793e705c121SKalle Valo 
794e705c121SKalle Valo 		/*
795e705c121SKalle Valo 		 * CPU1_CPU2_SEPARATOR_SECTION delimiter - separate between
796e705c121SKalle Valo 		 * CPU1 to CPU2.
797e705c121SKalle Valo 		 * PAGING_SEPARATOR_SECTION delimiter - separate between
798e705c121SKalle Valo 		 * CPU2 non paged to CPU2 paging sec.
799e705c121SKalle Valo 		 */
800e705c121SKalle Valo 		if (!image->sec[i].data ||
801e705c121SKalle Valo 		    image->sec[i].offset == CPU1_CPU2_SEPARATOR_SECTION ||
802e705c121SKalle Valo 		    image->sec[i].offset == PAGING_SEPARATOR_SECTION) {
803e705c121SKalle Valo 			IWL_DEBUG_FW(trans,
804e705c121SKalle Valo 				     "Break since Data not valid or Empty section, sec = %d\n",
805e705c121SKalle Valo 				     i);
806e705c121SKalle Valo 			break;
807e705c121SKalle Valo 		}
808e705c121SKalle Valo 
809e705c121SKalle Valo 		ret = iwl_pcie_load_section(trans, i, &image->sec[i]);
810e705c121SKalle Valo 		if (ret)
811e705c121SKalle Valo 			return ret;
812e705c121SKalle Valo 
813d6a2c5c7SSara Sharon 		/* Notify ucode of loaded section number and status */
814e705c121SKalle Valo 		val = iwl_read_direct32(trans, FH_UCODE_LOAD_STATUS);
815e705c121SKalle Valo 		val = val | (sec_num << shift_param);
816e705c121SKalle Valo 		iwl_write_direct32(trans, FH_UCODE_LOAD_STATUS, val);
817eda50cdeSSara Sharon 
818e705c121SKalle Valo 		sec_num = (sec_num << 1) | 0x1;
819e705c121SKalle Valo 	}
820e705c121SKalle Valo 
821e705c121SKalle Valo 	*first_ucode_section = last_read_idx;
822e705c121SKalle Valo 
8232aabdbdcSEmmanuel Grumbach 	iwl_enable_interrupts(trans);
8242aabdbdcSEmmanuel Grumbach 
825286ca8ebSLuca Coelho 	if (trans->trans_cfg->use_tfh) {
826e705c121SKalle Valo 		if (cpu == 1)
827d6a2c5c7SSara Sharon 			iwl_write_prph(trans, UREG_UCODE_LOAD_STATUS,
828d6a2c5c7SSara Sharon 				       0xFFFF);
829e705c121SKalle Valo 		else
830d6a2c5c7SSara Sharon 			iwl_write_prph(trans, UREG_UCODE_LOAD_STATUS,
831d6a2c5c7SSara Sharon 				       0xFFFFFFFF);
832d6a2c5c7SSara Sharon 	} else {
833d6a2c5c7SSara Sharon 		if (cpu == 1)
834d6a2c5c7SSara Sharon 			iwl_write_direct32(trans, FH_UCODE_LOAD_STATUS,
835d6a2c5c7SSara Sharon 					   0xFFFF);
836d6a2c5c7SSara Sharon 		else
837d6a2c5c7SSara Sharon 			iwl_write_direct32(trans, FH_UCODE_LOAD_STATUS,
838d6a2c5c7SSara Sharon 					   0xFFFFFFFF);
839d6a2c5c7SSara Sharon 	}
840e705c121SKalle Valo 
841e705c121SKalle Valo 	return 0;
842e705c121SKalle Valo }
843e705c121SKalle Valo 
844e705c121SKalle Valo static int iwl_pcie_load_cpu_sections(struct iwl_trans *trans,
845e705c121SKalle Valo 				      const struct fw_img *image,
846e705c121SKalle Valo 				      int cpu,
847e705c121SKalle Valo 				      int *first_ucode_section)
848e705c121SKalle Valo {
849e705c121SKalle Valo 	int i, ret = 0;
850e705c121SKalle Valo 	u32 last_read_idx = 0;
851e705c121SKalle Valo 
8523ce4a038SKirtika Ruchandani 	if (cpu == 1)
853e705c121SKalle Valo 		*first_ucode_section = 0;
8543ce4a038SKirtika Ruchandani 	else
855e705c121SKalle Valo 		(*first_ucode_section)++;
856e705c121SKalle Valo 
857eef187a7SSara Sharon 	for (i = *first_ucode_section; i < image->num_sec; i++) {
858e705c121SKalle Valo 		last_read_idx = i;
859e705c121SKalle Valo 
860e705c121SKalle Valo 		/*
861e705c121SKalle Valo 		 * CPU1_CPU2_SEPARATOR_SECTION delimiter - separate between
862e705c121SKalle Valo 		 * CPU1 to CPU2.
863e705c121SKalle Valo 		 * PAGING_SEPARATOR_SECTION delimiter - separate between
864e705c121SKalle Valo 		 * CPU2 non paged to CPU2 paging sec.
865e705c121SKalle Valo 		 */
866e705c121SKalle Valo 		if (!image->sec[i].data ||
867e705c121SKalle Valo 		    image->sec[i].offset == CPU1_CPU2_SEPARATOR_SECTION ||
868e705c121SKalle Valo 		    image->sec[i].offset == PAGING_SEPARATOR_SECTION) {
869e705c121SKalle Valo 			IWL_DEBUG_FW(trans,
870e705c121SKalle Valo 				     "Break since Data not valid or Empty section, sec = %d\n",
871e705c121SKalle Valo 				     i);
872e705c121SKalle Valo 			break;
873e705c121SKalle Valo 		}
874e705c121SKalle Valo 
875e705c121SKalle Valo 		ret = iwl_pcie_load_section(trans, i, &image->sec[i]);
876e705c121SKalle Valo 		if (ret)
877e705c121SKalle Valo 			return ret;
878e705c121SKalle Valo 	}
879e705c121SKalle Valo 
880e705c121SKalle Valo 	*first_ucode_section = last_read_idx;
881e705c121SKalle Valo 
882e705c121SKalle Valo 	return 0;
883e705c121SKalle Valo }
884e705c121SKalle Valo 
885593fae3eSShahar S Matityahu static void iwl_pcie_apply_destination_ini(struct iwl_trans *trans)
886593fae3eSShahar S Matityahu {
887593fae3eSShahar S Matityahu 	enum iwl_fw_ini_allocation_id alloc_id = IWL_FW_INI_ALLOCATION_ID_DBGC1;
888593fae3eSShahar S Matityahu 	struct iwl_fw_ini_allocation_tlv *fw_mon_cfg =
889593fae3eSShahar S Matityahu 		&trans->dbg.fw_mon_cfg[alloc_id];
890593fae3eSShahar S Matityahu 	struct iwl_dram_data *frag;
891593fae3eSShahar S Matityahu 
892593fae3eSShahar S Matityahu 	if (!iwl_trans_dbg_ini_valid(trans))
893593fae3eSShahar S Matityahu 		return;
894593fae3eSShahar S Matityahu 
895593fae3eSShahar S Matityahu 	if (le32_to_cpu(fw_mon_cfg->buf_location) ==
896593fae3eSShahar S Matityahu 	    IWL_FW_INI_LOCATION_SRAM_PATH) {
897593fae3eSShahar S Matityahu 		IWL_DEBUG_FW(trans, "WRT: Applying SMEM buffer destination\n");
898593fae3eSShahar S Matityahu 		/* set sram monitor by enabling bit 7 */
899593fae3eSShahar S Matityahu 		iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
900593fae3eSShahar S Matityahu 			    CSR_HW_IF_CONFIG_REG_BIT_MONITOR_SRAM);
901593fae3eSShahar S Matityahu 
902593fae3eSShahar S Matityahu 		return;
903593fae3eSShahar S Matityahu 	}
904593fae3eSShahar S Matityahu 
905593fae3eSShahar S Matityahu 	if (le32_to_cpu(fw_mon_cfg->buf_location) !=
906593fae3eSShahar S Matityahu 	    IWL_FW_INI_LOCATION_DRAM_PATH ||
907593fae3eSShahar S Matityahu 	    !trans->dbg.fw_mon_ini[alloc_id].num_frags)
908593fae3eSShahar S Matityahu 		return;
909593fae3eSShahar S Matityahu 
910593fae3eSShahar S Matityahu 	frag = &trans->dbg.fw_mon_ini[alloc_id].frags[0];
911593fae3eSShahar S Matityahu 
912593fae3eSShahar S Matityahu 	IWL_DEBUG_FW(trans, "WRT: Applying DRAM destination (alloc_id=%u)\n",
913593fae3eSShahar S Matityahu 		     alloc_id);
914593fae3eSShahar S Matityahu 
915593fae3eSShahar S Matityahu 	iwl_write_umac_prph(trans, MON_BUFF_BASE_ADDR_VER2,
916593fae3eSShahar S Matityahu 			    frag->physical >> MON_BUFF_SHIFT_VER2);
917593fae3eSShahar S Matityahu 	iwl_write_umac_prph(trans, MON_BUFF_END_ADDR_VER2,
918593fae3eSShahar S Matityahu 			    (frag->physical + frag->size - 256) >>
919593fae3eSShahar S Matityahu 			    MON_BUFF_SHIFT_VER2);
920593fae3eSShahar S Matityahu }
921593fae3eSShahar S Matityahu 
922c9be849dSLiad Kaufman void iwl_pcie_apply_destination(struct iwl_trans *trans)
923e705c121SKalle Valo {
92491c28b83SShahar S Matityahu 	const struct iwl_fw_dbg_dest_tlv_v1 *dest = trans->dbg.dest_tlv;
92569f0e505SShahar S Matityahu 	const struct iwl_dram_data *fw_mon = &trans->dbg.fw_mon;
926e705c121SKalle Valo 	int i;
927e705c121SKalle Valo 
928a1af4c48SShahar S Matityahu 	if (iwl_trans_dbg_ini_valid(trans)) {
929593fae3eSShahar S Matityahu 		iwl_pcie_apply_destination_ini(trans);
9307a14c23dSSara Sharon 		return;
9317a14c23dSSara Sharon 	}
9327a14c23dSSara Sharon 
933e705c121SKalle Valo 	IWL_INFO(trans, "Applying debug destination %s\n",
934e705c121SKalle Valo 		 get_fw_dbg_mode_string(dest->monitor_mode));
935e705c121SKalle Valo 
936e705c121SKalle Valo 	if (dest->monitor_mode == EXTERNAL_MODE)
937e705c121SKalle Valo 		iwl_pcie_alloc_fw_monitor(trans, dest->size_power);
938e705c121SKalle Valo 	else
939e705c121SKalle Valo 		IWL_WARN(trans, "PCI should have external buffer debug\n");
940e705c121SKalle Valo 
94191c28b83SShahar S Matityahu 	for (i = 0; i < trans->dbg.n_dest_reg; i++) {
942e705c121SKalle Valo 		u32 addr = le32_to_cpu(dest->reg_ops[i].addr);
943e705c121SKalle Valo 		u32 val = le32_to_cpu(dest->reg_ops[i].val);
944e705c121SKalle Valo 
945e705c121SKalle Valo 		switch (dest->reg_ops[i].op) {
946e705c121SKalle Valo 		case CSR_ASSIGN:
947e705c121SKalle Valo 			iwl_write32(trans, addr, val);
948e705c121SKalle Valo 			break;
949e705c121SKalle Valo 		case CSR_SETBIT:
950e705c121SKalle Valo 			iwl_set_bit(trans, addr, BIT(val));
951e705c121SKalle Valo 			break;
952e705c121SKalle Valo 		case CSR_CLEARBIT:
953e705c121SKalle Valo 			iwl_clear_bit(trans, addr, BIT(val));
954e705c121SKalle Valo 			break;
955e705c121SKalle Valo 		case PRPH_ASSIGN:
956e705c121SKalle Valo 			iwl_write_prph(trans, addr, val);
957e705c121SKalle Valo 			break;
958e705c121SKalle Valo 		case PRPH_SETBIT:
959e705c121SKalle Valo 			iwl_set_bits_prph(trans, addr, BIT(val));
960e705c121SKalle Valo 			break;
961e705c121SKalle Valo 		case PRPH_CLEARBIT:
962e705c121SKalle Valo 			iwl_clear_bits_prph(trans, addr, BIT(val));
963e705c121SKalle Valo 			break;
964e705c121SKalle Valo 		case PRPH_BLOCKBIT:
965e705c121SKalle Valo 			if (iwl_read_prph(trans, addr) & BIT(val)) {
966e705c121SKalle Valo 				IWL_ERR(trans,
967e705c121SKalle Valo 					"BIT(%u) in address 0x%x is 1, stopping FW configuration\n",
968e705c121SKalle Valo 					val, addr);
969e705c121SKalle Valo 				goto monitor;
970e705c121SKalle Valo 			}
971e705c121SKalle Valo 			break;
972e705c121SKalle Valo 		default:
973e705c121SKalle Valo 			IWL_ERR(trans, "FW debug - unknown OP %d\n",
974e705c121SKalle Valo 				dest->reg_ops[i].op);
975e705c121SKalle Valo 			break;
976e705c121SKalle Valo 		}
977e705c121SKalle Valo 	}
978e705c121SKalle Valo 
979e705c121SKalle Valo monitor:
98069f0e505SShahar S Matityahu 	if (dest->monitor_mode == EXTERNAL_MODE && fw_mon->size) {
981e705c121SKalle Valo 		iwl_write_prph(trans, le32_to_cpu(dest->base_reg),
98269f0e505SShahar S Matityahu 			       fw_mon->physical >> dest->base_shift);
983286ca8ebSLuca Coelho 		if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_8000)
984e705c121SKalle Valo 			iwl_write_prph(trans, le32_to_cpu(dest->end_reg),
98569f0e505SShahar S Matityahu 				       (fw_mon->physical + fw_mon->size -
98669f0e505SShahar S Matityahu 					256) >> dest->end_shift);
98762d7476dSEmmanuel Grumbach 		else
98862d7476dSEmmanuel Grumbach 			iwl_write_prph(trans, le32_to_cpu(dest->end_reg),
98969f0e505SShahar S Matityahu 				       (fw_mon->physical + fw_mon->size) >>
99062d7476dSEmmanuel Grumbach 				       dest->end_shift);
991e705c121SKalle Valo 	}
992e705c121SKalle Valo }
993e705c121SKalle Valo 
994e705c121SKalle Valo static int iwl_pcie_load_given_ucode(struct iwl_trans *trans,
995e705c121SKalle Valo 				const struct fw_img *image)
996e705c121SKalle Valo {
997e705c121SKalle Valo 	int ret = 0;
998e705c121SKalle Valo 	int first_ucode_section;
999e705c121SKalle Valo 
1000e705c121SKalle Valo 	IWL_DEBUG_FW(trans, "working with %s CPU\n",
1001e705c121SKalle Valo 		     image->is_dual_cpus ? "Dual" : "Single");
1002e705c121SKalle Valo 
1003e705c121SKalle Valo 	/* load to FW the binary non secured sections of CPU1 */
1004e705c121SKalle Valo 	ret = iwl_pcie_load_cpu_sections(trans, image, 1, &first_ucode_section);
1005e705c121SKalle Valo 	if (ret)
1006e705c121SKalle Valo 		return ret;
1007e705c121SKalle Valo 
1008e705c121SKalle Valo 	if (image->is_dual_cpus) {
1009e705c121SKalle Valo 		/* set CPU2 header address */
1010e705c121SKalle Valo 		iwl_write_prph(trans,
1011e705c121SKalle Valo 			       LMPM_SECURE_UCODE_LOAD_CPU2_HDR_ADDR,
1012e705c121SKalle Valo 			       LMPM_SECURE_CPU2_HDR_MEM_SPACE);
1013e705c121SKalle Valo 
1014e705c121SKalle Valo 		/* load to FW the binary sections of CPU2 */
1015e705c121SKalle Valo 		ret = iwl_pcie_load_cpu_sections(trans, image, 2,
1016e705c121SKalle Valo 						 &first_ucode_section);
1017e705c121SKalle Valo 		if (ret)
1018e705c121SKalle Valo 			return ret;
1019e705c121SKalle Valo 	}
1020e705c121SKalle Valo 
10219efab1adSEmmanuel Grumbach 	if (iwl_pcie_dbg_on(trans))
1022e705c121SKalle Valo 		iwl_pcie_apply_destination(trans);
1023e705c121SKalle Valo 
10242aabdbdcSEmmanuel Grumbach 	iwl_enable_interrupts(trans);
10252aabdbdcSEmmanuel Grumbach 
1026e705c121SKalle Valo 	/* release CPU reset */
1027e705c121SKalle Valo 	iwl_write32(trans, CSR_RESET, 0);
1028e705c121SKalle Valo 
1029e705c121SKalle Valo 	return 0;
1030e705c121SKalle Valo }
1031e705c121SKalle Valo 
1032e705c121SKalle Valo static int iwl_pcie_load_given_ucode_8000(struct iwl_trans *trans,
1033e705c121SKalle Valo 					  const struct fw_img *image)
1034e705c121SKalle Valo {
1035e705c121SKalle Valo 	int ret = 0;
1036e705c121SKalle Valo 	int first_ucode_section;
1037e705c121SKalle Valo 
1038e705c121SKalle Valo 	IWL_DEBUG_FW(trans, "working with %s CPU\n",
1039e705c121SKalle Valo 		     image->is_dual_cpus ? "Dual" : "Single");
1040e705c121SKalle Valo 
10417a14c23dSSara Sharon 	if (iwl_pcie_dbg_on(trans))
1042e705c121SKalle Valo 		iwl_pcie_apply_destination(trans);
1043e705c121SKalle Valo 
104482ea7966SSara Sharon 	IWL_DEBUG_POWER(trans, "Original WFPM value = 0x%08X\n",
104582ea7966SSara Sharon 			iwl_read_prph(trans, WFPM_GP2));
104682ea7966SSara Sharon 
104782ea7966SSara Sharon 	/*
104882ea7966SSara Sharon 	 * Set default value. On resume reading the values that were
104982ea7966SSara Sharon 	 * zeored can provide debug data on the resume flow.
105082ea7966SSara Sharon 	 * This is for debugging only and has no functional impact.
105182ea7966SSara Sharon 	 */
105282ea7966SSara Sharon 	iwl_write_prph(trans, WFPM_GP2, 0x01010101);
105382ea7966SSara Sharon 
1054e705c121SKalle Valo 	/* configure the ucode to be ready to get the secured image */
1055e705c121SKalle Valo 	/* release CPU reset */
1056e705c121SKalle Valo 	iwl_write_prph(trans, RELEASE_CPU_RESET, RELEASE_CPU_RESET_BIT);
1057e705c121SKalle Valo 
1058e705c121SKalle Valo 	/* load to FW the binary Secured sections of CPU1 */
1059e705c121SKalle Valo 	ret = iwl_pcie_load_cpu_sections_8000(trans, image, 1,
1060e705c121SKalle Valo 					      &first_ucode_section);
1061e705c121SKalle Valo 	if (ret)
1062e705c121SKalle Valo 		return ret;
1063e705c121SKalle Valo 
1064e705c121SKalle Valo 	/* load to FW the binary sections of CPU2 */
1065e705c121SKalle Valo 	return iwl_pcie_load_cpu_sections_8000(trans, image, 2,
1066e705c121SKalle Valo 					       &first_ucode_section);
1067e705c121SKalle Valo }
1068e705c121SKalle Valo 
10699ad8fd0bSJohannes Berg bool iwl_pcie_check_hw_rf_kill(struct iwl_trans *trans)
1070727c02dfSSara Sharon {
1071326477e4SJohannes Berg 	struct iwl_trans_pcie *trans_pcie =  IWL_TRANS_GET_PCIE_TRANS(trans);
1072727c02dfSSara Sharon 	bool hw_rfkill = iwl_is_rfkill_set(trans);
1073326477e4SJohannes Berg 	bool prev = test_bit(STATUS_RFKILL_OPMODE, &trans->status);
1074326477e4SJohannes Berg 	bool report;
1075727c02dfSSara Sharon 
1076326477e4SJohannes Berg 	if (hw_rfkill) {
1077326477e4SJohannes Berg 		set_bit(STATUS_RFKILL_HW, &trans->status);
1078326477e4SJohannes Berg 		set_bit(STATUS_RFKILL_OPMODE, &trans->status);
1079326477e4SJohannes Berg 	} else {
1080326477e4SJohannes Berg 		clear_bit(STATUS_RFKILL_HW, &trans->status);
1081326477e4SJohannes Berg 		if (trans_pcie->opmode_down)
1082326477e4SJohannes Berg 			clear_bit(STATUS_RFKILL_OPMODE, &trans->status);
1083326477e4SJohannes Berg 	}
1084727c02dfSSara Sharon 
1085326477e4SJohannes Berg 	report = test_bit(STATUS_RFKILL_OPMODE, &trans->status);
1086326477e4SJohannes Berg 
1087326477e4SJohannes Berg 	if (prev != report)
1088326477e4SJohannes Berg 		iwl_trans_pcie_rf_kill(trans, report);
1089727c02dfSSara Sharon 
1090727c02dfSSara Sharon 	return hw_rfkill;
1091727c02dfSSara Sharon }
1092727c02dfSSara Sharon 
10937ca00409SHaim Dreyfuss struct iwl_causes_list {
10947ca00409SHaim Dreyfuss 	u32 cause_num;
10957ca00409SHaim Dreyfuss 	u32 mask_reg;
10967ca00409SHaim Dreyfuss 	u8 addr;
10977ca00409SHaim Dreyfuss };
10987ca00409SHaim Dreyfuss 
10997ca00409SHaim Dreyfuss static struct iwl_causes_list causes_list[] = {
11007ca00409SHaim Dreyfuss 	{MSIX_FH_INT_CAUSES_D2S_CH0_NUM,	CSR_MSIX_FH_INT_MASK_AD, 0},
11017ca00409SHaim Dreyfuss 	{MSIX_FH_INT_CAUSES_D2S_CH1_NUM,	CSR_MSIX_FH_INT_MASK_AD, 0x1},
11027ca00409SHaim Dreyfuss 	{MSIX_FH_INT_CAUSES_S2D,		CSR_MSIX_FH_INT_MASK_AD, 0x3},
11037ca00409SHaim Dreyfuss 	{MSIX_FH_INT_CAUSES_FH_ERR,		CSR_MSIX_FH_INT_MASK_AD, 0x5},
11047ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_ALIVE,		CSR_MSIX_HW_INT_MASK_AD, 0x10},
11057ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_WAKEUP,		CSR_MSIX_HW_INT_MASK_AD, 0x11},
1106ff911dcaSShaul Triebitz 	{MSIX_HW_INT_CAUSES_REG_IML,            CSR_MSIX_HW_INT_MASK_AD, 0x12},
11077ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_CT_KILL,	CSR_MSIX_HW_INT_MASK_AD, 0x16},
11087ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_RF_KILL,	CSR_MSIX_HW_INT_MASK_AD, 0x17},
11097ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_PERIODIC,	CSR_MSIX_HW_INT_MASK_AD, 0x18},
11107ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_SW_ERR,		CSR_MSIX_HW_INT_MASK_AD, 0x29},
11117ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_SCD,		CSR_MSIX_HW_INT_MASK_AD, 0x2A},
11127ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_FH_TX,		CSR_MSIX_HW_INT_MASK_AD, 0x2B},
11137ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_HW_ERR,		CSR_MSIX_HW_INT_MASK_AD, 0x2D},
11147ca00409SHaim Dreyfuss 	{MSIX_HW_INT_CAUSES_REG_HAP,		CSR_MSIX_HW_INT_MASK_AD, 0x2E},
11157ca00409SHaim Dreyfuss };
11167ca00409SHaim Dreyfuss 
11177ca00409SHaim Dreyfuss static void iwl_pcie_map_non_rx_causes(struct iwl_trans *trans)
11187ca00409SHaim Dreyfuss {
11197ca00409SHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie =  IWL_TRANS_GET_PCIE_TRANS(trans);
11207ca00409SHaim Dreyfuss 	int val = trans_pcie->def_irq | MSIX_NON_AUTO_CLEAR_CAUSE;
11213681021fSJohannes Berg 	int i, arr_size = ARRAY_SIZE(causes_list);
11223681021fSJohannes Berg 	struct iwl_causes_list *causes = causes_list;
11237ca00409SHaim Dreyfuss 
11247ca00409SHaim Dreyfuss 	/*
11257ca00409SHaim Dreyfuss 	 * Access all non RX causes and map them to the default irq.
11267ca00409SHaim Dreyfuss 	 * In case we are missing at least one interrupt vector,
11277ca00409SHaim Dreyfuss 	 * the first interrupt vector will serve non-RX and FBQ causes.
11287ca00409SHaim Dreyfuss 	 */
11299b58419eSGolan Ben Ami 	for (i = 0; i < arr_size; i++) {
11309b58419eSGolan Ben Ami 		iwl_write8(trans, CSR_MSIX_IVAR(causes[i].addr), val);
11319b58419eSGolan Ben Ami 		iwl_clear_bit(trans, causes[i].mask_reg,
11329b58419eSGolan Ben Ami 			      causes[i].cause_num);
11337ca00409SHaim Dreyfuss 	}
11347ca00409SHaim Dreyfuss }
11357ca00409SHaim Dreyfuss 
11367ca00409SHaim Dreyfuss static void iwl_pcie_map_rx_causes(struct iwl_trans *trans)
11377ca00409SHaim Dreyfuss {
11387ca00409SHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
11397ca00409SHaim Dreyfuss 	u32 offset =
11407ca00409SHaim Dreyfuss 		trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_FIRST_RSS ? 1 : 0;
11417ca00409SHaim Dreyfuss 	u32 val, idx;
11427ca00409SHaim Dreyfuss 
11437ca00409SHaim Dreyfuss 	/*
11447ca00409SHaim Dreyfuss 	 * The first RX queue - fallback queue, which is designated for
11457ca00409SHaim Dreyfuss 	 * management frame, command responses etc, is always mapped to the
11467ca00409SHaim Dreyfuss 	 * first interrupt vector. The other RX queues are mapped to
11477ca00409SHaim Dreyfuss 	 * the other (N - 2) interrupt vectors.
11487ca00409SHaim Dreyfuss 	 */
11497ca00409SHaim Dreyfuss 	val = BIT(MSIX_FH_INT_CAUSES_Q(0));
11507ca00409SHaim Dreyfuss 	for (idx = 1; idx < trans->num_rx_queues; idx++) {
11517ca00409SHaim Dreyfuss 		iwl_write8(trans, CSR_MSIX_RX_IVAR(idx),
11527ca00409SHaim Dreyfuss 			   MSIX_FH_INT_CAUSES_Q(idx - offset));
11537ca00409SHaim Dreyfuss 		val |= BIT(MSIX_FH_INT_CAUSES_Q(idx));
11547ca00409SHaim Dreyfuss 	}
11557ca00409SHaim Dreyfuss 	iwl_write32(trans, CSR_MSIX_FH_INT_MASK_AD, ~val);
11567ca00409SHaim Dreyfuss 
11577ca00409SHaim Dreyfuss 	val = MSIX_FH_INT_CAUSES_Q(0);
11587ca00409SHaim Dreyfuss 	if (trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_NON_RX)
11597ca00409SHaim Dreyfuss 		val |= MSIX_NON_AUTO_CLEAR_CAUSE;
11607ca00409SHaim Dreyfuss 	iwl_write8(trans, CSR_MSIX_RX_IVAR(0), val);
11617ca00409SHaim Dreyfuss 
11627ca00409SHaim Dreyfuss 	if (trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_FIRST_RSS)
11637ca00409SHaim Dreyfuss 		iwl_write8(trans, CSR_MSIX_RX_IVAR(1), val);
11647ca00409SHaim Dreyfuss }
11657ca00409SHaim Dreyfuss 
116677c09bc8SSara Sharon void iwl_pcie_conf_msix_hw(struct iwl_trans_pcie *trans_pcie)
11677ca00409SHaim Dreyfuss {
11687ca00409SHaim Dreyfuss 	struct iwl_trans *trans = trans_pcie->trans;
11697ca00409SHaim Dreyfuss 
11707ca00409SHaim Dreyfuss 	if (!trans_pcie->msix_enabled) {
1171286ca8ebSLuca Coelho 		if (trans->trans_cfg->mq_rx_supported &&
1172d7270d61SHaim Dreyfuss 		    test_bit(STATUS_DEVICE_ENABLED, &trans->status))
1173ea695b7cSShaul Triebitz 			iwl_write_umac_prph(trans, UREG_CHICK,
11747ca00409SHaim Dreyfuss 					    UREG_CHICK_MSI_ENABLE);
11757ca00409SHaim Dreyfuss 		return;
11767ca00409SHaim Dreyfuss 	}
1177d7270d61SHaim Dreyfuss 	/*
1178d7270d61SHaim Dreyfuss 	 * The IVAR table needs to be configured again after reset,
1179d7270d61SHaim Dreyfuss 	 * but if the device is disabled, we can't write to
1180d7270d61SHaim Dreyfuss 	 * prph.
1181d7270d61SHaim Dreyfuss 	 */
1182d7270d61SHaim Dreyfuss 	if (test_bit(STATUS_DEVICE_ENABLED, &trans->status))
1183ea695b7cSShaul Triebitz 		iwl_write_umac_prph(trans, UREG_CHICK, UREG_CHICK_MSIX_ENABLE);
11847ca00409SHaim Dreyfuss 
11857ca00409SHaim Dreyfuss 	/*
11867ca00409SHaim Dreyfuss 	 * Each cause from the causes list above and the RX causes is
11877ca00409SHaim Dreyfuss 	 * represented as a byte in the IVAR table. The first nibble
11887ca00409SHaim Dreyfuss 	 * represents the bound interrupt vector of the cause, the second
11897ca00409SHaim Dreyfuss 	 * represents no auto clear for this cause. This will be set if its
11907ca00409SHaim Dreyfuss 	 * interrupt vector is bound to serve other causes.
11917ca00409SHaim Dreyfuss 	 */
11927ca00409SHaim Dreyfuss 	iwl_pcie_map_rx_causes(trans);
11937ca00409SHaim Dreyfuss 
11947ca00409SHaim Dreyfuss 	iwl_pcie_map_non_rx_causes(trans);
119583730058SHaim Dreyfuss }
11967ca00409SHaim Dreyfuss 
119783730058SHaim Dreyfuss static void iwl_pcie_init_msix(struct iwl_trans_pcie *trans_pcie)
119883730058SHaim Dreyfuss {
119983730058SHaim Dreyfuss 	struct iwl_trans *trans = trans_pcie->trans;
120083730058SHaim Dreyfuss 
120183730058SHaim Dreyfuss 	iwl_pcie_conf_msix_hw(trans_pcie);
120283730058SHaim Dreyfuss 
120383730058SHaim Dreyfuss 	if (!trans_pcie->msix_enabled)
120483730058SHaim Dreyfuss 		return;
120583730058SHaim Dreyfuss 
120683730058SHaim Dreyfuss 	trans_pcie->fh_init_mask = ~iwl_read32(trans, CSR_MSIX_FH_INT_MASK_AD);
12077ca00409SHaim Dreyfuss 	trans_pcie->fh_mask = trans_pcie->fh_init_mask;
120883730058SHaim Dreyfuss 	trans_pcie->hw_init_mask = ~iwl_read32(trans, CSR_MSIX_HW_INT_MASK_AD);
12097ca00409SHaim Dreyfuss 	trans_pcie->hw_mask = trans_pcie->hw_init_mask;
12107ca00409SHaim Dreyfuss }
12117ca00409SHaim Dreyfuss 
1212bab3cb92SEmmanuel Grumbach static void _iwl_trans_pcie_stop_device(struct iwl_trans *trans)
1213e705c121SKalle Valo {
1214e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1215e705c121SKalle Valo 
1216e705c121SKalle Valo 	lockdep_assert_held(&trans_pcie->mutex);
1217e705c121SKalle Valo 
1218e705c121SKalle Valo 	if (trans_pcie->is_down)
1219e705c121SKalle Valo 		return;
1220e705c121SKalle Valo 
1221e705c121SKalle Valo 	trans_pcie->is_down = true;
1222e705c121SKalle Valo 
1223e705c121SKalle Valo 	/* tell the device to stop sending interrupts */
1224e705c121SKalle Valo 	iwl_disable_interrupts(trans);
1225e705c121SKalle Valo 
1226e705c121SKalle Valo 	/* device going down, Stop using ICT table */
1227e705c121SKalle Valo 	iwl_pcie_disable_ict(trans);
1228e705c121SKalle Valo 
1229e705c121SKalle Valo 	/*
1230e705c121SKalle Valo 	 * If a HW restart happens during firmware loading,
1231e705c121SKalle Valo 	 * then the firmware loading might call this function
1232e705c121SKalle Valo 	 * and later it might be called again due to the
1233e705c121SKalle Valo 	 * restart. So don't process again if the device is
1234e705c121SKalle Valo 	 * already dead.
1235e705c121SKalle Valo 	 */
1236e705c121SKalle Valo 	if (test_and_clear_bit(STATUS_DEVICE_ENABLED, &trans->status)) {
1237a6bd005fSEmmanuel Grumbach 		IWL_DEBUG_INFO(trans,
1238a6bd005fSEmmanuel Grumbach 			       "DEVICE_ENABLED bit was set and is now cleared\n");
1239e705c121SKalle Valo 		iwl_pcie_tx_stop(trans);
1240e705c121SKalle Valo 		iwl_pcie_rx_stop(trans);
1241e705c121SKalle Valo 
1242e705c121SKalle Valo 		/* Power-down device's busmaster DMA clocks */
1243e705c121SKalle Valo 		if (!trans->cfg->apmg_not_supported) {
1244e705c121SKalle Valo 			iwl_write_prph(trans, APMG_CLK_DIS_REG,
1245e705c121SKalle Valo 				       APMG_CLK_VAL_DMA_CLK_RQT);
1246e705c121SKalle Valo 			udelay(5);
1247e705c121SKalle Valo 		}
1248e705c121SKalle Valo 	}
1249e705c121SKalle Valo 
1250e705c121SKalle Valo 	/* Make sure (redundant) we've released our request to stay awake */
1251e705c121SKalle Valo 	iwl_clear_bit(trans, CSR_GP_CNTRL,
12526dece0e9SLuca Coelho 		      CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1253e705c121SKalle Valo 
1254e705c121SKalle Valo 	/* Stop the device, and put it in low power state */
1255e705c121SKalle Valo 	iwl_pcie_apm_stop(trans, false);
1256e705c121SKalle Valo 
1257870c2a11SGolan Ben Ami 	iwl_trans_pcie_sw_reset(trans);
1258e705c121SKalle Valo 
1259e705c121SKalle Valo 	/*
1260f4a1f04aSGolan Ben Ami 	 * Upon stop, the IVAR table gets erased, so msi-x won't
1261f4a1f04aSGolan Ben Ami 	 * work. This causes a bug in RF-KILL flows, since the interrupt
1262f4a1f04aSGolan Ben Ami 	 * that enables radio won't fire on the correct irq, and the
1263f4a1f04aSGolan Ben Ami 	 * driver won't be able to handle the interrupt.
1264f4a1f04aSGolan Ben Ami 	 * Configure the IVAR table again after reset.
1265f4a1f04aSGolan Ben Ami 	 */
1266f4a1f04aSGolan Ben Ami 	iwl_pcie_conf_msix_hw(trans_pcie);
1267f4a1f04aSGolan Ben Ami 
1268f4a1f04aSGolan Ben Ami 	/*
1269e705c121SKalle Valo 	 * Upon stop, the APM issues an interrupt if HW RF kill is set.
1270e705c121SKalle Valo 	 * This is a bug in certain verions of the hardware.
1271e705c121SKalle Valo 	 * Certain devices also keep sending HW RF kill interrupt all
1272e705c121SKalle Valo 	 * the time, unless the interrupt is ACKed even if the interrupt
1273e705c121SKalle Valo 	 * should be masked. Re-ACK all the interrupts here.
1274e705c121SKalle Valo 	 */
1275e705c121SKalle Valo 	iwl_disable_interrupts(trans);
1276e705c121SKalle Valo 
1277e705c121SKalle Valo 	/* clear all status bits */
1278e705c121SKalle Valo 	clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
1279e705c121SKalle Valo 	clear_bit(STATUS_INT_ENABLED, &trans->status);
1280e705c121SKalle Valo 	clear_bit(STATUS_TPOWER_PMI, &trans->status);
1281e705c121SKalle Valo 
1282e705c121SKalle Valo 	/*
1283e705c121SKalle Valo 	 * Even if we stop the HW, we still want the RF kill
1284e705c121SKalle Valo 	 * interrupt
1285e705c121SKalle Valo 	 */
1286e705c121SKalle Valo 	iwl_enable_rfkill_int(trans);
1287e705c121SKalle Valo 
1288a6bd005fSEmmanuel Grumbach 	/* re-take ownership to prevent other users from stealing the device */
1289e705c121SKalle Valo 	iwl_pcie_prepare_card_hw(trans);
1290e705c121SKalle Valo }
1291e705c121SKalle Valo 
1292eda50cdeSSara Sharon void iwl_pcie_synchronize_irqs(struct iwl_trans *trans)
12932e5d4a8fSHaim Dreyfuss {
12942e5d4a8fSHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
12952e5d4a8fSHaim Dreyfuss 
12962e5d4a8fSHaim Dreyfuss 	if (trans_pcie->msix_enabled) {
12972e5d4a8fSHaim Dreyfuss 		int i;
12982e5d4a8fSHaim Dreyfuss 
1299496d83caSHaim Dreyfuss 		for (i = 0; i < trans_pcie->alloc_vecs; i++)
13002e5d4a8fSHaim Dreyfuss 			synchronize_irq(trans_pcie->msix_entries[i].vector);
13012e5d4a8fSHaim Dreyfuss 	} else {
13022e5d4a8fSHaim Dreyfuss 		synchronize_irq(trans_pcie->pci_dev->irq);
13032e5d4a8fSHaim Dreyfuss 	}
13042e5d4a8fSHaim Dreyfuss }
13052e5d4a8fSHaim Dreyfuss 
1306a6bd005fSEmmanuel Grumbach static int iwl_trans_pcie_start_fw(struct iwl_trans *trans,
1307a6bd005fSEmmanuel Grumbach 				   const struct fw_img *fw, bool run_in_rfkill)
1308a6bd005fSEmmanuel Grumbach {
1309a6bd005fSEmmanuel Grumbach 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1310a6bd005fSEmmanuel Grumbach 	bool hw_rfkill;
1311a6bd005fSEmmanuel Grumbach 	int ret;
1312a6bd005fSEmmanuel Grumbach 
1313a6bd005fSEmmanuel Grumbach 	/* This may fail if AMT took ownership of the device */
1314a6bd005fSEmmanuel Grumbach 	if (iwl_pcie_prepare_card_hw(trans)) {
1315a6bd005fSEmmanuel Grumbach 		IWL_WARN(trans, "Exit HW not ready\n");
1316a6bd005fSEmmanuel Grumbach 		ret = -EIO;
1317a6bd005fSEmmanuel Grumbach 		goto out;
1318a6bd005fSEmmanuel Grumbach 	}
1319a6bd005fSEmmanuel Grumbach 
1320a6bd005fSEmmanuel Grumbach 	iwl_enable_rfkill_int(trans);
1321a6bd005fSEmmanuel Grumbach 
1322a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_INT, 0xFFFFFFFF);
1323a6bd005fSEmmanuel Grumbach 
1324a6bd005fSEmmanuel Grumbach 	/*
1325a6bd005fSEmmanuel Grumbach 	 * We enabled the RF-Kill interrupt and the handler may very
1326a6bd005fSEmmanuel Grumbach 	 * well be running. Disable the interrupts to make sure no other
1327a6bd005fSEmmanuel Grumbach 	 * interrupt can be fired.
1328a6bd005fSEmmanuel Grumbach 	 */
1329a6bd005fSEmmanuel Grumbach 	iwl_disable_interrupts(trans);
1330a6bd005fSEmmanuel Grumbach 
1331a6bd005fSEmmanuel Grumbach 	/* Make sure it finished running */
13322e5d4a8fSHaim Dreyfuss 	iwl_pcie_synchronize_irqs(trans);
1333a6bd005fSEmmanuel Grumbach 
1334a6bd005fSEmmanuel Grumbach 	mutex_lock(&trans_pcie->mutex);
1335a6bd005fSEmmanuel Grumbach 
1336a6bd005fSEmmanuel Grumbach 	/* If platform's RF_KILL switch is NOT set to KILL */
13379ad8fd0bSJohannes Berg 	hw_rfkill = iwl_pcie_check_hw_rf_kill(trans);
1338a6bd005fSEmmanuel Grumbach 	if (hw_rfkill && !run_in_rfkill) {
1339a6bd005fSEmmanuel Grumbach 		ret = -ERFKILL;
1340a6bd005fSEmmanuel Grumbach 		goto out;
1341a6bd005fSEmmanuel Grumbach 	}
1342a6bd005fSEmmanuel Grumbach 
1343a6bd005fSEmmanuel Grumbach 	/* Someone called stop_device, don't try to start_fw */
1344a6bd005fSEmmanuel Grumbach 	if (trans_pcie->is_down) {
1345a6bd005fSEmmanuel Grumbach 		IWL_WARN(trans,
1346a6bd005fSEmmanuel Grumbach 			 "Can't start_fw since the HW hasn't been started\n");
134720aa99bbSAnton Protopopov 		ret = -EIO;
1348a6bd005fSEmmanuel Grumbach 		goto out;
1349a6bd005fSEmmanuel Grumbach 	}
1350a6bd005fSEmmanuel Grumbach 
1351a6bd005fSEmmanuel Grumbach 	/* make sure rfkill handshake bits are cleared */
1352a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1353a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR,
1354a6bd005fSEmmanuel Grumbach 		    CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1355a6bd005fSEmmanuel Grumbach 
1356a6bd005fSEmmanuel Grumbach 	/* clear (again), then enable host interrupts */
1357a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_INT, 0xFFFFFFFF);
1358a6bd005fSEmmanuel Grumbach 
1359a6bd005fSEmmanuel Grumbach 	ret = iwl_pcie_nic_init(trans);
1360a6bd005fSEmmanuel Grumbach 	if (ret) {
1361a6bd005fSEmmanuel Grumbach 		IWL_ERR(trans, "Unable to init nic\n");
1362a6bd005fSEmmanuel Grumbach 		goto out;
1363a6bd005fSEmmanuel Grumbach 	}
1364a6bd005fSEmmanuel Grumbach 
1365a6bd005fSEmmanuel Grumbach 	/*
1366a6bd005fSEmmanuel Grumbach 	 * Now, we load the firmware and don't want to be interrupted, even
1367a6bd005fSEmmanuel Grumbach 	 * by the RF-Kill interrupt (hence mask all the interrupt besides the
1368a6bd005fSEmmanuel Grumbach 	 * FH_TX interrupt which is needed to load the firmware). If the
1369a6bd005fSEmmanuel Grumbach 	 * RF-Kill switch is toggled, we will find out after having loaded
1370a6bd005fSEmmanuel Grumbach 	 * the firmware and return the proper value to the caller.
1371a6bd005fSEmmanuel Grumbach 	 */
1372a6bd005fSEmmanuel Grumbach 	iwl_enable_fw_load_int(trans);
1373a6bd005fSEmmanuel Grumbach 
1374a6bd005fSEmmanuel Grumbach 	/* really make sure rfkill handshake bits are cleared */
1375a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1376a6bd005fSEmmanuel Grumbach 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1377a6bd005fSEmmanuel Grumbach 
1378a6bd005fSEmmanuel Grumbach 	/* Load the given image to the HW */
1379286ca8ebSLuca Coelho 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_8000)
1380a6bd005fSEmmanuel Grumbach 		ret = iwl_pcie_load_given_ucode_8000(trans, fw);
1381a6bd005fSEmmanuel Grumbach 	else
1382a6bd005fSEmmanuel Grumbach 		ret = iwl_pcie_load_given_ucode(trans, fw);
1383a6bd005fSEmmanuel Grumbach 
1384a6bd005fSEmmanuel Grumbach 	/* re-check RF-Kill state since we may have missed the interrupt */
13859ad8fd0bSJohannes Berg 	hw_rfkill = iwl_pcie_check_hw_rf_kill(trans);
1386a6bd005fSEmmanuel Grumbach 	if (hw_rfkill && !run_in_rfkill)
1387a6bd005fSEmmanuel Grumbach 		ret = -ERFKILL;
1388a6bd005fSEmmanuel Grumbach 
1389a6bd005fSEmmanuel Grumbach out:
1390a6bd005fSEmmanuel Grumbach 	mutex_unlock(&trans_pcie->mutex);
1391a6bd005fSEmmanuel Grumbach 	return ret;
1392a6bd005fSEmmanuel Grumbach }
1393a6bd005fSEmmanuel Grumbach 
1394a6bd005fSEmmanuel Grumbach static void iwl_trans_pcie_fw_alive(struct iwl_trans *trans, u32 scd_addr)
1395a6bd005fSEmmanuel Grumbach {
1396a6bd005fSEmmanuel Grumbach 	iwl_pcie_reset_ict(trans);
1397a6bd005fSEmmanuel Grumbach 	iwl_pcie_tx_start(trans, scd_addr);
1398a6bd005fSEmmanuel Grumbach }
1399a6bd005fSEmmanuel Grumbach 
1400326477e4SJohannes Berg void iwl_trans_pcie_handle_stop_rfkill(struct iwl_trans *trans,
1401326477e4SJohannes Berg 				       bool was_in_rfkill)
1402326477e4SJohannes Berg {
1403326477e4SJohannes Berg 	bool hw_rfkill;
1404326477e4SJohannes Berg 
1405326477e4SJohannes Berg 	/*
1406326477e4SJohannes Berg 	 * Check again since the RF kill state may have changed while
1407326477e4SJohannes Berg 	 * all the interrupts were disabled, in this case we couldn't
1408326477e4SJohannes Berg 	 * receive the RF kill interrupt and update the state in the
1409326477e4SJohannes Berg 	 * op_mode.
1410326477e4SJohannes Berg 	 * Don't call the op_mode if the rkfill state hasn't changed.
1411326477e4SJohannes Berg 	 * This allows the op_mode to call stop_device from the rfkill
1412326477e4SJohannes Berg 	 * notification without endless recursion. Under very rare
1413326477e4SJohannes Berg 	 * circumstances, we might have a small recursion if the rfkill
1414326477e4SJohannes Berg 	 * state changed exactly now while we were called from stop_device.
1415326477e4SJohannes Berg 	 * This is very unlikely but can happen and is supported.
1416326477e4SJohannes Berg 	 */
1417326477e4SJohannes Berg 	hw_rfkill = iwl_is_rfkill_set(trans);
1418326477e4SJohannes Berg 	if (hw_rfkill) {
1419326477e4SJohannes Berg 		set_bit(STATUS_RFKILL_HW, &trans->status);
1420326477e4SJohannes Berg 		set_bit(STATUS_RFKILL_OPMODE, &trans->status);
1421326477e4SJohannes Berg 	} else {
1422326477e4SJohannes Berg 		clear_bit(STATUS_RFKILL_HW, &trans->status);
1423326477e4SJohannes Berg 		clear_bit(STATUS_RFKILL_OPMODE, &trans->status);
1424326477e4SJohannes Berg 	}
1425326477e4SJohannes Berg 	if (hw_rfkill != was_in_rfkill)
1426326477e4SJohannes Berg 		iwl_trans_pcie_rf_kill(trans, hw_rfkill);
1427326477e4SJohannes Berg }
1428326477e4SJohannes Berg 
1429bab3cb92SEmmanuel Grumbach static void iwl_trans_pcie_stop_device(struct iwl_trans *trans)
1430e705c121SKalle Valo {
1431e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1432326477e4SJohannes Berg 	bool was_in_rfkill;
1433e705c121SKalle Valo 
1434e705c121SKalle Valo 	mutex_lock(&trans_pcie->mutex);
1435326477e4SJohannes Berg 	trans_pcie->opmode_down = true;
1436326477e4SJohannes Berg 	was_in_rfkill = test_bit(STATUS_RFKILL_OPMODE, &trans->status);
1437bab3cb92SEmmanuel Grumbach 	_iwl_trans_pcie_stop_device(trans);
1438326477e4SJohannes Berg 	iwl_trans_pcie_handle_stop_rfkill(trans, was_in_rfkill);
1439e705c121SKalle Valo 	mutex_unlock(&trans_pcie->mutex);
1440e705c121SKalle Valo }
1441e705c121SKalle Valo 
1442e705c121SKalle Valo void iwl_trans_pcie_rf_kill(struct iwl_trans *trans, bool state)
1443e705c121SKalle Valo {
1444e705c121SKalle Valo 	struct iwl_trans_pcie __maybe_unused *trans_pcie =
1445e705c121SKalle Valo 		IWL_TRANS_GET_PCIE_TRANS(trans);
1446e705c121SKalle Valo 
1447e705c121SKalle Valo 	lockdep_assert_held(&trans_pcie->mutex);
1448e705c121SKalle Valo 
1449326477e4SJohannes Berg 	IWL_WARN(trans, "reporting RF_KILL (radio %s)\n",
1450326477e4SJohannes Berg 		 state ? "disabled" : "enabled");
145177c09bc8SSara Sharon 	if (iwl_op_mode_hw_rf_kill(trans->op_mode, state)) {
1452286ca8ebSLuca Coelho 		if (trans->trans_cfg->gen2)
1453bab3cb92SEmmanuel Grumbach 			_iwl_trans_pcie_gen2_stop_device(trans);
145477c09bc8SSara Sharon 		else
1455bab3cb92SEmmanuel Grumbach 			_iwl_trans_pcie_stop_device(trans);
1456e705c121SKalle Valo 	}
145777c09bc8SSara Sharon }
1458e705c121SKalle Valo 
1459e5f3f215SHaim Dreyfuss void iwl_pcie_d3_complete_suspend(struct iwl_trans *trans,
1460e5f3f215SHaim Dreyfuss 				  bool test, bool reset)
1461e705c121SKalle Valo {
1462e705c121SKalle Valo 	iwl_disable_interrupts(trans);
1463e705c121SKalle Valo 
1464e705c121SKalle Valo 	/*
1465e705c121SKalle Valo 	 * in testing mode, the host stays awake and the
1466e705c121SKalle Valo 	 * hardware won't be reset (not even partially)
1467e705c121SKalle Valo 	 */
1468e705c121SKalle Valo 	if (test)
1469e705c121SKalle Valo 		return;
1470e705c121SKalle Valo 
1471e705c121SKalle Valo 	iwl_pcie_disable_ict(trans);
1472e705c121SKalle Valo 
14732e5d4a8fSHaim Dreyfuss 	iwl_pcie_synchronize_irqs(trans);
1474e705c121SKalle Valo 
1475e705c121SKalle Valo 	iwl_clear_bit(trans, CSR_GP_CNTRL,
14766dece0e9SLuca Coelho 		      CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
14776dece0e9SLuca Coelho 	iwl_clear_bit(trans, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
1478e705c121SKalle Valo 
147923ae6128SMatti Gottlieb 	if (reset) {
1480e705c121SKalle Valo 		/*
1481e705c121SKalle Valo 		 * reset TX queues -- some of their registers reset during S3
1482e705c121SKalle Valo 		 * so if we don't reset everything here the D3 image would try
1483e705c121SKalle Valo 		 * to execute some invalid memory upon resume
1484e705c121SKalle Valo 		 */
1485e705c121SKalle Valo 		iwl_trans_pcie_tx_reset(trans);
1486e705c121SKalle Valo 	}
1487e705c121SKalle Valo 
1488e705c121SKalle Valo 	iwl_pcie_set_pwr(trans, true);
1489e705c121SKalle Valo }
1490e705c121SKalle Valo 
1491e5f3f215SHaim Dreyfuss static int iwl_trans_pcie_d3_suspend(struct iwl_trans *trans, bool test,
1492e5f3f215SHaim Dreyfuss 				     bool reset)
1493e5f3f215SHaim Dreyfuss {
1494e5f3f215SHaim Dreyfuss 	int ret;
1495e5f3f215SHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie =  IWL_TRANS_GET_PCIE_TRANS(trans);
1496e5f3f215SHaim Dreyfuss 
1497771db3a1SHaim Dreyfuss 	if (!reset)
1498e5f3f215SHaim Dreyfuss 		/* Enable persistence mode to avoid reset */
1499e5f3f215SHaim Dreyfuss 		iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
1500e5f3f215SHaim Dreyfuss 			    CSR_HW_IF_CONFIG_REG_PERSIST_MODE);
1501e5f3f215SHaim Dreyfuss 
1502e5f3f215SHaim Dreyfuss 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) {
1503e5f3f215SHaim Dreyfuss 		iwl_write_umac_prph(trans, UREG_DOORBELL_TO_ISR6,
1504e5f3f215SHaim Dreyfuss 				    UREG_DOORBELL_TO_ISR6_SUSPEND);
1505e5f3f215SHaim Dreyfuss 
1506e5f3f215SHaim Dreyfuss 		ret = wait_event_timeout(trans_pcie->sx_waitq,
1507e5f3f215SHaim Dreyfuss 					 trans_pcie->sx_complete, 2 * HZ);
1508e5f3f215SHaim Dreyfuss 		/*
1509e5f3f215SHaim Dreyfuss 		 * Invalidate it toward resume.
1510e5f3f215SHaim Dreyfuss 		 */
1511e5f3f215SHaim Dreyfuss 		trans_pcie->sx_complete = false;
1512e5f3f215SHaim Dreyfuss 
1513e5f3f215SHaim Dreyfuss 		if (!ret) {
1514e5f3f215SHaim Dreyfuss 			IWL_ERR(trans, "Timeout entering D3\n");
1515e5f3f215SHaim Dreyfuss 			return -ETIMEDOUT;
1516e5f3f215SHaim Dreyfuss 		}
1517e5f3f215SHaim Dreyfuss 	}
1518e5f3f215SHaim Dreyfuss 	iwl_pcie_d3_complete_suspend(trans, test, reset);
1519e5f3f215SHaim Dreyfuss 
1520e5f3f215SHaim Dreyfuss 	return 0;
1521e5f3f215SHaim Dreyfuss }
1522e5f3f215SHaim Dreyfuss 
1523e705c121SKalle Valo static int iwl_trans_pcie_d3_resume(struct iwl_trans *trans,
1524e705c121SKalle Valo 				    enum iwl_d3_status *status,
152523ae6128SMatti Gottlieb 				    bool test,  bool reset)
1526e705c121SKalle Valo {
1527d7270d61SHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie =  IWL_TRANS_GET_PCIE_TRANS(trans);
1528e705c121SKalle Valo 	u32 val;
1529e705c121SKalle Valo 	int ret;
1530e705c121SKalle Valo 
1531e705c121SKalle Valo 	if (test) {
1532e705c121SKalle Valo 		iwl_enable_interrupts(trans);
1533e705c121SKalle Valo 		*status = IWL_D3_STATUS_ALIVE;
1534e5f3f215SHaim Dreyfuss 		goto out;
1535e705c121SKalle Valo 	}
1536e705c121SKalle Valo 
1537a8cbb46fSGolan Ben Ami 	iwl_set_bit(trans, CSR_GP_CNTRL,
15386dece0e9SLuca Coelho 		    CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1539e705c121SKalle Valo 
15407d34a7d7SLuca Coelho 	ret = iwl_finish_nic_init(trans, trans->trans_cfg);
1541c96b5eecSJohannes Berg 	if (ret)
1542e705c121SKalle Valo 		return ret;
1543e705c121SKalle Valo 
1544f98ad635SEmmanuel Grumbach 	/*
1545f98ad635SEmmanuel Grumbach 	 * Reconfigure IVAR table in case of MSIX or reset ict table in
1546f98ad635SEmmanuel Grumbach 	 * MSI mode since HW reset erased it.
1547f98ad635SEmmanuel Grumbach 	 * Also enables interrupts - none will happen as
1548f98ad635SEmmanuel Grumbach 	 * the device doesn't know we're waking it up, only when
1549f98ad635SEmmanuel Grumbach 	 * the opmode actually tells it after this call.
1550f98ad635SEmmanuel Grumbach 	 */
1551f98ad635SEmmanuel Grumbach 	iwl_pcie_conf_msix_hw(trans_pcie);
1552f98ad635SEmmanuel Grumbach 	if (!trans_pcie->msix_enabled)
1553f98ad635SEmmanuel Grumbach 		iwl_pcie_reset_ict(trans);
1554f98ad635SEmmanuel Grumbach 	iwl_enable_interrupts(trans);
1555f98ad635SEmmanuel Grumbach 
1556e705c121SKalle Valo 	iwl_pcie_set_pwr(trans, false);
1557e705c121SKalle Valo 
155823ae6128SMatti Gottlieb 	if (!reset) {
1559e705c121SKalle Valo 		iwl_clear_bit(trans, CSR_GP_CNTRL,
15606dece0e9SLuca Coelho 			      CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1561e705c121SKalle Valo 	} else {
1562e705c121SKalle Valo 		iwl_trans_pcie_tx_reset(trans);
1563e705c121SKalle Valo 
1564e705c121SKalle Valo 		ret = iwl_pcie_rx_init(trans);
1565e705c121SKalle Valo 		if (ret) {
1566e705c121SKalle Valo 			IWL_ERR(trans,
1567e705c121SKalle Valo 				"Failed to resume the device (RX reset)\n");
1568e705c121SKalle Valo 			return ret;
1569e705c121SKalle Valo 		}
1570e705c121SKalle Valo 	}
1571e705c121SKalle Valo 
157282ea7966SSara Sharon 	IWL_DEBUG_POWER(trans, "WFPM value upon resume = 0x%08X\n",
1573ea695b7cSShaul Triebitz 			iwl_read_umac_prph(trans, WFPM_GP2));
157482ea7966SSara Sharon 
1575e705c121SKalle Valo 	val = iwl_read32(trans, CSR_RESET);
1576e705c121SKalle Valo 	if (val & CSR_RESET_REG_FLAG_NEVO_RESET)
1577e705c121SKalle Valo 		*status = IWL_D3_STATUS_RESET;
1578e705c121SKalle Valo 	else
1579e705c121SKalle Valo 		*status = IWL_D3_STATUS_ALIVE;
1580e705c121SKalle Valo 
1581e5f3f215SHaim Dreyfuss out:
1582e5f3f215SHaim Dreyfuss 	if (*status == IWL_D3_STATUS_ALIVE &&
1583e5f3f215SHaim Dreyfuss 	    trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) {
1584e5f3f215SHaim Dreyfuss 		trans_pcie->sx_complete = false;
1585e5f3f215SHaim Dreyfuss 		iwl_write_umac_prph(trans, UREG_DOORBELL_TO_ISR6,
1586e5f3f215SHaim Dreyfuss 				    UREG_DOORBELL_TO_ISR6_RESUME);
1587e5f3f215SHaim Dreyfuss 
1588e5f3f215SHaim Dreyfuss 		ret = wait_event_timeout(trans_pcie->sx_waitq,
1589e5f3f215SHaim Dreyfuss 					 trans_pcie->sx_complete, 2 * HZ);
1590e5f3f215SHaim Dreyfuss 		/*
1591e5f3f215SHaim Dreyfuss 		 * Invalidate it toward next suspend.
1592e5f3f215SHaim Dreyfuss 		 */
1593e5f3f215SHaim Dreyfuss 		trans_pcie->sx_complete = false;
1594e5f3f215SHaim Dreyfuss 
1595e5f3f215SHaim Dreyfuss 		if (!ret) {
1596e5f3f215SHaim Dreyfuss 			IWL_ERR(trans, "Timeout exiting D3\n");
1597e5f3f215SHaim Dreyfuss 			return -ETIMEDOUT;
1598e5f3f215SHaim Dreyfuss 		}
1599e5f3f215SHaim Dreyfuss 	}
1600e705c121SKalle Valo 	return 0;
1601e705c121SKalle Valo }
1602e705c121SKalle Valo 
16030c18714aSLuca Coelho static void
16040c18714aSLuca Coelho iwl_pcie_set_interrupt_capa(struct pci_dev *pdev,
16050c18714aSLuca Coelho 			    struct iwl_trans *trans,
16060c18714aSLuca Coelho 			    const struct iwl_cfg_trans_params *cfg_trans)
16072e5d4a8fSHaim Dreyfuss {
16082e5d4a8fSHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1609ab1068d6SHao Wei Tee 	int max_irqs, num_irqs, i, ret;
16102e5d4a8fSHaim Dreyfuss 	u16 pci_cmd;
16110cd38f4dSMordechay Goodstein 	u32 max_rx_queues = IWL_MAX_RX_HW_QUEUES;
16122e5d4a8fSHaim Dreyfuss 
16130c18714aSLuca Coelho 	if (!cfg_trans->mq_rx_supported)
161406f4b081SSara Sharon 		goto enable_msi;
161506f4b081SSara Sharon 
16160cd38f4dSMordechay Goodstein 	if (cfg_trans->device_family <= IWL_DEVICE_FAMILY_9000)
16170cd38f4dSMordechay Goodstein 		max_rx_queues = IWL_9000_MAX_RX_HW_QUEUES;
16180cd38f4dSMordechay Goodstein 
16190cd38f4dSMordechay Goodstein 	max_irqs = min_t(u32, num_online_cpus() + 2, max_rx_queues);
162006f4b081SSara Sharon 	for (i = 0; i < max_irqs; i++)
16212e5d4a8fSHaim Dreyfuss 		trans_pcie->msix_entries[i].entry = i;
16222e5d4a8fSHaim Dreyfuss 
162306f4b081SSara Sharon 	num_irqs = pci_enable_msix_range(pdev, trans_pcie->msix_entries,
16242e5d4a8fSHaim Dreyfuss 					 MSIX_MIN_INTERRUPT_VECTORS,
162506f4b081SSara Sharon 					 max_irqs);
162606f4b081SSara Sharon 	if (num_irqs < 0) {
1627496d83caSHaim Dreyfuss 		IWL_DEBUG_INFO(trans,
162806f4b081SSara Sharon 			       "Failed to enable msi-x mode (ret %d). Moving to msi mode.\n",
162906f4b081SSara Sharon 			       num_irqs);
163006f4b081SSara Sharon 		goto enable_msi;
1631496d83caSHaim Dreyfuss 	}
163206f4b081SSara Sharon 	trans_pcie->def_irq = (num_irqs == max_irqs) ? num_irqs - 1 : 0;
1633496d83caSHaim Dreyfuss 
16342e5d4a8fSHaim Dreyfuss 	IWL_DEBUG_INFO(trans,
163506f4b081SSara Sharon 		       "MSI-X enabled. %d interrupt vectors were allocated\n",
163606f4b081SSara Sharon 		       num_irqs);
163706f4b081SSara Sharon 
1638496d83caSHaim Dreyfuss 	/*
163906f4b081SSara Sharon 	 * In case the OS provides fewer interrupts than requested, different
164006f4b081SSara Sharon 	 * causes will share the same interrupt vector as follows:
1641496d83caSHaim Dreyfuss 	 * One interrupt less: non rx causes shared with FBQ.
1642496d83caSHaim Dreyfuss 	 * Two interrupts less: non rx causes shared with FBQ and RSS.
1643496d83caSHaim Dreyfuss 	 * More than two interrupts: we will use fewer RSS queues.
1644496d83caSHaim Dreyfuss 	 */
1645ab1068d6SHao Wei Tee 	if (num_irqs <= max_irqs - 2) {
164606f4b081SSara Sharon 		trans_pcie->trans->num_rx_queues = num_irqs + 1;
1647496d83caSHaim Dreyfuss 		trans_pcie->shared_vec_mask = IWL_SHARED_IRQ_NON_RX |
1648496d83caSHaim Dreyfuss 			IWL_SHARED_IRQ_FIRST_RSS;
1649ab1068d6SHao Wei Tee 	} else if (num_irqs == max_irqs - 1) {
165006f4b081SSara Sharon 		trans_pcie->trans->num_rx_queues = num_irqs;
1651496d83caSHaim Dreyfuss 		trans_pcie->shared_vec_mask = IWL_SHARED_IRQ_NON_RX;
1652496d83caSHaim Dreyfuss 	} else {
165306f4b081SSara Sharon 		trans_pcie->trans->num_rx_queues = num_irqs - 1;
1654496d83caSHaim Dreyfuss 	}
1655ab1068d6SHao Wei Tee 	WARN_ON(trans_pcie->trans->num_rx_queues > IWL_MAX_RX_HW_QUEUES);
16562e5d4a8fSHaim Dreyfuss 
165706f4b081SSara Sharon 	trans_pcie->alloc_vecs = num_irqs;
1658496d83caSHaim Dreyfuss 	trans_pcie->msix_enabled = true;
16592e5d4a8fSHaim Dreyfuss 	return;
16602e5d4a8fSHaim Dreyfuss 
166106f4b081SSara Sharon enable_msi:
166206f4b081SSara Sharon 	ret = pci_enable_msi(pdev);
166306f4b081SSara Sharon 	if (ret) {
166406f4b081SSara Sharon 		dev_err(&pdev->dev, "pci_enable_msi failed - %d\n", ret);
16652e5d4a8fSHaim Dreyfuss 		/* enable rfkill interrupt: hw bug w/a */
16662e5d4a8fSHaim Dreyfuss 		pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
16672e5d4a8fSHaim Dreyfuss 		if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
16682e5d4a8fSHaim Dreyfuss 			pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
16692e5d4a8fSHaim Dreyfuss 			pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
16702e5d4a8fSHaim Dreyfuss 		}
16712e5d4a8fSHaim Dreyfuss 	}
16722e5d4a8fSHaim Dreyfuss }
16732e5d4a8fSHaim Dreyfuss 
16747c8d91ebSHaim Dreyfuss static void iwl_pcie_irq_set_affinity(struct iwl_trans *trans)
16757c8d91ebSHaim Dreyfuss {
16767c8d91ebSHaim Dreyfuss 	int iter_rx_q, i, ret, cpu, offset;
16777c8d91ebSHaim Dreyfuss 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
16787c8d91ebSHaim Dreyfuss 
16797c8d91ebSHaim Dreyfuss 	i = trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_FIRST_RSS ? 0 : 1;
16807c8d91ebSHaim Dreyfuss 	iter_rx_q = trans_pcie->trans->num_rx_queues - 1 + i;
16817c8d91ebSHaim Dreyfuss 	offset = 1 + i;
16827c8d91ebSHaim Dreyfuss 	for (; i < iter_rx_q ; i++) {
16837c8d91ebSHaim Dreyfuss 		/*
16847c8d91ebSHaim Dreyfuss 		 * Get the cpu prior to the place to search
16857c8d91ebSHaim Dreyfuss 		 * (i.e. return will be > i - 1).
16867c8d91ebSHaim Dreyfuss 		 */
16877c8d91ebSHaim Dreyfuss 		cpu = cpumask_next(i - offset, cpu_online_mask);
16887c8d91ebSHaim Dreyfuss 		cpumask_set_cpu(cpu, &trans_pcie->affinity_mask[i]);
16897c8d91ebSHaim Dreyfuss 		ret = irq_set_affinity_hint(trans_pcie->msix_entries[i].vector,
16907c8d91ebSHaim Dreyfuss 					    &trans_pcie->affinity_mask[i]);
16917c8d91ebSHaim Dreyfuss 		if (ret)
16927c8d91ebSHaim Dreyfuss 			IWL_ERR(trans_pcie->trans,
16937c8d91ebSHaim Dreyfuss 				"Failed to set affinity mask for IRQ %d\n",
16947c8d91ebSHaim Dreyfuss 				i);
16957c8d91ebSHaim Dreyfuss 	}
16967c8d91ebSHaim Dreyfuss }
16977c8d91ebSHaim Dreyfuss 
16982e5d4a8fSHaim Dreyfuss static int iwl_pcie_init_msix_handler(struct pci_dev *pdev,
16992e5d4a8fSHaim Dreyfuss 				      struct iwl_trans_pcie *trans_pcie)
17002e5d4a8fSHaim Dreyfuss {
1701496d83caSHaim Dreyfuss 	int i;
17022e5d4a8fSHaim Dreyfuss 
1703496d83caSHaim Dreyfuss 	for (i = 0; i < trans_pcie->alloc_vecs; i++) {
17042e5d4a8fSHaim Dreyfuss 		int ret;
17055a41a86cSSharon Dvir 		struct msix_entry *msix_entry;
170664fa3affSSharon Dvir 		const char *qname = queue_name(&pdev->dev, trans_pcie, i);
170764fa3affSSharon Dvir 
170864fa3affSSharon Dvir 		if (!qname)
170964fa3affSSharon Dvir 			return -ENOMEM;
17102e5d4a8fSHaim Dreyfuss 
17115a41a86cSSharon Dvir 		msix_entry = &trans_pcie->msix_entries[i];
17125a41a86cSSharon Dvir 		ret = devm_request_threaded_irq(&pdev->dev,
17135a41a86cSSharon Dvir 						msix_entry->vector,
17142e5d4a8fSHaim Dreyfuss 						iwl_pcie_msix_isr,
1715496d83caSHaim Dreyfuss 						(i == trans_pcie->def_irq) ?
17162e5d4a8fSHaim Dreyfuss 						iwl_pcie_irq_msix_handler :
17172e5d4a8fSHaim Dreyfuss 						iwl_pcie_irq_rx_msix_handler,
17182e5d4a8fSHaim Dreyfuss 						IRQF_SHARED,
171964fa3affSSharon Dvir 						qname,
17205a41a86cSSharon Dvir 						msix_entry);
17212e5d4a8fSHaim Dreyfuss 		if (ret) {
17222e5d4a8fSHaim Dreyfuss 			IWL_ERR(trans_pcie->trans,
17232e5d4a8fSHaim Dreyfuss 				"Error allocating IRQ %d\n", i);
17245a41a86cSSharon Dvir 
17252e5d4a8fSHaim Dreyfuss 			return ret;
17262e5d4a8fSHaim Dreyfuss 		}
17272e5d4a8fSHaim Dreyfuss 	}
17287c8d91ebSHaim Dreyfuss 	iwl_pcie_irq_set_affinity(trans_pcie->trans);
17292e5d4a8fSHaim Dreyfuss 
17302e5d4a8fSHaim Dreyfuss 	return 0;
17312e5d4a8fSHaim Dreyfuss }
17322e5d4a8fSHaim Dreyfuss 
173344f61b5cSShahar S Matityahu static int iwl_trans_pcie_clear_persistence_bit(struct iwl_trans *trans)
173444f61b5cSShahar S Matityahu {
173544f61b5cSShahar S Matityahu 	u32 hpm, wprot;
173644f61b5cSShahar S Matityahu 
1737286ca8ebSLuca Coelho 	switch (trans->trans_cfg->device_family) {
173844f61b5cSShahar S Matityahu 	case IWL_DEVICE_FAMILY_9000:
173944f61b5cSShahar S Matityahu 		wprot = PREG_PRPH_WPROT_9000;
174044f61b5cSShahar S Matityahu 		break;
174144f61b5cSShahar S Matityahu 	case IWL_DEVICE_FAMILY_22000:
174244f61b5cSShahar S Matityahu 		wprot = PREG_PRPH_WPROT_22000;
174344f61b5cSShahar S Matityahu 		break;
174444f61b5cSShahar S Matityahu 	default:
174544f61b5cSShahar S Matityahu 		return 0;
174644f61b5cSShahar S Matityahu 	}
174744f61b5cSShahar S Matityahu 
174844f61b5cSShahar S Matityahu 	hpm = iwl_read_umac_prph_no_grab(trans, HPM_DEBUG);
174944f61b5cSShahar S Matityahu 	if (hpm != 0xa5a5a5a0 && (hpm & PERSISTENCE_BIT)) {
175044f61b5cSShahar S Matityahu 		u32 wprot_val = iwl_read_umac_prph_no_grab(trans, wprot);
175144f61b5cSShahar S Matityahu 
175244f61b5cSShahar S Matityahu 		if (wprot_val & PREG_WFPM_ACCESS) {
175344f61b5cSShahar S Matityahu 			IWL_ERR(trans,
175444f61b5cSShahar S Matityahu 				"Error, can not clear persistence bit\n");
175544f61b5cSShahar S Matityahu 			return -EPERM;
175644f61b5cSShahar S Matityahu 		}
175744f61b5cSShahar S Matityahu 		iwl_write_umac_prph_no_grab(trans, HPM_DEBUG,
175844f61b5cSShahar S Matityahu 					    hpm & ~PERSISTENCE_BIT);
175944f61b5cSShahar S Matityahu 	}
176044f61b5cSShahar S Matityahu 
176144f61b5cSShahar S Matityahu 	return 0;
176244f61b5cSShahar S Matityahu }
176344f61b5cSShahar S Matityahu 
17640df36b90SLuca Coelho static int iwl_pcie_gen2_force_power_gating(struct iwl_trans *trans)
17650df36b90SLuca Coelho {
17660df36b90SLuca Coelho 	int ret;
17670df36b90SLuca Coelho 
17680df36b90SLuca Coelho 	ret = iwl_finish_nic_init(trans, trans->trans_cfg);
17690df36b90SLuca Coelho 	if (ret < 0)
17700df36b90SLuca Coelho 		return ret;
17710df36b90SLuca Coelho 
17720df36b90SLuca Coelho 	iwl_set_bits_prph(trans, HPM_HIPM_GEN_CFG,
17730df36b90SLuca Coelho 			  HPM_HIPM_GEN_CFG_CR_FORCE_ACTIVE);
17740df36b90SLuca Coelho 	udelay(20);
17750df36b90SLuca Coelho 	iwl_set_bits_prph(trans, HPM_HIPM_GEN_CFG,
17760df36b90SLuca Coelho 			  HPM_HIPM_GEN_CFG_CR_PG_EN |
17770df36b90SLuca Coelho 			  HPM_HIPM_GEN_CFG_CR_SLP_EN);
17780df36b90SLuca Coelho 	udelay(20);
17790df36b90SLuca Coelho 	iwl_clear_bits_prph(trans, HPM_HIPM_GEN_CFG,
17800df36b90SLuca Coelho 			    HPM_HIPM_GEN_CFG_CR_FORCE_ACTIVE);
17810df36b90SLuca Coelho 
17820df36b90SLuca Coelho 	iwl_trans_pcie_sw_reset(trans);
17830df36b90SLuca Coelho 
17840df36b90SLuca Coelho 	return 0;
17850df36b90SLuca Coelho }
17860df36b90SLuca Coelho 
1787bab3cb92SEmmanuel Grumbach static int _iwl_trans_pcie_start_hw(struct iwl_trans *trans)
1788e705c121SKalle Valo {
1789e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1790e705c121SKalle Valo 	int err;
1791e705c121SKalle Valo 
1792e705c121SKalle Valo 	lockdep_assert_held(&trans_pcie->mutex);
1793e705c121SKalle Valo 
1794e705c121SKalle Valo 	err = iwl_pcie_prepare_card_hw(trans);
1795e705c121SKalle Valo 	if (err) {
1796e705c121SKalle Valo 		IWL_ERR(trans, "Error while preparing HW: %d\n", err);
1797e705c121SKalle Valo 		return err;
1798e705c121SKalle Valo 	}
1799e705c121SKalle Valo 
180044f61b5cSShahar S Matityahu 	err = iwl_trans_pcie_clear_persistence_bit(trans);
180144f61b5cSShahar S Matityahu 	if (err)
180244f61b5cSShahar S Matityahu 		return err;
18038954e1ebSShahar S Matityahu 
1804870c2a11SGolan Ben Ami 	iwl_trans_pcie_sw_reset(trans);
1805e705c121SKalle Valo 
18060df36b90SLuca Coelho 	if (trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_22000 &&
18077897dfa2SLuca Coelho 	    trans->trans_cfg->integrated) {
18080df36b90SLuca Coelho 		err = iwl_pcie_gen2_force_power_gating(trans);
18090df36b90SLuca Coelho 		if (err)
18100df36b90SLuca Coelho 			return err;
18110df36b90SLuca Coelho 	}
18120df36b90SLuca Coelho 
181352b6e168SEmmanuel Grumbach 	err = iwl_pcie_apm_init(trans);
181452b6e168SEmmanuel Grumbach 	if (err)
181552b6e168SEmmanuel Grumbach 		return err;
1816e705c121SKalle Valo 
18172e5d4a8fSHaim Dreyfuss 	iwl_pcie_init_msix(trans_pcie);
181883730058SHaim Dreyfuss 
1819e705c121SKalle Valo 	/* From now on, the op_mode will be kept updated about RF kill state */
1820e705c121SKalle Valo 	iwl_enable_rfkill_int(trans);
1821e705c121SKalle Valo 
1822326477e4SJohannes Berg 	trans_pcie->opmode_down = false;
1823326477e4SJohannes Berg 
1824e705c121SKalle Valo 	/* Set is_down to false here so that...*/
1825e705c121SKalle Valo 	trans_pcie->is_down = false;
1826e705c121SKalle Valo 
1827e705c121SKalle Valo 	/* ...rfkill can call stop_device and set it false if needed */
18289ad8fd0bSJohannes Berg 	iwl_pcie_check_hw_rf_kill(trans);
1829e705c121SKalle Valo 
1830e705c121SKalle Valo 	return 0;
1831e705c121SKalle Valo }
1832e705c121SKalle Valo 
1833bab3cb92SEmmanuel Grumbach static int iwl_trans_pcie_start_hw(struct iwl_trans *trans)
1834e705c121SKalle Valo {
1835e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1836e705c121SKalle Valo 	int ret;
1837e705c121SKalle Valo 
1838e705c121SKalle Valo 	mutex_lock(&trans_pcie->mutex);
1839bab3cb92SEmmanuel Grumbach 	ret = _iwl_trans_pcie_start_hw(trans);
1840e705c121SKalle Valo 	mutex_unlock(&trans_pcie->mutex);
1841e705c121SKalle Valo 
1842e705c121SKalle Valo 	return ret;
1843e705c121SKalle Valo }
1844e705c121SKalle Valo 
1845e705c121SKalle Valo static void iwl_trans_pcie_op_mode_leave(struct iwl_trans *trans)
1846e705c121SKalle Valo {
1847e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1848e705c121SKalle Valo 
1849e705c121SKalle Valo 	mutex_lock(&trans_pcie->mutex);
1850e705c121SKalle Valo 
1851e705c121SKalle Valo 	/* disable interrupts - don't enable HW RF kill interrupt */
1852e705c121SKalle Valo 	iwl_disable_interrupts(trans);
1853e705c121SKalle Valo 
1854e705c121SKalle Valo 	iwl_pcie_apm_stop(trans, true);
1855e705c121SKalle Valo 
1856e705c121SKalle Valo 	iwl_disable_interrupts(trans);
1857e705c121SKalle Valo 
1858e705c121SKalle Valo 	iwl_pcie_disable_ict(trans);
1859e705c121SKalle Valo 
1860e705c121SKalle Valo 	mutex_unlock(&trans_pcie->mutex);
1861e705c121SKalle Valo 
18622e5d4a8fSHaim Dreyfuss 	iwl_pcie_synchronize_irqs(trans);
1863e705c121SKalle Valo }
1864e705c121SKalle Valo 
1865e705c121SKalle Valo static void iwl_trans_pcie_write8(struct iwl_trans *trans, u32 ofs, u8 val)
1866e705c121SKalle Valo {
1867e705c121SKalle Valo 	writeb(val, IWL_TRANS_GET_PCIE_TRANS(trans)->hw_base + ofs);
1868e705c121SKalle Valo }
1869e705c121SKalle Valo 
1870e705c121SKalle Valo static void iwl_trans_pcie_write32(struct iwl_trans *trans, u32 ofs, u32 val)
1871e705c121SKalle Valo {
1872e705c121SKalle Valo 	writel(val, IWL_TRANS_GET_PCIE_TRANS(trans)->hw_base + ofs);
1873e705c121SKalle Valo }
1874e705c121SKalle Valo 
1875e705c121SKalle Valo static u32 iwl_trans_pcie_read32(struct iwl_trans *trans, u32 ofs)
1876e705c121SKalle Valo {
1877e705c121SKalle Valo 	return readl(IWL_TRANS_GET_PCIE_TRANS(trans)->hw_base + ofs);
1878e705c121SKalle Valo }
1879e705c121SKalle Valo 
188084fb372cSSara Sharon static u32 iwl_trans_pcie_prph_msk(struct iwl_trans *trans)
188184fb372cSSara Sharon {
18823681021fSJohannes Berg 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210)
188384fb372cSSara Sharon 		return 0x00FFFFFF;
188484fb372cSSara Sharon 	else
188584fb372cSSara Sharon 		return 0x000FFFFF;
188684fb372cSSara Sharon }
188784fb372cSSara Sharon 
1888e705c121SKalle Valo static u32 iwl_trans_pcie_read_prph(struct iwl_trans *trans, u32 reg)
1889e705c121SKalle Valo {
189084fb372cSSara Sharon 	u32 mask = iwl_trans_pcie_prph_msk(trans);
189184fb372cSSara Sharon 
1892e705c121SKalle Valo 	iwl_trans_pcie_write32(trans, HBUS_TARG_PRPH_RADDR,
189384fb372cSSara Sharon 			       ((reg & mask) | (3 << 24)));
1894e705c121SKalle Valo 	return iwl_trans_pcie_read32(trans, HBUS_TARG_PRPH_RDAT);
1895e705c121SKalle Valo }
1896e705c121SKalle Valo 
1897e705c121SKalle Valo static void iwl_trans_pcie_write_prph(struct iwl_trans *trans, u32 addr,
1898e705c121SKalle Valo 				      u32 val)
1899e705c121SKalle Valo {
190084fb372cSSara Sharon 	u32 mask = iwl_trans_pcie_prph_msk(trans);
190184fb372cSSara Sharon 
1902e705c121SKalle Valo 	iwl_trans_pcie_write32(trans, HBUS_TARG_PRPH_WADDR,
190384fb372cSSara Sharon 			       ((addr & mask) | (3 << 24)));
1904e705c121SKalle Valo 	iwl_trans_pcie_write32(trans, HBUS_TARG_PRPH_WDAT, val);
1905e705c121SKalle Valo }
1906e705c121SKalle Valo 
1907e705c121SKalle Valo static void iwl_trans_pcie_configure(struct iwl_trans *trans,
1908e705c121SKalle Valo 				     const struct iwl_trans_config *trans_cfg)
1909e705c121SKalle Valo {
1910e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1911e705c121SKalle Valo 
19124f4822b7SMordechay Goodstein 	trans->txqs.cmd.q_id = trans_cfg->cmd_queue;
19134f4822b7SMordechay Goodstein 	trans->txqs.cmd.fifo = trans_cfg->cmd_fifo;
19144f4822b7SMordechay Goodstein 	trans->txqs.cmd.wdg_timeout = trans_cfg->cmd_q_wdg_timeout;
191522852fadSMordechay Goodstein 	trans->txqs.page_offs = trans_cfg->cb_data_offs;
191622852fadSMordechay Goodstein 	trans->txqs.dev_cmd_offs = trans_cfg->cb_data_offs + sizeof(void *);
191722852fadSMordechay Goodstein 
1918e705c121SKalle Valo 	if (WARN_ON(trans_cfg->n_no_reclaim_cmds > MAX_NO_RECLAIM_CMDS))
1919e705c121SKalle Valo 		trans_pcie->n_no_reclaim_cmds = 0;
1920e705c121SKalle Valo 	else
1921e705c121SKalle Valo 		trans_pcie->n_no_reclaim_cmds = trans_cfg->n_no_reclaim_cmds;
1922e705c121SKalle Valo 	if (trans_pcie->n_no_reclaim_cmds)
1923e705c121SKalle Valo 		memcpy(trans_pcie->no_reclaim_cmds, trans_cfg->no_reclaim_cmds,
1924e705c121SKalle Valo 		       trans_pcie->n_no_reclaim_cmds * sizeof(u8));
1925e705c121SKalle Valo 
19266c4fbcbcSEmmanuel Grumbach 	trans_pcie->rx_buf_size = trans_cfg->rx_buf_size;
19276c4fbcbcSEmmanuel Grumbach 	trans_pcie->rx_page_order =
19286c4fbcbcSEmmanuel Grumbach 		iwl_trans_get_rb_size_order(trans_pcie->rx_buf_size);
192980084e35SJohannes Berg 	trans_pcie->rx_buf_bytes =
193080084e35SJohannes Berg 		iwl_trans_get_rb_size(trans_pcie->rx_buf_size);
1931cfdc20efSJohannes Berg 	trans_pcie->supported_dma_mask = DMA_BIT_MASK(12);
1932cfdc20efSJohannes Berg 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210)
1933cfdc20efSJohannes Berg 		trans_pcie->supported_dma_mask = DMA_BIT_MASK(11);
1934e705c121SKalle Valo 
19358e3b79f8SMordechay Goodstein 	trans->txqs.bc_table_dword = trans_cfg->bc_table_dword;
1936e705c121SKalle Valo 	trans_pcie->scd_set_active = trans_cfg->scd_set_active;
193741837ca9SEmmanuel Grumbach 	trans_pcie->sw_csum_tx = trans_cfg->sw_csum_tx;
1938e705c121SKalle Valo 
193939bdb17eSSharon Dvir 	trans->command_groups = trans_cfg->command_groups;
194039bdb17eSSharon Dvir 	trans->command_groups_size = trans_cfg->command_groups_size;
194139bdb17eSSharon Dvir 
1942e705c121SKalle Valo 	/* Initialize NAPI here - it should be before registering to mac80211
1943e705c121SKalle Valo 	 * in the opmode but after the HW struct is allocated.
1944e705c121SKalle Valo 	 * As this function may be called again in some corner cases don't
1945e705c121SKalle Valo 	 * do anything if NAPI was already initialized.
1946e705c121SKalle Valo 	 */
1947bce97731SSara Sharon 	if (trans_pcie->napi_dev.reg_state != NETREG_DUMMY)
1948e705c121SKalle Valo 		init_dummy_netdev(&trans_pcie->napi_dev);
1949e705c121SKalle Valo }
1950e705c121SKalle Valo 
1951e705c121SKalle Valo void iwl_trans_pcie_free(struct iwl_trans *trans)
1952e705c121SKalle Valo {
1953e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
19546eb5e529SEmmanuel Grumbach 	int i;
1955e705c121SKalle Valo 
19562e5d4a8fSHaim Dreyfuss 	iwl_pcie_synchronize_irqs(trans);
1957e705c121SKalle Valo 
1958286ca8ebSLuca Coelho 	if (trans->trans_cfg->gen2)
19590cd1ad2dSMordechay Goodstein 		iwl_txq_gen2_tx_free(trans);
196013a3a390SSara Sharon 	else
1961e705c121SKalle Valo 		iwl_pcie_tx_free(trans);
1962e705c121SKalle Valo 	iwl_pcie_rx_free(trans);
1963e705c121SKalle Valo 
196410a54d81SLuca Coelho 	if (trans_pcie->rba.alloc_wq) {
196510a54d81SLuca Coelho 		destroy_workqueue(trans_pcie->rba.alloc_wq);
196610a54d81SLuca Coelho 		trans_pcie->rba.alloc_wq = NULL;
196710a54d81SLuca Coelho 	}
196810a54d81SLuca Coelho 
19692e5d4a8fSHaim Dreyfuss 	if (trans_pcie->msix_enabled) {
19707c8d91ebSHaim Dreyfuss 		for (i = 0; i < trans_pcie->alloc_vecs; i++) {
19717c8d91ebSHaim Dreyfuss 			irq_set_affinity_hint(
19727c8d91ebSHaim Dreyfuss 				trans_pcie->msix_entries[i].vector,
19737c8d91ebSHaim Dreyfuss 				NULL);
19747c8d91ebSHaim Dreyfuss 		}
19752e5d4a8fSHaim Dreyfuss 
19762e5d4a8fSHaim Dreyfuss 		trans_pcie->msix_enabled = false;
19772e5d4a8fSHaim Dreyfuss 	} else {
1978e705c121SKalle Valo 		iwl_pcie_free_ict(trans);
19792e5d4a8fSHaim Dreyfuss 	}
1980e705c121SKalle Valo 
1981e705c121SKalle Valo 	iwl_pcie_free_fw_monitor(trans);
1982e705c121SKalle Valo 
198369725928SLuca Coelho 	if (trans_pcie->pnvm_dram.size)
198469725928SLuca Coelho 		dma_free_coherent(trans->dev, trans_pcie->pnvm_dram.size,
198569725928SLuca Coelho 				  trans_pcie->pnvm_dram.block,
198669725928SLuca Coelho 				  trans_pcie->pnvm_dram.physical);
198769725928SLuca Coelho 
1988a2a57a35SEmmanuel Grumbach 	mutex_destroy(&trans_pcie->mutex);
1989e705c121SKalle Valo 	iwl_trans_free(trans);
1990e705c121SKalle Valo }
1991e705c121SKalle Valo 
1992e705c121SKalle Valo static void iwl_trans_pcie_set_pmi(struct iwl_trans *trans, bool state)
1993e705c121SKalle Valo {
1994e705c121SKalle Valo 	if (state)
1995e705c121SKalle Valo 		set_bit(STATUS_TPOWER_PMI, &trans->status);
1996e705c121SKalle Valo 	else
1997e705c121SKalle Valo 		clear_bit(STATUS_TPOWER_PMI, &trans->status);
1998e705c121SKalle Valo }
1999e705c121SKalle Valo 
200049564a80SLuca Coelho struct iwl_trans_pcie_removal {
200149564a80SLuca Coelho 	struct pci_dev *pdev;
200249564a80SLuca Coelho 	struct work_struct work;
200349564a80SLuca Coelho };
200449564a80SLuca Coelho 
200549564a80SLuca Coelho static void iwl_trans_pcie_removal_wk(struct work_struct *wk)
200649564a80SLuca Coelho {
200749564a80SLuca Coelho 	struct iwl_trans_pcie_removal *removal =
200849564a80SLuca Coelho 		container_of(wk, struct iwl_trans_pcie_removal, work);
200949564a80SLuca Coelho 	struct pci_dev *pdev = removal->pdev;
2010aba1e632SColin Ian King 	static char *prop[] = {"EVENT=INACCESSIBLE", NULL};
201149564a80SLuca Coelho 
201249564a80SLuca Coelho 	dev_err(&pdev->dev, "Device gone - attempting removal\n");
201349564a80SLuca Coelho 	kobject_uevent_env(&pdev->dev.kobj, KOBJ_CHANGE, prop);
201449564a80SLuca Coelho 	pci_lock_rescan_remove();
201549564a80SLuca Coelho 	pci_dev_put(pdev);
201649564a80SLuca Coelho 	pci_stop_and_remove_bus_device(pdev);
201749564a80SLuca Coelho 	pci_unlock_rescan_remove();
201849564a80SLuca Coelho 
201949564a80SLuca Coelho 	kfree(removal);
202049564a80SLuca Coelho 	module_put(THIS_MODULE);
202149564a80SLuca Coelho }
202249564a80SLuca Coelho 
202323ba9340SEmmanuel Grumbach static bool iwl_trans_pcie_grab_nic_access(struct iwl_trans *trans,
2024e705c121SKalle Valo 					   unsigned long *flags)
2025e705c121SKalle Valo {
2026e705c121SKalle Valo 	int ret;
2027e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2028e705c121SKalle Valo 
2029e705c121SKalle Valo 	spin_lock_irqsave(&trans_pcie->reg_lock, *flags);
2030e705c121SKalle Valo 
2031e705c121SKalle Valo 	if (trans_pcie->cmd_hold_nic_awake)
2032e705c121SKalle Valo 		goto out;
2033e705c121SKalle Valo 
2034e705c121SKalle Valo 	/* this bit wakes up the NIC */
2035e705c121SKalle Valo 	__iwl_trans_pcie_set_bit(trans, CSR_GP_CNTRL,
20366dece0e9SLuca Coelho 				 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2037286ca8ebSLuca Coelho 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_8000)
2038e705c121SKalle Valo 		udelay(2);
2039e705c121SKalle Valo 
2040e705c121SKalle Valo 	/*
2041e705c121SKalle Valo 	 * These bits say the device is running, and should keep running for
2042e705c121SKalle Valo 	 * at least a short while (at least as long as MAC_ACCESS_REQ stays 1),
2043e705c121SKalle Valo 	 * but they do not indicate that embedded SRAM is restored yet;
2044fb70d49fSLuca Coelho 	 * HW with volatile SRAM must save/restore contents to/from
2045fb70d49fSLuca Coelho 	 * host DRAM when sleeping/waking for power-saving.
2046e705c121SKalle Valo 	 * Each direction takes approximately 1/4 millisecond; with this
2047e705c121SKalle Valo 	 * overhead, it's a good idea to grab and hold MAC_ACCESS_REQUEST if a
2048e705c121SKalle Valo 	 * series of register accesses are expected (e.g. reading Event Log),
2049e705c121SKalle Valo 	 * to keep device from sleeping.
2050e705c121SKalle Valo 	 *
2051e705c121SKalle Valo 	 * CSR_UCODE_DRV_GP1 register bit MAC_SLEEP == 0 indicates that
2052e705c121SKalle Valo 	 * SRAM is okay/restored.  We don't check that here because this call
2053fb70d49fSLuca Coelho 	 * is just for hardware register access; but GP1 MAC_SLEEP
2054fb70d49fSLuca Coelho 	 * check is a good idea before accessing the SRAM of HW with
2055fb70d49fSLuca Coelho 	 * volatile SRAM (e.g. reading Event Log).
2056e705c121SKalle Valo 	 *
2057e705c121SKalle Valo 	 * 5000 series and later (including 1000 series) have non-volatile SRAM,
2058e705c121SKalle Valo 	 * and do not save/restore SRAM when power cycling.
2059e705c121SKalle Valo 	 */
2060e705c121SKalle Valo 	ret = iwl_poll_bit(trans, CSR_GP_CNTRL,
20616dece0e9SLuca Coelho 			   CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN,
20626dece0e9SLuca Coelho 			   (CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY |
2063e705c121SKalle Valo 			    CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP), 15000);
2064e705c121SKalle Valo 	if (unlikely(ret < 0)) {
206549564a80SLuca Coelho 		u32 cntrl = iwl_read32(trans, CSR_GP_CNTRL);
206649564a80SLuca Coelho 
2067e705c121SKalle Valo 		WARN_ONCE(1,
2068e705c121SKalle Valo 			  "Timeout waiting for hardware access (CSR_GP_CNTRL 0x%08x)\n",
206949564a80SLuca Coelho 			  cntrl);
207049564a80SLuca Coelho 
207149564a80SLuca Coelho 		iwl_trans_pcie_dump_regs(trans);
207249564a80SLuca Coelho 
207349564a80SLuca Coelho 		if (iwlwifi_mod_params.remove_when_gone && cntrl == ~0U) {
207449564a80SLuca Coelho 			struct iwl_trans_pcie_removal *removal;
207549564a80SLuca Coelho 
2076f60c9e59SEmmanuel Grumbach 			if (test_bit(STATUS_TRANS_DEAD, &trans->status))
207749564a80SLuca Coelho 				goto err;
207849564a80SLuca Coelho 
207949564a80SLuca Coelho 			IWL_ERR(trans, "Device gone - scheduling removal!\n");
208049564a80SLuca Coelho 
208149564a80SLuca Coelho 			/*
208249564a80SLuca Coelho 			 * get a module reference to avoid doing this
208349564a80SLuca Coelho 			 * while unloading anyway and to avoid
208449564a80SLuca Coelho 			 * scheduling a work with code that's being
208549564a80SLuca Coelho 			 * removed.
208649564a80SLuca Coelho 			 */
208749564a80SLuca Coelho 			if (!try_module_get(THIS_MODULE)) {
208849564a80SLuca Coelho 				IWL_ERR(trans,
208949564a80SLuca Coelho 					"Module is being unloaded - abort\n");
209049564a80SLuca Coelho 				goto err;
209149564a80SLuca Coelho 			}
209249564a80SLuca Coelho 
209349564a80SLuca Coelho 			removal = kzalloc(sizeof(*removal), GFP_ATOMIC);
209449564a80SLuca Coelho 			if (!removal) {
209549564a80SLuca Coelho 				module_put(THIS_MODULE);
209649564a80SLuca Coelho 				goto err;
209749564a80SLuca Coelho 			}
209849564a80SLuca Coelho 			/*
209949564a80SLuca Coelho 			 * we don't need to clear this flag, because
210049564a80SLuca Coelho 			 * the trans will be freed and reallocated.
210149564a80SLuca Coelho 			*/
2102f60c9e59SEmmanuel Grumbach 			set_bit(STATUS_TRANS_DEAD, &trans->status);
210349564a80SLuca Coelho 
210449564a80SLuca Coelho 			removal->pdev = to_pci_dev(trans->dev);
210549564a80SLuca Coelho 			INIT_WORK(&removal->work, iwl_trans_pcie_removal_wk);
210649564a80SLuca Coelho 			pci_dev_get(removal->pdev);
210749564a80SLuca Coelho 			schedule_work(&removal->work);
210849564a80SLuca Coelho 		} else {
210949564a80SLuca Coelho 			iwl_write32(trans, CSR_RESET,
211049564a80SLuca Coelho 				    CSR_RESET_REG_FLAG_FORCE_NMI);
211149564a80SLuca Coelho 		}
211249564a80SLuca Coelho 
211349564a80SLuca Coelho err:
2114e705c121SKalle Valo 		spin_unlock_irqrestore(&trans_pcie->reg_lock, *flags);
2115e705c121SKalle Valo 		return false;
2116e705c121SKalle Valo 	}
2117e705c121SKalle Valo 
2118e705c121SKalle Valo out:
2119e705c121SKalle Valo 	/*
2120e705c121SKalle Valo 	 * Fool sparse by faking we release the lock - sparse will
2121e705c121SKalle Valo 	 * track nic_access anyway.
2122e705c121SKalle Valo 	 */
2123e705c121SKalle Valo 	__release(&trans_pcie->reg_lock);
2124e705c121SKalle Valo 	return true;
2125e705c121SKalle Valo }
2126e705c121SKalle Valo 
2127e705c121SKalle Valo static void iwl_trans_pcie_release_nic_access(struct iwl_trans *trans,
2128e705c121SKalle Valo 					      unsigned long *flags)
2129e705c121SKalle Valo {
2130e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2131e705c121SKalle Valo 
2132e705c121SKalle Valo 	lockdep_assert_held(&trans_pcie->reg_lock);
2133e705c121SKalle Valo 
2134e705c121SKalle Valo 	/*
2135e705c121SKalle Valo 	 * Fool sparse by faking we acquiring the lock - sparse will
2136e705c121SKalle Valo 	 * track nic_access anyway.
2137e705c121SKalle Valo 	 */
2138e705c121SKalle Valo 	__acquire(&trans_pcie->reg_lock);
2139e705c121SKalle Valo 
2140e705c121SKalle Valo 	if (trans_pcie->cmd_hold_nic_awake)
2141e705c121SKalle Valo 		goto out;
2142e705c121SKalle Valo 
2143e705c121SKalle Valo 	__iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
21446dece0e9SLuca Coelho 				   CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2145e705c121SKalle Valo 	/*
2146e705c121SKalle Valo 	 * Above we read the CSR_GP_CNTRL register, which will flush
2147e705c121SKalle Valo 	 * any previous writes, but we need the write that clears the
2148e705c121SKalle Valo 	 * MAC_ACCESS_REQ bit to be performed before any other writes
2149e705c121SKalle Valo 	 * scheduled on different CPUs (after we drop reg_lock).
2150e705c121SKalle Valo 	 */
2151e705c121SKalle Valo out:
2152e705c121SKalle Valo 	spin_unlock_irqrestore(&trans_pcie->reg_lock, *flags);
2153e705c121SKalle Valo }
2154e705c121SKalle Valo 
2155e705c121SKalle Valo static int iwl_trans_pcie_read_mem(struct iwl_trans *trans, u32 addr,
2156e705c121SKalle Valo 				   void *buf, int dwords)
2157e705c121SKalle Valo {
2158e705c121SKalle Valo 	unsigned long flags;
215904516706SJohannes Berg 	int offs = 0;
2160e705c121SKalle Valo 	u32 *vals = buf;
2161e705c121SKalle Valo 
216204516706SJohannes Berg 	while (offs < dwords) {
216304516706SJohannes Berg 		/* limit the time we spin here under lock to 1/2s */
216404516706SJohannes Berg 		ktime_t timeout = ktime_add_us(ktime_get(), 500 * USEC_PER_MSEC);
216504516706SJohannes Berg 
216623ba9340SEmmanuel Grumbach 		if (iwl_trans_grab_nic_access(trans, &flags)) {
216704516706SJohannes Berg 			iwl_write32(trans, HBUS_TARG_MEM_RADDR,
216804516706SJohannes Berg 				    addr + 4 * offs);
216904516706SJohannes Berg 
217004516706SJohannes Berg 			while (offs < dwords) {
217104516706SJohannes Berg 				vals[offs] = iwl_read32(trans,
217204516706SJohannes Berg 							HBUS_TARG_MEM_RDAT);
217304516706SJohannes Berg 				offs++;
217404516706SJohannes Berg 
217504516706SJohannes Berg 				/* calling ktime_get is expensive so
217604516706SJohannes Berg 				 * do it once in 128 reads
217704516706SJohannes Berg 				 */
217804516706SJohannes Berg 				if (offs % 128 == 0 && ktime_after(ktime_get(),
217904516706SJohannes Berg 								   timeout))
218004516706SJohannes Berg 					break;
218104516706SJohannes Berg 			}
2182e705c121SKalle Valo 			iwl_trans_release_nic_access(trans, &flags);
2183e705c121SKalle Valo 		} else {
218404516706SJohannes Berg 			return -EBUSY;
2185e705c121SKalle Valo 		}
218604516706SJohannes Berg 	}
218704516706SJohannes Berg 
218804516706SJohannes Berg 	return 0;
2189e705c121SKalle Valo }
2190e705c121SKalle Valo 
2191e705c121SKalle Valo static int iwl_trans_pcie_write_mem(struct iwl_trans *trans, u32 addr,
2192e705c121SKalle Valo 				    const void *buf, int dwords)
2193e705c121SKalle Valo {
2194e705c121SKalle Valo 	unsigned long flags;
2195e705c121SKalle Valo 	int offs, ret = 0;
2196e705c121SKalle Valo 	const u32 *vals = buf;
2197e705c121SKalle Valo 
219823ba9340SEmmanuel Grumbach 	if (iwl_trans_grab_nic_access(trans, &flags)) {
2199e705c121SKalle Valo 		iwl_write32(trans, HBUS_TARG_MEM_WADDR, addr);
2200e705c121SKalle Valo 		for (offs = 0; offs < dwords; offs++)
2201e705c121SKalle Valo 			iwl_write32(trans, HBUS_TARG_MEM_WDAT,
2202e705c121SKalle Valo 				    vals ? vals[offs] : 0);
2203e705c121SKalle Valo 		iwl_trans_release_nic_access(trans, &flags);
2204e705c121SKalle Valo 	} else {
2205e705c121SKalle Valo 		ret = -EBUSY;
2206e705c121SKalle Valo 	}
2207e705c121SKalle Valo 	return ret;
2208e705c121SKalle Valo }
2209e705c121SKalle Valo 
22107f1fe1d4SLuca Coelho static int iwl_trans_pcie_read_config32(struct iwl_trans *trans, u32 ofs,
22117f1fe1d4SLuca Coelho 					u32 *val)
22127f1fe1d4SLuca Coelho {
22137f1fe1d4SLuca Coelho 	return pci_read_config_dword(IWL_TRANS_GET_PCIE_TRANS(trans)->pci_dev,
22147f1fe1d4SLuca Coelho 				     ofs, val);
22157f1fe1d4SLuca Coelho }
22167f1fe1d4SLuca Coelho 
22170cd58eaaSEmmanuel Grumbach static void iwl_trans_pcie_block_txq_ptrs(struct iwl_trans *trans, bool block)
22180cd58eaaSEmmanuel Grumbach {
22190cd58eaaSEmmanuel Grumbach 	int i;
22200cd58eaaSEmmanuel Grumbach 
2221286ca8ebSLuca Coelho 	for (i = 0; i < trans->trans_cfg->base_params->num_of_queues; i++) {
22224f4822b7SMordechay Goodstein 		struct iwl_txq *txq = trans->txqs.txq[i];
22230cd58eaaSEmmanuel Grumbach 
22244f4822b7SMordechay Goodstein 		if (i == trans->txqs.cmd.q_id)
22250cd58eaaSEmmanuel Grumbach 			continue;
22260cd58eaaSEmmanuel Grumbach 
22270cd58eaaSEmmanuel Grumbach 		spin_lock_bh(&txq->lock);
22280cd58eaaSEmmanuel Grumbach 
22290cd58eaaSEmmanuel Grumbach 		if (!block && !(WARN_ON_ONCE(!txq->block))) {
22300cd58eaaSEmmanuel Grumbach 			txq->block--;
22310cd58eaaSEmmanuel Grumbach 			if (!txq->block) {
22320cd58eaaSEmmanuel Grumbach 				iwl_write32(trans, HBUS_TARG_WRPTR,
2233bb98ecd4SSara Sharon 					    txq->write_ptr | (i << 8));
22340cd58eaaSEmmanuel Grumbach 			}
22350cd58eaaSEmmanuel Grumbach 		} else if (block) {
22360cd58eaaSEmmanuel Grumbach 			txq->block++;
22370cd58eaaSEmmanuel Grumbach 		}
22380cd58eaaSEmmanuel Grumbach 
22390cd58eaaSEmmanuel Grumbach 		spin_unlock_bh(&txq->lock);
22400cd58eaaSEmmanuel Grumbach 	}
22410cd58eaaSEmmanuel Grumbach }
22420cd58eaaSEmmanuel Grumbach 
2243e705c121SKalle Valo #define IWL_FLUSH_WAIT_MS	2000
2244e705c121SKalle Valo 
224592536c96SSara Sharon static int iwl_trans_pcie_rxq_dma_data(struct iwl_trans *trans, int queue,
224692536c96SSara Sharon 				       struct iwl_trans_rxq_dma_data *data)
224792536c96SSara Sharon {
224892536c96SSara Sharon 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
224992536c96SSara Sharon 
225092536c96SSara Sharon 	if (queue >= trans->num_rx_queues || !trans_pcie->rxq)
225192536c96SSara Sharon 		return -EINVAL;
225292536c96SSara Sharon 
225392536c96SSara Sharon 	data->fr_bd_cb = trans_pcie->rxq[queue].bd_dma;
225492536c96SSara Sharon 	data->urbd_stts_wrptr = trans_pcie->rxq[queue].rb_stts_dma;
225592536c96SSara Sharon 	data->ur_bd_cb = trans_pcie->rxq[queue].used_bd_dma;
225692536c96SSara Sharon 	data->fr_bd_wid = 0;
225792536c96SSara Sharon 
225892536c96SSara Sharon 	return 0;
225992536c96SSara Sharon }
226092536c96SSara Sharon 
2261d6d517b7SSara Sharon static int iwl_trans_pcie_wait_txq_empty(struct iwl_trans *trans, int txq_idx)
2262e705c121SKalle Valo {
2263e705c121SKalle Valo 	struct iwl_txq *txq;
2264e705c121SKalle Valo 	unsigned long now = jiffies;
22652ae48edcSSara Sharon 	bool overflow_tx;
2266e705c121SKalle Valo 	u8 wr_ptr;
2267e705c121SKalle Valo 
22682b3fae66SMatt Chen 	/* Make sure the NIC is still alive in the bus */
2269f60c9e59SEmmanuel Grumbach 	if (test_bit(STATUS_TRANS_DEAD, &trans->status))
2270f60c9e59SEmmanuel Grumbach 		return -ENODEV;
22712b3fae66SMatt Chen 
22724f4822b7SMordechay Goodstein 	if (!test_bit(txq_idx, trans->txqs.queue_used))
2273d6d517b7SSara Sharon 		return -EINVAL;
2274e705c121SKalle Valo 
2275d6d517b7SSara Sharon 	IWL_DEBUG_TX_QUEUES(trans, "Emptying queue %d...\n", txq_idx);
22764f4822b7SMordechay Goodstein 	txq = trans->txqs.txq[txq_idx];
22772ae48edcSSara Sharon 
22782ae48edcSSara Sharon 	spin_lock_bh(&txq->lock);
22792ae48edcSSara Sharon 	overflow_tx = txq->overflow_tx ||
22802ae48edcSSara Sharon 		      !skb_queue_empty(&txq->overflow_q);
22812ae48edcSSara Sharon 	spin_unlock_bh(&txq->lock);
22822ae48edcSSara Sharon 
22836aa7de05SMark Rutland 	wr_ptr = READ_ONCE(txq->write_ptr);
2284e705c121SKalle Valo 
22852ae48edcSSara Sharon 	while ((txq->read_ptr != READ_ONCE(txq->write_ptr) ||
22862ae48edcSSara Sharon 		overflow_tx) &&
2287e705c121SKalle Valo 	       !time_after(jiffies,
2288e705c121SKalle Valo 			   now + msecs_to_jiffies(IWL_FLUSH_WAIT_MS))) {
22896aa7de05SMark Rutland 		u8 write_ptr = READ_ONCE(txq->write_ptr);
2290e705c121SKalle Valo 
22912ae48edcSSara Sharon 		/*
22922ae48edcSSara Sharon 		 * If write pointer moved during the wait, warn only
22932ae48edcSSara Sharon 		 * if the TX came from op mode. In case TX came from
22942ae48edcSSara Sharon 		 * trans layer (overflow TX) don't warn.
22952ae48edcSSara Sharon 		 */
22962ae48edcSSara Sharon 		if (WARN_ONCE(wr_ptr != write_ptr && !overflow_tx,
2297e705c121SKalle Valo 			      "WR pointer moved while flushing %d -> %d\n",
2298e705c121SKalle Valo 			      wr_ptr, write_ptr))
2299e705c121SKalle Valo 			return -ETIMEDOUT;
23002ae48edcSSara Sharon 		wr_ptr = write_ptr;
23012ae48edcSSara Sharon 
2302192185d6SJohannes Berg 		usleep_range(1000, 2000);
23032ae48edcSSara Sharon 
23042ae48edcSSara Sharon 		spin_lock_bh(&txq->lock);
23052ae48edcSSara Sharon 		overflow_tx = txq->overflow_tx ||
23062ae48edcSSara Sharon 			      !skb_queue_empty(&txq->overflow_q);
23072ae48edcSSara Sharon 		spin_unlock_bh(&txq->lock);
2308e705c121SKalle Valo 	}
2309e705c121SKalle Valo 
2310bb98ecd4SSara Sharon 	if (txq->read_ptr != txq->write_ptr) {
2311e705c121SKalle Valo 		IWL_ERR(trans,
2312d6d517b7SSara Sharon 			"fail to flush all tx fifo queues Q %d\n", txq_idx);
23130cd1ad2dSMordechay Goodstein 		iwl_txq_log_scd_error(trans, txq);
2314d6d517b7SSara Sharon 		return -ETIMEDOUT;
2315e705c121SKalle Valo 	}
2316e705c121SKalle Valo 
2317d6d517b7SSara Sharon 	IWL_DEBUG_TX_QUEUES(trans, "Queue %d is now empty.\n", txq_idx);
2318d6d517b7SSara Sharon 
2319d6d517b7SSara Sharon 	return 0;
2320d6d517b7SSara Sharon }
2321d6d517b7SSara Sharon 
2322d6d517b7SSara Sharon static int iwl_trans_pcie_wait_txqs_empty(struct iwl_trans *trans, u32 txq_bm)
2323d6d517b7SSara Sharon {
2324d6d517b7SSara Sharon 	int cnt;
2325d6d517b7SSara Sharon 	int ret = 0;
2326d6d517b7SSara Sharon 
2327d6d517b7SSara Sharon 	/* waiting for all the tx frames complete might take a while */
232879b6c8feSLuca Coelho 	for (cnt = 0;
2329286ca8ebSLuca Coelho 	     cnt < trans->trans_cfg->base_params->num_of_queues;
233079b6c8feSLuca Coelho 	     cnt++) {
2331d6d517b7SSara Sharon 
23324f4822b7SMordechay Goodstein 		if (cnt == trans->txqs.cmd.q_id)
2333d6d517b7SSara Sharon 			continue;
23344f4822b7SMordechay Goodstein 		if (!test_bit(cnt, trans->txqs.queue_used))
2335d6d517b7SSara Sharon 			continue;
2336d6d517b7SSara Sharon 		if (!(BIT(cnt) & txq_bm))
2337d6d517b7SSara Sharon 			continue;
2338d6d517b7SSara Sharon 
2339d6d517b7SSara Sharon 		ret = iwl_trans_pcie_wait_txq_empty(trans, cnt);
234038398efbSSara Sharon 		if (ret)
2341d6d517b7SSara Sharon 			break;
2342d6d517b7SSara Sharon 	}
2343e705c121SKalle Valo 
2344e705c121SKalle Valo 	return ret;
2345e705c121SKalle Valo }
2346e705c121SKalle Valo 
2347e705c121SKalle Valo static void iwl_trans_pcie_set_bits_mask(struct iwl_trans *trans, u32 reg,
2348e705c121SKalle Valo 					 u32 mask, u32 value)
2349e705c121SKalle Valo {
2350e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2351e705c121SKalle Valo 	unsigned long flags;
2352e705c121SKalle Valo 
2353e705c121SKalle Valo 	spin_lock_irqsave(&trans_pcie->reg_lock, flags);
2354e705c121SKalle Valo 	__iwl_trans_pcie_set_bits_mask(trans, reg, mask, value);
2355e705c121SKalle Valo 	spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
2356e705c121SKalle Valo }
2357e705c121SKalle Valo 
2358e705c121SKalle Valo static const char *get_csr_string(int cmd)
2359e705c121SKalle Valo {
2360e705c121SKalle Valo #define IWL_CMD(x) case x: return #x
2361e705c121SKalle Valo 	switch (cmd) {
2362e705c121SKalle Valo 	IWL_CMD(CSR_HW_IF_CONFIG_REG);
2363e705c121SKalle Valo 	IWL_CMD(CSR_INT_COALESCING);
2364e705c121SKalle Valo 	IWL_CMD(CSR_INT);
2365e705c121SKalle Valo 	IWL_CMD(CSR_INT_MASK);
2366e705c121SKalle Valo 	IWL_CMD(CSR_FH_INT_STATUS);
2367e705c121SKalle Valo 	IWL_CMD(CSR_GPIO_IN);
2368e705c121SKalle Valo 	IWL_CMD(CSR_RESET);
2369e705c121SKalle Valo 	IWL_CMD(CSR_GP_CNTRL);
2370e705c121SKalle Valo 	IWL_CMD(CSR_HW_REV);
2371e705c121SKalle Valo 	IWL_CMD(CSR_EEPROM_REG);
2372e705c121SKalle Valo 	IWL_CMD(CSR_EEPROM_GP);
2373e705c121SKalle Valo 	IWL_CMD(CSR_OTP_GP_REG);
2374e705c121SKalle Valo 	IWL_CMD(CSR_GIO_REG);
2375e705c121SKalle Valo 	IWL_CMD(CSR_GP_UCODE_REG);
2376e705c121SKalle Valo 	IWL_CMD(CSR_GP_DRIVER_REG);
2377e705c121SKalle Valo 	IWL_CMD(CSR_UCODE_DRV_GP1);
2378e705c121SKalle Valo 	IWL_CMD(CSR_UCODE_DRV_GP2);
2379e705c121SKalle Valo 	IWL_CMD(CSR_LED_REG);
2380e705c121SKalle Valo 	IWL_CMD(CSR_DRAM_INT_TBL_REG);
2381e705c121SKalle Valo 	IWL_CMD(CSR_GIO_CHICKEN_BITS);
2382e705c121SKalle Valo 	IWL_CMD(CSR_ANA_PLL_CFG);
2383e705c121SKalle Valo 	IWL_CMD(CSR_HW_REV_WA_REG);
2384e705c121SKalle Valo 	IWL_CMD(CSR_MONITOR_STATUS_REG);
2385e705c121SKalle Valo 	IWL_CMD(CSR_DBG_HPET_MEM_REG);
2386e705c121SKalle Valo 	default:
2387e705c121SKalle Valo 		return "UNKNOWN";
2388e705c121SKalle Valo 	}
2389e705c121SKalle Valo #undef IWL_CMD
2390e705c121SKalle Valo }
2391e705c121SKalle Valo 
2392e705c121SKalle Valo void iwl_pcie_dump_csr(struct iwl_trans *trans)
2393e705c121SKalle Valo {
2394e705c121SKalle Valo 	int i;
2395e705c121SKalle Valo 	static const u32 csr_tbl[] = {
2396e705c121SKalle Valo 		CSR_HW_IF_CONFIG_REG,
2397e705c121SKalle Valo 		CSR_INT_COALESCING,
2398e705c121SKalle Valo 		CSR_INT,
2399e705c121SKalle Valo 		CSR_INT_MASK,
2400e705c121SKalle Valo 		CSR_FH_INT_STATUS,
2401e705c121SKalle Valo 		CSR_GPIO_IN,
2402e705c121SKalle Valo 		CSR_RESET,
2403e705c121SKalle Valo 		CSR_GP_CNTRL,
2404e705c121SKalle Valo 		CSR_HW_REV,
2405e705c121SKalle Valo 		CSR_EEPROM_REG,
2406e705c121SKalle Valo 		CSR_EEPROM_GP,
2407e705c121SKalle Valo 		CSR_OTP_GP_REG,
2408e705c121SKalle Valo 		CSR_GIO_REG,
2409e705c121SKalle Valo 		CSR_GP_UCODE_REG,
2410e705c121SKalle Valo 		CSR_GP_DRIVER_REG,
2411e705c121SKalle Valo 		CSR_UCODE_DRV_GP1,
2412e705c121SKalle Valo 		CSR_UCODE_DRV_GP2,
2413e705c121SKalle Valo 		CSR_LED_REG,
2414e705c121SKalle Valo 		CSR_DRAM_INT_TBL_REG,
2415e705c121SKalle Valo 		CSR_GIO_CHICKEN_BITS,
2416e705c121SKalle Valo 		CSR_ANA_PLL_CFG,
2417e705c121SKalle Valo 		CSR_MONITOR_STATUS_REG,
2418e705c121SKalle Valo 		CSR_HW_REV_WA_REG,
2419e705c121SKalle Valo 		CSR_DBG_HPET_MEM_REG
2420e705c121SKalle Valo 	};
2421e705c121SKalle Valo 	IWL_ERR(trans, "CSR values:\n");
2422e705c121SKalle Valo 	IWL_ERR(trans, "(2nd byte of CSR_INT_COALESCING is "
2423e705c121SKalle Valo 		"CSR_INT_PERIODIC_REG)\n");
2424e705c121SKalle Valo 	for (i = 0; i <  ARRAY_SIZE(csr_tbl); i++) {
2425e705c121SKalle Valo 		IWL_ERR(trans, "  %25s: 0X%08x\n",
2426e705c121SKalle Valo 			get_csr_string(csr_tbl[i]),
2427e705c121SKalle Valo 			iwl_read32(trans, csr_tbl[i]));
2428e705c121SKalle Valo 	}
2429e705c121SKalle Valo }
2430e705c121SKalle Valo 
2431e705c121SKalle Valo #ifdef CONFIG_IWLWIFI_DEBUGFS
2432e705c121SKalle Valo /* create and remove of files */
2433e705c121SKalle Valo #define DEBUGFS_ADD_FILE(name, parent, mode) do {			\
2434cf5d5663SGreg Kroah-Hartman 	debugfs_create_file(#name, mode, parent, trans,			\
2435cf5d5663SGreg Kroah-Hartman 			    &iwl_dbgfs_##name##_ops);			\
2436e705c121SKalle Valo } while (0)
2437e705c121SKalle Valo 
2438e705c121SKalle Valo /* file operation */
2439e705c121SKalle Valo #define DEBUGFS_READ_FILE_OPS(name)					\
2440e705c121SKalle Valo static const struct file_operations iwl_dbgfs_##name##_ops = {		\
2441e705c121SKalle Valo 	.read = iwl_dbgfs_##name##_read,				\
2442e705c121SKalle Valo 	.open = simple_open,						\
2443e705c121SKalle Valo 	.llseek = generic_file_llseek,					\
2444e705c121SKalle Valo };
2445e705c121SKalle Valo 
2446e705c121SKalle Valo #define DEBUGFS_WRITE_FILE_OPS(name)                                    \
2447e705c121SKalle Valo static const struct file_operations iwl_dbgfs_##name##_ops = {          \
2448e705c121SKalle Valo 	.write = iwl_dbgfs_##name##_write,                              \
2449e705c121SKalle Valo 	.open = simple_open,						\
2450e705c121SKalle Valo 	.llseek = generic_file_llseek,					\
2451e705c121SKalle Valo };
2452e705c121SKalle Valo 
2453e705c121SKalle Valo #define DEBUGFS_READ_WRITE_FILE_OPS(name)				\
2454e705c121SKalle Valo static const struct file_operations iwl_dbgfs_##name##_ops = {		\
2455e705c121SKalle Valo 	.write = iwl_dbgfs_##name##_write,				\
2456e705c121SKalle Valo 	.read = iwl_dbgfs_##name##_read,				\
2457e705c121SKalle Valo 	.open = simple_open,						\
2458e705c121SKalle Valo 	.llseek = generic_file_llseek,					\
2459e705c121SKalle Valo };
2460e705c121SKalle Valo 
2461df67a1beSJohannes Berg struct iwl_dbgfs_tx_queue_priv {
2462df67a1beSJohannes Berg 	struct iwl_trans *trans;
2463df67a1beSJohannes Berg };
2464df67a1beSJohannes Berg 
2465df67a1beSJohannes Berg struct iwl_dbgfs_tx_queue_state {
2466df67a1beSJohannes Berg 	loff_t pos;
2467df67a1beSJohannes Berg };
2468df67a1beSJohannes Berg 
2469df67a1beSJohannes Berg static void *iwl_dbgfs_tx_queue_seq_start(struct seq_file *seq, loff_t *pos)
2470e705c121SKalle Valo {
2471df67a1beSJohannes Berg 	struct iwl_dbgfs_tx_queue_priv *priv = seq->private;
2472df67a1beSJohannes Berg 	struct iwl_dbgfs_tx_queue_state *state;
2473df67a1beSJohannes Berg 
2474df67a1beSJohannes Berg 	if (*pos >= priv->trans->trans_cfg->base_params->num_of_queues)
2475df67a1beSJohannes Berg 		return NULL;
2476df67a1beSJohannes Berg 
2477df67a1beSJohannes Berg 	state = kmalloc(sizeof(*state), GFP_KERNEL);
2478df67a1beSJohannes Berg 	if (!state)
2479df67a1beSJohannes Berg 		return NULL;
2480df67a1beSJohannes Berg 	state->pos = *pos;
2481df67a1beSJohannes Berg 	return state;
2482df67a1beSJohannes Berg }
2483df67a1beSJohannes Berg 
2484df67a1beSJohannes Berg static void *iwl_dbgfs_tx_queue_seq_next(struct seq_file *seq,
2485df67a1beSJohannes Berg 					 void *v, loff_t *pos)
2486df67a1beSJohannes Berg {
2487df67a1beSJohannes Berg 	struct iwl_dbgfs_tx_queue_priv *priv = seq->private;
2488df67a1beSJohannes Berg 	struct iwl_dbgfs_tx_queue_state *state = v;
2489df67a1beSJohannes Berg 
2490df67a1beSJohannes Berg 	*pos = ++state->pos;
2491df67a1beSJohannes Berg 
2492df67a1beSJohannes Berg 	if (*pos >= priv->trans->trans_cfg->base_params->num_of_queues)
2493df67a1beSJohannes Berg 		return NULL;
2494df67a1beSJohannes Berg 
2495df67a1beSJohannes Berg 	return state;
2496df67a1beSJohannes Berg }
2497df67a1beSJohannes Berg 
2498df67a1beSJohannes Berg static void iwl_dbgfs_tx_queue_seq_stop(struct seq_file *seq, void *v)
2499df67a1beSJohannes Berg {
2500df67a1beSJohannes Berg 	kfree(v);
2501df67a1beSJohannes Berg }
2502df67a1beSJohannes Berg 
2503df67a1beSJohannes Berg static int iwl_dbgfs_tx_queue_seq_show(struct seq_file *seq, void *v)
2504df67a1beSJohannes Berg {
2505df67a1beSJohannes Berg 	struct iwl_dbgfs_tx_queue_priv *priv = seq->private;
2506df67a1beSJohannes Berg 	struct iwl_dbgfs_tx_queue_state *state = v;
2507df67a1beSJohannes Berg 	struct iwl_trans *trans = priv->trans;
25084f4822b7SMordechay Goodstein 	struct iwl_txq *txq = trans->txqs.txq[state->pos];
2509e705c121SKalle Valo 
2510df67a1beSJohannes Berg 	seq_printf(seq, "hwq %.3u: used=%d stopped=%d ",
2511df67a1beSJohannes Berg 		   (unsigned int)state->pos,
25124f4822b7SMordechay Goodstein 		   !!test_bit(state->pos, trans->txqs.queue_used),
25134f4822b7SMordechay Goodstein 		   !!test_bit(state->pos, trans->txqs.queue_stopped));
2514df67a1beSJohannes Berg 	if (txq)
2515df67a1beSJohannes Berg 		seq_printf(seq,
251695a9e44fSJohannes Berg 			   "read=%u write=%u need_update=%d frozen=%d n_window=%d ampdu=%d",
2517df67a1beSJohannes Berg 			   txq->read_ptr, txq->write_ptr,
251895a9e44fSJohannes Berg 			   txq->need_update, txq->frozen,
251995a9e44fSJohannes Berg 			   txq->n_window, txq->ampdu);
2520df67a1beSJohannes Berg 	else
2521df67a1beSJohannes Berg 		seq_puts(seq, "(unallocated)");
2522e705c121SKalle Valo 
25234f4822b7SMordechay Goodstein 	if (state->pos == trans->txqs.cmd.q_id)
2524df67a1beSJohannes Berg 		seq_puts(seq, " (HCMD)");
2525df67a1beSJohannes Berg 	seq_puts(seq, "\n");
2526e705c121SKalle Valo 
2527df67a1beSJohannes Berg 	return 0;
2528df67a1beSJohannes Berg }
2529df67a1beSJohannes Berg 
2530df67a1beSJohannes Berg static const struct seq_operations iwl_dbgfs_tx_queue_seq_ops = {
2531df67a1beSJohannes Berg 	.start = iwl_dbgfs_tx_queue_seq_start,
2532df67a1beSJohannes Berg 	.next = iwl_dbgfs_tx_queue_seq_next,
2533df67a1beSJohannes Berg 	.stop = iwl_dbgfs_tx_queue_seq_stop,
2534df67a1beSJohannes Berg 	.show = iwl_dbgfs_tx_queue_seq_show,
2535df67a1beSJohannes Berg };
2536df67a1beSJohannes Berg 
2537df67a1beSJohannes Berg static int iwl_dbgfs_tx_queue_open(struct inode *inode, struct file *filp)
2538df67a1beSJohannes Berg {
2539df67a1beSJohannes Berg 	struct iwl_dbgfs_tx_queue_priv *priv;
2540df67a1beSJohannes Berg 
2541df67a1beSJohannes Berg 	priv = __seq_open_private(filp, &iwl_dbgfs_tx_queue_seq_ops,
2542df67a1beSJohannes Berg 				  sizeof(*priv));
2543df67a1beSJohannes Berg 
2544df67a1beSJohannes Berg 	if (!priv)
2545e705c121SKalle Valo 		return -ENOMEM;
2546e705c121SKalle Valo 
2547df67a1beSJohannes Berg 	priv->trans = inode->i_private;
2548df67a1beSJohannes Berg 	return 0;
2549e705c121SKalle Valo }
2550e705c121SKalle Valo 
2551e705c121SKalle Valo static ssize_t iwl_dbgfs_rx_queue_read(struct file *file,
2552e705c121SKalle Valo 				       char __user *user_buf,
2553e705c121SKalle Valo 				       size_t count, loff_t *ppos)
2554e705c121SKalle Valo {
2555e705c121SKalle Valo 	struct iwl_trans *trans = file->private_data;
2556e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
255778485054SSara Sharon 	char *buf;
255878485054SSara Sharon 	int pos = 0, i, ret;
2559eb3dc36eSColin Ian King 	size_t bufsz;
2560e705c121SKalle Valo 
256178485054SSara Sharon 	bufsz = sizeof(char) * 121 * trans->num_rx_queues;
256278485054SSara Sharon 
256378485054SSara Sharon 	if (!trans_pcie->rxq)
256478485054SSara Sharon 		return -EAGAIN;
256578485054SSara Sharon 
256678485054SSara Sharon 	buf = kzalloc(bufsz, GFP_KERNEL);
256778485054SSara Sharon 	if (!buf)
256878485054SSara Sharon 		return -ENOMEM;
256978485054SSara Sharon 
257078485054SSara Sharon 	for (i = 0; i < trans->num_rx_queues && pos < bufsz; i++) {
257178485054SSara Sharon 		struct iwl_rxq *rxq = &trans_pcie->rxq[i];
257278485054SSara Sharon 
257378485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "queue#: %2d\n",
257478485054SSara Sharon 				 i);
257578485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "\tread: %u\n",
2576e705c121SKalle Valo 				 rxq->read);
257778485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "\twrite: %u\n",
2578e705c121SKalle Valo 				 rxq->write);
257978485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "\twrite_actual: %u\n",
2580e705c121SKalle Valo 				 rxq->write_actual);
258178485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "\tneed_update: %2d\n",
2582e705c121SKalle Valo 				 rxq->need_update);
258378485054SSara Sharon 		pos += scnprintf(buf + pos, bufsz - pos, "\tfree_count: %u\n",
2584e705c121SKalle Valo 				 rxq->free_count);
2585e705c121SKalle Valo 		if (rxq->rb_stts) {
25860307c839SGolan Ben Ami 			u32 r =	__le16_to_cpu(iwl_get_closed_rb_stts(trans,
25870307c839SGolan Ben Ami 								     rxq));
258878485054SSara Sharon 			pos += scnprintf(buf + pos, bufsz - pos,
258978485054SSara Sharon 					 "\tclosed_rb_num: %u\n",
25900307c839SGolan Ben Ami 					 r & 0x0FFF);
2591e705c121SKalle Valo 		} else {
2592e705c121SKalle Valo 			pos += scnprintf(buf + pos, bufsz - pos,
259378485054SSara Sharon 					 "\tclosed_rb_num: Not Allocated\n");
2594e705c121SKalle Valo 		}
259578485054SSara Sharon 	}
259678485054SSara Sharon 	ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
259778485054SSara Sharon 	kfree(buf);
259878485054SSara Sharon 
259978485054SSara Sharon 	return ret;
2600e705c121SKalle Valo }
2601e705c121SKalle Valo 
2602e705c121SKalle Valo static ssize_t iwl_dbgfs_interrupt_read(struct file *file,
2603e705c121SKalle Valo 					char __user *user_buf,
2604e705c121SKalle Valo 					size_t count, loff_t *ppos)
2605e705c121SKalle Valo {
2606e705c121SKalle Valo 	struct iwl_trans *trans = file->private_data;
2607e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2608e705c121SKalle Valo 	struct isr_statistics *isr_stats = &trans_pcie->isr_stats;
2609e705c121SKalle Valo 
2610e705c121SKalle Valo 	int pos = 0;
2611e705c121SKalle Valo 	char *buf;
2612e705c121SKalle Valo 	int bufsz = 24 * 64; /* 24 items * 64 char per item */
2613e705c121SKalle Valo 	ssize_t ret;
2614e705c121SKalle Valo 
2615e705c121SKalle Valo 	buf = kzalloc(bufsz, GFP_KERNEL);
2616e705c121SKalle Valo 	if (!buf)
2617e705c121SKalle Valo 		return -ENOMEM;
2618e705c121SKalle Valo 
2619e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos,
2620e705c121SKalle Valo 			"Interrupt Statistics Report:\n");
2621e705c121SKalle Valo 
2622e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "HW Error:\t\t\t %u\n",
2623e705c121SKalle Valo 		isr_stats->hw);
2624e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "SW Error:\t\t\t %u\n",
2625e705c121SKalle Valo 		isr_stats->sw);
2626e705c121SKalle Valo 	if (isr_stats->sw || isr_stats->hw) {
2627e705c121SKalle Valo 		pos += scnprintf(buf + pos, bufsz - pos,
2628e705c121SKalle Valo 			"\tLast Restarting Code:  0x%X\n",
2629e705c121SKalle Valo 			isr_stats->err_code);
2630e705c121SKalle Valo 	}
2631e705c121SKalle Valo #ifdef CONFIG_IWLWIFI_DEBUG
2632e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "Frame transmitted:\t\t %u\n",
2633e705c121SKalle Valo 		isr_stats->sch);
2634e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "Alive interrupt:\t\t %u\n",
2635e705c121SKalle Valo 		isr_stats->alive);
2636e705c121SKalle Valo #endif
2637e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos,
2638e705c121SKalle Valo 		"HW RF KILL switch toggled:\t %u\n", isr_stats->rfkill);
2639e705c121SKalle Valo 
2640e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "CT KILL:\t\t\t %u\n",
2641e705c121SKalle Valo 		isr_stats->ctkill);
2642e705c121SKalle Valo 
2643e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "Wakeup Interrupt:\t\t %u\n",
2644e705c121SKalle Valo 		isr_stats->wakeup);
2645e705c121SKalle Valo 
2646e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos,
2647e705c121SKalle Valo 		"Rx command responses:\t\t %u\n", isr_stats->rx);
2648e705c121SKalle Valo 
2649e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "Tx/FH interrupt:\t\t %u\n",
2650e705c121SKalle Valo 		isr_stats->tx);
2651e705c121SKalle Valo 
2652e705c121SKalle Valo 	pos += scnprintf(buf + pos, bufsz - pos, "Unexpected INTA:\t\t %u\n",
2653e705c121SKalle Valo 		isr_stats->unhandled);
2654e705c121SKalle Valo 
2655e705c121SKalle Valo 	ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2656e705c121SKalle Valo 	kfree(buf);
2657e705c121SKalle Valo 	return ret;
2658e705c121SKalle Valo }
2659e705c121SKalle Valo 
2660e705c121SKalle Valo static ssize_t iwl_dbgfs_interrupt_write(struct file *file,
2661e705c121SKalle Valo 					 const char __user *user_buf,
2662e705c121SKalle Valo 					 size_t count, loff_t *ppos)
2663e705c121SKalle Valo {
2664e705c121SKalle Valo 	struct iwl_trans *trans = file->private_data;
2665e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2666e705c121SKalle Valo 	struct isr_statistics *isr_stats = &trans_pcie->isr_stats;
2667e705c121SKalle Valo 	u32 reset_flag;
2668078f1131SJohannes Berg 	int ret;
2669e705c121SKalle Valo 
2670078f1131SJohannes Berg 	ret = kstrtou32_from_user(user_buf, count, 16, &reset_flag);
2671078f1131SJohannes Berg 	if (ret)
2672078f1131SJohannes Berg 		return ret;
2673e705c121SKalle Valo 	if (reset_flag == 0)
2674e705c121SKalle Valo 		memset(isr_stats, 0, sizeof(*isr_stats));
2675e705c121SKalle Valo 
2676e705c121SKalle Valo 	return count;
2677e705c121SKalle Valo }
2678e705c121SKalle Valo 
2679e705c121SKalle Valo static ssize_t iwl_dbgfs_csr_write(struct file *file,
2680e705c121SKalle Valo 				   const char __user *user_buf,
2681e705c121SKalle Valo 				   size_t count, loff_t *ppos)
2682e705c121SKalle Valo {
2683e705c121SKalle Valo 	struct iwl_trans *trans = file->private_data;
2684e705c121SKalle Valo 
2685e705c121SKalle Valo 	iwl_pcie_dump_csr(trans);
2686e705c121SKalle Valo 
2687e705c121SKalle Valo 	return count;
2688e705c121SKalle Valo }
2689e705c121SKalle Valo 
2690e705c121SKalle Valo static ssize_t iwl_dbgfs_fh_reg_read(struct file *file,
2691e705c121SKalle Valo 				     char __user *user_buf,
2692e705c121SKalle Valo 				     size_t count, loff_t *ppos)
2693e705c121SKalle Valo {
2694e705c121SKalle Valo 	struct iwl_trans *trans = file->private_data;
2695e705c121SKalle Valo 	char *buf = NULL;
2696e705c121SKalle Valo 	ssize_t ret;
2697e705c121SKalle Valo 
2698e705c121SKalle Valo 	ret = iwl_dump_fh(trans, &buf);
2699e705c121SKalle Valo 	if (ret < 0)
2700e705c121SKalle Valo 		return ret;
2701e705c121SKalle Valo 	if (!buf)
2702e705c121SKalle Valo 		return -EINVAL;
2703e705c121SKalle Valo 	ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
2704e705c121SKalle Valo 	kfree(buf);
2705e705c121SKalle Valo 	return ret;
2706e705c121SKalle Valo }
2707e705c121SKalle Valo 
2708fa4de7f7SJohannes Berg static ssize_t iwl_dbgfs_rfkill_read(struct file *file,
2709fa4de7f7SJohannes Berg 				     char __user *user_buf,
2710fa4de7f7SJohannes Berg 				     size_t count, loff_t *ppos)
2711fa4de7f7SJohannes Berg {
2712fa4de7f7SJohannes Berg 	struct iwl_trans *trans = file->private_data;
2713fa4de7f7SJohannes Berg 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2714fa4de7f7SJohannes Berg 	char buf[100];
2715fa4de7f7SJohannes Berg 	int pos;
2716fa4de7f7SJohannes Berg 
2717fa4de7f7SJohannes Berg 	pos = scnprintf(buf, sizeof(buf), "debug: %d\nhw: %d\n",
2718fa4de7f7SJohannes Berg 			trans_pcie->debug_rfkill,
2719fa4de7f7SJohannes Berg 			!(iwl_read32(trans, CSR_GP_CNTRL) &
2720fa4de7f7SJohannes Berg 				CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW));
2721fa4de7f7SJohannes Berg 
2722fa4de7f7SJohannes Berg 	return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2723fa4de7f7SJohannes Berg }
2724fa4de7f7SJohannes Berg 
2725fa4de7f7SJohannes Berg static ssize_t iwl_dbgfs_rfkill_write(struct file *file,
2726fa4de7f7SJohannes Berg 				      const char __user *user_buf,
2727fa4de7f7SJohannes Berg 				      size_t count, loff_t *ppos)
2728fa4de7f7SJohannes Berg {
2729fa4de7f7SJohannes Berg 	struct iwl_trans *trans = file->private_data;
2730fa4de7f7SJohannes Berg 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2731c5bf4fa1SJohannes Berg 	bool new_value;
2732fa4de7f7SJohannes Berg 	int ret;
2733fa4de7f7SJohannes Berg 
2734c5bf4fa1SJohannes Berg 	ret = kstrtobool_from_user(user_buf, count, &new_value);
2735fa4de7f7SJohannes Berg 	if (ret)
2736fa4de7f7SJohannes Berg 		return ret;
2737c5bf4fa1SJohannes Berg 	if (new_value == trans_pcie->debug_rfkill)
2738fa4de7f7SJohannes Berg 		return count;
2739fa4de7f7SJohannes Berg 	IWL_WARN(trans, "changing debug rfkill %d->%d\n",
2740c5bf4fa1SJohannes Berg 		 trans_pcie->debug_rfkill, new_value);
2741c5bf4fa1SJohannes Berg 	trans_pcie->debug_rfkill = new_value;
2742fa4de7f7SJohannes Berg 	iwl_pcie_handle_rfkill_irq(trans);
2743fa4de7f7SJohannes Berg 
2744fa4de7f7SJohannes Berg 	return count;
2745fa4de7f7SJohannes Berg }
2746fa4de7f7SJohannes Berg 
2747f7805b33SLior Cohen static int iwl_dbgfs_monitor_data_open(struct inode *inode,
2748f7805b33SLior Cohen 				       struct file *file)
2749f7805b33SLior Cohen {
2750f7805b33SLior Cohen 	struct iwl_trans *trans = inode->i_private;
2751f7805b33SLior Cohen 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2752f7805b33SLior Cohen 
275391c28b83SShahar S Matityahu 	if (!trans->dbg.dest_tlv ||
275491c28b83SShahar S Matityahu 	    trans->dbg.dest_tlv->monitor_mode != EXTERNAL_MODE) {
2755f7805b33SLior Cohen 		IWL_ERR(trans, "Debug destination is not set to DRAM\n");
2756f7805b33SLior Cohen 		return -ENOENT;
2757f7805b33SLior Cohen 	}
2758f7805b33SLior Cohen 
2759f7805b33SLior Cohen 	if (trans_pcie->fw_mon_data.state != IWL_FW_MON_DBGFS_STATE_CLOSED)
2760f7805b33SLior Cohen 		return -EBUSY;
2761f7805b33SLior Cohen 
2762f7805b33SLior Cohen 	trans_pcie->fw_mon_data.state = IWL_FW_MON_DBGFS_STATE_OPEN;
2763f7805b33SLior Cohen 	return simple_open(inode, file);
2764f7805b33SLior Cohen }
2765f7805b33SLior Cohen 
2766f7805b33SLior Cohen static int iwl_dbgfs_monitor_data_release(struct inode *inode,
2767f7805b33SLior Cohen 					  struct file *file)
2768f7805b33SLior Cohen {
2769f7805b33SLior Cohen 	struct iwl_trans_pcie *trans_pcie =
2770f7805b33SLior Cohen 		IWL_TRANS_GET_PCIE_TRANS(inode->i_private);
2771f7805b33SLior Cohen 
2772f7805b33SLior Cohen 	if (trans_pcie->fw_mon_data.state == IWL_FW_MON_DBGFS_STATE_OPEN)
2773f7805b33SLior Cohen 		trans_pcie->fw_mon_data.state = IWL_FW_MON_DBGFS_STATE_CLOSED;
2774f7805b33SLior Cohen 	return 0;
2775f7805b33SLior Cohen }
2776f7805b33SLior Cohen 
2777f7805b33SLior Cohen static bool iwl_write_to_user_buf(char __user *user_buf, ssize_t count,
2778f7805b33SLior Cohen 				  void *buf, ssize_t *size,
2779f7805b33SLior Cohen 				  ssize_t *bytes_copied)
2780f7805b33SLior Cohen {
2781f7805b33SLior Cohen 	int buf_size_left = count - *bytes_copied;
2782f7805b33SLior Cohen 
2783f7805b33SLior Cohen 	buf_size_left = buf_size_left - (buf_size_left % sizeof(u32));
2784f7805b33SLior Cohen 	if (*size > buf_size_left)
2785f7805b33SLior Cohen 		*size = buf_size_left;
2786f7805b33SLior Cohen 
2787f7805b33SLior Cohen 	*size -= copy_to_user(user_buf, buf, *size);
2788f7805b33SLior Cohen 	*bytes_copied += *size;
2789f7805b33SLior Cohen 
2790f7805b33SLior Cohen 	if (buf_size_left == *size)
2791f7805b33SLior Cohen 		return true;
2792f7805b33SLior Cohen 	return false;
2793f7805b33SLior Cohen }
2794f7805b33SLior Cohen 
2795f7805b33SLior Cohen static ssize_t iwl_dbgfs_monitor_data_read(struct file *file,
2796f7805b33SLior Cohen 					   char __user *user_buf,
2797f7805b33SLior Cohen 					   size_t count, loff_t *ppos)
2798f7805b33SLior Cohen {
2799f7805b33SLior Cohen 	struct iwl_trans *trans = file->private_data;
2800f7805b33SLior Cohen 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
280169f0e505SShahar S Matityahu 	void *cpu_addr = (void *)trans->dbg.fw_mon.block, *curr_buf;
2802f7805b33SLior Cohen 	struct cont_rec *data = &trans_pcie->fw_mon_data;
2803f7805b33SLior Cohen 	u32 write_ptr_addr, wrap_cnt_addr, write_ptr, wrap_cnt;
2804f7805b33SLior Cohen 	ssize_t size, bytes_copied = 0;
2805f7805b33SLior Cohen 	bool b_full;
2806f7805b33SLior Cohen 
280791c28b83SShahar S Matityahu 	if (trans->dbg.dest_tlv) {
2808f7805b33SLior Cohen 		write_ptr_addr =
280991c28b83SShahar S Matityahu 			le32_to_cpu(trans->dbg.dest_tlv->write_ptr_reg);
281091c28b83SShahar S Matityahu 		wrap_cnt_addr = le32_to_cpu(trans->dbg.dest_tlv->wrap_count);
2811f7805b33SLior Cohen 	} else {
2812f7805b33SLior Cohen 		write_ptr_addr = MON_BUFF_WRPTR;
2813f7805b33SLior Cohen 		wrap_cnt_addr = MON_BUFF_CYCLE_CNT;
2814f7805b33SLior Cohen 	}
2815f7805b33SLior Cohen 
281691c28b83SShahar S Matityahu 	if (unlikely(!trans->dbg.rec_on))
2817f7805b33SLior Cohen 		return 0;
2818f7805b33SLior Cohen 
2819f7805b33SLior Cohen 	mutex_lock(&data->mutex);
2820f7805b33SLior Cohen 	if (data->state ==
2821f7805b33SLior Cohen 	    IWL_FW_MON_DBGFS_STATE_DISABLED) {
2822f7805b33SLior Cohen 		mutex_unlock(&data->mutex);
2823f7805b33SLior Cohen 		return 0;
2824f7805b33SLior Cohen 	}
2825f7805b33SLior Cohen 
2826f7805b33SLior Cohen 	/* write_ptr position in bytes rather then DW */
2827f7805b33SLior Cohen 	write_ptr = iwl_read_prph(trans, write_ptr_addr) * sizeof(u32);
2828f7805b33SLior Cohen 	wrap_cnt = iwl_read_prph(trans, wrap_cnt_addr);
2829f7805b33SLior Cohen 
2830f7805b33SLior Cohen 	if (data->prev_wrap_cnt == wrap_cnt) {
2831f7805b33SLior Cohen 		size = write_ptr - data->prev_wr_ptr;
2832f7805b33SLior Cohen 		curr_buf = cpu_addr + data->prev_wr_ptr;
2833f7805b33SLior Cohen 		b_full = iwl_write_to_user_buf(user_buf, count,
2834f7805b33SLior Cohen 					       curr_buf, &size,
2835f7805b33SLior Cohen 					       &bytes_copied);
2836f7805b33SLior Cohen 		data->prev_wr_ptr += size;
2837f7805b33SLior Cohen 
2838f7805b33SLior Cohen 	} else if (data->prev_wrap_cnt == wrap_cnt - 1 &&
2839f7805b33SLior Cohen 		   write_ptr < data->prev_wr_ptr) {
284069f0e505SShahar S Matityahu 		size = trans->dbg.fw_mon.size - data->prev_wr_ptr;
2841f7805b33SLior Cohen 		curr_buf = cpu_addr + data->prev_wr_ptr;
2842f7805b33SLior Cohen 		b_full = iwl_write_to_user_buf(user_buf, count,
2843f7805b33SLior Cohen 					       curr_buf, &size,
2844f7805b33SLior Cohen 					       &bytes_copied);
2845f7805b33SLior Cohen 		data->prev_wr_ptr += size;
2846f7805b33SLior Cohen 
2847f7805b33SLior Cohen 		if (!b_full) {
2848f7805b33SLior Cohen 			size = write_ptr;
2849f7805b33SLior Cohen 			b_full = iwl_write_to_user_buf(user_buf, count,
2850f7805b33SLior Cohen 						       cpu_addr, &size,
2851f7805b33SLior Cohen 						       &bytes_copied);
2852f7805b33SLior Cohen 			data->prev_wr_ptr = size;
2853f7805b33SLior Cohen 			data->prev_wrap_cnt++;
2854f7805b33SLior Cohen 		}
2855f7805b33SLior Cohen 	} else {
2856f7805b33SLior Cohen 		if (data->prev_wrap_cnt == wrap_cnt - 1 &&
2857f7805b33SLior Cohen 		    write_ptr > data->prev_wr_ptr)
2858f7805b33SLior Cohen 			IWL_WARN(trans,
2859f7805b33SLior Cohen 				 "write pointer passed previous write pointer, start copying from the beginning\n");
2860f7805b33SLior Cohen 		else if (!unlikely(data->prev_wrap_cnt == 0 &&
2861f7805b33SLior Cohen 				   data->prev_wr_ptr == 0))
2862f7805b33SLior Cohen 			IWL_WARN(trans,
2863f7805b33SLior Cohen 				 "monitor data is out of sync, start copying from the beginning\n");
2864f7805b33SLior Cohen 
2865f7805b33SLior Cohen 		size = write_ptr;
2866f7805b33SLior Cohen 		b_full = iwl_write_to_user_buf(user_buf, count,
2867f7805b33SLior Cohen 					       cpu_addr, &size,
2868f7805b33SLior Cohen 					       &bytes_copied);
2869f7805b33SLior Cohen 		data->prev_wr_ptr = size;
2870f7805b33SLior Cohen 		data->prev_wrap_cnt = wrap_cnt;
2871f7805b33SLior Cohen 	}
2872f7805b33SLior Cohen 
2873f7805b33SLior Cohen 	mutex_unlock(&data->mutex);
2874f7805b33SLior Cohen 
2875f7805b33SLior Cohen 	return bytes_copied;
2876f7805b33SLior Cohen }
2877f7805b33SLior Cohen 
2878e705c121SKalle Valo DEBUGFS_READ_WRITE_FILE_OPS(interrupt);
2879e705c121SKalle Valo DEBUGFS_READ_FILE_OPS(fh_reg);
2880e705c121SKalle Valo DEBUGFS_READ_FILE_OPS(rx_queue);
2881e705c121SKalle Valo DEBUGFS_WRITE_FILE_OPS(csr);
2882fa4de7f7SJohannes Berg DEBUGFS_READ_WRITE_FILE_OPS(rfkill);
2883df67a1beSJohannes Berg static const struct file_operations iwl_dbgfs_tx_queue_ops = {
2884df67a1beSJohannes Berg 	.owner = THIS_MODULE,
2885df67a1beSJohannes Berg 	.open = iwl_dbgfs_tx_queue_open,
2886df67a1beSJohannes Berg 	.read = seq_read,
2887df67a1beSJohannes Berg 	.llseek = seq_lseek,
2888df67a1beSJohannes Berg 	.release = seq_release_private,
2889df67a1beSJohannes Berg };
2890e705c121SKalle Valo 
2891f7805b33SLior Cohen static const struct file_operations iwl_dbgfs_monitor_data_ops = {
2892f7805b33SLior Cohen 	.read = iwl_dbgfs_monitor_data_read,
2893f7805b33SLior Cohen 	.open = iwl_dbgfs_monitor_data_open,
2894f7805b33SLior Cohen 	.release = iwl_dbgfs_monitor_data_release,
2895f7805b33SLior Cohen };
2896f7805b33SLior Cohen 
2897f8a1edb7SJohannes Berg /* Create the debugfs files and directories */
2898cf5d5663SGreg Kroah-Hartman void iwl_trans_pcie_dbgfs_register(struct iwl_trans *trans)
2899e705c121SKalle Valo {
2900f8a1edb7SJohannes Berg 	struct dentry *dir = trans->dbgfs_dir;
2901f8a1edb7SJohannes Berg 
29022ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(rx_queue, dir, 0400);
29032ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(tx_queue, dir, 0400);
29042ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(interrupt, dir, 0600);
29052ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(csr, dir, 0200);
29062ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(fh_reg, dir, 0400);
29072ef00c53SJoe Perches 	DEBUGFS_ADD_FILE(rfkill, dir, 0600);
2908f7805b33SLior Cohen 	DEBUGFS_ADD_FILE(monitor_data, dir, 0400);
2909e705c121SKalle Valo }
2910f7805b33SLior Cohen 
2911f7805b33SLior Cohen static void iwl_trans_pcie_debugfs_cleanup(struct iwl_trans *trans)
2912f7805b33SLior Cohen {
2913f7805b33SLior Cohen 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2914f7805b33SLior Cohen 	struct cont_rec *data = &trans_pcie->fw_mon_data;
2915f7805b33SLior Cohen 
2916f7805b33SLior Cohen 	mutex_lock(&data->mutex);
2917f7805b33SLior Cohen 	data->state = IWL_FW_MON_DBGFS_STATE_DISABLED;
2918f7805b33SLior Cohen 	mutex_unlock(&data->mutex);
2919f7805b33SLior Cohen }
2920e705c121SKalle Valo #endif /*CONFIG_IWLWIFI_DEBUGFS */
2921e705c121SKalle Valo 
29226983ba69SSara Sharon static u32 iwl_trans_pcie_get_cmdlen(struct iwl_trans *trans, void *tfd)
2923e705c121SKalle Valo {
2924e705c121SKalle Valo 	u32 cmdlen = 0;
2925e705c121SKalle Valo 	int i;
2926e705c121SKalle Valo 
2927885375d0SMordechay Goodstein 	for (i = 0; i < trans->txqs.tfd.max_tbs; i++)
29280179bfffSMordechay Goodstein 		cmdlen += iwl_txq_gen1_tfd_tb_get_len(trans, tfd, i);
2929e705c121SKalle Valo 
2930e705c121SKalle Valo 	return cmdlen;
2931e705c121SKalle Valo }
2932e705c121SKalle Valo 
2933e705c121SKalle Valo static u32 iwl_trans_pcie_dump_rbs(struct iwl_trans *trans,
2934e705c121SKalle Valo 				   struct iwl_fw_error_dump_data **data,
2935e705c121SKalle Valo 				   int allocated_rb_nums)
2936e705c121SKalle Valo {
2937e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
293880084e35SJohannes Berg 	int max_len = trans_pcie->rx_buf_bytes;
293978485054SSara Sharon 	/* Dump RBs is supported only for pre-9000 devices (1 queue) */
294078485054SSara Sharon 	struct iwl_rxq *rxq = &trans_pcie->rxq[0];
2941e705c121SKalle Valo 	u32 i, r, j, rb_len = 0;
2942e705c121SKalle Valo 
2943e705c121SKalle Valo 	spin_lock(&rxq->lock);
2944e705c121SKalle Valo 
29450307c839SGolan Ben Ami 	r = le16_to_cpu(iwl_get_closed_rb_stts(trans, rxq)) & 0x0FFF;
2946e705c121SKalle Valo 
2947e705c121SKalle Valo 	for (i = rxq->read, j = 0;
2948e705c121SKalle Valo 	     i != r && j < allocated_rb_nums;
2949e705c121SKalle Valo 	     i = (i + 1) & RX_QUEUE_MASK, j++) {
2950e705c121SKalle Valo 		struct iwl_rx_mem_buffer *rxb = rxq->queue[i];
2951e705c121SKalle Valo 		struct iwl_fw_error_dump_rb *rb;
2952e705c121SKalle Valo 
2953e705c121SKalle Valo 		dma_unmap_page(trans->dev, rxb->page_dma, max_len,
2954e705c121SKalle Valo 			       DMA_FROM_DEVICE);
2955e705c121SKalle Valo 
2956e705c121SKalle Valo 		rb_len += sizeof(**data) + sizeof(*rb) + max_len;
2957e705c121SKalle Valo 
2958e705c121SKalle Valo 		(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_RB);
2959e705c121SKalle Valo 		(*data)->len = cpu_to_le32(sizeof(*rb) + max_len);
2960e705c121SKalle Valo 		rb = (void *)(*data)->data;
2961e705c121SKalle Valo 		rb->index = cpu_to_le32(i);
2962e705c121SKalle Valo 		memcpy(rb->data, page_address(rxb->page), max_len);
2963e705c121SKalle Valo 		/* remap the page for the free benefit */
2964cfdc20efSJohannes Berg 		rxb->page_dma = dma_map_page(trans->dev, rxb->page,
2965cfdc20efSJohannes Berg 					     rxb->offset, max_len,
2966e705c121SKalle Valo 					     DMA_FROM_DEVICE);
2967e705c121SKalle Valo 
2968e705c121SKalle Valo 		*data = iwl_fw_error_next_data(*data);
2969e705c121SKalle Valo 	}
2970e705c121SKalle Valo 
2971e705c121SKalle Valo 	spin_unlock(&rxq->lock);
2972e705c121SKalle Valo 
2973e705c121SKalle Valo 	return rb_len;
2974e705c121SKalle Valo }
2975e705c121SKalle Valo #define IWL_CSR_TO_DUMP (0x250)
2976e705c121SKalle Valo 
2977e705c121SKalle Valo static u32 iwl_trans_pcie_dump_csr(struct iwl_trans *trans,
2978e705c121SKalle Valo 				   struct iwl_fw_error_dump_data **data)
2979e705c121SKalle Valo {
2980e705c121SKalle Valo 	u32 csr_len = sizeof(**data) + IWL_CSR_TO_DUMP;
2981e705c121SKalle Valo 	__le32 *val;
2982e705c121SKalle Valo 	int i;
2983e705c121SKalle Valo 
2984e705c121SKalle Valo 	(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_CSR);
2985e705c121SKalle Valo 	(*data)->len = cpu_to_le32(IWL_CSR_TO_DUMP);
2986e705c121SKalle Valo 	val = (void *)(*data)->data;
2987e705c121SKalle Valo 
2988e705c121SKalle Valo 	for (i = 0; i < IWL_CSR_TO_DUMP; i += 4)
2989e705c121SKalle Valo 		*val++ = cpu_to_le32(iwl_trans_pcie_read32(trans, i));
2990e705c121SKalle Valo 
2991e705c121SKalle Valo 	*data = iwl_fw_error_next_data(*data);
2992e705c121SKalle Valo 
2993e705c121SKalle Valo 	return csr_len;
2994e705c121SKalle Valo }
2995e705c121SKalle Valo 
2996e705c121SKalle Valo static u32 iwl_trans_pcie_fh_regs_dump(struct iwl_trans *trans,
2997e705c121SKalle Valo 				       struct iwl_fw_error_dump_data **data)
2998e705c121SKalle Valo {
2999e705c121SKalle Valo 	u32 fh_regs_len = FH_MEM_UPPER_BOUND - FH_MEM_LOWER_BOUND;
3000e705c121SKalle Valo 	unsigned long flags;
3001e705c121SKalle Valo 	__le32 *val;
3002e705c121SKalle Valo 	int i;
3003e705c121SKalle Valo 
300423ba9340SEmmanuel Grumbach 	if (!iwl_trans_grab_nic_access(trans, &flags))
3005e705c121SKalle Valo 		return 0;
3006e705c121SKalle Valo 
3007e705c121SKalle Valo 	(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_FH_REGS);
3008e705c121SKalle Valo 	(*data)->len = cpu_to_le32(fh_regs_len);
3009e705c121SKalle Valo 	val = (void *)(*data)->data;
3010e705c121SKalle Valo 
3011286ca8ebSLuca Coelho 	if (!trans->trans_cfg->gen2)
3012723b45e2SLiad Kaufman 		for (i = FH_MEM_LOWER_BOUND; i < FH_MEM_UPPER_BOUND;
3013723b45e2SLiad Kaufman 		     i += sizeof(u32))
3014e705c121SKalle Valo 			*val++ = cpu_to_le32(iwl_trans_pcie_read32(trans, i));
3015723b45e2SLiad Kaufman 	else
3016ea695b7cSShaul Triebitz 		for (i = iwl_umac_prph(trans, FH_MEM_LOWER_BOUND_GEN2);
3017ea695b7cSShaul Triebitz 		     i < iwl_umac_prph(trans, FH_MEM_UPPER_BOUND_GEN2);
3018723b45e2SLiad Kaufman 		     i += sizeof(u32))
3019723b45e2SLiad Kaufman 			*val++ = cpu_to_le32(iwl_trans_pcie_read_prph(trans,
3020723b45e2SLiad Kaufman 								      i));
3021e705c121SKalle Valo 
3022e705c121SKalle Valo 	iwl_trans_release_nic_access(trans, &flags);
3023e705c121SKalle Valo 
3024e705c121SKalle Valo 	*data = iwl_fw_error_next_data(*data);
3025e705c121SKalle Valo 
3026e705c121SKalle Valo 	return sizeof(**data) + fh_regs_len;
3027e705c121SKalle Valo }
3028e705c121SKalle Valo 
3029e705c121SKalle Valo static u32
3030e705c121SKalle Valo iwl_trans_pci_dump_marbh_monitor(struct iwl_trans *trans,
3031e705c121SKalle Valo 				 struct iwl_fw_error_dump_fw_mon *fw_mon_data,
3032e705c121SKalle Valo 				 u32 monitor_len)
3033e705c121SKalle Valo {
3034e705c121SKalle Valo 	u32 buf_size_in_dwords = (monitor_len >> 2);
3035e705c121SKalle Valo 	u32 *buffer = (u32 *)fw_mon_data->data;
3036e705c121SKalle Valo 	unsigned long flags;
3037e705c121SKalle Valo 	u32 i;
3038e705c121SKalle Valo 
303923ba9340SEmmanuel Grumbach 	if (!iwl_trans_grab_nic_access(trans, &flags))
3040e705c121SKalle Valo 		return 0;
3041e705c121SKalle Valo 
3042ea695b7cSShaul Triebitz 	iwl_write_umac_prph_no_grab(trans, MON_DMARB_RD_CTL_ADDR, 0x1);
3043e705c121SKalle Valo 	for (i = 0; i < buf_size_in_dwords; i++)
3044ea695b7cSShaul Triebitz 		buffer[i] = iwl_read_umac_prph_no_grab(trans,
304514ef1b43SGolan Ben-Ami 						       MON_DMARB_RD_DATA_ADDR);
3046ea695b7cSShaul Triebitz 	iwl_write_umac_prph_no_grab(trans, MON_DMARB_RD_CTL_ADDR, 0x0);
3047e705c121SKalle Valo 
3048e705c121SKalle Valo 	iwl_trans_release_nic_access(trans, &flags);
3049e705c121SKalle Valo 
3050e705c121SKalle Valo 	return monitor_len;
3051e705c121SKalle Valo }
3052e705c121SKalle Valo 
30537a14c23dSSara Sharon static void
30547a14c23dSSara Sharon iwl_trans_pcie_dump_pointers(struct iwl_trans *trans,
30557a14c23dSSara Sharon 			     struct iwl_fw_error_dump_fw_mon *fw_mon_data)
30567a14c23dSSara Sharon {
3057c88580e1SShahar S Matityahu 	u32 base, base_high, write_ptr, write_ptr_val, wrap_cnt;
30587a14c23dSSara Sharon 
3059286ca8ebSLuca Coelho 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) {
3060c88580e1SShahar S Matityahu 		base = DBGC_CUR_DBGBUF_BASE_ADDR_LSB;
3061c88580e1SShahar S Matityahu 		base_high = DBGC_CUR_DBGBUF_BASE_ADDR_MSB;
3062c88580e1SShahar S Matityahu 		write_ptr = DBGC_CUR_DBGBUF_STATUS;
3063c88580e1SShahar S Matityahu 		wrap_cnt = DBGC_DBGBUF_WRAP_AROUND;
306491c28b83SShahar S Matityahu 	} else if (trans->dbg.dest_tlv) {
306591c28b83SShahar S Matityahu 		write_ptr = le32_to_cpu(trans->dbg.dest_tlv->write_ptr_reg);
306691c28b83SShahar S Matityahu 		wrap_cnt = le32_to_cpu(trans->dbg.dest_tlv->wrap_count);
306791c28b83SShahar S Matityahu 		base = le32_to_cpu(trans->dbg.dest_tlv->base_reg);
30687a14c23dSSara Sharon 	} else {
30697a14c23dSSara Sharon 		base = MON_BUFF_BASE_ADDR;
30707a14c23dSSara Sharon 		write_ptr = MON_BUFF_WRPTR;
30717a14c23dSSara Sharon 		wrap_cnt = MON_BUFF_CYCLE_CNT;
30727a14c23dSSara Sharon 	}
3073c88580e1SShahar S Matityahu 
3074c88580e1SShahar S Matityahu 	write_ptr_val = iwl_read_prph(trans, write_ptr);
30757a14c23dSSara Sharon 	fw_mon_data->fw_mon_cycle_cnt =
30767a14c23dSSara Sharon 		cpu_to_le32(iwl_read_prph(trans, wrap_cnt));
30777a14c23dSSara Sharon 	fw_mon_data->fw_mon_base_ptr =
30787a14c23dSSara Sharon 		cpu_to_le32(iwl_read_prph(trans, base));
3079286ca8ebSLuca Coelho 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) {
3080c88580e1SShahar S Matityahu 		fw_mon_data->fw_mon_base_high_ptr =
3081c88580e1SShahar S Matityahu 			cpu_to_le32(iwl_read_prph(trans, base_high));
3082c88580e1SShahar S Matityahu 		write_ptr_val &= DBGC_CUR_DBGBUF_STATUS_OFFSET_MSK;
3083cc598782SRotem Saado 		/* convert wrtPtr to DWs, to align with all HWs */
3084cc598782SRotem Saado 		write_ptr_val >>= 2;
3085c88580e1SShahar S Matityahu 	}
3086c88580e1SShahar S Matityahu 	fw_mon_data->fw_mon_wr_ptr = cpu_to_le32(write_ptr_val);
30877a14c23dSSara Sharon }
30887a14c23dSSara Sharon 
3089e705c121SKalle Valo static u32
3090e705c121SKalle Valo iwl_trans_pcie_dump_monitor(struct iwl_trans *trans,
3091e705c121SKalle Valo 			    struct iwl_fw_error_dump_data **data,
3092e705c121SKalle Valo 			    u32 monitor_len)
3093e705c121SKalle Valo {
309469f0e505SShahar S Matityahu 	struct iwl_dram_data *fw_mon = &trans->dbg.fw_mon;
3095e705c121SKalle Valo 	u32 len = 0;
3096e705c121SKalle Valo 
309791c28b83SShahar S Matityahu 	if (trans->dbg.dest_tlv ||
309869f0e505SShahar S Matityahu 	    (fw_mon->size &&
3099286ca8ebSLuca Coelho 	     (trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_7000 ||
3100286ca8ebSLuca Coelho 	      trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210))) {
3101e705c121SKalle Valo 		struct iwl_fw_error_dump_fw_mon *fw_mon_data;
3102e705c121SKalle Valo 
3103e705c121SKalle Valo 		(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_FW_MONITOR);
3104e705c121SKalle Valo 		fw_mon_data = (void *)(*data)->data;
31057a14c23dSSara Sharon 
31067a14c23dSSara Sharon 		iwl_trans_pcie_dump_pointers(trans, fw_mon_data);
3107e705c121SKalle Valo 
3108e705c121SKalle Valo 		len += sizeof(**data) + sizeof(*fw_mon_data);
310969f0e505SShahar S Matityahu 		if (fw_mon->size) {
311069f0e505SShahar S Matityahu 			memcpy(fw_mon_data->data, fw_mon->block, fw_mon->size);
311169f0e505SShahar S Matityahu 			monitor_len = fw_mon->size;
311291c28b83SShahar S Matityahu 		} else if (trans->dbg.dest_tlv->monitor_mode == SMEM_MODE) {
31137a14c23dSSara Sharon 			u32 base = le32_to_cpu(fw_mon_data->fw_mon_base_ptr);
3114e705c121SKalle Valo 			/*
3115e705c121SKalle Valo 			 * Update pointers to reflect actual values after
3116e705c121SKalle Valo 			 * shifting
3117e705c121SKalle Valo 			 */
311891c28b83SShahar S Matityahu 			if (trans->dbg.dest_tlv->version) {
3119fd527eb5SGolan Ben Ami 				base = (iwl_read_prph(trans, base) &
3120fd527eb5SGolan Ben Ami 					IWL_LDBG_M2S_BUF_BA_MSK) <<
312191c28b83SShahar S Matityahu 				       trans->dbg.dest_tlv->base_shift;
3122fd527eb5SGolan Ben Ami 				base *= IWL_M2S_UNIT_SIZE;
3123fd527eb5SGolan Ben Ami 				base += trans->cfg->smem_offset;
3124fd527eb5SGolan Ben Ami 			} else {
3125e705c121SKalle Valo 				base = iwl_read_prph(trans, base) <<
312691c28b83SShahar S Matityahu 				       trans->dbg.dest_tlv->base_shift;
3127fd527eb5SGolan Ben Ami 			}
3128fd527eb5SGolan Ben Ami 
3129e705c121SKalle Valo 			iwl_trans_read_mem(trans, base, fw_mon_data->data,
3130e705c121SKalle Valo 					   monitor_len / sizeof(u32));
313191c28b83SShahar S Matityahu 		} else if (trans->dbg.dest_tlv->monitor_mode == MARBH_MODE) {
3132e705c121SKalle Valo 			monitor_len =
3133e705c121SKalle Valo 				iwl_trans_pci_dump_marbh_monitor(trans,
3134e705c121SKalle Valo 								 fw_mon_data,
3135e705c121SKalle Valo 								 monitor_len);
3136e705c121SKalle Valo 		} else {
3137e705c121SKalle Valo 			/* Didn't match anything - output no monitor data */
3138e705c121SKalle Valo 			monitor_len = 0;
3139e705c121SKalle Valo 		}
3140e705c121SKalle Valo 
3141e705c121SKalle Valo 		len += monitor_len;
3142e705c121SKalle Valo 		(*data)->len = cpu_to_le32(monitor_len + sizeof(*fw_mon_data));
3143e705c121SKalle Valo 	}
3144e705c121SKalle Valo 
3145e705c121SKalle Valo 	return len;
3146e705c121SKalle Valo }
3147e705c121SKalle Valo 
314893079fd5SJohannes Berg static int iwl_trans_get_fw_monitor_len(struct iwl_trans *trans, u32 *len)
3149e705c121SKalle Valo {
315069f0e505SShahar S Matityahu 	if (trans->dbg.fw_mon.size) {
3151da752717SShahar S Matityahu 		*len += sizeof(struct iwl_fw_error_dump_data) +
3152da752717SShahar S Matityahu 			sizeof(struct iwl_fw_error_dump_fw_mon) +
315369f0e505SShahar S Matityahu 			trans->dbg.fw_mon.size;
315469f0e505SShahar S Matityahu 		return trans->dbg.fw_mon.size;
315591c28b83SShahar S Matityahu 	} else if (trans->dbg.dest_tlv) {
3156da752717SShahar S Matityahu 		u32 base, end, cfg_reg, monitor_len;
3157e705c121SKalle Valo 
315891c28b83SShahar S Matityahu 		if (trans->dbg.dest_tlv->version == 1) {
315991c28b83SShahar S Matityahu 			cfg_reg = le32_to_cpu(trans->dbg.dest_tlv->base_reg);
3160fd527eb5SGolan Ben Ami 			cfg_reg = iwl_read_prph(trans, cfg_reg);
3161fd527eb5SGolan Ben Ami 			base = (cfg_reg & IWL_LDBG_M2S_BUF_BA_MSK) <<
316291c28b83SShahar S Matityahu 				trans->dbg.dest_tlv->base_shift;
3163fd527eb5SGolan Ben Ami 			base *= IWL_M2S_UNIT_SIZE;
3164fd527eb5SGolan Ben Ami 			base += trans->cfg->smem_offset;
3165fd527eb5SGolan Ben Ami 
3166fd527eb5SGolan Ben Ami 			monitor_len =
3167fd527eb5SGolan Ben Ami 				(cfg_reg & IWL_LDBG_M2S_BUF_SIZE_MSK) >>
316891c28b83SShahar S Matityahu 				trans->dbg.dest_tlv->end_shift;
3169fd527eb5SGolan Ben Ami 			monitor_len *= IWL_M2S_UNIT_SIZE;
3170fd527eb5SGolan Ben Ami 		} else {
317191c28b83SShahar S Matityahu 			base = le32_to_cpu(trans->dbg.dest_tlv->base_reg);
317291c28b83SShahar S Matityahu 			end = le32_to_cpu(trans->dbg.dest_tlv->end_reg);
3173e705c121SKalle Valo 
3174e705c121SKalle Valo 			base = iwl_read_prph(trans, base) <<
317591c28b83SShahar S Matityahu 			       trans->dbg.dest_tlv->base_shift;
3176e705c121SKalle Valo 			end = iwl_read_prph(trans, end) <<
317791c28b83SShahar S Matityahu 			      trans->dbg.dest_tlv->end_shift;
3178e705c121SKalle Valo 
3179e705c121SKalle Valo 			/* Make "end" point to the actual end */
3180286ca8ebSLuca Coelho 			if (trans->trans_cfg->device_family >=
3181fd527eb5SGolan Ben Ami 			    IWL_DEVICE_FAMILY_8000 ||
318291c28b83SShahar S Matityahu 			    trans->dbg.dest_tlv->monitor_mode == MARBH_MODE)
318391c28b83SShahar S Matityahu 				end += (1 << trans->dbg.dest_tlv->end_shift);
3184e705c121SKalle Valo 			monitor_len = end - base;
3185fd527eb5SGolan Ben Ami 		}
3186da752717SShahar S Matityahu 		*len += sizeof(struct iwl_fw_error_dump_data) +
3187da752717SShahar S Matityahu 			sizeof(struct iwl_fw_error_dump_fw_mon) +
3188e705c121SKalle Valo 			monitor_len;
3189da752717SShahar S Matityahu 		return monitor_len;
3190e705c121SKalle Valo 	}
3191da752717SShahar S Matityahu 	return 0;
3192da752717SShahar S Matityahu }
3193da752717SShahar S Matityahu 
3194da752717SShahar S Matityahu static struct iwl_trans_dump_data
3195da752717SShahar S Matityahu *iwl_trans_pcie_dump_data(struct iwl_trans *trans,
319679f033f6SSara Sharon 			  u32 dump_mask)
3197da752717SShahar S Matityahu {
3198da752717SShahar S Matityahu 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
3199da752717SShahar S Matityahu 	struct iwl_fw_error_dump_data *data;
32004f4822b7SMordechay Goodstein 	struct iwl_txq *cmdq = trans->txqs.txq[trans->txqs.cmd.q_id];
3201da752717SShahar S Matityahu 	struct iwl_fw_error_dump_txcmd *txcmd;
3202da752717SShahar S Matityahu 	struct iwl_trans_dump_data *dump_data;
3203fefbf853SShahar S Matityahu 	u32 len, num_rbs = 0, monitor_len = 0;
3204da752717SShahar S Matityahu 	int i, ptr;
3205da752717SShahar S Matityahu 	bool dump_rbs = test_bit(STATUS_FW_ERROR, &trans->status) &&
3206286ca8ebSLuca Coelho 			!trans->trans_cfg->mq_rx_supported &&
320779f033f6SSara Sharon 			dump_mask & BIT(IWL_FW_ERROR_DUMP_RB);
320879f033f6SSara Sharon 
320979f033f6SSara Sharon 	if (!dump_mask)
321079f033f6SSara Sharon 		return NULL;
3211da752717SShahar S Matityahu 
3212da752717SShahar S Matityahu 	/* transport dump header */
3213da752717SShahar S Matityahu 	len = sizeof(*dump_data);
3214da752717SShahar S Matityahu 
3215da752717SShahar S Matityahu 	/* host commands */
3216e4eee943SShahar S Matityahu 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_TXCMD) && cmdq)
3217da752717SShahar S Matityahu 		len += sizeof(*data) +
32188672aad3SShahar S Matityahu 			cmdq->n_window * (sizeof(*txcmd) +
32198672aad3SShahar S Matityahu 					  TFD_MAX_PAYLOAD_SIZE);
3220da752717SShahar S Matityahu 
3221da752717SShahar S Matityahu 	/* FW monitor */
3222fefbf853SShahar S Matityahu 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FW_MONITOR))
3223da752717SShahar S Matityahu 		monitor_len = iwl_trans_get_fw_monitor_len(trans, &len);
3224e705c121SKalle Valo 
3225e705c121SKalle Valo 	/* CSR registers */
322679f033f6SSara Sharon 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_CSR))
3227e705c121SKalle Valo 		len += sizeof(*data) + IWL_CSR_TO_DUMP;
3228e705c121SKalle Valo 
3229e705c121SKalle Valo 	/* FH registers */
323079f033f6SSara Sharon 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FH_REGS)) {
3231286ca8ebSLuca Coelho 		if (trans->trans_cfg->gen2)
3232723b45e2SLiad Kaufman 			len += sizeof(*data) +
3233ea695b7cSShaul Triebitz 			       (iwl_umac_prph(trans, FH_MEM_UPPER_BOUND_GEN2) -
3234ea695b7cSShaul Triebitz 				iwl_umac_prph(trans, FH_MEM_LOWER_BOUND_GEN2));
3235723b45e2SLiad Kaufman 		else
3236723b45e2SLiad Kaufman 			len += sizeof(*data) +
3237520f03eaSShahar S Matityahu 			       (FH_MEM_UPPER_BOUND -
3238520f03eaSShahar S Matityahu 				FH_MEM_LOWER_BOUND);
3239520f03eaSShahar S Matityahu 	}
3240e705c121SKalle Valo 
3241e705c121SKalle Valo 	if (dump_rbs) {
324278485054SSara Sharon 		/* Dump RBs is supported only for pre-9000 devices (1 queue) */
324378485054SSara Sharon 		struct iwl_rxq *rxq = &trans_pcie->rxq[0];
3244e705c121SKalle Valo 		/* RBs */
32450307c839SGolan Ben Ami 		num_rbs =
32460307c839SGolan Ben Ami 			le16_to_cpu(iwl_get_closed_rb_stts(trans, rxq))
3247e705c121SKalle Valo 			& 0x0FFF;
324878485054SSara Sharon 		num_rbs = (num_rbs - rxq->read) & RX_QUEUE_MASK;
3249e705c121SKalle Valo 		len += num_rbs * (sizeof(*data) +
3250e705c121SKalle Valo 				  sizeof(struct iwl_fw_error_dump_rb) +
3251e705c121SKalle Valo 				  (PAGE_SIZE << trans_pcie->rx_page_order));
3252e705c121SKalle Valo 	}
3253e705c121SKalle Valo 
32545538409bSLiad Kaufman 	/* Paged memory for gen2 HW */
3255286ca8ebSLuca Coelho 	if (trans->trans_cfg->gen2 && dump_mask & BIT(IWL_FW_ERROR_DUMP_PAGING))
3256505a00c0SShahar S Matityahu 		for (i = 0; i < trans->init_dram.paging_cnt; i++)
32575538409bSLiad Kaufman 			len += sizeof(*data) +
32585538409bSLiad Kaufman 			       sizeof(struct iwl_fw_error_dump_paging) +
3259505a00c0SShahar S Matityahu 			       trans->init_dram.paging[i].size;
32605538409bSLiad Kaufman 
3261e705c121SKalle Valo 	dump_data = vzalloc(len);
3262e705c121SKalle Valo 	if (!dump_data)
3263e705c121SKalle Valo 		return NULL;
3264e705c121SKalle Valo 
3265e705c121SKalle Valo 	len = 0;
3266e705c121SKalle Valo 	data = (void *)dump_data->data;
3267520f03eaSShahar S Matityahu 
3268e4eee943SShahar S Matityahu 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_TXCMD) && cmdq) {
3269885375d0SMordechay Goodstein 		u16 tfd_size = trans->txqs.tfd.size;
3270520f03eaSShahar S Matityahu 
3271e705c121SKalle Valo 		data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_TXCMD);
3272e705c121SKalle Valo 		txcmd = (void *)data->data;
3273e705c121SKalle Valo 		spin_lock_bh(&cmdq->lock);
3274bb98ecd4SSara Sharon 		ptr = cmdq->write_ptr;
3275bb98ecd4SSara Sharon 		for (i = 0; i < cmdq->n_window; i++) {
32760cd1ad2dSMordechay Goodstein 			u8 idx = iwl_txq_get_cmd_index(cmdq, ptr);
327708326a97SJohannes Berg 			u8 tfdidx;
3278e705c121SKalle Valo 			u32 caplen, cmdlen;
3279e705c121SKalle Valo 
328008326a97SJohannes Berg 			if (trans->trans_cfg->use_tfh)
328108326a97SJohannes Berg 				tfdidx = idx;
328208326a97SJohannes Berg 			else
328308326a97SJohannes Berg 				tfdidx = ptr;
328408326a97SJohannes Berg 
3285520f03eaSShahar S Matityahu 			cmdlen = iwl_trans_pcie_get_cmdlen(trans,
328608326a97SJohannes Berg 							   (u8 *)cmdq->tfds +
328708326a97SJohannes Berg 							   tfd_size * tfdidx);
3288e705c121SKalle Valo 			caplen = min_t(u32, TFD_MAX_PAYLOAD_SIZE, cmdlen);
3289e705c121SKalle Valo 
3290e705c121SKalle Valo 			if (cmdlen) {
3291e705c121SKalle Valo 				len += sizeof(*txcmd) + caplen;
3292e705c121SKalle Valo 				txcmd->cmdlen = cpu_to_le32(cmdlen);
3293e705c121SKalle Valo 				txcmd->caplen = cpu_to_le32(caplen);
3294520f03eaSShahar S Matityahu 				memcpy(txcmd->data, cmdq->entries[idx].cmd,
3295520f03eaSShahar S Matityahu 				       caplen);
3296e705c121SKalle Valo 				txcmd = (void *)((u8 *)txcmd->data + caplen);
3297e705c121SKalle Valo 			}
3298e705c121SKalle Valo 
32990cd1ad2dSMordechay Goodstein 			ptr = iwl_txq_dec_wrap(trans, ptr);
3300e705c121SKalle Valo 		}
3301e705c121SKalle Valo 		spin_unlock_bh(&cmdq->lock);
3302e705c121SKalle Valo 
3303e705c121SKalle Valo 		data->len = cpu_to_le32(len);
3304e705c121SKalle Valo 		len += sizeof(*data);
3305e705c121SKalle Valo 		data = iwl_fw_error_next_data(data);
3306520f03eaSShahar S Matityahu 	}
3307e705c121SKalle Valo 
330879f033f6SSara Sharon 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_CSR))
3309e705c121SKalle Valo 		len += iwl_trans_pcie_dump_csr(trans, &data);
331079f033f6SSara Sharon 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FH_REGS))
3311e705c121SKalle Valo 		len += iwl_trans_pcie_fh_regs_dump(trans, &data);
3312e705c121SKalle Valo 	if (dump_rbs)
3313e705c121SKalle Valo 		len += iwl_trans_pcie_dump_rbs(trans, &data, num_rbs);
3314e705c121SKalle Valo 
33155538409bSLiad Kaufman 	/* Paged memory for gen2 HW */
3316286ca8ebSLuca Coelho 	if (trans->trans_cfg->gen2 &&
331779b6c8feSLuca Coelho 	    dump_mask & BIT(IWL_FW_ERROR_DUMP_PAGING)) {
3318505a00c0SShahar S Matityahu 		for (i = 0; i < trans->init_dram.paging_cnt; i++) {
33195538409bSLiad Kaufman 			struct iwl_fw_error_dump_paging *paging;
3320505a00c0SShahar S Matityahu 			u32 page_len = trans->init_dram.paging[i].size;
33215538409bSLiad Kaufman 
33225538409bSLiad Kaufman 			data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_PAGING);
33235538409bSLiad Kaufman 			data->len = cpu_to_le32(sizeof(*paging) + page_len);
33245538409bSLiad Kaufman 			paging = (void *)data->data;
33255538409bSLiad Kaufman 			paging->index = cpu_to_le32(i);
33265538409bSLiad Kaufman 			memcpy(paging->data,
3327505a00c0SShahar S Matityahu 			       trans->init_dram.paging[i].block, page_len);
33285538409bSLiad Kaufman 			data = iwl_fw_error_next_data(data);
33295538409bSLiad Kaufman 
33305538409bSLiad Kaufman 			len += sizeof(*data) + sizeof(*paging) + page_len;
33315538409bSLiad Kaufman 		}
33325538409bSLiad Kaufman 	}
333379f033f6SSara Sharon 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FW_MONITOR))
3334e705c121SKalle Valo 		len += iwl_trans_pcie_dump_monitor(trans, &data, monitor_len);
3335e705c121SKalle Valo 
3336e705c121SKalle Valo 	dump_data->len = len;
3337e705c121SKalle Valo 
3338e705c121SKalle Valo 	return dump_data;
3339e705c121SKalle Valo }
3340e705c121SKalle Valo 
33414cbb8e50SLuciano Coelho #ifdef CONFIG_PM_SLEEP
33424cbb8e50SLuciano Coelho static int iwl_trans_pcie_suspend(struct iwl_trans *trans)
33434cbb8e50SLuciano Coelho {
33444cbb8e50SLuciano Coelho 	return 0;
33454cbb8e50SLuciano Coelho }
33464cbb8e50SLuciano Coelho 
33474cbb8e50SLuciano Coelho static void iwl_trans_pcie_resume(struct iwl_trans *trans)
33484cbb8e50SLuciano Coelho {
33494cbb8e50SLuciano Coelho }
33504cbb8e50SLuciano Coelho #endif /* CONFIG_PM_SLEEP */
33514cbb8e50SLuciano Coelho 
3352623e7766SSara Sharon #define IWL_TRANS_COMMON_OPS						\
3353623e7766SSara Sharon 	.op_mode_leave = iwl_trans_pcie_op_mode_leave,			\
3354623e7766SSara Sharon 	.write8 = iwl_trans_pcie_write8,				\
3355623e7766SSara Sharon 	.write32 = iwl_trans_pcie_write32,				\
3356623e7766SSara Sharon 	.read32 = iwl_trans_pcie_read32,				\
3357623e7766SSara Sharon 	.read_prph = iwl_trans_pcie_read_prph,				\
3358623e7766SSara Sharon 	.write_prph = iwl_trans_pcie_write_prph,			\
3359623e7766SSara Sharon 	.read_mem = iwl_trans_pcie_read_mem,				\
3360623e7766SSara Sharon 	.write_mem = iwl_trans_pcie_write_mem,				\
33617f1fe1d4SLuca Coelho 	.read_config32 = iwl_trans_pcie_read_config32,			\
3362623e7766SSara Sharon 	.configure = iwl_trans_pcie_configure,				\
3363623e7766SSara Sharon 	.set_pmi = iwl_trans_pcie_set_pmi,				\
3364870c2a11SGolan Ben Ami 	.sw_reset = iwl_trans_pcie_sw_reset,				\
3365623e7766SSara Sharon 	.grab_nic_access = iwl_trans_pcie_grab_nic_access,		\
3366623e7766SSara Sharon 	.release_nic_access = iwl_trans_pcie_release_nic_access,	\
3367623e7766SSara Sharon 	.set_bits_mask = iwl_trans_pcie_set_bits_mask,			\
3368623e7766SSara Sharon 	.dump_data = iwl_trans_pcie_dump_data,				\
3369623e7766SSara Sharon 	.d3_suspend = iwl_trans_pcie_d3_suspend,			\
3370d1967ce6SShahar S Matityahu 	.d3_resume = iwl_trans_pcie_d3_resume,				\
3371d1967ce6SShahar S Matityahu 	.sync_nmi = iwl_trans_pcie_sync_nmi
3372623e7766SSara Sharon 
3373623e7766SSara Sharon #ifdef CONFIG_PM_SLEEP
3374623e7766SSara Sharon #define IWL_TRANS_PM_OPS						\
3375623e7766SSara Sharon 	.suspend = iwl_trans_pcie_suspend,				\
3376623e7766SSara Sharon 	.resume = iwl_trans_pcie_resume,
3377623e7766SSara Sharon #else
3378623e7766SSara Sharon #define IWL_TRANS_PM_OPS
3379623e7766SSara Sharon #endif /* CONFIG_PM_SLEEP */
3380623e7766SSara Sharon 
3381e705c121SKalle Valo static const struct iwl_trans_ops trans_ops_pcie = {
3382623e7766SSara Sharon 	IWL_TRANS_COMMON_OPS,
3383623e7766SSara Sharon 	IWL_TRANS_PM_OPS
3384e705c121SKalle Valo 	.start_hw = iwl_trans_pcie_start_hw,
3385e705c121SKalle Valo 	.fw_alive = iwl_trans_pcie_fw_alive,
3386e705c121SKalle Valo 	.start_fw = iwl_trans_pcie_start_fw,
3387e705c121SKalle Valo 	.stop_device = iwl_trans_pcie_stop_device,
3388e705c121SKalle Valo 
3389e705c121SKalle Valo 	.send_cmd = iwl_trans_pcie_send_hcmd,
3390e705c121SKalle Valo 
3391e705c121SKalle Valo 	.tx = iwl_trans_pcie_tx,
3392a4450980SMordechay Goodstein 	.reclaim = iwl_txq_reclaim,
3393e705c121SKalle Valo 
3394e705c121SKalle Valo 	.txq_disable = iwl_trans_pcie_txq_disable,
3395e705c121SKalle Valo 	.txq_enable = iwl_trans_pcie_txq_enable,
3396e705c121SKalle Valo 
339742db09c1SLiad Kaufman 	.txq_set_shared_mode = iwl_trans_pcie_txq_set_shared_mode,
339842db09c1SLiad Kaufman 
3399d6d517b7SSara Sharon 	.wait_tx_queues_empty = iwl_trans_pcie_wait_txqs_empty,
3400d6d517b7SSara Sharon 
3401a4450980SMordechay Goodstein 	.freeze_txq_timer = iwl_trans_txq_freeze_timer,
34020cd58eaaSEmmanuel Grumbach 	.block_txq_ptrs = iwl_trans_pcie_block_txq_ptrs,
3403f7805b33SLior Cohen #ifdef CONFIG_IWLWIFI_DEBUGFS
3404f7805b33SLior Cohen 	.debugfs_cleanup = iwl_trans_pcie_debugfs_cleanup,
3405f7805b33SLior Cohen #endif
3406623e7766SSara Sharon };
3407e705c121SKalle Valo 
3408623e7766SSara Sharon static const struct iwl_trans_ops trans_ops_pcie_gen2 = {
3409623e7766SSara Sharon 	IWL_TRANS_COMMON_OPS,
3410623e7766SSara Sharon 	IWL_TRANS_PM_OPS
3411623e7766SSara Sharon 	.start_hw = iwl_trans_pcie_start_hw,
3412eda50cdeSSara Sharon 	.fw_alive = iwl_trans_pcie_gen2_fw_alive,
3413eda50cdeSSara Sharon 	.start_fw = iwl_trans_pcie_gen2_start_fw,
341477c09bc8SSara Sharon 	.stop_device = iwl_trans_pcie_gen2_stop_device,
3415e705c121SKalle Valo 
3416ca60da2eSSara Sharon 	.send_cmd = iwl_trans_pcie_gen2_send_hcmd,
3417e705c121SKalle Valo 
34180cd1ad2dSMordechay Goodstein 	.tx = iwl_txq_gen2_tx,
3419a4450980SMordechay Goodstein 	.reclaim = iwl_txq_reclaim,
3420623e7766SSara Sharon 
3421a4450980SMordechay Goodstein 	.set_q_ptrs = iwl_txq_set_q_ptrs,
3422ba7136f3SAlex Malamud 
34230cd1ad2dSMordechay Goodstein 	.txq_alloc = iwl_txq_dyn_alloc,
34240cd1ad2dSMordechay Goodstein 	.txq_free = iwl_txq_dyn_free,
3425d6d517b7SSara Sharon 	.wait_txq_empty = iwl_trans_pcie_wait_txq_empty,
342692536c96SSara Sharon 	.rxq_dma_data = iwl_trans_pcie_rxq_dma_data,
34276654cd4eSLuca Coelho 	.set_pnvm = iwl_trans_pcie_ctx_info_gen3_set_pnvm,
3428f7805b33SLior Cohen #ifdef CONFIG_IWLWIFI_DEBUGFS
3429f7805b33SLior Cohen 	.debugfs_cleanup = iwl_trans_pcie_debugfs_cleanup,
3430f7805b33SLior Cohen #endif
3431e705c121SKalle Valo };
3432e705c121SKalle Valo 
3433e705c121SKalle Valo struct iwl_trans *iwl_trans_pcie_alloc(struct pci_dev *pdev,
3434e705c121SKalle Valo 			       const struct pci_device_id *ent,
34357e8258c0SLuca Coelho 			       const struct iwl_cfg_trans_params *cfg_trans)
3436e705c121SKalle Valo {
3437e705c121SKalle Valo 	struct iwl_trans_pcie *trans_pcie;
3438e705c121SKalle Valo 	struct iwl_trans *trans;
3439fda1bd0dSMordechay Goodstein 	int ret, addr_size;
3440a89c72ffSJohannes Berg 	const struct iwl_trans_ops *ops = &trans_ops_pcie_gen2;
3441a89c72ffSJohannes Berg 
3442fda1bd0dSMordechay Goodstein 	if (!cfg_trans->gen2)
3443a89c72ffSJohannes Berg 		ops = &trans_ops_pcie;
3444e705c121SKalle Valo 
34455a41a86cSSharon Dvir 	ret = pcim_enable_device(pdev);
34465a41a86cSSharon Dvir 	if (ret)
34475a41a86cSSharon Dvir 		return ERR_PTR(ret);
34485a41a86cSSharon Dvir 
3449a89c72ffSJohannes Berg 	trans = iwl_trans_alloc(sizeof(struct iwl_trans_pcie), &pdev->dev, ops,
3450fda1bd0dSMordechay Goodstein 				cfg_trans);
3451e705c121SKalle Valo 	if (!trans)
3452e705c121SKalle Valo 		return ERR_PTR(-ENOMEM);
3453e705c121SKalle Valo 
3454e705c121SKalle Valo 	trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
3455e705c121SKalle Valo 
3456e705c121SKalle Valo 	trans_pcie->trans = trans;
3457326477e4SJohannes Berg 	trans_pcie->opmode_down = true;
3458e705c121SKalle Valo 	spin_lock_init(&trans_pcie->irq_lock);
3459e705c121SKalle Valo 	spin_lock_init(&trans_pcie->reg_lock);
3460cfdc20efSJohannes Berg 	spin_lock_init(&trans_pcie->alloc_page_lock);
3461e705c121SKalle Valo 	mutex_init(&trans_pcie->mutex);
3462e705c121SKalle Valo 	init_waitqueue_head(&trans_pcie->ucode_write_waitq);
34638188a18eSJohannes Berg 
34648188a18eSJohannes Berg 	trans_pcie->rba.alloc_wq = alloc_workqueue("rb_allocator",
34658188a18eSJohannes Berg 						   WQ_HIGHPRI | WQ_UNBOUND, 1);
34668188a18eSJohannes Berg 	if (!trans_pcie->rba.alloc_wq) {
34678188a18eSJohannes Berg 		ret = -ENOMEM;
34688188a18eSJohannes Berg 		goto out_free_trans;
34698188a18eSJohannes Berg 	}
34708188a18eSJohannes Berg 	INIT_WORK(&trans_pcie->rba.rx_alloc, iwl_pcie_rx_allocator_work);
34718188a18eSJohannes Berg 
3472c5bf4fa1SJohannes Berg 	trans_pcie->debug_rfkill = -1;
3473e705c121SKalle Valo 
34747e8258c0SLuca Coelho 	if (!cfg_trans->base_params->pcie_l1_allowed) {
3475e705c121SKalle Valo 		/*
3476e705c121SKalle Valo 		 * W/A - seems to solve weird behavior. We need to remove this
3477e705c121SKalle Valo 		 * if we don't want to stay in L1 all the time. This wastes a
3478e705c121SKalle Valo 		 * lot of power.
3479e705c121SKalle Valo 		 */
3480e705c121SKalle Valo 		pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S |
3481e705c121SKalle Valo 				       PCIE_LINK_STATE_L1 |
3482e705c121SKalle Valo 				       PCIE_LINK_STATE_CLKPM);
3483e705c121SKalle Valo 	}
3484e705c121SKalle Valo 
34859416560eSGolan Ben Ami 	trans_pcie->def_rx_queue = 0;
34869416560eSGolan Ben Ami 
3487e705c121SKalle Valo 	pci_set_master(pdev);
3488e705c121SKalle Valo 
3489885375d0SMordechay Goodstein 	addr_size = trans->txqs.tfd.addr_size;
349096a6497bSSara Sharon 	ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(addr_size));
3491e705c121SKalle Valo 	if (!ret)
349296a6497bSSara Sharon 		ret = pci_set_consistent_dma_mask(pdev,
349396a6497bSSara Sharon 						  DMA_BIT_MASK(addr_size));
3494e705c121SKalle Valo 	if (ret) {
3495e705c121SKalle Valo 		ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
3496e705c121SKalle Valo 		if (!ret)
3497e705c121SKalle Valo 			ret = pci_set_consistent_dma_mask(pdev,
3498e705c121SKalle Valo 							  DMA_BIT_MASK(32));
3499e705c121SKalle Valo 		/* both attempts failed: */
3500e705c121SKalle Valo 		if (ret) {
3501e705c121SKalle Valo 			dev_err(&pdev->dev, "No suitable DMA available\n");
35025a41a86cSSharon Dvir 			goto out_no_pci;
3503e705c121SKalle Valo 		}
3504e705c121SKalle Valo 	}
3505e705c121SKalle Valo 
35065a41a86cSSharon Dvir 	ret = pcim_iomap_regions_request_all(pdev, BIT(0), DRV_NAME);
3507e705c121SKalle Valo 	if (ret) {
35085a41a86cSSharon Dvir 		dev_err(&pdev->dev, "pcim_iomap_regions_request_all failed\n");
35095a41a86cSSharon Dvir 		goto out_no_pci;
3510e705c121SKalle Valo 	}
3511e705c121SKalle Valo 
35125a41a86cSSharon Dvir 	trans_pcie->hw_base = pcim_iomap_table(pdev)[0];
3513e705c121SKalle Valo 	if (!trans_pcie->hw_base) {
35145a41a86cSSharon Dvir 		dev_err(&pdev->dev, "pcim_iomap_table failed\n");
3515e705c121SKalle Valo 		ret = -ENODEV;
35165a41a86cSSharon Dvir 		goto out_no_pci;
3517e705c121SKalle Valo 	}
3518e705c121SKalle Valo 
3519e705c121SKalle Valo 	/* We disable the RETRY_TIMEOUT register (0x41) to keep
3520e705c121SKalle Valo 	 * PCI Tx retries from interfering with C3 CPU state */
3521e705c121SKalle Valo 	pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3522e705c121SKalle Valo 
3523e705c121SKalle Valo 	trans_pcie->pci_dev = pdev;
3524e705c121SKalle Valo 	iwl_disable_interrupts(trans);
3525e705c121SKalle Valo 
3526e705c121SKalle Valo 	trans->hw_rev = iwl_read32(trans, CSR_HW_REV);
35279a098a89SRajat Jain 	if (trans->hw_rev == 0xffffffff) {
35289a098a89SRajat Jain 		dev_err(&pdev->dev, "HW_REV=0xFFFFFFFF, PCI issues?\n");
35299a098a89SRajat Jain 		ret = -EIO;
35309a098a89SRajat Jain 		goto out_no_pci;
35319a098a89SRajat Jain 	}
35329a098a89SRajat Jain 
3533e705c121SKalle Valo 	/*
3534e705c121SKalle Valo 	 * In the 8000 HW family the format of the 4 bytes of CSR_HW_REV have
3535e705c121SKalle Valo 	 * changed, and now the revision step also includes bit 0-1 (no more
3536e705c121SKalle Valo 	 * "dash" value). To keep hw_rev backwards compatible - we'll store it
3537e705c121SKalle Valo 	 * in the old format.
3538e705c121SKalle Valo 	 */
3539*4adfaf9bSEmmanuel Grumbach 	if (cfg_trans->device_family >= IWL_DEVICE_FAMILY_8000)
3540e705c121SKalle Valo 		trans->hw_rev = (trans->hw_rev & 0xfff0) |
3541e705c121SKalle Valo 				(CSR_HW_REV_STEP(trans->hw_rev << 2) << 2);
3542e705c121SKalle Valo 
354399be6166SLuca Coelho 	IWL_DEBUG_INFO(trans, "HW REV: 0x%0x\n", trans->hw_rev);
354499be6166SLuca Coelho 
35457e8258c0SLuca Coelho 	iwl_pcie_set_interrupt_capa(pdev, trans, cfg_trans);
3546e705c121SKalle Valo 	trans->hw_id = (pdev->device << 16) + pdev->subsystem_device;
3547e705c121SKalle Valo 	snprintf(trans->hw_id_str, sizeof(trans->hw_id_str),
3548e705c121SKalle Valo 		 "PCI ID: 0x%04X:0x%04X", pdev->device, pdev->subsystem_device);
3549e705c121SKalle Valo 
3550e705c121SKalle Valo 	/* Initialize the wait queue for commands */
3551e705c121SKalle Valo 	init_waitqueue_head(&trans_pcie->wait_command_queue);
3552e705c121SKalle Valo 
3553e5f3f215SHaim Dreyfuss 	init_waitqueue_head(&trans_pcie->sx_waitq);
3554e5f3f215SHaim Dreyfuss 
3555c239feecSJohannes Berg 
35562e5d4a8fSHaim Dreyfuss 	if (trans_pcie->msix_enabled) {
35572388bd7bSDan Carpenter 		ret = iwl_pcie_init_msix_handler(pdev, trans_pcie);
35582388bd7bSDan Carpenter 		if (ret)
35595a41a86cSSharon Dvir 			goto out_no_pci;
35602e5d4a8fSHaim Dreyfuss 	 } else {
3561e705c121SKalle Valo 		ret = iwl_pcie_alloc_ict(trans);
3562e705c121SKalle Valo 		if (ret)
35635a41a86cSSharon Dvir 			goto out_no_pci;
3564e705c121SKalle Valo 
35655a41a86cSSharon Dvir 		ret = devm_request_threaded_irq(&pdev->dev, pdev->irq,
35665a41a86cSSharon Dvir 						iwl_pcie_isr,
3567e705c121SKalle Valo 						iwl_pcie_irq_handler,
3568e705c121SKalle Valo 						IRQF_SHARED, DRV_NAME, trans);
3569e705c121SKalle Valo 		if (ret) {
3570e705c121SKalle Valo 			IWL_ERR(trans, "Error allocating IRQ %d\n", pdev->irq);
3571e705c121SKalle Valo 			goto out_free_ict;
3572e705c121SKalle Valo 		}
3573e705c121SKalle Valo 		trans_pcie->inta_mask = CSR_INI_SET_MASK;
35742e5d4a8fSHaim Dreyfuss 	 }
3575e705c121SKalle Valo 
3576f7805b33SLior Cohen #ifdef CONFIG_IWLWIFI_DEBUGFS
3577f7805b33SLior Cohen 	trans_pcie->fw_mon_data.state = IWL_FW_MON_DBGFS_STATE_CLOSED;
3578f7805b33SLior Cohen 	mutex_init(&trans_pcie->fw_mon_data.mutex);
3579f7805b33SLior Cohen #endif
3580f7805b33SLior Cohen 
3581a9248de4SShahar S Matityahu 	iwl_dbg_tlv_init(trans);
3582a9248de4SShahar S Matityahu 
3583e705c121SKalle Valo 	return trans;
3584e705c121SKalle Valo 
3585e705c121SKalle Valo out_free_ict:
3586e705c121SKalle Valo 	iwl_pcie_free_ict(trans);
3587e705c121SKalle Valo out_no_pci:
35888188a18eSJohannes Berg 	destroy_workqueue(trans_pcie->rba.alloc_wq);
35898188a18eSJohannes Berg out_free_trans:
3590e705c121SKalle Valo 	iwl_trans_free(trans);
3591e705c121SKalle Valo 	return ERR_PTR(ret);
3592e705c121SKalle Valo }
3593b8a7547dSShahar S Matityahu 
3594d1967ce6SShahar S Matityahu void iwl_trans_pcie_sync_nmi(struct iwl_trans *trans)
3595b8a7547dSShahar S Matityahu {
35961c6bca6dSShahar S Matityahu 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
3597b8a7547dSShahar S Matityahu 	unsigned long timeout = jiffies + IWL_TRANS_NMI_TIMEOUT;
3598e4eee943SShahar S Matityahu 	bool interrupts_enabled = test_bit(STATUS_INT_ENABLED, &trans->status);
35991c6bca6dSShahar S Matityahu 	u32 inta_addr, sw_err_bit;
36001c6bca6dSShahar S Matityahu 
36011c6bca6dSShahar S Matityahu 	if (trans_pcie->msix_enabled) {
36021c6bca6dSShahar S Matityahu 		inta_addr = CSR_MSIX_HW_INT_CAUSES_AD;
36031c6bca6dSShahar S Matityahu 		sw_err_bit = MSIX_HW_INT_CAUSES_REG_SW_ERR;
36041c6bca6dSShahar S Matityahu 	} else {
36051c6bca6dSShahar S Matityahu 		inta_addr = CSR_INT;
36061c6bca6dSShahar S Matityahu 		sw_err_bit = CSR_INT_BIT_SW_ERR;
36071c6bca6dSShahar S Matityahu 	}
3608b8a7547dSShahar S Matityahu 
3609e4eee943SShahar S Matityahu 	/* if the interrupts were already disabled, there is no point in
3610e4eee943SShahar S Matityahu 	 * calling iwl_disable_interrupts
3611e4eee943SShahar S Matityahu 	 */
3612e4eee943SShahar S Matityahu 	if (interrupts_enabled)
3613b8a7547dSShahar S Matityahu 		iwl_disable_interrupts(trans);
3614e4eee943SShahar S Matityahu 
3615b8a7547dSShahar S Matityahu 	iwl_force_nmi(trans);
3616b8a7547dSShahar S Matityahu 	while (time_after(timeout, jiffies)) {
36171c6bca6dSShahar S Matityahu 		u32 inta_hw = iwl_read32(trans, inta_addr);
3618b8a7547dSShahar S Matityahu 
3619b8a7547dSShahar S Matityahu 		/* Error detected by uCode */
36201c6bca6dSShahar S Matityahu 		if (inta_hw & sw_err_bit) {
3621b8a7547dSShahar S Matityahu 			/* Clear causes register */
36221c6bca6dSShahar S Matityahu 			iwl_write32(trans, inta_addr, inta_hw & sw_err_bit);
3623b8a7547dSShahar S Matityahu 			break;
3624b8a7547dSShahar S Matityahu 		}
3625b8a7547dSShahar S Matityahu 
3626b8a7547dSShahar S Matityahu 		mdelay(1);
3627b8a7547dSShahar S Matityahu 	}
3628e4eee943SShahar S Matityahu 
3629e4eee943SShahar S Matityahu 	/* enable interrupts only if there were already enabled before this
3630e4eee943SShahar S Matityahu 	 * function to avoid a case were the driver enable interrupts before
3631e4eee943SShahar S Matityahu 	 * proper configurations were made
3632e4eee943SShahar S Matityahu 	 */
3633e4eee943SShahar S Matityahu 	if (interrupts_enabled)
3634b8a7547dSShahar S Matityahu 		iwl_enable_interrupts(trans);
3635e4eee943SShahar S Matityahu 
3636b8a7547dSShahar S Matityahu 	iwl_trans_fw_error(trans);
3637b8a7547dSShahar S Matityahu }
3638