opa_vnic.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. #ifndef _OPA_VNIC_H
  2. #define _OPA_VNIC_H
  3. /*
  4. * Copyright(c) 2017 Intel Corporation.
  5. *
  6. * This file is provided under a dual BSD/GPLv2 license. When using or
  7. * redistributing this file, you may do so under either license.
  8. *
  9. * GPL LICENSE SUMMARY
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of version 2 of the GNU General Public License as
  13. * published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * BSD LICENSE
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. *
  26. * - Redistributions of source code must retain the above copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * - Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in
  30. * the documentation and/or other materials provided with the
  31. * distribution.
  32. * - Neither the name of Intel Corporation nor the names of its
  33. * contributors may be used to endorse or promote products derived
  34. * from this software without specific prior written permission.
  35. *
  36. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  37. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  38. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  39. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  40. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  41. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  42. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  43. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  44. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  45. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  46. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  47. *
  48. */
  49. /*
  50. * This file contains Intel Omni-Path (OPA) Virtual Network Interface
  51. * Controller (VNIC) specific declarations.
  52. */
  53. #include <rdma/ib_verbs.h>
  54. /* 16 header bytes + 2 reserved bytes */
  55. #define OPA_VNIC_L2_HDR_LEN (16 + 2)
  56. #define OPA_VNIC_L4_HDR_LEN 2
  57. #define OPA_VNIC_HDR_LEN (OPA_VNIC_L2_HDR_LEN + \
  58. OPA_VNIC_L4_HDR_LEN)
  59. #define OPA_VNIC_L4_ETHR 0x78
  60. #define OPA_VNIC_ICRC_LEN 4
  61. #define OPA_VNIC_TAIL_LEN 1
  62. #define OPA_VNIC_ICRC_TAIL_LEN (OPA_VNIC_ICRC_LEN + OPA_VNIC_TAIL_LEN)
  63. #define OPA_VNIC_SKB_MDATA_LEN 4
  64. #define OPA_VNIC_SKB_MDATA_ENCAP_ERR 0x1
  65. /* opa vnic rdma netdev's private data structure */
  66. struct opa_vnic_rdma_netdev {
  67. struct rdma_netdev rn; /* keep this first */
  68. /* followed by device private data */
  69. char *dev_priv[0];
  70. };
  71. static inline void *opa_vnic_priv(const struct net_device *dev)
  72. {
  73. struct rdma_netdev *rn = netdev_priv(dev);
  74. return rn->clnt_priv;
  75. }
  76. static inline void *opa_vnic_dev_priv(const struct net_device *dev)
  77. {
  78. struct opa_vnic_rdma_netdev *oparn = netdev_priv(dev);
  79. return oparn->dev_priv;
  80. }
  81. /* opa_vnic skb meta data structrue */
  82. struct opa_vnic_skb_mdata {
  83. u8 vl;
  84. u8 entropy;
  85. u8 flags;
  86. u8 rsvd;
  87. } __packed;
  88. /* OPA VNIC group statistics */
  89. struct opa_vnic_grp_stats {
  90. u64 unicast;
  91. u64 mcastbcast;
  92. u64 untagged;
  93. u64 vlan;
  94. u64 s_64;
  95. u64 s_65_127;
  96. u64 s_128_255;
  97. u64 s_256_511;
  98. u64 s_512_1023;
  99. u64 s_1024_1518;
  100. u64 s_1519_max;
  101. };
  102. struct opa_vnic_stats {
  103. /* standard netdev statistics */
  104. struct rtnl_link_stats64 netstats;
  105. /* OPA VNIC statistics */
  106. struct opa_vnic_grp_stats tx_grp;
  107. struct opa_vnic_grp_stats rx_grp;
  108. u64 tx_dlid_zero;
  109. u64 tx_drop_state;
  110. u64 rx_drop_state;
  111. u64 rx_runt;
  112. u64 rx_oversize;
  113. };
  114. static inline bool rdma_cap_opa_vnic(struct ib_device *device)
  115. {
  116. return !!(device->attrs.device_cap_flags &
  117. IB_DEVICE_RDMA_NETDEV_OPA_VNIC);
  118. }
  119. #endif /* _OPA_VNIC_H */