usnic_ib.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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_mr {
  55. struct ib_mr ibmr;
  56. struct usnic_uiom_reg *umem;
  57. };
  58. struct usnic_ib_dev {
  59. struct ib_device ib_dev;
  60. struct pci_dev *pdev;
  61. struct net_device *netdev;
  62. struct usnic_fwd_dev *ufdev;
  63. struct list_head ib_dev_link;
  64. struct list_head vf_dev_list;
  65. struct list_head ctx_list;
  66. struct mutex usdev_lock;
  67. /* provisioning information */
  68. struct kref vf_cnt;
  69. unsigned int vf_res_cnt[USNIC_VNIC_RES_TYPE_MAX];
  70. /* sysfs vars for QPN reporting */
  71. struct kobject *qpn_kobj;
  72. };
  73. struct usnic_ib_vf {
  74. struct usnic_ib_dev *pf;
  75. spinlock_t lock;
  76. struct usnic_vnic *vnic;
  77. unsigned int qp_grp_ref_cnt;
  78. struct usnic_ib_pd *pd;
  79. struct list_head link;
  80. };
  81. static inline
  82. struct usnic_ib_dev *to_usdev(struct ib_device *ibdev)
  83. {
  84. return container_of(ibdev, struct usnic_ib_dev, ib_dev);
  85. }
  86. static inline
  87. struct usnic_ib_ucontext *to_ucontext(struct ib_ucontext *ibucontext)
  88. {
  89. return container_of(ibucontext, struct usnic_ib_ucontext, ibucontext);
  90. }
  91. static inline
  92. struct usnic_ib_pd *to_upd(struct ib_pd *ibpd)
  93. {
  94. return container_of(ibpd, struct usnic_ib_pd, ibpd);
  95. }
  96. static inline
  97. struct usnic_ib_ucontext *to_uucontext(struct ib_ucontext *ibucontext)
  98. {
  99. return container_of(ibucontext, struct usnic_ib_ucontext, ibucontext);
  100. }
  101. static inline
  102. struct usnic_ib_mr *to_umr(struct ib_mr *ibmr)
  103. {
  104. return container_of(ibmr, struct usnic_ib_mr, ibmr);
  105. }
  106. void usnic_ib_log_vf(struct usnic_ib_vf *vf);
  107. #define UPDATE_PTR_LEFT(N, P, L) \
  108. do { \
  109. L -= (N); \
  110. P += (N); \
  111. } while (0)
  112. #endif /* USNIC_IB_H_ */