rxe.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
  2. /*
  3. * Copyright (c) 2016 Mellanox Technologies Ltd. All rights reserved.
  4. * Copyright (c) 2015 System Fabric Works, Inc. All rights reserved.
  5. */
  6. #ifndef RXE_H
  7. #define RXE_H
  8. #ifdef pr_fmt
  9. #undef pr_fmt
  10. #endif
  11. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  12. #include <linux/skbuff.h>
  13. #include <rdma/ib_verbs.h>
  14. #include <rdma/ib_user_verbs.h>
  15. #include <rdma/ib_pack.h>
  16. #include <rdma/ib_smi.h>
  17. #include <rdma/ib_umem.h>
  18. #include <rdma/ib_cache.h>
  19. #include <rdma/ib_addr.h>
  20. #include <crypto/hash.h>
  21. #include "rxe_net.h"
  22. #include "rxe_opcode.h"
  23. #include "rxe_hdr.h"
  24. #include "rxe_param.h"
  25. #include "rxe_verbs.h"
  26. #include "rxe_loc.h"
  27. /*
  28. * Version 1 and Version 2 are identical on 64 bit machines, but on 32 bit
  29. * machines Version 2 has a different struct layout.
  30. */
  31. #define RXE_UVERBS_ABI_VERSION 2
  32. #define RXE_ROCE_V2_SPORT (0xc000)
  33. #define rxe_dbg(rxe, fmt, ...) ibdev_dbg(&(rxe)->ib_dev, \
  34. "%s: " fmt, __func__, ##__VA_ARGS__)
  35. #define rxe_dbg_uc(uc, fmt, ...) ibdev_dbg((uc)->ibuc.device, \
  36. "uc#%d %s: " fmt, (uc)->elem.index, __func__, ##__VA_ARGS__)
  37. #define rxe_dbg_pd(pd, fmt, ...) ibdev_dbg((pd)->ibpd.device, \
  38. "pd#%d %s: " fmt, (pd)->elem.index, __func__, ##__VA_ARGS__)
  39. #define rxe_dbg_ah(ah, fmt, ...) ibdev_dbg((ah)->ibah.device, \
  40. "ah#%d %s: " fmt, (ah)->elem.index, __func__, ##__VA_ARGS__)
  41. #define rxe_dbg_srq(srq, fmt, ...) ibdev_dbg((srq)->ibsrq.device, \
  42. "srq#%d %s: " fmt, (srq)->elem.index, __func__, ##__VA_ARGS__)
  43. #define rxe_dbg_qp(qp, fmt, ...) ibdev_dbg((qp)->ibqp.device, \
  44. "qp#%d %s: " fmt, (qp)->elem.index, __func__, ##__VA_ARGS__)
  45. #define rxe_dbg_cq(cq, fmt, ...) ibdev_dbg((cq)->ibcq.device, \
  46. "cq#%d %s: " fmt, (cq)->elem.index, __func__, ##__VA_ARGS__)
  47. #define rxe_dbg_mr(mr, fmt, ...) ibdev_dbg((mr)->ibmr.device, \
  48. "mr#%d %s: " fmt, (mr)->elem.index, __func__, ##__VA_ARGS__)
  49. #define rxe_dbg_mw(mw, fmt, ...) ibdev_dbg((mw)->ibmw.device, \
  50. "mw#%d %s: " fmt, (mw)->elem.index, __func__, ##__VA_ARGS__)
  51. void rxe_set_mtu(struct rxe_dev *rxe, unsigned int dev_mtu);
  52. int rxe_add(struct rxe_dev *rxe, unsigned int mtu, const char *ibdev_name);
  53. void rxe_rcv(struct sk_buff *skb);
  54. /* The caller must do a matching ib_device_put(&dev->ib_dev) */
  55. static inline struct rxe_dev *rxe_get_dev_from_net(struct net_device *ndev)
  56. {
  57. struct ib_device *ibdev =
  58. ib_device_get_by_netdev(ndev, RDMA_DRIVER_RXE);
  59. if (!ibdev)
  60. return NULL;
  61. return container_of(ibdev, struct rxe_dev, ib_dev);
  62. }
  63. void rxe_port_up(struct rxe_dev *rxe);
  64. void rxe_port_down(struct rxe_dev *rxe);
  65. void rxe_set_port_state(struct rxe_dev *rxe);
  66. #endif /* RXE_H */