opa_vnic.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. /* VNIC uses 16B header format */
  55. #define OPA_VNIC_L2_TYPE 0x2
  56. /* 16 header bytes + 2 reserved bytes */
  57. #define OPA_VNIC_L2_HDR_LEN (16 + 2)
  58. #define OPA_VNIC_L4_HDR_LEN 2
  59. #define OPA_VNIC_HDR_LEN (OPA_VNIC_L2_HDR_LEN + \
  60. OPA_VNIC_L4_HDR_LEN)
  61. #define OPA_VNIC_L4_ETHR 0x78
  62. #define OPA_VNIC_ICRC_LEN 4
  63. #define OPA_VNIC_TAIL_LEN 1
  64. #define OPA_VNIC_ICRC_TAIL_LEN (OPA_VNIC_ICRC_LEN + OPA_VNIC_TAIL_LEN)
  65. #define OPA_VNIC_SKB_MDATA_LEN 4
  66. #define OPA_VNIC_SKB_MDATA_ENCAP_ERR 0x1
  67. /* opa vnic rdma netdev's private data structure */
  68. struct opa_vnic_rdma_netdev {
  69. struct rdma_netdev rn; /* keep this first */
  70. /* followed by device private data */
  71. char *dev_priv[0];
  72. };
  73. static inline void *opa_vnic_priv(const struct net_device *dev)
  74. {
  75. struct rdma_netdev *rn = netdev_priv(dev);
  76. return rn->clnt_priv;
  77. }
  78. static inline void *opa_vnic_dev_priv(const struct net_device *dev)
  79. {
  80. struct opa_vnic_rdma_netdev *oparn = netdev_priv(dev);
  81. return oparn->dev_priv;
  82. }
  83. /* opa_vnic skb meta data structrue */
  84. struct opa_vnic_skb_mdata {
  85. u8 vl;
  86. u8 entropy;
  87. u8 flags;
  88. u8 rsvd;
  89. } __packed;
  90. /* OPA VNIC group statistics */
  91. struct opa_vnic_grp_stats {
  92. u64 unicast;
  93. u64 mcastbcast;
  94. u64 untagged;
  95. u64 vlan;
  96. u64 s_64;
  97. u64 s_65_127;
  98. u64 s_128_255;
  99. u64 s_256_511;
  100. u64 s_512_1023;
  101. u64 s_1024_1518;
  102. u64 s_1519_max;
  103. };
  104. struct opa_vnic_stats {
  105. /* standard netdev statistics */
  106. struct rtnl_link_stats64 netstats;
  107. /* OPA VNIC statistics */
  108. struct opa_vnic_grp_stats tx_grp;
  109. struct opa_vnic_grp_stats rx_grp;
  110. u64 tx_dlid_zero;
  111. u64 tx_drop_state;
  112. u64 rx_drop_state;
  113. u64 rx_runt;
  114. u64 rx_oversize;
  115. };
  116. static inline bool rdma_cap_opa_vnic(struct ib_device *device)
  117. {
  118. return !!(device->attrs.device_cap_flags &
  119. IB_DEVICE_RDMA_NETDEV_OPA_VNIC);
  120. }
  121. #endif /* _OPA_VNIC_H */