iwlagn: all function iwl-io.c receive iwl_bus
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / iwl-trans-int-pcie.h
CommitLineData
ab697a9f
EG
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
a72b8b08
EG
32#include <linux/spinlock.h>
33#include <linux/interrupt.h>
34#include <linux/skbuff.h>
35
dda61a44 36#include "iwl-fh.h"
a72b8b08
EG
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
43struct iwl_tx_queue;
44struct iwl_queue;
45struct iwl_host_cmd;
dda61a44 46
ab697a9f
EG
47/*This file includes the declaration that are internal to the
48 * trans_pcie layer */
49
1f7b6172
EG
50/**
51 * struct isr_statistics - interrupt statistics
52 *
53 */
54struct 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
5a878bf6
EG
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 */
87struct 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
a72b8b08
EG
104struct iwl_dma_ptr {
105 dma_addr_t dma;
106 void *addr;
107 size_t size;
108};
109
e6bb4c9c
EG
110/**
111 * struct iwl_trans_pcie - PCIe transport specific data
5a878bf6
EG
112 * @rxq: all the RX queue data
113 * @rx_replenish: work that will be called when buffers need to be allocated
114 * @trans: pointer to the generic transport area
105183b1
EG
115 * @scd_base_addr: scheduler sram base address in SRAM
116 * @scd_bc_tbls: pointer to the byte count table of the scheduler
9d6b2cb1 117 * @kw: keep warm address
e6bb4c9c
EG
118 */
119struct iwl_trans_pcie {
5a878bf6
EG
120 struct iwl_rx_queue rxq;
121 struct work_struct rx_replenish;
122 struct iwl_trans *trans;
0c325769
EG
123
124 /* INT ICT Table */
125 __le32 *ict_tbl;
126 void *ict_tbl_vir;
127 dma_addr_t ict_tbl_dma;
128 dma_addr_t aligned_ict_tbl_dma;
129 int ict_index;
130 u32 inta;
131 bool use_ict;
132 struct tasklet_struct irq_tasklet;
1f7b6172 133 struct isr_statistics isr_stats;
0c325769
EG
134
135 u32 inta_mask;
105183b1
EG
136 u32 scd_base_addr;
137 struct iwl_dma_ptr scd_bc_tbls;
9d6b2cb1 138 struct iwl_dma_ptr kw;
e6bb4c9c
EG
139};
140
5a878bf6
EG
141#define IWL_TRANS_GET_PCIE_TRANS(_iwl_trans) \
142 ((struct iwl_trans_pcie *) ((_iwl_trans)->trans_specific))
143
253a634c
EG
144/*****************************************************
145* RX
146******************************************************/
ab697a9f 147void iwl_bg_rx_replenish(struct work_struct *data);
0c325769 148void iwl_irq_tasklet(struct iwl_trans *trans);
5a878bf6
EG
149void iwlagn_rx_replenish(struct iwl_trans *trans);
150void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans,
ab697a9f
EG
151 struct iwl_rx_queue *q);
152
1a361cd8
EG
153/*****************************************************
154* ICT
155******************************************************/
6bb78847 156int iwl_reset_ict(struct iwl_trans *trans);
0c325769
EG
157void iwl_disable_ict(struct iwl_trans *trans);
158int iwl_alloc_isr_ict(struct iwl_trans *trans);
159void iwl_free_isr_ict(struct iwl_trans *trans);
1a361cd8
EG
160irqreturn_t iwl_isr_ict(int irq, void *data);
161
253a634c
EG
162/*****************************************************
163* TX / HCMD
164******************************************************/
165void iwl_txq_update_write_ptr(struct iwl_priv *priv, struct iwl_tx_queue *txq);
6d8f6eeb 166int iwlagn_txq_attach_buf_to_tfd(struct iwl_trans *trans,
253a634c
EG
167 struct iwl_tx_queue *txq,
168 dma_addr_t addr, u16 len, u8 reset);
6d8f6eeb
EG
169int iwl_queue_init(struct iwl_queue *q, int count, int slots_num, u32 id);
170int iwl_trans_pcie_send_cmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
171int __must_check iwl_trans_pcie_send_cmd_pdu(struct iwl_trans *trans, u8 id,
e6bb4c9c 172 u32 flags, u16 len, const void *data);
253a634c 173void iwl_tx_cmd_complete(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb);
6d8f6eeb 174void iwl_trans_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
48d42c42
EG
175 struct iwl_tx_queue *txq,
176 u16 byte_cnt);
e6bb4c9c 177int iwl_trans_pcie_txq_agg_disable(struct iwl_priv *priv, u16 txq_id,
48d42c42 178 u16 ssn_idx, u8 tx_fifo);
6d8f6eeb 179void iwl_trans_set_wr_ptrs(struct iwl_trans *trans, int txq_id, u32 index);
48d42c42
EG
180void iwl_trans_tx_queue_set_status(struct iwl_priv *priv,
181 struct iwl_tx_queue *txq,
182 int tx_fifo_id, int scd_retry);
e6bb4c9c 183void iwl_trans_pcie_txq_agg_setup(struct iwl_priv *priv, int sta_id, int tid,
48d42c42 184 int frame_limit);
6d8f6eeb 185void iwlagn_txq_free_tfd(struct iwl_trans *trans, struct iwl_tx_queue *txq,
04e1cabe
EG
186 int index);
187void iwl_tx_queue_reclaim(struct iwl_trans *trans, int txq_id, int index,
188 struct sk_buff_head *skbs);
253a634c 189
7ff94706
EG
190/*****************************************************
191* Error handling
192******************************************************/
6bb78847
EG
193int iwl_dump_nic_event_log(struct iwl_trans *trans, bool full_log,
194 char **buf, bool display);
16db88ba
EG
195int iwl_dump_fh(struct iwl_trans *trans, char **buf, bool display);
196void iwl_dump_csr(struct iwl_trans *trans);
197
0c325769
EG
198static inline void iwl_disable_interrupts(struct iwl_trans *trans)
199{
200 clear_bit(STATUS_INT_ENABLED, &trans->shrd->status);
201
202 /* disable interrupts from uCode/NIC to host */
83ed9015 203 iwl_write32(bus(trans), CSR_INT_MASK, 0x00000000);
0c325769
EG
204
205 /* acknowledge/clear/reset any interrupts still pending
206 * from uCode or flow handler (Rx/Tx DMA) */
83ed9015
EG
207 iwl_write32(bus(trans), CSR_INT, 0xffffffff);
208 iwl_write32(bus(trans), CSR_FH_INT_STATUS, 0xffffffff);
0c325769
EG
209 IWL_DEBUG_ISR(trans, "Disabled interrupts\n");
210}
211
212static inline void iwl_enable_interrupts(struct iwl_trans *trans)
213{
214 struct iwl_trans_pcie *trans_pcie =
215 IWL_TRANS_GET_PCIE_TRANS(trans);
216
217 IWL_DEBUG_ISR(trans, "Enabling interrupts\n");
218 set_bit(STATUS_INT_ENABLED, &trans->shrd->status);
83ed9015 219 iwl_write32(bus(trans), CSR_INT_MASK, trans_pcie->inta_mask);
0c325769
EG
220}
221
ab697a9f 222#endif /* __iwl_trans_int_pcie_h__ */
This page took 0.057966 seconds and 5 git commands to generate.