cmd.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. /*
  2. * Copyright (c) 2006 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. * 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. #ifndef MLX4_CMD_H
  33. #define MLX4_CMD_H
  34. #include <linux/dma-mapping.h>
  35. enum {
  36. /* initialization and general commands */
  37. MLX4_CMD_SYS_EN = 0x1,
  38. MLX4_CMD_SYS_DIS = 0x2,
  39. MLX4_CMD_MAP_FA = 0xfff,
  40. MLX4_CMD_UNMAP_FA = 0xffe,
  41. MLX4_CMD_RUN_FW = 0xff6,
  42. MLX4_CMD_MOD_STAT_CFG = 0x34,
  43. MLX4_CMD_QUERY_DEV_CAP = 0x3,
  44. MLX4_CMD_QUERY_FW = 0x4,
  45. MLX4_CMD_ENABLE_LAM = 0xff8,
  46. MLX4_CMD_DISABLE_LAM = 0xff7,
  47. MLX4_CMD_QUERY_DDR = 0x5,
  48. MLX4_CMD_QUERY_ADAPTER = 0x6,
  49. MLX4_CMD_INIT_HCA = 0x7,
  50. MLX4_CMD_CLOSE_HCA = 0x8,
  51. MLX4_CMD_INIT_PORT = 0x9,
  52. MLX4_CMD_CLOSE_PORT = 0xa,
  53. MLX4_CMD_QUERY_HCA = 0xb,
  54. MLX4_CMD_QUERY_PORT = 0x43,
  55. MLX4_CMD_SENSE_PORT = 0x4d,
  56. MLX4_CMD_HW_HEALTH_CHECK = 0x50,
  57. MLX4_CMD_SET_PORT = 0xc,
  58. MLX4_CMD_SET_NODE = 0x5a,
  59. MLX4_CMD_QUERY_FUNC = 0x56,
  60. MLX4_CMD_ACCESS_DDR = 0x2e,
  61. MLX4_CMD_MAP_ICM = 0xffa,
  62. MLX4_CMD_UNMAP_ICM = 0xff9,
  63. MLX4_CMD_MAP_ICM_AUX = 0xffc,
  64. MLX4_CMD_UNMAP_ICM_AUX = 0xffb,
  65. MLX4_CMD_SET_ICM_SIZE = 0xffd,
  66. /*master notify fw on finish for slave's flr*/
  67. MLX4_CMD_INFORM_FLR_DONE = 0x5b,
  68. /* TPT commands */
  69. MLX4_CMD_SW2HW_MPT = 0xd,
  70. MLX4_CMD_QUERY_MPT = 0xe,
  71. MLX4_CMD_HW2SW_MPT = 0xf,
  72. MLX4_CMD_READ_MTT = 0x10,
  73. MLX4_CMD_WRITE_MTT = 0x11,
  74. MLX4_CMD_SYNC_TPT = 0x2f,
  75. /* EQ commands */
  76. MLX4_CMD_MAP_EQ = 0x12,
  77. MLX4_CMD_SW2HW_EQ = 0x13,
  78. MLX4_CMD_HW2SW_EQ = 0x14,
  79. MLX4_CMD_QUERY_EQ = 0x15,
  80. /* CQ commands */
  81. MLX4_CMD_SW2HW_CQ = 0x16,
  82. MLX4_CMD_HW2SW_CQ = 0x17,
  83. MLX4_CMD_QUERY_CQ = 0x18,
  84. MLX4_CMD_MODIFY_CQ = 0x2c,
  85. /* SRQ commands */
  86. MLX4_CMD_SW2HW_SRQ = 0x35,
  87. MLX4_CMD_HW2SW_SRQ = 0x36,
  88. MLX4_CMD_QUERY_SRQ = 0x37,
  89. MLX4_CMD_ARM_SRQ = 0x40,
  90. /* QP/EE commands */
  91. MLX4_CMD_RST2INIT_QP = 0x19,
  92. MLX4_CMD_INIT2RTR_QP = 0x1a,
  93. MLX4_CMD_RTR2RTS_QP = 0x1b,
  94. MLX4_CMD_RTS2RTS_QP = 0x1c,
  95. MLX4_CMD_SQERR2RTS_QP = 0x1d,
  96. MLX4_CMD_2ERR_QP = 0x1e,
  97. MLX4_CMD_RTS2SQD_QP = 0x1f,
  98. MLX4_CMD_SQD2SQD_QP = 0x38,
  99. MLX4_CMD_SQD2RTS_QP = 0x20,
  100. MLX4_CMD_2RST_QP = 0x21,
  101. MLX4_CMD_QUERY_QP = 0x22,
  102. MLX4_CMD_INIT2INIT_QP = 0x2d,
  103. MLX4_CMD_SUSPEND_QP = 0x32,
  104. MLX4_CMD_UNSUSPEND_QP = 0x33,
  105. /* special QP and management commands */
  106. MLX4_CMD_CONF_SPECIAL_QP = 0x23,
  107. MLX4_CMD_MAD_IFC = 0x24,
  108. /* multicast commands */
  109. MLX4_CMD_READ_MCG = 0x25,
  110. MLX4_CMD_WRITE_MCG = 0x26,
  111. MLX4_CMD_MGID_HASH = 0x27,
  112. /* miscellaneous commands */
  113. MLX4_CMD_DIAG_RPRT = 0x30,
  114. MLX4_CMD_NOP = 0x31,
  115. MLX4_CMD_ACCESS_MEM = 0x2e,
  116. MLX4_CMD_SET_VEP = 0x52,
  117. /* Ethernet specific commands */
  118. MLX4_CMD_SET_VLAN_FLTR = 0x47,
  119. MLX4_CMD_SET_MCAST_FLTR = 0x48,
  120. MLX4_CMD_DUMP_ETH_STATS = 0x49,
  121. /* Communication channel commands */
  122. MLX4_CMD_ARM_COMM_CHANNEL = 0x57,
  123. MLX4_CMD_GEN_EQE = 0x58,
  124. /* virtual commands */
  125. MLX4_CMD_ALLOC_RES = 0xf00,
  126. MLX4_CMD_FREE_RES = 0xf01,
  127. MLX4_CMD_MCAST_ATTACH = 0xf05,
  128. MLX4_CMD_UCAST_ATTACH = 0xf06,
  129. MLX4_CMD_PROMISC = 0xf08,
  130. MLX4_CMD_QUERY_FUNC_CAP = 0xf0a,
  131. MLX4_CMD_QP_ATTACH = 0xf0b,
  132. /* debug commands */
  133. MLX4_CMD_QUERY_DEBUG_MSG = 0x2a,
  134. MLX4_CMD_SET_DEBUG_MSG = 0x2b,
  135. /* statistics commands */
  136. MLX4_CMD_QUERY_IF_STAT = 0X54,
  137. MLX4_CMD_SET_IF_STAT = 0X55,
  138. /* set port opcode modifiers */
  139. MLX4_SET_PORT_PRIO2TC = 0x8,
  140. MLX4_SET_PORT_SCHEDULER = 0x9,
  141. };
  142. enum {
  143. MLX4_CMD_TIME_CLASS_A = 10000,
  144. MLX4_CMD_TIME_CLASS_B = 10000,
  145. MLX4_CMD_TIME_CLASS_C = 10000,
  146. };
  147. enum {
  148. MLX4_MAILBOX_SIZE = 4096,
  149. MLX4_ACCESS_MEM_ALIGN = 256,
  150. };
  151. enum {
  152. /* set port opcode modifiers */
  153. MLX4_SET_PORT_GENERAL = 0x0,
  154. MLX4_SET_PORT_RQP_CALC = 0x1,
  155. MLX4_SET_PORT_MAC_TABLE = 0x2,
  156. MLX4_SET_PORT_VLAN_TABLE = 0x3,
  157. MLX4_SET_PORT_PRIO_MAP = 0x4,
  158. MLX4_SET_PORT_GID_TABLE = 0x5,
  159. };
  160. enum {
  161. MLX4_CMD_WRAPPED,
  162. MLX4_CMD_NATIVE
  163. };
  164. struct mlx4_dev;
  165. struct mlx4_cmd_mailbox {
  166. void *buf;
  167. dma_addr_t dma;
  168. };
  169. int __mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
  170. int out_is_imm, u32 in_modifier, u8 op_modifier,
  171. u16 op, unsigned long timeout, int native);
  172. /* Invoke a command with no output parameter */
  173. static inline int mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u32 in_modifier,
  174. u8 op_modifier, u16 op, unsigned long timeout,
  175. int native)
  176. {
  177. return __mlx4_cmd(dev, in_param, NULL, 0, in_modifier,
  178. op_modifier, op, timeout, native);
  179. }
  180. /* Invoke a command with an output mailbox */
  181. static inline int mlx4_cmd_box(struct mlx4_dev *dev, u64 in_param, u64 out_param,
  182. u32 in_modifier, u8 op_modifier, u16 op,
  183. unsigned long timeout, int native)
  184. {
  185. return __mlx4_cmd(dev, in_param, &out_param, 0, in_modifier,
  186. op_modifier, op, timeout, native);
  187. }
  188. /*
  189. * Invoke a command with an immediate output parameter (and copy the
  190. * output into the caller's out_param pointer after the command
  191. * executes).
  192. */
  193. static inline int mlx4_cmd_imm(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
  194. u32 in_modifier, u8 op_modifier, u16 op,
  195. unsigned long timeout, int native)
  196. {
  197. return __mlx4_cmd(dev, in_param, out_param, 1, in_modifier,
  198. op_modifier, op, timeout, native);
  199. }
  200. struct mlx4_cmd_mailbox *mlx4_alloc_cmd_mailbox(struct mlx4_dev *dev);
  201. void mlx4_free_cmd_mailbox(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox);
  202. u32 mlx4_comm_get_version(void);
  203. #define MLX4_COMM_GET_IF_REV(cmd_chan_ver) (u8)((cmd_chan_ver) >> 8)
  204. #endif /* MLX4_CMD_H */