blob: c258b3f476278f6581512521bfd14957d52cb453 [file] [log] [blame]
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001/******************************************************************************
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 Grumbachdda61a42011-08-25 23:11:11 -070032#include "iwl-fh.h"
33
Emmanuel Grumbachab697a92011-07-11 07:35:34 -070034/*This file includes the declaration that are internal to the
35 * trans_pcie layer */
36
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070037/**
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -070038 * struct isr_statistics - interrupt statistics
39 *
40 */
41struct isr_statistics {
42 u32 hw;
43 u32 sw;
44 u32 err_code;
45 u32 sch;
46 u32 alive;
47 u32 rfkill;
48 u32 ctkill;
49 u32 wakeup;
50 u32 rx;
51 u32 tx;
52 u32 unhandled;
53};
54
55/**
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -070056 * struct iwl_rx_queue - Rx queue
57 * @bd: driver's pointer to buffer of receive buffer descriptors (rbd)
58 * @bd_dma: bus address of buffer of receive buffer descriptors (rbd)
59 * @pool:
60 * @queue:
61 * @read: Shared index to newest available Rx buffer
62 * @write: Shared index to oldest written Rx packet
63 * @free_count: Number of pre-allocated buffers in rx_free
64 * @write_actual:
65 * @rx_free: list of free SKBs for use
66 * @rx_used: List of Rx buffers with no SKB
67 * @need_update: flag to indicate we need to update read/write index
68 * @rb_stts: driver's pointer to receive buffer status
69 * @rb_stts_dma: bus address of receive buffer status
70 * @lock:
71 *
72 * NOTE: rx_free and rx_used are used as a FIFO for iwl_rx_mem_buffers
73 */
74struct iwl_rx_queue {
75 __le32 *bd;
76 dma_addr_t bd_dma;
77 struct iwl_rx_mem_buffer pool[RX_QUEUE_SIZE + RX_FREE_BUFFERS];
78 struct iwl_rx_mem_buffer *queue[RX_QUEUE_SIZE];
79 u32 read;
80 u32 write;
81 u32 free_count;
82 u32 write_actual;
83 struct list_head rx_free;
84 struct list_head rx_used;
85 int need_update;
86 struct iwl_rb_status *rb_stts;
87 dma_addr_t rb_stts_dma;
88 spinlock_t lock;
89};
90
91/**
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070092 * struct iwl_trans_pcie - PCIe transport specific data
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -070093 * @rxq: all the RX queue data
94 * @rx_replenish: work that will be called when buffers need to be allocated
95 * @trans: pointer to the generic transport area
Emmanuel Grumbach105183b2011-08-25 23:11:02 -070096 * @scd_base_addr: scheduler sram base address in SRAM
97 * @scd_bc_tbls: pointer to the byte count table of the scheduler
Emmanuel Grumbach9d6b2cb2011-08-25 23:11:12 -070098 * @kw: keep warm address
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070099 */
100struct iwl_trans_pcie {
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700101 struct iwl_rx_queue rxq;
102 struct work_struct rx_replenish;
103 struct iwl_trans *trans;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700104
105 /* INT ICT Table */
106 __le32 *ict_tbl;
107 void *ict_tbl_vir;
108 dma_addr_t ict_tbl_dma;
109 dma_addr_t aligned_ict_tbl_dma;
110 int ict_index;
111 u32 inta;
112 bool use_ict;
113 struct tasklet_struct irq_tasklet;
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700114 struct isr_statistics isr_stats;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700115
116 u32 inta_mask;
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700117 u32 scd_base_addr;
118 struct iwl_dma_ptr scd_bc_tbls;
Emmanuel Grumbach9d6b2cb2011-08-25 23:11:12 -0700119 struct iwl_dma_ptr kw;
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700120};
121
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700122#define IWL_TRANS_GET_PCIE_TRANS(_iwl_trans) \
123 ((struct iwl_trans_pcie *) ((_iwl_trans)->trans_specific))
124
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700125/*****************************************************
126* RX
127******************************************************/
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700128void iwl_bg_rx_replenish(struct work_struct *data);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700129void iwl_irq_tasklet(struct iwl_trans *trans);
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700130void iwlagn_rx_replenish(struct iwl_trans *trans);
131void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700132 struct iwl_rx_queue *q);
133
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700134/*****************************************************
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700135* ICT
136******************************************************/
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700137int iwl_reset_ict(struct iwl_trans *trans);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700138void iwl_disable_ict(struct iwl_trans *trans);
139int iwl_alloc_isr_ict(struct iwl_trans *trans);
140void iwl_free_isr_ict(struct iwl_trans *trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700141irqreturn_t iwl_isr_ict(int irq, void *data);
142
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -0700143/*****************************************************
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700144* TX / HCMD
145******************************************************/
146void iwl_txq_update_write_ptr(struct iwl_priv *priv, struct iwl_tx_queue *txq);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700147int iwlagn_txq_attach_buf_to_tfd(struct iwl_trans *trans,
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700148 struct iwl_tx_queue *txq,
149 dma_addr_t addr, u16 len, u8 reset);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700150int iwl_queue_init(struct iwl_queue *q, int count, int slots_num, u32 id);
151int iwl_trans_pcie_send_cmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
152int __must_check iwl_trans_pcie_send_cmd_pdu(struct iwl_trans *trans, u8 id,
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700153 u32 flags, u16 len, const void *data);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700154void iwl_tx_cmd_complete(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700155void iwl_trans_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300156 struct iwl_tx_queue *txq,
157 u16 byte_cnt);
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700158int iwl_trans_pcie_txq_agg_disable(struct iwl_priv *priv, u16 txq_id,
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300159 u16 ssn_idx, u8 tx_fifo);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700160void iwl_trans_set_wr_ptrs(struct iwl_trans *trans, int txq_id, u32 index);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300161void iwl_trans_tx_queue_set_status(struct iwl_priv *priv,
162 struct iwl_tx_queue *txq,
163 int tx_fifo_id, int scd_retry);
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700164void iwl_trans_pcie_txq_agg_setup(struct iwl_priv *priv, int sta_id, int tid,
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300165 int frame_limit);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700166void iwlagn_txq_free_tfd(struct iwl_trans *trans, struct iwl_tx_queue *txq,
Emmanuel Grumbach04e1cab2011-08-25 23:11:01 -0700167 int index);
168void iwl_tx_queue_reclaim(struct iwl_trans *trans, int txq_id, int index,
169 struct sk_buff_head *skbs);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -0700170
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700171/*****************************************************
172* Error handling
173******************************************************/
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700174int iwl_dump_nic_event_log(struct iwl_trans *trans, bool full_log,
175 char **buf, bool display);
Emmanuel Grumbach16db88b2011-08-25 23:11:08 -0700176int iwl_dump_fh(struct iwl_trans *trans, char **buf, bool display);
177void iwl_dump_csr(struct iwl_trans *trans);
178
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700179static inline void iwl_disable_interrupts(struct iwl_trans *trans)
180{
181 clear_bit(STATUS_INT_ENABLED, &trans->shrd->status);
182
183 /* disable interrupts from uCode/NIC to host */
184 iwl_write32(priv(trans), CSR_INT_MASK, 0x00000000);
185
186 /* acknowledge/clear/reset any interrupts still pending
187 * from uCode or flow handler (Rx/Tx DMA) */
188 iwl_write32(priv(trans), CSR_INT, 0xffffffff);
189 iwl_write32(priv(trans), CSR_FH_INT_STATUS, 0xffffffff);
190 IWL_DEBUG_ISR(trans, "Disabled interrupts\n");
191}
192
193static inline void iwl_enable_interrupts(struct iwl_trans *trans)
194{
195 struct iwl_trans_pcie *trans_pcie =
196 IWL_TRANS_GET_PCIE_TRANS(trans);
197
198 IWL_DEBUG_ISR(trans, "Enabling interrupts\n");
199 set_bit(STATUS_INT_ENABLED, &trans->shrd->status);
200 iwl_write32(priv(trans), CSR_INT_MASK, trans_pcie->inta_mask);
201}
202
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700203#endif /* __iwl_trans_int_pcie_h__ */