vnic_rq.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. /*
  2. * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved.
  3. * Copyright 2007 Nuova Systems, Inc. All rights reserved.
  4. *
  5. * This program is free software; you may redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; version 2 of the License.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  10. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  11. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  12. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  13. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  14. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  15. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  16. * SOFTWARE.
  17. *
  18. */
  19. #ifndef _VNIC_RQ_H_
  20. #define _VNIC_RQ_H_
  21. #include <linux/pci.h>
  22. #include <linux/netdevice.h>
  23. #include "vnic_dev.h"
  24. #include "vnic_cq.h"
  25. /* Receive queue control */
  26. struct vnic_rq_ctrl {
  27. u64 ring_base; /* 0x00 */
  28. u32 ring_size; /* 0x08 */
  29. u32 pad0;
  30. u32 posted_index; /* 0x10 */
  31. u32 pad1;
  32. u32 cq_index; /* 0x18 */
  33. u32 pad2;
  34. u32 enable; /* 0x20 */
  35. u32 pad3;
  36. u32 running; /* 0x28 */
  37. u32 pad4;
  38. u32 fetch_index; /* 0x30 */
  39. u32 pad5;
  40. u32 error_interrupt_enable; /* 0x38 */
  41. u32 pad6;
  42. u32 error_interrupt_offset; /* 0x40 */
  43. u32 pad7;
  44. u32 error_status; /* 0x48 */
  45. u32 pad8;
  46. u32 dropped_packet_count; /* 0x50 */
  47. u32 pad9;
  48. u32 dropped_packet_count_rc; /* 0x58 */
  49. u32 pad10;
  50. };
  51. /* Break the vnic_rq_buf allocations into blocks of 32/64 entries */
  52. #define VNIC_RQ_BUF_MIN_BLK_ENTRIES 32
  53. #define VNIC_RQ_BUF_DFLT_BLK_ENTRIES 64
  54. #define VNIC_RQ_BUF_BLK_ENTRIES(entries) \
  55. ((unsigned int)((entries < VNIC_RQ_BUF_DFLT_BLK_ENTRIES) ? \
  56. VNIC_RQ_BUF_MIN_BLK_ENTRIES : VNIC_RQ_BUF_DFLT_BLK_ENTRIES))
  57. #define VNIC_RQ_BUF_BLK_SZ(entries) \
  58. (VNIC_RQ_BUF_BLK_ENTRIES(entries) * sizeof(struct vnic_rq_buf))
  59. #define VNIC_RQ_BUF_BLKS_NEEDED(entries) \
  60. DIV_ROUND_UP(entries, VNIC_RQ_BUF_BLK_ENTRIES(entries))
  61. #define VNIC_RQ_BUF_BLKS_MAX VNIC_RQ_BUF_BLKS_NEEDED(4096)
  62. struct vnic_rq_buf {
  63. struct vnic_rq_buf *next;
  64. dma_addr_t dma_addr;
  65. void *os_buf;
  66. unsigned int os_buf_index;
  67. unsigned int len;
  68. unsigned int index;
  69. void *desc;
  70. uint64_t wr_id;
  71. };
  72. enum enic_poll_state {
  73. ENIC_POLL_STATE_IDLE,
  74. ENIC_POLL_STATE_NAPI,
  75. ENIC_POLL_STATE_POLL
  76. };
  77. struct vnic_rq {
  78. unsigned int index;
  79. struct vnic_dev *vdev;
  80. struct vnic_rq_ctrl __iomem *ctrl; /* memory-mapped */
  81. struct vnic_dev_ring ring;
  82. struct vnic_rq_buf *bufs[VNIC_RQ_BUF_BLKS_MAX];
  83. struct vnic_rq_buf *to_use;
  84. struct vnic_rq_buf *to_clean;
  85. void *os_buf_head;
  86. unsigned int pkts_outstanding;
  87. #ifdef CONFIG_NET_RX_BUSY_POLL
  88. atomic_t bpoll_state;
  89. #endif /* CONFIG_NET_RX_BUSY_POLL */
  90. };
  91. static inline unsigned int vnic_rq_desc_avail(struct vnic_rq *rq)
  92. {
  93. /* how many does SW own? */
  94. return rq->ring.desc_avail;
  95. }
  96. static inline unsigned int vnic_rq_desc_used(struct vnic_rq *rq)
  97. {
  98. /* how many does HW own? */
  99. return rq->ring.desc_count - rq->ring.desc_avail - 1;
  100. }
  101. static inline void *vnic_rq_next_desc(struct vnic_rq *rq)
  102. {
  103. return rq->to_use->desc;
  104. }
  105. static inline unsigned int vnic_rq_next_index(struct vnic_rq *rq)
  106. {
  107. return rq->to_use->index;
  108. }
  109. static inline void vnic_rq_post(struct vnic_rq *rq,
  110. void *os_buf, unsigned int os_buf_index,
  111. dma_addr_t dma_addr, unsigned int len,
  112. uint64_t wrid)
  113. {
  114. struct vnic_rq_buf *buf = rq->to_use;
  115. buf->os_buf = os_buf;
  116. buf->os_buf_index = os_buf_index;
  117. buf->dma_addr = dma_addr;
  118. buf->len = len;
  119. buf->wr_id = wrid;
  120. buf = buf->next;
  121. rq->to_use = buf;
  122. rq->ring.desc_avail--;
  123. /* Move the posted_index every nth descriptor
  124. */
  125. #ifndef VNIC_RQ_RETURN_RATE
  126. #define VNIC_RQ_RETURN_RATE 0xf /* keep 2^n - 1 */
  127. #endif
  128. if ((buf->index & VNIC_RQ_RETURN_RATE) == 0) {
  129. /* Adding write memory barrier prevents compiler and/or CPU
  130. * reordering, thus avoiding descriptor posting before
  131. * descriptor is initialized. Otherwise, hardware can read
  132. * stale descriptor fields.
  133. */
  134. wmb();
  135. iowrite32(buf->index, &rq->ctrl->posted_index);
  136. }
  137. }
  138. static inline void vnic_rq_return_descs(struct vnic_rq *rq, unsigned int count)
  139. {
  140. rq->ring.desc_avail += count;
  141. }
  142. enum desc_return_options {
  143. VNIC_RQ_RETURN_DESC,
  144. VNIC_RQ_DEFER_RETURN_DESC,
  145. };
  146. static inline void vnic_rq_service(struct vnic_rq *rq,
  147. struct cq_desc *cq_desc, u16 completed_index,
  148. int desc_return, void (*buf_service)(struct vnic_rq *rq,
  149. struct cq_desc *cq_desc, struct vnic_rq_buf *buf,
  150. int skipped, void *opaque), void *opaque)
  151. {
  152. struct vnic_rq_buf *buf;
  153. int skipped;
  154. buf = rq->to_clean;
  155. while (1) {
  156. skipped = (buf->index != completed_index);
  157. (*buf_service)(rq, cq_desc, buf, skipped, opaque);
  158. if (desc_return == VNIC_RQ_RETURN_DESC)
  159. rq->ring.desc_avail++;
  160. rq->to_clean = buf->next;
  161. if (!skipped)
  162. break;
  163. buf = rq->to_clean;
  164. }
  165. }
  166. static inline int vnic_rq_fill(struct vnic_rq *rq,
  167. int (*buf_fill)(struct vnic_rq *rq))
  168. {
  169. int err;
  170. while (vnic_rq_desc_avail(rq) > 0) {
  171. err = (*buf_fill)(rq);
  172. if (err)
  173. return err;
  174. }
  175. return 0;
  176. }
  177. #ifdef CONFIG_NET_RX_BUSY_POLL
  178. static inline void enic_busy_poll_init_lock(struct vnic_rq *rq)
  179. {
  180. atomic_set(&rq->bpoll_state, ENIC_POLL_STATE_IDLE);
  181. }
  182. static inline bool enic_poll_lock_napi(struct vnic_rq *rq)
  183. {
  184. int rc = atomic_cmpxchg(&rq->bpoll_state, ENIC_POLL_STATE_IDLE,
  185. ENIC_POLL_STATE_NAPI);
  186. return (rc == ENIC_POLL_STATE_IDLE);
  187. }
  188. static inline void enic_poll_unlock_napi(struct vnic_rq *rq,
  189. struct napi_struct *napi)
  190. {
  191. WARN_ON(atomic_read(&rq->bpoll_state) != ENIC_POLL_STATE_NAPI);
  192. napi_gro_flush(napi, false);
  193. atomic_set(&rq->bpoll_state, ENIC_POLL_STATE_IDLE);
  194. }
  195. static inline bool enic_poll_lock_poll(struct vnic_rq *rq)
  196. {
  197. int rc = atomic_cmpxchg(&rq->bpoll_state, ENIC_POLL_STATE_IDLE,
  198. ENIC_POLL_STATE_POLL);
  199. return (rc == ENIC_POLL_STATE_IDLE);
  200. }
  201. static inline void enic_poll_unlock_poll(struct vnic_rq *rq)
  202. {
  203. WARN_ON(atomic_read(&rq->bpoll_state) != ENIC_POLL_STATE_POLL);
  204. atomic_set(&rq->bpoll_state, ENIC_POLL_STATE_IDLE);
  205. }
  206. static inline bool enic_poll_busy_polling(struct vnic_rq *rq)
  207. {
  208. return atomic_read(&rq->bpoll_state) & ENIC_POLL_STATE_POLL;
  209. }
  210. #else
  211. static inline void enic_busy_poll_init_lock(struct vnic_rq *rq)
  212. {
  213. }
  214. static inline bool enic_poll_lock_napi(struct vnic_rq *rq)
  215. {
  216. return true;
  217. }
  218. static inline bool enic_poll_unlock_napi(struct vnic_rq *rq,
  219. struct napi_struct *napi)
  220. {
  221. return false;
  222. }
  223. static inline bool enic_poll_lock_poll(struct vnic_rq *rq)
  224. {
  225. return false;
  226. }
  227. static inline bool enic_poll_unlock_poll(struct vnic_rq *rq)
  228. {
  229. return false;
  230. }
  231. static inline bool enic_poll_ll_polling(struct vnic_rq *rq)
  232. {
  233. return false;
  234. }
  235. #endif /* CONFIG_NET_RX_BUSY_POLL */
  236. void vnic_rq_free(struct vnic_rq *rq);
  237. int vnic_rq_alloc(struct vnic_dev *vdev, struct vnic_rq *rq, unsigned int index,
  238. unsigned int desc_count, unsigned int desc_size);
  239. void vnic_rq_init(struct vnic_rq *rq, unsigned int cq_index,
  240. unsigned int error_interrupt_enable,
  241. unsigned int error_interrupt_offset);
  242. unsigned int vnic_rq_error_status(struct vnic_rq *rq);
  243. void vnic_rq_enable(struct vnic_rq *rq);
  244. int vnic_rq_disable(struct vnic_rq *rq);
  245. void vnic_rq_clean(struct vnic_rq *rq,
  246. void (*buf_clean)(struct vnic_rq *rq, struct vnic_rq_buf *buf));
  247. #endif /* _VNIC_RQ_H_ */