bnxt_re.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /*
  2. * Broadcom NetXtreme-E RoCE driver.
  3. *
  4. * Copyright (c) 2016 - 2017, Broadcom. All rights reserved. The term
  5. * Broadcom refers to Broadcom Limited and/or its subsidiaries.
  6. *
  7. * This software is available to you under a choice of one of two
  8. * licenses. You may choose to be licensed under the terms of the GNU
  9. * General Public License (GPL) Version 2, available from the file
  10. * COPYING in the main directory of this source tree, or the
  11. * BSD license below:
  12. *
  13. * Redistribution and use in source and binary forms, with or without
  14. * modification, are permitted provided that the following conditions
  15. * are met:
  16. *
  17. * 1. Redistributions of source code must retain the above copyright
  18. * notice, this list of conditions and the following disclaimer.
  19. * 2. Redistributions in binary form must reproduce the above copyright
  20. * notice, this list of conditions and the following disclaimer in
  21. * the documentation and/or other materials provided with the
  22. * distribution.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
  25. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  26. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  27. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
  28. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  29. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  30. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  31. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  32. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  33. * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  34. * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  35. *
  36. * Description: Slow Path Operators (header)
  37. *
  38. */
  39. #ifndef __BNXT_RE_H__
  40. #define __BNXT_RE_H__
  41. #define ROCE_DRV_MODULE_NAME "bnxt_re"
  42. #define ROCE_DRV_MODULE_VERSION "1.0.0"
  43. #define BNXT_RE_DESC "Broadcom NetXtreme-C/E RoCE Driver"
  44. #define BNXT_RE_PAGE_SHIFT_4K (12)
  45. #define BNXT_RE_PAGE_SHIFT_8K (13)
  46. #define BNXT_RE_PAGE_SHIFT_64K (16)
  47. #define BNXT_RE_PAGE_SHIFT_2M (21)
  48. #define BNXT_RE_PAGE_SHIFT_8M (23)
  49. #define BNXT_RE_PAGE_SHIFT_1G (30)
  50. #define BNXT_RE_PAGE_SIZE_4K BIT(BNXT_RE_PAGE_SHIFT_4K)
  51. #define BNXT_RE_PAGE_SIZE_8K BIT(BNXT_RE_PAGE_SHIFT_8K)
  52. #define BNXT_RE_PAGE_SIZE_64K BIT(BNXT_RE_PAGE_SHIFT_64K)
  53. #define BNXT_RE_PAGE_SIZE_2M BIT(BNXT_RE_PAGE_SHIFT_2M)
  54. #define BNXT_RE_PAGE_SIZE_8M BIT(BNXT_RE_PAGE_SHIFT_8M)
  55. #define BNXT_RE_PAGE_SIZE_1G BIT(BNXT_RE_PAGE_SHIFT_1G)
  56. #define BNXT_RE_MAX_MR_SIZE_LOW BIT_ULL(BNXT_RE_PAGE_SHIFT_1G)
  57. #define BNXT_RE_MAX_MR_SIZE_HIGH BIT_ULL(39)
  58. #define BNXT_RE_MAX_MR_SIZE BNXT_RE_MAX_MR_SIZE_HIGH
  59. #define BNXT_RE_MAX_QPC_COUNT (64 * 1024)
  60. #define BNXT_RE_MAX_MRW_COUNT (64 * 1024)
  61. #define BNXT_RE_MAX_SRQC_COUNT (64 * 1024)
  62. #define BNXT_RE_MAX_CQ_COUNT (64 * 1024)
  63. #define BNXT_RE_MAX_MRW_COUNT_64K (64 * 1024)
  64. #define BNXT_RE_MAX_MRW_COUNT_256K (256 * 1024)
  65. /* Number of MRs to reserve for PF, leaving remainder for VFs */
  66. #define BNXT_RE_RESVD_MR_FOR_PF (32 * 1024)
  67. #define BNXT_RE_MAX_GID_PER_VF 128
  68. /*
  69. * Percentage of resources of each type reserved for PF.
  70. * Remaining resources are divided equally among VFs.
  71. * [0, 100]
  72. */
  73. #define BNXT_RE_PCT_RSVD_FOR_PF 50
  74. #define BNXT_RE_UD_QP_HW_STALL 0x400000
  75. #define BNXT_RE_RQ_WQE_THRESHOLD 32
  76. /*
  77. * Setting the default ack delay value to 16, which means
  78. * the default timeout is approx. 260ms(4 usec * 2 ^(timeout))
  79. */
  80. #define BNXT_RE_DEFAULT_ACK_DELAY 16
  81. struct bnxt_re_work {
  82. struct work_struct work;
  83. unsigned long event;
  84. struct bnxt_re_dev *rdev;
  85. struct net_device *vlan_dev;
  86. };
  87. struct bnxt_re_sqp_entries {
  88. struct bnxt_qplib_sge sge;
  89. u64 wrid;
  90. /* For storing the actual qp1 cqe */
  91. struct bnxt_qplib_cqe cqe;
  92. struct bnxt_re_qp *qp1_qp;
  93. };
  94. #define BNXT_RE_MIN_MSIX 2
  95. #define BNXT_RE_MAX_MSIX 9
  96. #define BNXT_RE_AEQ_IDX 0
  97. #define BNXT_RE_NQ_IDX 1
  98. struct bnxt_re_dev {
  99. struct ib_device ibdev;
  100. struct list_head list;
  101. unsigned long flags;
  102. #define BNXT_RE_FLAG_NETDEV_REGISTERED 0
  103. #define BNXT_RE_FLAG_IBDEV_REGISTERED 1
  104. #define BNXT_RE_FLAG_GOT_MSIX 2
  105. #define BNXT_RE_FLAG_HAVE_L2_REF 3
  106. #define BNXT_RE_FLAG_RCFW_CHANNEL_EN 4
  107. #define BNXT_RE_FLAG_QOS_WORK_REG 5
  108. #define BNXT_RE_FLAG_ISSUE_ROCE_STATS 29
  109. struct net_device *netdev;
  110. unsigned int version, major, minor;
  111. struct bnxt_en_dev *en_dev;
  112. struct bnxt_msix_entry msix_entries[BNXT_RE_MAX_MSIX];
  113. int num_msix;
  114. int id;
  115. struct delayed_work worker;
  116. u8 cur_prio_map;
  117. u8 active_speed;
  118. u8 active_width;
  119. /* FP Notification Queue (CQ & SRQ) */
  120. struct tasklet_struct nq_task;
  121. /* RCFW Channel */
  122. struct bnxt_qplib_rcfw rcfw;
  123. /* NQ */
  124. struct bnxt_qplib_nq nq[BNXT_RE_MAX_MSIX];
  125. /* Device Resources */
  126. struct bnxt_qplib_dev_attr dev_attr;
  127. struct bnxt_qplib_ctx qplib_ctx;
  128. struct bnxt_qplib_res qplib_res;
  129. struct bnxt_qplib_dpi dpi_privileged;
  130. atomic_t qp_count;
  131. struct mutex qp_lock; /* protect qp list */
  132. struct list_head qp_list;
  133. atomic_t cq_count;
  134. atomic_t srq_count;
  135. atomic_t mr_count;
  136. atomic_t mw_count;
  137. atomic_t sched_count;
  138. /* Max of 2 lossless traffic class supported per port */
  139. u16 cosq[2];
  140. /* QP for for handling QP1 packets */
  141. u32 sqp_id;
  142. struct bnxt_re_qp *qp1_sqp;
  143. struct bnxt_re_ah *sqp_ah;
  144. struct bnxt_re_sqp_entries sqp_tbl[1024];
  145. atomic_t nq_alloc_cnt;
  146. u32 is_virtfn;
  147. u32 num_vfs;
  148. struct bnxt_qplib_roce_stats stats;
  149. };
  150. #define to_bnxt_re_dev(ptr, member) \
  151. container_of((ptr), struct bnxt_re_dev, member)
  152. #define BNXT_RE_ROCE_V1_PACKET 0
  153. #define BNXT_RE_ROCEV2_IPV4_PACKET 2
  154. #define BNXT_RE_ROCEV2_IPV6_PACKET 3
  155. static inline struct device *rdev_to_dev(struct bnxt_re_dev *rdev)
  156. {
  157. if (rdev)
  158. return &rdev->ibdev.dev;
  159. return NULL;
  160. }
  161. #endif