mthca_cmd.h 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. /*
  2. * Copyright (c) 2004, 2005 Topspin Communications. 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. * OpenIB.org 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. * $Id: mthca_cmd.h 1349 2004-12-16 21:09:43Z roland $
  33. */
  34. #ifndef MTHCA_CMD_H
  35. #define MTHCA_CMD_H
  36. #include <ib_verbs.h>
  37. #define MTHCA_MAILBOX_SIZE 4096
  38. enum {
  39. /* command completed successfully: */
  40. MTHCA_CMD_STAT_OK = 0x00,
  41. /* Internal error (such as a bus error) occurred while processing command: */
  42. MTHCA_CMD_STAT_INTERNAL_ERR = 0x01,
  43. /* Operation/command not supported or opcode modifier not supported: */
  44. MTHCA_CMD_STAT_BAD_OP = 0x02,
  45. /* Parameter not supported or parameter out of range: */
  46. MTHCA_CMD_STAT_BAD_PARAM = 0x03,
  47. /* System not enabled or bad system state: */
  48. MTHCA_CMD_STAT_BAD_SYS_STATE = 0x04,
  49. /* Attempt to access reserved or unallocaterd resource: */
  50. MTHCA_CMD_STAT_BAD_RESOURCE = 0x05,
  51. /* Requested resource is currently executing a command, or is otherwise busy: */
  52. MTHCA_CMD_STAT_RESOURCE_BUSY = 0x06,
  53. /* memory error: */
  54. MTHCA_CMD_STAT_DDR_MEM_ERR = 0x07,
  55. /* Required capability exceeds device limits: */
  56. MTHCA_CMD_STAT_EXCEED_LIM = 0x08,
  57. /* Resource is not in the appropriate state or ownership: */
  58. MTHCA_CMD_STAT_BAD_RES_STATE = 0x09,
  59. /* Index out of range: */
  60. MTHCA_CMD_STAT_BAD_INDEX = 0x0a,
  61. /* FW image corrupted: */
  62. MTHCA_CMD_STAT_BAD_NVMEM = 0x0b,
  63. /* Attempt to modify a QP/EE which is not in the presumed state: */
  64. MTHCA_CMD_STAT_BAD_QPEE_STATE = 0x10,
  65. /* Bad segment parameters (Address/Size): */
  66. MTHCA_CMD_STAT_BAD_SEG_PARAM = 0x20,
  67. /* Memory Region has Memory Windows bound to: */
  68. MTHCA_CMD_STAT_REG_BOUND = 0x21,
  69. /* HCA local attached memory not present: */
  70. MTHCA_CMD_STAT_LAM_NOT_PRE = 0x22,
  71. /* Bad management packet (silently discarded): */
  72. MTHCA_CMD_STAT_BAD_PKT = 0x30,
  73. /* More outstanding CQEs in CQ than new CQ size: */
  74. MTHCA_CMD_STAT_BAD_SIZE = 0x40
  75. };
  76. enum {
  77. MTHCA_TRANS_INVALID = 0,
  78. MTHCA_TRANS_RST2INIT,
  79. MTHCA_TRANS_INIT2INIT,
  80. MTHCA_TRANS_INIT2RTR,
  81. MTHCA_TRANS_RTR2RTS,
  82. MTHCA_TRANS_RTS2RTS,
  83. MTHCA_TRANS_SQERR2RTS,
  84. MTHCA_TRANS_ANY2ERR,
  85. MTHCA_TRANS_RTS2SQD,
  86. MTHCA_TRANS_SQD2SQD,
  87. MTHCA_TRANS_SQD2RTS,
  88. MTHCA_TRANS_ANY2RST,
  89. };
  90. enum {
  91. DEV_LIM_FLAG_RC = 1 << 0,
  92. DEV_LIM_FLAG_UC = 1 << 1,
  93. DEV_LIM_FLAG_UD = 1 << 2,
  94. DEV_LIM_FLAG_RD = 1 << 3,
  95. DEV_LIM_FLAG_RAW_IPV6 = 1 << 4,
  96. DEV_LIM_FLAG_RAW_ETHER = 1 << 5,
  97. DEV_LIM_FLAG_SRQ = 1 << 6,
  98. DEV_LIM_FLAG_BAD_PKEY_CNTR = 1 << 8,
  99. DEV_LIM_FLAG_BAD_QKEY_CNTR = 1 << 9,
  100. DEV_LIM_FLAG_MW = 1 << 16,
  101. DEV_LIM_FLAG_AUTO_PATH_MIG = 1 << 17,
  102. DEV_LIM_FLAG_ATOMIC = 1 << 18,
  103. DEV_LIM_FLAG_RAW_MULTI = 1 << 19,
  104. DEV_LIM_FLAG_UD_AV_PORT_ENFORCE = 1 << 20,
  105. DEV_LIM_FLAG_UD_MULTI = 1 << 21,
  106. };
  107. struct mthca_mailbox {
  108. dma_addr_t dma;
  109. void *buf;
  110. };
  111. struct mthca_dev_lim {
  112. int max_srq_sz;
  113. int max_qp_sz;
  114. int reserved_qps;
  115. int max_qps;
  116. int reserved_srqs;
  117. int max_srqs;
  118. int reserved_eecs;
  119. int max_eecs;
  120. int max_cq_sz;
  121. int reserved_cqs;
  122. int max_cqs;
  123. int max_mpts;
  124. int reserved_eqs;
  125. int max_eqs;
  126. int reserved_mtts;
  127. int max_mrw_sz;
  128. int reserved_mrws;
  129. int max_mtt_seg;
  130. int max_requester_per_qp;
  131. int max_responder_per_qp;
  132. int max_rdma_global;
  133. int local_ca_ack_delay;
  134. int max_mtu;
  135. int max_port_width;
  136. int max_vl;
  137. int num_ports;
  138. int max_gids;
  139. int max_pkeys;
  140. u32 flags;
  141. int reserved_uars;
  142. int uar_size;
  143. int min_page_sz;
  144. int max_sg;
  145. int max_desc_sz;
  146. int max_qp_per_mcg;
  147. int reserved_mgms;
  148. int max_mcgs;
  149. int reserved_pds;
  150. int max_pds;
  151. int reserved_rdds;
  152. int max_rdds;
  153. int eec_entry_sz;
  154. int qpc_entry_sz;
  155. int eeec_entry_sz;
  156. int eqpc_entry_sz;
  157. int eqc_entry_sz;
  158. int cqc_entry_sz;
  159. int srq_entry_sz;
  160. int uar_scratch_entry_sz;
  161. int mpt_entry_sz;
  162. union {
  163. struct {
  164. int max_avs;
  165. } tavor;
  166. struct {
  167. int resize_srq;
  168. int max_pbl_sz;
  169. u8 bmme_flags;
  170. u32 reserved_lkey;
  171. int lam_required;
  172. u64 max_icm_sz;
  173. } arbel;
  174. } hca;
  175. };
  176. struct mthca_adapter {
  177. u32 vendor_id;
  178. u32 device_id;
  179. u32 revision_id;
  180. u8 inta_pin;
  181. };
  182. struct mthca_init_hca_param {
  183. u64 qpc_base;
  184. u64 eec_base;
  185. u64 srqc_base;
  186. u64 cqc_base;
  187. u64 eqpc_base;
  188. u64 eeec_base;
  189. u64 eqc_base;
  190. u64 rdb_base;
  191. u64 mc_base;
  192. u64 mpt_base;
  193. u64 mtt_base;
  194. u64 uar_scratch_base;
  195. u64 uarc_base;
  196. u16 log_mc_entry_sz;
  197. u16 mc_hash_sz;
  198. u8 log_num_qps;
  199. u8 log_num_eecs;
  200. u8 log_num_srqs;
  201. u8 log_num_cqs;
  202. u8 log_num_eqs;
  203. u8 log_mc_table_sz;
  204. u8 mtt_seg_sz;
  205. u8 log_mpt_sz;
  206. u8 log_uar_sz;
  207. u8 log_uarc_sz;
  208. };
  209. struct mthca_init_ib_param {
  210. int enable_1x;
  211. int enable_4x;
  212. int vl_cap;
  213. int mtu_cap;
  214. u16 gid_cap;
  215. u16 pkey_cap;
  216. int set_guid0;
  217. u64 guid0;
  218. int set_node_guid;
  219. u64 node_guid;
  220. int set_si_guid;
  221. u64 si_guid;
  222. };
  223. struct mthca_set_ib_param {
  224. int set_si_guid;
  225. int reset_qkey_viol;
  226. u64 si_guid;
  227. u32 cap_mask;
  228. };
  229. int mthca_cmd_init(struct mthca_dev *dev);
  230. void mthca_cmd_cleanup(struct mthca_dev *dev);
  231. int mthca_cmd_use_events(struct mthca_dev *dev);
  232. void mthca_cmd_use_polling(struct mthca_dev *dev);
  233. void mthca_cmd_event(struct mthca_dev *dev, u16 token,
  234. u8 status, u64 out_param);
  235. struct mthca_mailbox *mthca_alloc_mailbox(struct mthca_dev *dev,
  236. unsigned int gfp_mask);
  237. void mthca_free_mailbox(struct mthca_dev *dev, struct mthca_mailbox *mailbox);
  238. int mthca_SYS_EN(struct mthca_dev *dev, u8 *status);
  239. int mthca_SYS_DIS(struct mthca_dev *dev, u8 *status);
  240. int mthca_MAP_FA(struct mthca_dev *dev, struct mthca_icm *icm, u8 *status);
  241. int mthca_UNMAP_FA(struct mthca_dev *dev, u8 *status);
  242. int mthca_RUN_FW(struct mthca_dev *dev, u8 *status);
  243. int mthca_QUERY_FW(struct mthca_dev *dev, u8 *status);
  244. int mthca_ENABLE_LAM(struct mthca_dev *dev, u8 *status);
  245. int mthca_DISABLE_LAM(struct mthca_dev *dev, u8 *status);
  246. int mthca_QUERY_DDR(struct mthca_dev *dev, u8 *status);
  247. int mthca_QUERY_DEV_LIM(struct mthca_dev *dev,
  248. struct mthca_dev_lim *dev_lim, u8 *status);
  249. int mthca_QUERY_ADAPTER(struct mthca_dev *dev,
  250. struct mthca_adapter *adapter, u8 *status);
  251. int mthca_INIT_HCA(struct mthca_dev *dev,
  252. struct mthca_init_hca_param *param,
  253. u8 *status);
  254. int mthca_INIT_IB(struct mthca_dev *dev,
  255. struct mthca_init_ib_param *param,
  256. int port, u8 *status);
  257. int mthca_CLOSE_IB(struct mthca_dev *dev, int port, u8 *status);
  258. int mthca_CLOSE_HCA(struct mthca_dev *dev, int panic, u8 *status);
  259. int mthca_SET_IB(struct mthca_dev *dev, struct mthca_set_ib_param *param,
  260. int port, u8 *status);
  261. int mthca_MAP_ICM(struct mthca_dev *dev, struct mthca_icm *icm, u64 virt, u8 *status);
  262. int mthca_MAP_ICM_page(struct mthca_dev *dev, u64 dma_addr, u64 virt, u8 *status);
  263. int mthca_UNMAP_ICM(struct mthca_dev *dev, u64 virt, u32 page_count, u8 *status);
  264. int mthca_MAP_ICM_AUX(struct mthca_dev *dev, struct mthca_icm *icm, u8 *status);
  265. int mthca_UNMAP_ICM_AUX(struct mthca_dev *dev, u8 *status);
  266. int mthca_SET_ICM_SIZE(struct mthca_dev *dev, u64 icm_size, u64 *aux_pages,
  267. u8 *status);
  268. int mthca_SW2HW_MPT(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
  269. int mpt_index, u8 *status);
  270. int mthca_HW2SW_MPT(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
  271. int mpt_index, u8 *status);
  272. int mthca_WRITE_MTT(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
  273. int num_mtt, u8 *status);
  274. int mthca_SYNC_TPT(struct mthca_dev *dev, u8 *status);
  275. int mthca_MAP_EQ(struct mthca_dev *dev, u64 event_mask, int unmap,
  276. int eq_num, u8 *status);
  277. int mthca_SW2HW_EQ(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
  278. int eq_num, u8 *status);
  279. int mthca_HW2SW_EQ(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
  280. int eq_num, u8 *status);
  281. int mthca_SW2HW_CQ(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
  282. int cq_num, u8 *status);
  283. int mthca_HW2SW_CQ(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
  284. int cq_num, u8 *status);
  285. int mthca_MODIFY_QP(struct mthca_dev *dev, int trans, u32 num,
  286. int is_ee, struct mthca_mailbox *mailbox, u32 optmask,
  287. u8 *status);
  288. int mthca_QUERY_QP(struct mthca_dev *dev, u32 num, int is_ee,
  289. struct mthca_mailbox *mailbox, u8 *status);
  290. int mthca_CONF_SPECIAL_QP(struct mthca_dev *dev, int type, u32 qpn,
  291. u8 *status);
  292. int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int ignore_bkey,
  293. int port, struct ib_wc *in_wc, struct ib_grh *in_grh,
  294. void *in_mad, void *response_mad, u8 *status);
  295. int mthca_READ_MGM(struct mthca_dev *dev, int index,
  296. struct mthca_mailbox *mailbox, u8 *status);
  297. int mthca_WRITE_MGM(struct mthca_dev *dev, int index,
  298. struct mthca_mailbox *mailbox, u8 *status);
  299. int mthca_MGID_HASH(struct mthca_dev *dev, struct mthca_mailbox *mailbox,
  300. u16 *hash, u8 *status);
  301. int mthca_NOP(struct mthca_dev *dev, u8 *status);
  302. #endif /* MTHCA_CMD_H */