]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/net/wireless/iwlwifi/iwl-trans-pcie.c
iwlagn: Makefile whitespace cleanup
[mirror_ubuntu-hirsute-kernel.git] / drivers / net / wireless / iwlwifi / iwl-trans-pcie.c
CommitLineData
c85eb619
EG
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) 2007 - 2011 Intel Corporation. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
25 * in the file called LICENSE.GPL.
26 *
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
33 * Copyright(c) 2005 - 2011 Intel Corporation. All rights reserved.
34 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *
62 *****************************************************************************/
e6bb4c9c 63#include <linux/interrupt.h>
87e5666c 64#include <linux/debugfs.h>
6d8f6eeb
EG
65#include <linux/bitops.h>
66#include <linux/gfp.h>
e6bb4c9c 67
c85eb619 68#include "iwl-trans.h"
c17d0681 69#include "iwl-trans-pcie-int.h"
522376d2
EG
70#include "iwl-csr.h"
71#include "iwl-prph.h"
48f20d35 72#include "iwl-shared.h"
522376d2 73#include "iwl-eeprom.h"
7a10e3e4 74#include "iwl-agn-hw.h"
c85eb619 75
5a878bf6 76static int iwl_trans_rx_alloc(struct iwl_trans *trans)
c85eb619 77{
5a878bf6
EG
78 struct iwl_trans_pcie *trans_pcie =
79 IWL_TRANS_GET_PCIE_TRANS(trans);
80 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
81 struct device *dev = bus(trans)->dev;
c85eb619 82
5a878bf6 83 memset(&trans_pcie->rxq, 0, sizeof(trans_pcie->rxq));
c85eb619
EG
84
85 spin_lock_init(&rxq->lock);
86 INIT_LIST_HEAD(&rxq->rx_free);
87 INIT_LIST_HEAD(&rxq->rx_used);
88
89 if (WARN_ON(rxq->bd || rxq->rb_stts))
90 return -EINVAL;
91
92 /* Allocate the circular buffer of Read Buffer Descriptors (RBDs) */
a0f6b0a2
EG
93 rxq->bd = dma_alloc_coherent(dev, sizeof(__le32) * RX_QUEUE_SIZE,
94 &rxq->bd_dma, GFP_KERNEL);
c85eb619
EG
95 if (!rxq->bd)
96 goto err_bd;
a0f6b0a2 97 memset(rxq->bd, 0, sizeof(__le32) * RX_QUEUE_SIZE);
c85eb619
EG
98
99 /*Allocate the driver's pointer to receive buffer status */
100 rxq->rb_stts = dma_alloc_coherent(dev, sizeof(*rxq->rb_stts),
101 &rxq->rb_stts_dma, GFP_KERNEL);
102 if (!rxq->rb_stts)
103 goto err_rb_stts;
104 memset(rxq->rb_stts, 0, sizeof(*rxq->rb_stts));
105
106 return 0;
107
108err_rb_stts:
a0f6b0a2
EG
109 dma_free_coherent(dev, sizeof(__le32) * RX_QUEUE_SIZE,
110 rxq->bd, rxq->bd_dma);
c85eb619
EG
111 memset(&rxq->bd_dma, 0, sizeof(rxq->bd_dma));
112 rxq->bd = NULL;
113err_bd:
114 return -ENOMEM;
115}
116
5a878bf6 117static void iwl_trans_rxq_free_rx_bufs(struct iwl_trans *trans)
c85eb619 118{
5a878bf6
EG
119 struct iwl_trans_pcie *trans_pcie =
120 IWL_TRANS_GET_PCIE_TRANS(trans);
121 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
a0f6b0a2 122 int i;
c85eb619
EG
123
124 /* Fill the rx_used queue with _all_ of the Rx buffers */
125 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
126 /* In the reset function, these buffers may have been allocated
127 * to an SKB, so we need to unmap and free potential storage */
128 if (rxq->pool[i].page != NULL) {
5a878bf6
EG
129 dma_unmap_page(bus(trans)->dev, rxq->pool[i].page_dma,
130 PAGE_SIZE << hw_params(trans).rx_page_order,
c85eb619 131 DMA_FROM_DEVICE);
790428b6
EG
132 __free_pages(rxq->pool[i].page,
133 hw_params(trans).rx_page_order);
c85eb619
EG
134 rxq->pool[i].page = NULL;
135 }
136 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
137 }
a0f6b0a2
EG
138}
139
fd656935 140static void iwl_trans_rx_hw_init(struct iwl_trans *trans,
ab697a9f
EG
141 struct iwl_rx_queue *rxq)
142{
143 u32 rb_size;
144 const u32 rfdnlog = RX_QUEUE_SIZE_LOG; /* 256 RBDs */
c17d0681 145 u32 rb_timeout = RX_RB_TIMEOUT; /* FIXME: RX_RB_TIMEOUT for all devices? */
ab697a9f
EG
146
147 if (iwlagn_mod_params.amsdu_size_8K)
148 rb_size = FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K;
149 else
150 rb_size = FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K;
151
152 /* Stop Rx DMA */
83ed9015 153 iwl_write_direct32(bus(trans), FH_MEM_RCSR_CHNL0_CONFIG_REG, 0);
ab697a9f
EG
154
155 /* Reset driver's Rx queue write index */
83ed9015 156 iwl_write_direct32(bus(trans), FH_RSCSR_CHNL0_RBDCB_WPTR_REG, 0);
ab697a9f
EG
157
158 /* Tell device where to find RBD circular buffer in DRAM */
83ed9015 159 iwl_write_direct32(bus(trans), FH_RSCSR_CHNL0_RBDCB_BASE_REG,
ab697a9f
EG
160 (u32)(rxq->bd_dma >> 8));
161
162 /* Tell device where in DRAM to update its Rx status */
83ed9015 163 iwl_write_direct32(bus(trans), FH_RSCSR_CHNL0_STTS_WPTR_REG,
ab697a9f
EG
164 rxq->rb_stts_dma >> 4);
165
166 /* Enable Rx DMA
167 * FH_RCSR_CHNL0_RX_IGNORE_RXF_EMPTY is set because of HW bug in
168 * the credit mechanism in 5000 HW RX FIFO
169 * Direct rx interrupts to hosts
170 * Rx buffer size 4 or 8k
171 * RB timeout 0x10
172 * 256 RBDs
173 */
83ed9015 174 iwl_write_direct32(bus(trans), FH_MEM_RCSR_CHNL0_CONFIG_REG,
ab697a9f
EG
175 FH_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL |
176 FH_RCSR_CHNL0_RX_IGNORE_RXF_EMPTY |
177 FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL |
178 FH_RCSR_CHNL0_RX_CONFIG_SINGLE_FRAME_MSK |
179 rb_size|
180 (rb_timeout << FH_RCSR_RX_CONFIG_REG_IRQ_RBTH_POS)|
181 (rfdnlog << FH_RCSR_RX_CONFIG_RBDCB_SIZE_POS));
182
183 /* Set interrupt coalescing timer to default (2048 usecs) */
83ed9015 184 iwl_write8(bus(trans), CSR_INT_COALESCING, IWL_HOST_INT_TIMEOUT_DEF);
ab697a9f
EG
185}
186
5a878bf6 187static int iwl_rx_init(struct iwl_trans *trans)
a0f6b0a2 188{
5a878bf6
EG
189 struct iwl_trans_pcie *trans_pcie =
190 IWL_TRANS_GET_PCIE_TRANS(trans);
191 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
192
a0f6b0a2
EG
193 int i, err;
194 unsigned long flags;
195
196 if (!rxq->bd) {
5a878bf6 197 err = iwl_trans_rx_alloc(trans);
a0f6b0a2
EG
198 if (err)
199 return err;
200 }
201
202 spin_lock_irqsave(&rxq->lock, flags);
203 INIT_LIST_HEAD(&rxq->rx_free);
204 INIT_LIST_HEAD(&rxq->rx_used);
205
5a878bf6 206 iwl_trans_rxq_free_rx_bufs(trans);
c85eb619
EG
207
208 for (i = 0; i < RX_QUEUE_SIZE; i++)
209 rxq->queue[i] = NULL;
210
211 /* Set us so that we have processed and used all buffers, but have
212 * not restocked the Rx queue with fresh buffers */
213 rxq->read = rxq->write = 0;
214 rxq->write_actual = 0;
215 rxq->free_count = 0;
216 spin_unlock_irqrestore(&rxq->lock, flags);
217
5a878bf6 218 iwlagn_rx_replenish(trans);
ab697a9f 219
fd656935 220 iwl_trans_rx_hw_init(trans, rxq);
ab697a9f 221
5a878bf6 222 spin_lock_irqsave(&trans->shrd->lock, flags);
ab697a9f 223 rxq->need_update = 1;
5a878bf6
EG
224 iwl_rx_queue_update_write_ptr(trans, rxq);
225 spin_unlock_irqrestore(&trans->shrd->lock, flags);
ab697a9f 226
c85eb619
EG
227 return 0;
228}
229
5a878bf6 230static void iwl_trans_pcie_rx_free(struct iwl_trans *trans)
a0f6b0a2 231{
5a878bf6
EG
232 struct iwl_trans_pcie *trans_pcie =
233 IWL_TRANS_GET_PCIE_TRANS(trans);
234 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
235
a0f6b0a2
EG
236 unsigned long flags;
237
238 /*if rxq->bd is NULL, it means that nothing has been allocated,
239 * exit now */
240 if (!rxq->bd) {
5a878bf6 241 IWL_DEBUG_INFO(trans, "Free NULL rx context\n");
a0f6b0a2
EG
242 return;
243 }
244
245 spin_lock_irqsave(&rxq->lock, flags);
5a878bf6 246 iwl_trans_rxq_free_rx_bufs(trans);
a0f6b0a2
EG
247 spin_unlock_irqrestore(&rxq->lock, flags);
248
5a878bf6 249 dma_free_coherent(bus(trans)->dev, sizeof(__le32) * RX_QUEUE_SIZE,
a0f6b0a2
EG
250 rxq->bd, rxq->bd_dma);
251 memset(&rxq->bd_dma, 0, sizeof(rxq->bd_dma));
252 rxq->bd = NULL;
253
254 if (rxq->rb_stts)
5a878bf6 255 dma_free_coherent(bus(trans)->dev,
a0f6b0a2
EG
256 sizeof(struct iwl_rb_status),
257 rxq->rb_stts, rxq->rb_stts_dma);
258 else
5a878bf6 259 IWL_DEBUG_INFO(trans, "Free rxq->rb_stts which is NULL\n");
a0f6b0a2
EG
260 memset(&rxq->rb_stts_dma, 0, sizeof(rxq->rb_stts_dma));
261 rxq->rb_stts = NULL;
262}
263
6d8f6eeb 264static int iwl_trans_rx_stop(struct iwl_trans *trans)
c2c52e8b
EG
265{
266
267 /* stop Rx DMA */
83ed9015
EG
268 iwl_write_direct32(bus(trans), FH_MEM_RCSR_CHNL0_CONFIG_REG, 0);
269 return iwl_poll_direct_bit(bus(trans), FH_MEM_RSSR_RX_STATUS_REG,
c2c52e8b
EG
270 FH_RSSR_CHNL0_RX_STATUS_CHNL_IDLE, 1000);
271}
272
6d8f6eeb 273static inline int iwlagn_alloc_dma_ptr(struct iwl_trans *trans,
02aca585
EG
274 struct iwl_dma_ptr *ptr, size_t size)
275{
276 if (WARN_ON(ptr->addr))
277 return -EINVAL;
278
6d8f6eeb 279 ptr->addr = dma_alloc_coherent(bus(trans)->dev, size,
02aca585
EG
280 &ptr->dma, GFP_KERNEL);
281 if (!ptr->addr)
282 return -ENOMEM;
283 ptr->size = size;
284 return 0;
285}
286
6d8f6eeb 287static inline void iwlagn_free_dma_ptr(struct iwl_trans *trans,
1359ca4f
EG
288 struct iwl_dma_ptr *ptr)
289{
290 if (unlikely(!ptr->addr))
291 return;
292
6d8f6eeb 293 dma_free_coherent(bus(trans)->dev, ptr->size, ptr->addr, ptr->dma);
1359ca4f
EG
294 memset(ptr, 0, sizeof(*ptr));
295}
296
6d8f6eeb
EG
297static int iwl_trans_txq_alloc(struct iwl_trans *trans,
298 struct iwl_tx_queue *txq, int slots_num,
299 u32 txq_id)
02aca585 300{
ab9e212e 301 size_t tfd_sz = sizeof(struct iwl_tfd) * TFD_QUEUE_SIZE_MAX;
02aca585
EG
302 int i;
303
2c452297 304 if (WARN_ON(txq->meta || txq->cmd || txq->skbs || txq->tfds))
02aca585
EG
305 return -EINVAL;
306
1359ca4f
EG
307 txq->q.n_window = slots_num;
308
c17d0681
JB
309 txq->meta = kzalloc(sizeof(txq->meta[0]) * slots_num, GFP_KERNEL);
310 txq->cmd = kzalloc(sizeof(txq->cmd[0]) * slots_num, GFP_KERNEL);
02aca585
EG
311
312 if (!txq->meta || !txq->cmd)
313 goto error;
314
dfa2bdba
EG
315 if (txq_id == trans->shrd->cmd_queue)
316 for (i = 0; i < slots_num; i++) {
317 txq->cmd[i] = kmalloc(sizeof(struct iwl_device_cmd),
318 GFP_KERNEL);
319 if (!txq->cmd[i])
320 goto error;
321 }
02aca585
EG
322
323 /* Alloc driver data array and TFD circular buffer */
324 /* Driver private data, only for Tx (not command) queues,
325 * not shared with device. */
6d8f6eeb 326 if (txq_id != trans->shrd->cmd_queue) {
2c452297 327 txq->skbs = kzalloc(sizeof(txq->skbs[0]) *
02aca585 328 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
2c452297 329 if (!txq->skbs) {
6d8f6eeb 330 IWL_ERR(trans, "kmalloc for auxiliary BD "
02aca585
EG
331 "structures failed\n");
332 goto error;
333 }
334 } else {
2c452297 335 txq->skbs = NULL;
02aca585
EG
336 }
337
338 /* Circular buffer of transmit frame descriptors (TFDs),
339 * shared with device */
6d8f6eeb
EG
340 txq->tfds = dma_alloc_coherent(bus(trans)->dev, tfd_sz,
341 &txq->q.dma_addr, GFP_KERNEL);
02aca585 342 if (!txq->tfds) {
6d8f6eeb 343 IWL_ERR(trans, "dma_alloc_coherent(%zd) failed\n", tfd_sz);
02aca585
EG
344 goto error;
345 }
346 txq->q.id = txq_id;
347
348 return 0;
349error:
2c452297
EG
350 kfree(txq->skbs);
351 txq->skbs = NULL;
02aca585
EG
352 /* since txq->cmd has been zeroed,
353 * all non allocated cmd[i] will be NULL */
dfa2bdba 354 if (txq->cmd && txq_id == trans->shrd->cmd_queue)
02aca585
EG
355 for (i = 0; i < slots_num; i++)
356 kfree(txq->cmd[i]);
357 kfree(txq->meta);
358 kfree(txq->cmd);
359 txq->meta = NULL;
360 txq->cmd = NULL;
361
362 return -ENOMEM;
363
364}
365
6d8f6eeb 366static int iwl_trans_txq_init(struct iwl_trans *trans, struct iwl_tx_queue *txq,
02aca585
EG
367 int slots_num, u32 txq_id)
368{
369 int ret;
370
371 txq->need_update = 0;
372 memset(txq->meta, 0, sizeof(txq->meta[0]) * slots_num);
373
374 /*
375 * For the default queues 0-3, set up the swq_id
376 * already -- all others need to get one later
377 * (if they need one at all).
378 */
379 if (txq_id < 4)
380 iwl_set_swq_id(txq, txq_id, txq_id);
381
382 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
383 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
384 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
385
386 /* Initialize queue's high/low-water marks, and head/tail indexes */
6d8f6eeb 387 ret = iwl_queue_init(&txq->q, TFD_QUEUE_SIZE_MAX, slots_num,
02aca585
EG
388 txq_id);
389 if (ret)
390 return ret;
391
392 /*
393 * Tell nic where to find circular buffer of Tx Frame Descriptors for
394 * given Tx queue, and enable the DMA channel used for that queue.
395 * Circular buffer (TFD queue in DRAM) physical base address */
83ed9015 396 iwl_write_direct32(bus(trans), FH_MEM_CBBC_QUEUE(txq_id),
02aca585
EG
397 txq->q.dma_addr >> 8);
398
399 return 0;
400}
401
c170b867
EG
402/**
403 * iwl_tx_queue_unmap - Unmap any remaining DMA mappings and free skb's
404 */
6d8f6eeb 405static void iwl_tx_queue_unmap(struct iwl_trans *trans, int txq_id)
c170b867 406{
8ad71bef
EG
407 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
408 struct iwl_tx_queue *txq = &trans_pcie->txq[txq_id];
c170b867 409 struct iwl_queue *q = &txq->q;
39644e9a 410 enum dma_data_direction dma_dir;
c170b867
EG
411
412 if (!q->n_bd)
413 return;
414
39644e9a
EG
415 /* In the command queue, all the TBs are mapped as BIDI
416 * so unmap them as such.
417 */
418 if (txq_id == trans->shrd->cmd_queue)
419 dma_dir = DMA_BIDIRECTIONAL;
420 else
421 dma_dir = DMA_TO_DEVICE;
422
c170b867
EG
423 while (q->write_ptr != q->read_ptr) {
424 /* The read_ptr needs to bound by q->n_window */
39644e9a
EG
425 iwlagn_txq_free_tfd(trans, txq, get_cmd_index(q, q->read_ptr),
426 dma_dir);
c170b867
EG
427 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd);
428 }
429}
430
1359ca4f
EG
431/**
432 * iwl_tx_queue_free - Deallocate DMA queue.
433 * @txq: Transmit queue to deallocate.
434 *
435 * Empty queue by removing and destroying all BD's.
436 * Free all buffers.
437 * 0-fill, but do not free "txq" descriptor structure.
438 */
6d8f6eeb 439static void iwl_tx_queue_free(struct iwl_trans *trans, int txq_id)
1359ca4f 440{
8ad71bef
EG
441 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
442 struct iwl_tx_queue *txq = &trans_pcie->txq[txq_id];
6d8f6eeb 443 struct device *dev = bus(trans)->dev;
1359ca4f
EG
444 int i;
445 if (WARN_ON(!txq))
446 return;
447
6d8f6eeb 448 iwl_tx_queue_unmap(trans, txq_id);
1359ca4f
EG
449
450 /* De-alloc array of command/tx buffers */
dfa2bdba
EG
451
452 if (txq_id == trans->shrd->cmd_queue)
453 for (i = 0; i < txq->q.n_window; i++)
454 kfree(txq->cmd[i]);
1359ca4f
EG
455
456 /* De-alloc circular buffer of TFDs */
457 if (txq->q.n_bd) {
ab9e212e 458 dma_free_coherent(dev, sizeof(struct iwl_tfd) *
1359ca4f
EG
459 txq->q.n_bd, txq->tfds, txq->q.dma_addr);
460 memset(&txq->q.dma_addr, 0, sizeof(txq->q.dma_addr));
461 }
462
463 /* De-alloc array of per-TFD driver data */
2c452297
EG
464 kfree(txq->skbs);
465 txq->skbs = NULL;
1359ca4f
EG
466
467 /* deallocate arrays */
468 kfree(txq->cmd);
469 kfree(txq->meta);
470 txq->cmd = NULL;
471 txq->meta = NULL;
472
473 /* 0-fill queue descriptor structure */
474 memset(txq, 0, sizeof(*txq));
475}
476
477/**
478 * iwl_trans_tx_free - Free TXQ Context
479 *
480 * Destroy all TX DMA queues and structures
481 */
6d8f6eeb 482static void iwl_trans_pcie_tx_free(struct iwl_trans *trans)
1359ca4f
EG
483{
484 int txq_id;
8ad71bef 485 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1359ca4f
EG
486
487 /* Tx queues */
8ad71bef 488 if (trans_pcie->txq) {
d6189124 489 for (txq_id = 0;
6d8f6eeb
EG
490 txq_id < hw_params(trans).max_txq_num; txq_id++)
491 iwl_tx_queue_free(trans, txq_id);
1359ca4f
EG
492 }
493
8ad71bef
EG
494 kfree(trans_pcie->txq);
495 trans_pcie->txq = NULL;
1359ca4f 496
9d6b2cb1 497 iwlagn_free_dma_ptr(trans, &trans_pcie->kw);
1359ca4f 498
6d8f6eeb 499 iwlagn_free_dma_ptr(trans, &trans_pcie->scd_bc_tbls);
1359ca4f
EG
500}
501
02aca585
EG
502/**
503 * iwl_trans_tx_alloc - allocate TX context
504 * Allocate all Tx DMA structures and initialize them
505 *
506 * @param priv
507 * @return error code
508 */
6d8f6eeb 509static int iwl_trans_tx_alloc(struct iwl_trans *trans)
02aca585
EG
510{
511 int ret;
512 int txq_id, slots_num;
8ad71bef 513 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
02aca585 514
fd656935 515 u16 scd_bc_tbls_size = hw_params(trans).max_txq_num *
ab9e212e
EG
516 sizeof(struct iwlagn_scd_bc_tbl);
517
02aca585
EG
518 /*It is not allowed to alloc twice, so warn when this happens.
519 * We cannot rely on the previous allocation, so free and fail */
8ad71bef 520 if (WARN_ON(trans_pcie->txq)) {
02aca585
EG
521 ret = -EINVAL;
522 goto error;
523 }
524
6d8f6eeb 525 ret = iwlagn_alloc_dma_ptr(trans, &trans_pcie->scd_bc_tbls,
ab9e212e 526 scd_bc_tbls_size);
02aca585 527 if (ret) {
6d8f6eeb 528 IWL_ERR(trans, "Scheduler BC Table allocation failed\n");
02aca585
EG
529 goto error;
530 }
531
532 /* Alloc keep-warm buffer */
9d6b2cb1 533 ret = iwlagn_alloc_dma_ptr(trans, &trans_pcie->kw, IWL_KW_SIZE);
02aca585 534 if (ret) {
6d8f6eeb 535 IWL_ERR(trans, "Keep Warm allocation failed\n");
02aca585
EG
536 goto error;
537 }
538
8ad71bef 539 trans_pcie->txq = kzalloc(sizeof(struct iwl_tx_queue) *
fd656935 540 hw_params(trans).max_txq_num, GFP_KERNEL);
8ad71bef 541 if (!trans_pcie->txq) {
6d8f6eeb 542 IWL_ERR(trans, "Not enough memory for txq\n");
02aca585
EG
543 ret = ENOMEM;
544 goto error;
545 }
546
547 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
6d8f6eeb
EG
548 for (txq_id = 0; txq_id < hw_params(trans).max_txq_num; txq_id++) {
549 slots_num = (txq_id == trans->shrd->cmd_queue) ?
02aca585 550 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
8ad71bef
EG
551 ret = iwl_trans_txq_alloc(trans, &trans_pcie->txq[txq_id],
552 slots_num, txq_id);
02aca585 553 if (ret) {
6d8f6eeb 554 IWL_ERR(trans, "Tx %d queue alloc failed\n", txq_id);
02aca585
EG
555 goto error;
556 }
557 }
558
559 return 0;
560
561error:
ae2c30bf 562 iwl_trans_pcie_tx_free(trans);
02aca585
EG
563
564 return ret;
565}
6d8f6eeb 566static int iwl_tx_init(struct iwl_trans *trans)
02aca585
EG
567{
568 int ret;
569 int txq_id, slots_num;
570 unsigned long flags;
571 bool alloc = false;
8ad71bef 572 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
02aca585 573
8ad71bef 574 if (!trans_pcie->txq) {
6d8f6eeb 575 ret = iwl_trans_tx_alloc(trans);
02aca585
EG
576 if (ret)
577 goto error;
578 alloc = true;
579 }
580
6d8f6eeb 581 spin_lock_irqsave(&trans->shrd->lock, flags);
02aca585
EG
582
583 /* Turn off all Tx DMA fifos */
83ed9015 584 iwl_write_prph(bus(trans), SCD_TXFACT, 0);
02aca585
EG
585
586 /* Tell NIC where to find the "keep warm" buffer */
83ed9015
EG
587 iwl_write_direct32(bus(trans), FH_KW_MEM_ADDR_REG,
588 trans_pcie->kw.dma >> 4);
02aca585 589
6d8f6eeb 590 spin_unlock_irqrestore(&trans->shrd->lock, flags);
02aca585
EG
591
592 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
6d8f6eeb
EG
593 for (txq_id = 0; txq_id < hw_params(trans).max_txq_num; txq_id++) {
594 slots_num = (txq_id == trans->shrd->cmd_queue) ?
02aca585 595 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
8ad71bef
EG
596 ret = iwl_trans_txq_init(trans, &trans_pcie->txq[txq_id],
597 slots_num, txq_id);
02aca585 598 if (ret) {
6d8f6eeb 599 IWL_ERR(trans, "Tx %d queue init failed\n", txq_id);
02aca585
EG
600 goto error;
601 }
602 }
603
604 return 0;
605error:
606 /*Upon error, free only if we allocated something */
607 if (alloc)
ae2c30bf 608 iwl_trans_pcie_tx_free(trans);
02aca585
EG
609 return ret;
610}
611
3e10caeb 612static void iwl_set_pwr_vmain(struct iwl_trans *trans)
392f8b78
EG
613{
614/*
615 * (for documentation purposes)
616 * to set power to V_AUX, do:
617
618 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
83ed9015 619 iwl_set_bits_mask_prph(bus(trans), APMG_PS_CTRL_REG,
392f8b78
EG
620 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
621 ~APMG_PS_CTRL_MSK_PWR_SRC);
622 */
623
83ed9015 624 iwl_set_bits_mask_prph(bus(trans), APMG_PS_CTRL_REG,
392f8b78
EG
625 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
626 ~APMG_PS_CTRL_MSK_PWR_SRC);
627}
628
6d8f6eeb 629static int iwl_nic_init(struct iwl_trans *trans)
392f8b78
EG
630{
631 unsigned long flags;
632
633 /* nic_init */
6d8f6eeb 634 spin_lock_irqsave(&trans->shrd->lock, flags);
3e10caeb 635 iwl_apm_init(priv(trans));
392f8b78
EG
636
637 /* Set interrupt coalescing calibration timer to default (512 usecs) */
83ed9015
EG
638 iwl_write8(bus(trans), CSR_INT_COALESCING,
639 IWL_HOST_INT_CALIB_TIMEOUT_DEF);
392f8b78 640
6d8f6eeb 641 spin_unlock_irqrestore(&trans->shrd->lock, flags);
392f8b78 642
3e10caeb 643 iwl_set_pwr_vmain(trans);
392f8b78 644
7a10e3e4 645 iwl_nic_config(priv(trans));
392f8b78
EG
646
647 /* Allocate the RX queue, or reset if it is already allocated */
6d8f6eeb 648 iwl_rx_init(trans);
392f8b78
EG
649
650 /* Allocate or reset and init all Tx and Command queues */
6d8f6eeb 651 if (iwl_tx_init(trans))
392f8b78
EG
652 return -ENOMEM;
653
fd656935 654 if (hw_params(trans).shadow_reg_enable) {
392f8b78 655 /* enable shadow regs in HW */
83ed9015 656 iwl_set_bit(bus(trans), CSR_MAC_SHADOW_REG_CTRL,
392f8b78
EG
657 0x800FFFFF);
658 }
659
6d8f6eeb 660 set_bit(STATUS_INIT, &trans->shrd->status);
392f8b78
EG
661
662 return 0;
663}
664
665#define HW_READY_TIMEOUT (50)
666
667/* Note: returns poll_bit return value, which is >= 0 if success */
6d8f6eeb 668static int iwl_set_hw_ready(struct iwl_trans *trans)
392f8b78
EG
669{
670 int ret;
671
83ed9015 672 iwl_set_bit(bus(trans), CSR_HW_IF_CONFIG_REG,
392f8b78
EG
673 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
674
675 /* See if we got it */
83ed9015 676 ret = iwl_poll_bit(bus(trans), CSR_HW_IF_CONFIG_REG,
392f8b78
EG
677 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
678 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
679 HW_READY_TIMEOUT);
680
6d8f6eeb 681 IWL_DEBUG_INFO(trans, "hardware%s ready\n", ret < 0 ? " not" : "");
392f8b78
EG
682 return ret;
683}
684
685/* Note: returns standard 0/-ERROR code */
6d8f6eeb 686static int iwl_trans_pcie_prepare_card_hw(struct iwl_trans *trans)
392f8b78
EG
687{
688 int ret;
689
6d8f6eeb 690 IWL_DEBUG_INFO(trans, "iwl_trans_prepare_card_hw enter\n");
392f8b78 691
6d8f6eeb 692 ret = iwl_set_hw_ready(trans);
392f8b78
EG
693 if (ret >= 0)
694 return 0;
695
696 /* If HW is not ready, prepare the conditions to check again */
83ed9015 697 iwl_set_bit(bus(trans), CSR_HW_IF_CONFIG_REG,
392f8b78
EG
698 CSR_HW_IF_CONFIG_REG_PREPARE);
699
83ed9015 700 ret = iwl_poll_bit(bus(trans), CSR_HW_IF_CONFIG_REG,
392f8b78
EG
701 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
702 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
703
704 if (ret < 0)
705 return ret;
706
707 /* HW should be ready by now, check again. */
6d8f6eeb 708 ret = iwl_set_hw_ready(trans);
392f8b78
EG
709 if (ret >= 0)
710 return 0;
711 return ret;
712}
713
e13c0c59
EG
714#define IWL_AC_UNSET -1
715
716struct queue_to_fifo_ac {
717 s8 fifo, ac;
718};
719
720static const struct queue_to_fifo_ac iwlagn_default_queue_to_tx_fifo[] = {
721 { IWL_TX_FIFO_VO, IEEE80211_AC_VO, },
722 { IWL_TX_FIFO_VI, IEEE80211_AC_VI, },
723 { IWL_TX_FIFO_BE, IEEE80211_AC_BE, },
724 { IWL_TX_FIFO_BK, IEEE80211_AC_BK, },
725 { IWLAGN_CMD_FIFO_NUM, IWL_AC_UNSET, },
726 { IWL_TX_FIFO_UNUSED, IWL_AC_UNSET, },
727 { IWL_TX_FIFO_UNUSED, IWL_AC_UNSET, },
728 { IWL_TX_FIFO_UNUSED, IWL_AC_UNSET, },
729 { IWL_TX_FIFO_UNUSED, IWL_AC_UNSET, },
730 { IWL_TX_FIFO_UNUSED, IWL_AC_UNSET, },
731 { IWL_TX_FIFO_UNUSED, IWL_AC_UNSET, },
732};
733
734static const struct queue_to_fifo_ac iwlagn_ipan_queue_to_tx_fifo[] = {
735 { IWL_TX_FIFO_VO, IEEE80211_AC_VO, },
736 { IWL_TX_FIFO_VI, IEEE80211_AC_VI, },
737 { IWL_TX_FIFO_BE, IEEE80211_AC_BE, },
738 { IWL_TX_FIFO_BK, IEEE80211_AC_BK, },
739 { IWL_TX_FIFO_BK_IPAN, IEEE80211_AC_BK, },
740 { IWL_TX_FIFO_BE_IPAN, IEEE80211_AC_BE, },
741 { IWL_TX_FIFO_VI_IPAN, IEEE80211_AC_VI, },
742 { IWL_TX_FIFO_VO_IPAN, IEEE80211_AC_VO, },
743 { IWL_TX_FIFO_BE_IPAN, 2, },
744 { IWLAGN_CMD_FIFO_NUM, IWL_AC_UNSET, },
745 { IWL_TX_FIFO_AUX, IWL_AC_UNSET, },
746};
747
748static const u8 iwlagn_bss_ac_to_fifo[] = {
749 IWL_TX_FIFO_VO,
750 IWL_TX_FIFO_VI,
751 IWL_TX_FIFO_BE,
752 IWL_TX_FIFO_BK,
753};
754static const u8 iwlagn_bss_ac_to_queue[] = {
755 0, 1, 2, 3,
756};
757static const u8 iwlagn_pan_ac_to_fifo[] = {
758 IWL_TX_FIFO_VO_IPAN,
759 IWL_TX_FIFO_VI_IPAN,
760 IWL_TX_FIFO_BE_IPAN,
761 IWL_TX_FIFO_BK_IPAN,
762};
763static const u8 iwlagn_pan_ac_to_queue[] = {
764 7, 6, 5, 4,
765};
766
6d8f6eeb 767static int iwl_trans_pcie_start_device(struct iwl_trans *trans)
392f8b78
EG
768{
769 int ret;
e13c0c59
EG
770 struct iwl_trans_pcie *trans_pcie =
771 IWL_TRANS_GET_PCIE_TRANS(trans);
392f8b78 772
c91bd124 773 trans->shrd->ucode_owner = IWL_OWNERSHIP_DRIVER;
e13c0c59
EG
774 trans_pcie->ac_to_queue[IWL_RXON_CTX_BSS] = iwlagn_bss_ac_to_queue;
775 trans_pcie->ac_to_queue[IWL_RXON_CTX_PAN] = iwlagn_pan_ac_to_queue;
776
777 trans_pcie->ac_to_fifo[IWL_RXON_CTX_BSS] = iwlagn_bss_ac_to_fifo;
778 trans_pcie->ac_to_fifo[IWL_RXON_CTX_PAN] = iwlagn_pan_ac_to_fifo;
779
780 trans_pcie->mcast_queue[IWL_RXON_CTX_BSS] = 0;
781 trans_pcie->mcast_queue[IWL_RXON_CTX_PAN] = IWL_IPAN_MCAST_QUEUE;
392f8b78 782
c91bd124 783 if ((hw_params(trans).sku & EEPROM_SKU_CAP_AMT_ENABLE) &&
6d8f6eeb
EG
784 iwl_trans_pcie_prepare_card_hw(trans)) {
785 IWL_WARN(trans, "Exit HW not ready\n");
392f8b78
EG
786 return -EIO;
787 }
788
789 /* If platform's RF_KILL switch is NOT set to KILL */
83ed9015 790 if (iwl_read32(bus(trans), CSR_GP_CNTRL) &
392f8b78 791 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
6d8f6eeb 792 clear_bit(STATUS_RF_KILL_HW, &trans->shrd->status);
392f8b78 793 else
6d8f6eeb 794 set_bit(STATUS_RF_KILL_HW, &trans->shrd->status);
392f8b78 795
6d8f6eeb 796 if (iwl_is_rfkill(trans->shrd)) {
3e10caeb 797 iwl_set_hw_rfkill_state(priv(trans), true);
6d8f6eeb 798 iwl_enable_interrupts(trans);
392f8b78
EG
799 return -ERFKILL;
800 }
801
83ed9015 802 iwl_write32(bus(trans), CSR_INT, 0xFFFFFFFF);
392f8b78 803
6d8f6eeb 804 ret = iwl_nic_init(trans);
392f8b78 805 if (ret) {
6d8f6eeb 806 IWL_ERR(trans, "Unable to init nic\n");
392f8b78
EG
807 return ret;
808 }
809
810 /* make sure rfkill handshake bits are cleared */
83ed9015
EG
811 iwl_write32(bus(trans), CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
812 iwl_write32(bus(trans), CSR_UCODE_DRV_GP1_CLR,
392f8b78
EG
813 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
814
815 /* clear (again), then enable host interrupts */
83ed9015 816 iwl_write32(bus(trans), CSR_INT, 0xFFFFFFFF);
6d8f6eeb 817 iwl_enable_interrupts(trans);
392f8b78
EG
818
819 /* really make sure rfkill handshake bits are cleared */
83ed9015
EG
820 iwl_write32(bus(trans), CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
821 iwl_write32(bus(trans), CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
392f8b78
EG
822
823 return 0;
824}
825
b3c2ce13
EG
826/*
827 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
10b15e6f 828 * must be called under priv->shrd->lock and mac access
b3c2ce13 829 */
6d8f6eeb 830static void iwl_trans_txq_set_sched(struct iwl_trans *trans, u32 mask)
b3c2ce13 831{
83ed9015 832 iwl_write_prph(bus(trans), SCD_TXFACT, mask);
b3c2ce13
EG
833}
834
6d8f6eeb 835static void iwl_trans_pcie_tx_start(struct iwl_trans *trans)
b3c2ce13
EG
836{
837 const struct queue_to_fifo_ac *queue_to_fifo;
105183b1
EG
838 struct iwl_trans_pcie *trans_pcie =
839 IWL_TRANS_GET_PCIE_TRANS(trans);
b3c2ce13
EG
840 u32 a;
841 unsigned long flags;
842 int i, chan;
843 u32 reg_val;
844
105183b1 845 spin_lock_irqsave(&trans->shrd->lock, flags);
b3c2ce13 846
83ed9015
EG
847 trans_pcie->scd_base_addr =
848 iwl_read_prph(bus(trans), SCD_SRAM_BASE_ADDR);
105183b1 849 a = trans_pcie->scd_base_addr + SCD_CONTEXT_MEM_LOWER_BOUND;
b3c2ce13 850 /* reset conext data memory */
105183b1 851 for (; a < trans_pcie->scd_base_addr + SCD_CONTEXT_MEM_UPPER_BOUND;
b3c2ce13 852 a += 4)
83ed9015 853 iwl_write_targ_mem(bus(trans), a, 0);
b3c2ce13 854 /* reset tx status memory */
105183b1 855 for (; a < trans_pcie->scd_base_addr + SCD_TX_STTS_MEM_UPPER_BOUND;
b3c2ce13 856 a += 4)
83ed9015 857 iwl_write_targ_mem(bus(trans), a, 0);
105183b1 858 for (; a < trans_pcie->scd_base_addr +
c91bd124 859 SCD_TRANS_TBL_OFFSET_QUEUE(hw_params(trans).max_txq_num);
d6189124 860 a += 4)
83ed9015 861 iwl_write_targ_mem(bus(trans), a, 0);
b3c2ce13 862
83ed9015 863 iwl_write_prph(bus(trans), SCD_DRAM_BASE_ADDR,
105183b1 864 trans_pcie->scd_bc_tbls.dma >> 10);
b3c2ce13
EG
865
866 /* Enable DMA channel */
867 for (chan = 0; chan < FH_TCSR_CHNL_NUM ; chan++)
83ed9015 868 iwl_write_direct32(bus(trans), FH_TCSR_CHNL_TX_CONFIG_REG(chan),
b3c2ce13
EG
869 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
870 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
871
872 /* Update FH chicken bits */
83ed9015
EG
873 reg_val = iwl_read_direct32(bus(trans), FH_TX_CHICKEN_BITS_REG);
874 iwl_write_direct32(bus(trans), FH_TX_CHICKEN_BITS_REG,
b3c2ce13
EG
875 reg_val | FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
876
83ed9015 877 iwl_write_prph(bus(trans), SCD_QUEUECHAIN_SEL,
c91bd124 878 SCD_QUEUECHAIN_SEL_ALL(trans));
83ed9015 879 iwl_write_prph(bus(trans), SCD_AGGR_SEL, 0);
b3c2ce13
EG
880
881 /* initiate the queues */
c91bd124 882 for (i = 0; i < hw_params(trans).max_txq_num; i++) {
83ed9015
EG
883 iwl_write_prph(bus(trans), SCD_QUEUE_RDPTR(i), 0);
884 iwl_write_direct32(bus(trans), HBUS_TARG_WRPTR, 0 | (i << 8));
885 iwl_write_targ_mem(bus(trans), trans_pcie->scd_base_addr +
b3c2ce13 886 SCD_CONTEXT_QUEUE_OFFSET(i), 0);
83ed9015 887 iwl_write_targ_mem(bus(trans), trans_pcie->scd_base_addr +
b3c2ce13
EG
888 SCD_CONTEXT_QUEUE_OFFSET(i) +
889 sizeof(u32),
890 ((SCD_WIN_SIZE <<
891 SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
892 SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
893 ((SCD_FRAME_LIMIT <<
894 SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
895 SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
896 }
897
83ed9015 898 iwl_write_prph(bus(trans), SCD_INTERRUPT_MASK,
105183b1 899 IWL_MASK(0, hw_params(trans).max_txq_num));
b3c2ce13
EG
900
901 /* Activate all Tx DMA/FIFO channels */
6d8f6eeb 902 iwl_trans_txq_set_sched(trans, IWL_MASK(0, 7));
b3c2ce13
EG
903
904 /* map queues to FIFOs */
7a10e3e4 905 if (trans->shrd->valid_contexts != BIT(IWL_RXON_CTX_BSS))
b3c2ce13
EG
906 queue_to_fifo = iwlagn_ipan_queue_to_tx_fifo;
907 else
908 queue_to_fifo = iwlagn_default_queue_to_tx_fifo;
909
6d8f6eeb 910 iwl_trans_set_wr_ptrs(trans, trans->shrd->cmd_queue, 0);
b3c2ce13
EG
911
912 /* make sure all queue are not stopped */
8ad71bef
EG
913 memset(&trans_pcie->queue_stopped[0], 0,
914 sizeof(trans_pcie->queue_stopped));
b3c2ce13 915 for (i = 0; i < 4; i++)
8ad71bef 916 atomic_set(&trans_pcie->queue_stop_count[i], 0);
b3c2ce13
EG
917
918 /* reset to 0 to enable all the queue first */
8ad71bef 919 trans_pcie->txq_ctx_active_msk = 0;
b3c2ce13 920
effcea16 921 BUILD_BUG_ON(ARRAY_SIZE(iwlagn_default_queue_to_tx_fifo) <
72c04ce0 922 IWLAGN_FIRST_AMPDU_QUEUE);
effcea16 923 BUILD_BUG_ON(ARRAY_SIZE(iwlagn_ipan_queue_to_tx_fifo) <
72c04ce0 924 IWLAGN_FIRST_AMPDU_QUEUE);
b3c2ce13 925
72c04ce0 926 for (i = 0; i < IWLAGN_FIRST_AMPDU_QUEUE; i++) {
b3c2ce13
EG
927 int fifo = queue_to_fifo[i].fifo;
928 int ac = queue_to_fifo[i].ac;
929
8ad71bef 930 iwl_txq_ctx_activate(trans_pcie, i);
b3c2ce13
EG
931
932 if (fifo == IWL_TX_FIFO_UNUSED)
933 continue;
934
935 if (ac != IWL_AC_UNSET)
8ad71bef
EG
936 iwl_set_swq_id(&trans_pcie->txq[i], ac, i);
937 iwl_trans_tx_queue_set_status(trans, &trans_pcie->txq[i],
938 fifo, 0);
b3c2ce13
EG
939 }
940
6d8f6eeb 941 spin_unlock_irqrestore(&trans->shrd->lock, flags);
b3c2ce13
EG
942
943 /* Enable L1-Active */
83ed9015 944 iwl_clear_bits_prph(bus(trans), APMG_PCIDEV_STT_REG,
b3c2ce13
EG
945 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
946}
947
c170b867
EG
948/**
949 * iwlagn_txq_ctx_stop - Stop all Tx DMA channels
950 */
6d8f6eeb 951static int iwl_trans_tx_stop(struct iwl_trans *trans)
c170b867
EG
952{
953 int ch, txq_id;
954 unsigned long flags;
8ad71bef 955 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
c170b867
EG
956
957 /* Turn off all Tx DMA fifos */
6d8f6eeb 958 spin_lock_irqsave(&trans->shrd->lock, flags);
c170b867 959
6d8f6eeb 960 iwl_trans_txq_set_sched(trans, 0);
c170b867
EG
961
962 /* Stop each Tx DMA channel, and wait for it to be idle */
02f6f659 963 for (ch = 0; ch < FH_TCSR_CHNL_NUM; ch++) {
83ed9015 964 iwl_write_direct32(bus(trans),
6d8f6eeb 965 FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
83ed9015 966 if (iwl_poll_direct_bit(bus(trans), FH_TSSR_TX_STATUS_REG,
c170b867
EG
967 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch),
968 1000))
6d8f6eeb 969 IWL_ERR(trans, "Failing on timeout while stopping"
c170b867 970 " DMA channel %d [0x%08x]", ch,
83ed9015 971 iwl_read_direct32(bus(trans),
6d8f6eeb 972 FH_TSSR_TX_STATUS_REG));
c170b867 973 }
6d8f6eeb 974 spin_unlock_irqrestore(&trans->shrd->lock, flags);
c170b867 975
8ad71bef 976 if (!trans_pcie->txq) {
6d8f6eeb 977 IWL_WARN(trans, "Stopping tx queues that aren't allocated...");
c170b867
EG
978 return 0;
979 }
980
981 /* Unmap DMA from host system and free skb's */
6d8f6eeb
EG
982 for (txq_id = 0; txq_id < hw_params(trans).max_txq_num; txq_id++)
983 iwl_tx_queue_unmap(trans, txq_id);
c170b867
EG
984
985 return 0;
986}
987
ae2c30bf
EG
988static void iwl_trans_pcie_disable_sync_irq(struct iwl_trans *trans)
989{
990 unsigned long flags;
991 struct iwl_trans_pcie *trans_pcie =
992 IWL_TRANS_GET_PCIE_TRANS(trans);
993
994 spin_lock_irqsave(&trans->shrd->lock, flags);
995 iwl_disable_interrupts(trans);
996 spin_unlock_irqrestore(&trans->shrd->lock, flags);
997
998 /* wait to make sure we flush pending tasklet*/
999 synchronize_irq(bus(trans)->irq);
1000 tasklet_kill(&trans_pcie->irq_tasklet);
1001}
1002
6d8f6eeb 1003static void iwl_trans_pcie_stop_device(struct iwl_trans *trans)
ab6cf8e8 1004{
ab6cf8e8 1005 /* stop and reset the on-board processor */
83ed9015 1006 iwl_write32(bus(trans), CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
ab6cf8e8
EG
1007
1008 /* tell the device to stop sending interrupts */
ae2c30bf 1009 iwl_trans_pcie_disable_sync_irq(trans);
ab6cf8e8
EG
1010
1011 /* device going down, Stop using ICT table */
6d8f6eeb 1012 iwl_disable_ict(trans);
ab6cf8e8
EG
1013
1014 /*
1015 * If a HW restart happens during firmware loading,
1016 * then the firmware loading might call this function
1017 * and later it might be called again due to the
1018 * restart. So don't process again if the device is
1019 * already dead.
1020 */
6d8f6eeb
EG
1021 if (test_bit(STATUS_DEVICE_ENABLED, &trans->shrd->status)) {
1022 iwl_trans_tx_stop(trans);
1023 iwl_trans_rx_stop(trans);
ab6cf8e8
EG
1024
1025 /* Power-down device's busmaster DMA clocks */
83ed9015 1026 iwl_write_prph(bus(trans), APMG_CLK_DIS_REG,
ab6cf8e8
EG
1027 APMG_CLK_VAL_DMA_CLK_RQT);
1028 udelay(5);
1029 }
1030
1031 /* Make sure (redundant) we've released our request to stay awake */
83ed9015 1032 iwl_clear_bit(bus(trans), CSR_GP_CNTRL,
6d8f6eeb 1033 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
ab6cf8e8
EG
1034
1035 /* Stop the device, and put it in low power state */
6d8f6eeb 1036 iwl_apm_stop(priv(trans));
ab6cf8e8
EG
1037}
1038
e13c0c59 1039static int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,
14991a9d
EG
1040 struct iwl_device_cmd *dev_cmd, enum iwl_rxon_context_id ctx,
1041 u8 sta_id)
47c1b496 1042{
e13c0c59
EG
1043 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1044 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1045 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
dfa2bdba 1046 struct iwl_tx_cmd *tx_cmd = &dev_cmd->cmd.tx;
47c1b496 1047 struct iwl_cmd_meta *out_meta;
e13c0c59
EG
1048 struct iwl_tx_queue *txq;
1049 struct iwl_queue *q;
47c1b496
EG
1050
1051 dma_addr_t phys_addr = 0;
1052 dma_addr_t txcmd_phys;
1053 dma_addr_t scratch_phys;
1054 u16 len, firstlen, secondlen;
e13c0c59 1055 u16 seq_number = 0;
47c1b496 1056 u8 wait_write_ptr = 0;
e13c0c59
EG
1057 u8 txq_id;
1058 u8 tid = 0;
1059 bool is_agg = false;
1060 __le16 fc = hdr->frame_control;
47c1b496
EG
1061 u8 hdr_len = ieee80211_hdrlen(fc);
1062
e13c0c59
EG
1063 /*
1064 * Send this frame after DTIM -- there's a special queue
1065 * reserved for this for contexts that support AP mode.
1066 */
1067 if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) {
1068 txq_id = trans_pcie->mcast_queue[ctx];
1069
1070 /*
1071 * The microcode will clear the more data
1072 * bit in the last frame it transmits.
1073 */
1074 hdr->frame_control |=
1075 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1076 } else if (info->flags & IEEE80211_TX_CTL_TX_OFFCHAN)
1077 txq_id = IWL_AUX_QUEUE;
1078 else
1079 txq_id =
1080 trans_pcie->ac_to_queue[ctx][skb_get_queue_mapping(skb)];
1081
1082 if (ieee80211_is_data_qos(fc)) {
1083 u8 *qc = NULL;
1084 struct iwl_tid_data *tid_data;
1085 qc = ieee80211_get_qos_ctl(hdr);
1086 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
1087 tid_data = &trans->shrd->tid_data[sta_id][tid];
1088
1089 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
1090 return -1;
1091
1092 seq_number = tid_data->seq_number;
1093 seq_number &= IEEE80211_SCTL_SEQ;
1094 hdr->seq_ctrl = hdr->seq_ctrl &
1095 cpu_to_le16(IEEE80211_SCTL_FRAG);
1096 hdr->seq_ctrl |= cpu_to_le16(seq_number);
1097 seq_number += 0x10;
1098 /* aggregation is on for this <sta,tid> */
1099 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
1100 tid_data->agg.state == IWL_AGG_ON) {
1101 txq_id = tid_data->agg.txq_id;
1102 is_agg = true;
1103 }
1104 }
1105
8ad71bef 1106 txq = &trans_pcie->txq[txq_id];
e13c0c59
EG
1107 q = &txq->q;
1108
47c1b496 1109 /* Set up driver data for this TFD */
2c452297 1110 txq->skbs[q->write_ptr] = skb;
dfa2bdba
EG
1111 txq->cmd[q->write_ptr] = dev_cmd;
1112
1113 dev_cmd->hdr.cmd = REPLY_TX;
1114 dev_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
1115 INDEX_TO_SEQ(q->write_ptr)));
47c1b496
EG
1116
1117 /* Set up first empty entry in queue's array of Tx/cmd buffers */
1118 out_meta = &txq->meta[q->write_ptr];
1119
1120 /*
1121 * Use the first empty entry in this queue's command buffer array
1122 * to contain the Tx command and MAC header concatenated together
1123 * (payload data will be in another buffer).
1124 * Size of this varies, due to varying MAC header length.
1125 * If end is not dword aligned, we'll have 2 extra bytes at the end
1126 * of the MAC header (device reads on dword boundaries).
1127 * We'll tell device about this padding later.
1128 */
1129 len = sizeof(struct iwl_tx_cmd) +
1130 sizeof(struct iwl_cmd_header) + hdr_len;
1131 firstlen = (len + 3) & ~3;
1132
1133 /* Tell NIC about any 2-byte padding after MAC header */
1134 if (firstlen != len)
1135 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
1136
1137 /* Physical address of this Tx command's header (not MAC header!),
1138 * within command buffer array. */
e13c0c59 1139 txcmd_phys = dma_map_single(bus(trans)->dev,
47c1b496
EG
1140 &dev_cmd->hdr, firstlen,
1141 DMA_BIDIRECTIONAL);
e13c0c59 1142 if (unlikely(dma_mapping_error(bus(trans)->dev, txcmd_phys)))
47c1b496
EG
1143 return -1;
1144 dma_unmap_addr_set(out_meta, mapping, txcmd_phys);
1145 dma_unmap_len_set(out_meta, len, firstlen);
1146
1147 if (!ieee80211_has_morefrags(fc)) {
1148 txq->need_update = 1;
1149 } else {
1150 wait_write_ptr = 1;
1151 txq->need_update = 0;
1152 }
1153
1154 /* Set up TFD's 2nd entry to point directly to remainder of skb,
1155 * if any (802.11 null frames have no payload). */
1156 secondlen = skb->len - hdr_len;
1157 if (secondlen > 0) {
e13c0c59 1158 phys_addr = dma_map_single(bus(trans)->dev, skb->data + hdr_len,
47c1b496 1159 secondlen, DMA_TO_DEVICE);
e13c0c59
EG
1160 if (unlikely(dma_mapping_error(bus(trans)->dev, phys_addr))) {
1161 dma_unmap_single(bus(trans)->dev,
47c1b496
EG
1162 dma_unmap_addr(out_meta, mapping),
1163 dma_unmap_len(out_meta, len),
1164 DMA_BIDIRECTIONAL);
1165 return -1;
1166 }
1167 }
1168
1169 /* Attach buffers to TFD */
e13c0c59 1170 iwlagn_txq_attach_buf_to_tfd(trans, txq, txcmd_phys, firstlen, 1);
47c1b496 1171 if (secondlen > 0)
e13c0c59 1172 iwlagn_txq_attach_buf_to_tfd(trans, txq, phys_addr,
47c1b496
EG
1173 secondlen, 0);
1174
1175 scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
1176 offsetof(struct iwl_tx_cmd, scratch);
1177
1178 /* take back ownership of DMA buffer to enable update */
e13c0c59 1179 dma_sync_single_for_cpu(bus(trans)->dev, txcmd_phys, firstlen,
47c1b496
EG
1180 DMA_BIDIRECTIONAL);
1181 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
1182 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
1183
e13c0c59 1184 IWL_DEBUG_TX(trans, "sequence nr = 0X%x\n",
47c1b496 1185 le16_to_cpu(dev_cmd->hdr.sequence));
e13c0c59
EG
1186 IWL_DEBUG_TX(trans, "tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
1187 iwl_print_hex_dump(trans, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd));
1188 iwl_print_hex_dump(trans, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len);
47c1b496
EG
1189
1190 /* Set up entry for this TFD in Tx byte-count array */
e13c0c59
EG
1191 if (is_agg)
1192 iwl_trans_txq_update_byte_cnt_tbl(trans, txq,
47c1b496
EG
1193 le16_to_cpu(tx_cmd->len));
1194
e13c0c59 1195 dma_sync_single_for_device(bus(trans)->dev, txcmd_phys, firstlen,
47c1b496
EG
1196 DMA_BIDIRECTIONAL);
1197
e13c0c59 1198 trace_iwlwifi_dev_tx(priv(trans),
47c1b496
EG
1199 &((struct iwl_tfd *)txq->tfds)[txq->q.write_ptr],
1200 sizeof(struct iwl_tfd),
1201 &dev_cmd->hdr, firstlen,
1202 skb->data + hdr_len, secondlen);
1203
1204 /* Tell device the write index *just past* this latest filled TFD */
1205 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
e13c0c59
EG
1206 iwl_txq_update_write_ptr(trans, txq);
1207
1208 if (ieee80211_is_data_qos(fc)) {
1209 trans->shrd->tid_data[sta_id][tid].tfds_in_queue++;
1210 if (!ieee80211_has_morefrags(fc))
1211 trans->shrd->tid_data[sta_id][tid].seq_number =
1212 seq_number;
1213 }
47c1b496
EG
1214
1215 /*
1216 * At this point the frame is "transmitted" successfully
1217 * and we will get a TX status notification eventually,
1218 * regardless of the value of ret. "ret" only indicates
1219 * whether or not we should update the write pointer.
1220 */
a0eaad71 1221 if (iwl_queue_space(q) < q->high_mark) {
47c1b496
EG
1222 if (wait_write_ptr) {
1223 txq->need_update = 1;
e13c0c59 1224 iwl_txq_update_write_ptr(trans, txq);
47c1b496 1225 } else {
e20d4341 1226 iwl_stop_queue(trans, txq);
47c1b496
EG
1227 }
1228 }
1229 return 0;
1230}
1231
6d8f6eeb 1232static void iwl_trans_pcie_kick_nic(struct iwl_trans *trans)
56d90f4c
EG
1233{
1234 /* Remove all resets to allow NIC to operate */
83ed9015 1235 iwl_write32(bus(trans), CSR_RESET, 0);
56d90f4c
EG
1236}
1237
e6bb4c9c
EG
1238static int iwl_trans_pcie_request_irq(struct iwl_trans *trans)
1239{
5a878bf6
EG
1240 struct iwl_trans_pcie *trans_pcie =
1241 IWL_TRANS_GET_PCIE_TRANS(trans);
e6bb4c9c
EG
1242 int err;
1243
0c325769
EG
1244 trans_pcie->inta_mask = CSR_INI_SET_MASK;
1245
1246 tasklet_init(&trans_pcie->irq_tasklet, (void (*)(unsigned long))
1247 iwl_irq_tasklet, (unsigned long)trans);
e6bb4c9c 1248
0c325769 1249 iwl_alloc_isr_ict(trans);
e6bb4c9c
EG
1250
1251 err = request_irq(bus(trans)->irq, iwl_isr_ict, IRQF_SHARED,
0c325769 1252 DRV_NAME, trans);
e6bb4c9c 1253 if (err) {
0c325769
EG
1254 IWL_ERR(trans, "Error allocating IRQ %d\n", bus(trans)->irq);
1255 iwl_free_isr_ict(trans);
e6bb4c9c
EG
1256 return err;
1257 }
1258
5a878bf6 1259 INIT_WORK(&trans_pcie->rx_replenish, iwl_bg_rx_replenish);
e6bb4c9c
EG
1260 return 0;
1261}
1262
464021ff
EG
1263static int iwlagn_txq_check_empty(struct iwl_trans *trans,
1264 int sta_id, u8 tid, int txq_id)
a0eaad71 1265{
8ad71bef
EG
1266 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1267 struct iwl_queue *q = &trans_pcie->txq[txq_id].q;
464021ff
EG
1268 struct iwl_tid_data *tid_data = &trans->shrd->tid_data[sta_id][tid];
1269
1270 lockdep_assert_held(&trans->shrd->sta_lock);
1271
1272 switch (trans->shrd->tid_data[sta_id][tid].agg.state) {
1273 case IWL_EMPTYING_HW_QUEUE_DELBA:
1274 /* We are reclaiming the last packet of the */
1275 /* aggregated HW queue */
1276 if ((txq_id == tid_data->agg.txq_id) &&
1277 (q->read_ptr == q->write_ptr)) {
1278 IWL_DEBUG_HT(trans,
1279 "HW queue empty: continue DELBA flow\n");
7f01d567 1280 iwl_trans_pcie_txq_agg_disable(trans, txq_id);
464021ff
EG
1281 tid_data->agg.state = IWL_AGG_OFF;
1282 iwl_stop_tx_ba_trans_ready(priv(trans),
1283 NUM_IWL_RXON_CTX,
1284 sta_id, tid);
8ad71bef 1285 iwl_wake_queue(trans, &trans_pcie->txq[txq_id]);
464021ff
EG
1286 }
1287 break;
1288 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1289 /* We are reclaiming the last packet of the queue */
1290 if (tid_data->tfds_in_queue == 0) {
1291 IWL_DEBUG_HT(trans,
1292 "HW queue empty: continue ADDBA flow\n");
1293 tid_data->agg.state = IWL_AGG_ON;
1294 iwl_start_tx_ba_trans_ready(priv(trans),
1295 NUM_IWL_RXON_CTX,
1296 sta_id, tid);
1297 }
1298 break;
21023e26
EG
1299 default:
1300 break;
464021ff
EG
1301 }
1302
1303 return 0;
1304}
1305
1306static void iwl_free_tfds_in_queue(struct iwl_trans *trans,
1307 int sta_id, int tid, int freed)
1308{
1309 lockdep_assert_held(&trans->shrd->sta_lock);
1310
1311 if (trans->shrd->tid_data[sta_id][tid].tfds_in_queue >= freed)
1312 trans->shrd->tid_data[sta_id][tid].tfds_in_queue -= freed;
1313 else {
1314 IWL_DEBUG_TX(trans, "free more than tfds_in_queue (%u:%d)\n",
1315 trans->shrd->tid_data[sta_id][tid].tfds_in_queue,
1316 freed);
1317 trans->shrd->tid_data[sta_id][tid].tfds_in_queue = 0;
1318 }
1319}
1320
1321static void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int sta_id, int tid,
1322 int txq_id, int ssn, u32 status,
1323 struct sk_buff_head *skbs)
1324{
8ad71bef
EG
1325 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1326 struct iwl_tx_queue *txq = &trans_pcie->txq[txq_id];
21023e26 1327 enum iwl_agg_state agg_state;
a0eaad71
EG
1328 /* n_bd is usually 256 => n_bd - 1 = 0xff */
1329 int tfd_num = ssn & (txq->q.n_bd - 1);
464021ff 1330 int freed = 0;
a0eaad71
EG
1331 bool cond;
1332
8ad71bef
EG
1333 txq->time_stamp = jiffies;
1334
a0eaad71
EG
1335 if (txq->sched_retry) {
1336 agg_state =
464021ff 1337 trans->shrd->tid_data[txq->sta_id][txq->tid].agg.state;
a0eaad71
EG
1338 cond = (agg_state != IWL_EMPTYING_HW_QUEUE_DELBA);
1339 } else {
1340 cond = (status != TX_STATUS_FAIL_PASSIVE_NO_RX);
1341 }
1342
1343 if (txq->q.read_ptr != tfd_num) {
1344 IWL_DEBUG_TX_REPLY(trans, "Retry scheduler reclaim "
1345 "scd_ssn=%d idx=%d txq=%d swq=%d\n",
1346 ssn , tfd_num, txq_id, txq->swq_id);
464021ff 1347 freed = iwl_tx_queue_reclaim(trans, txq_id, tfd_num, skbs);
a0eaad71 1348 if (iwl_queue_space(&txq->q) > txq->q.low_mark && cond)
e20d4341 1349 iwl_wake_queue(trans, txq);
a0eaad71 1350 }
464021ff
EG
1351
1352 iwl_free_tfds_in_queue(trans, sta_id, tid, freed);
1353 iwlagn_txq_check_empty(trans, sta_id, tid, txq_id);
a0eaad71
EG
1354}
1355
6d8f6eeb 1356static void iwl_trans_pcie_free(struct iwl_trans *trans)
34c1b7ba 1357{
ae2c30bf
EG
1358 iwl_trans_pcie_tx_free(trans);
1359 iwl_trans_pcie_rx_free(trans);
6d8f6eeb
EG
1360 free_irq(bus(trans)->irq, trans);
1361 iwl_free_isr_ict(trans);
1362 trans->shrd->trans = NULL;
1363 kfree(trans);
34c1b7ba
EG
1364}
1365
57210f7c
EG
1366#ifdef CONFIG_PM
1367
1368static int iwl_trans_pcie_suspend(struct iwl_trans *trans)
1369{
1370 /*
1371 * This function is called when system goes into suspend state
1372 * mac80211 will call iwl_mac_stop() from the mac80211 suspend function
1373 * first but since iwl_mac_stop() has no knowledge of who the caller is,
1374 * it will not call apm_ops.stop() to stop the DMA operation.
1375 * Calling apm_ops.stop here to make sure we stop the DMA.
1376 *
1377 * But of course ... if we have configured WoWLAN then we did other
1378 * things already :-)
1379 */
1380 if (!trans->shrd->wowlan)
1381 iwl_apm_stop(priv(trans));
1382
1383 return 0;
1384}
1385
1386static int iwl_trans_pcie_resume(struct iwl_trans *trans)
1387{
1388 bool hw_rfkill = false;
1389
0c325769 1390 iwl_enable_interrupts(trans);
57210f7c 1391
83ed9015 1392 if (!(iwl_read32(bus(trans), CSR_GP_CNTRL) &
57210f7c
EG
1393 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1394 hw_rfkill = true;
1395
1396 if (hw_rfkill)
1397 set_bit(STATUS_RF_KILL_HW, &trans->shrd->status);
1398 else
1399 clear_bit(STATUS_RF_KILL_HW, &trans->shrd->status);
1400
3e10caeb 1401 iwl_set_hw_rfkill_state(priv(trans), hw_rfkill);
57210f7c
EG
1402
1403 return 0;
1404}
1405#else /* CONFIG_PM */
1406static int iwl_trans_pcie_suspend(struct iwl_trans *trans)
1407{ return 0; }
1408
1409static int iwl_trans_pcie_resume(struct iwl_trans *trans)
1410{ return 0; }
1411
1412#endif /* CONFIG_PM */
1413
e13c0c59 1414static void iwl_trans_pcie_wake_any_queue(struct iwl_trans *trans,
14991a9d 1415 enum iwl_rxon_context_id ctx)
e13c0c59
EG
1416{
1417 u8 ac, txq_id;
1418 struct iwl_trans_pcie *trans_pcie =
1419 IWL_TRANS_GET_PCIE_TRANS(trans);
1420
1421 for (ac = 0; ac < AC_NUM; ac++) {
1422 txq_id = trans_pcie->ac_to_queue[ctx][ac];
1423 IWL_DEBUG_INFO(trans, "Queue Status: Q[%d] %s\n",
1424 ac,
8ad71bef 1425 (atomic_read(&trans_pcie->queue_stop_count[ac]) > 0)
e13c0c59 1426 ? "stopped" : "awake");
8ad71bef 1427 iwl_wake_queue(trans, &trans_pcie->txq[txq_id]);
e13c0c59
EG
1428 }
1429}
1430
e6bb4c9c 1431const struct iwl_trans_ops trans_ops_pcie;
e419d62d 1432
e6bb4c9c
EG
1433static struct iwl_trans *iwl_trans_pcie_alloc(struct iwl_shared *shrd)
1434{
1435 struct iwl_trans *iwl_trans = kzalloc(sizeof(struct iwl_trans) +
1436 sizeof(struct iwl_trans_pcie),
1437 GFP_KERNEL);
1438 if (iwl_trans) {
5a878bf6
EG
1439 struct iwl_trans_pcie *trans_pcie =
1440 IWL_TRANS_GET_PCIE_TRANS(iwl_trans);
e6bb4c9c
EG
1441 iwl_trans->ops = &trans_ops_pcie;
1442 iwl_trans->shrd = shrd;
5a878bf6 1443 trans_pcie->trans = iwl_trans;
72012474 1444 spin_lock_init(&iwl_trans->hcmd_lock);
e6bb4c9c 1445 }
ab6cf8e8 1446
e6bb4c9c
EG
1447 return iwl_trans;
1448}
47c1b496 1449
e20d4341
EG
1450static void iwl_trans_pcie_stop_queue(struct iwl_trans *trans, int txq_id)
1451{
8ad71bef
EG
1452 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1453
1454 iwl_stop_queue(trans, &trans_pcie->txq[txq_id]);
e20d4341
EG
1455}
1456
5f178cd2
EG
1457#define IWL_FLUSH_WAIT_MS 2000
1458
1459static int iwl_trans_pcie_wait_tx_queue_empty(struct iwl_trans *trans)
1460{
8ad71bef 1461 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
5f178cd2
EG
1462 struct iwl_tx_queue *txq;
1463 struct iwl_queue *q;
1464 int cnt;
1465 unsigned long now = jiffies;
1466 int ret = 0;
1467
1468 /* waiting for all the tx frames complete might take a while */
1469 for (cnt = 0; cnt < hw_params(trans).max_txq_num; cnt++) {
1470 if (cnt == trans->shrd->cmd_queue)
1471 continue;
8ad71bef 1472 txq = &trans_pcie->txq[cnt];
5f178cd2
EG
1473 q = &txq->q;
1474 while (q->read_ptr != q->write_ptr && !time_after(jiffies,
1475 now + msecs_to_jiffies(IWL_FLUSH_WAIT_MS)))
1476 msleep(1);
1477
1478 if (q->read_ptr != q->write_ptr) {
1479 IWL_ERR(trans, "fail to flush all tx fifo queues\n");
1480 ret = -ETIMEDOUT;
1481 break;
1482 }
1483 }
1484 return ret;
1485}
1486
f22be624
EG
1487/*
1488 * On every watchdog tick we check (latest) time stamp. If it does not
1489 * change during timeout period and queue is not empty we reset firmware.
1490 */
1491static int iwl_trans_pcie_check_stuck_queue(struct iwl_trans *trans, int cnt)
1492{
8ad71bef
EG
1493 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1494 struct iwl_tx_queue *txq = &trans_pcie->txq[cnt];
f22be624
EG
1495 struct iwl_queue *q = &txq->q;
1496 unsigned long timeout;
1497
1498 if (q->read_ptr == q->write_ptr) {
1499 txq->time_stamp = jiffies;
1500 return 0;
1501 }
1502
1503 timeout = txq->time_stamp +
1504 msecs_to_jiffies(hw_params(trans).wd_timeout);
1505
1506 if (time_after(jiffies, timeout)) {
1507 IWL_ERR(trans, "Queue %d stuck for %u ms.\n", q->id,
1508 hw_params(trans).wd_timeout);
05f8a09f
WYG
1509 IWL_ERR(trans, "Current read_ptr %d write_ptr %d\n",
1510 q->read_ptr, q->write_ptr);
f22be624
EG
1511 return 1;
1512 }
1513
1514 return 0;
1515}
1516
ff620849
EG
1517static const char *get_fh_string(int cmd)
1518{
1519 switch (cmd) {
1520 IWL_CMD(FH_RSCSR_CHNL0_STTS_WPTR_REG);
1521 IWL_CMD(FH_RSCSR_CHNL0_RBDCB_BASE_REG);
1522 IWL_CMD(FH_RSCSR_CHNL0_WPTR);
1523 IWL_CMD(FH_MEM_RCSR_CHNL0_CONFIG_REG);
1524 IWL_CMD(FH_MEM_RSSR_SHARED_CTRL_REG);
1525 IWL_CMD(FH_MEM_RSSR_RX_STATUS_REG);
1526 IWL_CMD(FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV);
1527 IWL_CMD(FH_TSSR_TX_STATUS_REG);
1528 IWL_CMD(FH_TSSR_TX_ERROR_REG);
1529 default:
1530 return "UNKNOWN";
1531 }
1532}
1533
1534int iwl_dump_fh(struct iwl_trans *trans, char **buf, bool display)
1535{
1536 int i;
1537#ifdef CONFIG_IWLWIFI_DEBUG
1538 int pos = 0;
1539 size_t bufsz = 0;
1540#endif
1541 static const u32 fh_tbl[] = {
1542 FH_RSCSR_CHNL0_STTS_WPTR_REG,
1543 FH_RSCSR_CHNL0_RBDCB_BASE_REG,
1544 FH_RSCSR_CHNL0_WPTR,
1545 FH_MEM_RCSR_CHNL0_CONFIG_REG,
1546 FH_MEM_RSSR_SHARED_CTRL_REG,
1547 FH_MEM_RSSR_RX_STATUS_REG,
1548 FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV,
1549 FH_TSSR_TX_STATUS_REG,
1550 FH_TSSR_TX_ERROR_REG
1551 };
1552#ifdef CONFIG_IWLWIFI_DEBUG
1553 if (display) {
1554 bufsz = ARRAY_SIZE(fh_tbl) * 48 + 40;
1555 *buf = kmalloc(bufsz, GFP_KERNEL);
1556 if (!*buf)
1557 return -ENOMEM;
1558 pos += scnprintf(*buf + pos, bufsz - pos,
1559 "FH register values:\n");
1560 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++) {
1561 pos += scnprintf(*buf + pos, bufsz - pos,
1562 " %34s: 0X%08x\n",
1563 get_fh_string(fh_tbl[i]),
1564 iwl_read_direct32(bus(trans), fh_tbl[i]));
1565 }
1566 return pos;
1567 }
1568#endif
1569 IWL_ERR(trans, "FH register values:\n");
1570 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++) {
1571 IWL_ERR(trans, " %34s: 0X%08x\n",
1572 get_fh_string(fh_tbl[i]),
1573 iwl_read_direct32(bus(trans), fh_tbl[i]));
1574 }
1575 return 0;
1576}
1577
1578static const char *get_csr_string(int cmd)
1579{
1580 switch (cmd) {
1581 IWL_CMD(CSR_HW_IF_CONFIG_REG);
1582 IWL_CMD(CSR_INT_COALESCING);
1583 IWL_CMD(CSR_INT);
1584 IWL_CMD(CSR_INT_MASK);
1585 IWL_CMD(CSR_FH_INT_STATUS);
1586 IWL_CMD(CSR_GPIO_IN);
1587 IWL_CMD(CSR_RESET);
1588 IWL_CMD(CSR_GP_CNTRL);
1589 IWL_CMD(CSR_HW_REV);
1590 IWL_CMD(CSR_EEPROM_REG);
1591 IWL_CMD(CSR_EEPROM_GP);
1592 IWL_CMD(CSR_OTP_GP_REG);
1593 IWL_CMD(CSR_GIO_REG);
1594 IWL_CMD(CSR_GP_UCODE_REG);
1595 IWL_CMD(CSR_GP_DRIVER_REG);
1596 IWL_CMD(CSR_UCODE_DRV_GP1);
1597 IWL_CMD(CSR_UCODE_DRV_GP2);
1598 IWL_CMD(CSR_LED_REG);
1599 IWL_CMD(CSR_DRAM_INT_TBL_REG);
1600 IWL_CMD(CSR_GIO_CHICKEN_BITS);
1601 IWL_CMD(CSR_ANA_PLL_CFG);
1602 IWL_CMD(CSR_HW_REV_WA_REG);
1603 IWL_CMD(CSR_DBG_HPET_MEM_REG);
1604 default:
1605 return "UNKNOWN";
1606 }
1607}
1608
1609void iwl_dump_csr(struct iwl_trans *trans)
1610{
1611 int i;
1612 static const u32 csr_tbl[] = {
1613 CSR_HW_IF_CONFIG_REG,
1614 CSR_INT_COALESCING,
1615 CSR_INT,
1616 CSR_INT_MASK,
1617 CSR_FH_INT_STATUS,
1618 CSR_GPIO_IN,
1619 CSR_RESET,
1620 CSR_GP_CNTRL,
1621 CSR_HW_REV,
1622 CSR_EEPROM_REG,
1623 CSR_EEPROM_GP,
1624 CSR_OTP_GP_REG,
1625 CSR_GIO_REG,
1626 CSR_GP_UCODE_REG,
1627 CSR_GP_DRIVER_REG,
1628 CSR_UCODE_DRV_GP1,
1629 CSR_UCODE_DRV_GP2,
1630 CSR_LED_REG,
1631 CSR_DRAM_INT_TBL_REG,
1632 CSR_GIO_CHICKEN_BITS,
1633 CSR_ANA_PLL_CFG,
1634 CSR_HW_REV_WA_REG,
1635 CSR_DBG_HPET_MEM_REG
1636 };
1637 IWL_ERR(trans, "CSR values:\n");
1638 IWL_ERR(trans, "(2nd byte of CSR_INT_COALESCING is "
1639 "CSR_INT_PERIODIC_REG)\n");
1640 for (i = 0; i < ARRAY_SIZE(csr_tbl); i++) {
1641 IWL_ERR(trans, " %25s: 0X%08x\n",
1642 get_csr_string(csr_tbl[i]),
1643 iwl_read32(bus(trans), csr_tbl[i]));
1644 }
1645}
1646
87e5666c
EG
1647#ifdef CONFIG_IWLWIFI_DEBUGFS
1648/* create and remove of files */
1649#define DEBUGFS_ADD_FILE(name, parent, mode) do { \
5a878bf6 1650 if (!debugfs_create_file(#name, mode, parent, trans, \
87e5666c
EG
1651 &iwl_dbgfs_##name##_ops)) \
1652 return -ENOMEM; \
1653} while (0)
1654
1655/* file operation */
1656#define DEBUGFS_READ_FUNC(name) \
1657static ssize_t iwl_dbgfs_##name##_read(struct file *file, \
1658 char __user *user_buf, \
1659 size_t count, loff_t *ppos);
1660
1661#define DEBUGFS_WRITE_FUNC(name) \
1662static ssize_t iwl_dbgfs_##name##_write(struct file *file, \
1663 const char __user *user_buf, \
1664 size_t count, loff_t *ppos);
1665
1666
1667static int iwl_dbgfs_open_file_generic(struct inode *inode, struct file *file)
1668{
1669 file->private_data = inode->i_private;
1670 return 0;
1671}
1672
1673#define DEBUGFS_READ_FILE_OPS(name) \
1674 DEBUGFS_READ_FUNC(name); \
1675static const struct file_operations iwl_dbgfs_##name##_ops = { \
1676 .read = iwl_dbgfs_##name##_read, \
1677 .open = iwl_dbgfs_open_file_generic, \
1678 .llseek = generic_file_llseek, \
1679};
1680
16db88ba
EG
1681#define DEBUGFS_WRITE_FILE_OPS(name) \
1682 DEBUGFS_WRITE_FUNC(name); \
1683static const struct file_operations iwl_dbgfs_##name##_ops = { \
1684 .write = iwl_dbgfs_##name##_write, \
1685 .open = iwl_dbgfs_open_file_generic, \
1686 .llseek = generic_file_llseek, \
1687};
1688
87e5666c
EG
1689#define DEBUGFS_READ_WRITE_FILE_OPS(name) \
1690 DEBUGFS_READ_FUNC(name); \
1691 DEBUGFS_WRITE_FUNC(name); \
1692static const struct file_operations iwl_dbgfs_##name##_ops = { \
1693 .write = iwl_dbgfs_##name##_write, \
1694 .read = iwl_dbgfs_##name##_read, \
1695 .open = iwl_dbgfs_open_file_generic, \
1696 .llseek = generic_file_llseek, \
1697};
1698
87e5666c
EG
1699static ssize_t iwl_dbgfs_tx_queue_read(struct file *file,
1700 char __user *user_buf,
8ad71bef
EG
1701 size_t count, loff_t *ppos)
1702{
5a878bf6 1703 struct iwl_trans *trans = file->private_data;
8ad71bef 1704 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
87e5666c
EG
1705 struct iwl_tx_queue *txq;
1706 struct iwl_queue *q;
1707 char *buf;
1708 int pos = 0;
1709 int cnt;
1710 int ret;
fd656935 1711 const size_t bufsz = sizeof(char) * 64 * hw_params(trans).max_txq_num;
87e5666c 1712
8ad71bef 1713 if (!trans_pcie->txq) {
3e10caeb 1714 IWL_ERR(trans, "txq not ready\n");
87e5666c
EG
1715 return -EAGAIN;
1716 }
1717 buf = kzalloc(bufsz, GFP_KERNEL);
1718 if (!buf)
1719 return -ENOMEM;
1720
5a878bf6 1721 for (cnt = 0; cnt < hw_params(trans).max_txq_num; cnt++) {
8ad71bef 1722 txq = &trans_pcie->txq[cnt];
87e5666c
EG
1723 q = &txq->q;
1724 pos += scnprintf(buf + pos, bufsz - pos,
1725 "hwq %.2d: read=%u write=%u stop=%d"
1726 " swq_id=%#.2x (ac %d/hwq %d)\n",
1727 cnt, q->read_ptr, q->write_ptr,
8ad71bef 1728 !!test_bit(cnt, trans_pcie->queue_stopped),
87e5666c
EG
1729 txq->swq_id, txq->swq_id & 3,
1730 (txq->swq_id >> 2) & 0x1f);
1731 if (cnt >= 4)
1732 continue;
1733 /* for the ACs, display the stop count too */
1734 pos += scnprintf(buf + pos, bufsz - pos,
8ad71bef
EG
1735 " stop-count: %d\n",
1736 atomic_read(&trans_pcie->queue_stop_count[cnt]));
87e5666c
EG
1737 }
1738 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1739 kfree(buf);
1740 return ret;
1741}
1742
1743static ssize_t iwl_dbgfs_rx_queue_read(struct file *file,
1744 char __user *user_buf,
1745 size_t count, loff_t *ppos) {
5a878bf6
EG
1746 struct iwl_trans *trans = file->private_data;
1747 struct iwl_trans_pcie *trans_pcie =
1748 IWL_TRANS_GET_PCIE_TRANS(trans);
1749 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
87e5666c
EG
1750 char buf[256];
1751 int pos = 0;
1752 const size_t bufsz = sizeof(buf);
1753
1754 pos += scnprintf(buf + pos, bufsz - pos, "read: %u\n",
1755 rxq->read);
1756 pos += scnprintf(buf + pos, bufsz - pos, "write: %u\n",
1757 rxq->write);
1758 pos += scnprintf(buf + pos, bufsz - pos, "free_count: %u\n",
1759 rxq->free_count);
1760 if (rxq->rb_stts) {
1761 pos += scnprintf(buf + pos, bufsz - pos, "closed_rb_num: %u\n",
1762 le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF);
1763 } else {
1764 pos += scnprintf(buf + pos, bufsz - pos,
1765 "closed_rb_num: Not Allocated\n");
1766 }
1767 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1768}
1769
7ff94706
EG
1770static ssize_t iwl_dbgfs_log_event_read(struct file *file,
1771 char __user *user_buf,
1772 size_t count, loff_t *ppos)
1773{
1774 struct iwl_trans *trans = file->private_data;
1775 char *buf;
1776 int pos = 0;
1777 ssize_t ret = -ENOMEM;
1778
6bb78847 1779 ret = pos = iwl_dump_nic_event_log(trans, true, &buf, true);
7ff94706
EG
1780 if (buf) {
1781 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1782 kfree(buf);
1783 }
1784 return ret;
1785}
1786
1787static ssize_t iwl_dbgfs_log_event_write(struct file *file,
1788 const char __user *user_buf,
1789 size_t count, loff_t *ppos)
1790{
1791 struct iwl_trans *trans = file->private_data;
1792 u32 event_log_flag;
1793 char buf[8];
1794 int buf_size;
1795
1796 memset(buf, 0, sizeof(buf));
1797 buf_size = min(count, sizeof(buf) - 1);
1798 if (copy_from_user(buf, user_buf, buf_size))
1799 return -EFAULT;
1800 if (sscanf(buf, "%d", &event_log_flag) != 1)
1801 return -EFAULT;
1802 if (event_log_flag == 1)
6bb78847 1803 iwl_dump_nic_event_log(trans, true, NULL, false);
7ff94706
EG
1804
1805 return count;
1806}
1807
1f7b6172
EG
1808static ssize_t iwl_dbgfs_interrupt_read(struct file *file,
1809 char __user *user_buf,
1810 size_t count, loff_t *ppos) {
1811
1812 struct iwl_trans *trans = file->private_data;
1813 struct iwl_trans_pcie *trans_pcie =
1814 IWL_TRANS_GET_PCIE_TRANS(trans);
1815 struct isr_statistics *isr_stats = &trans_pcie->isr_stats;
1816
1817 int pos = 0;
1818 char *buf;
1819 int bufsz = 24 * 64; /* 24 items * 64 char per item */
1820 ssize_t ret;
1821
1822 buf = kzalloc(bufsz, GFP_KERNEL);
1823 if (!buf) {
1824 IWL_ERR(trans, "Can not allocate Buffer\n");
1825 return -ENOMEM;
1826 }
1827
1828 pos += scnprintf(buf + pos, bufsz - pos,
1829 "Interrupt Statistics Report:\n");
1830
1831 pos += scnprintf(buf + pos, bufsz - pos, "HW Error:\t\t\t %u\n",
1832 isr_stats->hw);
1833 pos += scnprintf(buf + pos, bufsz - pos, "SW Error:\t\t\t %u\n",
1834 isr_stats->sw);
1835 if (isr_stats->sw || isr_stats->hw) {
1836 pos += scnprintf(buf + pos, bufsz - pos,
1837 "\tLast Restarting Code: 0x%X\n",
1838 isr_stats->err_code);
1839 }
1840#ifdef CONFIG_IWLWIFI_DEBUG
1841 pos += scnprintf(buf + pos, bufsz - pos, "Frame transmitted:\t\t %u\n",
1842 isr_stats->sch);
1843 pos += scnprintf(buf + pos, bufsz - pos, "Alive interrupt:\t\t %u\n",
1844 isr_stats->alive);
1845#endif
1846 pos += scnprintf(buf + pos, bufsz - pos,
1847 "HW RF KILL switch toggled:\t %u\n", isr_stats->rfkill);
1848
1849 pos += scnprintf(buf + pos, bufsz - pos, "CT KILL:\t\t\t %u\n",
1850 isr_stats->ctkill);
1851
1852 pos += scnprintf(buf + pos, bufsz - pos, "Wakeup Interrupt:\t\t %u\n",
1853 isr_stats->wakeup);
1854
1855 pos += scnprintf(buf + pos, bufsz - pos,
1856 "Rx command responses:\t\t %u\n", isr_stats->rx);
1857
1858 pos += scnprintf(buf + pos, bufsz - pos, "Tx/FH interrupt:\t\t %u\n",
1859 isr_stats->tx);
1860
1861 pos += scnprintf(buf + pos, bufsz - pos, "Unexpected INTA:\t\t %u\n",
1862 isr_stats->unhandled);
1863
1864 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1865 kfree(buf);
1866 return ret;
1867}
1868
1869static ssize_t iwl_dbgfs_interrupt_write(struct file *file,
1870 const char __user *user_buf,
1871 size_t count, loff_t *ppos)
1872{
1873 struct iwl_trans *trans = file->private_data;
1874 struct iwl_trans_pcie *trans_pcie =
1875 IWL_TRANS_GET_PCIE_TRANS(trans);
1876 struct isr_statistics *isr_stats = &trans_pcie->isr_stats;
1877
1878 char buf[8];
1879 int buf_size;
1880 u32 reset_flag;
1881
1882 memset(buf, 0, sizeof(buf));
1883 buf_size = min(count, sizeof(buf) - 1);
1884 if (copy_from_user(buf, user_buf, buf_size))
1885 return -EFAULT;
1886 if (sscanf(buf, "%x", &reset_flag) != 1)
1887 return -EFAULT;
1888 if (reset_flag == 0)
1889 memset(isr_stats, 0, sizeof(*isr_stats));
1890
1891 return count;
1892}
1893
16db88ba
EG
1894static ssize_t iwl_dbgfs_csr_write(struct file *file,
1895 const char __user *user_buf,
1896 size_t count, loff_t *ppos)
1897{
1898 struct iwl_trans *trans = file->private_data;
1899 char buf[8];
1900 int buf_size;
1901 int csr;
1902
1903 memset(buf, 0, sizeof(buf));
1904 buf_size = min(count, sizeof(buf) - 1);
1905 if (copy_from_user(buf, user_buf, buf_size))
1906 return -EFAULT;
1907 if (sscanf(buf, "%d", &csr) != 1)
1908 return -EFAULT;
1909
1910 iwl_dump_csr(trans);
1911
1912 return count;
1913}
1914
16db88ba
EG
1915static ssize_t iwl_dbgfs_fh_reg_read(struct file *file,
1916 char __user *user_buf,
1917 size_t count, loff_t *ppos)
1918{
1919 struct iwl_trans *trans = file->private_data;
1920 char *buf;
1921 int pos = 0;
1922 ssize_t ret = -EFAULT;
1923
1924 ret = pos = iwl_dump_fh(trans, &buf, true);
1925 if (buf) {
1926 ret = simple_read_from_buffer(user_buf,
1927 count, ppos, buf, pos);
1928 kfree(buf);
1929 }
1930
1931 return ret;
1932}
1933
7ff94706 1934DEBUGFS_READ_WRITE_FILE_OPS(log_event);
1f7b6172 1935DEBUGFS_READ_WRITE_FILE_OPS(interrupt);
16db88ba 1936DEBUGFS_READ_FILE_OPS(fh_reg);
87e5666c
EG
1937DEBUGFS_READ_FILE_OPS(rx_queue);
1938DEBUGFS_READ_FILE_OPS(tx_queue);
16db88ba 1939DEBUGFS_WRITE_FILE_OPS(csr);
87e5666c
EG
1940
1941/*
1942 * Create the debugfs files and directories
1943 *
1944 */
1945static int iwl_trans_pcie_dbgfs_register(struct iwl_trans *trans,
1946 struct dentry *dir)
1947{
87e5666c
EG
1948 DEBUGFS_ADD_FILE(rx_queue, dir, S_IRUSR);
1949 DEBUGFS_ADD_FILE(tx_queue, dir, S_IRUSR);
7ff94706 1950 DEBUGFS_ADD_FILE(log_event, dir, S_IWUSR | S_IRUSR);
1f7b6172 1951 DEBUGFS_ADD_FILE(interrupt, dir, S_IWUSR | S_IRUSR);
16db88ba
EG
1952 DEBUGFS_ADD_FILE(csr, dir, S_IWUSR);
1953 DEBUGFS_ADD_FILE(fh_reg, dir, S_IRUSR);
87e5666c
EG
1954 return 0;
1955}
1956#else
1957static int iwl_trans_pcie_dbgfs_register(struct iwl_trans *trans,
1958 struct dentry *dir)
1959{ return 0; }
1960
1961#endif /*CONFIG_IWLWIFI_DEBUGFS */
1962
e6bb4c9c
EG
1963const struct iwl_trans_ops trans_ops_pcie = {
1964 .alloc = iwl_trans_pcie_alloc,
1965 .request_irq = iwl_trans_pcie_request_irq,
1966 .start_device = iwl_trans_pcie_start_device,
1967 .prepare_card_hw = iwl_trans_pcie_prepare_card_hw,
1968 .stop_device = iwl_trans_pcie_stop_device,
48d42c42 1969
e6bb4c9c 1970 .tx_start = iwl_trans_pcie_tx_start,
e13c0c59 1971 .wake_any_queue = iwl_trans_pcie_wake_any_queue,
48d42c42 1972
e6bb4c9c 1973 .send_cmd = iwl_trans_pcie_send_cmd,
c85eb619 1974
e6bb4c9c 1975 .tx = iwl_trans_pcie_tx,
a0eaad71 1976 .reclaim = iwl_trans_pcie_reclaim,
34c1b7ba 1977
7f01d567 1978 .tx_agg_disable = iwl_trans_pcie_tx_agg_disable,
288712a6 1979 .tx_agg_alloc = iwl_trans_pcie_tx_agg_alloc,
c91bd124 1980 .tx_agg_setup = iwl_trans_pcie_tx_agg_setup,
34c1b7ba 1981
e6bb4c9c 1982 .kick_nic = iwl_trans_pcie_kick_nic,
1e89cbac 1983
e6bb4c9c 1984 .free = iwl_trans_pcie_free,
e20d4341 1985 .stop_queue = iwl_trans_pcie_stop_queue,
87e5666c
EG
1986
1987 .dbgfs_register = iwl_trans_pcie_dbgfs_register,
5f178cd2
EG
1988
1989 .wait_tx_queue_empty = iwl_trans_pcie_wait_tx_queue_empty,
f22be624 1990 .check_stuck_queue = iwl_trans_pcie_check_stuck_queue,
5f178cd2 1991
57210f7c
EG
1992 .suspend = iwl_trans_pcie_suspend,
1993 .resume = iwl_trans_pcie_resume,
e6bb4c9c 1994};