ocrdma_hw.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*******************************************************************
  2. * This file is part of the Emulex RoCE Device Driver for *
  3. * RoCE (RDMA over Converged Ethernet) CNA Adapters. *
  4. * Copyright (C) 2008-2012 Emulex. All rights reserved. *
  5. * EMULEX and SLI are trademarks of Emulex. *
  6. * www.emulex.com *
  7. * *
  8. * This program is free software; you can redistribute it and/or *
  9. * modify it under the terms of version 2 of the GNU General *
  10. * Public License as published by the Free Software Foundation. *
  11. * This program is distributed in the hope that it will be useful. *
  12. * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
  13. * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
  14. * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
  15. * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
  16. * TO BE LEGALLY INVALID. See the GNU General Public License for *
  17. * more details, a copy of which can be found in the file COPYING *
  18. * included with this package. *
  19. *
  20. * Contact Information:
  21. * linux-drivers@emulex.com
  22. *
  23. * Emulex
  24. * 3333 Susan Street
  25. * Costa Mesa, CA 92626
  26. *******************************************************************/
  27. #ifndef __OCRDMA_HW_H__
  28. #define __OCRDMA_HW_H__
  29. #include "ocrdma_sli.h"
  30. static inline void ocrdma_cpu_to_le32(void *dst, u32 len)
  31. {
  32. #ifdef __BIG_ENDIAN
  33. int i = 0;
  34. u32 *src_ptr = dst;
  35. u32 *dst_ptr = dst;
  36. for (; i < (len / 4); i++)
  37. *(dst_ptr + i) = cpu_to_le32p(src_ptr + i);
  38. #endif
  39. }
  40. static inline void ocrdma_le32_to_cpu(void *dst, u32 len)
  41. {
  42. #ifdef __BIG_ENDIAN
  43. int i = 0;
  44. u32 *src_ptr = dst;
  45. u32 *dst_ptr = dst;
  46. for (; i < (len / sizeof(u32)); i++)
  47. *(dst_ptr + i) = le32_to_cpu(*(src_ptr + i));
  48. #endif
  49. }
  50. static inline void ocrdma_copy_cpu_to_le32(void *dst, void *src, u32 len)
  51. {
  52. #ifdef __BIG_ENDIAN
  53. int i = 0;
  54. u32 *src_ptr = src;
  55. u32 *dst_ptr = dst;
  56. for (; i < (len / sizeof(u32)); i++)
  57. *(dst_ptr + i) = cpu_to_le32p(src_ptr + i);
  58. #else
  59. memcpy(dst, src, len);
  60. #endif
  61. }
  62. static inline void ocrdma_copy_le32_to_cpu(void *dst, void *src, u32 len)
  63. {
  64. #ifdef __BIG_ENDIAN
  65. int i = 0;
  66. u32 *src_ptr = src;
  67. u32 *dst_ptr = dst;
  68. for (; i < len / sizeof(u32); i++)
  69. *(dst_ptr + i) = le32_to_cpu(*(src_ptr + i));
  70. #else
  71. memcpy(dst, src, len);
  72. #endif
  73. }
  74. int ocrdma_init_hw(struct ocrdma_dev *);
  75. void ocrdma_cleanup_hw(struct ocrdma_dev *);
  76. enum ib_qp_state get_ibqp_state(enum ocrdma_qp_state qps);
  77. void ocrdma_ring_cq_db(struct ocrdma_dev *, u16 cq_id, bool armed,
  78. bool solicited, u16 cqe_popped);
  79. /* verbs specific mailbox commands */
  80. int ocrdma_query_config(struct ocrdma_dev *,
  81. struct ocrdma_mbx_query_config *config);
  82. int ocrdma_resolve_dgid(struct ocrdma_dev *, union ib_gid *dgid, u8 *mac_addr);
  83. int ocrdma_mbx_alloc_pd(struct ocrdma_dev *, struct ocrdma_pd *);
  84. int ocrdma_mbx_dealloc_pd(struct ocrdma_dev *, struct ocrdma_pd *);
  85. int ocrdma_mbx_alloc_lkey(struct ocrdma_dev *, struct ocrdma_hw_mr *hwmr,
  86. u32 pd_id, int addr_check);
  87. int ocrdma_mbx_dealloc_lkey(struct ocrdma_dev *, int fmr, u32 lkey);
  88. int ocrdma_reg_mr(struct ocrdma_dev *, struct ocrdma_hw_mr *hwmr,
  89. u32 pd_id, int acc);
  90. int ocrdma_mbx_create_cq(struct ocrdma_dev *, struct ocrdma_cq *,
  91. int entries, int dpp_cq);
  92. int ocrdma_mbx_destroy_cq(struct ocrdma_dev *, struct ocrdma_cq *);
  93. int ocrdma_mbx_create_qp(struct ocrdma_qp *, struct ib_qp_init_attr *attrs,
  94. u8 enable_dpp_cq, u16 dpp_cq_id, u16 *dpp_offset,
  95. u16 *dpp_credit_lmt);
  96. int ocrdma_mbx_modify_qp(struct ocrdma_dev *, struct ocrdma_qp *,
  97. struct ib_qp_attr *attrs, int attr_mask,
  98. enum ib_qp_state old_qps);
  99. int ocrdma_mbx_query_qp(struct ocrdma_dev *, struct ocrdma_qp *,
  100. struct ocrdma_qp_params *param);
  101. int ocrdma_mbx_destroy_qp(struct ocrdma_dev *, struct ocrdma_qp *);
  102. int ocrdma_mbx_create_srq(struct ocrdma_srq *,
  103. struct ib_srq_init_attr *,
  104. struct ocrdma_pd *);
  105. int ocrdma_mbx_modify_srq(struct ocrdma_srq *, struct ib_srq_attr *);
  106. int ocrdma_mbx_query_srq(struct ocrdma_srq *, struct ib_srq_attr *);
  107. int ocrdma_mbx_destroy_srq(struct ocrdma_dev *, struct ocrdma_srq *);
  108. int ocrdma_alloc_av(struct ocrdma_dev *, struct ocrdma_ah *);
  109. int ocrdma_free_av(struct ocrdma_dev *, struct ocrdma_ah *);
  110. int ocrdma_qp_state_machine(struct ocrdma_qp *, enum ib_qp_state new_state,
  111. enum ib_qp_state *old_ib_state);
  112. bool ocrdma_is_qp_in_sq_flushlist(struct ocrdma_cq *, struct ocrdma_qp *);
  113. bool ocrdma_is_qp_in_rq_flushlist(struct ocrdma_cq *, struct ocrdma_qp *);
  114. void ocrdma_flush_qp(struct ocrdma_qp *);
  115. #endif /* __OCRDMA_HW_H__ */