iwl-trans-int-pcie.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. /*This file includes the declaration that are internal to the
  32. * trans_pcie layer */
  33. /**
  34. * struct iwl_rx_queue - Rx queue
  35. * @bd: driver's pointer to buffer of receive buffer descriptors (rbd)
  36. * @bd_dma: bus address of buffer of receive buffer descriptors (rbd)
  37. * @pool:
  38. * @queue:
  39. * @read: Shared index to newest available Rx buffer
  40. * @write: Shared index to oldest written Rx packet
  41. * @free_count: Number of pre-allocated buffers in rx_free
  42. * @write_actual:
  43. * @rx_free: list of free SKBs for use
  44. * @rx_used: List of Rx buffers with no SKB
  45. * @need_update: flag to indicate we need to update read/write index
  46. * @rb_stts: driver's pointer to receive buffer status
  47. * @rb_stts_dma: bus address of receive buffer status
  48. * @lock:
  49. *
  50. * NOTE: rx_free and rx_used are used as a FIFO for iwl_rx_mem_buffers
  51. */
  52. struct iwl_rx_queue {
  53. __le32 *bd;
  54. dma_addr_t bd_dma;
  55. struct iwl_rx_mem_buffer pool[RX_QUEUE_SIZE + RX_FREE_BUFFERS];
  56. struct iwl_rx_mem_buffer *queue[RX_QUEUE_SIZE];
  57. u32 read;
  58. u32 write;
  59. u32 free_count;
  60. u32 write_actual;
  61. struct list_head rx_free;
  62. struct list_head rx_used;
  63. int need_update;
  64. struct iwl_rb_status *rb_stts;
  65. dma_addr_t rb_stts_dma;
  66. spinlock_t lock;
  67. };
  68. /**
  69. * struct iwl_trans_pcie - PCIe transport specific data
  70. * @rxq: all the RX queue data
  71. * @rx_replenish: work that will be called when buffers need to be allocated
  72. * @trans: pointer to the generic transport area
  73. */
  74. struct iwl_trans_pcie {
  75. struct iwl_rx_queue rxq;
  76. struct work_struct rx_replenish;
  77. struct iwl_trans *trans;
  78. /* INT ICT Table */
  79. __le32 *ict_tbl;
  80. void *ict_tbl_vir;
  81. dma_addr_t ict_tbl_dma;
  82. dma_addr_t aligned_ict_tbl_dma;
  83. int ict_index;
  84. u32 inta;
  85. bool use_ict;
  86. struct tasklet_struct irq_tasklet;
  87. u32 inta_mask;
  88. };
  89. #define IWL_TRANS_GET_PCIE_TRANS(_iwl_trans) \
  90. ((struct iwl_trans_pcie *) ((_iwl_trans)->trans_specific))
  91. /*****************************************************
  92. * RX
  93. ******************************************************/
  94. void iwl_bg_rx_replenish(struct work_struct *data);
  95. void iwl_irq_tasklet(struct iwl_trans *trans);
  96. void iwlagn_rx_replenish(struct iwl_trans *trans);
  97. void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans,
  98. struct iwl_rx_queue *q);
  99. /*****************************************************
  100. * ICT
  101. ******************************************************/
  102. int iwl_reset_ict(struct iwl_priv *priv);
  103. void iwl_disable_ict(struct iwl_trans *trans);
  104. int iwl_alloc_isr_ict(struct iwl_trans *trans);
  105. void iwl_free_isr_ict(struct iwl_trans *trans);
  106. irqreturn_t iwl_isr_ict(int irq, void *data);
  107. /*****************************************************
  108. * TX / HCMD
  109. ******************************************************/
  110. void iwl_txq_update_write_ptr(struct iwl_priv *priv, struct iwl_tx_queue *txq);
  111. void iwlagn_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq,
  112. int index);
  113. int iwlagn_txq_attach_buf_to_tfd(struct iwl_priv *priv,
  114. struct iwl_tx_queue *txq,
  115. dma_addr_t addr, u16 len, u8 reset);
  116. int iwl_queue_init(struct iwl_priv *priv, struct iwl_queue *q,
  117. int count, int slots_num, u32 id);
  118. int iwl_trans_pcie_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd);
  119. int __must_check iwl_trans_pcie_send_cmd_pdu(struct iwl_priv *priv, u8 id,
  120. u32 flags, u16 len, const void *data);
  121. void iwl_tx_cmd_complete(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb);
  122. void iwl_trans_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
  123. struct iwl_tx_queue *txq,
  124. u16 byte_cnt);
  125. int iwl_trans_pcie_txq_agg_disable(struct iwl_priv *priv, u16 txq_id,
  126. u16 ssn_idx, u8 tx_fifo);
  127. void iwl_trans_set_wr_ptrs(struct iwl_priv *priv,
  128. int txq_id, u32 index);
  129. void iwl_trans_tx_queue_set_status(struct iwl_priv *priv,
  130. struct iwl_tx_queue *txq,
  131. int tx_fifo_id, int scd_retry);
  132. void iwl_trans_pcie_txq_agg_setup(struct iwl_priv *priv, int sta_id, int tid,
  133. int frame_limit);
  134. static inline void iwl_disable_interrupts(struct iwl_trans *trans)
  135. {
  136. clear_bit(STATUS_INT_ENABLED, &trans->shrd->status);
  137. /* disable interrupts from uCode/NIC to host */
  138. iwl_write32(priv(trans), CSR_INT_MASK, 0x00000000);
  139. /* acknowledge/clear/reset any interrupts still pending
  140. * from uCode or flow handler (Rx/Tx DMA) */
  141. iwl_write32(priv(trans), CSR_INT, 0xffffffff);
  142. iwl_write32(priv(trans), CSR_FH_INT_STATUS, 0xffffffff);
  143. IWL_DEBUG_ISR(trans, "Disabled interrupts\n");
  144. }
  145. static inline void iwl_enable_interrupts(struct iwl_trans *trans)
  146. {
  147. struct iwl_trans_pcie *trans_pcie =
  148. IWL_TRANS_GET_PCIE_TRANS(trans);
  149. IWL_DEBUG_ISR(trans, "Enabling interrupts\n");
  150. set_bit(STATUS_INT_ENABLED, &trans->shrd->status);
  151. iwl_write32(priv(trans), CSR_INT_MASK, trans_pcie->inta_mask);
  152. }
  153. #endif /* __iwl_trans_int_pcie_h__ */