blob: 17f65dc894727f18d1c4029966ef56a0d8604bda [file] [log] [blame]
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001/******************************************************************************
2 *
Ilan Peerfc8a3502015-05-13 14:34:07 +03003 * Copyright(c) 2003 - 2015 Intel Corporation. All rights reserved.
4 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07005 *
6 * Portions of this file are derived from the ipw3945 project, as well
7 * as portions of the ieee80211 subsystem header files.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
21 *
22 * The full GNU General Public License is included in this distribution in the
23 * file called LICENSE.
24 *
25 * Contact Information:
26 * Intel Linux Wireless <ilw@linux.intel.com>
27 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28 *
29 *****************************************************************************/
30#ifndef __iwl_trans_int_pcie_h__
31#define __iwl_trans_int_pcie_h__
32
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070033#include <linux/spinlock.h>
34#include <linux/interrupt.h>
35#include <linux/skbuff.h>
Johannes Berg13df1aa2012-03-06 13:31:00 -080036#include <linux/wait.h>
Emmanuel Grumbach522376d2011-09-06 09:31:19 -070037#include <linux/pci.h>
Johannes Berg7c5ba4a2012-04-09 17:46:54 -070038#include <linux/timer.h>
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070039
Emmanuel Grumbachdda61a42011-08-25 23:11:11 -070040#include "iwl-fh.h"
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070041#include "iwl-csr.h"
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070042#include "iwl-trans.h"
43#include "iwl-debug.h"
44#include "iwl-io.h"
Emmanuel Grumbach02e38352012-02-09 16:08:15 +020045#include "iwl-op-mode.h"
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070046
Sara Sharon5f175702015-04-28 12:56:54 +030047/*
48 * RX related structures and functions
49 */
50#define RX_NUM_QUEUES 1
51#define RX_POST_REQ_ALLOC 2
52#define RX_CLAIM_REQ_ALLOC 8
53#define RX_POOL_SIZE ((RX_CLAIM_REQ_ALLOC - RX_POST_REQ_ALLOC) * RX_NUM_QUEUES)
54#define RX_LOW_WATERMARK 8
55
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -070056struct iwl_host_cmd;
Emmanuel Grumbachdda61a42011-08-25 23:11:11 -070057
Emmanuel Grumbachab697a92011-07-11 07:35:34 -070058/*This file includes the declaration that are internal to the
59 * trans_pcie layer */
60
Johannes Berg48a2d662012-03-05 11:24:39 -080061struct iwl_rx_mem_buffer {
62 dma_addr_t page_dma;
63 struct page *page;
64 struct list_head list;
65};
66
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070067/**
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -070068 * struct isr_statistics - interrupt statistics
69 *
70 */
71struct isr_statistics {
72 u32 hw;
73 u32 sw;
74 u32 err_code;
75 u32 sch;
76 u32 alive;
77 u32 rfkill;
78 u32 ctkill;
79 u32 wakeup;
80 u32 rx;
81 u32 tx;
82 u32 unhandled;
83};
84
85/**
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +020086 * struct iwl_rxq - Rx queue
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -070087 * @bd: driver's pointer to buffer of receive buffer descriptors (rbd)
88 * @bd_dma: bus address of buffer of receive buffer descriptors (rbd)
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -070089 * @read: Shared index to newest available Rx buffer
90 * @write: Shared index to oldest written Rx packet
91 * @free_count: Number of pre-allocated buffers in rx_free
Sara Sharon5f175702015-04-28 12:56:54 +030092 * @used_count: Number of RBDs handled to allocator to use for allocation
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -070093 * @write_actual:
Sara Sharon5f175702015-04-28 12:56:54 +030094 * @rx_free: list of RBDs with allocated RB ready for use
95 * @rx_used: list of RBDs with no RB attached
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -070096 * @need_update: flag to indicate we need to update read/write index
97 * @rb_stts: driver's pointer to receive buffer status
98 * @rb_stts_dma: bus address of receive buffer status
99 * @lock:
Sara Sharon5f175702015-04-28 12:56:54 +0300100 * @pool: initial pool of iwl_rx_mem_buffer for the queue
101 * @queue: actual rx queue
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700102 *
103 * NOTE: rx_free and rx_used are used as a FIFO for iwl_rx_mem_buffers
104 */
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200105struct iwl_rxq {
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700106 __le32 *bd;
107 dma_addr_t bd_dma;
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700108 u32 read;
109 u32 write;
110 u32 free_count;
Sara Sharon5f175702015-04-28 12:56:54 +0300111 u32 used_count;
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700112 u32 write_actual;
113 struct list_head rx_free;
114 struct list_head rx_used;
Johannes Berg5d63f922014-02-27 11:20:07 +0100115 bool need_update;
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700116 struct iwl_rb_status *rb_stts;
117 dma_addr_t rb_stts_dma;
118 spinlock_t lock;
Sara Sharon5f175702015-04-28 12:56:54 +0300119 struct iwl_rx_mem_buffer pool[RX_QUEUE_SIZE];
120 struct iwl_rx_mem_buffer *queue[RX_QUEUE_SIZE];
121};
122
123/**
124 * struct iwl_rb_allocator - Rx allocator
125 * @pool: initial pool of allocator
126 * @req_pending: number of requests the allcator had not processed yet
127 * @req_ready: number of requests honored and ready for claiming
128 * @rbd_allocated: RBDs with pages allocated and ready to be handled to
129 * the queue. This is a list of &struct iwl_rx_mem_buffer
130 * @rbd_empty: RBDs with no page attached for allocator use. This is a list
131 * of &struct iwl_rx_mem_buffer
132 * @lock: protects the rbd_allocated and rbd_empty lists
133 * @alloc_wq: work queue for background calls
134 * @rx_alloc: work struct for background calls
135 */
136struct iwl_rb_allocator {
137 struct iwl_rx_mem_buffer pool[RX_POOL_SIZE];
138 atomic_t req_pending;
139 atomic_t req_ready;
140 struct list_head rbd_allocated;
141 struct list_head rbd_empty;
142 spinlock_t lock;
143 struct workqueue_struct *alloc_wq;
144 struct work_struct rx_alloc;
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700145};
146
Emmanuel Grumbacha72b8b02011-08-25 23:11:13 -0700147struct iwl_dma_ptr {
148 dma_addr_t dma;
149 void *addr;
150 size_t size;
151};
152
Johannes Bergbffc66c2012-03-05 11:24:42 -0800153/**
154 * iwl_queue_inc_wrap - increment queue index, wrap back to beginning
155 * @index -- current index
Johannes Bergbffc66c2012-03-05 11:24:42 -0800156 */
Johannes Berg83f32a42014-04-24 09:57:40 +0200157static inline int iwl_queue_inc_wrap(int index)
Johannes Bergbffc66c2012-03-05 11:24:42 -0800158{
Johannes Berg83f32a42014-04-24 09:57:40 +0200159 return ++index & (TFD_QUEUE_SIZE_MAX - 1);
Johannes Bergbffc66c2012-03-05 11:24:42 -0800160}
161
162/**
163 * iwl_queue_dec_wrap - decrement queue index, wrap back to end
164 * @index -- current index
Johannes Bergbffc66c2012-03-05 11:24:42 -0800165 */
Johannes Berg83f32a42014-04-24 09:57:40 +0200166static inline int iwl_queue_dec_wrap(int index)
Johannes Bergbffc66c2012-03-05 11:24:42 -0800167{
Johannes Berg83f32a42014-04-24 09:57:40 +0200168 return --index & (TFD_QUEUE_SIZE_MAX - 1);
Johannes Bergbffc66c2012-03-05 11:24:42 -0800169}
170
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700171struct iwl_cmd_meta {
172 /* only for SYNC commands, iff the reply skb is wanted */
173 struct iwl_host_cmd *source;
Johannes Bergc14c7372012-04-16 14:48:08 -0700174 u32 flags;
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700175};
176
177/*
178 * Generic queue structure
179 *
180 * Contains common data for Rx and Tx queues.
181 *
Johannes Berg83f32a42014-04-24 09:57:40 +0200182 * Note the difference between TFD_QUEUE_SIZE_MAX and n_window: the hardware
183 * always assumes 256 descriptors, so TFD_QUEUE_SIZE_MAX is always 256 (unless
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700184 * there might be HW changes in the future). For the normal TX
185 * queues, n_window, which is the size of the software queue data
186 * is also 256; however, for the command queue, n_window is only
187 * 32 since we don't need so many commands pending. Since the HW
Johannes Berg83f32a42014-04-24 09:57:40 +0200188 * still uses 256 BDs for DMA though, TFD_QUEUE_SIZE_MAX stays 256. As a result,
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700189 * the software buffers (in the variables @meta, @txb in struct
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200190 * iwl_txq) only have 32 entries, while the HW buffers (@tfds in
191 * the same struct) have 256.
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700192 * This means that we end up with the following:
193 * HW entries: | 0 | ... | N * 32 | ... | N * 32 + 31 | ... | 255 |
194 * SW entries: | 0 | ... | 31 |
195 * where N is a number between 0 and 7. This means that the SW
196 * data is a window overlayed over the HW queue.
197 */
198struct iwl_queue {
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700199 int write_ptr; /* 1-st empty entry (index) host_w*/
200 int read_ptr; /* last used entry (index) host_r*/
201 /* use for monitoring and recovering the stuck queue */
202 dma_addr_t dma_addr; /* physical addr for BD's */
203 int n_window; /* safe queue window */
204 u32 id;
205 int low_mark; /* low watermark, resume queue if free
206 * space more than this */
207 int high_mark; /* high watermark, stop queue if free
208 * space less than this */
209};
210
Johannes Bergbf8440e2012-03-19 17:12:06 +0100211#define TFD_TX_CMD_SLOTS 256
212#define TFD_CMD_SLOTS 32
213
Johannes Berg8a964f42013-02-25 16:01:34 +0100214/*
215 * The FH will write back to the first TB only, so we need
216 * to copy some data into the buffer regardless of whether
Johannes Berg38c0f3342013-02-27 13:18:50 +0100217 * it should be mapped or not. This indicates how big the
218 * first TB must be to include the scratch buffer. Since
219 * the scratch is 4 bytes at offset 12, it's 16 now. If we
220 * make it bigger then allocations will be bigger and copy
221 * slower, so that's probably not useful.
Johannes Berg8a964f42013-02-25 16:01:34 +0100222 */
Johannes Berg38c0f3342013-02-27 13:18:50 +0100223#define IWL_HCMD_SCRATCHBUF_SIZE 16
Johannes Berg8a964f42013-02-25 16:01:34 +0100224
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200225struct iwl_pcie_txq_entry {
Johannes Bergbf8440e2012-03-19 17:12:06 +0100226 struct iwl_device_cmd *cmd;
227 struct sk_buff *skb;
Johannes Bergf4feb8a2012-10-19 14:24:43 +0200228 /* buffer to free after command completes */
229 const void *free_buf;
Johannes Bergbf8440e2012-03-19 17:12:06 +0100230 struct iwl_cmd_meta meta;
231};
232
Johannes Berg38c0f3342013-02-27 13:18:50 +0100233struct iwl_pcie_txq_scratch_buf {
234 struct iwl_cmd_header hdr;
235 u8 buf[8];
236 __le32 scratch;
237};
238
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700239/**
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200240 * struct iwl_txq - Tx Queue for DMA
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700241 * @q: generic Rx/Tx queue descriptor
Johannes Bergbf8440e2012-03-19 17:12:06 +0100242 * @tfds: transmit frame descriptors (DMA memory)
Johannes Berg38c0f3342013-02-27 13:18:50 +0100243 * @scratchbufs: start of command headers, including scratch buffers, for
244 * the writeback -- this is DMA memory and an array holding one buffer
245 * for each command on the queue
246 * @scratchbufs_dma: DMA address for the scratchbufs start
Johannes Bergbf8440e2012-03-19 17:12:06 +0100247 * @entries: transmit entries (driver state)
248 * @lock: queue lock
249 * @stuck_timer: timer that fires if queue gets stuck
250 * @trans_pcie: pointer back to transport (for timer)
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700251 * @need_update: indicates need to update read/write index
Johannes Bergbf8440e2012-03-19 17:12:06 +0100252 * @active: stores if queue is active
Johannes Berg68972c42013-06-11 19:05:27 +0200253 * @ampdu: true if this queue is an ampdu queue for an specific RA/TID
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200254 * @wd_timeout: queue watchdog timeout (jiffies) - per queue
Emmanuel Grumbache0b8d402015-01-20 17:02:40 +0200255 * @frozen: tx stuck queue timer is frozen
256 * @frozen_expiry_remainder: remember how long until the timer fires
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700257 *
258 * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
259 * descriptors) and required locking structures.
260 */
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200261struct iwl_txq {
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700262 struct iwl_queue q;
263 struct iwl_tfd *tfds;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100264 struct iwl_pcie_txq_scratch_buf *scratchbufs;
265 dma_addr_t scratchbufs_dma;
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200266 struct iwl_pcie_txq_entry *entries;
Johannes Berg015c15e2012-03-05 11:24:24 -0800267 spinlock_t lock;
Emmanuel Grumbache0b8d402015-01-20 17:02:40 +0200268 unsigned long frozen_expiry_remainder;
Johannes Berg7c5ba4a2012-04-09 17:46:54 -0700269 struct timer_list stuck_timer;
270 struct iwl_trans_pcie *trans_pcie;
Johannes Berg43aa6162014-02-27 14:24:36 +0100271 bool need_update;
Emmanuel Grumbache0b8d402015-01-20 17:02:40 +0200272 bool frozen;
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700273 u8 active;
Johannes Berg68972c42013-06-11 19:05:27 +0200274 bool ampdu;
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200275 unsigned long wd_timeout;
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700276};
277
Johannes Berg38c0f3342013-02-27 13:18:50 +0100278static inline dma_addr_t
279iwl_pcie_get_scratchbuf_dma(struct iwl_txq *txq, int idx)
280{
281 return txq->scratchbufs_dma +
282 sizeof(struct iwl_pcie_txq_scratch_buf) * idx;
283}
284
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700285/**
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700286 * struct iwl_trans_pcie - PCIe transport specific data
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700287 * @rxq: all the RX queue data
Sara Sharon5f175702015-04-28 12:56:54 +0300288 * @rba: allocator for RX replenishing
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -0700289 * @drv - pointer to iwl_drv
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700290 * @trans: pointer to the generic transport area
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700291 * @scd_base_addr: scheduler sram base address in SRAM
292 * @scd_bc_tbls: pointer to the byte count table of the scheduler
Emmanuel Grumbach9d6b2cb2011-08-25 23:11:12 -0700293 * @kw: keep warm address
Emmanuel Grumbacha42a1842012-02-02 14:33:08 -0800294 * @pci_dev: basic pci-network driver stuff
295 * @hw_base: pci hardware address support
Johannes Berg13df1aa2012-03-06 13:31:00 -0800296 * @ucode_write_complete: indicates that the ucode has been copied.
297 * @ucode_write_waitq: wait queue for uCode load
Meenakshi Venkataramanc6f600f2012-03-08 11:29:12 -0800298 * @cmd_queue - command queue number
Johannes Bergb2cf4102012-04-09 17:46:51 -0700299 * @rx_buf_size_8k: 8 kB RX buffer size
Emmanuel Grumbach046db342012-12-05 15:07:54 +0200300 * @bc_table_dword: true if the BC table expects DWORD (as opposed to bytes)
Emmanuel Grumbach3a736bc2014-09-10 11:16:41 +0300301 * @scd_set_active: should the transport configure the SCD for HCMD queue
Aviya Erenfeldab021652015-06-09 16:45:52 +0300302 * @wide_cmd_header: true when ucode supports wide command header format
Johannes Bergb2cf4102012-04-09 17:46:51 -0700303 * @rx_page_order: page order for receive buffer size
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200304 * @reg_lock: protect hw register access
Emmanuel Grumbachfa9f3282015-06-11 20:45:49 +0300305 * @mutex: to protect stop_device / start_fw / start_hw
Emmanuel Grumbachb9439492013-12-22 15:09:40 +0200306 * @cmd_in_flight: true when we have a host command in flight
Emmanuel Grumbachc2d20202014-06-01 08:05:52 +0300307 * @fw_mon_phys: physical address of the buffer for the firmware monitor
308 * @fw_mon_page: points to the first page of the buffer for the firmware monitor
309 * @fw_mon_size: size of the buffer for the firmware monitor
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700310 */
311struct iwl_trans_pcie {
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200312 struct iwl_rxq rxq;
Sara Sharon5f175702015-04-28 12:56:54 +0300313 struct iwl_rb_allocator rba;
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700314 struct iwl_trans *trans;
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -0700315 struct iwl_drv *drv;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700316
Johannes Bergf14d6b32014-03-21 13:30:03 +0100317 struct net_device napi_dev;
318 struct napi_struct napi;
319
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700320 /* INT ICT Table */
321 __le32 *ict_tbl;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700322 dma_addr_t ict_tbl_dma;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700323 int ict_index;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700324 bool use_ict;
Emmanuel Grumbachfa9f3282015-06-11 20:45:49 +0300325 bool is_down;
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700326 struct isr_statistics isr_stats;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700327
Johannes Berg7b114882012-02-05 13:55:11 -0800328 spinlock_t irq_lock;
Emmanuel Grumbachfa9f3282015-06-11 20:45:49 +0300329 struct mutex mutex;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700330 u32 inta_mask;
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700331 u32 scd_base_addr;
332 struct iwl_dma_ptr scd_bc_tbls;
Emmanuel Grumbach9d6b2cb2011-08-25 23:11:12 -0700333 struct iwl_dma_ptr kw;
Emmanuel Grumbache13c0c52011-08-25 23:11:24 -0700334
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200335 struct iwl_txq *txq;
Johannes Berg9eae88f2012-03-15 13:26:52 -0700336 unsigned long queue_used[BITS_TO_LONGS(IWL_MAX_HW_QUEUES)];
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700337 unsigned long queue_stopped[BITS_TO_LONGS(IWL_MAX_HW_QUEUES)];
Emmanuel Grumbacha42a1842012-02-02 14:33:08 -0800338
339 /* PCI bus related data */
340 struct pci_dev *pci_dev;
341 void __iomem *hw_base;
Johannes Berg13df1aa2012-03-06 13:31:00 -0800342
343 bool ucode_write_complete;
344 wait_queue_head_t ucode_write_waitq;
Emmanuel Grumbachf946b522012-10-25 17:25:52 +0200345 wait_queue_head_t wait_command_queue;
346
Meenakshi Venkataramanc6f600f2012-03-08 11:29:12 -0800347 u8 cmd_queue;
Emmanuel Grumbachb04db9a2012-06-21 11:53:44 +0300348 u8 cmd_fifo;
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200349 unsigned int cmd_q_wdg_timeout;
Johannes Bergd663ee72012-03-10 13:00:07 -0800350 u8 n_no_reclaim_cmds;
351 u8 no_reclaim_cmds[MAX_NO_RECLAIM_CMDS];
Johannes Bergb2cf4102012-04-09 17:46:51 -0700352
353 bool rx_buf_size_8k;
Emmanuel Grumbach046db342012-12-05 15:07:54 +0200354 bool bc_table_dword;
Emmanuel Grumbach3a736bc2014-09-10 11:16:41 +0300355 bool scd_set_active;
Aviya Erenfeldab021652015-06-09 16:45:52 +0300356 bool wide_cmd_header;
Johannes Bergb2cf4102012-04-09 17:46:51 -0700357 u32 rx_page_order;
Johannes Berg7c5ba4a2012-04-09 17:46:54 -0700358
Johannes Berge5209262014-01-20 23:38:59 +0100359 const char *const *command_names;
Johannes Berg7c5ba4a2012-04-09 17:46:54 -0700360
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200361 /*protect hw register */
362 spinlock_t reg_lock;
Ilan Peerfc8a3502015-05-13 14:34:07 +0300363 bool cmd_hold_nic_awake;
Eliad Peller7616f332014-11-20 17:33:43 +0200364 bool ref_cmd_in_flight;
365
366 /* protect ref counter */
367 spinlock_t ref_lock;
368 u32 ref_count;
Emmanuel Grumbachc2d20202014-06-01 08:05:52 +0300369
370 dma_addr_t fw_mon_phys;
371 struct page *fw_mon_page;
372 u32 fw_mon_size;
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700373};
374
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700375#define IWL_TRANS_GET_PCIE_TRANS(_iwl_trans) \
376 ((struct iwl_trans_pcie *) ((_iwl_trans)->trans_specific))
377
Johannes Berg7c5ba4a2012-04-09 17:46:54 -0700378static inline struct iwl_trans *
379iwl_trans_pcie_get_trans(struct iwl_trans_pcie *trans_pcie)
380{
381 return container_of((void *)trans_pcie, struct iwl_trans,
382 trans_specific);
383}
384
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200385/*
386 * Convention: trans API functions: iwl_trans_pcie_XXX
387 * Other functions: iwl_pcie_XXX
388 */
Johannes Bergd1ff5252012-04-12 06:24:30 -0700389struct iwl_trans *iwl_trans_pcie_alloc(struct pci_dev *pdev,
390 const struct pci_device_id *ent,
391 const struct iwl_cfg *cfg);
392void iwl_trans_pcie_free(struct iwl_trans *trans);
393
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700394/*****************************************************
395* RX
396******************************************************/
Emmanuel Grumbach9805c4462012-11-14 14:44:18 +0200397int iwl_pcie_rx_init(struct iwl_trans *trans);
Johannes Berg2bfb5092012-12-27 21:43:48 +0100398irqreturn_t iwl_pcie_irq_handler(int irq, void *dev_id);
Emmanuel Grumbach9805c4462012-11-14 14:44:18 +0200399int iwl_pcie_rx_stop(struct iwl_trans *trans);
400void iwl_pcie_rx_free(struct iwl_trans *trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700401
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700402/*****************************************************
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200403* ICT - interrupt handling
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700404******************************************************/
Emmanuel Grumbach85bf9da2013-12-09 11:48:30 +0200405irqreturn_t iwl_pcie_isr(int irq, void *data);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200406int iwl_pcie_alloc_ict(struct iwl_trans *trans);
407void iwl_pcie_free_ict(struct iwl_trans *trans);
408void iwl_pcie_reset_ict(struct iwl_trans *trans);
409void iwl_pcie_disable_ict(struct iwl_trans *trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700410
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700411/*****************************************************
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700412* TX / HCMD
413******************************************************/
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200414int iwl_pcie_tx_init(struct iwl_trans *trans);
415void iwl_pcie_tx_start(struct iwl_trans *trans, u32 scd_base_addr);
416int iwl_pcie_tx_stop(struct iwl_trans *trans);
417void iwl_pcie_tx_free(struct iwl_trans *trans);
Johannes Bergfea77952014-08-01 11:58:47 +0200418void iwl_trans_pcie_txq_enable(struct iwl_trans *trans, int queue, u16 ssn,
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200419 const struct iwl_trans_txq_scd_cfg *cfg,
420 unsigned int wdg_timeout);
Johannes Bergd4578ea2014-08-01 12:17:40 +0200421void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int queue,
422 bool configure_scd);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200423int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,
424 struct iwl_device_cmd *dev_cmd, int txq_id);
Johannes Bergea68f462014-02-27 14:36:55 +0100425void iwl_pcie_txq_check_wrptrs(struct iwl_trans *trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200426int iwl_trans_pcie_send_hcmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200427void iwl_pcie_hcmd_complete(struct iwl_trans *trans,
Johannes Bergf7e64692015-06-23 21:58:17 +0200428 struct iwl_rx_cmd_buffer *rxb);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200429void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int txq_id, int ssn,
430 struct sk_buff_head *skbs);
Johannes Bergddaf5a52013-01-08 11:25:44 +0100431void iwl_trans_pcie_tx_reset(struct iwl_trans *trans);
432
Eliad Peller7616f332014-11-20 17:33:43 +0200433void iwl_trans_pcie_ref(struct iwl_trans *trans);
434void iwl_trans_pcie_unref(struct iwl_trans *trans);
435
Johannes Berg4d075002014-04-24 10:41:31 +0200436static inline u16 iwl_pcie_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
437{
438 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
439
440 return le16_to_cpu(tb->hi_n_len) >> 4;
441}
442
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700443/*****************************************************
444* Error handling
445******************************************************/
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200446void iwl_pcie_dump_csr(struct iwl_trans *trans);
Emmanuel Grumbach16db88b2011-08-25 23:11:08 -0700447
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700448/*****************************************************
449* Helpers
450******************************************************/
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700451static inline void iwl_disable_interrupts(struct iwl_trans *trans)
452{
Arik Nemtsoveb7ff772013-12-01 12:30:38 +0200453 clear_bit(STATUS_INT_ENABLED, &trans->status);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700454
455 /* disable interrupts from uCode/NIC to host */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200456 iwl_write32(trans, CSR_INT_MASK, 0x00000000);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700457
458 /* acknowledge/clear/reset any interrupts still pending
459 * from uCode or flow handler (Rx/Tx DMA) */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200460 iwl_write32(trans, CSR_INT, 0xffffffff);
461 iwl_write32(trans, CSR_FH_INT_STATUS, 0xffffffff);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700462 IWL_DEBUG_ISR(trans, "Disabled interrupts\n");
463}
464
465static inline void iwl_enable_interrupts(struct iwl_trans *trans)
466{
Don Fry83626402012-03-07 09:52:37 -0800467 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700468
469 IWL_DEBUG_ISR(trans, "Enabling interrupts\n");
Arik Nemtsoveb7ff772013-12-01 12:30:38 +0200470 set_bit(STATUS_INT_ENABLED, &trans->status);
Emmanuel Grumbach2dbc3682013-12-09 11:09:47 +0200471 trans_pcie->inta_mask = CSR_INI_SET_MASK;
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200472 iwl_write32(trans, CSR_INT_MASK, trans_pcie->inta_mask);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700473}
474
Stanislaw Gruszka8722c892012-03-07 09:52:28 -0800475static inline void iwl_enable_rfkill_int(struct iwl_trans *trans)
476{
Emmanuel Grumbach2dbc3682013-12-09 11:09:47 +0200477 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
478
Stanislaw Gruszka8722c892012-03-07 09:52:28 -0800479 IWL_DEBUG_ISR(trans, "Enabling rfkill interrupt\n");
Emmanuel Grumbach2dbc3682013-12-09 11:09:47 +0200480 trans_pcie->inta_mask = CSR_INT_BIT_RF_KILL;
481 iwl_write32(trans, CSR_INT_MASK, trans_pcie->inta_mask);
Stanislaw Gruszka8722c892012-03-07 09:52:28 -0800482}
483
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700484static inline void iwl_wake_queue(struct iwl_trans *trans,
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200485 struct iwl_txq *txq)
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700486{
Johannes Berg9eae88f2012-03-15 13:26:52 -0700487 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700488
Johannes Berg9eae88f2012-03-15 13:26:52 -0700489 if (test_and_clear_bit(txq->q.id, trans_pcie->queue_stopped)) {
490 IWL_DEBUG_TX_QUEUES(trans, "Wake hwq %d\n", txq->q.id);
491 iwl_op_mode_queue_not_full(trans->op_mode, txq->q.id);
Emmanuel Grumbach81a3de12011-11-10 06:55:24 -0800492 }
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700493}
494
495static inline void iwl_stop_queue(struct iwl_trans *trans,
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200496 struct iwl_txq *txq)
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700497{
Johannes Berg9eae88f2012-03-15 13:26:52 -0700498 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbache20d43412011-08-25 23:11:31 -0700499
Johannes Berg9eae88f2012-03-15 13:26:52 -0700500 if (!test_and_set_bit(txq->q.id, trans_pcie->queue_stopped)) {
501 iwl_op_mode_queue_full(trans->op_mode, txq->q.id);
502 IWL_DEBUG_TX_QUEUES(trans, "Stop hwq %d\n", txq->q.id);
503 } else
504 IWL_DEBUG_TX_QUEUES(trans, "hwq %d already stopped\n",
505 txq->q.id);
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700506}
507
Emmanuel Grumbach6ca6ebc2012-11-14 23:38:08 +0200508static inline bool iwl_queue_used(const struct iwl_queue *q, int i)
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -0700509{
510 return q->write_ptr >= q->read_ptr ?
511 (i >= q->read_ptr && i < q->write_ptr) :
512 !(i < q->read_ptr && i >= q->write_ptr);
513}
514
515static inline u8 get_cmd_index(struct iwl_queue *q, u32 index)
516{
517 return index & (q->n_window - 1);
518}
519
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200520static inline const char *get_cmd_string(struct iwl_trans_pcie *trans_pcie,
521 u8 cmd)
Johannes Bergd9fb6462012-03-26 08:23:39 -0700522{
523 if (!trans_pcie->command_names || !trans_pcie->command_names[cmd])
524 return "UNKNOWN";
525 return trans_pcie->command_names[cmd];
526}
527
Emmanuel Grumbach8d425512012-03-28 11:00:58 +0200528static inline bool iwl_is_rfkill_set(struct iwl_trans *trans)
529{
530 return !(iwl_read32(trans, CSR_GP_CNTRL) &
531 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW);
532}
533
Emmanuel Grumbachb9439492013-12-22 15:09:40 +0200534static inline void __iwl_trans_pcie_set_bits_mask(struct iwl_trans *trans,
535 u32 reg, u32 mask, u32 value)
536{
537 u32 v;
538
539#ifdef CONFIG_IWLWIFI_DEBUG
540 WARN_ON_ONCE(value & ~mask);
541#endif
542
543 v = iwl_read32(trans, reg);
544 v &= ~mask;
545 v |= value;
546 iwl_write32(trans, reg, v);
547}
548
549static inline void __iwl_trans_pcie_clear_bit(struct iwl_trans *trans,
550 u32 reg, u32 mask)
551{
552 __iwl_trans_pcie_set_bits_mask(trans, reg, mask, 0);
553}
554
555static inline void __iwl_trans_pcie_set_bit(struct iwl_trans *trans,
556 u32 reg, u32 mask)
557{
558 __iwl_trans_pcie_set_bits_mask(trans, reg, mask, mask);
559}
560
Johannes Berg14cfca72014-02-25 20:50:53 +0100561void iwl_trans_pcie_rf_kill(struct iwl_trans *trans, bool state);
562
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700563#endif /* __iwl_trans_int_pcie_h__ */