blob: 16a32ae4046e0beb068a004d72cf96f85d787c47 [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>
Johannes Berg13df1aa2012-03-06 13:31:00 -080035#include <linux/wait.h>
Emmanuel Grumbach522376d2011-09-06 09:31:19 -070036#include <linux/pci.h>
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070037
Emmanuel Grumbachdda61a42011-08-25 23:11:11 -070038#include "iwl-fh.h"
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070039#include "iwl-csr.h"
40#include "iwl-shared.h"
41#include "iwl-trans.h"
42#include "iwl-debug.h"
43#include "iwl-io.h"
Emmanuel Grumbach02e38352012-02-09 16:08:15 +020044#include "iwl-op-mode.h"
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070045
46struct iwl_tx_queue;
47struct iwl_queue;
48struct iwl_host_cmd;
Emmanuel Grumbachdda61a42011-08-25 23:11:11 -070049
Emmanuel Grumbachab697a92011-07-11 07:35:34 -070050/*This file includes the declaration that are internal to the
51 * trans_pcie layer */
52
Johannes Berg48a2d662012-03-05 11:24:39 -080053struct iwl_rx_mem_buffer {
54 dma_addr_t page_dma;
55 struct page *page;
56 struct list_head list;
57};
58
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070059/**
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -070060 * struct isr_statistics - interrupt statistics
61 *
62 */
63struct isr_statistics {
64 u32 hw;
65 u32 sw;
66 u32 err_code;
67 u32 sch;
68 u32 alive;
69 u32 rfkill;
70 u32 ctkill;
71 u32 wakeup;
72 u32 rx;
73 u32 tx;
74 u32 unhandled;
75};
76
77/**
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -070078 * struct iwl_rx_queue - Rx queue
79 * @bd: driver's pointer to buffer of receive buffer descriptors (rbd)
80 * @bd_dma: bus address of buffer of receive buffer descriptors (rbd)
81 * @pool:
82 * @queue:
83 * @read: Shared index to newest available Rx buffer
84 * @write: Shared index to oldest written Rx packet
85 * @free_count: Number of pre-allocated buffers in rx_free
86 * @write_actual:
87 * @rx_free: list of free SKBs for use
88 * @rx_used: List of Rx buffers with no SKB
89 * @need_update: flag to indicate we need to update read/write index
90 * @rb_stts: driver's pointer to receive buffer status
91 * @rb_stts_dma: bus address of receive buffer status
92 * @lock:
93 *
94 * NOTE: rx_free and rx_used are used as a FIFO for iwl_rx_mem_buffers
95 */
96struct iwl_rx_queue {
97 __le32 *bd;
98 dma_addr_t bd_dma;
99 struct iwl_rx_mem_buffer pool[RX_QUEUE_SIZE + RX_FREE_BUFFERS];
100 struct iwl_rx_mem_buffer *queue[RX_QUEUE_SIZE];
101 u32 read;
102 u32 write;
103 u32 free_count;
104 u32 write_actual;
105 struct list_head rx_free;
106 struct list_head rx_used;
107 int need_update;
108 struct iwl_rb_status *rb_stts;
109 dma_addr_t rb_stts_dma;
110 spinlock_t lock;
111};
112
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -0700113struct iwl_dma_ptr {
114 dma_addr_t dma;
115 void *addr;
116 size_t size;
117};
118
Johannes Bergbffc66c2012-03-05 11:24:42 -0800119/**
120 * iwl_queue_inc_wrap - increment queue index, wrap back to beginning
121 * @index -- current index
122 * @n_bd -- total number of entries in queue (must be power of 2)
123 */
124static inline int iwl_queue_inc_wrap(int index, int n_bd)
125{
126 return ++index & (n_bd - 1);
127}
128
129/**
130 * iwl_queue_dec_wrap - decrement queue index, wrap back to end
131 * @index -- current index
132 * @n_bd -- total number of entries in queue (must be power of 2)
133 */
134static inline int iwl_queue_dec_wrap(int index, int n_bd)
135{
136 return --index & (n_bd - 1);
137}
138
Emmanuel Grumbache13c0c52011-08-25 23:11:24 -0700139/*
140 * This queue number is required for proper operation
141 * because the ucode will stop/start the scheduler as
142 * required.
143 */
144#define IWL_IPAN_MCAST_QUEUE 8
145
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700146struct iwl_cmd_meta {
147 /* only for SYNC commands, iff the reply skb is wanted */
148 struct iwl_host_cmd *source;
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700149
150 u32 flags;
151
152 DEFINE_DMA_UNMAP_ADDR(mapping);
153 DEFINE_DMA_UNMAP_LEN(len);
154};
155
156/*
157 * Generic queue structure
158 *
159 * Contains common data for Rx and Tx queues.
160 *
161 * Note the difference between n_bd and n_window: the hardware
162 * always assumes 256 descriptors, so n_bd is always 256 (unless
163 * there might be HW changes in the future). For the normal TX
164 * queues, n_window, which is the size of the software queue data
165 * is also 256; however, for the command queue, n_window is only
166 * 32 since we don't need so many commands pending. Since the HW
167 * still uses 256 BDs for DMA though, n_bd stays 256. As a result,
168 * the software buffers (in the variables @meta, @txb in struct
169 * iwl_tx_queue) only have 32 entries, while the HW buffers (@tfds
170 * in the same struct) have 256.
171 * This means that we end up with the following:
172 * HW entries: | 0 | ... | N * 32 | ... | N * 32 + 31 | ... | 255 |
173 * SW entries: | 0 | ... | 31 |
174 * where N is a number between 0 and 7. This means that the SW
175 * data is a window overlayed over the HW queue.
176 */
177struct iwl_queue {
178 int n_bd; /* number of BDs in this queue */
179 int write_ptr; /* 1-st empty entry (index) host_w*/
180 int read_ptr; /* last used entry (index) host_r*/
181 /* use for monitoring and recovering the stuck queue */
182 dma_addr_t dma_addr; /* physical addr for BD's */
183 int n_window; /* safe queue window */
184 u32 id;
185 int low_mark; /* low watermark, resume queue if free
186 * space more than this */
187 int high_mark; /* high watermark, stop queue if free
188 * space less than this */
189};
190
191/**
192 * struct iwl_tx_queue - Tx Queue for DMA
193 * @q: generic Rx/Tx queue descriptor
194 * @bd: base of circular buffer of TFDs
195 * @cmd: array of command/TX buffer pointers
196 * @meta: array of meta data for each command/tx buffer
197 * @dma_addr_cmd: physical address of cmd/tx buffer array
198 * @txb: array of per-TFD driver data
Johannes Berg015c15e2012-03-05 11:24:24 -0800199 * lock: queue lock
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700200 * @time_stamp: time (in jiffies) of last read_ptr change
201 * @need_update: indicates need to update read/write index
202 * @sched_retry: indicates queue is high-throughput aggregation (HT AGG) enabled
203 * @sta_id: valid if sched_retry is set
204 * @tid: valid if sched_retry is set
205 *
206 * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
207 * descriptors) and required locking structures.
208 */
209#define TFD_TX_CMD_SLOTS 256
210#define TFD_CMD_SLOTS 32
211
212struct iwl_tx_queue {
213 struct iwl_queue q;
214 struct iwl_tfd *tfds;
215 struct iwl_device_cmd **cmd;
216 struct iwl_cmd_meta *meta;
217 struct sk_buff **skbs;
Johannes Berg015c15e2012-03-05 11:24:24 -0800218 spinlock_t lock;
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700219 unsigned long time_stamp;
220 u8 need_update;
221 u8 sched_retry;
222 u8 active;
223 u8 swq_id;
224
225 u16 sta_id;
226 u16 tid;
227};
228
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700229/**
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700230 * struct iwl_trans_pcie - PCIe transport specific data
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700231 * @rxq: all the RX queue data
232 * @rx_replenish: work that will be called when buffers need to be allocated
233 * @trans: pointer to the generic transport area
Johannes Berg75595532012-03-06 13:31:01 -0800234 * @irq - the irq number for the device
Emmanuel Grumbach57a1dc82012-01-08 13:22:16 +0200235 * @irq_requested: true when the irq has been requested
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700236 * @scd_base_addr: scheduler sram base address in SRAM
237 * @scd_bc_tbls: pointer to the byte count table of the scheduler
Emmanuel Grumbach9d6b2cb2011-08-25 23:11:12 -0700238 * @kw: keep warm address
Emmanuel Grumbache13c0c52011-08-25 23:11:24 -0700239 * @ac_to_fifo: to what fifo is a specifc AC mapped ?
240 * @ac_to_queue: to what tx queue is a specifc AC mapped ?
241 * @mcast_queue:
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700242 * @txq: Tx DMA processing queues
243 * @txq_ctx_active_msk: what queue is active
244 * queue_stopped: tracks what queue is stopped
245 * queue_stop_count: tracks what SW queue is stopped
Emmanuel Grumbacha42a1842012-02-02 14:33:08 -0800246 * @pci_dev: basic pci-network driver stuff
247 * @hw_base: pci hardware address support
Johannes Berg13df1aa2012-03-06 13:31:00 -0800248 * @ucode_write_complete: indicates that the ucode has been copied.
249 * @ucode_write_waitq: wait queue for uCode load
Don Fry9a716862012-03-07 09:52:32 -0800250 * @status - transport specific status flags
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700251 */
252struct iwl_trans_pcie {
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700253 struct iwl_rx_queue rxq;
254 struct work_struct rx_replenish;
255 struct iwl_trans *trans;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700256
257 /* INT ICT Table */
258 __le32 *ict_tbl;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700259 dma_addr_t ict_tbl_dma;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700260 int ict_index;
261 u32 inta;
262 bool use_ict;
Emmanuel Grumbach57a1dc82012-01-08 13:22:16 +0200263 bool irq_requested;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700264 struct tasklet_struct irq_tasklet;
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700265 struct isr_statistics isr_stats;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700266
Johannes Berg75595532012-03-06 13:31:01 -0800267 unsigned int irq;
Johannes Berg7b114882012-02-05 13:55:11 -0800268 spinlock_t irq_lock;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700269 u32 inta_mask;
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700270 u32 scd_base_addr;
271 struct iwl_dma_ptr scd_bc_tbls;
Emmanuel Grumbach9d6b2cb2011-08-25 23:11:12 -0700272 struct iwl_dma_ptr kw;
Emmanuel Grumbache13c0c52011-08-25 23:11:24 -0700273
274 const u8 *ac_to_fifo[NUM_IWL_RXON_CTX];
275 const u8 *ac_to_queue[NUM_IWL_RXON_CTX];
276 u8 mcast_queue[NUM_IWL_RXON_CTX];
Emmanuel Grumbach76bc10f2011-11-21 13:25:31 +0200277 u8 agg_txq[IWLAGN_STATION_COUNT][IWL_MAX_TID_COUNT];
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700278
279 struct iwl_tx_queue *txq;
280 unsigned long txq_ctx_active_msk;
281#define IWL_MAX_HW_QUEUES 32
282 unsigned long queue_stopped[BITS_TO_LONGS(IWL_MAX_HW_QUEUES)];
283 atomic_t queue_stop_count[4];
Emmanuel Grumbacha42a1842012-02-02 14:33:08 -0800284
285 /* PCI bus related data */
286 struct pci_dev *pci_dev;
287 void __iomem *hw_base;
Johannes Berg13df1aa2012-03-06 13:31:00 -0800288
289 bool ucode_write_complete;
290 wait_queue_head_t ucode_write_waitq;
Don Fry9a716862012-03-07 09:52:32 -0800291 unsigned long status;
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700292};
293
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700294#define IWL_TRANS_GET_PCIE_TRANS(_iwl_trans) \
295 ((struct iwl_trans_pcie *) ((_iwl_trans)->trans_specific))
296
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700297/*****************************************************
298* RX
299******************************************************/
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700300void iwl_bg_rx_replenish(struct work_struct *data);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700301void iwl_irq_tasklet(struct iwl_trans *trans);
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700302void iwlagn_rx_replenish(struct iwl_trans *trans);
303void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700304 struct iwl_rx_queue *q);
305
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700306/*****************************************************
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700307* ICT
308******************************************************/
Emmanuel Grumbached6a3802012-01-02 16:10:08 +0200309void iwl_reset_ict(struct iwl_trans *trans);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700310void iwl_disable_ict(struct iwl_trans *trans);
311int iwl_alloc_isr_ict(struct iwl_trans *trans);
312void iwl_free_isr_ict(struct iwl_trans *trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700313irqreturn_t iwl_isr_ict(int irq, void *data);
314
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700315/*****************************************************
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700316* TX / HCMD
317******************************************************/
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700318void iwl_txq_update_write_ptr(struct iwl_trans *trans,
319 struct iwl_tx_queue *txq);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700320int iwlagn_txq_attach_buf_to_tfd(struct iwl_trans *trans,
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700321 struct iwl_tx_queue *txq,
322 dma_addr_t addr, u16 len, u8 reset);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700323int iwl_queue_init(struct iwl_queue *q, int count, int slots_num, u32 id);
324int iwl_trans_pcie_send_cmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700325void iwl_tx_cmd_complete(struct iwl_trans *trans,
Johannes Berg48a2d662012-03-05 11:24:39 -0800326 struct iwl_rx_cmd_buffer *rxb, int handler_status);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700327void iwl_trans_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300328 struct iwl_tx_queue *txq,
329 u16 byte_cnt);
Emmanuel Grumbach7f01d562011-08-25 23:11:27 -0700330int iwl_trans_pcie_tx_agg_disable(struct iwl_trans *trans,
Emmanuel Grumbachbc237732011-11-21 13:25:31 +0200331 int sta_id, int tid);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700332void iwl_trans_set_wr_ptrs(struct iwl_trans *trans, int txq_id, u32 index);
Emmanuel Grumbachc91bd122011-08-25 23:11:28 -0700333void iwl_trans_tx_queue_set_status(struct iwl_trans *trans,
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300334 struct iwl_tx_queue *txq,
335 int tx_fifo_id, int scd_retry);
Emmanuel Grumbach3c69b592011-11-21 13:25:31 +0200336int iwl_trans_pcie_tx_agg_alloc(struct iwl_trans *trans, int sta_id, int tid);
Emmanuel Grumbachc91bd122011-08-25 23:11:28 -0700337void iwl_trans_pcie_tx_agg_setup(struct iwl_trans *trans,
338 enum iwl_rxon_context_id ctx,
Emmanuel Grumbach822e8b22011-11-21 13:25:31 +0200339 int sta_id, int tid, int frame_limit, u16 ssn);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700340void iwlagn_txq_free_tfd(struct iwl_trans *trans, struct iwl_tx_queue *txq,
Emmanuel Grumbach39644e92011-09-15 11:46:29 -0700341 int index, enum dma_data_direction dma_dir);
Emmanuel Grumbach464021f2011-08-25 23:11:26 -0700342int iwl_tx_queue_reclaim(struct iwl_trans *trans, int txq_id, int index,
343 struct sk_buff_head *skbs);
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700344int iwl_queue_space(const struct iwl_queue *q);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700345
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700346/*****************************************************
347* Error handling
348******************************************************/
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700349int iwl_dump_nic_event_log(struct iwl_trans *trans, bool full_log,
350 char **buf, bool display);
Emmanuel Grumbach16db88b2011-08-25 23:11:08 -0700351int iwl_dump_fh(struct iwl_trans *trans, char **buf, bool display);
352void iwl_dump_csr(struct iwl_trans *trans);
353
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700354/*****************************************************
355* Helpers
356******************************************************/
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700357static inline void iwl_disable_interrupts(struct iwl_trans *trans)
358{
359 clear_bit(STATUS_INT_ENABLED, &trans->shrd->status);
360
361 /* disable interrupts from uCode/NIC to host */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200362 iwl_write32(trans, CSR_INT_MASK, 0x00000000);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700363
364 /* acknowledge/clear/reset any interrupts still pending
365 * from uCode or flow handler (Rx/Tx DMA) */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200366 iwl_write32(trans, CSR_INT, 0xffffffff);
367 iwl_write32(trans, CSR_FH_INT_STATUS, 0xffffffff);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700368 IWL_DEBUG_ISR(trans, "Disabled interrupts\n");
369}
370
371static inline void iwl_enable_interrupts(struct iwl_trans *trans)
372{
373 struct iwl_trans_pcie *trans_pcie =
374 IWL_TRANS_GET_PCIE_TRANS(trans);
375
376 IWL_DEBUG_ISR(trans, "Enabling interrupts\n");
377 set_bit(STATUS_INT_ENABLED, &trans->shrd->status);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200378 iwl_write32(trans, CSR_INT_MASK, trans_pcie->inta_mask);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700379}
380
Stanislaw Gruszka8722c892012-03-07 09:52:28 -0800381static inline void iwl_enable_rfkill_int(struct iwl_trans *trans)
382{
383 IWL_DEBUG_ISR(trans, "Enabling rfkill interrupt\n");
384 iwl_write32(trans, CSR_INT_MASK, CSR_INT_BIT_RF_KILL);
385}
386
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700387/*
388 * we have 8 bits used like this:
389 *
390 * 7 6 5 4 3 2 1 0
391 * | | | | | | | |
392 * | | | | | | +-+-------- AC queue (0-3)
393 * | | | | | |
394 * | +-+-+-+-+------------ HW queue ID
395 * |
396 * +---------------------- unused
397 */
398static inline void iwl_set_swq_id(struct iwl_tx_queue *txq, u8 ac, u8 hwq)
399{
400 BUG_ON(ac > 3); /* only have 2 bits */
401 BUG_ON(hwq > 31); /* only use 5 bits */
402
403 txq->swq_id = (hwq << 2) | ac;
404}
405
Emmanuel Grumbach1daf04b2011-11-17 16:05:10 -0800406static inline u8 iwl_get_queue_ac(struct iwl_tx_queue *txq)
407{
408 return txq->swq_id & 0x3;
409}
410
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700411static inline void iwl_wake_queue(struct iwl_trans *trans,
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800412 struct iwl_tx_queue *txq, const char *msg)
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700413{
414 u8 queue = txq->swq_id;
415 u8 ac = queue & 3;
416 u8 hwq = (queue >> 2) & 0x1f;
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700417 struct iwl_trans_pcie *trans_pcie =
418 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700419
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800420 if (test_and_clear_bit(hwq, trans_pcie->queue_stopped)) {
421 if (atomic_dec_return(&trans_pcie->queue_stop_count[ac]) <= 0) {
Emmanuel Grumbach02e38352012-02-09 16:08:15 +0200422 iwl_op_mode_queue_not_full(trans->op_mode, ac);
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800423 IWL_DEBUG_TX_QUEUES(trans, "Wake hwq %d ac %d. %s",
424 hwq, ac, msg);
425 } else {
426 IWL_DEBUG_TX_QUEUES(trans, "Don't wake hwq %d ac %d"
427 " stop count %d. %s",
428 hwq, ac, atomic_read(&trans_pcie->
429 queue_stop_count[ac]), msg);
430 }
431 }
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700432}
433
434static inline void iwl_stop_queue(struct iwl_trans *trans,
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800435 struct iwl_tx_queue *txq, const char *msg)
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700436{
437 u8 queue = txq->swq_id;
438 u8 ac = queue & 3;
439 u8 hwq = (queue >> 2) & 0x1f;
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700440 struct iwl_trans_pcie *trans_pcie =
441 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700442
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800443 if (!test_and_set_bit(hwq, trans_pcie->queue_stopped)) {
444 if (atomic_inc_return(&trans_pcie->queue_stop_count[ac]) > 0) {
Emmanuel Grumbach02e38352012-02-09 16:08:15 +0200445 iwl_op_mode_queue_full(trans->op_mode, ac);
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800446 IWL_DEBUG_TX_QUEUES(trans, "Stop hwq %d ac %d"
447 " stop count %d. %s",
448 hwq, ac, atomic_read(&trans_pcie->
449 queue_stop_count[ac]), msg);
450 } else {
451 IWL_DEBUG_TX_QUEUES(trans, "Don't stop hwq %d ac %d"
452 " stop count %d. %s",
453 hwq, ac, atomic_read(&trans_pcie->
454 queue_stop_count[ac]), msg);
455 }
456 } else {
457 IWL_DEBUG_TX_QUEUES(trans, "stop hwq %d, but it is stopped/ %s",
458 hwq, msg);
459 }
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700460}
461
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700462static inline void iwl_txq_ctx_activate(struct iwl_trans_pcie *trans_pcie,
463 int txq_id)
464{
465 set_bit(txq_id, &trans_pcie->txq_ctx_active_msk);
466}
467
468static inline void iwl_txq_ctx_deactivate(struct iwl_trans_pcie *trans_pcie,
469 int txq_id)
470{
471 clear_bit(txq_id, &trans_pcie->txq_ctx_active_msk);
472}
473
474static inline int iwl_queue_used(const struct iwl_queue *q, int i)
475{
476 return q->write_ptr >= q->read_ptr ?
477 (i >= q->read_ptr && i < q->write_ptr) :
478 !(i < q->read_ptr && i >= q->write_ptr);
479}
480
481static inline u8 get_cmd_index(struct iwl_queue *q, u32 index)
482{
483 return index & (q->n_window - 1);
484}
485
Emmanuel Grumbach7a10e3e42011-09-06 09:31:21 -0700486#define IWL_TX_FIFO_BK 0 /* shared */
487#define IWL_TX_FIFO_BE 1
488#define IWL_TX_FIFO_VI 2 /* shared */
489#define IWL_TX_FIFO_VO 3
490#define IWL_TX_FIFO_BK_IPAN IWL_TX_FIFO_BK
491#define IWL_TX_FIFO_BE_IPAN 4
492#define IWL_TX_FIFO_VI_IPAN IWL_TX_FIFO_VI
493#define IWL_TX_FIFO_VO_IPAN 5
494/* re-uses the VO FIFO, uCode will properly flush/schedule */
495#define IWL_TX_FIFO_AUX 5
496#define IWL_TX_FIFO_UNUSED -1
497
498/* AUX (TX during scan dwell) queue */
499#define IWL_AUX_QUEUE 10
500
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700501#endif /* __iwl_trans_int_pcie_h__ */