Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Wey-Yi Guy | 4e31826 | 2011-12-27 11:21:32 -0800 | [diff] [blame] | 3 | * Copyright(c) 2003 - 2012 Intel Corporation. All rights reserved. |
Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 4 | * |
| 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 Grumbach | a72b8b0 | 2011-08-25 23:11:13 -0700 | [diff] [blame] | 32 | #include <linux/spinlock.h> |
| 33 | #include <linux/interrupt.h> |
| 34 | #include <linux/skbuff.h> |
Johannes Berg | 13df1aa | 2012-03-06 13:31:00 -0800 | [diff] [blame] | 35 | #include <linux/wait.h> |
Emmanuel Grumbach | 522376d | 2011-09-06 09:31:19 -0700 | [diff] [blame] | 36 | #include <linux/pci.h> |
Emmanuel Grumbach | a72b8b0 | 2011-08-25 23:11:13 -0700 | [diff] [blame] | 37 | |
Emmanuel Grumbach | dda61a4 | 2011-08-25 23:11:11 -0700 | [diff] [blame] | 38 | #include "iwl-fh.h" |
Emmanuel Grumbach | a72b8b0 | 2011-08-25 23:11:13 -0700 | [diff] [blame] | 39 | #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 Grumbach | 02e3835 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 44 | #include "iwl-op-mode.h" |
Emmanuel Grumbach | a72b8b0 | 2011-08-25 23:11:13 -0700 | [diff] [blame] | 45 | |
| 46 | struct iwl_tx_queue; |
| 47 | struct iwl_queue; |
| 48 | struct iwl_host_cmd; |
Emmanuel Grumbach | dda61a4 | 2011-08-25 23:11:11 -0700 | [diff] [blame] | 49 | |
Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 50 | /*This file includes the declaration that are internal to the |
| 51 | * trans_pcie layer */ |
| 52 | |
Johannes Berg | 48a2d66 | 2012-03-05 11:24:39 -0800 | [diff] [blame] | 53 | struct iwl_rx_mem_buffer { |
| 54 | dma_addr_t page_dma; |
| 55 | struct page *page; |
| 56 | struct list_head list; |
| 57 | }; |
| 58 | |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 59 | /** |
Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 60 | * struct isr_statistics - interrupt statistics |
| 61 | * |
| 62 | */ |
| 63 | struct 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 Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 78 | * 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 | */ |
| 96 | struct 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 Grumbach | a72b8b0 | 2011-08-25 23:11:13 -0700 | [diff] [blame] | 113 | struct iwl_dma_ptr { |
| 114 | dma_addr_t dma; |
| 115 | void *addr; |
| 116 | size_t size; |
| 117 | }; |
| 118 | |
Johannes Berg | bffc66c | 2012-03-05 11:24:42 -0800 | [diff] [blame] | 119 | /** |
| 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 | */ |
| 124 | static 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 | */ |
| 134 | static inline int iwl_queue_dec_wrap(int index, int n_bd) |
| 135 | { |
| 136 | return --index & (n_bd - 1); |
| 137 | } |
| 138 | |
Emmanuel Grumbach | 522376d | 2011-09-06 09:31:19 -0700 | [diff] [blame] | 139 | struct iwl_cmd_meta { |
| 140 | /* only for SYNC commands, iff the reply skb is wanted */ |
| 141 | struct iwl_host_cmd *source; |
Emmanuel Grumbach | 522376d | 2011-09-06 09:31:19 -0700 | [diff] [blame] | 142 | |
| 143 | u32 flags; |
| 144 | |
| 145 | DEFINE_DMA_UNMAP_ADDR(mapping); |
| 146 | DEFINE_DMA_UNMAP_LEN(len); |
| 147 | }; |
| 148 | |
| 149 | /* |
| 150 | * Generic queue structure |
| 151 | * |
| 152 | * Contains common data for Rx and Tx queues. |
| 153 | * |
| 154 | * Note the difference between n_bd and n_window: the hardware |
| 155 | * always assumes 256 descriptors, so n_bd is always 256 (unless |
| 156 | * there might be HW changes in the future). For the normal TX |
| 157 | * queues, n_window, which is the size of the software queue data |
| 158 | * is also 256; however, for the command queue, n_window is only |
| 159 | * 32 since we don't need so many commands pending. Since the HW |
| 160 | * still uses 256 BDs for DMA though, n_bd stays 256. As a result, |
| 161 | * the software buffers (in the variables @meta, @txb in struct |
| 162 | * iwl_tx_queue) only have 32 entries, while the HW buffers (@tfds |
| 163 | * in the same struct) have 256. |
| 164 | * This means that we end up with the following: |
| 165 | * HW entries: | 0 | ... | N * 32 | ... | N * 32 + 31 | ... | 255 | |
| 166 | * SW entries: | 0 | ... | 31 | |
| 167 | * where N is a number between 0 and 7. This means that the SW |
| 168 | * data is a window overlayed over the HW queue. |
| 169 | */ |
| 170 | struct iwl_queue { |
| 171 | int n_bd; /* number of BDs in this queue */ |
| 172 | int write_ptr; /* 1-st empty entry (index) host_w*/ |
| 173 | int read_ptr; /* last used entry (index) host_r*/ |
| 174 | /* use for monitoring and recovering the stuck queue */ |
| 175 | dma_addr_t dma_addr; /* physical addr for BD's */ |
| 176 | int n_window; /* safe queue window */ |
| 177 | u32 id; |
| 178 | int low_mark; /* low watermark, resume queue if free |
| 179 | * space more than this */ |
| 180 | int high_mark; /* high watermark, stop queue if free |
| 181 | * space less than this */ |
| 182 | }; |
| 183 | |
| 184 | /** |
| 185 | * struct iwl_tx_queue - Tx Queue for DMA |
| 186 | * @q: generic Rx/Tx queue descriptor |
| 187 | * @bd: base of circular buffer of TFDs |
| 188 | * @cmd: array of command/TX buffer pointers |
| 189 | * @meta: array of meta data for each command/tx buffer |
| 190 | * @dma_addr_cmd: physical address of cmd/tx buffer array |
| 191 | * @txb: array of per-TFD driver data |
Johannes Berg | 015c15e | 2012-03-05 11:24:24 -0800 | [diff] [blame] | 192 | * lock: queue lock |
Emmanuel Grumbach | 522376d | 2011-09-06 09:31:19 -0700 | [diff] [blame] | 193 | * @time_stamp: time (in jiffies) of last read_ptr change |
| 194 | * @need_update: indicates need to update read/write index |
Emmanuel Grumbach | 522376d | 2011-09-06 09:31:19 -0700 | [diff] [blame] | 195 | * |
| 196 | * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame |
| 197 | * descriptors) and required locking structures. |
| 198 | */ |
| 199 | #define TFD_TX_CMD_SLOTS 256 |
| 200 | #define TFD_CMD_SLOTS 32 |
| 201 | |
| 202 | struct iwl_tx_queue { |
| 203 | struct iwl_queue q; |
| 204 | struct iwl_tfd *tfds; |
| 205 | struct iwl_device_cmd **cmd; |
| 206 | struct iwl_cmd_meta *meta; |
| 207 | struct sk_buff **skbs; |
Johannes Berg | 015c15e | 2012-03-05 11:24:24 -0800 | [diff] [blame] | 208 | spinlock_t lock; |
Emmanuel Grumbach | 522376d | 2011-09-06 09:31:19 -0700 | [diff] [blame] | 209 | unsigned long time_stamp; |
| 210 | u8 need_update; |
Emmanuel Grumbach | 522376d | 2011-09-06 09:31:19 -0700 | [diff] [blame] | 211 | u8 active; |
Emmanuel Grumbach | 522376d | 2011-09-06 09:31:19 -0700 | [diff] [blame] | 212 | }; |
| 213 | |
Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 214 | /** |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 215 | * struct iwl_trans_pcie - PCIe transport specific data |
Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 216 | * @rxq: all the RX queue data |
| 217 | * @rx_replenish: work that will be called when buffers need to be allocated |
| 218 | * @trans: pointer to the generic transport area |
Johannes Berg | 7559553 | 2012-03-06 13:31:01 -0800 | [diff] [blame] | 219 | * @irq - the irq number for the device |
Emmanuel Grumbach | 57a1dc8 | 2012-01-08 13:22:16 +0200 | [diff] [blame] | 220 | * @irq_requested: true when the irq has been requested |
Emmanuel Grumbach | 105183b | 2011-08-25 23:11:02 -0700 | [diff] [blame] | 221 | * @scd_base_addr: scheduler sram base address in SRAM |
| 222 | * @scd_bc_tbls: pointer to the byte count table of the scheduler |
Emmanuel Grumbach | 9d6b2cb | 2011-08-25 23:11:12 -0700 | [diff] [blame] | 223 | * @kw: keep warm address |
Emmanuel Grumbach | a42a184 | 2012-02-02 14:33:08 -0800 | [diff] [blame] | 224 | * @pci_dev: basic pci-network driver stuff |
| 225 | * @hw_base: pci hardware address support |
Johannes Berg | 13df1aa | 2012-03-06 13:31:00 -0800 | [diff] [blame] | 226 | * @ucode_write_complete: indicates that the ucode has been copied. |
| 227 | * @ucode_write_waitq: wait queue for uCode load |
Don Fry | 9a71686 | 2012-03-07 09:52:32 -0800 | [diff] [blame] | 228 | * @status - transport specific status flags |
Meenakshi Venkataraman | c6f600f | 2012-03-08 11:29:12 -0800 | [diff] [blame] | 229 | * @cmd_queue - command queue number |
Johannes Berg | b2cf410 | 2012-04-09 17:46:51 -0700 | [diff] [blame^] | 230 | * @rx_buf_size_8k: 8 kB RX buffer size |
| 231 | * @rx_page_order: page order for receive buffer size |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 232 | */ |
| 233 | struct iwl_trans_pcie { |
Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 234 | struct iwl_rx_queue rxq; |
| 235 | struct work_struct rx_replenish; |
| 236 | struct iwl_trans *trans; |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 237 | |
| 238 | /* INT ICT Table */ |
| 239 | __le32 *ict_tbl; |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 240 | dma_addr_t ict_tbl_dma; |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 241 | int ict_index; |
| 242 | u32 inta; |
| 243 | bool use_ict; |
Emmanuel Grumbach | 57a1dc8 | 2012-01-08 13:22:16 +0200 | [diff] [blame] | 244 | bool irq_requested; |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 245 | struct tasklet_struct irq_tasklet; |
Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 246 | struct isr_statistics isr_stats; |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 247 | |
Johannes Berg | 7559553 | 2012-03-06 13:31:01 -0800 | [diff] [blame] | 248 | unsigned int irq; |
Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 249 | spinlock_t irq_lock; |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 250 | u32 inta_mask; |
Emmanuel Grumbach | 105183b | 2011-08-25 23:11:02 -0700 | [diff] [blame] | 251 | u32 scd_base_addr; |
| 252 | struct iwl_dma_ptr scd_bc_tbls; |
Emmanuel Grumbach | 9d6b2cb | 2011-08-25 23:11:12 -0700 | [diff] [blame] | 253 | struct iwl_dma_ptr kw; |
Emmanuel Grumbach | e13c0c5 | 2011-08-25 23:11:24 -0700 | [diff] [blame] | 254 | |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 255 | struct iwl_tx_queue *txq; |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 256 | unsigned long queue_used[BITS_TO_LONGS(IWL_MAX_HW_QUEUES)]; |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 257 | unsigned long queue_stopped[BITS_TO_LONGS(IWL_MAX_HW_QUEUES)]; |
Emmanuel Grumbach | a42a184 | 2012-02-02 14:33:08 -0800 | [diff] [blame] | 258 | |
| 259 | /* PCI bus related data */ |
| 260 | struct pci_dev *pci_dev; |
| 261 | void __iomem *hw_base; |
Johannes Berg | 13df1aa | 2012-03-06 13:31:00 -0800 | [diff] [blame] | 262 | |
| 263 | bool ucode_write_complete; |
| 264 | wait_queue_head_t ucode_write_waitq; |
Don Fry | 9a71686 | 2012-03-07 09:52:32 -0800 | [diff] [blame] | 265 | unsigned long status; |
Meenakshi Venkataraman | c6f600f | 2012-03-08 11:29:12 -0800 | [diff] [blame] | 266 | u8 cmd_queue; |
Johannes Berg | d663ee7 | 2012-03-10 13:00:07 -0800 | [diff] [blame] | 267 | u8 n_no_reclaim_cmds; |
| 268 | u8 no_reclaim_cmds[MAX_NO_RECLAIM_CMDS]; |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 269 | u8 setup_q_to_fifo[IWL_MAX_HW_QUEUES]; |
| 270 | u8 n_q_to_fifo; |
Johannes Berg | b2cf410 | 2012-04-09 17:46:51 -0700 | [diff] [blame^] | 271 | |
| 272 | bool rx_buf_size_8k; |
| 273 | u32 rx_page_order; |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 274 | }; |
| 275 | |
Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 276 | #define IWL_TRANS_GET_PCIE_TRANS(_iwl_trans) \ |
| 277 | ((struct iwl_trans_pcie *) ((_iwl_trans)->trans_specific)) |
| 278 | |
Emmanuel Grumbach | 253a634 | 2011-07-11 07:39:46 -0700 | [diff] [blame] | 279 | /***************************************************** |
| 280 | * RX |
| 281 | ******************************************************/ |
Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 282 | void iwl_bg_rx_replenish(struct work_struct *data); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 283 | void iwl_irq_tasklet(struct iwl_trans *trans); |
Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 284 | void iwlagn_rx_replenish(struct iwl_trans *trans); |
| 285 | void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans, |
Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 286 | struct iwl_rx_queue *q); |
| 287 | |
Emmanuel Grumbach | 253a634 | 2011-07-11 07:39:46 -0700 | [diff] [blame] | 288 | /***************************************************** |
Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 289 | * ICT |
| 290 | ******************************************************/ |
Emmanuel Grumbach | ed6a380 | 2012-01-02 16:10:08 +0200 | [diff] [blame] | 291 | void iwl_reset_ict(struct iwl_trans *trans); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 292 | void iwl_disable_ict(struct iwl_trans *trans); |
| 293 | int iwl_alloc_isr_ict(struct iwl_trans *trans); |
| 294 | void iwl_free_isr_ict(struct iwl_trans *trans); |
Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 295 | irqreturn_t iwl_isr_ict(int irq, void *data); |
| 296 | |
Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 297 | /***************************************************** |
Emmanuel Grumbach | 253a634 | 2011-07-11 07:39:46 -0700 | [diff] [blame] | 298 | * TX / HCMD |
| 299 | ******************************************************/ |
Emmanuel Grumbach | fd65693 | 2011-08-25 23:11:19 -0700 | [diff] [blame] | 300 | void iwl_txq_update_write_ptr(struct iwl_trans *trans, |
| 301 | struct iwl_tx_queue *txq); |
Emmanuel Grumbach | 6d8f6ee | 2011-08-25 23:11:06 -0700 | [diff] [blame] | 302 | int iwlagn_txq_attach_buf_to_tfd(struct iwl_trans *trans, |
Emmanuel Grumbach | 253a634 | 2011-07-11 07:39:46 -0700 | [diff] [blame] | 303 | struct iwl_tx_queue *txq, |
| 304 | dma_addr_t addr, u16 len, u8 reset); |
Emmanuel Grumbach | 6d8f6ee | 2011-08-25 23:11:06 -0700 | [diff] [blame] | 305 | int iwl_queue_init(struct iwl_queue *q, int count, int slots_num, u32 id); |
| 306 | int iwl_trans_pcie_send_cmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd); |
Emmanuel Grumbach | 3e10cae | 2011-09-06 09:31:18 -0700 | [diff] [blame] | 307 | void iwl_tx_cmd_complete(struct iwl_trans *trans, |
Johannes Berg | 48a2d66 | 2012-03-05 11:24:39 -0800 | [diff] [blame] | 308 | struct iwl_rx_cmd_buffer *rxb, int handler_status); |
Emmanuel Grumbach | 6d8f6ee | 2011-08-25 23:11:06 -0700 | [diff] [blame] | 309 | void iwl_trans_txq_update_byte_cnt_tbl(struct iwl_trans *trans, |
Emmanuel Grumbach | 48d42c4 | 2011-07-10 10:47:01 +0300 | [diff] [blame] | 310 | struct iwl_tx_queue *txq, |
| 311 | u16 byte_cnt); |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 312 | void iwl_trans_pcie_tx_agg_disable(struct iwl_trans *trans, int queue); |
Emmanuel Grumbach | 6d8f6ee | 2011-08-25 23:11:06 -0700 | [diff] [blame] | 313 | void iwl_trans_set_wr_ptrs(struct iwl_trans *trans, int txq_id, u32 index); |
Emmanuel Grumbach | c91bd12 | 2011-08-25 23:11:28 -0700 | [diff] [blame] | 314 | void iwl_trans_tx_queue_set_status(struct iwl_trans *trans, |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 315 | struct iwl_tx_queue *txq, |
| 316 | int tx_fifo_id, bool active); |
| 317 | void iwl_trans_pcie_tx_agg_setup(struct iwl_trans *trans, int queue, int fifo, |
Emmanuel Grumbach | 822e8b2 | 2011-11-21 13:25:31 +0200 | [diff] [blame] | 318 | int sta_id, int tid, int frame_limit, u16 ssn); |
Emmanuel Grumbach | 6d8f6ee | 2011-08-25 23:11:06 -0700 | [diff] [blame] | 319 | void iwlagn_txq_free_tfd(struct iwl_trans *trans, struct iwl_tx_queue *txq, |
Emmanuel Grumbach | 39644e9 | 2011-09-15 11:46:29 -0700 | [diff] [blame] | 320 | int index, enum dma_data_direction dma_dir); |
Emmanuel Grumbach | 464021f | 2011-08-25 23:11:26 -0700 | [diff] [blame] | 321 | int iwl_tx_queue_reclaim(struct iwl_trans *trans, int txq_id, int index, |
| 322 | struct sk_buff_head *skbs); |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 323 | int iwl_queue_space(const struct iwl_queue *q); |
Emmanuel Grumbach | 253a634 | 2011-07-11 07:39:46 -0700 | [diff] [blame] | 324 | |
Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 325 | /***************************************************** |
| 326 | * Error handling |
| 327 | ******************************************************/ |
Emmanuel Grumbach | 16db88b | 2011-08-25 23:11:08 -0700 | [diff] [blame] | 328 | int iwl_dump_fh(struct iwl_trans *trans, char **buf, bool display); |
| 329 | void iwl_dump_csr(struct iwl_trans *trans); |
| 330 | |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 331 | /***************************************************** |
| 332 | * Helpers |
| 333 | ******************************************************/ |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 334 | static inline void iwl_disable_interrupts(struct iwl_trans *trans) |
| 335 | { |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 336 | struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); |
| 337 | clear_bit(STATUS_INT_ENABLED, &trans_pcie->status); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 338 | |
| 339 | /* disable interrupts from uCode/NIC to host */ |
Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 340 | iwl_write32(trans, CSR_INT_MASK, 0x00000000); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 341 | |
| 342 | /* acknowledge/clear/reset any interrupts still pending |
| 343 | * from uCode or flow handler (Rx/Tx DMA) */ |
Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 344 | iwl_write32(trans, CSR_INT, 0xffffffff); |
| 345 | iwl_write32(trans, CSR_FH_INT_STATUS, 0xffffffff); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 346 | IWL_DEBUG_ISR(trans, "Disabled interrupts\n"); |
| 347 | } |
| 348 | |
| 349 | static inline void iwl_enable_interrupts(struct iwl_trans *trans) |
| 350 | { |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 351 | struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 352 | |
| 353 | IWL_DEBUG_ISR(trans, "Enabling interrupts\n"); |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 354 | set_bit(STATUS_INT_ENABLED, &trans_pcie->status); |
Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 355 | iwl_write32(trans, CSR_INT_MASK, trans_pcie->inta_mask); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 356 | } |
| 357 | |
Stanislaw Gruszka | 8722c89 | 2012-03-07 09:52:28 -0800 | [diff] [blame] | 358 | static inline void iwl_enable_rfkill_int(struct iwl_trans *trans) |
| 359 | { |
| 360 | IWL_DEBUG_ISR(trans, "Enabling rfkill interrupt\n"); |
| 361 | iwl_write32(trans, CSR_INT_MASK, CSR_INT_BIT_RF_KILL); |
| 362 | } |
| 363 | |
Emmanuel Grumbach | e20d4341 | 2011-08-25 23:11:31 -0700 | [diff] [blame] | 364 | static inline void iwl_wake_queue(struct iwl_trans *trans, |
Johannes Berg | bada991 | 2012-03-07 09:52:39 -0800 | [diff] [blame] | 365 | struct iwl_tx_queue *txq) |
Emmanuel Grumbach | e20d4341 | 2011-08-25 23:11:31 -0700 | [diff] [blame] | 366 | { |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 367 | struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); |
Emmanuel Grumbach | e20d4341 | 2011-08-25 23:11:31 -0700 | [diff] [blame] | 368 | |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 369 | if (test_and_clear_bit(txq->q.id, trans_pcie->queue_stopped)) { |
| 370 | IWL_DEBUG_TX_QUEUES(trans, "Wake hwq %d\n", txq->q.id); |
| 371 | iwl_op_mode_queue_not_full(trans->op_mode, txq->q.id); |
Emmanuel Grumbach | 81a3de1 | 2011-11-10 06:55:24 -0800 | [diff] [blame] | 372 | } |
Emmanuel Grumbach | e20d4341 | 2011-08-25 23:11:31 -0700 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | static inline void iwl_stop_queue(struct iwl_trans *trans, |
Johannes Berg | bada991 | 2012-03-07 09:52:39 -0800 | [diff] [blame] | 376 | struct iwl_tx_queue *txq) |
Emmanuel Grumbach | e20d4341 | 2011-08-25 23:11:31 -0700 | [diff] [blame] | 377 | { |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 378 | struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); |
Emmanuel Grumbach | e20d4341 | 2011-08-25 23:11:31 -0700 | [diff] [blame] | 379 | |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 380 | if (!test_and_set_bit(txq->q.id, trans_pcie->queue_stopped)) { |
| 381 | iwl_op_mode_queue_full(trans->op_mode, txq->q.id); |
| 382 | IWL_DEBUG_TX_QUEUES(trans, "Stop hwq %d\n", txq->q.id); |
| 383 | } else |
| 384 | IWL_DEBUG_TX_QUEUES(trans, "hwq %d already stopped\n", |
| 385 | txq->q.id); |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | static inline int iwl_queue_used(const struct iwl_queue *q, int i) |
| 389 | { |
| 390 | return q->write_ptr >= q->read_ptr ? |
| 391 | (i >= q->read_ptr && i < q->write_ptr) : |
| 392 | !(i < q->read_ptr && i >= q->write_ptr); |
| 393 | } |
| 394 | |
| 395 | static inline u8 get_cmd_index(struct iwl_queue *q, u32 index) |
| 396 | { |
| 397 | return index & (q->n_window - 1); |
| 398 | } |
| 399 | |
Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 400 | #endif /* __iwl_trans_int_pcie_h__ */ |