usnic_ib.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. * Copyright (c) 2013, Cisco Systems, Inc. All rights reserved.
  3. *
  4. * This software is available to you under a choice of one of two
  5. * licenses. You may choose to be licensed under the terms of the GNU
  6. * General Public License (GPL) Version 2, available from the file
  7. * COPYING in the main directory of this source tree, or the
  8. * BSD license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  18. * - Redistributions in binary form must reproduce the above
  19. * copyright notice, this list of conditions and the following
  20. * disclaimer in the documentation and/or other materials
  21. * provided with the distribution.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  27. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  28. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  29. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  30. * SOFTWARE.
  31. *
  32. */
  33. #ifndef USNIC_IB_H_
  34. #define USNIC_IB_H_
  35. #include <linux/iommu.h>
  36. #include <linux/netdevice.h>
  37. #include <rdma/ib_verbs.h>
  38. #include "usnic.h"
  39. #include "usnic_abi.h"
  40. #include "usnic_vnic.h"
  41. #define USNIC_IB_PORT_CNT 1
  42. #define USNIC_IB_NUM_COMP_VECTORS 1
  43. extern unsigned int usnic_ib_share_vf;
  44. struct usnic_ib_ucontext {
  45. struct ib_ucontext ibucontext;
  46. /* Protected by usnic_ib_dev->usdev_lock */
  47. struct list_head qp_grp_list;
  48. struct list_head link;
  49. };
  50. struct usnic_ib_pd {
  51. struct ib_pd ibpd;
  52. struct usnic_uiom_pd *umem_pd;
  53. };
  54. struct usnic_ib_cq {
  55. struct ib_cq ibcq;
  56. };
  57. struct usnic_ib_mr {
  58. struct ib_mr ibmr;
  59. struct usnic_uiom_reg *umem;
  60. };
  61. struct usnic_ib_dev {
  62. struct ib_device ib_dev;
  63. struct pci_dev *pdev;
  64. struct net_device *netdev;
  65. struct usnic_fwd_dev *ufdev;
  66. struct list_head ib_dev_link;
  67. struct list_head vf_dev_list;
  68. struct list_head ctx_list;
  69. struct mutex usdev_lock;
  70. /* provisioning information */
  71. struct kref vf_cnt;
  72. unsigned int vf_res_cnt[USNIC_VNIC_RES_TYPE_MAX];
  73. /* sysfs vars for QPN reporting */
  74. struct kobject *qpn_kobj;
  75. };
  76. struct usnic_ib_vf {
  77. struct usnic_ib_dev *pf;
  78. struct mutex lock;
  79. struct usnic_vnic *vnic;
  80. unsigned int qp_grp_ref_cnt;
  81. struct usnic_ib_pd *pd;
  82. struct list_head link;
  83. };
  84. static inline
  85. struct usnic_ib_dev *to_usdev(struct ib_device *ibdev)
  86. {
  87. return container_of(ibdev, struct usnic_ib_dev, ib_dev);
  88. }
  89. static inline
  90. struct usnic_ib_ucontext *to_ucontext(struct ib_ucontext *ibucontext)
  91. {
  92. return container_of(ibucontext, struct usnic_ib_ucontext, ibucontext);
  93. }
  94. static inline
  95. struct usnic_ib_pd *to_upd(struct ib_pd *ibpd)
  96. {
  97. return container_of(ibpd, struct usnic_ib_pd, ibpd);
  98. }
  99. static inline
  100. struct usnic_ib_ucontext *to_uucontext(struct ib_ucontext *ibucontext)
  101. {
  102. return container_of(ibucontext, struct usnic_ib_ucontext, ibucontext);
  103. }
  104. static inline
  105. struct usnic_ib_mr *to_umr(struct ib_mr *ibmr)
  106. {
  107. return container_of(ibmr, struct usnic_ib_mr, ibmr);
  108. }
  109. void usnic_ib_log_vf(struct usnic_ib_vf *vf);
  110. #define UPDATE_PTR_LEFT(N, P, L) \
  111. do { \
  112. L -= (N); \
  113. P += (N); \
  114. } while (0)
  115. #endif /* USNIC_IB_H_ */