iwlagn: cosmetics in iwl-trans.h
[pandora-kernel.git] / drivers / net / wireless / iwlwifi / iwl-trans-int-pcie.h
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
32 #include <linux/spinlock.h>
33 #include <linux/interrupt.h>
34 #include <linux/skbuff.h>
35
36 #include "iwl-fh.h"
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;
46
47 /*This file includes the declaration that are internal to the
48  * trans_pcie layer */
49
50 /**
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 /**
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
104 struct iwl_dma_ptr {
105         dma_addr_t dma;
106         void *addr;
107         size_t size;
108 };
109
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
117 /**
118  * struct iwl_trans_pcie - PCIe transport specific data
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
122  * @scd_base_addr: scheduler sram base address in SRAM
123  * @scd_bc_tbls: pointer to the byte count table of the scheduler
124  * @kw: keep warm address
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:
128  */
129 struct iwl_trans_pcie {
130         struct iwl_rx_queue rxq;
131         struct work_struct rx_replenish;
132         struct iwl_trans *trans;
133
134         /* INT ICT Table */
135         __le32 *ict_tbl;
136         void *ict_tbl_vir;
137         dma_addr_t ict_tbl_dma;
138         dma_addr_t aligned_ict_tbl_dma;
139         int ict_index;
140         u32 inta;
141         bool use_ict;
142         struct tasklet_struct irq_tasklet;
143         struct isr_statistics isr_stats;
144
145         u32 inta_mask;
146         u32 scd_base_addr;
147         struct iwl_dma_ptr scd_bc_tbls;
148         struct iwl_dma_ptr kw;
149
150         const u8 *ac_to_fifo[NUM_IWL_RXON_CTX];
151         const u8 *ac_to_queue[NUM_IWL_RXON_CTX];
152         u8 mcast_queue[NUM_IWL_RXON_CTX];
153 };
154
155 #define IWL_TRANS_GET_PCIE_TRANS(_iwl_trans) \
156         ((struct iwl_trans_pcie *) ((_iwl_trans)->trans_specific))
157
158 /*****************************************************
159 * RX
160 ******************************************************/
161 void iwl_bg_rx_replenish(struct work_struct *data);
162 void iwl_irq_tasklet(struct iwl_trans *trans);
163 void iwlagn_rx_replenish(struct iwl_trans *trans);
164 void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans,
165                         struct iwl_rx_queue *q);
166
167 /*****************************************************
168 * ICT
169 ******************************************************/
170 int iwl_reset_ict(struct iwl_trans *trans);
171 void iwl_disable_ict(struct iwl_trans *trans);
172 int iwl_alloc_isr_ict(struct iwl_trans *trans);
173 void iwl_free_isr_ict(struct iwl_trans *trans);
174 irqreturn_t iwl_isr_ict(int irq, void *data);
175
176 /*****************************************************
177 * TX / HCMD
178 ******************************************************/
179 void iwl_txq_update_write_ptr(struct iwl_trans *trans,
180                         struct iwl_tx_queue *txq);
181 int iwlagn_txq_attach_buf_to_tfd(struct iwl_trans *trans,
182                                  struct iwl_tx_queue *txq,
183                                  dma_addr_t addr, u16 len, u8 reset);
184 int iwl_queue_init(struct iwl_queue *q, int count, int slots_num, u32 id);
185 int iwl_trans_pcie_send_cmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
186 int __must_check iwl_trans_pcie_send_cmd_pdu(struct iwl_trans *trans, u8 id,
187                         u32 flags, u16 len, const void *data);
188 void iwl_tx_cmd_complete(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb);
189 void iwl_trans_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
190                                            struct iwl_tx_queue *txq,
191                                            u16 byte_cnt);
192 void iwl_trans_pcie_txq_agg_disable(struct iwl_trans *trans, int txq_id);
193 int iwl_trans_pcie_tx_agg_disable(struct iwl_trans *trans,
194                                   enum iwl_rxon_context_id ctx, int sta_id,
195                                   int tid);
196 void iwl_trans_set_wr_ptrs(struct iwl_trans *trans, int txq_id, u32 index);
197 void iwl_trans_tx_queue_set_status(struct iwl_trans *trans,
198                              struct iwl_tx_queue *txq,
199                              int tx_fifo_id, int scd_retry);
200 int iwl_trans_pcie_tx_agg_alloc(struct iwl_trans *trans,
201                                 enum iwl_rxon_context_id ctx, int sta_id,
202                                 int tid, u16 *ssn);
203 void iwl_trans_pcie_tx_agg_setup(struct iwl_trans *trans,
204                                  enum iwl_rxon_context_id ctx,
205                                  int sta_id, int tid, int frame_limit);
206 void iwlagn_txq_free_tfd(struct iwl_trans *trans, struct iwl_tx_queue *txq,
207         int index);
208 int iwl_tx_queue_reclaim(struct iwl_trans *trans, int txq_id, int index,
209                          struct sk_buff_head *skbs);
210
211 /*****************************************************
212 * Error handling
213 ******************************************************/
214 int iwl_dump_nic_event_log(struct iwl_trans *trans, bool full_log,
215                             char **buf, bool display);
216 int iwl_dump_fh(struct iwl_trans *trans, char **buf, bool display);
217 void iwl_dump_csr(struct iwl_trans *trans);
218
219 static inline void iwl_disable_interrupts(struct iwl_trans *trans)
220 {
221         clear_bit(STATUS_INT_ENABLED, &trans->shrd->status);
222
223         /* disable interrupts from uCode/NIC to host */
224         iwl_write32(bus(trans), CSR_INT_MASK, 0x00000000);
225
226         /* acknowledge/clear/reset any interrupts still pending
227          * from uCode or flow handler (Rx/Tx DMA) */
228         iwl_write32(bus(trans), CSR_INT, 0xffffffff);
229         iwl_write32(bus(trans), CSR_FH_INT_STATUS, 0xffffffff);
230         IWL_DEBUG_ISR(trans, "Disabled interrupts\n");
231 }
232
233 static inline void iwl_enable_interrupts(struct iwl_trans *trans)
234 {
235         struct iwl_trans_pcie *trans_pcie =
236                 IWL_TRANS_GET_PCIE_TRANS(trans);
237
238         IWL_DEBUG_ISR(trans, "Enabling interrupts\n");
239         set_bit(STATUS_INT_ENABLED, &trans->shrd->status);
240         iwl_write32(bus(trans), CSR_INT_MASK, trans_pcie->inta_mask);
241 }
242
243 #endif /* __iwl_trans_int_pcie_h__ */