• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /******************************************************************************
2  *
3  * This file is provided under a dual BSD/GPLv2 license.  When using or
4  * redistributing this file, you may do so under either license.
5  *
6  * GPL LICENSE SUMMARY
7  *
8  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
9  * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
10  * Copyright(c) 2007 - 2015, 2018 - 2020 Intel Corporation
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of version 2 of the GNU General Public License as
14  * published by the Free Software Foundation.
15  *
16  * This program is distributed in the hope that it will be useful, but
17  * WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * General Public License for more details.
20  *
21  * The full GNU General Public License is included in this distribution
22  * in the file called COPYING.
23  *
24  * Contact Information:
25  *  Intel Linux Wireless <linuxwifi@intel.com>
26  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27  *
28  * BSD LICENSE
29  *
30  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
31  * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
32  * Copyright(c) 2007 - 2015, 2018 - 2020 Intel Corporation
33  * All rights reserved.
34  *
35  * Redistribution and use in source and binary forms, with or without
36  * modification, are permitted provided that the following conditions
37  * are met:
38  *
39  *  * Redistributions of source code must retain the above copyright
40  *    notice, this list of conditions and the following disclaimer.
41  *  * Redistributions in binary form must reproduce the above copyright
42  *    notice, this list of conditions and the following disclaimer in
43  *    the documentation and/or other materials provided with the
44  *    distribution.
45  *  * Neither the name Intel Corporation nor the names of its
46  *    contributors may be used to endorse or promote products derived
47  *    from this software without specific prior written permission.
48  *
49  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
50  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
51  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
52  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
53  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
54  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
55  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
59  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60  *
61  *****************************************************************************/
62 #include <linux/pci.h>
63 #include <linux/interrupt.h>
64 #include <linux/debugfs.h>
65 #include <linux/sched.h>
66 #include <linux/bitops.h>
67 #include <linux/gfp.h>
68 #include <linux/vmalloc.h>
69 #include <linux/module.h>
70 #include <linux/wait.h>
71 #include <linux/seq_file.h>
72 
73 #include "iwl-drv.h"
74 #include "iwl-trans.h"
75 #include "iwl-csr.h"
76 #include "iwl-prph.h"
77 #include "iwl-scd.h"
78 #include "iwl-agn-hw.h"
79 #include "fw/error-dump.h"
80 #include "fw/dbg.h"
81 #include "fw/api/tx.h"
82 #include "internal.h"
83 #include "iwl-fh.h"
84 #include "iwl-context-info-gen3.h"
85 
86 /* extended range in FW SRAM */
87 #define IWL_FW_MEM_EXTENDED_START	0x40000
88 #define IWL_FW_MEM_EXTENDED_END		0x57FFF
89 
iwl_trans_pcie_dump_regs(struct iwl_trans * trans)90 void iwl_trans_pcie_dump_regs(struct iwl_trans *trans)
91 {
92 #define PCI_DUMP_SIZE		352
93 #define PCI_MEM_DUMP_SIZE	64
94 #define PCI_PARENT_DUMP_SIZE	524
95 #define PREFIX_LEN		32
96 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
97 	struct pci_dev *pdev = trans_pcie->pci_dev;
98 	u32 i, pos, alloc_size, *ptr, *buf;
99 	char *prefix;
100 
101 	if (trans_pcie->pcie_dbg_dumped_once)
102 		return;
103 
104 	/* Should be a multiple of 4 */
105 	BUILD_BUG_ON(PCI_DUMP_SIZE > 4096 || PCI_DUMP_SIZE & 0x3);
106 	BUILD_BUG_ON(PCI_MEM_DUMP_SIZE > 4096 || PCI_MEM_DUMP_SIZE & 0x3);
107 	BUILD_BUG_ON(PCI_PARENT_DUMP_SIZE > 4096 || PCI_PARENT_DUMP_SIZE & 0x3);
108 
109 	/* Alloc a max size buffer */
110 	alloc_size = PCI_ERR_ROOT_ERR_SRC +  4 + PREFIX_LEN;
111 	alloc_size = max_t(u32, alloc_size, PCI_DUMP_SIZE + PREFIX_LEN);
112 	alloc_size = max_t(u32, alloc_size, PCI_MEM_DUMP_SIZE + PREFIX_LEN);
113 	alloc_size = max_t(u32, alloc_size, PCI_PARENT_DUMP_SIZE + PREFIX_LEN);
114 
115 	buf = kmalloc(alloc_size, GFP_ATOMIC);
116 	if (!buf)
117 		return;
118 	prefix = (char *)buf + alloc_size - PREFIX_LEN;
119 
120 	IWL_ERR(trans, "iwlwifi transaction failed, dumping registers\n");
121 
122 	/* Print wifi device registers */
123 	sprintf(prefix, "iwlwifi %s: ", pci_name(pdev));
124 	IWL_ERR(trans, "iwlwifi device config registers:\n");
125 	for (i = 0, ptr = buf; i < PCI_DUMP_SIZE; i += 4, ptr++)
126 		if (pci_read_config_dword(pdev, i, ptr))
127 			goto err_read;
128 	print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET, 32, 4, buf, i, 0);
129 
130 	IWL_ERR(trans, "iwlwifi device memory mapped registers:\n");
131 	for (i = 0, ptr = buf; i < PCI_MEM_DUMP_SIZE; i += 4, ptr++)
132 		*ptr = iwl_read32(trans, i);
133 	print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET, 32, 4, buf, i, 0);
134 
135 	pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ERR);
136 	if (pos) {
137 		IWL_ERR(trans, "iwlwifi device AER capability structure:\n");
138 		for (i = 0, ptr = buf; i < PCI_ERR_ROOT_COMMAND; i += 4, ptr++)
139 			if (pci_read_config_dword(pdev, pos + i, ptr))
140 				goto err_read;
141 		print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET,
142 			       32, 4, buf, i, 0);
143 	}
144 
145 	/* Print parent device registers next */
146 	if (!pdev->bus->self)
147 		goto out;
148 
149 	pdev = pdev->bus->self;
150 	sprintf(prefix, "iwlwifi %s: ", pci_name(pdev));
151 
152 	IWL_ERR(trans, "iwlwifi parent port (%s) config registers:\n",
153 		pci_name(pdev));
154 	for (i = 0, ptr = buf; i < PCI_PARENT_DUMP_SIZE; i += 4, ptr++)
155 		if (pci_read_config_dword(pdev, i, ptr))
156 			goto err_read;
157 	print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET, 32, 4, buf, i, 0);
158 
159 	/* Print root port AER registers */
160 	pos = 0;
161 	pdev = pcie_find_root_port(pdev);
162 	if (pdev)
163 		pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ERR);
164 	if (pos) {
165 		IWL_ERR(trans, "iwlwifi root port (%s) AER cap structure:\n",
166 			pci_name(pdev));
167 		sprintf(prefix, "iwlwifi %s: ", pci_name(pdev));
168 		for (i = 0, ptr = buf; i <= PCI_ERR_ROOT_ERR_SRC; i += 4, ptr++)
169 			if (pci_read_config_dword(pdev, pos + i, ptr))
170 				goto err_read;
171 		print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET, 32,
172 			       4, buf, i, 0);
173 	}
174 	goto out;
175 
176 err_read:
177 	print_hex_dump(KERN_ERR, prefix, DUMP_PREFIX_OFFSET, 32, 4, buf, i, 0);
178 	IWL_ERR(trans, "Read failed at 0x%X\n", i);
179 out:
180 	trans_pcie->pcie_dbg_dumped_once = 1;
181 	kfree(buf);
182 }
183 
iwl_trans_pcie_sw_reset(struct iwl_trans * trans)184 static void iwl_trans_pcie_sw_reset(struct iwl_trans *trans)
185 {
186 	/* Reset entire device - do controller reset (results in SHRD_HW_RST) */
187 	iwl_set_bit(trans, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
188 	usleep_range(5000, 6000);
189 }
190 
iwl_pcie_free_fw_monitor(struct iwl_trans * trans)191 static void iwl_pcie_free_fw_monitor(struct iwl_trans *trans)
192 {
193 	struct iwl_dram_data *fw_mon = &trans->dbg.fw_mon;
194 
195 	if (!fw_mon->size)
196 		return;
197 
198 	dma_free_coherent(trans->dev, fw_mon->size, fw_mon->block,
199 			  fw_mon->physical);
200 
201 	fw_mon->block = NULL;
202 	fw_mon->physical = 0;
203 	fw_mon->size = 0;
204 }
205 
iwl_pcie_alloc_fw_monitor_block(struct iwl_trans * trans,u8 max_power,u8 min_power)206 static void iwl_pcie_alloc_fw_monitor_block(struct iwl_trans *trans,
207 					    u8 max_power, u8 min_power)
208 {
209 	struct iwl_dram_data *fw_mon = &trans->dbg.fw_mon;
210 	void *block = NULL;
211 	dma_addr_t physical = 0;
212 	u32 size = 0;
213 	u8 power;
214 
215 	if (fw_mon->size)
216 		return;
217 
218 	for (power = max_power; power >= min_power; power--) {
219 		size = BIT(power);
220 		block = dma_alloc_coherent(trans->dev, size, &physical,
221 					   GFP_KERNEL | __GFP_NOWARN);
222 		if (!block)
223 			continue;
224 
225 		IWL_INFO(trans,
226 			 "Allocated 0x%08x bytes for firmware monitor.\n",
227 			 size);
228 		break;
229 	}
230 
231 	if (WARN_ON_ONCE(!block))
232 		return;
233 
234 	if (power != max_power)
235 		IWL_ERR(trans,
236 			"Sorry - debug buffer is only %luK while you requested %luK\n",
237 			(unsigned long)BIT(power - 10),
238 			(unsigned long)BIT(max_power - 10));
239 
240 	fw_mon->block = block;
241 	fw_mon->physical = physical;
242 	fw_mon->size = size;
243 }
244 
iwl_pcie_alloc_fw_monitor(struct iwl_trans * trans,u8 max_power)245 void iwl_pcie_alloc_fw_monitor(struct iwl_trans *trans, u8 max_power)
246 {
247 	if (!max_power) {
248 		/* default max_power is maximum */
249 		max_power = 26;
250 	} else {
251 		max_power += 11;
252 	}
253 
254 	if (WARN(max_power > 26,
255 		 "External buffer size for monitor is too big %d, check the FW TLV\n",
256 		 max_power))
257 		return;
258 
259 	if (trans->dbg.fw_mon.size)
260 		return;
261 
262 	iwl_pcie_alloc_fw_monitor_block(trans, max_power, 11);
263 }
264 
iwl_trans_pcie_read_shr(struct iwl_trans * trans,u32 reg)265 static u32 iwl_trans_pcie_read_shr(struct iwl_trans *trans, u32 reg)
266 {
267 	iwl_write32(trans, HEEP_CTRL_WRD_PCIEX_CTRL_REG,
268 		    ((reg & 0x0000ffff) | (2 << 28)));
269 	return iwl_read32(trans, HEEP_CTRL_WRD_PCIEX_DATA_REG);
270 }
271 
iwl_trans_pcie_write_shr(struct iwl_trans * trans,u32 reg,u32 val)272 static void iwl_trans_pcie_write_shr(struct iwl_trans *trans, u32 reg, u32 val)
273 {
274 	iwl_write32(trans, HEEP_CTRL_WRD_PCIEX_DATA_REG, val);
275 	iwl_write32(trans, HEEP_CTRL_WRD_PCIEX_CTRL_REG,
276 		    ((reg & 0x0000ffff) | (3 << 28)));
277 }
278 
iwl_pcie_set_pwr(struct iwl_trans * trans,bool vaux)279 static void iwl_pcie_set_pwr(struct iwl_trans *trans, bool vaux)
280 {
281 	if (trans->cfg->apmg_not_supported)
282 		return;
283 
284 	if (vaux && pci_pme_capable(to_pci_dev(trans->dev), PCI_D3cold))
285 		iwl_set_bits_mask_prph(trans, APMG_PS_CTRL_REG,
286 				       APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
287 				       ~APMG_PS_CTRL_MSK_PWR_SRC);
288 	else
289 		iwl_set_bits_mask_prph(trans, APMG_PS_CTRL_REG,
290 				       APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
291 				       ~APMG_PS_CTRL_MSK_PWR_SRC);
292 }
293 
294 /* PCI registers */
295 #define PCI_CFG_RETRY_TIMEOUT	0x041
296 
iwl_pcie_apm_config(struct iwl_trans * trans)297 void iwl_pcie_apm_config(struct iwl_trans *trans)
298 {
299 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
300 	u16 lctl;
301 	u16 cap;
302 
303 	/*
304 	 * L0S states have been found to be unstable with our devices
305 	 * and in newer hardware they are not officially supported at
306 	 * all, so we must always set the L0S_DISABLED bit.
307 	 */
308 	iwl_set_bit(trans, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_DISABLED);
309 
310 	pcie_capability_read_word(trans_pcie->pci_dev, PCI_EXP_LNKCTL, &lctl);
311 	trans->pm_support = !(lctl & PCI_EXP_LNKCTL_ASPM_L0S);
312 
313 	pcie_capability_read_word(trans_pcie->pci_dev, PCI_EXP_DEVCTL2, &cap);
314 	trans->ltr_enabled = cap & PCI_EXP_DEVCTL2_LTR_EN;
315 	IWL_DEBUG_POWER(trans, "L1 %sabled - LTR %sabled\n",
316 			(lctl & PCI_EXP_LNKCTL_ASPM_L1) ? "En" : "Dis",
317 			trans->ltr_enabled ? "En" : "Dis");
318 }
319 
320 /*
321  * Start up NIC's basic functionality after it has been reset
322  * (e.g. after platform boot, or shutdown via iwl_pcie_apm_stop())
323  * NOTE:  This does not load uCode nor start the embedded processor
324  */
iwl_pcie_apm_init(struct iwl_trans * trans)325 static int iwl_pcie_apm_init(struct iwl_trans *trans)
326 {
327 	int ret;
328 
329 	IWL_DEBUG_INFO(trans, "Init card's basic functions\n");
330 
331 	/*
332 	 * Use "set_bit" below rather than "write", to preserve any hardware
333 	 * bits already set by default after reset.
334 	 */
335 
336 	/* Disable L0S exit timer (platform NMI Work/Around) */
337 	if (trans->trans_cfg->device_family < IWL_DEVICE_FAMILY_8000)
338 		iwl_set_bit(trans, CSR_GIO_CHICKEN_BITS,
339 			    CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
340 
341 	/*
342 	 * Disable L0s without affecting L1;
343 	 *  don't wait for ICH L0s (ICH bug W/A)
344 	 */
345 	iwl_set_bit(trans, CSR_GIO_CHICKEN_BITS,
346 		    CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
347 
348 	/* Set FH wait threshold to maximum (HW error during stress W/A) */
349 	iwl_set_bit(trans, CSR_DBG_HPET_MEM_REG, CSR_DBG_HPET_MEM_REG_VAL);
350 
351 	/*
352 	 * Enable HAP INTA (interrupt from management bus) to
353 	 * wake device's PCI Express link L1a -> L0s
354 	 */
355 	iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
356 		    CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A);
357 
358 	iwl_pcie_apm_config(trans);
359 
360 	/* Configure analog phase-lock-loop before activating to D0A */
361 	if (trans->trans_cfg->base_params->pll_cfg)
362 		iwl_set_bit(trans, CSR_ANA_PLL_CFG, CSR50_ANA_PLL_CFG_VAL);
363 
364 	ret = iwl_finish_nic_init(trans, trans->trans_cfg);
365 	if (ret)
366 		return ret;
367 
368 	if (trans->cfg->host_interrupt_operation_mode) {
369 		/*
370 		 * This is a bit of an abuse - This is needed for 7260 / 3160
371 		 * only check host_interrupt_operation_mode even if this is
372 		 * not related to host_interrupt_operation_mode.
373 		 *
374 		 * Enable the oscillator to count wake up time for L1 exit. This
375 		 * consumes slightly more power (100uA) - but allows to be sure
376 		 * that we wake up from L1 on time.
377 		 *
378 		 * This looks weird: read twice the same register, discard the
379 		 * value, set a bit, and yet again, read that same register
380 		 * just to discard the value. But that's the way the hardware
381 		 * seems to like it.
382 		 */
383 		iwl_read_prph(trans, OSC_CLK);
384 		iwl_read_prph(trans, OSC_CLK);
385 		iwl_set_bits_prph(trans, OSC_CLK, OSC_CLK_FORCE_CONTROL);
386 		iwl_read_prph(trans, OSC_CLK);
387 		iwl_read_prph(trans, OSC_CLK);
388 	}
389 
390 	/*
391 	 * Enable DMA clock and wait for it to stabilize.
392 	 *
393 	 * Write to "CLK_EN_REG"; "1" bits enable clocks, while "0"
394 	 * bits do not disable clocks.  This preserves any hardware
395 	 * bits already set by default in "CLK_CTRL_REG" after reset.
396 	 */
397 	if (!trans->cfg->apmg_not_supported) {
398 		iwl_write_prph(trans, APMG_CLK_EN_REG,
399 			       APMG_CLK_VAL_DMA_CLK_RQT);
400 		udelay(20);
401 
402 		/* Disable L1-Active */
403 		iwl_set_bits_prph(trans, APMG_PCIDEV_STT_REG,
404 				  APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
405 
406 		/* Clear the interrupt in APMG if the NIC is in RFKILL */
407 		iwl_write_prph(trans, APMG_RTC_INT_STT_REG,
408 			       APMG_RTC_INT_STT_RFKILL);
409 	}
410 
411 	set_bit(STATUS_DEVICE_ENABLED, &trans->status);
412 
413 	return 0;
414 }
415 
416 /*
417  * Enable LP XTAL to avoid HW bug where device may consume much power if
418  * FW is not loaded after device reset. LP XTAL is disabled by default
419  * after device HW reset. Do it only if XTAL is fed by internal source.
420  * Configure device's "persistence" mode to avoid resetting XTAL again when
421  * SHRD_HW_RST occurs in S3.
422  */
iwl_pcie_apm_lp_xtal_enable(struct iwl_trans * trans)423 static void iwl_pcie_apm_lp_xtal_enable(struct iwl_trans *trans)
424 {
425 	int ret;
426 	u32 apmg_gp1_reg;
427 	u32 apmg_xtal_cfg_reg;
428 	u32 dl_cfg_reg;
429 
430 	/* Force XTAL ON */
431 	__iwl_trans_pcie_set_bit(trans, CSR_GP_CNTRL,
432 				 CSR_GP_CNTRL_REG_FLAG_XTAL_ON);
433 
434 	iwl_trans_pcie_sw_reset(trans);
435 
436 	ret = iwl_finish_nic_init(trans, trans->trans_cfg);
437 	if (WARN_ON(ret)) {
438 		/* Release XTAL ON request */
439 		__iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
440 					   CSR_GP_CNTRL_REG_FLAG_XTAL_ON);
441 		return;
442 	}
443 
444 	/*
445 	 * Clear "disable persistence" to avoid LP XTAL resetting when
446 	 * SHRD_HW_RST is applied in S3.
447 	 */
448 	iwl_clear_bits_prph(trans, APMG_PCIDEV_STT_REG,
449 				    APMG_PCIDEV_STT_VAL_PERSIST_DIS);
450 
451 	/*
452 	 * Force APMG XTAL to be active to prevent its disabling by HW
453 	 * caused by APMG idle state.
454 	 */
455 	apmg_xtal_cfg_reg = iwl_trans_pcie_read_shr(trans,
456 						    SHR_APMG_XTAL_CFG_REG);
457 	iwl_trans_pcie_write_shr(trans, SHR_APMG_XTAL_CFG_REG,
458 				 apmg_xtal_cfg_reg |
459 				 SHR_APMG_XTAL_CFG_XTAL_ON_REQ);
460 
461 	iwl_trans_pcie_sw_reset(trans);
462 
463 	/* Enable LP XTAL by indirect access through CSR */
464 	apmg_gp1_reg = iwl_trans_pcie_read_shr(trans, SHR_APMG_GP1_REG);
465 	iwl_trans_pcie_write_shr(trans, SHR_APMG_GP1_REG, apmg_gp1_reg |
466 				 SHR_APMG_GP1_WF_XTAL_LP_EN |
467 				 SHR_APMG_GP1_CHICKEN_BIT_SELECT);
468 
469 	/* Clear delay line clock power up */
470 	dl_cfg_reg = iwl_trans_pcie_read_shr(trans, SHR_APMG_DL_CFG_REG);
471 	iwl_trans_pcie_write_shr(trans, SHR_APMG_DL_CFG_REG, dl_cfg_reg &
472 				 ~SHR_APMG_DL_CFG_DL_CLOCK_POWER_UP);
473 
474 	/*
475 	 * Enable persistence mode to avoid LP XTAL resetting when
476 	 * SHRD_HW_RST is applied in S3.
477 	 */
478 	iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
479 		    CSR_HW_IF_CONFIG_REG_PERSIST_MODE);
480 
481 	/*
482 	 * Clear "initialization complete" bit to move adapter from
483 	 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
484 	 */
485 	iwl_clear_bit(trans, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
486 
487 	/* Activates XTAL resources monitor */
488 	__iwl_trans_pcie_set_bit(trans, CSR_MONITOR_CFG_REG,
489 				 CSR_MONITOR_XTAL_RESOURCES);
490 
491 	/* Release XTAL ON request */
492 	__iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
493 				   CSR_GP_CNTRL_REG_FLAG_XTAL_ON);
494 	udelay(10);
495 
496 	/* Release APMG XTAL */
497 	iwl_trans_pcie_write_shr(trans, SHR_APMG_XTAL_CFG_REG,
498 				 apmg_xtal_cfg_reg &
499 				 ~SHR_APMG_XTAL_CFG_XTAL_ON_REQ);
500 }
501 
iwl_pcie_apm_stop_master(struct iwl_trans * trans)502 void iwl_pcie_apm_stop_master(struct iwl_trans *trans)
503 {
504 	int ret;
505 
506 	/* stop device's busmaster DMA activity */
507 	iwl_set_bit(trans, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER);
508 
509 	ret = iwl_poll_bit(trans, CSR_RESET,
510 			   CSR_RESET_REG_FLAG_MASTER_DISABLED,
511 			   CSR_RESET_REG_FLAG_MASTER_DISABLED, 100);
512 	if (ret < 0)
513 		IWL_WARN(trans, "Master Disable Timed Out, 100 usec\n");
514 
515 	IWL_DEBUG_INFO(trans, "stop master\n");
516 }
517 
iwl_pcie_apm_stop(struct iwl_trans * trans,bool op_mode_leave)518 static void iwl_pcie_apm_stop(struct iwl_trans *trans, bool op_mode_leave)
519 {
520 	IWL_DEBUG_INFO(trans, "Stop card, put in low power state\n");
521 
522 	if (op_mode_leave) {
523 		if (!test_bit(STATUS_DEVICE_ENABLED, &trans->status))
524 			iwl_pcie_apm_init(trans);
525 
526 		/* inform ME that we are leaving */
527 		if (trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_7000)
528 			iwl_set_bits_prph(trans, APMG_PCIDEV_STT_REG,
529 					  APMG_PCIDEV_STT_VAL_WAKE_ME);
530 		else if (trans->trans_cfg->device_family >=
531 			 IWL_DEVICE_FAMILY_8000) {
532 			iwl_set_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
533 				    CSR_RESET_LINK_PWR_MGMT_DISABLED);
534 			iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
535 				    CSR_HW_IF_CONFIG_REG_PREPARE |
536 				    CSR_HW_IF_CONFIG_REG_ENABLE_PME);
537 			mdelay(1);
538 			iwl_clear_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
539 				      CSR_RESET_LINK_PWR_MGMT_DISABLED);
540 		}
541 		mdelay(5);
542 	}
543 
544 	clear_bit(STATUS_DEVICE_ENABLED, &trans->status);
545 
546 	/* Stop device's DMA activity */
547 	iwl_pcie_apm_stop_master(trans);
548 
549 	if (trans->cfg->lp_xtal_workaround) {
550 		iwl_pcie_apm_lp_xtal_enable(trans);
551 		return;
552 	}
553 
554 	iwl_trans_pcie_sw_reset(trans);
555 
556 	/*
557 	 * Clear "initialization complete" bit to move adapter from
558 	 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
559 	 */
560 	iwl_clear_bit(trans, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
561 }
562 
iwl_pcie_nic_init(struct iwl_trans * trans)563 static int iwl_pcie_nic_init(struct iwl_trans *trans)
564 {
565 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
566 	int ret;
567 
568 	/* nic_init */
569 	spin_lock(&trans_pcie->irq_lock);
570 	ret = iwl_pcie_apm_init(trans);
571 	spin_unlock(&trans_pcie->irq_lock);
572 
573 	if (ret)
574 		return ret;
575 
576 	iwl_pcie_set_pwr(trans, false);
577 
578 	iwl_op_mode_nic_config(trans->op_mode);
579 
580 	/* Allocate the RX queue, or reset if it is already allocated */
581 	iwl_pcie_rx_init(trans);
582 
583 	/* Allocate or reset and init all Tx and Command queues */
584 	if (iwl_pcie_tx_init(trans))
585 		return -ENOMEM;
586 
587 	if (trans->trans_cfg->base_params->shadow_reg_enable) {
588 		/* enable shadow regs in HW */
589 		iwl_set_bit(trans, CSR_MAC_SHADOW_REG_CTRL, 0x800FFFFF);
590 		IWL_DEBUG_INFO(trans, "Enabling shadow registers in device\n");
591 	}
592 
593 	return 0;
594 }
595 
596 #define HW_READY_TIMEOUT (50)
597 
598 /* Note: returns poll_bit return value, which is >= 0 if success */
iwl_pcie_set_hw_ready(struct iwl_trans * trans)599 static int iwl_pcie_set_hw_ready(struct iwl_trans *trans)
600 {
601 	int ret;
602 
603 	iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
604 		    CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
605 
606 	/* See if we got it */
607 	ret = iwl_poll_bit(trans, CSR_HW_IF_CONFIG_REG,
608 			   CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
609 			   CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
610 			   HW_READY_TIMEOUT);
611 
612 	if (ret >= 0)
613 		iwl_set_bit(trans, CSR_MBOX_SET_REG, CSR_MBOX_SET_REG_OS_ALIVE);
614 
615 	IWL_DEBUG_INFO(trans, "hardware%s ready\n", ret < 0 ? " not" : "");
616 	return ret;
617 }
618 
619 /* Note: returns standard 0/-ERROR code */
iwl_pcie_prepare_card_hw(struct iwl_trans * trans)620 int iwl_pcie_prepare_card_hw(struct iwl_trans *trans)
621 {
622 	int ret;
623 	int t = 0;
624 	int iter;
625 
626 	IWL_DEBUG_INFO(trans, "iwl_trans_prepare_card_hw enter\n");
627 
628 	ret = iwl_pcie_set_hw_ready(trans);
629 	/* If the card is ready, exit 0 */
630 	if (ret >= 0)
631 		return 0;
632 
633 	iwl_set_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
634 		    CSR_RESET_LINK_PWR_MGMT_DISABLED);
635 	usleep_range(1000, 2000);
636 
637 	for (iter = 0; iter < 10; iter++) {
638 		/* If HW is not ready, prepare the conditions to check again */
639 		iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
640 			    CSR_HW_IF_CONFIG_REG_PREPARE);
641 
642 		do {
643 			ret = iwl_pcie_set_hw_ready(trans);
644 			if (ret >= 0)
645 				return 0;
646 
647 			usleep_range(200, 1000);
648 			t += 200;
649 		} while (t < 150000);
650 		msleep(25);
651 	}
652 
653 	IWL_ERR(trans, "Couldn't prepare the card\n");
654 
655 	return ret;
656 }
657 
658 /*
659  * ucode
660  */
iwl_pcie_load_firmware_chunk_fh(struct iwl_trans * trans,u32 dst_addr,dma_addr_t phy_addr,u32 byte_cnt)661 static void iwl_pcie_load_firmware_chunk_fh(struct iwl_trans *trans,
662 					    u32 dst_addr, dma_addr_t phy_addr,
663 					    u32 byte_cnt)
664 {
665 	iwl_write32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
666 		    FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE);
667 
668 	iwl_write32(trans, FH_SRVC_CHNL_SRAM_ADDR_REG(FH_SRVC_CHNL),
669 		    dst_addr);
670 
671 	iwl_write32(trans, FH_TFDIB_CTRL0_REG(FH_SRVC_CHNL),
672 		    phy_addr & FH_MEM_TFDIB_DRAM_ADDR_LSB_MSK);
673 
674 	iwl_write32(trans, FH_TFDIB_CTRL1_REG(FH_SRVC_CHNL),
675 		    (iwl_get_dma_hi_addr(phy_addr)
676 			<< FH_MEM_TFDIB_REG1_ADDR_BITSHIFT) | byte_cnt);
677 
678 	iwl_write32(trans, FH_TCSR_CHNL_TX_BUF_STS_REG(FH_SRVC_CHNL),
679 		    BIT(FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_NUM) |
680 		    BIT(FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_IDX) |
681 		    FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_VALID);
682 
683 	iwl_write32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
684 		    FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
685 		    FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_DISABLE |
686 		    FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_ENDTFD);
687 }
688 
iwl_pcie_load_firmware_chunk(struct iwl_trans * trans,u32 dst_addr,dma_addr_t phy_addr,u32 byte_cnt)689 static int iwl_pcie_load_firmware_chunk(struct iwl_trans *trans,
690 					u32 dst_addr, dma_addr_t phy_addr,
691 					u32 byte_cnt)
692 {
693 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
694 	unsigned long flags;
695 	int ret;
696 
697 	trans_pcie->ucode_write_complete = false;
698 
699 	if (!iwl_trans_grab_nic_access(trans, &flags))
700 		return -EIO;
701 
702 	iwl_pcie_load_firmware_chunk_fh(trans, dst_addr, phy_addr,
703 					byte_cnt);
704 	iwl_trans_release_nic_access(trans, &flags);
705 
706 	ret = wait_event_timeout(trans_pcie->ucode_write_waitq,
707 				 trans_pcie->ucode_write_complete, 5 * HZ);
708 	if (!ret) {
709 		IWL_ERR(trans, "Failed to load firmware chunk!\n");
710 		iwl_trans_pcie_dump_regs(trans);
711 		return -ETIMEDOUT;
712 	}
713 
714 	return 0;
715 }
716 
iwl_pcie_load_section(struct iwl_trans * trans,u8 section_num,const struct fw_desc * section)717 static int iwl_pcie_load_section(struct iwl_trans *trans, u8 section_num,
718 			    const struct fw_desc *section)
719 {
720 	u8 *v_addr;
721 	dma_addr_t p_addr;
722 	u32 offset, chunk_sz = min_t(u32, FH_MEM_TB_MAX_LENGTH, section->len);
723 	int ret = 0;
724 
725 	IWL_DEBUG_FW(trans, "[%d] uCode section being loaded...\n",
726 		     section_num);
727 
728 	v_addr = dma_alloc_coherent(trans->dev, chunk_sz, &p_addr,
729 				    GFP_KERNEL | __GFP_NOWARN);
730 	if (!v_addr) {
731 		IWL_DEBUG_INFO(trans, "Falling back to small chunks of DMA\n");
732 		chunk_sz = PAGE_SIZE;
733 		v_addr = dma_alloc_coherent(trans->dev, chunk_sz,
734 					    &p_addr, GFP_KERNEL);
735 		if (!v_addr)
736 			return -ENOMEM;
737 	}
738 
739 	for (offset = 0; offset < section->len; offset += chunk_sz) {
740 		u32 copy_size, dst_addr;
741 		bool extended_addr = false;
742 
743 		copy_size = min_t(u32, chunk_sz, section->len - offset);
744 		dst_addr = section->offset + offset;
745 
746 		if (dst_addr >= IWL_FW_MEM_EXTENDED_START &&
747 		    dst_addr <= IWL_FW_MEM_EXTENDED_END)
748 			extended_addr = true;
749 
750 		if (extended_addr)
751 			iwl_set_bits_prph(trans, LMPM_CHICK,
752 					  LMPM_CHICK_EXTENDED_ADDR_SPACE);
753 
754 		memcpy(v_addr, (u8 *)section->data + offset, copy_size);
755 		ret = iwl_pcie_load_firmware_chunk(trans, dst_addr, p_addr,
756 						   copy_size);
757 
758 		if (extended_addr)
759 			iwl_clear_bits_prph(trans, LMPM_CHICK,
760 					    LMPM_CHICK_EXTENDED_ADDR_SPACE);
761 
762 		if (ret) {
763 			IWL_ERR(trans,
764 				"Could not load the [%d] uCode section\n",
765 				section_num);
766 			break;
767 		}
768 	}
769 
770 	dma_free_coherent(trans->dev, chunk_sz, v_addr, p_addr);
771 	return ret;
772 }
773 
iwl_pcie_load_cpu_sections_8000(struct iwl_trans * trans,const struct fw_img * image,int cpu,int * first_ucode_section)774 static int iwl_pcie_load_cpu_sections_8000(struct iwl_trans *trans,
775 					   const struct fw_img *image,
776 					   int cpu,
777 					   int *first_ucode_section)
778 {
779 	int shift_param;
780 	int i, ret = 0, sec_num = 0x1;
781 	u32 val, last_read_idx = 0;
782 
783 	if (cpu == 1) {
784 		shift_param = 0;
785 		*first_ucode_section = 0;
786 	} else {
787 		shift_param = 16;
788 		(*first_ucode_section)++;
789 	}
790 
791 	for (i = *first_ucode_section; i < image->num_sec; i++) {
792 		last_read_idx = i;
793 
794 		/*
795 		 * CPU1_CPU2_SEPARATOR_SECTION delimiter - separate between
796 		 * CPU1 to CPU2.
797 		 * PAGING_SEPARATOR_SECTION delimiter - separate between
798 		 * CPU2 non paged to CPU2 paging sec.
799 		 */
800 		if (!image->sec[i].data ||
801 		    image->sec[i].offset == CPU1_CPU2_SEPARATOR_SECTION ||
802 		    image->sec[i].offset == PAGING_SEPARATOR_SECTION) {
803 			IWL_DEBUG_FW(trans,
804 				     "Break since Data not valid or Empty section, sec = %d\n",
805 				     i);
806 			break;
807 		}
808 
809 		ret = iwl_pcie_load_section(trans, i, &image->sec[i]);
810 		if (ret)
811 			return ret;
812 
813 		/* Notify ucode of loaded section number and status */
814 		val = iwl_read_direct32(trans, FH_UCODE_LOAD_STATUS);
815 		val = val | (sec_num << shift_param);
816 		iwl_write_direct32(trans, FH_UCODE_LOAD_STATUS, val);
817 
818 		sec_num = (sec_num << 1) | 0x1;
819 	}
820 
821 	*first_ucode_section = last_read_idx;
822 
823 	iwl_enable_interrupts(trans);
824 
825 	if (trans->trans_cfg->use_tfh) {
826 		if (cpu == 1)
827 			iwl_write_prph(trans, UREG_UCODE_LOAD_STATUS,
828 				       0xFFFF);
829 		else
830 			iwl_write_prph(trans, UREG_UCODE_LOAD_STATUS,
831 				       0xFFFFFFFF);
832 	} else {
833 		if (cpu == 1)
834 			iwl_write_direct32(trans, FH_UCODE_LOAD_STATUS,
835 					   0xFFFF);
836 		else
837 			iwl_write_direct32(trans, FH_UCODE_LOAD_STATUS,
838 					   0xFFFFFFFF);
839 	}
840 
841 	return 0;
842 }
843 
iwl_pcie_load_cpu_sections(struct iwl_trans * trans,const struct fw_img * image,int cpu,int * first_ucode_section)844 static int iwl_pcie_load_cpu_sections(struct iwl_trans *trans,
845 				      const struct fw_img *image,
846 				      int cpu,
847 				      int *first_ucode_section)
848 {
849 	int i, ret = 0;
850 	u32 last_read_idx = 0;
851 
852 	if (cpu == 1)
853 		*first_ucode_section = 0;
854 	else
855 		(*first_ucode_section)++;
856 
857 	for (i = *first_ucode_section; i < image->num_sec; i++) {
858 		last_read_idx = i;
859 
860 		/*
861 		 * CPU1_CPU2_SEPARATOR_SECTION delimiter - separate between
862 		 * CPU1 to CPU2.
863 		 * PAGING_SEPARATOR_SECTION delimiter - separate between
864 		 * CPU2 non paged to CPU2 paging sec.
865 		 */
866 		if (!image->sec[i].data ||
867 		    image->sec[i].offset == CPU1_CPU2_SEPARATOR_SECTION ||
868 		    image->sec[i].offset == PAGING_SEPARATOR_SECTION) {
869 			IWL_DEBUG_FW(trans,
870 				     "Break since Data not valid or Empty section, sec = %d\n",
871 				     i);
872 			break;
873 		}
874 
875 		ret = iwl_pcie_load_section(trans, i, &image->sec[i]);
876 		if (ret)
877 			return ret;
878 	}
879 
880 	*first_ucode_section = last_read_idx;
881 
882 	return 0;
883 }
884 
iwl_pcie_apply_destination_ini(struct iwl_trans * trans)885 static void iwl_pcie_apply_destination_ini(struct iwl_trans *trans)
886 {
887 	enum iwl_fw_ini_allocation_id alloc_id = IWL_FW_INI_ALLOCATION_ID_DBGC1;
888 	struct iwl_fw_ini_allocation_tlv *fw_mon_cfg =
889 		&trans->dbg.fw_mon_cfg[alloc_id];
890 	struct iwl_dram_data *frag;
891 
892 	if (!iwl_trans_dbg_ini_valid(trans))
893 		return;
894 
895 	if (le32_to_cpu(fw_mon_cfg->buf_location) ==
896 	    IWL_FW_INI_LOCATION_SRAM_PATH) {
897 		IWL_DEBUG_FW(trans, "WRT: Applying SMEM buffer destination\n");
898 		/* set sram monitor by enabling bit 7 */
899 		iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
900 			    CSR_HW_IF_CONFIG_REG_BIT_MONITOR_SRAM);
901 
902 		return;
903 	}
904 
905 	if (le32_to_cpu(fw_mon_cfg->buf_location) !=
906 	    IWL_FW_INI_LOCATION_DRAM_PATH ||
907 	    !trans->dbg.fw_mon_ini[alloc_id].num_frags)
908 		return;
909 
910 	frag = &trans->dbg.fw_mon_ini[alloc_id].frags[0];
911 
912 	IWL_DEBUG_FW(trans, "WRT: Applying DRAM destination (alloc_id=%u)\n",
913 		     alloc_id);
914 
915 	iwl_write_umac_prph(trans, MON_BUFF_BASE_ADDR_VER2,
916 			    frag->physical >> MON_BUFF_SHIFT_VER2);
917 	iwl_write_umac_prph(trans, MON_BUFF_END_ADDR_VER2,
918 			    (frag->physical + frag->size - 256) >>
919 			    MON_BUFF_SHIFT_VER2);
920 }
921 
iwl_pcie_apply_destination(struct iwl_trans * trans)922 void iwl_pcie_apply_destination(struct iwl_trans *trans)
923 {
924 	const struct iwl_fw_dbg_dest_tlv_v1 *dest = trans->dbg.dest_tlv;
925 	const struct iwl_dram_data *fw_mon = &trans->dbg.fw_mon;
926 	int i;
927 
928 	if (iwl_trans_dbg_ini_valid(trans)) {
929 		iwl_pcie_apply_destination_ini(trans);
930 		return;
931 	}
932 
933 	IWL_INFO(trans, "Applying debug destination %s\n",
934 		 get_fw_dbg_mode_string(dest->monitor_mode));
935 
936 	if (dest->monitor_mode == EXTERNAL_MODE)
937 		iwl_pcie_alloc_fw_monitor(trans, dest->size_power);
938 	else
939 		IWL_WARN(trans, "PCI should have external buffer debug\n");
940 
941 	for (i = 0; i < trans->dbg.n_dest_reg; i++) {
942 		u32 addr = le32_to_cpu(dest->reg_ops[i].addr);
943 		u32 val = le32_to_cpu(dest->reg_ops[i].val);
944 
945 		switch (dest->reg_ops[i].op) {
946 		case CSR_ASSIGN:
947 			iwl_write32(trans, addr, val);
948 			break;
949 		case CSR_SETBIT:
950 			iwl_set_bit(trans, addr, BIT(val));
951 			break;
952 		case CSR_CLEARBIT:
953 			iwl_clear_bit(trans, addr, BIT(val));
954 			break;
955 		case PRPH_ASSIGN:
956 			iwl_write_prph(trans, addr, val);
957 			break;
958 		case PRPH_SETBIT:
959 			iwl_set_bits_prph(trans, addr, BIT(val));
960 			break;
961 		case PRPH_CLEARBIT:
962 			iwl_clear_bits_prph(trans, addr, BIT(val));
963 			break;
964 		case PRPH_BLOCKBIT:
965 			if (iwl_read_prph(trans, addr) & BIT(val)) {
966 				IWL_ERR(trans,
967 					"BIT(%u) in address 0x%x is 1, stopping FW configuration\n",
968 					val, addr);
969 				goto monitor;
970 			}
971 			break;
972 		default:
973 			IWL_ERR(trans, "FW debug - unknown OP %d\n",
974 				dest->reg_ops[i].op);
975 			break;
976 		}
977 	}
978 
979 monitor:
980 	if (dest->monitor_mode == EXTERNAL_MODE && fw_mon->size) {
981 		iwl_write_prph(trans, le32_to_cpu(dest->base_reg),
982 			       fw_mon->physical >> dest->base_shift);
983 		if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_8000)
984 			iwl_write_prph(trans, le32_to_cpu(dest->end_reg),
985 				       (fw_mon->physical + fw_mon->size -
986 					256) >> dest->end_shift);
987 		else
988 			iwl_write_prph(trans, le32_to_cpu(dest->end_reg),
989 				       (fw_mon->physical + fw_mon->size) >>
990 				       dest->end_shift);
991 	}
992 }
993 
iwl_pcie_load_given_ucode(struct iwl_trans * trans,const struct fw_img * image)994 static int iwl_pcie_load_given_ucode(struct iwl_trans *trans,
995 				const struct fw_img *image)
996 {
997 	int ret = 0;
998 	int first_ucode_section;
999 
1000 	IWL_DEBUG_FW(trans, "working with %s CPU\n",
1001 		     image->is_dual_cpus ? "Dual" : "Single");
1002 
1003 	/* load to FW the binary non secured sections of CPU1 */
1004 	ret = iwl_pcie_load_cpu_sections(trans, image, 1, &first_ucode_section);
1005 	if (ret)
1006 		return ret;
1007 
1008 	if (image->is_dual_cpus) {
1009 		/* set CPU2 header address */
1010 		iwl_write_prph(trans,
1011 			       LMPM_SECURE_UCODE_LOAD_CPU2_HDR_ADDR,
1012 			       LMPM_SECURE_CPU2_HDR_MEM_SPACE);
1013 
1014 		/* load to FW the binary sections of CPU2 */
1015 		ret = iwl_pcie_load_cpu_sections(trans, image, 2,
1016 						 &first_ucode_section);
1017 		if (ret)
1018 			return ret;
1019 	}
1020 
1021 	if (iwl_pcie_dbg_on(trans))
1022 		iwl_pcie_apply_destination(trans);
1023 
1024 	iwl_enable_interrupts(trans);
1025 
1026 	/* release CPU reset */
1027 	iwl_write32(trans, CSR_RESET, 0);
1028 
1029 	return 0;
1030 }
1031 
iwl_pcie_load_given_ucode_8000(struct iwl_trans * trans,const struct fw_img * image)1032 static int iwl_pcie_load_given_ucode_8000(struct iwl_trans *trans,
1033 					  const struct fw_img *image)
1034 {
1035 	int ret = 0;
1036 	int first_ucode_section;
1037 
1038 	IWL_DEBUG_FW(trans, "working with %s CPU\n",
1039 		     image->is_dual_cpus ? "Dual" : "Single");
1040 
1041 	if (iwl_pcie_dbg_on(trans))
1042 		iwl_pcie_apply_destination(trans);
1043 
1044 	IWL_DEBUG_POWER(trans, "Original WFPM value = 0x%08X\n",
1045 			iwl_read_prph(trans, WFPM_GP2));
1046 
1047 	/*
1048 	 * Set default value. On resume reading the values that were
1049 	 * zeored can provide debug data on the resume flow.
1050 	 * This is for debugging only and has no functional impact.
1051 	 */
1052 	iwl_write_prph(trans, WFPM_GP2, 0x01010101);
1053 
1054 	/* configure the ucode to be ready to get the secured image */
1055 	/* release CPU reset */
1056 	iwl_write_prph(trans, RELEASE_CPU_RESET, RELEASE_CPU_RESET_BIT);
1057 
1058 	/* load to FW the binary Secured sections of CPU1 */
1059 	ret = iwl_pcie_load_cpu_sections_8000(trans, image, 1,
1060 					      &first_ucode_section);
1061 	if (ret)
1062 		return ret;
1063 
1064 	/* load to FW the binary sections of CPU2 */
1065 	return iwl_pcie_load_cpu_sections_8000(trans, image, 2,
1066 					       &first_ucode_section);
1067 }
1068 
iwl_pcie_check_hw_rf_kill(struct iwl_trans * trans)1069 bool iwl_pcie_check_hw_rf_kill(struct iwl_trans *trans)
1070 {
1071 	struct iwl_trans_pcie *trans_pcie =  IWL_TRANS_GET_PCIE_TRANS(trans);
1072 	bool hw_rfkill = iwl_is_rfkill_set(trans);
1073 	bool prev = test_bit(STATUS_RFKILL_OPMODE, &trans->status);
1074 	bool report;
1075 
1076 	if (hw_rfkill) {
1077 		set_bit(STATUS_RFKILL_HW, &trans->status);
1078 		set_bit(STATUS_RFKILL_OPMODE, &trans->status);
1079 	} else {
1080 		clear_bit(STATUS_RFKILL_HW, &trans->status);
1081 		if (trans_pcie->opmode_down)
1082 			clear_bit(STATUS_RFKILL_OPMODE, &trans->status);
1083 	}
1084 
1085 	report = test_bit(STATUS_RFKILL_OPMODE, &trans->status);
1086 
1087 	if (prev != report)
1088 		iwl_trans_pcie_rf_kill(trans, report);
1089 
1090 	return hw_rfkill;
1091 }
1092 
1093 struct iwl_causes_list {
1094 	u32 cause_num;
1095 	u32 mask_reg;
1096 	u8 addr;
1097 };
1098 
1099 static struct iwl_causes_list causes_list[] = {
1100 	{MSIX_FH_INT_CAUSES_D2S_CH0_NUM,	CSR_MSIX_FH_INT_MASK_AD, 0},
1101 	{MSIX_FH_INT_CAUSES_D2S_CH1_NUM,	CSR_MSIX_FH_INT_MASK_AD, 0x1},
1102 	{MSIX_FH_INT_CAUSES_S2D,		CSR_MSIX_FH_INT_MASK_AD, 0x3},
1103 	{MSIX_FH_INT_CAUSES_FH_ERR,		CSR_MSIX_FH_INT_MASK_AD, 0x5},
1104 	{MSIX_HW_INT_CAUSES_REG_ALIVE,		CSR_MSIX_HW_INT_MASK_AD, 0x10},
1105 	{MSIX_HW_INT_CAUSES_REG_WAKEUP,		CSR_MSIX_HW_INT_MASK_AD, 0x11},
1106 	{MSIX_HW_INT_CAUSES_REG_IML,            CSR_MSIX_HW_INT_MASK_AD, 0x12},
1107 	{MSIX_HW_INT_CAUSES_REG_CT_KILL,	CSR_MSIX_HW_INT_MASK_AD, 0x16},
1108 	{MSIX_HW_INT_CAUSES_REG_RF_KILL,	CSR_MSIX_HW_INT_MASK_AD, 0x17},
1109 	{MSIX_HW_INT_CAUSES_REG_PERIODIC,	CSR_MSIX_HW_INT_MASK_AD, 0x18},
1110 	{MSIX_HW_INT_CAUSES_REG_SW_ERR,		CSR_MSIX_HW_INT_MASK_AD, 0x29},
1111 	{MSIX_HW_INT_CAUSES_REG_SCD,		CSR_MSIX_HW_INT_MASK_AD, 0x2A},
1112 	{MSIX_HW_INT_CAUSES_REG_FH_TX,		CSR_MSIX_HW_INT_MASK_AD, 0x2B},
1113 	{MSIX_HW_INT_CAUSES_REG_HW_ERR,		CSR_MSIX_HW_INT_MASK_AD, 0x2D},
1114 	{MSIX_HW_INT_CAUSES_REG_HAP,		CSR_MSIX_HW_INT_MASK_AD, 0x2E},
1115 };
1116 
iwl_pcie_map_non_rx_causes(struct iwl_trans * trans)1117 static void iwl_pcie_map_non_rx_causes(struct iwl_trans *trans)
1118 {
1119 	struct iwl_trans_pcie *trans_pcie =  IWL_TRANS_GET_PCIE_TRANS(trans);
1120 	int val = trans_pcie->def_irq | MSIX_NON_AUTO_CLEAR_CAUSE;
1121 	int i, arr_size = ARRAY_SIZE(causes_list);
1122 	struct iwl_causes_list *causes = causes_list;
1123 
1124 	/*
1125 	 * Access all non RX causes and map them to the default irq.
1126 	 * In case we are missing at least one interrupt vector,
1127 	 * the first interrupt vector will serve non-RX and FBQ causes.
1128 	 */
1129 	for (i = 0; i < arr_size; i++) {
1130 		iwl_write8(trans, CSR_MSIX_IVAR(causes[i].addr), val);
1131 		iwl_clear_bit(trans, causes[i].mask_reg,
1132 			      causes[i].cause_num);
1133 	}
1134 }
1135 
iwl_pcie_map_rx_causes(struct iwl_trans * trans)1136 static void iwl_pcie_map_rx_causes(struct iwl_trans *trans)
1137 {
1138 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1139 	u32 offset =
1140 		trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_FIRST_RSS ? 1 : 0;
1141 	u32 val, idx;
1142 
1143 	/*
1144 	 * The first RX queue - fallback queue, which is designated for
1145 	 * management frame, command responses etc, is always mapped to the
1146 	 * first interrupt vector. The other RX queues are mapped to
1147 	 * the other (N - 2) interrupt vectors.
1148 	 */
1149 	val = BIT(MSIX_FH_INT_CAUSES_Q(0));
1150 	for (idx = 1; idx < trans->num_rx_queues; idx++) {
1151 		iwl_write8(trans, CSR_MSIX_RX_IVAR(idx),
1152 			   MSIX_FH_INT_CAUSES_Q(idx - offset));
1153 		val |= BIT(MSIX_FH_INT_CAUSES_Q(idx));
1154 	}
1155 	iwl_write32(trans, CSR_MSIX_FH_INT_MASK_AD, ~val);
1156 
1157 	val = MSIX_FH_INT_CAUSES_Q(0);
1158 	if (trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_NON_RX)
1159 		val |= MSIX_NON_AUTO_CLEAR_CAUSE;
1160 	iwl_write8(trans, CSR_MSIX_RX_IVAR(0), val);
1161 
1162 	if (trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_FIRST_RSS)
1163 		iwl_write8(trans, CSR_MSIX_RX_IVAR(1), val);
1164 }
1165 
iwl_pcie_conf_msix_hw(struct iwl_trans_pcie * trans_pcie)1166 void iwl_pcie_conf_msix_hw(struct iwl_trans_pcie *trans_pcie)
1167 {
1168 	struct iwl_trans *trans = trans_pcie->trans;
1169 
1170 	if (!trans_pcie->msix_enabled) {
1171 		if (trans->trans_cfg->mq_rx_supported &&
1172 		    test_bit(STATUS_DEVICE_ENABLED, &trans->status))
1173 			iwl_write_umac_prph(trans, UREG_CHICK,
1174 					    UREG_CHICK_MSI_ENABLE);
1175 		return;
1176 	}
1177 	/*
1178 	 * The IVAR table needs to be configured again after reset,
1179 	 * but if the device is disabled, we can't write to
1180 	 * prph.
1181 	 */
1182 	if (test_bit(STATUS_DEVICE_ENABLED, &trans->status))
1183 		iwl_write_umac_prph(trans, UREG_CHICK, UREG_CHICK_MSIX_ENABLE);
1184 
1185 	/*
1186 	 * Each cause from the causes list above and the RX causes is
1187 	 * represented as a byte in the IVAR table. The first nibble
1188 	 * represents the bound interrupt vector of the cause, the second
1189 	 * represents no auto clear for this cause. This will be set if its
1190 	 * interrupt vector is bound to serve other causes.
1191 	 */
1192 	iwl_pcie_map_rx_causes(trans);
1193 
1194 	iwl_pcie_map_non_rx_causes(trans);
1195 }
1196 
iwl_pcie_init_msix(struct iwl_trans_pcie * trans_pcie)1197 static void iwl_pcie_init_msix(struct iwl_trans_pcie *trans_pcie)
1198 {
1199 	struct iwl_trans *trans = trans_pcie->trans;
1200 
1201 	iwl_pcie_conf_msix_hw(trans_pcie);
1202 
1203 	if (!trans_pcie->msix_enabled)
1204 		return;
1205 
1206 	trans_pcie->fh_init_mask = ~iwl_read32(trans, CSR_MSIX_FH_INT_MASK_AD);
1207 	trans_pcie->fh_mask = trans_pcie->fh_init_mask;
1208 	trans_pcie->hw_init_mask = ~iwl_read32(trans, CSR_MSIX_HW_INT_MASK_AD);
1209 	trans_pcie->hw_mask = trans_pcie->hw_init_mask;
1210 }
1211 
_iwl_trans_pcie_stop_device(struct iwl_trans * trans)1212 static void _iwl_trans_pcie_stop_device(struct iwl_trans *trans)
1213 {
1214 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1215 
1216 	lockdep_assert_held(&trans_pcie->mutex);
1217 
1218 	if (trans_pcie->is_down)
1219 		return;
1220 
1221 	trans_pcie->is_down = true;
1222 
1223 	/* tell the device to stop sending interrupts */
1224 	iwl_disable_interrupts(trans);
1225 
1226 	/* device going down, Stop using ICT table */
1227 	iwl_pcie_disable_ict(trans);
1228 
1229 	/*
1230 	 * If a HW restart happens during firmware loading,
1231 	 * then the firmware loading might call this function
1232 	 * and later it might be called again due to the
1233 	 * restart. So don't process again if the device is
1234 	 * already dead.
1235 	 */
1236 	if (test_and_clear_bit(STATUS_DEVICE_ENABLED, &trans->status)) {
1237 		IWL_DEBUG_INFO(trans,
1238 			       "DEVICE_ENABLED bit was set and is now cleared\n");
1239 		iwl_pcie_tx_stop(trans);
1240 		iwl_pcie_rx_stop(trans);
1241 
1242 		/* Power-down device's busmaster DMA clocks */
1243 		if (!trans->cfg->apmg_not_supported) {
1244 			iwl_write_prph(trans, APMG_CLK_DIS_REG,
1245 				       APMG_CLK_VAL_DMA_CLK_RQT);
1246 			udelay(5);
1247 		}
1248 	}
1249 
1250 	/* Make sure (redundant) we've released our request to stay awake */
1251 	iwl_clear_bit(trans, CSR_GP_CNTRL,
1252 		      CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1253 
1254 	/* Stop the device, and put it in low power state */
1255 	iwl_pcie_apm_stop(trans, false);
1256 
1257 	iwl_trans_pcie_sw_reset(trans);
1258 
1259 	/*
1260 	 * Upon stop, the IVAR table gets erased, so msi-x won't
1261 	 * work. This causes a bug in RF-KILL flows, since the interrupt
1262 	 * that enables radio won't fire on the correct irq, and the
1263 	 * driver won't be able to handle the interrupt.
1264 	 * Configure the IVAR table again after reset.
1265 	 */
1266 	iwl_pcie_conf_msix_hw(trans_pcie);
1267 
1268 	/*
1269 	 * Upon stop, the APM issues an interrupt if HW RF kill is set.
1270 	 * This is a bug in certain verions of the hardware.
1271 	 * Certain devices also keep sending HW RF kill interrupt all
1272 	 * the time, unless the interrupt is ACKed even if the interrupt
1273 	 * should be masked. Re-ACK all the interrupts here.
1274 	 */
1275 	iwl_disable_interrupts(trans);
1276 
1277 	/* clear all status bits */
1278 	clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
1279 	clear_bit(STATUS_INT_ENABLED, &trans->status);
1280 	clear_bit(STATUS_TPOWER_PMI, &trans->status);
1281 
1282 	/*
1283 	 * Even if we stop the HW, we still want the RF kill
1284 	 * interrupt
1285 	 */
1286 	iwl_enable_rfkill_int(trans);
1287 
1288 	/* re-take ownership to prevent other users from stealing the device */
1289 	iwl_pcie_prepare_card_hw(trans);
1290 }
1291 
iwl_pcie_synchronize_irqs(struct iwl_trans * trans)1292 void iwl_pcie_synchronize_irqs(struct iwl_trans *trans)
1293 {
1294 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1295 
1296 	if (trans_pcie->msix_enabled) {
1297 		int i;
1298 
1299 		for (i = 0; i < trans_pcie->alloc_vecs; i++)
1300 			synchronize_irq(trans_pcie->msix_entries[i].vector);
1301 	} else {
1302 		synchronize_irq(trans_pcie->pci_dev->irq);
1303 	}
1304 }
1305 
iwl_trans_pcie_start_fw(struct iwl_trans * trans,const struct fw_img * fw,bool run_in_rfkill)1306 static int iwl_trans_pcie_start_fw(struct iwl_trans *trans,
1307 				   const struct fw_img *fw, bool run_in_rfkill)
1308 {
1309 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1310 	bool hw_rfkill;
1311 	int ret;
1312 
1313 	/* This may fail if AMT took ownership of the device */
1314 	if (iwl_pcie_prepare_card_hw(trans)) {
1315 		IWL_WARN(trans, "Exit HW not ready\n");
1316 		return -EIO;
1317 	}
1318 
1319 	iwl_enable_rfkill_int(trans);
1320 
1321 	iwl_write32(trans, CSR_INT, 0xFFFFFFFF);
1322 
1323 	/*
1324 	 * We enabled the RF-Kill interrupt and the handler may very
1325 	 * well be running. Disable the interrupts to make sure no other
1326 	 * interrupt can be fired.
1327 	 */
1328 	iwl_disable_interrupts(trans);
1329 
1330 	/* Make sure it finished running */
1331 	iwl_pcie_synchronize_irqs(trans);
1332 
1333 	mutex_lock(&trans_pcie->mutex);
1334 
1335 	/* If platform's RF_KILL switch is NOT set to KILL */
1336 	hw_rfkill = iwl_pcie_check_hw_rf_kill(trans);
1337 	if (hw_rfkill && !run_in_rfkill) {
1338 		ret = -ERFKILL;
1339 		goto out;
1340 	}
1341 
1342 	/* Someone called stop_device, don't try to start_fw */
1343 	if (trans_pcie->is_down) {
1344 		IWL_WARN(trans,
1345 			 "Can't start_fw since the HW hasn't been started\n");
1346 		ret = -EIO;
1347 		goto out;
1348 	}
1349 
1350 	/* make sure rfkill handshake bits are cleared */
1351 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1352 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR,
1353 		    CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1354 
1355 	/* clear (again), then enable host interrupts */
1356 	iwl_write32(trans, CSR_INT, 0xFFFFFFFF);
1357 
1358 	ret = iwl_pcie_nic_init(trans);
1359 	if (ret) {
1360 		IWL_ERR(trans, "Unable to init nic\n");
1361 		goto out;
1362 	}
1363 
1364 	/*
1365 	 * Now, we load the firmware and don't want to be interrupted, even
1366 	 * by the RF-Kill interrupt (hence mask all the interrupt besides the
1367 	 * FH_TX interrupt which is needed to load the firmware). If the
1368 	 * RF-Kill switch is toggled, we will find out after having loaded
1369 	 * the firmware and return the proper value to the caller.
1370 	 */
1371 	iwl_enable_fw_load_int(trans);
1372 
1373 	/* really make sure rfkill handshake bits are cleared */
1374 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1375 	iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1376 
1377 	/* Load the given image to the HW */
1378 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_8000)
1379 		ret = iwl_pcie_load_given_ucode_8000(trans, fw);
1380 	else
1381 		ret = iwl_pcie_load_given_ucode(trans, fw);
1382 
1383 	/* re-check RF-Kill state since we may have missed the interrupt */
1384 	hw_rfkill = iwl_pcie_check_hw_rf_kill(trans);
1385 	if (hw_rfkill && !run_in_rfkill)
1386 		ret = -ERFKILL;
1387 
1388 out:
1389 	mutex_unlock(&trans_pcie->mutex);
1390 	return ret;
1391 }
1392 
iwl_trans_pcie_fw_alive(struct iwl_trans * trans,u32 scd_addr)1393 static void iwl_trans_pcie_fw_alive(struct iwl_trans *trans, u32 scd_addr)
1394 {
1395 	iwl_pcie_reset_ict(trans);
1396 	iwl_pcie_tx_start(trans, scd_addr);
1397 }
1398 
iwl_trans_pcie_handle_stop_rfkill(struct iwl_trans * trans,bool was_in_rfkill)1399 void iwl_trans_pcie_handle_stop_rfkill(struct iwl_trans *trans,
1400 				       bool was_in_rfkill)
1401 {
1402 	bool hw_rfkill;
1403 
1404 	/*
1405 	 * Check again since the RF kill state may have changed while
1406 	 * all the interrupts were disabled, in this case we couldn't
1407 	 * receive the RF kill interrupt and update the state in the
1408 	 * op_mode.
1409 	 * Don't call the op_mode if the rkfill state hasn't changed.
1410 	 * This allows the op_mode to call stop_device from the rfkill
1411 	 * notification without endless recursion. Under very rare
1412 	 * circumstances, we might have a small recursion if the rfkill
1413 	 * state changed exactly now while we were called from stop_device.
1414 	 * This is very unlikely but can happen and is supported.
1415 	 */
1416 	hw_rfkill = iwl_is_rfkill_set(trans);
1417 	if (hw_rfkill) {
1418 		set_bit(STATUS_RFKILL_HW, &trans->status);
1419 		set_bit(STATUS_RFKILL_OPMODE, &trans->status);
1420 	} else {
1421 		clear_bit(STATUS_RFKILL_HW, &trans->status);
1422 		clear_bit(STATUS_RFKILL_OPMODE, &trans->status);
1423 	}
1424 	if (hw_rfkill != was_in_rfkill)
1425 		iwl_trans_pcie_rf_kill(trans, hw_rfkill);
1426 }
1427 
iwl_trans_pcie_stop_device(struct iwl_trans * trans)1428 static void iwl_trans_pcie_stop_device(struct iwl_trans *trans)
1429 {
1430 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1431 	bool was_in_rfkill;
1432 
1433 	mutex_lock(&trans_pcie->mutex);
1434 	trans_pcie->opmode_down = true;
1435 	was_in_rfkill = test_bit(STATUS_RFKILL_OPMODE, &trans->status);
1436 	_iwl_trans_pcie_stop_device(trans);
1437 	iwl_trans_pcie_handle_stop_rfkill(trans, was_in_rfkill);
1438 	mutex_unlock(&trans_pcie->mutex);
1439 }
1440 
iwl_trans_pcie_rf_kill(struct iwl_trans * trans,bool state)1441 void iwl_trans_pcie_rf_kill(struct iwl_trans *trans, bool state)
1442 {
1443 	struct iwl_trans_pcie __maybe_unused *trans_pcie =
1444 		IWL_TRANS_GET_PCIE_TRANS(trans);
1445 
1446 	lockdep_assert_held(&trans_pcie->mutex);
1447 
1448 	IWL_WARN(trans, "reporting RF_KILL (radio %s)\n",
1449 		 state ? "disabled" : "enabled");
1450 	if (iwl_op_mode_hw_rf_kill(trans->op_mode, state)) {
1451 		if (trans->trans_cfg->gen2)
1452 			_iwl_trans_pcie_gen2_stop_device(trans);
1453 		else
1454 			_iwl_trans_pcie_stop_device(trans);
1455 	}
1456 }
1457 
iwl_pcie_d3_complete_suspend(struct iwl_trans * trans,bool test,bool reset)1458 void iwl_pcie_d3_complete_suspend(struct iwl_trans *trans,
1459 				  bool test, bool reset)
1460 {
1461 	iwl_disable_interrupts(trans);
1462 
1463 	/*
1464 	 * in testing mode, the host stays awake and the
1465 	 * hardware won't be reset (not even partially)
1466 	 */
1467 	if (test)
1468 		return;
1469 
1470 	iwl_pcie_disable_ict(trans);
1471 
1472 	iwl_pcie_synchronize_irqs(trans);
1473 
1474 	iwl_clear_bit(trans, CSR_GP_CNTRL,
1475 		      CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1476 	iwl_clear_bit(trans, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
1477 
1478 	if (reset) {
1479 		/*
1480 		 * reset TX queues -- some of their registers reset during S3
1481 		 * so if we don't reset everything here the D3 image would try
1482 		 * to execute some invalid memory upon resume
1483 		 */
1484 		iwl_trans_pcie_tx_reset(trans);
1485 	}
1486 
1487 	iwl_pcie_set_pwr(trans, true);
1488 }
1489 
iwl_trans_pcie_d3_suspend(struct iwl_trans * trans,bool test,bool reset)1490 static int iwl_trans_pcie_d3_suspend(struct iwl_trans *trans, bool test,
1491 				     bool reset)
1492 {
1493 	int ret;
1494 	struct iwl_trans_pcie *trans_pcie =  IWL_TRANS_GET_PCIE_TRANS(trans);
1495 
1496 	if (!reset)
1497 		/* Enable persistence mode to avoid reset */
1498 		iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
1499 			    CSR_HW_IF_CONFIG_REG_PERSIST_MODE);
1500 
1501 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) {
1502 		iwl_write_umac_prph(trans, UREG_DOORBELL_TO_ISR6,
1503 				    UREG_DOORBELL_TO_ISR6_SUSPEND);
1504 
1505 		ret = wait_event_timeout(trans_pcie->sx_waitq,
1506 					 trans_pcie->sx_complete, 2 * HZ);
1507 		/*
1508 		 * Invalidate it toward resume.
1509 		 */
1510 		trans_pcie->sx_complete = false;
1511 
1512 		if (!ret) {
1513 			IWL_ERR(trans, "Timeout entering D3\n");
1514 			return -ETIMEDOUT;
1515 		}
1516 	}
1517 	iwl_pcie_d3_complete_suspend(trans, test, reset);
1518 
1519 	return 0;
1520 }
1521 
iwl_trans_pcie_d3_resume(struct iwl_trans * trans,enum iwl_d3_status * status,bool test,bool reset)1522 static int iwl_trans_pcie_d3_resume(struct iwl_trans *trans,
1523 				    enum iwl_d3_status *status,
1524 				    bool test,  bool reset)
1525 {
1526 	struct iwl_trans_pcie *trans_pcie =  IWL_TRANS_GET_PCIE_TRANS(trans);
1527 	u32 val;
1528 	int ret;
1529 
1530 	if (test) {
1531 		iwl_enable_interrupts(trans);
1532 		*status = IWL_D3_STATUS_ALIVE;
1533 		goto out;
1534 	}
1535 
1536 	iwl_set_bit(trans, CSR_GP_CNTRL,
1537 		    CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1538 
1539 	ret = iwl_finish_nic_init(trans, trans->trans_cfg);
1540 	if (ret)
1541 		return ret;
1542 
1543 	/*
1544 	 * Reconfigure IVAR table in case of MSIX or reset ict table in
1545 	 * MSI mode since HW reset erased it.
1546 	 * Also enables interrupts - none will happen as
1547 	 * the device doesn't know we're waking it up, only when
1548 	 * the opmode actually tells it after this call.
1549 	 */
1550 	iwl_pcie_conf_msix_hw(trans_pcie);
1551 	if (!trans_pcie->msix_enabled)
1552 		iwl_pcie_reset_ict(trans);
1553 	iwl_enable_interrupts(trans);
1554 
1555 	iwl_pcie_set_pwr(trans, false);
1556 
1557 	if (!reset) {
1558 		iwl_clear_bit(trans, CSR_GP_CNTRL,
1559 			      CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1560 	} else {
1561 		iwl_trans_pcie_tx_reset(trans);
1562 
1563 		ret = iwl_pcie_rx_init(trans);
1564 		if (ret) {
1565 			IWL_ERR(trans,
1566 				"Failed to resume the device (RX reset)\n");
1567 			return ret;
1568 		}
1569 	}
1570 
1571 	IWL_DEBUG_POWER(trans, "WFPM value upon resume = 0x%08X\n",
1572 			iwl_read_umac_prph(trans, WFPM_GP2));
1573 
1574 	val = iwl_read32(trans, CSR_RESET);
1575 	if (val & CSR_RESET_REG_FLAG_NEVO_RESET)
1576 		*status = IWL_D3_STATUS_RESET;
1577 	else
1578 		*status = IWL_D3_STATUS_ALIVE;
1579 
1580 out:
1581 	if (*status == IWL_D3_STATUS_ALIVE &&
1582 	    trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) {
1583 		trans_pcie->sx_complete = false;
1584 		iwl_write_umac_prph(trans, UREG_DOORBELL_TO_ISR6,
1585 				    UREG_DOORBELL_TO_ISR6_RESUME);
1586 
1587 		ret = wait_event_timeout(trans_pcie->sx_waitq,
1588 					 trans_pcie->sx_complete, 2 * HZ);
1589 		/*
1590 		 * Invalidate it toward next suspend.
1591 		 */
1592 		trans_pcie->sx_complete = false;
1593 
1594 		if (!ret) {
1595 			IWL_ERR(trans, "Timeout exiting D3\n");
1596 			return -ETIMEDOUT;
1597 		}
1598 	}
1599 	return 0;
1600 }
1601 
1602 static void
iwl_pcie_set_interrupt_capa(struct pci_dev * pdev,struct iwl_trans * trans,const struct iwl_cfg_trans_params * cfg_trans)1603 iwl_pcie_set_interrupt_capa(struct pci_dev *pdev,
1604 			    struct iwl_trans *trans,
1605 			    const struct iwl_cfg_trans_params *cfg_trans)
1606 {
1607 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1608 	int max_irqs, num_irqs, i, ret;
1609 	u16 pci_cmd;
1610 	u32 max_rx_queues = IWL_MAX_RX_HW_QUEUES;
1611 
1612 	if (!cfg_trans->mq_rx_supported)
1613 		goto enable_msi;
1614 
1615 	if (cfg_trans->device_family <= IWL_DEVICE_FAMILY_9000)
1616 		max_rx_queues = IWL_9000_MAX_RX_HW_QUEUES;
1617 
1618 	max_irqs = min_t(u32, num_online_cpus() + 2, max_rx_queues);
1619 	for (i = 0; i < max_irqs; i++)
1620 		trans_pcie->msix_entries[i].entry = i;
1621 
1622 	num_irqs = pci_enable_msix_range(pdev, trans_pcie->msix_entries,
1623 					 MSIX_MIN_INTERRUPT_VECTORS,
1624 					 max_irqs);
1625 	if (num_irqs < 0) {
1626 		IWL_DEBUG_INFO(trans,
1627 			       "Failed to enable msi-x mode (ret %d). Moving to msi mode.\n",
1628 			       num_irqs);
1629 		goto enable_msi;
1630 	}
1631 	trans_pcie->def_irq = (num_irqs == max_irqs) ? num_irqs - 1 : 0;
1632 
1633 	IWL_DEBUG_INFO(trans,
1634 		       "MSI-X enabled. %d interrupt vectors were allocated\n",
1635 		       num_irqs);
1636 
1637 	/*
1638 	 * In case the OS provides fewer interrupts than requested, different
1639 	 * causes will share the same interrupt vector as follows:
1640 	 * One interrupt less: non rx causes shared with FBQ.
1641 	 * Two interrupts less: non rx causes shared with FBQ and RSS.
1642 	 * More than two interrupts: we will use fewer RSS queues.
1643 	 */
1644 	if (num_irqs <= max_irqs - 2) {
1645 		trans_pcie->trans->num_rx_queues = num_irqs + 1;
1646 		trans_pcie->shared_vec_mask = IWL_SHARED_IRQ_NON_RX |
1647 			IWL_SHARED_IRQ_FIRST_RSS;
1648 	} else if (num_irqs == max_irqs - 1) {
1649 		trans_pcie->trans->num_rx_queues = num_irqs;
1650 		trans_pcie->shared_vec_mask = IWL_SHARED_IRQ_NON_RX;
1651 	} else {
1652 		trans_pcie->trans->num_rx_queues = num_irqs - 1;
1653 	}
1654 	WARN_ON(trans_pcie->trans->num_rx_queues > IWL_MAX_RX_HW_QUEUES);
1655 
1656 	trans_pcie->alloc_vecs = num_irqs;
1657 	trans_pcie->msix_enabled = true;
1658 	return;
1659 
1660 enable_msi:
1661 	ret = pci_enable_msi(pdev);
1662 	if (ret) {
1663 		dev_err(&pdev->dev, "pci_enable_msi failed - %d\n", ret);
1664 		/* enable rfkill interrupt: hw bug w/a */
1665 		pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
1666 		if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
1667 			pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
1668 			pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
1669 		}
1670 	}
1671 }
1672 
iwl_pcie_irq_set_affinity(struct iwl_trans * trans)1673 static void iwl_pcie_irq_set_affinity(struct iwl_trans *trans)
1674 {
1675 	int iter_rx_q, i, ret, cpu, offset;
1676 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1677 
1678 	i = trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_FIRST_RSS ? 0 : 1;
1679 	iter_rx_q = trans_pcie->trans->num_rx_queues - 1 + i;
1680 	offset = 1 + i;
1681 	for (; i < iter_rx_q ; i++) {
1682 		/*
1683 		 * Get the cpu prior to the place to search
1684 		 * (i.e. return will be > i - 1).
1685 		 */
1686 		cpu = cpumask_next(i - offset, cpu_online_mask);
1687 		cpumask_set_cpu(cpu, &trans_pcie->affinity_mask[i]);
1688 		ret = irq_set_affinity_hint(trans_pcie->msix_entries[i].vector,
1689 					    &trans_pcie->affinity_mask[i]);
1690 		if (ret)
1691 			IWL_ERR(trans_pcie->trans,
1692 				"Failed to set affinity mask for IRQ %d\n",
1693 				i);
1694 	}
1695 }
1696 
iwl_pcie_init_msix_handler(struct pci_dev * pdev,struct iwl_trans_pcie * trans_pcie)1697 static int iwl_pcie_init_msix_handler(struct pci_dev *pdev,
1698 				      struct iwl_trans_pcie *trans_pcie)
1699 {
1700 	int i;
1701 
1702 	for (i = 0; i < trans_pcie->alloc_vecs; i++) {
1703 		int ret;
1704 		struct msix_entry *msix_entry;
1705 		const char *qname = queue_name(&pdev->dev, trans_pcie, i);
1706 
1707 		if (!qname)
1708 			return -ENOMEM;
1709 
1710 		msix_entry = &trans_pcie->msix_entries[i];
1711 		ret = devm_request_threaded_irq(&pdev->dev,
1712 						msix_entry->vector,
1713 						iwl_pcie_msix_isr,
1714 						(i == trans_pcie->def_irq) ?
1715 						iwl_pcie_irq_msix_handler :
1716 						iwl_pcie_irq_rx_msix_handler,
1717 						IRQF_SHARED,
1718 						qname,
1719 						msix_entry);
1720 		if (ret) {
1721 			IWL_ERR(trans_pcie->trans,
1722 				"Error allocating IRQ %d\n", i);
1723 
1724 			return ret;
1725 		}
1726 	}
1727 	iwl_pcie_irq_set_affinity(trans_pcie->trans);
1728 
1729 	return 0;
1730 }
1731 
iwl_trans_pcie_clear_persistence_bit(struct iwl_trans * trans)1732 static int iwl_trans_pcie_clear_persistence_bit(struct iwl_trans *trans)
1733 {
1734 	u32 hpm, wprot;
1735 
1736 	switch (trans->trans_cfg->device_family) {
1737 	case IWL_DEVICE_FAMILY_9000:
1738 		wprot = PREG_PRPH_WPROT_9000;
1739 		break;
1740 	case IWL_DEVICE_FAMILY_22000:
1741 		wprot = PREG_PRPH_WPROT_22000;
1742 		break;
1743 	default:
1744 		return 0;
1745 	}
1746 
1747 	hpm = iwl_read_umac_prph_no_grab(trans, HPM_DEBUG);
1748 	if (hpm != 0xa5a5a5a0 && (hpm & PERSISTENCE_BIT)) {
1749 		u32 wprot_val = iwl_read_umac_prph_no_grab(trans, wprot);
1750 
1751 		if (wprot_val & PREG_WFPM_ACCESS) {
1752 			IWL_ERR(trans,
1753 				"Error, can not clear persistence bit\n");
1754 			return -EPERM;
1755 		}
1756 		iwl_write_umac_prph_no_grab(trans, HPM_DEBUG,
1757 					    hpm & ~PERSISTENCE_BIT);
1758 	}
1759 
1760 	return 0;
1761 }
1762 
iwl_pcie_gen2_force_power_gating(struct iwl_trans * trans)1763 static int iwl_pcie_gen2_force_power_gating(struct iwl_trans *trans)
1764 {
1765 	int ret;
1766 
1767 	ret = iwl_finish_nic_init(trans, trans->trans_cfg);
1768 	if (ret < 0)
1769 		return ret;
1770 
1771 	iwl_set_bits_prph(trans, HPM_HIPM_GEN_CFG,
1772 			  HPM_HIPM_GEN_CFG_CR_FORCE_ACTIVE);
1773 	udelay(20);
1774 	iwl_set_bits_prph(trans, HPM_HIPM_GEN_CFG,
1775 			  HPM_HIPM_GEN_CFG_CR_PG_EN |
1776 			  HPM_HIPM_GEN_CFG_CR_SLP_EN);
1777 	udelay(20);
1778 	iwl_clear_bits_prph(trans, HPM_HIPM_GEN_CFG,
1779 			    HPM_HIPM_GEN_CFG_CR_FORCE_ACTIVE);
1780 
1781 	iwl_trans_pcie_sw_reset(trans);
1782 
1783 	return 0;
1784 }
1785 
_iwl_trans_pcie_start_hw(struct iwl_trans * trans)1786 static int _iwl_trans_pcie_start_hw(struct iwl_trans *trans)
1787 {
1788 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1789 	int err;
1790 
1791 	lockdep_assert_held(&trans_pcie->mutex);
1792 
1793 	err = iwl_pcie_prepare_card_hw(trans);
1794 	if (err) {
1795 		IWL_ERR(trans, "Error while preparing HW: %d\n", err);
1796 		return err;
1797 	}
1798 
1799 	err = iwl_trans_pcie_clear_persistence_bit(trans);
1800 	if (err)
1801 		return err;
1802 
1803 	iwl_trans_pcie_sw_reset(trans);
1804 
1805 	if (trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_22000 &&
1806 	    trans->trans_cfg->integrated) {
1807 		err = iwl_pcie_gen2_force_power_gating(trans);
1808 		if (err)
1809 			return err;
1810 	}
1811 
1812 	err = iwl_pcie_apm_init(trans);
1813 	if (err)
1814 		return err;
1815 
1816 	iwl_pcie_init_msix(trans_pcie);
1817 
1818 	/* From now on, the op_mode will be kept updated about RF kill state */
1819 	iwl_enable_rfkill_int(trans);
1820 
1821 	trans_pcie->opmode_down = false;
1822 
1823 	/* Set is_down to false here so that...*/
1824 	trans_pcie->is_down = false;
1825 
1826 	/* ...rfkill can call stop_device and set it false if needed */
1827 	iwl_pcie_check_hw_rf_kill(trans);
1828 
1829 	return 0;
1830 }
1831 
iwl_trans_pcie_start_hw(struct iwl_trans * trans)1832 static int iwl_trans_pcie_start_hw(struct iwl_trans *trans)
1833 {
1834 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1835 	int ret;
1836 
1837 	mutex_lock(&trans_pcie->mutex);
1838 	ret = _iwl_trans_pcie_start_hw(trans);
1839 	mutex_unlock(&trans_pcie->mutex);
1840 
1841 	return ret;
1842 }
1843 
iwl_trans_pcie_op_mode_leave(struct iwl_trans * trans)1844 static void iwl_trans_pcie_op_mode_leave(struct iwl_trans *trans)
1845 {
1846 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1847 
1848 	mutex_lock(&trans_pcie->mutex);
1849 
1850 	/* disable interrupts - don't enable HW RF kill interrupt */
1851 	iwl_disable_interrupts(trans);
1852 
1853 	iwl_pcie_apm_stop(trans, true);
1854 
1855 	iwl_disable_interrupts(trans);
1856 
1857 	iwl_pcie_disable_ict(trans);
1858 
1859 	mutex_unlock(&trans_pcie->mutex);
1860 
1861 	iwl_pcie_synchronize_irqs(trans);
1862 }
1863 
iwl_trans_pcie_write8(struct iwl_trans * trans,u32 ofs,u8 val)1864 static void iwl_trans_pcie_write8(struct iwl_trans *trans, u32 ofs, u8 val)
1865 {
1866 	writeb(val, IWL_TRANS_GET_PCIE_TRANS(trans)->hw_base + ofs);
1867 }
1868 
iwl_trans_pcie_write32(struct iwl_trans * trans,u32 ofs,u32 val)1869 static void iwl_trans_pcie_write32(struct iwl_trans *trans, u32 ofs, u32 val)
1870 {
1871 	writel(val, IWL_TRANS_GET_PCIE_TRANS(trans)->hw_base + ofs);
1872 }
1873 
iwl_trans_pcie_read32(struct iwl_trans * trans,u32 ofs)1874 static u32 iwl_trans_pcie_read32(struct iwl_trans *trans, u32 ofs)
1875 {
1876 	return readl(IWL_TRANS_GET_PCIE_TRANS(trans)->hw_base + ofs);
1877 }
1878 
iwl_trans_pcie_prph_msk(struct iwl_trans * trans)1879 static u32 iwl_trans_pcie_prph_msk(struct iwl_trans *trans)
1880 {
1881 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210)
1882 		return 0x00FFFFFF;
1883 	else
1884 		return 0x000FFFFF;
1885 }
1886 
iwl_trans_pcie_read_prph(struct iwl_trans * trans,u32 reg)1887 static u32 iwl_trans_pcie_read_prph(struct iwl_trans *trans, u32 reg)
1888 {
1889 	u32 mask = iwl_trans_pcie_prph_msk(trans);
1890 
1891 	iwl_trans_pcie_write32(trans, HBUS_TARG_PRPH_RADDR,
1892 			       ((reg & mask) | (3 << 24)));
1893 	return iwl_trans_pcie_read32(trans, HBUS_TARG_PRPH_RDAT);
1894 }
1895 
iwl_trans_pcie_write_prph(struct iwl_trans * trans,u32 addr,u32 val)1896 static void iwl_trans_pcie_write_prph(struct iwl_trans *trans, u32 addr,
1897 				      u32 val)
1898 {
1899 	u32 mask = iwl_trans_pcie_prph_msk(trans);
1900 
1901 	iwl_trans_pcie_write32(trans, HBUS_TARG_PRPH_WADDR,
1902 			       ((addr & mask) | (3 << 24)));
1903 	iwl_trans_pcie_write32(trans, HBUS_TARG_PRPH_WDAT, val);
1904 }
1905 
iwl_trans_pcie_configure(struct iwl_trans * trans,const struct iwl_trans_config * trans_cfg)1906 static void iwl_trans_pcie_configure(struct iwl_trans *trans,
1907 				     const struct iwl_trans_config *trans_cfg)
1908 {
1909 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1910 
1911 	/* free all first - we might be reconfigured for a different size */
1912 	iwl_pcie_free_rbs_pool(trans);
1913 
1914 	trans->txqs.cmd.q_id = trans_cfg->cmd_queue;
1915 	trans->txqs.cmd.fifo = trans_cfg->cmd_fifo;
1916 	trans->txqs.cmd.wdg_timeout = trans_cfg->cmd_q_wdg_timeout;
1917 	trans->txqs.page_offs = trans_cfg->cb_data_offs;
1918 	trans->txqs.dev_cmd_offs = trans_cfg->cb_data_offs + sizeof(void *);
1919 
1920 	if (WARN_ON(trans_cfg->n_no_reclaim_cmds > MAX_NO_RECLAIM_CMDS))
1921 		trans_pcie->n_no_reclaim_cmds = 0;
1922 	else
1923 		trans_pcie->n_no_reclaim_cmds = trans_cfg->n_no_reclaim_cmds;
1924 	if (trans_pcie->n_no_reclaim_cmds)
1925 		memcpy(trans_pcie->no_reclaim_cmds, trans_cfg->no_reclaim_cmds,
1926 		       trans_pcie->n_no_reclaim_cmds * sizeof(u8));
1927 
1928 	trans_pcie->rx_buf_size = trans_cfg->rx_buf_size;
1929 	trans_pcie->rx_page_order =
1930 		iwl_trans_get_rb_size_order(trans_pcie->rx_buf_size);
1931 	trans_pcie->rx_buf_bytes =
1932 		iwl_trans_get_rb_size(trans_pcie->rx_buf_size);
1933 	trans_pcie->supported_dma_mask = DMA_BIT_MASK(12);
1934 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210)
1935 		trans_pcie->supported_dma_mask = DMA_BIT_MASK(11);
1936 
1937 	trans->txqs.bc_table_dword = trans_cfg->bc_table_dword;
1938 	trans_pcie->scd_set_active = trans_cfg->scd_set_active;
1939 	trans_pcie->sw_csum_tx = trans_cfg->sw_csum_tx;
1940 
1941 	trans->command_groups = trans_cfg->command_groups;
1942 	trans->command_groups_size = trans_cfg->command_groups_size;
1943 
1944 	/* Initialize NAPI here - it should be before registering to mac80211
1945 	 * in the opmode but after the HW struct is allocated.
1946 	 * As this function may be called again in some corner cases don't
1947 	 * do anything if NAPI was already initialized.
1948 	 */
1949 	if (trans_pcie->napi_dev.reg_state != NETREG_DUMMY)
1950 		init_dummy_netdev(&trans_pcie->napi_dev);
1951 }
1952 
iwl_trans_pcie_free(struct iwl_trans * trans)1953 void iwl_trans_pcie_free(struct iwl_trans *trans)
1954 {
1955 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1956 	int i;
1957 
1958 	iwl_pcie_synchronize_irqs(trans);
1959 
1960 	if (trans->trans_cfg->gen2)
1961 		iwl_txq_gen2_tx_free(trans);
1962 	else
1963 		iwl_pcie_tx_free(trans);
1964 	iwl_pcie_rx_free(trans);
1965 
1966 	if (trans_pcie->rba.alloc_wq) {
1967 		destroy_workqueue(trans_pcie->rba.alloc_wq);
1968 		trans_pcie->rba.alloc_wq = NULL;
1969 	}
1970 
1971 	if (trans_pcie->msix_enabled) {
1972 		for (i = 0; i < trans_pcie->alloc_vecs; i++) {
1973 			irq_set_affinity_hint(
1974 				trans_pcie->msix_entries[i].vector,
1975 				NULL);
1976 		}
1977 
1978 		trans_pcie->msix_enabled = false;
1979 	} else {
1980 		iwl_pcie_free_ict(trans);
1981 	}
1982 
1983 	iwl_pcie_free_fw_monitor(trans);
1984 
1985 	if (trans_pcie->pnvm_dram.size)
1986 		dma_free_coherent(trans->dev, trans_pcie->pnvm_dram.size,
1987 				  trans_pcie->pnvm_dram.block,
1988 				  trans_pcie->pnvm_dram.physical);
1989 
1990 	mutex_destroy(&trans_pcie->mutex);
1991 	iwl_trans_free(trans);
1992 }
1993 
iwl_trans_pcie_set_pmi(struct iwl_trans * trans,bool state)1994 static void iwl_trans_pcie_set_pmi(struct iwl_trans *trans, bool state)
1995 {
1996 	if (state)
1997 		set_bit(STATUS_TPOWER_PMI, &trans->status);
1998 	else
1999 		clear_bit(STATUS_TPOWER_PMI, &trans->status);
2000 }
2001 
2002 struct iwl_trans_pcie_removal {
2003 	struct pci_dev *pdev;
2004 	struct work_struct work;
2005 };
2006 
iwl_trans_pcie_removal_wk(struct work_struct * wk)2007 static void iwl_trans_pcie_removal_wk(struct work_struct *wk)
2008 {
2009 	struct iwl_trans_pcie_removal *removal =
2010 		container_of(wk, struct iwl_trans_pcie_removal, work);
2011 	struct pci_dev *pdev = removal->pdev;
2012 	static char *prop[] = {"EVENT=INACCESSIBLE", NULL};
2013 
2014 	dev_err(&pdev->dev, "Device gone - attempting removal\n");
2015 	kobject_uevent_env(&pdev->dev.kobj, KOBJ_CHANGE, prop);
2016 	pci_lock_rescan_remove();
2017 	pci_dev_put(pdev);
2018 	pci_stop_and_remove_bus_device(pdev);
2019 	pci_unlock_rescan_remove();
2020 
2021 	kfree(removal);
2022 	module_put(THIS_MODULE);
2023 }
2024 
iwl_trans_pcie_grab_nic_access(struct iwl_trans * trans,unsigned long * flags)2025 static bool iwl_trans_pcie_grab_nic_access(struct iwl_trans *trans,
2026 					   unsigned long *flags)
2027 {
2028 	int ret;
2029 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2030 
2031 	spin_lock_bh(&trans_pcie->reg_lock);
2032 
2033 	if (trans_pcie->cmd_hold_nic_awake)
2034 		goto out;
2035 
2036 	/* this bit wakes up the NIC */
2037 	__iwl_trans_pcie_set_bit(trans, CSR_GP_CNTRL,
2038 				 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2039 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_8000)
2040 		udelay(2);
2041 
2042 	/*
2043 	 * These bits say the device is running, and should keep running for
2044 	 * at least a short while (at least as long as MAC_ACCESS_REQ stays 1),
2045 	 * but they do not indicate that embedded SRAM is restored yet;
2046 	 * HW with volatile SRAM must save/restore contents to/from
2047 	 * host DRAM when sleeping/waking for power-saving.
2048 	 * Each direction takes approximately 1/4 millisecond; with this
2049 	 * overhead, it's a good idea to grab and hold MAC_ACCESS_REQUEST if a
2050 	 * series of register accesses are expected (e.g. reading Event Log),
2051 	 * to keep device from sleeping.
2052 	 *
2053 	 * CSR_UCODE_DRV_GP1 register bit MAC_SLEEP == 0 indicates that
2054 	 * SRAM is okay/restored.  We don't check that here because this call
2055 	 * is just for hardware register access; but GP1 MAC_SLEEP
2056 	 * check is a good idea before accessing the SRAM of HW with
2057 	 * volatile SRAM (e.g. reading Event Log).
2058 	 *
2059 	 * 5000 series and later (including 1000 series) have non-volatile SRAM,
2060 	 * and do not save/restore SRAM when power cycling.
2061 	 */
2062 	ret = iwl_poll_bit(trans, CSR_GP_CNTRL,
2063 			   CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN,
2064 			   (CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY |
2065 			    CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP), 15000);
2066 	if (unlikely(ret < 0)) {
2067 		u32 cntrl = iwl_read32(trans, CSR_GP_CNTRL);
2068 
2069 		WARN_ONCE(1,
2070 			  "Timeout waiting for hardware access (CSR_GP_CNTRL 0x%08x)\n",
2071 			  cntrl);
2072 
2073 		iwl_trans_pcie_dump_regs(trans);
2074 
2075 		if (iwlwifi_mod_params.remove_when_gone && cntrl == ~0U) {
2076 			struct iwl_trans_pcie_removal *removal;
2077 
2078 			if (test_bit(STATUS_TRANS_DEAD, &trans->status))
2079 				goto err;
2080 
2081 			IWL_ERR(trans, "Device gone - scheduling removal!\n");
2082 
2083 			/*
2084 			 * get a module reference to avoid doing this
2085 			 * while unloading anyway and to avoid
2086 			 * scheduling a work with code that's being
2087 			 * removed.
2088 			 */
2089 			if (!try_module_get(THIS_MODULE)) {
2090 				IWL_ERR(trans,
2091 					"Module is being unloaded - abort\n");
2092 				goto err;
2093 			}
2094 
2095 			removal = kzalloc(sizeof(*removal), GFP_ATOMIC);
2096 			if (!removal) {
2097 				module_put(THIS_MODULE);
2098 				goto err;
2099 			}
2100 			/*
2101 			 * we don't need to clear this flag, because
2102 			 * the trans will be freed and reallocated.
2103 			*/
2104 			set_bit(STATUS_TRANS_DEAD, &trans->status);
2105 
2106 			removal->pdev = to_pci_dev(trans->dev);
2107 			INIT_WORK(&removal->work, iwl_trans_pcie_removal_wk);
2108 			pci_dev_get(removal->pdev);
2109 			schedule_work(&removal->work);
2110 		} else {
2111 			iwl_write32(trans, CSR_RESET,
2112 				    CSR_RESET_REG_FLAG_FORCE_NMI);
2113 		}
2114 
2115 err:
2116 		spin_unlock_bh(&trans_pcie->reg_lock);
2117 		return false;
2118 	}
2119 
2120 out:
2121 	/*
2122 	 * Fool sparse by faking we release the lock - sparse will
2123 	 * track nic_access anyway.
2124 	 */
2125 	__release(&trans_pcie->reg_lock);
2126 	return true;
2127 }
2128 
iwl_trans_pcie_release_nic_access(struct iwl_trans * trans,unsigned long * flags)2129 static void iwl_trans_pcie_release_nic_access(struct iwl_trans *trans,
2130 					      unsigned long *flags)
2131 {
2132 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2133 
2134 	lockdep_assert_held(&trans_pcie->reg_lock);
2135 
2136 	/*
2137 	 * Fool sparse by faking we acquiring the lock - sparse will
2138 	 * track nic_access anyway.
2139 	 */
2140 	__acquire(&trans_pcie->reg_lock);
2141 
2142 	if (trans_pcie->cmd_hold_nic_awake)
2143 		goto out;
2144 
2145 	__iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
2146 				   CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2147 	/*
2148 	 * Above we read the CSR_GP_CNTRL register, which will flush
2149 	 * any previous writes, but we need the write that clears the
2150 	 * MAC_ACCESS_REQ bit to be performed before any other writes
2151 	 * scheduled on different CPUs (after we drop reg_lock).
2152 	 */
2153 out:
2154 	spin_unlock_bh(&trans_pcie->reg_lock);
2155 }
2156 
iwl_trans_pcie_read_mem(struct iwl_trans * trans,u32 addr,void * buf,int dwords)2157 static int iwl_trans_pcie_read_mem(struct iwl_trans *trans, u32 addr,
2158 				   void *buf, int dwords)
2159 {
2160 	unsigned long flags;
2161 	int offs = 0;
2162 	u32 *vals = buf;
2163 
2164 	while (offs < dwords) {
2165 		/* limit the time we spin here under lock to 1/2s */
2166 		unsigned long end = jiffies + HZ / 2;
2167 		bool resched = false;
2168 
2169 		if (iwl_trans_grab_nic_access(trans, &flags)) {
2170 			iwl_write32(trans, HBUS_TARG_MEM_RADDR,
2171 				    addr + 4 * offs);
2172 
2173 			while (offs < dwords) {
2174 				vals[offs] = iwl_read32(trans,
2175 							HBUS_TARG_MEM_RDAT);
2176 				offs++;
2177 
2178 				if (time_after(jiffies, end)) {
2179 					resched = true;
2180 					break;
2181 				}
2182 			}
2183 			iwl_trans_release_nic_access(trans, &flags);
2184 
2185 			if (resched)
2186 				cond_resched();
2187 		} else {
2188 			return -EBUSY;
2189 		}
2190 	}
2191 
2192 	return 0;
2193 }
2194 
iwl_trans_pcie_write_mem(struct iwl_trans * trans,u32 addr,const void * buf,int dwords)2195 static int iwl_trans_pcie_write_mem(struct iwl_trans *trans, u32 addr,
2196 				    const void *buf, int dwords)
2197 {
2198 	unsigned long flags;
2199 	int offs, ret = 0;
2200 	const u32 *vals = buf;
2201 
2202 	if (iwl_trans_grab_nic_access(trans, &flags)) {
2203 		iwl_write32(trans, HBUS_TARG_MEM_WADDR, addr);
2204 		for (offs = 0; offs < dwords; offs++)
2205 			iwl_write32(trans, HBUS_TARG_MEM_WDAT,
2206 				    vals ? vals[offs] : 0);
2207 		iwl_trans_release_nic_access(trans, &flags);
2208 	} else {
2209 		ret = -EBUSY;
2210 	}
2211 	return ret;
2212 }
2213 
iwl_trans_pcie_read_config32(struct iwl_trans * trans,u32 ofs,u32 * val)2214 static int iwl_trans_pcie_read_config32(struct iwl_trans *trans, u32 ofs,
2215 					u32 *val)
2216 {
2217 	return pci_read_config_dword(IWL_TRANS_GET_PCIE_TRANS(trans)->pci_dev,
2218 				     ofs, val);
2219 }
2220 
iwl_trans_pcie_freeze_txq_timer(struct iwl_trans * trans,unsigned long txqs,bool freeze)2221 static void iwl_trans_pcie_freeze_txq_timer(struct iwl_trans *trans,
2222 					    unsigned long txqs,
2223 					    bool freeze)
2224 {
2225 	int queue;
2226 
2227 	for_each_set_bit(queue, &txqs, BITS_PER_LONG) {
2228 		struct iwl_txq *txq = trans->txqs.txq[queue];
2229 		unsigned long now;
2230 
2231 		spin_lock_bh(&txq->lock);
2232 
2233 		now = jiffies;
2234 
2235 		if (txq->frozen == freeze)
2236 			goto next_queue;
2237 
2238 		IWL_DEBUG_TX_QUEUES(trans, "%s TXQ %d\n",
2239 				    freeze ? "Freezing" : "Waking", queue);
2240 
2241 		txq->frozen = freeze;
2242 
2243 		if (txq->read_ptr == txq->write_ptr)
2244 			goto next_queue;
2245 
2246 		if (freeze) {
2247 			if (unlikely(time_after(now,
2248 						txq->stuck_timer.expires))) {
2249 				/*
2250 				 * The timer should have fired, maybe it is
2251 				 * spinning right now on the lock.
2252 				 */
2253 				goto next_queue;
2254 			}
2255 			/* remember how long until the timer fires */
2256 			txq->frozen_expiry_remainder =
2257 				txq->stuck_timer.expires - now;
2258 			del_timer(&txq->stuck_timer);
2259 			goto next_queue;
2260 		}
2261 
2262 		/*
2263 		 * Wake a non-empty queue -> arm timer with the
2264 		 * remainder before it froze
2265 		 */
2266 		mod_timer(&txq->stuck_timer,
2267 			  now + txq->frozen_expiry_remainder);
2268 
2269 next_queue:
2270 		spin_unlock_bh(&txq->lock);
2271 	}
2272 }
2273 
iwl_trans_pcie_block_txq_ptrs(struct iwl_trans * trans,bool block)2274 static void iwl_trans_pcie_block_txq_ptrs(struct iwl_trans *trans, bool block)
2275 {
2276 	int i;
2277 
2278 	for (i = 0; i < trans->trans_cfg->base_params->num_of_queues; i++) {
2279 		struct iwl_txq *txq = trans->txqs.txq[i];
2280 
2281 		if (i == trans->txqs.cmd.q_id)
2282 			continue;
2283 
2284 		spin_lock_bh(&txq->lock);
2285 
2286 		if (!block && !(WARN_ON_ONCE(!txq->block))) {
2287 			txq->block--;
2288 			if (!txq->block) {
2289 				iwl_write32(trans, HBUS_TARG_WRPTR,
2290 					    txq->write_ptr | (i << 8));
2291 			}
2292 		} else if (block) {
2293 			txq->block++;
2294 		}
2295 
2296 		spin_unlock_bh(&txq->lock);
2297 	}
2298 }
2299 
2300 #define IWL_FLUSH_WAIT_MS	2000
2301 
iwl_trans_pcie_rxq_dma_data(struct iwl_trans * trans,int queue,struct iwl_trans_rxq_dma_data * data)2302 static int iwl_trans_pcie_rxq_dma_data(struct iwl_trans *trans, int queue,
2303 				       struct iwl_trans_rxq_dma_data *data)
2304 {
2305 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2306 
2307 	if (queue >= trans->num_rx_queues || !trans_pcie->rxq)
2308 		return -EINVAL;
2309 
2310 	data->fr_bd_cb = trans_pcie->rxq[queue].bd_dma;
2311 	data->urbd_stts_wrptr = trans_pcie->rxq[queue].rb_stts_dma;
2312 	data->ur_bd_cb = trans_pcie->rxq[queue].used_bd_dma;
2313 	data->fr_bd_wid = 0;
2314 
2315 	return 0;
2316 }
2317 
iwl_trans_pcie_wait_txq_empty(struct iwl_trans * trans,int txq_idx)2318 static int iwl_trans_pcie_wait_txq_empty(struct iwl_trans *trans, int txq_idx)
2319 {
2320 	struct iwl_txq *txq;
2321 	unsigned long now = jiffies;
2322 	bool overflow_tx;
2323 	u8 wr_ptr;
2324 
2325 	/* Make sure the NIC is still alive in the bus */
2326 	if (test_bit(STATUS_TRANS_DEAD, &trans->status))
2327 		return -ENODEV;
2328 
2329 	if (!test_bit(txq_idx, trans->txqs.queue_used))
2330 		return -EINVAL;
2331 
2332 	IWL_DEBUG_TX_QUEUES(trans, "Emptying queue %d...\n", txq_idx);
2333 	txq = trans->txqs.txq[txq_idx];
2334 
2335 	spin_lock_bh(&txq->lock);
2336 	overflow_tx = txq->overflow_tx ||
2337 		      !skb_queue_empty(&txq->overflow_q);
2338 	spin_unlock_bh(&txq->lock);
2339 
2340 	wr_ptr = READ_ONCE(txq->write_ptr);
2341 
2342 	while ((txq->read_ptr != READ_ONCE(txq->write_ptr) ||
2343 		overflow_tx) &&
2344 	       !time_after(jiffies,
2345 			   now + msecs_to_jiffies(IWL_FLUSH_WAIT_MS))) {
2346 		u8 write_ptr = READ_ONCE(txq->write_ptr);
2347 
2348 		/*
2349 		 * If write pointer moved during the wait, warn only
2350 		 * if the TX came from op mode. In case TX came from
2351 		 * trans layer (overflow TX) don't warn.
2352 		 */
2353 		if (WARN_ONCE(wr_ptr != write_ptr && !overflow_tx,
2354 			      "WR pointer moved while flushing %d -> %d\n",
2355 			      wr_ptr, write_ptr))
2356 			return -ETIMEDOUT;
2357 		wr_ptr = write_ptr;
2358 
2359 		usleep_range(1000, 2000);
2360 
2361 		spin_lock_bh(&txq->lock);
2362 		overflow_tx = txq->overflow_tx ||
2363 			      !skb_queue_empty(&txq->overflow_q);
2364 		spin_unlock_bh(&txq->lock);
2365 	}
2366 
2367 	if (txq->read_ptr != txq->write_ptr) {
2368 		IWL_ERR(trans,
2369 			"fail to flush all tx fifo queues Q %d\n", txq_idx);
2370 		iwl_txq_log_scd_error(trans, txq);
2371 		return -ETIMEDOUT;
2372 	}
2373 
2374 	IWL_DEBUG_TX_QUEUES(trans, "Queue %d is now empty.\n", txq_idx);
2375 
2376 	return 0;
2377 }
2378 
iwl_trans_pcie_wait_txqs_empty(struct iwl_trans * trans,u32 txq_bm)2379 static int iwl_trans_pcie_wait_txqs_empty(struct iwl_trans *trans, u32 txq_bm)
2380 {
2381 	int cnt;
2382 	int ret = 0;
2383 
2384 	/* waiting for all the tx frames complete might take a while */
2385 	for (cnt = 0;
2386 	     cnt < trans->trans_cfg->base_params->num_of_queues;
2387 	     cnt++) {
2388 
2389 		if (cnt == trans->txqs.cmd.q_id)
2390 			continue;
2391 		if (!test_bit(cnt, trans->txqs.queue_used))
2392 			continue;
2393 		if (!(BIT(cnt) & txq_bm))
2394 			continue;
2395 
2396 		ret = iwl_trans_pcie_wait_txq_empty(trans, cnt);
2397 		if (ret)
2398 			break;
2399 	}
2400 
2401 	return ret;
2402 }
2403 
iwl_trans_pcie_set_bits_mask(struct iwl_trans * trans,u32 reg,u32 mask,u32 value)2404 static void iwl_trans_pcie_set_bits_mask(struct iwl_trans *trans, u32 reg,
2405 					 u32 mask, u32 value)
2406 {
2407 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2408 
2409 	spin_lock_bh(&trans_pcie->reg_lock);
2410 	__iwl_trans_pcie_set_bits_mask(trans, reg, mask, value);
2411 	spin_unlock_bh(&trans_pcie->reg_lock);
2412 }
2413 
get_csr_string(int cmd)2414 static const char *get_csr_string(int cmd)
2415 {
2416 #define IWL_CMD(x) case x: return #x
2417 	switch (cmd) {
2418 	IWL_CMD(CSR_HW_IF_CONFIG_REG);
2419 	IWL_CMD(CSR_INT_COALESCING);
2420 	IWL_CMD(CSR_INT);
2421 	IWL_CMD(CSR_INT_MASK);
2422 	IWL_CMD(CSR_FH_INT_STATUS);
2423 	IWL_CMD(CSR_GPIO_IN);
2424 	IWL_CMD(CSR_RESET);
2425 	IWL_CMD(CSR_GP_CNTRL);
2426 	IWL_CMD(CSR_HW_REV);
2427 	IWL_CMD(CSR_EEPROM_REG);
2428 	IWL_CMD(CSR_EEPROM_GP);
2429 	IWL_CMD(CSR_OTP_GP_REG);
2430 	IWL_CMD(CSR_GIO_REG);
2431 	IWL_CMD(CSR_GP_UCODE_REG);
2432 	IWL_CMD(CSR_GP_DRIVER_REG);
2433 	IWL_CMD(CSR_UCODE_DRV_GP1);
2434 	IWL_CMD(CSR_UCODE_DRV_GP2);
2435 	IWL_CMD(CSR_LED_REG);
2436 	IWL_CMD(CSR_DRAM_INT_TBL_REG);
2437 	IWL_CMD(CSR_GIO_CHICKEN_BITS);
2438 	IWL_CMD(CSR_ANA_PLL_CFG);
2439 	IWL_CMD(CSR_HW_REV_WA_REG);
2440 	IWL_CMD(CSR_MONITOR_STATUS_REG);
2441 	IWL_CMD(CSR_DBG_HPET_MEM_REG);
2442 	default:
2443 		return "UNKNOWN";
2444 	}
2445 #undef IWL_CMD
2446 }
2447 
iwl_pcie_dump_csr(struct iwl_trans * trans)2448 void iwl_pcie_dump_csr(struct iwl_trans *trans)
2449 {
2450 	int i;
2451 	static const u32 csr_tbl[] = {
2452 		CSR_HW_IF_CONFIG_REG,
2453 		CSR_INT_COALESCING,
2454 		CSR_INT,
2455 		CSR_INT_MASK,
2456 		CSR_FH_INT_STATUS,
2457 		CSR_GPIO_IN,
2458 		CSR_RESET,
2459 		CSR_GP_CNTRL,
2460 		CSR_HW_REV,
2461 		CSR_EEPROM_REG,
2462 		CSR_EEPROM_GP,
2463 		CSR_OTP_GP_REG,
2464 		CSR_GIO_REG,
2465 		CSR_GP_UCODE_REG,
2466 		CSR_GP_DRIVER_REG,
2467 		CSR_UCODE_DRV_GP1,
2468 		CSR_UCODE_DRV_GP2,
2469 		CSR_LED_REG,
2470 		CSR_DRAM_INT_TBL_REG,
2471 		CSR_GIO_CHICKEN_BITS,
2472 		CSR_ANA_PLL_CFG,
2473 		CSR_MONITOR_STATUS_REG,
2474 		CSR_HW_REV_WA_REG,
2475 		CSR_DBG_HPET_MEM_REG
2476 	};
2477 	IWL_ERR(trans, "CSR values:\n");
2478 	IWL_ERR(trans, "(2nd byte of CSR_INT_COALESCING is "
2479 		"CSR_INT_PERIODIC_REG)\n");
2480 	for (i = 0; i <  ARRAY_SIZE(csr_tbl); i++) {
2481 		IWL_ERR(trans, "  %25s: 0X%08x\n",
2482 			get_csr_string(csr_tbl[i]),
2483 			iwl_read32(trans, csr_tbl[i]));
2484 	}
2485 }
2486 
2487 #ifdef CONFIG_IWLWIFI_DEBUGFS
2488 /* create and remove of files */
2489 #define DEBUGFS_ADD_FILE(name, parent, mode) do {			\
2490 	debugfs_create_file(#name, mode, parent, trans,			\
2491 			    &iwl_dbgfs_##name##_ops);			\
2492 } while (0)
2493 
2494 /* file operation */
2495 #define DEBUGFS_READ_FILE_OPS(name)					\
2496 static const struct file_operations iwl_dbgfs_##name##_ops = {		\
2497 	.read = iwl_dbgfs_##name##_read,				\
2498 	.open = simple_open,						\
2499 	.llseek = generic_file_llseek,					\
2500 };
2501 
2502 #define DEBUGFS_WRITE_FILE_OPS(name)                                    \
2503 static const struct file_operations iwl_dbgfs_##name##_ops = {          \
2504 	.write = iwl_dbgfs_##name##_write,                              \
2505 	.open = simple_open,						\
2506 	.llseek = generic_file_llseek,					\
2507 };
2508 
2509 #define DEBUGFS_READ_WRITE_FILE_OPS(name)				\
2510 static const struct file_operations iwl_dbgfs_##name##_ops = {		\
2511 	.write = iwl_dbgfs_##name##_write,				\
2512 	.read = iwl_dbgfs_##name##_read,				\
2513 	.open = simple_open,						\
2514 	.llseek = generic_file_llseek,					\
2515 };
2516 
2517 struct iwl_dbgfs_tx_queue_priv {
2518 	struct iwl_trans *trans;
2519 };
2520 
2521 struct iwl_dbgfs_tx_queue_state {
2522 	loff_t pos;
2523 };
2524 
iwl_dbgfs_tx_queue_seq_start(struct seq_file * seq,loff_t * pos)2525 static void *iwl_dbgfs_tx_queue_seq_start(struct seq_file *seq, loff_t *pos)
2526 {
2527 	struct iwl_dbgfs_tx_queue_priv *priv = seq->private;
2528 	struct iwl_dbgfs_tx_queue_state *state;
2529 
2530 	if (*pos >= priv->trans->trans_cfg->base_params->num_of_queues)
2531 		return NULL;
2532 
2533 	state = kmalloc(sizeof(*state), GFP_KERNEL);
2534 	if (!state)
2535 		return NULL;
2536 	state->pos = *pos;
2537 	return state;
2538 }
2539 
iwl_dbgfs_tx_queue_seq_next(struct seq_file * seq,void * v,loff_t * pos)2540 static void *iwl_dbgfs_tx_queue_seq_next(struct seq_file *seq,
2541 					 void *v, loff_t *pos)
2542 {
2543 	struct iwl_dbgfs_tx_queue_priv *priv = seq->private;
2544 	struct iwl_dbgfs_tx_queue_state *state = v;
2545 
2546 	*pos = ++state->pos;
2547 
2548 	if (*pos >= priv->trans->trans_cfg->base_params->num_of_queues)
2549 		return NULL;
2550 
2551 	return state;
2552 }
2553 
iwl_dbgfs_tx_queue_seq_stop(struct seq_file * seq,void * v)2554 static void iwl_dbgfs_tx_queue_seq_stop(struct seq_file *seq, void *v)
2555 {
2556 	kfree(v);
2557 }
2558 
iwl_dbgfs_tx_queue_seq_show(struct seq_file * seq,void * v)2559 static int iwl_dbgfs_tx_queue_seq_show(struct seq_file *seq, void *v)
2560 {
2561 	struct iwl_dbgfs_tx_queue_priv *priv = seq->private;
2562 	struct iwl_dbgfs_tx_queue_state *state = v;
2563 	struct iwl_trans *trans = priv->trans;
2564 	struct iwl_txq *txq = trans->txqs.txq[state->pos];
2565 
2566 	seq_printf(seq, "hwq %.3u: used=%d stopped=%d ",
2567 		   (unsigned int)state->pos,
2568 		   !!test_bit(state->pos, trans->txqs.queue_used),
2569 		   !!test_bit(state->pos, trans->txqs.queue_stopped));
2570 	if (txq)
2571 		seq_printf(seq,
2572 			   "read=%u write=%u need_update=%d frozen=%d n_window=%d ampdu=%d",
2573 			   txq->read_ptr, txq->write_ptr,
2574 			   txq->need_update, txq->frozen,
2575 			   txq->n_window, txq->ampdu);
2576 	else
2577 		seq_puts(seq, "(unallocated)");
2578 
2579 	if (state->pos == trans->txqs.cmd.q_id)
2580 		seq_puts(seq, " (HCMD)");
2581 	seq_puts(seq, "\n");
2582 
2583 	return 0;
2584 }
2585 
2586 static const struct seq_operations iwl_dbgfs_tx_queue_seq_ops = {
2587 	.start = iwl_dbgfs_tx_queue_seq_start,
2588 	.next = iwl_dbgfs_tx_queue_seq_next,
2589 	.stop = iwl_dbgfs_tx_queue_seq_stop,
2590 	.show = iwl_dbgfs_tx_queue_seq_show,
2591 };
2592 
iwl_dbgfs_tx_queue_open(struct inode * inode,struct file * filp)2593 static int iwl_dbgfs_tx_queue_open(struct inode *inode, struct file *filp)
2594 {
2595 	struct iwl_dbgfs_tx_queue_priv *priv;
2596 
2597 	priv = __seq_open_private(filp, &iwl_dbgfs_tx_queue_seq_ops,
2598 				  sizeof(*priv));
2599 
2600 	if (!priv)
2601 		return -ENOMEM;
2602 
2603 	priv->trans = inode->i_private;
2604 	return 0;
2605 }
2606 
iwl_dbgfs_rx_queue_read(struct file * file,char __user * user_buf,size_t count,loff_t * ppos)2607 static ssize_t iwl_dbgfs_rx_queue_read(struct file *file,
2608 				       char __user *user_buf,
2609 				       size_t count, loff_t *ppos)
2610 {
2611 	struct iwl_trans *trans = file->private_data;
2612 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2613 	char *buf;
2614 	int pos = 0, i, ret;
2615 	size_t bufsz;
2616 
2617 	bufsz = sizeof(char) * 121 * trans->num_rx_queues;
2618 
2619 	if (!trans_pcie->rxq)
2620 		return -EAGAIN;
2621 
2622 	buf = kzalloc(bufsz, GFP_KERNEL);
2623 	if (!buf)
2624 		return -ENOMEM;
2625 
2626 	for (i = 0; i < trans->num_rx_queues && pos < bufsz; i++) {
2627 		struct iwl_rxq *rxq = &trans_pcie->rxq[i];
2628 
2629 		pos += scnprintf(buf + pos, bufsz - pos, "queue#: %2d\n",
2630 				 i);
2631 		pos += scnprintf(buf + pos, bufsz - pos, "\tread: %u\n",
2632 				 rxq->read);
2633 		pos += scnprintf(buf + pos, bufsz - pos, "\twrite: %u\n",
2634 				 rxq->write);
2635 		pos += scnprintf(buf + pos, bufsz - pos, "\twrite_actual: %u\n",
2636 				 rxq->write_actual);
2637 		pos += scnprintf(buf + pos, bufsz - pos, "\tneed_update: %2d\n",
2638 				 rxq->need_update);
2639 		pos += scnprintf(buf + pos, bufsz - pos, "\tfree_count: %u\n",
2640 				 rxq->free_count);
2641 		if (rxq->rb_stts) {
2642 			u32 r =	__le16_to_cpu(iwl_get_closed_rb_stts(trans,
2643 								     rxq));
2644 			pos += scnprintf(buf + pos, bufsz - pos,
2645 					 "\tclosed_rb_num: %u\n",
2646 					 r & 0x0FFF);
2647 		} else {
2648 			pos += scnprintf(buf + pos, bufsz - pos,
2649 					 "\tclosed_rb_num: Not Allocated\n");
2650 		}
2651 	}
2652 	ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2653 	kfree(buf);
2654 
2655 	return ret;
2656 }
2657 
iwl_dbgfs_interrupt_read(struct file * file,char __user * user_buf,size_t count,loff_t * ppos)2658 static ssize_t iwl_dbgfs_interrupt_read(struct file *file,
2659 					char __user *user_buf,
2660 					size_t count, loff_t *ppos)
2661 {
2662 	struct iwl_trans *trans = file->private_data;
2663 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2664 	struct isr_statistics *isr_stats = &trans_pcie->isr_stats;
2665 
2666 	int pos = 0;
2667 	char *buf;
2668 	int bufsz = 24 * 64; /* 24 items * 64 char per item */
2669 	ssize_t ret;
2670 
2671 	buf = kzalloc(bufsz, GFP_KERNEL);
2672 	if (!buf)
2673 		return -ENOMEM;
2674 
2675 	pos += scnprintf(buf + pos, bufsz - pos,
2676 			"Interrupt Statistics Report:\n");
2677 
2678 	pos += scnprintf(buf + pos, bufsz - pos, "HW Error:\t\t\t %u\n",
2679 		isr_stats->hw);
2680 	pos += scnprintf(buf + pos, bufsz - pos, "SW Error:\t\t\t %u\n",
2681 		isr_stats->sw);
2682 	if (isr_stats->sw || isr_stats->hw) {
2683 		pos += scnprintf(buf + pos, bufsz - pos,
2684 			"\tLast Restarting Code:  0x%X\n",
2685 			isr_stats->err_code);
2686 	}
2687 #ifdef CONFIG_IWLWIFI_DEBUG
2688 	pos += scnprintf(buf + pos, bufsz - pos, "Frame transmitted:\t\t %u\n",
2689 		isr_stats->sch);
2690 	pos += scnprintf(buf + pos, bufsz - pos, "Alive interrupt:\t\t %u\n",
2691 		isr_stats->alive);
2692 #endif
2693 	pos += scnprintf(buf + pos, bufsz - pos,
2694 		"HW RF KILL switch toggled:\t %u\n", isr_stats->rfkill);
2695 
2696 	pos += scnprintf(buf + pos, bufsz - pos, "CT KILL:\t\t\t %u\n",
2697 		isr_stats->ctkill);
2698 
2699 	pos += scnprintf(buf + pos, bufsz - pos, "Wakeup Interrupt:\t\t %u\n",
2700 		isr_stats->wakeup);
2701 
2702 	pos += scnprintf(buf + pos, bufsz - pos,
2703 		"Rx command responses:\t\t %u\n", isr_stats->rx);
2704 
2705 	pos += scnprintf(buf + pos, bufsz - pos, "Tx/FH interrupt:\t\t %u\n",
2706 		isr_stats->tx);
2707 
2708 	pos += scnprintf(buf + pos, bufsz - pos, "Unexpected INTA:\t\t %u\n",
2709 		isr_stats->unhandled);
2710 
2711 	ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2712 	kfree(buf);
2713 	return ret;
2714 }
2715 
iwl_dbgfs_interrupt_write(struct file * file,const char __user * user_buf,size_t count,loff_t * ppos)2716 static ssize_t iwl_dbgfs_interrupt_write(struct file *file,
2717 					 const char __user *user_buf,
2718 					 size_t count, loff_t *ppos)
2719 {
2720 	struct iwl_trans *trans = file->private_data;
2721 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2722 	struct isr_statistics *isr_stats = &trans_pcie->isr_stats;
2723 	u32 reset_flag;
2724 	int ret;
2725 
2726 	ret = kstrtou32_from_user(user_buf, count, 16, &reset_flag);
2727 	if (ret)
2728 		return ret;
2729 	if (reset_flag == 0)
2730 		memset(isr_stats, 0, sizeof(*isr_stats));
2731 
2732 	return count;
2733 }
2734 
iwl_dbgfs_csr_write(struct file * file,const char __user * user_buf,size_t count,loff_t * ppos)2735 static ssize_t iwl_dbgfs_csr_write(struct file *file,
2736 				   const char __user *user_buf,
2737 				   size_t count, loff_t *ppos)
2738 {
2739 	struct iwl_trans *trans = file->private_data;
2740 
2741 	iwl_pcie_dump_csr(trans);
2742 
2743 	return count;
2744 }
2745 
iwl_dbgfs_fh_reg_read(struct file * file,char __user * user_buf,size_t count,loff_t * ppos)2746 static ssize_t iwl_dbgfs_fh_reg_read(struct file *file,
2747 				     char __user *user_buf,
2748 				     size_t count, loff_t *ppos)
2749 {
2750 	struct iwl_trans *trans = file->private_data;
2751 	char *buf = NULL;
2752 	ssize_t ret;
2753 
2754 	ret = iwl_dump_fh(trans, &buf);
2755 	if (ret < 0)
2756 		return ret;
2757 	if (!buf)
2758 		return -EINVAL;
2759 	ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
2760 	kfree(buf);
2761 	return ret;
2762 }
2763 
iwl_dbgfs_rfkill_read(struct file * file,char __user * user_buf,size_t count,loff_t * ppos)2764 static ssize_t iwl_dbgfs_rfkill_read(struct file *file,
2765 				     char __user *user_buf,
2766 				     size_t count, loff_t *ppos)
2767 {
2768 	struct iwl_trans *trans = file->private_data;
2769 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2770 	char buf[100];
2771 	int pos;
2772 
2773 	pos = scnprintf(buf, sizeof(buf), "debug: %d\nhw: %d\n",
2774 			trans_pcie->debug_rfkill,
2775 			!(iwl_read32(trans, CSR_GP_CNTRL) &
2776 				CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW));
2777 
2778 	return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2779 }
2780 
iwl_dbgfs_rfkill_write(struct file * file,const char __user * user_buf,size_t count,loff_t * ppos)2781 static ssize_t iwl_dbgfs_rfkill_write(struct file *file,
2782 				      const char __user *user_buf,
2783 				      size_t count, loff_t *ppos)
2784 {
2785 	struct iwl_trans *trans = file->private_data;
2786 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2787 	bool new_value;
2788 	int ret;
2789 
2790 	ret = kstrtobool_from_user(user_buf, count, &new_value);
2791 	if (ret)
2792 		return ret;
2793 	if (new_value == trans_pcie->debug_rfkill)
2794 		return count;
2795 	IWL_WARN(trans, "changing debug rfkill %d->%d\n",
2796 		 trans_pcie->debug_rfkill, new_value);
2797 	trans_pcie->debug_rfkill = new_value;
2798 	iwl_pcie_handle_rfkill_irq(trans);
2799 
2800 	return count;
2801 }
2802 
iwl_dbgfs_monitor_data_open(struct inode * inode,struct file * file)2803 static int iwl_dbgfs_monitor_data_open(struct inode *inode,
2804 				       struct file *file)
2805 {
2806 	struct iwl_trans *trans = inode->i_private;
2807 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2808 
2809 	if (!trans->dbg.dest_tlv ||
2810 	    trans->dbg.dest_tlv->monitor_mode != EXTERNAL_MODE) {
2811 		IWL_ERR(trans, "Debug destination is not set to DRAM\n");
2812 		return -ENOENT;
2813 	}
2814 
2815 	if (trans_pcie->fw_mon_data.state != IWL_FW_MON_DBGFS_STATE_CLOSED)
2816 		return -EBUSY;
2817 
2818 	trans_pcie->fw_mon_data.state = IWL_FW_MON_DBGFS_STATE_OPEN;
2819 	return simple_open(inode, file);
2820 }
2821 
iwl_dbgfs_monitor_data_release(struct inode * inode,struct file * file)2822 static int iwl_dbgfs_monitor_data_release(struct inode *inode,
2823 					  struct file *file)
2824 {
2825 	struct iwl_trans_pcie *trans_pcie =
2826 		IWL_TRANS_GET_PCIE_TRANS(inode->i_private);
2827 
2828 	if (trans_pcie->fw_mon_data.state == IWL_FW_MON_DBGFS_STATE_OPEN)
2829 		trans_pcie->fw_mon_data.state = IWL_FW_MON_DBGFS_STATE_CLOSED;
2830 	return 0;
2831 }
2832 
iwl_write_to_user_buf(char __user * user_buf,ssize_t count,void * buf,ssize_t * size,ssize_t * bytes_copied)2833 static bool iwl_write_to_user_buf(char __user *user_buf, ssize_t count,
2834 				  void *buf, ssize_t *size,
2835 				  ssize_t *bytes_copied)
2836 {
2837 	int buf_size_left = count - *bytes_copied;
2838 
2839 	buf_size_left = buf_size_left - (buf_size_left % sizeof(u32));
2840 	if (*size > buf_size_left)
2841 		*size = buf_size_left;
2842 
2843 	*size -= copy_to_user(user_buf, buf, *size);
2844 	*bytes_copied += *size;
2845 
2846 	if (buf_size_left == *size)
2847 		return true;
2848 	return false;
2849 }
2850 
iwl_dbgfs_monitor_data_read(struct file * file,char __user * user_buf,size_t count,loff_t * ppos)2851 static ssize_t iwl_dbgfs_monitor_data_read(struct file *file,
2852 					   char __user *user_buf,
2853 					   size_t count, loff_t *ppos)
2854 {
2855 	struct iwl_trans *trans = file->private_data;
2856 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2857 	void *cpu_addr = (void *)trans->dbg.fw_mon.block, *curr_buf;
2858 	struct cont_rec *data = &trans_pcie->fw_mon_data;
2859 	u32 write_ptr_addr, wrap_cnt_addr, write_ptr, wrap_cnt;
2860 	ssize_t size, bytes_copied = 0;
2861 	bool b_full;
2862 
2863 	if (trans->dbg.dest_tlv) {
2864 		write_ptr_addr =
2865 			le32_to_cpu(trans->dbg.dest_tlv->write_ptr_reg);
2866 		wrap_cnt_addr = le32_to_cpu(trans->dbg.dest_tlv->wrap_count);
2867 	} else {
2868 		write_ptr_addr = MON_BUFF_WRPTR;
2869 		wrap_cnt_addr = MON_BUFF_CYCLE_CNT;
2870 	}
2871 
2872 	if (unlikely(!trans->dbg.rec_on))
2873 		return 0;
2874 
2875 	mutex_lock(&data->mutex);
2876 	if (data->state ==
2877 	    IWL_FW_MON_DBGFS_STATE_DISABLED) {
2878 		mutex_unlock(&data->mutex);
2879 		return 0;
2880 	}
2881 
2882 	/* write_ptr position in bytes rather then DW */
2883 	write_ptr = iwl_read_prph(trans, write_ptr_addr) * sizeof(u32);
2884 	wrap_cnt = iwl_read_prph(trans, wrap_cnt_addr);
2885 
2886 	if (data->prev_wrap_cnt == wrap_cnt) {
2887 		size = write_ptr - data->prev_wr_ptr;
2888 		curr_buf = cpu_addr + data->prev_wr_ptr;
2889 		b_full = iwl_write_to_user_buf(user_buf, count,
2890 					       curr_buf, &size,
2891 					       &bytes_copied);
2892 		data->prev_wr_ptr += size;
2893 
2894 	} else if (data->prev_wrap_cnt == wrap_cnt - 1 &&
2895 		   write_ptr < data->prev_wr_ptr) {
2896 		size = trans->dbg.fw_mon.size - data->prev_wr_ptr;
2897 		curr_buf = cpu_addr + data->prev_wr_ptr;
2898 		b_full = iwl_write_to_user_buf(user_buf, count,
2899 					       curr_buf, &size,
2900 					       &bytes_copied);
2901 		data->prev_wr_ptr += size;
2902 
2903 		if (!b_full) {
2904 			size = write_ptr;
2905 			b_full = iwl_write_to_user_buf(user_buf, count,
2906 						       cpu_addr, &size,
2907 						       &bytes_copied);
2908 			data->prev_wr_ptr = size;
2909 			data->prev_wrap_cnt++;
2910 		}
2911 	} else {
2912 		if (data->prev_wrap_cnt == wrap_cnt - 1 &&
2913 		    write_ptr > data->prev_wr_ptr)
2914 			IWL_WARN(trans,
2915 				 "write pointer passed previous write pointer, start copying from the beginning\n");
2916 		else if (!unlikely(data->prev_wrap_cnt == 0 &&
2917 				   data->prev_wr_ptr == 0))
2918 			IWL_WARN(trans,
2919 				 "monitor data is out of sync, start copying from the beginning\n");
2920 
2921 		size = write_ptr;
2922 		b_full = iwl_write_to_user_buf(user_buf, count,
2923 					       cpu_addr, &size,
2924 					       &bytes_copied);
2925 		data->prev_wr_ptr = size;
2926 		data->prev_wrap_cnt = wrap_cnt;
2927 	}
2928 
2929 	mutex_unlock(&data->mutex);
2930 
2931 	return bytes_copied;
2932 }
2933 
2934 DEBUGFS_READ_WRITE_FILE_OPS(interrupt);
2935 DEBUGFS_READ_FILE_OPS(fh_reg);
2936 DEBUGFS_READ_FILE_OPS(rx_queue);
2937 DEBUGFS_WRITE_FILE_OPS(csr);
2938 DEBUGFS_READ_WRITE_FILE_OPS(rfkill);
2939 static const struct file_operations iwl_dbgfs_tx_queue_ops = {
2940 	.owner = THIS_MODULE,
2941 	.open = iwl_dbgfs_tx_queue_open,
2942 	.read = seq_read,
2943 	.llseek = seq_lseek,
2944 	.release = seq_release_private,
2945 };
2946 
2947 static const struct file_operations iwl_dbgfs_monitor_data_ops = {
2948 	.read = iwl_dbgfs_monitor_data_read,
2949 	.open = iwl_dbgfs_monitor_data_open,
2950 	.release = iwl_dbgfs_monitor_data_release,
2951 };
2952 
2953 /* Create the debugfs files and directories */
iwl_trans_pcie_dbgfs_register(struct iwl_trans * trans)2954 void iwl_trans_pcie_dbgfs_register(struct iwl_trans *trans)
2955 {
2956 	struct dentry *dir = trans->dbgfs_dir;
2957 
2958 	DEBUGFS_ADD_FILE(rx_queue, dir, 0400);
2959 	DEBUGFS_ADD_FILE(tx_queue, dir, 0400);
2960 	DEBUGFS_ADD_FILE(interrupt, dir, 0600);
2961 	DEBUGFS_ADD_FILE(csr, dir, 0200);
2962 	DEBUGFS_ADD_FILE(fh_reg, dir, 0400);
2963 	DEBUGFS_ADD_FILE(rfkill, dir, 0600);
2964 	DEBUGFS_ADD_FILE(monitor_data, dir, 0400);
2965 }
2966 
iwl_trans_pcie_debugfs_cleanup(struct iwl_trans * trans)2967 static void iwl_trans_pcie_debugfs_cleanup(struct iwl_trans *trans)
2968 {
2969 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2970 	struct cont_rec *data = &trans_pcie->fw_mon_data;
2971 
2972 	mutex_lock(&data->mutex);
2973 	data->state = IWL_FW_MON_DBGFS_STATE_DISABLED;
2974 	mutex_unlock(&data->mutex);
2975 }
2976 #endif /*CONFIG_IWLWIFI_DEBUGFS */
2977 
iwl_trans_pcie_get_cmdlen(struct iwl_trans * trans,void * tfd)2978 static u32 iwl_trans_pcie_get_cmdlen(struct iwl_trans *trans, void *tfd)
2979 {
2980 	u32 cmdlen = 0;
2981 	int i;
2982 
2983 	for (i = 0; i < trans->txqs.tfd.max_tbs; i++)
2984 		cmdlen += iwl_txq_gen1_tfd_tb_get_len(trans, tfd, i);
2985 
2986 	return cmdlen;
2987 }
2988 
iwl_trans_pcie_dump_rbs(struct iwl_trans * trans,struct iwl_fw_error_dump_data ** data,int allocated_rb_nums)2989 static u32 iwl_trans_pcie_dump_rbs(struct iwl_trans *trans,
2990 				   struct iwl_fw_error_dump_data **data,
2991 				   int allocated_rb_nums)
2992 {
2993 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2994 	int max_len = trans_pcie->rx_buf_bytes;
2995 	/* Dump RBs is supported only for pre-9000 devices (1 queue) */
2996 	struct iwl_rxq *rxq = &trans_pcie->rxq[0];
2997 	u32 i, r, j, rb_len = 0;
2998 
2999 	spin_lock(&rxq->lock);
3000 
3001 	r = le16_to_cpu(iwl_get_closed_rb_stts(trans, rxq)) & 0x0FFF;
3002 
3003 	for (i = rxq->read, j = 0;
3004 	     i != r && j < allocated_rb_nums;
3005 	     i = (i + 1) & RX_QUEUE_MASK, j++) {
3006 		struct iwl_rx_mem_buffer *rxb = rxq->queue[i];
3007 		struct iwl_fw_error_dump_rb *rb;
3008 
3009 		dma_unmap_page(trans->dev, rxb->page_dma, max_len,
3010 			       DMA_FROM_DEVICE);
3011 
3012 		rb_len += sizeof(**data) + sizeof(*rb) + max_len;
3013 
3014 		(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_RB);
3015 		(*data)->len = cpu_to_le32(sizeof(*rb) + max_len);
3016 		rb = (void *)(*data)->data;
3017 		rb->index = cpu_to_le32(i);
3018 		memcpy(rb->data, page_address(rxb->page), max_len);
3019 		/* remap the page for the free benefit */
3020 		rxb->page_dma = dma_map_page(trans->dev, rxb->page,
3021 					     rxb->offset, max_len,
3022 					     DMA_FROM_DEVICE);
3023 
3024 		*data = iwl_fw_error_next_data(*data);
3025 	}
3026 
3027 	spin_unlock(&rxq->lock);
3028 
3029 	return rb_len;
3030 }
3031 #define IWL_CSR_TO_DUMP (0x250)
3032 
iwl_trans_pcie_dump_csr(struct iwl_trans * trans,struct iwl_fw_error_dump_data ** data)3033 static u32 iwl_trans_pcie_dump_csr(struct iwl_trans *trans,
3034 				   struct iwl_fw_error_dump_data **data)
3035 {
3036 	u32 csr_len = sizeof(**data) + IWL_CSR_TO_DUMP;
3037 	__le32 *val;
3038 	int i;
3039 
3040 	(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_CSR);
3041 	(*data)->len = cpu_to_le32(IWL_CSR_TO_DUMP);
3042 	val = (void *)(*data)->data;
3043 
3044 	for (i = 0; i < IWL_CSR_TO_DUMP; i += 4)
3045 		*val++ = cpu_to_le32(iwl_trans_pcie_read32(trans, i));
3046 
3047 	*data = iwl_fw_error_next_data(*data);
3048 
3049 	return csr_len;
3050 }
3051 
iwl_trans_pcie_fh_regs_dump(struct iwl_trans * trans,struct iwl_fw_error_dump_data ** data)3052 static u32 iwl_trans_pcie_fh_regs_dump(struct iwl_trans *trans,
3053 				       struct iwl_fw_error_dump_data **data)
3054 {
3055 	u32 fh_regs_len = FH_MEM_UPPER_BOUND - FH_MEM_LOWER_BOUND;
3056 	unsigned long flags;
3057 	__le32 *val;
3058 	int i;
3059 
3060 	if (!iwl_trans_grab_nic_access(trans, &flags))
3061 		return 0;
3062 
3063 	(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_FH_REGS);
3064 	(*data)->len = cpu_to_le32(fh_regs_len);
3065 	val = (void *)(*data)->data;
3066 
3067 	if (!trans->trans_cfg->gen2)
3068 		for (i = FH_MEM_LOWER_BOUND; i < FH_MEM_UPPER_BOUND;
3069 		     i += sizeof(u32))
3070 			*val++ = cpu_to_le32(iwl_trans_pcie_read32(trans, i));
3071 	else
3072 		for (i = iwl_umac_prph(trans, FH_MEM_LOWER_BOUND_GEN2);
3073 		     i < iwl_umac_prph(trans, FH_MEM_UPPER_BOUND_GEN2);
3074 		     i += sizeof(u32))
3075 			*val++ = cpu_to_le32(iwl_trans_pcie_read_prph(trans,
3076 								      i));
3077 
3078 	iwl_trans_release_nic_access(trans, &flags);
3079 
3080 	*data = iwl_fw_error_next_data(*data);
3081 
3082 	return sizeof(**data) + fh_regs_len;
3083 }
3084 
3085 static u32
iwl_trans_pci_dump_marbh_monitor(struct iwl_trans * trans,struct iwl_fw_error_dump_fw_mon * fw_mon_data,u32 monitor_len)3086 iwl_trans_pci_dump_marbh_monitor(struct iwl_trans *trans,
3087 				 struct iwl_fw_error_dump_fw_mon *fw_mon_data,
3088 				 u32 monitor_len)
3089 {
3090 	u32 buf_size_in_dwords = (monitor_len >> 2);
3091 	u32 *buffer = (u32 *)fw_mon_data->data;
3092 	unsigned long flags;
3093 	u32 i;
3094 
3095 	if (!iwl_trans_grab_nic_access(trans, &flags))
3096 		return 0;
3097 
3098 	iwl_write_umac_prph_no_grab(trans, MON_DMARB_RD_CTL_ADDR, 0x1);
3099 	for (i = 0; i < buf_size_in_dwords; i++)
3100 		buffer[i] = iwl_read_umac_prph_no_grab(trans,
3101 						       MON_DMARB_RD_DATA_ADDR);
3102 	iwl_write_umac_prph_no_grab(trans, MON_DMARB_RD_CTL_ADDR, 0x0);
3103 
3104 	iwl_trans_release_nic_access(trans, &flags);
3105 
3106 	return monitor_len;
3107 }
3108 
3109 static void
iwl_trans_pcie_dump_pointers(struct iwl_trans * trans,struct iwl_fw_error_dump_fw_mon * fw_mon_data)3110 iwl_trans_pcie_dump_pointers(struct iwl_trans *trans,
3111 			     struct iwl_fw_error_dump_fw_mon *fw_mon_data)
3112 {
3113 	u32 base, base_high, write_ptr, write_ptr_val, wrap_cnt;
3114 
3115 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) {
3116 		base = DBGC_CUR_DBGBUF_BASE_ADDR_LSB;
3117 		base_high = DBGC_CUR_DBGBUF_BASE_ADDR_MSB;
3118 		write_ptr = DBGC_CUR_DBGBUF_STATUS;
3119 		wrap_cnt = DBGC_DBGBUF_WRAP_AROUND;
3120 	} else if (trans->dbg.dest_tlv) {
3121 		write_ptr = le32_to_cpu(trans->dbg.dest_tlv->write_ptr_reg);
3122 		wrap_cnt = le32_to_cpu(trans->dbg.dest_tlv->wrap_count);
3123 		base = le32_to_cpu(trans->dbg.dest_tlv->base_reg);
3124 	} else {
3125 		base = MON_BUFF_BASE_ADDR;
3126 		write_ptr = MON_BUFF_WRPTR;
3127 		wrap_cnt = MON_BUFF_CYCLE_CNT;
3128 	}
3129 
3130 	write_ptr_val = iwl_read_prph(trans, write_ptr);
3131 	fw_mon_data->fw_mon_cycle_cnt =
3132 		cpu_to_le32(iwl_read_prph(trans, wrap_cnt));
3133 	fw_mon_data->fw_mon_base_ptr =
3134 		cpu_to_le32(iwl_read_prph(trans, base));
3135 	if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) {
3136 		fw_mon_data->fw_mon_base_high_ptr =
3137 			cpu_to_le32(iwl_read_prph(trans, base_high));
3138 		write_ptr_val &= DBGC_CUR_DBGBUF_STATUS_OFFSET_MSK;
3139 	}
3140 	fw_mon_data->fw_mon_wr_ptr = cpu_to_le32(write_ptr_val);
3141 }
3142 
3143 static u32
iwl_trans_pcie_dump_monitor(struct iwl_trans * trans,struct iwl_fw_error_dump_data ** data,u32 monitor_len)3144 iwl_trans_pcie_dump_monitor(struct iwl_trans *trans,
3145 			    struct iwl_fw_error_dump_data **data,
3146 			    u32 monitor_len)
3147 {
3148 	struct iwl_dram_data *fw_mon = &trans->dbg.fw_mon;
3149 	u32 len = 0;
3150 
3151 	if (trans->dbg.dest_tlv ||
3152 	    (fw_mon->size &&
3153 	     (trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_7000 ||
3154 	      trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210))) {
3155 		struct iwl_fw_error_dump_fw_mon *fw_mon_data;
3156 
3157 		(*data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_FW_MONITOR);
3158 		fw_mon_data = (void *)(*data)->data;
3159 
3160 		iwl_trans_pcie_dump_pointers(trans, fw_mon_data);
3161 
3162 		len += sizeof(**data) + sizeof(*fw_mon_data);
3163 		if (fw_mon->size) {
3164 			memcpy(fw_mon_data->data, fw_mon->block, fw_mon->size);
3165 			monitor_len = fw_mon->size;
3166 		} else if (trans->dbg.dest_tlv->monitor_mode == SMEM_MODE) {
3167 			u32 base = le32_to_cpu(fw_mon_data->fw_mon_base_ptr);
3168 			/*
3169 			 * Update pointers to reflect actual values after
3170 			 * shifting
3171 			 */
3172 			if (trans->dbg.dest_tlv->version) {
3173 				base = (iwl_read_prph(trans, base) &
3174 					IWL_LDBG_M2S_BUF_BA_MSK) <<
3175 				       trans->dbg.dest_tlv->base_shift;
3176 				base *= IWL_M2S_UNIT_SIZE;
3177 				base += trans->cfg->smem_offset;
3178 			} else {
3179 				base = iwl_read_prph(trans, base) <<
3180 				       trans->dbg.dest_tlv->base_shift;
3181 			}
3182 
3183 			iwl_trans_read_mem(trans, base, fw_mon_data->data,
3184 					   monitor_len / sizeof(u32));
3185 		} else if (trans->dbg.dest_tlv->monitor_mode == MARBH_MODE) {
3186 			monitor_len =
3187 				iwl_trans_pci_dump_marbh_monitor(trans,
3188 								 fw_mon_data,
3189 								 monitor_len);
3190 		} else {
3191 			/* Didn't match anything - output no monitor data */
3192 			monitor_len = 0;
3193 		}
3194 
3195 		len += monitor_len;
3196 		(*data)->len = cpu_to_le32(monitor_len + sizeof(*fw_mon_data));
3197 	}
3198 
3199 	return len;
3200 }
3201 
iwl_trans_get_fw_monitor_len(struct iwl_trans * trans,u32 * len)3202 static int iwl_trans_get_fw_monitor_len(struct iwl_trans *trans, u32 *len)
3203 {
3204 	if (trans->dbg.fw_mon.size) {
3205 		*len += sizeof(struct iwl_fw_error_dump_data) +
3206 			sizeof(struct iwl_fw_error_dump_fw_mon) +
3207 			trans->dbg.fw_mon.size;
3208 		return trans->dbg.fw_mon.size;
3209 	} else if (trans->dbg.dest_tlv) {
3210 		u32 base, end, cfg_reg, monitor_len;
3211 
3212 		if (trans->dbg.dest_tlv->version == 1) {
3213 			cfg_reg = le32_to_cpu(trans->dbg.dest_tlv->base_reg);
3214 			cfg_reg = iwl_read_prph(trans, cfg_reg);
3215 			base = (cfg_reg & IWL_LDBG_M2S_BUF_BA_MSK) <<
3216 				trans->dbg.dest_tlv->base_shift;
3217 			base *= IWL_M2S_UNIT_SIZE;
3218 			base += trans->cfg->smem_offset;
3219 
3220 			monitor_len =
3221 				(cfg_reg & IWL_LDBG_M2S_BUF_SIZE_MSK) >>
3222 				trans->dbg.dest_tlv->end_shift;
3223 			monitor_len *= IWL_M2S_UNIT_SIZE;
3224 		} else {
3225 			base = le32_to_cpu(trans->dbg.dest_tlv->base_reg);
3226 			end = le32_to_cpu(trans->dbg.dest_tlv->end_reg);
3227 
3228 			base = iwl_read_prph(trans, base) <<
3229 			       trans->dbg.dest_tlv->base_shift;
3230 			end = iwl_read_prph(trans, end) <<
3231 			      trans->dbg.dest_tlv->end_shift;
3232 
3233 			/* Make "end" point to the actual end */
3234 			if (trans->trans_cfg->device_family >=
3235 			    IWL_DEVICE_FAMILY_8000 ||
3236 			    trans->dbg.dest_tlv->monitor_mode == MARBH_MODE)
3237 				end += (1 << trans->dbg.dest_tlv->end_shift);
3238 			monitor_len = end - base;
3239 		}
3240 		*len += sizeof(struct iwl_fw_error_dump_data) +
3241 			sizeof(struct iwl_fw_error_dump_fw_mon) +
3242 			monitor_len;
3243 		return monitor_len;
3244 	}
3245 	return 0;
3246 }
3247 
3248 static struct iwl_trans_dump_data
iwl_trans_pcie_dump_data(struct iwl_trans * trans,u32 dump_mask)3249 *iwl_trans_pcie_dump_data(struct iwl_trans *trans,
3250 			  u32 dump_mask)
3251 {
3252 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
3253 	struct iwl_fw_error_dump_data *data;
3254 	struct iwl_txq *cmdq = trans->txqs.txq[trans->txqs.cmd.q_id];
3255 	struct iwl_fw_error_dump_txcmd *txcmd;
3256 	struct iwl_trans_dump_data *dump_data;
3257 	u32 len, num_rbs = 0, monitor_len = 0;
3258 	int i, ptr;
3259 	bool dump_rbs = test_bit(STATUS_FW_ERROR, &trans->status) &&
3260 			!trans->trans_cfg->mq_rx_supported &&
3261 			dump_mask & BIT(IWL_FW_ERROR_DUMP_RB);
3262 
3263 	if (!dump_mask)
3264 		return NULL;
3265 
3266 	/* transport dump header */
3267 	len = sizeof(*dump_data);
3268 
3269 	/* host commands */
3270 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_TXCMD) && cmdq)
3271 		len += sizeof(*data) +
3272 			cmdq->n_window * (sizeof(*txcmd) +
3273 					  TFD_MAX_PAYLOAD_SIZE);
3274 
3275 	/* FW monitor */
3276 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FW_MONITOR))
3277 		monitor_len = iwl_trans_get_fw_monitor_len(trans, &len);
3278 
3279 	/* CSR registers */
3280 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_CSR))
3281 		len += sizeof(*data) + IWL_CSR_TO_DUMP;
3282 
3283 	/* FH registers */
3284 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FH_REGS)) {
3285 		if (trans->trans_cfg->gen2)
3286 			len += sizeof(*data) +
3287 			       (iwl_umac_prph(trans, FH_MEM_UPPER_BOUND_GEN2) -
3288 				iwl_umac_prph(trans, FH_MEM_LOWER_BOUND_GEN2));
3289 		else
3290 			len += sizeof(*data) +
3291 			       (FH_MEM_UPPER_BOUND -
3292 				FH_MEM_LOWER_BOUND);
3293 	}
3294 
3295 	if (dump_rbs) {
3296 		/* Dump RBs is supported only for pre-9000 devices (1 queue) */
3297 		struct iwl_rxq *rxq = &trans_pcie->rxq[0];
3298 		/* RBs */
3299 		num_rbs =
3300 			le16_to_cpu(iwl_get_closed_rb_stts(trans, rxq))
3301 			& 0x0FFF;
3302 		num_rbs = (num_rbs - rxq->read) & RX_QUEUE_MASK;
3303 		len += num_rbs * (sizeof(*data) +
3304 				  sizeof(struct iwl_fw_error_dump_rb) +
3305 				  (PAGE_SIZE << trans_pcie->rx_page_order));
3306 	}
3307 
3308 	/* Paged memory for gen2 HW */
3309 	if (trans->trans_cfg->gen2 && dump_mask & BIT(IWL_FW_ERROR_DUMP_PAGING))
3310 		for (i = 0; i < trans->init_dram.paging_cnt; i++)
3311 			len += sizeof(*data) +
3312 			       sizeof(struct iwl_fw_error_dump_paging) +
3313 			       trans->init_dram.paging[i].size;
3314 
3315 	dump_data = vzalloc(len);
3316 	if (!dump_data)
3317 		return NULL;
3318 
3319 	len = 0;
3320 	data = (void *)dump_data->data;
3321 
3322 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_TXCMD) && cmdq) {
3323 		u16 tfd_size = trans->txqs.tfd.size;
3324 
3325 		data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_TXCMD);
3326 		txcmd = (void *)data->data;
3327 		spin_lock_bh(&cmdq->lock);
3328 		ptr = cmdq->write_ptr;
3329 		for (i = 0; i < cmdq->n_window; i++) {
3330 			u8 idx = iwl_txq_get_cmd_index(cmdq, ptr);
3331 			u8 tfdidx;
3332 			u32 caplen, cmdlen;
3333 
3334 			if (trans->trans_cfg->use_tfh)
3335 				tfdidx = idx;
3336 			else
3337 				tfdidx = ptr;
3338 
3339 			cmdlen = iwl_trans_pcie_get_cmdlen(trans,
3340 							   (u8 *)cmdq->tfds +
3341 							   tfd_size * tfdidx);
3342 			caplen = min_t(u32, TFD_MAX_PAYLOAD_SIZE, cmdlen);
3343 
3344 			if (cmdlen) {
3345 				len += sizeof(*txcmd) + caplen;
3346 				txcmd->cmdlen = cpu_to_le32(cmdlen);
3347 				txcmd->caplen = cpu_to_le32(caplen);
3348 				memcpy(txcmd->data, cmdq->entries[idx].cmd,
3349 				       caplen);
3350 				txcmd = (void *)((u8 *)txcmd->data + caplen);
3351 			}
3352 
3353 			ptr = iwl_txq_dec_wrap(trans, ptr);
3354 		}
3355 		spin_unlock_bh(&cmdq->lock);
3356 
3357 		data->len = cpu_to_le32(len);
3358 		len += sizeof(*data);
3359 		data = iwl_fw_error_next_data(data);
3360 	}
3361 
3362 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_CSR))
3363 		len += iwl_trans_pcie_dump_csr(trans, &data);
3364 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FH_REGS))
3365 		len += iwl_trans_pcie_fh_regs_dump(trans, &data);
3366 	if (dump_rbs)
3367 		len += iwl_trans_pcie_dump_rbs(trans, &data, num_rbs);
3368 
3369 	/* Paged memory for gen2 HW */
3370 	if (trans->trans_cfg->gen2 &&
3371 	    dump_mask & BIT(IWL_FW_ERROR_DUMP_PAGING)) {
3372 		for (i = 0; i < trans->init_dram.paging_cnt; i++) {
3373 			struct iwl_fw_error_dump_paging *paging;
3374 			u32 page_len = trans->init_dram.paging[i].size;
3375 
3376 			data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_PAGING);
3377 			data->len = cpu_to_le32(sizeof(*paging) + page_len);
3378 			paging = (void *)data->data;
3379 			paging->index = cpu_to_le32(i);
3380 			memcpy(paging->data,
3381 			       trans->init_dram.paging[i].block, page_len);
3382 			data = iwl_fw_error_next_data(data);
3383 
3384 			len += sizeof(*data) + sizeof(*paging) + page_len;
3385 		}
3386 	}
3387 	if (dump_mask & BIT(IWL_FW_ERROR_DUMP_FW_MONITOR))
3388 		len += iwl_trans_pcie_dump_monitor(trans, &data, monitor_len);
3389 
3390 	dump_data->len = len;
3391 
3392 	return dump_data;
3393 }
3394 
3395 #ifdef CONFIG_PM_SLEEP
iwl_trans_pcie_suspend(struct iwl_trans * trans)3396 static int iwl_trans_pcie_suspend(struct iwl_trans *trans)
3397 {
3398 	return 0;
3399 }
3400 
iwl_trans_pcie_resume(struct iwl_trans * trans)3401 static void iwl_trans_pcie_resume(struct iwl_trans *trans)
3402 {
3403 }
3404 #endif /* CONFIG_PM_SLEEP */
3405 
3406 #define IWL_TRANS_COMMON_OPS						\
3407 	.op_mode_leave = iwl_trans_pcie_op_mode_leave,			\
3408 	.write8 = iwl_trans_pcie_write8,				\
3409 	.write32 = iwl_trans_pcie_write32,				\
3410 	.read32 = iwl_trans_pcie_read32,				\
3411 	.read_prph = iwl_trans_pcie_read_prph,				\
3412 	.write_prph = iwl_trans_pcie_write_prph,			\
3413 	.read_mem = iwl_trans_pcie_read_mem,				\
3414 	.write_mem = iwl_trans_pcie_write_mem,				\
3415 	.read_config32 = iwl_trans_pcie_read_config32,			\
3416 	.configure = iwl_trans_pcie_configure,				\
3417 	.set_pmi = iwl_trans_pcie_set_pmi,				\
3418 	.sw_reset = iwl_trans_pcie_sw_reset,				\
3419 	.grab_nic_access = iwl_trans_pcie_grab_nic_access,		\
3420 	.release_nic_access = iwl_trans_pcie_release_nic_access,	\
3421 	.set_bits_mask = iwl_trans_pcie_set_bits_mask,			\
3422 	.dump_data = iwl_trans_pcie_dump_data,				\
3423 	.d3_suspend = iwl_trans_pcie_d3_suspend,			\
3424 	.d3_resume = iwl_trans_pcie_d3_resume,				\
3425 	.sync_nmi = iwl_trans_pcie_sync_nmi
3426 
3427 #ifdef CONFIG_PM_SLEEP
3428 #define IWL_TRANS_PM_OPS						\
3429 	.suspend = iwl_trans_pcie_suspend,				\
3430 	.resume = iwl_trans_pcie_resume,
3431 #else
3432 #define IWL_TRANS_PM_OPS
3433 #endif /* CONFIG_PM_SLEEP */
3434 
3435 static const struct iwl_trans_ops trans_ops_pcie = {
3436 	IWL_TRANS_COMMON_OPS,
3437 	IWL_TRANS_PM_OPS
3438 	.start_hw = iwl_trans_pcie_start_hw,
3439 	.fw_alive = iwl_trans_pcie_fw_alive,
3440 	.start_fw = iwl_trans_pcie_start_fw,
3441 	.stop_device = iwl_trans_pcie_stop_device,
3442 
3443 	.send_cmd = iwl_trans_pcie_send_hcmd,
3444 
3445 	.tx = iwl_trans_pcie_tx,
3446 	.reclaim = iwl_trans_pcie_reclaim,
3447 
3448 	.txq_disable = iwl_trans_pcie_txq_disable,
3449 	.txq_enable = iwl_trans_pcie_txq_enable,
3450 
3451 	.txq_set_shared_mode = iwl_trans_pcie_txq_set_shared_mode,
3452 
3453 	.wait_tx_queues_empty = iwl_trans_pcie_wait_txqs_empty,
3454 
3455 	.freeze_txq_timer = iwl_trans_pcie_freeze_txq_timer,
3456 	.block_txq_ptrs = iwl_trans_pcie_block_txq_ptrs,
3457 #ifdef CONFIG_IWLWIFI_DEBUGFS
3458 	.debugfs_cleanup = iwl_trans_pcie_debugfs_cleanup,
3459 #endif
3460 };
3461 
3462 static const struct iwl_trans_ops trans_ops_pcie_gen2 = {
3463 	IWL_TRANS_COMMON_OPS,
3464 	IWL_TRANS_PM_OPS
3465 	.start_hw = iwl_trans_pcie_start_hw,
3466 	.fw_alive = iwl_trans_pcie_gen2_fw_alive,
3467 	.start_fw = iwl_trans_pcie_gen2_start_fw,
3468 	.stop_device = iwl_trans_pcie_gen2_stop_device,
3469 
3470 	.send_cmd = iwl_trans_pcie_gen2_send_hcmd,
3471 
3472 	.tx = iwl_txq_gen2_tx,
3473 	.reclaim = iwl_trans_pcie_reclaim,
3474 
3475 	.set_q_ptrs = iwl_trans_pcie_set_q_ptrs,
3476 
3477 	.txq_alloc = iwl_txq_dyn_alloc,
3478 	.txq_free = iwl_txq_dyn_free,
3479 	.wait_txq_empty = iwl_trans_pcie_wait_txq_empty,
3480 	.rxq_dma_data = iwl_trans_pcie_rxq_dma_data,
3481 	.set_pnvm = iwl_trans_pcie_ctx_info_gen3_set_pnvm,
3482 #ifdef CONFIG_IWLWIFI_DEBUGFS
3483 	.debugfs_cleanup = iwl_trans_pcie_debugfs_cleanup,
3484 #endif
3485 };
3486 
iwl_trans_pcie_alloc(struct pci_dev * pdev,const struct pci_device_id * ent,const struct iwl_cfg_trans_params * cfg_trans)3487 struct iwl_trans *iwl_trans_pcie_alloc(struct pci_dev *pdev,
3488 			       const struct pci_device_id *ent,
3489 			       const struct iwl_cfg_trans_params *cfg_trans)
3490 {
3491 	struct iwl_trans_pcie *trans_pcie;
3492 	struct iwl_trans *trans;
3493 	int ret, addr_size;
3494 	const struct iwl_trans_ops *ops = &trans_ops_pcie_gen2;
3495 
3496 	if (!cfg_trans->gen2)
3497 		ops = &trans_ops_pcie;
3498 
3499 	ret = pcim_enable_device(pdev);
3500 	if (ret)
3501 		return ERR_PTR(ret);
3502 
3503 	trans = iwl_trans_alloc(sizeof(struct iwl_trans_pcie), &pdev->dev, ops,
3504 				cfg_trans);
3505 	if (!trans)
3506 		return ERR_PTR(-ENOMEM);
3507 
3508 	trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
3509 
3510 	trans_pcie->trans = trans;
3511 	trans_pcie->opmode_down = true;
3512 	spin_lock_init(&trans_pcie->irq_lock);
3513 	spin_lock_init(&trans_pcie->reg_lock);
3514 	spin_lock_init(&trans_pcie->alloc_page_lock);
3515 	mutex_init(&trans_pcie->mutex);
3516 	init_waitqueue_head(&trans_pcie->ucode_write_waitq);
3517 
3518 	trans_pcie->rba.alloc_wq = alloc_workqueue("rb_allocator",
3519 						   WQ_HIGHPRI | WQ_UNBOUND, 1);
3520 	if (!trans_pcie->rba.alloc_wq) {
3521 		ret = -ENOMEM;
3522 		goto out_free_trans;
3523 	}
3524 	INIT_WORK(&trans_pcie->rba.rx_alloc, iwl_pcie_rx_allocator_work);
3525 
3526 	trans_pcie->debug_rfkill = -1;
3527 
3528 	if (!cfg_trans->base_params->pcie_l1_allowed) {
3529 		/*
3530 		 * W/A - seems to solve weird behavior. We need to remove this
3531 		 * if we don't want to stay in L1 all the time. This wastes a
3532 		 * lot of power.
3533 		 */
3534 		pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S |
3535 				       PCIE_LINK_STATE_L1 |
3536 				       PCIE_LINK_STATE_CLKPM);
3537 	}
3538 
3539 	trans_pcie->def_rx_queue = 0;
3540 
3541 	pci_set_master(pdev);
3542 
3543 	addr_size = trans->txqs.tfd.addr_size;
3544 	ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(addr_size));
3545 	if (!ret)
3546 		ret = pci_set_consistent_dma_mask(pdev,
3547 						  DMA_BIT_MASK(addr_size));
3548 	if (ret) {
3549 		ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
3550 		if (!ret)
3551 			ret = pci_set_consistent_dma_mask(pdev,
3552 							  DMA_BIT_MASK(32));
3553 		/* both attempts failed: */
3554 		if (ret) {
3555 			dev_err(&pdev->dev, "No suitable DMA available\n");
3556 			goto out_no_pci;
3557 		}
3558 	}
3559 
3560 	ret = pcim_iomap_regions_request_all(pdev, BIT(0), DRV_NAME);
3561 	if (ret) {
3562 		dev_err(&pdev->dev, "pcim_iomap_regions_request_all failed\n");
3563 		goto out_no_pci;
3564 	}
3565 
3566 	trans_pcie->hw_base = pcim_iomap_table(pdev)[0];
3567 	if (!trans_pcie->hw_base) {
3568 		dev_err(&pdev->dev, "pcim_iomap_table failed\n");
3569 		ret = -ENODEV;
3570 		goto out_no_pci;
3571 	}
3572 
3573 	/* We disable the RETRY_TIMEOUT register (0x41) to keep
3574 	 * PCI Tx retries from interfering with C3 CPU state */
3575 	pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3576 
3577 	trans_pcie->pci_dev = pdev;
3578 	iwl_disable_interrupts(trans);
3579 
3580 	trans->hw_rev = iwl_read32(trans, CSR_HW_REV);
3581 	if (trans->hw_rev == 0xffffffff) {
3582 		dev_err(&pdev->dev, "HW_REV=0xFFFFFFFF, PCI issues?\n");
3583 		ret = -EIO;
3584 		goto out_no_pci;
3585 	}
3586 
3587 	/*
3588 	 * In the 8000 HW family the format of the 4 bytes of CSR_HW_REV have
3589 	 * changed, and now the revision step also includes bit 0-1 (no more
3590 	 * "dash" value). To keep hw_rev backwards compatible - we'll store it
3591 	 * in the old format.
3592 	 */
3593 	if (cfg_trans->device_family >= IWL_DEVICE_FAMILY_8000) {
3594 		trans->hw_rev = (trans->hw_rev & 0xfff0) |
3595 				(CSR_HW_REV_STEP(trans->hw_rev << 2) << 2);
3596 
3597 		ret = iwl_pcie_prepare_card_hw(trans);
3598 		if (ret) {
3599 			IWL_WARN(trans, "Exit HW not ready\n");
3600 			goto out_no_pci;
3601 		}
3602 
3603 		/*
3604 		 * in-order to recognize C step driver should read chip version
3605 		 * id located at the AUX bus MISC address space.
3606 		 */
3607 		ret = iwl_finish_nic_init(trans, cfg_trans);
3608 		if (ret)
3609 			goto out_no_pci;
3610 
3611 	}
3612 
3613 	IWL_DEBUG_INFO(trans, "HW REV: 0x%0x\n", trans->hw_rev);
3614 
3615 	iwl_pcie_set_interrupt_capa(pdev, trans, cfg_trans);
3616 	trans->hw_id = (pdev->device << 16) + pdev->subsystem_device;
3617 	snprintf(trans->hw_id_str, sizeof(trans->hw_id_str),
3618 		 "PCI ID: 0x%04X:0x%04X", pdev->device, pdev->subsystem_device);
3619 
3620 	/* Initialize the wait queue for commands */
3621 	init_waitqueue_head(&trans_pcie->wait_command_queue);
3622 
3623 	init_waitqueue_head(&trans_pcie->sx_waitq);
3624 
3625 
3626 	if (trans_pcie->msix_enabled) {
3627 		ret = iwl_pcie_init_msix_handler(pdev, trans_pcie);
3628 		if (ret)
3629 			goto out_no_pci;
3630 	 } else {
3631 		ret = iwl_pcie_alloc_ict(trans);
3632 		if (ret)
3633 			goto out_no_pci;
3634 
3635 		ret = devm_request_threaded_irq(&pdev->dev, pdev->irq,
3636 						iwl_pcie_isr,
3637 						iwl_pcie_irq_handler,
3638 						IRQF_SHARED, DRV_NAME, trans);
3639 		if (ret) {
3640 			IWL_ERR(trans, "Error allocating IRQ %d\n", pdev->irq);
3641 			goto out_free_ict;
3642 		}
3643 		trans_pcie->inta_mask = CSR_INI_SET_MASK;
3644 	 }
3645 
3646 #ifdef CONFIG_IWLWIFI_DEBUGFS
3647 	trans_pcie->fw_mon_data.state = IWL_FW_MON_DBGFS_STATE_CLOSED;
3648 	mutex_init(&trans_pcie->fw_mon_data.mutex);
3649 #endif
3650 
3651 	iwl_dbg_tlv_init(trans);
3652 
3653 	return trans;
3654 
3655 out_free_ict:
3656 	iwl_pcie_free_ict(trans);
3657 out_no_pci:
3658 	destroy_workqueue(trans_pcie->rba.alloc_wq);
3659 out_free_trans:
3660 	iwl_trans_free(trans);
3661 	return ERR_PTR(ret);
3662 }
3663 
iwl_trans_pcie_sync_nmi(struct iwl_trans * trans)3664 void iwl_trans_pcie_sync_nmi(struct iwl_trans *trans)
3665 {
3666 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
3667 	unsigned long timeout = jiffies + IWL_TRANS_NMI_TIMEOUT;
3668 	bool interrupts_enabled = test_bit(STATUS_INT_ENABLED, &trans->status);
3669 	u32 inta_addr, sw_err_bit;
3670 
3671 	if (trans_pcie->msix_enabled) {
3672 		inta_addr = CSR_MSIX_HW_INT_CAUSES_AD;
3673 		sw_err_bit = MSIX_HW_INT_CAUSES_REG_SW_ERR;
3674 	} else {
3675 		inta_addr = CSR_INT;
3676 		sw_err_bit = CSR_INT_BIT_SW_ERR;
3677 	}
3678 
3679 	/* if the interrupts were already disabled, there is no point in
3680 	 * calling iwl_disable_interrupts
3681 	 */
3682 	if (interrupts_enabled)
3683 		iwl_disable_interrupts(trans);
3684 
3685 	iwl_force_nmi(trans);
3686 	while (time_after(timeout, jiffies)) {
3687 		u32 inta_hw = iwl_read32(trans, inta_addr);
3688 
3689 		/* Error detected by uCode */
3690 		if (inta_hw & sw_err_bit) {
3691 			/* Clear causes register */
3692 			iwl_write32(trans, inta_addr, inta_hw & sw_err_bit);
3693 			break;
3694 		}
3695 
3696 		mdelay(1);
3697 	}
3698 
3699 	/* enable interrupts only if there were already enabled before this
3700 	 * function to avoid a case were the driver enable interrupts before
3701 	 * proper configurations were made
3702 	 */
3703 	if (interrupts_enabled)
3704 		iwl_enable_interrupts(trans);
3705 
3706 	iwl_trans_fw_error(trans);
3707 }
3708