Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved. |
| 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> |
| 35 | |
Emmanuel Grumbach | dda61a4 | 2011-08-25 23:11:11 -0700 | [diff] [blame] | 36 | #include "iwl-fh.h" |
Emmanuel Grumbach | a72b8b0 | 2011-08-25 23:11:13 -0700 | [diff] [blame] | 37 | #include "iwl-csr.h" |
| 38 | #include "iwl-shared.h" |
| 39 | #include "iwl-trans.h" |
| 40 | #include "iwl-debug.h" |
| 41 | #include "iwl-io.h" |
| 42 | |
| 43 | struct iwl_tx_queue; |
| 44 | struct iwl_queue; |
| 45 | struct iwl_host_cmd; |
Emmanuel Grumbach | dda61a4 | 2011-08-25 23:11:11 -0700 | [diff] [blame] | 46 | |
Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 47 | /*This file includes the declaration that are internal to the |
| 48 | * trans_pcie layer */ |
| 49 | |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 50 | /** |
Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 51 | * struct isr_statistics - interrupt statistics |
| 52 | * |
| 53 | */ |
| 54 | struct isr_statistics { |
| 55 | u32 hw; |
| 56 | u32 sw; |
| 57 | u32 err_code; |
| 58 | u32 sch; |
| 59 | u32 alive; |
| 60 | u32 rfkill; |
| 61 | u32 ctkill; |
| 62 | u32 wakeup; |
| 63 | u32 rx; |
| 64 | u32 tx; |
| 65 | u32 unhandled; |
| 66 | }; |
| 67 | |
| 68 | /** |
Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 69 | * struct iwl_rx_queue - Rx queue |
| 70 | * @bd: driver's pointer to buffer of receive buffer descriptors (rbd) |
| 71 | * @bd_dma: bus address of buffer of receive buffer descriptors (rbd) |
| 72 | * @pool: |
| 73 | * @queue: |
| 74 | * @read: Shared index to newest available Rx buffer |
| 75 | * @write: Shared index to oldest written Rx packet |
| 76 | * @free_count: Number of pre-allocated buffers in rx_free |
| 77 | * @write_actual: |
| 78 | * @rx_free: list of free SKBs for use |
| 79 | * @rx_used: List of Rx buffers with no SKB |
| 80 | * @need_update: flag to indicate we need to update read/write index |
| 81 | * @rb_stts: driver's pointer to receive buffer status |
| 82 | * @rb_stts_dma: bus address of receive buffer status |
| 83 | * @lock: |
| 84 | * |
| 85 | * NOTE: rx_free and rx_used are used as a FIFO for iwl_rx_mem_buffers |
| 86 | */ |
| 87 | struct iwl_rx_queue { |
| 88 | __le32 *bd; |
| 89 | dma_addr_t bd_dma; |
| 90 | struct iwl_rx_mem_buffer pool[RX_QUEUE_SIZE + RX_FREE_BUFFERS]; |
| 91 | struct iwl_rx_mem_buffer *queue[RX_QUEUE_SIZE]; |
| 92 | u32 read; |
| 93 | u32 write; |
| 94 | u32 free_count; |
| 95 | u32 write_actual; |
| 96 | struct list_head rx_free; |
| 97 | struct list_head rx_used; |
| 98 | int need_update; |
| 99 | struct iwl_rb_status *rb_stts; |
| 100 | dma_addr_t rb_stts_dma; |
| 101 | spinlock_t lock; |
| 102 | }; |
| 103 | |
Emmanuel Grumbach | a72b8b0 | 2011-08-25 23:11:13 -0700 | [diff] [blame] | 104 | struct iwl_dma_ptr { |
| 105 | dma_addr_t dma; |
| 106 | void *addr; |
| 107 | size_t size; |
| 108 | }; |
| 109 | |
Emmanuel Grumbach | e13c0c5 | 2011-08-25 23:11:24 -0700 | [diff] [blame] | 110 | /* |
| 111 | * This queue number is required for proper operation |
| 112 | * because the ucode will stop/start the scheduler as |
| 113 | * required. |
| 114 | */ |
| 115 | #define IWL_IPAN_MCAST_QUEUE 8 |
| 116 | |
Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 117 | /** |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 118 | * struct iwl_trans_pcie - PCIe transport specific data |
Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 119 | * @rxq: all the RX queue data |
| 120 | * @rx_replenish: work that will be called when buffers need to be allocated |
| 121 | * @trans: pointer to the generic transport area |
Emmanuel Grumbach | 105183b | 2011-08-25 23:11:02 -0700 | [diff] [blame] | 122 | * @scd_base_addr: scheduler sram base address in SRAM |
| 123 | * @scd_bc_tbls: pointer to the byte count table of the scheduler |
Emmanuel Grumbach | 9d6b2cb | 2011-08-25 23:11:12 -0700 | [diff] [blame] | 124 | * @kw: keep warm address |
Emmanuel Grumbach | e13c0c5 | 2011-08-25 23:11:24 -0700 | [diff] [blame] | 125 | * @ac_to_fifo: to what fifo is a specifc AC mapped ? |
| 126 | * @ac_to_queue: to what tx queue is a specifc AC mapped ? |
| 127 | * @mcast_queue: |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 128 | * @txq: Tx DMA processing queues |
| 129 | * @txq_ctx_active_msk: what queue is active |
| 130 | * queue_stopped: tracks what queue is stopped |
| 131 | * queue_stop_count: tracks what SW queue is stopped |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 132 | */ |
| 133 | struct iwl_trans_pcie { |
Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 134 | struct iwl_rx_queue rxq; |
| 135 | struct work_struct rx_replenish; |
| 136 | struct iwl_trans *trans; |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 137 | |
| 138 | /* INT ICT Table */ |
| 139 | __le32 *ict_tbl; |
| 140 | void *ict_tbl_vir; |
| 141 | dma_addr_t ict_tbl_dma; |
| 142 | dma_addr_t aligned_ict_tbl_dma; |
| 143 | int ict_index; |
| 144 | u32 inta; |
| 145 | bool use_ict; |
| 146 | struct tasklet_struct irq_tasklet; |
Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 147 | struct isr_statistics isr_stats; |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 148 | |
| 149 | u32 inta_mask; |
Emmanuel Grumbach | 105183b | 2011-08-25 23:11:02 -0700 | [diff] [blame] | 150 | u32 scd_base_addr; |
| 151 | struct iwl_dma_ptr scd_bc_tbls; |
Emmanuel Grumbach | 9d6b2cb | 2011-08-25 23:11:12 -0700 | [diff] [blame] | 152 | struct iwl_dma_ptr kw; |
Emmanuel Grumbach | e13c0c5 | 2011-08-25 23:11:24 -0700 | [diff] [blame] | 153 | |
| 154 | const u8 *ac_to_fifo[NUM_IWL_RXON_CTX]; |
| 155 | const u8 *ac_to_queue[NUM_IWL_RXON_CTX]; |
| 156 | u8 mcast_queue[NUM_IWL_RXON_CTX]; |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 157 | |
| 158 | struct iwl_tx_queue *txq; |
| 159 | unsigned long txq_ctx_active_msk; |
| 160 | #define IWL_MAX_HW_QUEUES 32 |
| 161 | unsigned long queue_stopped[BITS_TO_LONGS(IWL_MAX_HW_QUEUES)]; |
| 162 | atomic_t queue_stop_count[4]; |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 163 | }; |
| 164 | |
Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 165 | #define IWL_TRANS_GET_PCIE_TRANS(_iwl_trans) \ |
| 166 | ((struct iwl_trans_pcie *) ((_iwl_trans)->trans_specific)) |
| 167 | |
Emmanuel Grumbach | 253a634 | 2011-07-11 07:39:46 -0700 | [diff] [blame] | 168 | /***************************************************** |
| 169 | * RX |
| 170 | ******************************************************/ |
Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 171 | void iwl_bg_rx_replenish(struct work_struct *data); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 172 | void iwl_irq_tasklet(struct iwl_trans *trans); |
Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 173 | void iwlagn_rx_replenish(struct iwl_trans *trans); |
| 174 | void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans, |
Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 175 | struct iwl_rx_queue *q); |
| 176 | |
Emmanuel Grumbach | 253a634 | 2011-07-11 07:39:46 -0700 | [diff] [blame] | 177 | /***************************************************** |
Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 178 | * ICT |
| 179 | ******************************************************/ |
Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 180 | int iwl_reset_ict(struct iwl_trans *trans); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 181 | void iwl_disable_ict(struct iwl_trans *trans); |
| 182 | int iwl_alloc_isr_ict(struct iwl_trans *trans); |
| 183 | void iwl_free_isr_ict(struct iwl_trans *trans); |
Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 184 | irqreturn_t iwl_isr_ict(int irq, void *data); |
| 185 | |
Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 186 | /***************************************************** |
Emmanuel Grumbach | 253a634 | 2011-07-11 07:39:46 -0700 | [diff] [blame] | 187 | * TX / HCMD |
| 188 | ******************************************************/ |
Emmanuel Grumbach | fd65693 | 2011-08-25 23:11:19 -0700 | [diff] [blame] | 189 | void iwl_txq_update_write_ptr(struct iwl_trans *trans, |
| 190 | struct iwl_tx_queue *txq); |
Emmanuel Grumbach | 6d8f6ee | 2011-08-25 23:11:06 -0700 | [diff] [blame] | 191 | int iwlagn_txq_attach_buf_to_tfd(struct iwl_trans *trans, |
Emmanuel Grumbach | 253a634 | 2011-07-11 07:39:46 -0700 | [diff] [blame] | 192 | struct iwl_tx_queue *txq, |
| 193 | dma_addr_t addr, u16 len, u8 reset); |
Emmanuel Grumbach | 6d8f6ee | 2011-08-25 23:11:06 -0700 | [diff] [blame] | 194 | int iwl_queue_init(struct iwl_queue *q, int count, int slots_num, u32 id); |
| 195 | int iwl_trans_pcie_send_cmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd); |
| 196 | int __must_check iwl_trans_pcie_send_cmd_pdu(struct iwl_trans *trans, u8 id, |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 197 | u32 flags, u16 len, const void *data); |
Emmanuel Grumbach | 3e10cae | 2011-09-06 09:31:18 -0700 | [diff] [blame^] | 198 | void iwl_tx_cmd_complete(struct iwl_trans *trans, |
| 199 | struct iwl_rx_mem_buffer *rxb); |
Emmanuel Grumbach | 6d8f6ee | 2011-08-25 23:11:06 -0700 | [diff] [blame] | 200 | void iwl_trans_txq_update_byte_cnt_tbl(struct iwl_trans *trans, |
Emmanuel Grumbach | 48d42c4 | 2011-07-10 10:47:01 +0300 | [diff] [blame] | 201 | struct iwl_tx_queue *txq, |
| 202 | u16 byte_cnt); |
Emmanuel Grumbach | 7f01d56 | 2011-08-25 23:11:27 -0700 | [diff] [blame] | 203 | void iwl_trans_pcie_txq_agg_disable(struct iwl_trans *trans, int txq_id); |
| 204 | int iwl_trans_pcie_tx_agg_disable(struct iwl_trans *trans, |
| 205 | enum iwl_rxon_context_id ctx, int sta_id, |
| 206 | int tid); |
Emmanuel Grumbach | 6d8f6ee | 2011-08-25 23:11:06 -0700 | [diff] [blame] | 207 | 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] | 208 | void iwl_trans_tx_queue_set_status(struct iwl_trans *trans, |
Emmanuel Grumbach | 48d42c4 | 2011-07-10 10:47:01 +0300 | [diff] [blame] | 209 | struct iwl_tx_queue *txq, |
| 210 | int tx_fifo_id, int scd_retry); |
Emmanuel Grumbach | 288712a | 2011-08-25 23:11:25 -0700 | [diff] [blame] | 211 | int iwl_trans_pcie_tx_agg_alloc(struct iwl_trans *trans, |
| 212 | enum iwl_rxon_context_id ctx, int sta_id, |
| 213 | int tid, u16 *ssn); |
Emmanuel Grumbach | c91bd12 | 2011-08-25 23:11:28 -0700 | [diff] [blame] | 214 | void iwl_trans_pcie_tx_agg_setup(struct iwl_trans *trans, |
| 215 | enum iwl_rxon_context_id ctx, |
| 216 | int sta_id, int tid, int frame_limit); |
Emmanuel Grumbach | 6d8f6ee | 2011-08-25 23:11:06 -0700 | [diff] [blame] | 217 | void iwlagn_txq_free_tfd(struct iwl_trans *trans, struct iwl_tx_queue *txq, |
Emmanuel Grumbach | 04e1cab | 2011-08-25 23:11:01 -0700 | [diff] [blame] | 218 | int index); |
Emmanuel Grumbach | 464021f | 2011-08-25 23:11:26 -0700 | [diff] [blame] | 219 | int iwl_tx_queue_reclaim(struct iwl_trans *trans, int txq_id, int index, |
| 220 | struct sk_buff_head *skbs); |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 221 | int iwl_queue_space(const struct iwl_queue *q); |
Emmanuel Grumbach | 253a634 | 2011-07-11 07:39:46 -0700 | [diff] [blame] | 222 | |
Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 223 | /***************************************************** |
| 224 | * Error handling |
| 225 | ******************************************************/ |
Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 226 | int iwl_dump_nic_event_log(struct iwl_trans *trans, bool full_log, |
| 227 | char **buf, bool display); |
Emmanuel Grumbach | 16db88b | 2011-08-25 23:11:08 -0700 | [diff] [blame] | 228 | int iwl_dump_fh(struct iwl_trans *trans, char **buf, bool display); |
| 229 | void iwl_dump_csr(struct iwl_trans *trans); |
| 230 | |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 231 | /***************************************************** |
| 232 | * Helpers |
| 233 | ******************************************************/ |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 234 | static inline void iwl_disable_interrupts(struct iwl_trans *trans) |
| 235 | { |
| 236 | clear_bit(STATUS_INT_ENABLED, &trans->shrd->status); |
| 237 | |
| 238 | /* disable interrupts from uCode/NIC to host */ |
Emmanuel Grumbach | 83ed901 | 2011-08-25 23:11:14 -0700 | [diff] [blame] | 239 | iwl_write32(bus(trans), CSR_INT_MASK, 0x00000000); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 240 | |
| 241 | /* acknowledge/clear/reset any interrupts still pending |
| 242 | * from uCode or flow handler (Rx/Tx DMA) */ |
Emmanuel Grumbach | 83ed901 | 2011-08-25 23:11:14 -0700 | [diff] [blame] | 243 | iwl_write32(bus(trans), CSR_INT, 0xffffffff); |
| 244 | iwl_write32(bus(trans), CSR_FH_INT_STATUS, 0xffffffff); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 245 | IWL_DEBUG_ISR(trans, "Disabled interrupts\n"); |
| 246 | } |
| 247 | |
| 248 | static inline void iwl_enable_interrupts(struct iwl_trans *trans) |
| 249 | { |
| 250 | struct iwl_trans_pcie *trans_pcie = |
| 251 | IWL_TRANS_GET_PCIE_TRANS(trans); |
| 252 | |
| 253 | IWL_DEBUG_ISR(trans, "Enabling interrupts\n"); |
| 254 | set_bit(STATUS_INT_ENABLED, &trans->shrd->status); |
Emmanuel Grumbach | 83ed901 | 2011-08-25 23:11:14 -0700 | [diff] [blame] | 255 | iwl_write32(bus(trans), CSR_INT_MASK, trans_pcie->inta_mask); |
Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 256 | } |
| 257 | |
Emmanuel Grumbach | e20d4341 | 2011-08-25 23:11:31 -0700 | [diff] [blame] | 258 | /* |
| 259 | * we have 8 bits used like this: |
| 260 | * |
| 261 | * 7 6 5 4 3 2 1 0 |
| 262 | * | | | | | | | | |
| 263 | * | | | | | | +-+-------- AC queue (0-3) |
| 264 | * | | | | | | |
| 265 | * | +-+-+-+-+------------ HW queue ID |
| 266 | * | |
| 267 | * +---------------------- unused |
| 268 | */ |
| 269 | static inline void iwl_set_swq_id(struct iwl_tx_queue *txq, u8 ac, u8 hwq) |
| 270 | { |
| 271 | BUG_ON(ac > 3); /* only have 2 bits */ |
| 272 | BUG_ON(hwq > 31); /* only use 5 bits */ |
| 273 | |
| 274 | txq->swq_id = (hwq << 2) | ac; |
| 275 | } |
| 276 | |
| 277 | static inline void iwl_wake_queue(struct iwl_trans *trans, |
| 278 | struct iwl_tx_queue *txq) |
| 279 | { |
| 280 | u8 queue = txq->swq_id; |
| 281 | u8 ac = queue & 3; |
| 282 | u8 hwq = (queue >> 2) & 0x1f; |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 283 | struct iwl_trans_pcie *trans_pcie = |
| 284 | IWL_TRANS_GET_PCIE_TRANS(trans); |
Emmanuel Grumbach | e20d4341 | 2011-08-25 23:11:31 -0700 | [diff] [blame] | 285 | |
| 286 | if (unlikely(!trans->shrd->mac80211_registered)) |
| 287 | return; |
| 288 | |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 289 | if (test_and_clear_bit(hwq, trans_pcie->queue_stopped)) |
| 290 | if (atomic_dec_return(&trans_pcie->queue_stop_count[ac]) <= 0) |
Emmanuel Grumbach | e20d4341 | 2011-08-25 23:11:31 -0700 | [diff] [blame] | 291 | ieee80211_wake_queue(trans->shrd->hw, ac); |
| 292 | } |
| 293 | |
| 294 | static inline void iwl_stop_queue(struct iwl_trans *trans, |
| 295 | struct iwl_tx_queue *txq) |
| 296 | { |
| 297 | u8 queue = txq->swq_id; |
| 298 | u8 ac = queue & 3; |
| 299 | u8 hwq = (queue >> 2) & 0x1f; |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 300 | struct iwl_trans_pcie *trans_pcie = |
| 301 | IWL_TRANS_GET_PCIE_TRANS(trans); |
Emmanuel Grumbach | e20d4341 | 2011-08-25 23:11:31 -0700 | [diff] [blame] | 302 | |
| 303 | if (unlikely(!trans->shrd->mac80211_registered)) |
| 304 | return; |
| 305 | |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 306 | if (!test_and_set_bit(hwq, trans_pcie->queue_stopped)) |
| 307 | if (atomic_inc_return(&trans_pcie->queue_stop_count[ac]) > 0) |
Emmanuel Grumbach | e20d4341 | 2011-08-25 23:11:31 -0700 | [diff] [blame] | 308 | ieee80211_stop_queue(trans->shrd->hw, ac); |
| 309 | } |
| 310 | |
| 311 | #ifdef ieee80211_stop_queue |
| 312 | #undef ieee80211_stop_queue |
| 313 | #endif |
| 314 | |
| 315 | #define ieee80211_stop_queue DO_NOT_USE_ieee80211_stop_queue |
| 316 | |
| 317 | #ifdef ieee80211_wake_queue |
| 318 | #undef ieee80211_wake_queue |
| 319 | #endif |
| 320 | |
| 321 | #define ieee80211_wake_queue DO_NOT_USE_ieee80211_wake_queue |
| 322 | |
Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 323 | static inline void iwl_txq_ctx_activate(struct iwl_trans_pcie *trans_pcie, |
| 324 | int txq_id) |
| 325 | { |
| 326 | set_bit(txq_id, &trans_pcie->txq_ctx_active_msk); |
| 327 | } |
| 328 | |
| 329 | static inline void iwl_txq_ctx_deactivate(struct iwl_trans_pcie *trans_pcie, |
| 330 | int txq_id) |
| 331 | { |
| 332 | clear_bit(txq_id, &trans_pcie->txq_ctx_active_msk); |
| 333 | } |
| 334 | |
| 335 | static inline int iwl_queue_used(const struct iwl_queue *q, int i) |
| 336 | { |
| 337 | return q->write_ptr >= q->read_ptr ? |
| 338 | (i >= q->read_ptr && i < q->write_ptr) : |
| 339 | !(i < q->read_ptr && i >= q->write_ptr); |
| 340 | } |
| 341 | |
| 342 | static inline u8 get_cmd_index(struct iwl_queue *q, u32 index) |
| 343 | { |
| 344 | return index & (q->n_window - 1); |
| 345 | } |
| 346 | |
Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 347 | #endif /* __iwl_trans_int_pcie_h__ */ |