iwlwifi: add wide firmware command infrastructure for TX
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / iwlwifi / pcie / internal.h
1 /******************************************************************************
2  *
3  * Copyright(c) 2003 - 2015 Intel Corporation. All rights reserved.
4  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
5  *
6  * Portions of this file are derived from the ipw3945 project, as well
7  * as portions of the ieee80211 subsystem header files.
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of version 2 of the GNU General Public License as
11  * published by the Free Software Foundation.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
16  * more details.
17  *
18  * You should have received a copy of the GNU General Public License along with
19  * this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
21  *
22  * The full GNU General Public License is included in this distribution in the
23  * file called LICENSE.
24  *
25  * Contact Information:
26  *  Intel Linux Wireless <ilw@linux.intel.com>
27  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28  *
29  *****************************************************************************/
30 #ifndef __iwl_trans_int_pcie_h__
31 #define __iwl_trans_int_pcie_h__
32
33 #include <linux/spinlock.h>
34 #include <linux/interrupt.h>
35 #include <linux/skbuff.h>
36 #include <linux/wait.h>
37 #include <linux/pci.h>
38 #include <linux/timer.h>
39
40 #include "iwl-fh.h"
41 #include "iwl-csr.h"
42 #include "iwl-trans.h"
43 #include "iwl-debug.h"
44 #include "iwl-io.h"
45 #include "iwl-op-mode.h"
46
47 /*
48  * RX related structures and functions
49  */
50 #define RX_NUM_QUEUES 1
51 #define RX_POST_REQ_ALLOC 2
52 #define RX_CLAIM_REQ_ALLOC 8
53 #define RX_POOL_SIZE ((RX_CLAIM_REQ_ALLOC - RX_POST_REQ_ALLOC) * RX_NUM_QUEUES)
54 #define RX_LOW_WATERMARK 8
55
56 struct iwl_host_cmd;
57
58 /*This file includes the declaration that are internal to the
59  * trans_pcie layer */
60
61 struct iwl_rx_mem_buffer {
62         dma_addr_t page_dma;
63         struct page *page;
64         struct list_head list;
65 };
66
67 /**
68  * struct isr_statistics - interrupt statistics
69  *
70  */
71 struct isr_statistics {
72         u32 hw;
73         u32 sw;
74         u32 err_code;
75         u32 sch;
76         u32 alive;
77         u32 rfkill;
78         u32 ctkill;
79         u32 wakeup;
80         u32 rx;
81         u32 tx;
82         u32 unhandled;
83 };
84
85 /**
86  * struct iwl_rxq - Rx queue
87  * @bd: driver's pointer to buffer of receive buffer descriptors (rbd)
88  * @bd_dma: bus address of buffer of receive buffer descriptors (rbd)
89  * @read: Shared index to newest available Rx buffer
90  * @write: Shared index to oldest written Rx packet
91  * @free_count: Number of pre-allocated buffers in rx_free
92  * @used_count: Number of RBDs handled to allocator to use for allocation
93  * @write_actual:
94  * @rx_free: list of RBDs with allocated RB ready for use
95  * @rx_used: list of RBDs with no RB attached
96  * @need_update: flag to indicate we need to update read/write index
97  * @rb_stts: driver's pointer to receive buffer status
98  * @rb_stts_dma: bus address of receive buffer status
99  * @lock:
100  * @pool: initial pool of iwl_rx_mem_buffer for the queue
101  * @queue: actual rx queue
102  *
103  * NOTE:  rx_free and rx_used are used as a FIFO for iwl_rx_mem_buffers
104  */
105 struct iwl_rxq {
106         __le32 *bd;
107         dma_addr_t bd_dma;
108         u32 read;
109         u32 write;
110         u32 free_count;
111         u32 used_count;
112         u32 write_actual;
113         struct list_head rx_free;
114         struct list_head rx_used;
115         bool need_update;
116         struct iwl_rb_status *rb_stts;
117         dma_addr_t rb_stts_dma;
118         spinlock_t lock;
119         struct iwl_rx_mem_buffer pool[RX_QUEUE_SIZE];
120         struct iwl_rx_mem_buffer *queue[RX_QUEUE_SIZE];
121 };
122
123 /**
124  * struct iwl_rb_allocator - Rx allocator
125  * @pool: initial pool of allocator
126  * @req_pending: number of requests the allcator had not processed yet
127  * @req_ready: number of requests honored and ready for claiming
128  * @rbd_allocated: RBDs with pages allocated and ready to be handled to
129  *      the queue. This is a list of &struct iwl_rx_mem_buffer
130  * @rbd_empty: RBDs with no page attached for allocator use. This is a list
131  *      of &struct iwl_rx_mem_buffer
132  * @lock: protects the rbd_allocated and rbd_empty lists
133  * @alloc_wq: work queue for background calls
134  * @rx_alloc: work struct for background calls
135  */
136 struct iwl_rb_allocator {
137         struct iwl_rx_mem_buffer pool[RX_POOL_SIZE];
138         atomic_t req_pending;
139         atomic_t req_ready;
140         struct list_head rbd_allocated;
141         struct list_head rbd_empty;
142         spinlock_t lock;
143         struct workqueue_struct *alloc_wq;
144         struct work_struct rx_alloc;
145 };
146
147 struct iwl_dma_ptr {
148         dma_addr_t dma;
149         void *addr;
150         size_t size;
151 };
152
153 /**
154  * iwl_queue_inc_wrap - increment queue index, wrap back to beginning
155  * @index -- current index
156  */
157 static inline int iwl_queue_inc_wrap(int index)
158 {
159         return ++index & (TFD_QUEUE_SIZE_MAX - 1);
160 }
161
162 /**
163  * iwl_queue_dec_wrap - decrement queue index, wrap back to end
164  * @index -- current index
165  */
166 static inline int iwl_queue_dec_wrap(int index)
167 {
168         return --index & (TFD_QUEUE_SIZE_MAX - 1);
169 }
170
171 struct iwl_cmd_meta {
172         /* only for SYNC commands, iff the reply skb is wanted */
173         struct iwl_host_cmd *source;
174         u32 flags;
175 };
176
177 /*
178  * Generic queue structure
179  *
180  * Contains common data for Rx and Tx queues.
181  *
182  * Note the difference between TFD_QUEUE_SIZE_MAX and n_window: the hardware
183  * always assumes 256 descriptors, so TFD_QUEUE_SIZE_MAX is always 256 (unless
184  * there might be HW changes in the future). For the normal TX
185  * queues, n_window, which is the size of the software queue data
186  * is also 256; however, for the command queue, n_window is only
187  * 32 since we don't need so many commands pending. Since the HW
188  * still uses 256 BDs for DMA though, TFD_QUEUE_SIZE_MAX stays 256. As a result,
189  * the software buffers (in the variables @meta, @txb in struct
190  * iwl_txq) only have 32 entries, while the HW buffers (@tfds in
191  * the same struct) have 256.
192  * This means that we end up with the following:
193  *  HW entries: | 0 | ... | N * 32 | ... | N * 32 + 31 | ... | 255 |
194  *  SW entries:           | 0      | ... | 31          |
195  * where N is a number between 0 and 7. This means that the SW
196  * data is a window overlayed over the HW queue.
197  */
198 struct iwl_queue {
199         int write_ptr;       /* 1-st empty entry (index) host_w*/
200         int read_ptr;         /* last used entry (index) host_r*/
201         /* use for monitoring and recovering the stuck queue */
202         dma_addr_t dma_addr;   /* physical addr for BD's */
203         int n_window;          /* safe queue window */
204         u32 id;
205         int low_mark;          /* low watermark, resume queue if free
206                                 * space more than this */
207         int high_mark;         /* high watermark, stop queue if free
208                                 * space less than this */
209 };
210
211 #define TFD_TX_CMD_SLOTS 256
212 #define TFD_CMD_SLOTS 32
213
214 /*
215  * The FH will write back to the first TB only, so we need
216  * to copy some data into the buffer regardless of whether
217  * it should be mapped or not. This indicates how big the
218  * first TB must be to include the scratch buffer. Since
219  * the scratch is 4 bytes at offset 12, it's 16 now. If we
220  * make it bigger then allocations will be bigger and copy
221  * slower, so that's probably not useful.
222  */
223 #define IWL_HCMD_SCRATCHBUF_SIZE        16
224
225 struct iwl_pcie_txq_entry {
226         struct iwl_device_cmd *cmd;
227         struct sk_buff *skb;
228         /* buffer to free after command completes */
229         const void *free_buf;
230         struct iwl_cmd_meta meta;
231 };
232
233 struct iwl_pcie_txq_scratch_buf {
234         struct iwl_cmd_header hdr;
235         u8 buf[8];
236         __le32 scratch;
237 };
238
239 /**
240  * struct iwl_txq - Tx Queue for DMA
241  * @q: generic Rx/Tx queue descriptor
242  * @tfds: transmit frame descriptors (DMA memory)
243  * @scratchbufs: start of command headers, including scratch buffers, for
244  *      the writeback -- this is DMA memory and an array holding one buffer
245  *      for each command on the queue
246  * @scratchbufs_dma: DMA address for the scratchbufs start
247  * @entries: transmit entries (driver state)
248  * @lock: queue lock
249  * @stuck_timer: timer that fires if queue gets stuck
250  * @trans_pcie: pointer back to transport (for timer)
251  * @need_update: indicates need to update read/write index
252  * @active: stores if queue is active
253  * @ampdu: true if this queue is an ampdu queue for an specific RA/TID
254  * @wd_timeout: queue watchdog timeout (jiffies) - per queue
255  * @frozen: tx stuck queue timer is frozen
256  * @frozen_expiry_remainder: remember how long until the timer fires
257  *
258  * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
259  * descriptors) and required locking structures.
260  */
261 struct iwl_txq {
262         struct iwl_queue q;
263         struct iwl_tfd *tfds;
264         struct iwl_pcie_txq_scratch_buf *scratchbufs;
265         dma_addr_t scratchbufs_dma;
266         struct iwl_pcie_txq_entry *entries;
267         spinlock_t lock;
268         unsigned long frozen_expiry_remainder;
269         struct timer_list stuck_timer;
270         struct iwl_trans_pcie *trans_pcie;
271         bool need_update;
272         bool frozen;
273         u8 active;
274         bool ampdu;
275         unsigned long wd_timeout;
276 };
277
278 static inline dma_addr_t
279 iwl_pcie_get_scratchbuf_dma(struct iwl_txq *txq, int idx)
280 {
281         return txq->scratchbufs_dma +
282                sizeof(struct iwl_pcie_txq_scratch_buf) * idx;
283 }
284
285 /**
286  * struct iwl_trans_pcie - PCIe transport specific data
287  * @rxq: all the RX queue data
288  * @rba: allocator for RX replenishing
289  * @drv - pointer to iwl_drv
290  * @trans: pointer to the generic transport area
291  * @scd_base_addr: scheduler sram base address in SRAM
292  * @scd_bc_tbls: pointer to the byte count table of the scheduler
293  * @kw: keep warm address
294  * @pci_dev: basic pci-network driver stuff
295  * @hw_base: pci hardware address support
296  * @ucode_write_complete: indicates that the ucode has been copied.
297  * @ucode_write_waitq: wait queue for uCode load
298  * @cmd_queue - command queue number
299  * @rx_buf_size_8k: 8 kB RX buffer size
300  * @bc_table_dword: true if the BC table expects DWORD (as opposed to bytes)
301  * @scd_set_active: should the transport configure the SCD for HCMD queue
302  * @wide_cmd_header: true when ucode supports wide command header format
303  * @rx_page_order: page order for receive buffer size
304  * @reg_lock: protect hw register access
305  * @mutex: to protect stop_device / start_fw / start_hw
306  * @cmd_in_flight: true when we have a host command in flight
307  * @fw_mon_phys: physical address of the buffer for the firmware monitor
308  * @fw_mon_page: points to the first page of the buffer for the firmware monitor
309  * @fw_mon_size: size of the buffer for the firmware monitor
310  */
311 struct iwl_trans_pcie {
312         struct iwl_rxq rxq;
313         struct iwl_rb_allocator rba;
314         struct iwl_trans *trans;
315         struct iwl_drv *drv;
316
317         struct net_device napi_dev;
318         struct napi_struct napi;
319
320         /* INT ICT Table */
321         __le32 *ict_tbl;
322         dma_addr_t ict_tbl_dma;
323         int ict_index;
324         bool use_ict;
325         bool is_down;
326         struct isr_statistics isr_stats;
327
328         spinlock_t irq_lock;
329         struct mutex mutex;
330         u32 inta_mask;
331         u32 scd_base_addr;
332         struct iwl_dma_ptr scd_bc_tbls;
333         struct iwl_dma_ptr kw;
334
335         struct iwl_txq *txq;
336         unsigned long queue_used[BITS_TO_LONGS(IWL_MAX_HW_QUEUES)];
337         unsigned long queue_stopped[BITS_TO_LONGS(IWL_MAX_HW_QUEUES)];
338
339         /* PCI bus related data */
340         struct pci_dev *pci_dev;
341         void __iomem *hw_base;
342
343         bool ucode_write_complete;
344         wait_queue_head_t ucode_write_waitq;
345         wait_queue_head_t wait_command_queue;
346
347         u8 cmd_queue;
348         u8 cmd_fifo;
349         unsigned int cmd_q_wdg_timeout;
350         u8 n_no_reclaim_cmds;
351         u8 no_reclaim_cmds[MAX_NO_RECLAIM_CMDS];
352
353         bool rx_buf_size_8k;
354         bool bc_table_dword;
355         bool scd_set_active;
356         bool wide_cmd_header;
357         u32 rx_page_order;
358
359         const char *const *command_names;
360
361         /*protect hw register */
362         spinlock_t reg_lock;
363         bool cmd_hold_nic_awake;
364         bool ref_cmd_in_flight;
365
366         /* protect ref counter */
367         spinlock_t ref_lock;
368         u32 ref_count;
369
370         dma_addr_t fw_mon_phys;
371         struct page *fw_mon_page;
372         u32 fw_mon_size;
373 };
374
375 #define IWL_TRANS_GET_PCIE_TRANS(_iwl_trans) \
376         ((struct iwl_trans_pcie *) ((_iwl_trans)->trans_specific))
377
378 static inline struct iwl_trans *
379 iwl_trans_pcie_get_trans(struct iwl_trans_pcie *trans_pcie)
380 {
381         return container_of((void *)trans_pcie, struct iwl_trans,
382                             trans_specific);
383 }
384
385 /*
386  * Convention: trans API functions: iwl_trans_pcie_XXX
387  *      Other functions: iwl_pcie_XXX
388  */
389 struct iwl_trans *iwl_trans_pcie_alloc(struct pci_dev *pdev,
390                                        const struct pci_device_id *ent,
391                                        const struct iwl_cfg *cfg);
392 void iwl_trans_pcie_free(struct iwl_trans *trans);
393
394 /*****************************************************
395 * RX
396 ******************************************************/
397 int iwl_pcie_rx_init(struct iwl_trans *trans);
398 irqreturn_t iwl_pcie_irq_handler(int irq, void *dev_id);
399 int iwl_pcie_rx_stop(struct iwl_trans *trans);
400 void iwl_pcie_rx_free(struct iwl_trans *trans);
401
402 /*****************************************************
403 * ICT - interrupt handling
404 ******************************************************/
405 irqreturn_t iwl_pcie_isr(int irq, void *data);
406 int iwl_pcie_alloc_ict(struct iwl_trans *trans);
407 void iwl_pcie_free_ict(struct iwl_trans *trans);
408 void iwl_pcie_reset_ict(struct iwl_trans *trans);
409 void iwl_pcie_disable_ict(struct iwl_trans *trans);
410
411 /*****************************************************
412 * TX / HCMD
413 ******************************************************/
414 int iwl_pcie_tx_init(struct iwl_trans *trans);
415 void iwl_pcie_tx_start(struct iwl_trans *trans, u32 scd_base_addr);
416 int iwl_pcie_tx_stop(struct iwl_trans *trans);
417 void iwl_pcie_tx_free(struct iwl_trans *trans);
418 void iwl_trans_pcie_txq_enable(struct iwl_trans *trans, int queue, u16 ssn,
419                                const struct iwl_trans_txq_scd_cfg *cfg,
420                                unsigned int wdg_timeout);
421 void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int queue,
422                                 bool configure_scd);
423 int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,
424                       struct iwl_device_cmd *dev_cmd, int txq_id);
425 void iwl_pcie_txq_check_wrptrs(struct iwl_trans *trans);
426 int iwl_trans_pcie_send_hcmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
427 void iwl_pcie_hcmd_complete(struct iwl_trans *trans,
428                             struct iwl_rx_cmd_buffer *rxb);
429 void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int txq_id, int ssn,
430                             struct sk_buff_head *skbs);
431 void iwl_trans_pcie_tx_reset(struct iwl_trans *trans);
432
433 void iwl_trans_pcie_ref(struct iwl_trans *trans);
434 void iwl_trans_pcie_unref(struct iwl_trans *trans);
435
436 static inline u16 iwl_pcie_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
437 {
438         struct iwl_tfd_tb *tb = &tfd->tbs[idx];
439
440         return le16_to_cpu(tb->hi_n_len) >> 4;
441 }
442
443 /*****************************************************
444 * Error handling
445 ******************************************************/
446 void iwl_pcie_dump_csr(struct iwl_trans *trans);
447
448 /*****************************************************
449 * Helpers
450 ******************************************************/
451 static inline void iwl_disable_interrupts(struct iwl_trans *trans)
452 {
453         clear_bit(STATUS_INT_ENABLED, &trans->status);
454
455         /* disable interrupts from uCode/NIC to host */
456         iwl_write32(trans, CSR_INT_MASK, 0x00000000);
457
458         /* acknowledge/clear/reset any interrupts still pending
459          * from uCode or flow handler (Rx/Tx DMA) */
460         iwl_write32(trans, CSR_INT, 0xffffffff);
461         iwl_write32(trans, CSR_FH_INT_STATUS, 0xffffffff);
462         IWL_DEBUG_ISR(trans, "Disabled interrupts\n");
463 }
464
465 static inline void iwl_enable_interrupts(struct iwl_trans *trans)
466 {
467         struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
468
469         IWL_DEBUG_ISR(trans, "Enabling interrupts\n");
470         set_bit(STATUS_INT_ENABLED, &trans->status);
471         trans_pcie->inta_mask = CSR_INI_SET_MASK;
472         iwl_write32(trans, CSR_INT_MASK, trans_pcie->inta_mask);
473 }
474
475 static inline void iwl_enable_rfkill_int(struct iwl_trans *trans)
476 {
477         struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
478
479         IWL_DEBUG_ISR(trans, "Enabling rfkill interrupt\n");
480         trans_pcie->inta_mask = CSR_INT_BIT_RF_KILL;
481         iwl_write32(trans, CSR_INT_MASK, trans_pcie->inta_mask);
482 }
483
484 static inline void iwl_wake_queue(struct iwl_trans *trans,
485                                   struct iwl_txq *txq)
486 {
487         struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
488
489         if (test_and_clear_bit(txq->q.id, trans_pcie->queue_stopped)) {
490                 IWL_DEBUG_TX_QUEUES(trans, "Wake hwq %d\n", txq->q.id);
491                 iwl_op_mode_queue_not_full(trans->op_mode, txq->q.id);
492         }
493 }
494
495 static inline void iwl_stop_queue(struct iwl_trans *trans,
496                                   struct iwl_txq *txq)
497 {
498         struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
499
500         if (!test_and_set_bit(txq->q.id, trans_pcie->queue_stopped)) {
501                 iwl_op_mode_queue_full(trans->op_mode, txq->q.id);
502                 IWL_DEBUG_TX_QUEUES(trans, "Stop hwq %d\n", txq->q.id);
503         } else
504                 IWL_DEBUG_TX_QUEUES(trans, "hwq %d already stopped\n",
505                                     txq->q.id);
506 }
507
508 static inline bool iwl_queue_used(const struct iwl_queue *q, int i)
509 {
510         return q->write_ptr >= q->read_ptr ?
511                 (i >= q->read_ptr && i < q->write_ptr) :
512                 !(i < q->read_ptr && i >= q->write_ptr);
513 }
514
515 static inline u8 get_cmd_index(struct iwl_queue *q, u32 index)
516 {
517         return index & (q->n_window - 1);
518 }
519
520 static inline const char *get_cmd_string(struct iwl_trans_pcie *trans_pcie,
521                                          u8 cmd)
522 {
523         if (!trans_pcie->command_names || !trans_pcie->command_names[cmd])
524                 return "UNKNOWN";
525         return trans_pcie->command_names[cmd];
526 }
527
528 static inline bool iwl_is_rfkill_set(struct iwl_trans *trans)
529 {
530         return !(iwl_read32(trans, CSR_GP_CNTRL) &
531                 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW);
532 }
533
534 static inline void __iwl_trans_pcie_set_bits_mask(struct iwl_trans *trans,
535                                                   u32 reg, u32 mask, u32 value)
536 {
537         u32 v;
538
539 #ifdef CONFIG_IWLWIFI_DEBUG
540         WARN_ON_ONCE(value & ~mask);
541 #endif
542
543         v = iwl_read32(trans, reg);
544         v &= ~mask;
545         v |= value;
546         iwl_write32(trans, reg, v);
547 }
548
549 static inline void __iwl_trans_pcie_clear_bit(struct iwl_trans *trans,
550                                               u32 reg, u32 mask)
551 {
552         __iwl_trans_pcie_set_bits_mask(trans, reg, mask, 0);
553 }
554
555 static inline void __iwl_trans_pcie_set_bit(struct iwl_trans *trans,
556                                             u32 reg, u32 mask)
557 {
558         __iwl_trans_pcie_set_bits_mask(trans, reg, mask, mask);
559 }
560
561 void iwl_trans_pcie_rf_kill(struct iwl_trans *trans, bool state);
562
563 #endif /* __iwl_trans_int_pcie_h__ */