blob: 632d4099900e64082a4c6cdd7576a2ef8685d58c [file] [log] [blame]
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001/******************************************************************************
2 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -08003 * Copyright(c) 2003 - 2012 Intel Corporation. All rights reserved.
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29#ifndef __iwl_trans_int_pcie_h__
30#define __iwl_trans_int_pcie_h__
31
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070032#include <linux/spinlock.h>
33#include <linux/interrupt.h>
34#include <linux/skbuff.h>
Emmanuel Grumbach522376d2011-09-06 09:31:19 -070035#include <linux/pci.h>
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070036
Emmanuel Grumbachdda61a42011-08-25 23:11:11 -070037#include "iwl-fh.h"
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070038#include "iwl-csr.h"
39#include "iwl-shared.h"
40#include "iwl-trans.h"
41#include "iwl-debug.h"
42#include "iwl-io.h"
Emmanuel Grumbach02e38352012-02-09 16:08:15 +020043#include "iwl-op-mode.h"
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070044
45struct iwl_tx_queue;
46struct iwl_queue;
47struct iwl_host_cmd;
Emmanuel Grumbachdda61a42011-08-25 23:11:11 -070048
Emmanuel Grumbachab697a92011-07-11 07:35:34 -070049/*This file includes the declaration that are internal to the
50 * trans_pcie layer */
51
Johannes Berg48a2d662012-03-05 11:24:39 -080052struct iwl_rx_mem_buffer {
53 dma_addr_t page_dma;
54 struct page *page;
55 struct list_head list;
56};
57
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070058/**
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -070059 * struct isr_statistics - interrupt statistics
60 *
61 */
62struct isr_statistics {
63 u32 hw;
64 u32 sw;
65 u32 err_code;
66 u32 sch;
67 u32 alive;
68 u32 rfkill;
69 u32 ctkill;
70 u32 wakeup;
71 u32 rx;
72 u32 tx;
73 u32 unhandled;
74};
75
76/**
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -070077 * struct iwl_rx_queue - Rx queue
78 * @bd: driver's pointer to buffer of receive buffer descriptors (rbd)
79 * @bd_dma: bus address of buffer of receive buffer descriptors (rbd)
80 * @pool:
81 * @queue:
82 * @read: Shared index to newest available Rx buffer
83 * @write: Shared index to oldest written Rx packet
84 * @free_count: Number of pre-allocated buffers in rx_free
85 * @write_actual:
86 * @rx_free: list of free SKBs for use
87 * @rx_used: List of Rx buffers with no SKB
88 * @need_update: flag to indicate we need to update read/write index
89 * @rb_stts: driver's pointer to receive buffer status
90 * @rb_stts_dma: bus address of receive buffer status
91 * @lock:
92 *
93 * NOTE: rx_free and rx_used are used as a FIFO for iwl_rx_mem_buffers
94 */
95struct iwl_rx_queue {
96 __le32 *bd;
97 dma_addr_t bd_dma;
98 struct iwl_rx_mem_buffer pool[RX_QUEUE_SIZE + RX_FREE_BUFFERS];
99 struct iwl_rx_mem_buffer *queue[RX_QUEUE_SIZE];
100 u32 read;
101 u32 write;
102 u32 free_count;
103 u32 write_actual;
104 struct list_head rx_free;
105 struct list_head rx_used;
106 int need_update;
107 struct iwl_rb_status *rb_stts;
108 dma_addr_t rb_stts_dma;
109 spinlock_t lock;
110};
111
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -0700112struct iwl_dma_ptr {
113 dma_addr_t dma;
114 void *addr;
115 size_t size;
116};
117
Emmanuel Grumbache13c0c52011-08-25 23:11:24 -0700118/*
119 * This queue number is required for proper operation
120 * because the ucode will stop/start the scheduler as
121 * required.
122 */
123#define IWL_IPAN_MCAST_QUEUE 8
124
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700125struct iwl_cmd_meta {
126 /* only for SYNC commands, iff the reply skb is wanted */
127 struct iwl_host_cmd *source;
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700128
129 u32 flags;
130
131 DEFINE_DMA_UNMAP_ADDR(mapping);
132 DEFINE_DMA_UNMAP_LEN(len);
133};
134
135/*
136 * Generic queue structure
137 *
138 * Contains common data for Rx and Tx queues.
139 *
140 * Note the difference between n_bd and n_window: the hardware
141 * always assumes 256 descriptors, so n_bd is always 256 (unless
142 * there might be HW changes in the future). For the normal TX
143 * queues, n_window, which is the size of the software queue data
144 * is also 256; however, for the command queue, n_window is only
145 * 32 since we don't need so many commands pending. Since the HW
146 * still uses 256 BDs for DMA though, n_bd stays 256. As a result,
147 * the software buffers (in the variables @meta, @txb in struct
148 * iwl_tx_queue) only have 32 entries, while the HW buffers (@tfds
149 * in the same struct) have 256.
150 * This means that we end up with the following:
151 * HW entries: | 0 | ... | N * 32 | ... | N * 32 + 31 | ... | 255 |
152 * SW entries: | 0 | ... | 31 |
153 * where N is a number between 0 and 7. This means that the SW
154 * data is a window overlayed over the HW queue.
155 */
156struct iwl_queue {
157 int n_bd; /* number of BDs in this queue */
158 int write_ptr; /* 1-st empty entry (index) host_w*/
159 int read_ptr; /* last used entry (index) host_r*/
160 /* use for monitoring and recovering the stuck queue */
161 dma_addr_t dma_addr; /* physical addr for BD's */
162 int n_window; /* safe queue window */
163 u32 id;
164 int low_mark; /* low watermark, resume queue if free
165 * space more than this */
166 int high_mark; /* high watermark, stop queue if free
167 * space less than this */
168};
169
170/**
171 * struct iwl_tx_queue - Tx Queue for DMA
172 * @q: generic Rx/Tx queue descriptor
173 * @bd: base of circular buffer of TFDs
174 * @cmd: array of command/TX buffer pointers
175 * @meta: array of meta data for each command/tx buffer
176 * @dma_addr_cmd: physical address of cmd/tx buffer array
177 * @txb: array of per-TFD driver data
Johannes Berg015c15e2012-03-05 11:24:24 -0800178 * lock: queue lock
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700179 * @time_stamp: time (in jiffies) of last read_ptr change
180 * @need_update: indicates need to update read/write index
181 * @sched_retry: indicates queue is high-throughput aggregation (HT AGG) enabled
182 * @sta_id: valid if sched_retry is set
183 * @tid: valid if sched_retry is set
184 *
185 * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
186 * descriptors) and required locking structures.
187 */
188#define TFD_TX_CMD_SLOTS 256
189#define TFD_CMD_SLOTS 32
190
191struct iwl_tx_queue {
192 struct iwl_queue q;
193 struct iwl_tfd *tfds;
194 struct iwl_device_cmd **cmd;
195 struct iwl_cmd_meta *meta;
196 struct sk_buff **skbs;
Johannes Berg015c15e2012-03-05 11:24:24 -0800197 spinlock_t lock;
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700198 unsigned long time_stamp;
199 u8 need_update;
200 u8 sched_retry;
201 u8 active;
202 u8 swq_id;
203
204 u16 sta_id;
205 u16 tid;
206};
207
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700208/**
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700209 * struct iwl_trans_pcie - PCIe transport specific data
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700210 * @rxq: all the RX queue data
211 * @rx_replenish: work that will be called when buffers need to be allocated
212 * @trans: pointer to the generic transport area
Emmanuel Grumbach57a1dc82012-01-08 13:22:16 +0200213 * @irq_requested: true when the irq has been requested
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700214 * @scd_base_addr: scheduler sram base address in SRAM
215 * @scd_bc_tbls: pointer to the byte count table of the scheduler
Emmanuel Grumbach9d6b2cb2011-08-25 23:11:12 -0700216 * @kw: keep warm address
Emmanuel Grumbache13c0c52011-08-25 23:11:24 -0700217 * @ac_to_fifo: to what fifo is a specifc AC mapped ?
218 * @ac_to_queue: to what tx queue is a specifc AC mapped ?
219 * @mcast_queue:
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700220 * @txq: Tx DMA processing queues
221 * @txq_ctx_active_msk: what queue is active
222 * queue_stopped: tracks what queue is stopped
223 * queue_stop_count: tracks what SW queue is stopped
Emmanuel Grumbacha42a1842012-02-02 14:33:08 -0800224 * @pci_dev: basic pci-network driver stuff
225 * @hw_base: pci hardware address support
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700226 */
227struct iwl_trans_pcie {
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700228 struct iwl_rx_queue rxq;
229 struct work_struct rx_replenish;
230 struct iwl_trans *trans;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700231
232 /* INT ICT Table */
233 __le32 *ict_tbl;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700234 dma_addr_t ict_tbl_dma;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700235 int ict_index;
236 u32 inta;
237 bool use_ict;
Emmanuel Grumbach57a1dc82012-01-08 13:22:16 +0200238 bool irq_requested;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700239 struct tasklet_struct irq_tasklet;
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700240 struct isr_statistics isr_stats;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700241
Johannes Berg7b114882012-02-05 13:55:11 -0800242 spinlock_t irq_lock;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700243 u32 inta_mask;
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700244 u32 scd_base_addr;
245 struct iwl_dma_ptr scd_bc_tbls;
Emmanuel Grumbach9d6b2cb2011-08-25 23:11:12 -0700246 struct iwl_dma_ptr kw;
Emmanuel Grumbache13c0c52011-08-25 23:11:24 -0700247
248 const u8 *ac_to_fifo[NUM_IWL_RXON_CTX];
249 const u8 *ac_to_queue[NUM_IWL_RXON_CTX];
250 u8 mcast_queue[NUM_IWL_RXON_CTX];
Emmanuel Grumbach76bc10f2011-11-21 13:25:31 +0200251 u8 agg_txq[IWLAGN_STATION_COUNT][IWL_MAX_TID_COUNT];
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700252
253 struct iwl_tx_queue *txq;
254 unsigned long txq_ctx_active_msk;
255#define IWL_MAX_HW_QUEUES 32
256 unsigned long queue_stopped[BITS_TO_LONGS(IWL_MAX_HW_QUEUES)];
257 atomic_t queue_stop_count[4];
Emmanuel Grumbacha42a1842012-02-02 14:33:08 -0800258
259 /* PCI bus related data */
260 struct pci_dev *pci_dev;
261 void __iomem *hw_base;
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700262};
263
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700264#define IWL_TRANS_GET_PCIE_TRANS(_iwl_trans) \
265 ((struct iwl_trans_pcie *) ((_iwl_trans)->trans_specific))
266
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700267/*****************************************************
268* RX
269******************************************************/
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700270void iwl_bg_rx_replenish(struct work_struct *data);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700271void iwl_irq_tasklet(struct iwl_trans *trans);
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700272void iwlagn_rx_replenish(struct iwl_trans *trans);
273void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700274 struct iwl_rx_queue *q);
275
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700276/*****************************************************
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700277* ICT
278******************************************************/
Emmanuel Grumbached6a3802012-01-02 16:10:08 +0200279void iwl_reset_ict(struct iwl_trans *trans);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700280void iwl_disable_ict(struct iwl_trans *trans);
281int iwl_alloc_isr_ict(struct iwl_trans *trans);
282void iwl_free_isr_ict(struct iwl_trans *trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700283irqreturn_t iwl_isr_ict(int irq, void *data);
284
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700285/*****************************************************
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700286* TX / HCMD
287******************************************************/
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700288void iwl_txq_update_write_ptr(struct iwl_trans *trans,
289 struct iwl_tx_queue *txq);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700290int iwlagn_txq_attach_buf_to_tfd(struct iwl_trans *trans,
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700291 struct iwl_tx_queue *txq,
292 dma_addr_t addr, u16 len, u8 reset);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700293int iwl_queue_init(struct iwl_queue *q, int count, int slots_num, u32 id);
294int iwl_trans_pcie_send_cmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700295void iwl_tx_cmd_complete(struct iwl_trans *trans,
Johannes Berg48a2d662012-03-05 11:24:39 -0800296 struct iwl_rx_cmd_buffer *rxb, int handler_status);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700297void iwl_trans_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300298 struct iwl_tx_queue *txq,
299 u16 byte_cnt);
Emmanuel Grumbach7f01d562011-08-25 23:11:27 -0700300int iwl_trans_pcie_tx_agg_disable(struct iwl_trans *trans,
Emmanuel Grumbachbc237732011-11-21 13:25:31 +0200301 int sta_id, int tid);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700302void iwl_trans_set_wr_ptrs(struct iwl_trans *trans, int txq_id, u32 index);
Emmanuel Grumbachc91bd122011-08-25 23:11:28 -0700303void iwl_trans_tx_queue_set_status(struct iwl_trans *trans,
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300304 struct iwl_tx_queue *txq,
305 int tx_fifo_id, int scd_retry);
Emmanuel Grumbach3c69b592011-11-21 13:25:31 +0200306int iwl_trans_pcie_tx_agg_alloc(struct iwl_trans *trans, int sta_id, int tid);
Emmanuel Grumbachc91bd122011-08-25 23:11:28 -0700307void iwl_trans_pcie_tx_agg_setup(struct iwl_trans *trans,
308 enum iwl_rxon_context_id ctx,
Emmanuel Grumbach822e8b22011-11-21 13:25:31 +0200309 int sta_id, int tid, int frame_limit, u16 ssn);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700310void iwlagn_txq_free_tfd(struct iwl_trans *trans, struct iwl_tx_queue *txq,
Emmanuel Grumbach39644e92011-09-15 11:46:29 -0700311 int index, enum dma_data_direction dma_dir);
Emmanuel Grumbach464021f2011-08-25 23:11:26 -0700312int iwl_tx_queue_reclaim(struct iwl_trans *trans, int txq_id, int index,
313 struct sk_buff_head *skbs);
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700314int iwl_queue_space(const struct iwl_queue *q);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700315
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700316/*****************************************************
317* Error handling
318******************************************************/
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700319int iwl_dump_nic_event_log(struct iwl_trans *trans, bool full_log,
320 char **buf, bool display);
Emmanuel Grumbach16db88b2011-08-25 23:11:08 -0700321int iwl_dump_fh(struct iwl_trans *trans, char **buf, bool display);
322void iwl_dump_csr(struct iwl_trans *trans);
323
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700324/*****************************************************
325* Helpers
326******************************************************/
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700327static inline void iwl_disable_interrupts(struct iwl_trans *trans)
328{
329 clear_bit(STATUS_INT_ENABLED, &trans->shrd->status);
330
331 /* disable interrupts from uCode/NIC to host */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200332 iwl_write32(trans, CSR_INT_MASK, 0x00000000);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700333
334 /* acknowledge/clear/reset any interrupts still pending
335 * from uCode or flow handler (Rx/Tx DMA) */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200336 iwl_write32(trans, CSR_INT, 0xffffffff);
337 iwl_write32(trans, CSR_FH_INT_STATUS, 0xffffffff);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700338 IWL_DEBUG_ISR(trans, "Disabled interrupts\n");
339}
340
341static inline void iwl_enable_interrupts(struct iwl_trans *trans)
342{
343 struct iwl_trans_pcie *trans_pcie =
344 IWL_TRANS_GET_PCIE_TRANS(trans);
345
346 IWL_DEBUG_ISR(trans, "Enabling interrupts\n");
347 set_bit(STATUS_INT_ENABLED, &trans->shrd->status);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200348 iwl_write32(trans, CSR_INT_MASK, trans_pcie->inta_mask);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700349}
350
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700351/*
352 * we have 8 bits used like this:
353 *
354 * 7 6 5 4 3 2 1 0
355 * | | | | | | | |
356 * | | | | | | +-+-------- AC queue (0-3)
357 * | | | | | |
358 * | +-+-+-+-+------------ HW queue ID
359 * |
360 * +---------------------- unused
361 */
362static inline void iwl_set_swq_id(struct iwl_tx_queue *txq, u8 ac, u8 hwq)
363{
364 BUG_ON(ac > 3); /* only have 2 bits */
365 BUG_ON(hwq > 31); /* only use 5 bits */
366
367 txq->swq_id = (hwq << 2) | ac;
368}
369
Emmanuel Grumbach1daf04b2011-11-17 16:05:10 -0800370static inline u8 iwl_get_queue_ac(struct iwl_tx_queue *txq)
371{
372 return txq->swq_id & 0x3;
373}
374
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700375static inline void iwl_wake_queue(struct iwl_trans *trans,
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800376 struct iwl_tx_queue *txq, const char *msg)
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700377{
378 u8 queue = txq->swq_id;
379 u8 ac = queue & 3;
380 u8 hwq = (queue >> 2) & 0x1f;
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700381 struct iwl_trans_pcie *trans_pcie =
382 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700383
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800384 if (test_and_clear_bit(hwq, trans_pcie->queue_stopped)) {
385 if (atomic_dec_return(&trans_pcie->queue_stop_count[ac]) <= 0) {
Emmanuel Grumbach02e38352012-02-09 16:08:15 +0200386 iwl_op_mode_queue_not_full(trans->op_mode, ac);
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800387 IWL_DEBUG_TX_QUEUES(trans, "Wake hwq %d ac %d. %s",
388 hwq, ac, msg);
389 } else {
390 IWL_DEBUG_TX_QUEUES(trans, "Don't wake hwq %d ac %d"
391 " stop count %d. %s",
392 hwq, ac, atomic_read(&trans_pcie->
393 queue_stop_count[ac]), msg);
394 }
395 }
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700396}
397
398static inline void iwl_stop_queue(struct iwl_trans *trans,
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800399 struct iwl_tx_queue *txq, const char *msg)
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700400{
401 u8 queue = txq->swq_id;
402 u8 ac = queue & 3;
403 u8 hwq = (queue >> 2) & 0x1f;
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700404 struct iwl_trans_pcie *trans_pcie =
405 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700406
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800407 if (!test_and_set_bit(hwq, trans_pcie->queue_stopped)) {
408 if (atomic_inc_return(&trans_pcie->queue_stop_count[ac]) > 0) {
Emmanuel Grumbach02e38352012-02-09 16:08:15 +0200409 iwl_op_mode_queue_full(trans->op_mode, ac);
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800410 IWL_DEBUG_TX_QUEUES(trans, "Stop hwq %d ac %d"
411 " stop count %d. %s",
412 hwq, ac, atomic_read(&trans_pcie->
413 queue_stop_count[ac]), msg);
414 } else {
415 IWL_DEBUG_TX_QUEUES(trans, "Don't stop hwq %d ac %d"
416 " stop count %d. %s",
417 hwq, ac, atomic_read(&trans_pcie->
418 queue_stop_count[ac]), msg);
419 }
420 } else {
421 IWL_DEBUG_TX_QUEUES(trans, "stop hwq %d, but it is stopped/ %s",
422 hwq, msg);
423 }
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700424}
425
426#ifdef ieee80211_stop_queue
427#undef ieee80211_stop_queue
428#endif
429
430#define ieee80211_stop_queue DO_NOT_USE_ieee80211_stop_queue
431
432#ifdef ieee80211_wake_queue
433#undef ieee80211_wake_queue
434#endif
435
436#define ieee80211_wake_queue DO_NOT_USE_ieee80211_wake_queue
437
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700438static inline void iwl_txq_ctx_activate(struct iwl_trans_pcie *trans_pcie,
439 int txq_id)
440{
441 set_bit(txq_id, &trans_pcie->txq_ctx_active_msk);
442}
443
444static inline void iwl_txq_ctx_deactivate(struct iwl_trans_pcie *trans_pcie,
445 int txq_id)
446{
447 clear_bit(txq_id, &trans_pcie->txq_ctx_active_msk);
448}
449
450static inline int iwl_queue_used(const struct iwl_queue *q, int i)
451{
452 return q->write_ptr >= q->read_ptr ?
453 (i >= q->read_ptr && i < q->write_ptr) :
454 !(i < q->read_ptr && i >= q->write_ptr);
455}
456
457static inline u8 get_cmd_index(struct iwl_queue *q, u32 index)
458{
459 return index & (q->n_window - 1);
460}
461
Emmanuel Grumbach7a10e3e42011-09-06 09:31:21 -0700462#define IWL_TX_FIFO_BK 0 /* shared */
463#define IWL_TX_FIFO_BE 1
464#define IWL_TX_FIFO_VI 2 /* shared */
465#define IWL_TX_FIFO_VO 3
466#define IWL_TX_FIFO_BK_IPAN IWL_TX_FIFO_BK
467#define IWL_TX_FIFO_BE_IPAN 4
468#define IWL_TX_FIFO_VI_IPAN IWL_TX_FIFO_VI
469#define IWL_TX_FIFO_VO_IPAN 5
470/* re-uses the VO FIFO, uCode will properly flush/schedule */
471#define IWL_TX_FIFO_AUX 5
472#define IWL_TX_FIFO_UNUSED -1
473
474/* AUX (TX during scan dwell) queue */
475#define IWL_AUX_QUEUE 10
476
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700477#endif /* __iwl_trans_int_pcie_h__ */