Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 1 | /**************************************************************************** |
| 2 | **************************************************************************** |
| 3 | *** |
| 4 | *** This header was automatically generated from a Linux kernel header |
| 5 | *** of the same name, to make information necessary for userspace to |
| 6 | *** call into the kernel available to libc. It contains only constants, |
| 7 | *** structures, and macros generated from the original header, and thus, |
| 8 | *** contains no copyrightable information. |
| 9 | *** |
| 10 | *** To edit the content of this header, modify the corresponding |
| 11 | *** source file (e.g. under external/kernel-headers/original/) then |
| 12 | *** run bionic/libc/kernel/tools/update_all.py |
| 13 | *** |
| 14 | *** Any manual change here will be lost the next time this script will |
| 15 | *** be run. You've been warned! |
| 16 | *** |
| 17 | **************************************************************************** |
| 18 | ****************************************************************************/ |
| 19 | #ifndef MLX5_ABI_USER_H |
| 20 | #define MLX5_ABI_USER_H |
| 21 | #include <linux/types.h> |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 22 | #include <linux/if_ether.h> |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 23 | #include <rdma/ib_user_ioctl_verbs.h> |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 24 | enum { |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 25 | MLX5_QP_FLAG_SIGNATURE = 1 << 0, |
| 26 | MLX5_QP_FLAG_SCATTER_CQE = 1 << 1, |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 27 | MLX5_QP_FLAG_TUNNEL_OFFLOADS = 1 << 2, |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 28 | MLX5_QP_FLAG_BFREG_INDEX = 1 << 3, |
| 29 | MLX5_QP_FLAG_TYPE_DCT = 1 << 4, |
| 30 | MLX5_QP_FLAG_TYPE_DCI = 1 << 5, |
Christopher Ferris | 86a4837 | 2019-01-10 14:14:59 -0800 | [diff] [blame] | 31 | MLX5_QP_FLAG_TIR_ALLOW_SELF_LB_UC = 1 << 6, |
| 32 | MLX5_QP_FLAG_TIR_ALLOW_SELF_LB_MC = 1 << 7, |
| 33 | MLX5_QP_FLAG_ALLOW_SCATTER_CQE = 1 << 8, |
Christopher Ferris | d842e43 | 2019-03-07 10:21:59 -0800 | [diff] [blame] | 34 | MLX5_QP_FLAG_PACKET_BASED_CREDIT_MODE = 1 << 9, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 35 | }; |
| 36 | enum { |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 37 | MLX5_SRQ_FLAG_SIGNATURE = 1 << 0, |
| 38 | }; |
| 39 | enum { |
| 40 | MLX5_WQ_FLAG_SIGNATURE = 1 << 0, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 41 | }; |
| 42 | #define MLX5_IB_UVERBS_ABI_VERSION 1 |
| 43 | struct mlx5_ib_alloc_ucontext_req { |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 44 | __u32 total_num_bfregs; |
| 45 | __u32 num_low_latency_bfregs; |
| 46 | }; |
| 47 | enum mlx5_lib_caps { |
| 48 | MLX5_LIB_CAP_4K_UAR = (__u64) 1 << 0, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 49 | }; |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 50 | enum mlx5_ib_alloc_uctx_v2_flags { |
| 51 | MLX5_IB_ALLOC_UCTX_DEVX = 1 << 0, |
| 52 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 53 | struct mlx5_ib_alloc_ucontext_req_v2 { |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 54 | __u32 total_num_bfregs; |
| 55 | __u32 num_low_latency_bfregs; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 56 | __u32 flags; |
| 57 | __u32 comp_mask; |
| 58 | __u8 max_cqe_version; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 59 | __u8 reserved0; |
| 60 | __u16 reserved1; |
| 61 | __u32 reserved2; |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 62 | __aligned_u64 lib_caps; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 63 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 64 | enum mlx5_ib_alloc_ucontext_resp_mask { |
| 65 | MLX5_IB_ALLOC_UCONTEXT_RESP_MASK_CORE_CLOCK_OFFSET = 1UL << 0, |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 66 | MLX5_IB_ALLOC_UCONTEXT_RESP_MASK_DUMP_FILL_MKEY = 1UL << 1, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 67 | }; |
| 68 | enum mlx5_user_cmds_supp_uhw { |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 69 | MLX5_USER_CMDS_SUPP_UHW_QUERY_DEVICE = 1 << 0, |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 70 | MLX5_USER_CMDS_SUPP_UHW_CREATE_AH = 1 << 1, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 71 | }; |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 72 | enum mlx5_user_inline_mode { |
| 73 | MLX5_USER_INLINE_MODE_NA, |
| 74 | MLX5_USER_INLINE_MODE_NONE, |
| 75 | MLX5_USER_INLINE_MODE_L2, |
| 76 | MLX5_USER_INLINE_MODE_IP, |
| 77 | MLX5_USER_INLINE_MODE_TCP_UDP, |
| 78 | }; |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 79 | enum { |
| 80 | MLX5_USER_ALLOC_UCONTEXT_FLOW_ACTION_FLAGS_ESP_AES_GCM = 1 << 0, |
| 81 | MLX5_USER_ALLOC_UCONTEXT_FLOW_ACTION_FLAGS_ESP_AES_GCM_REQ_METADATA = 1 << 1, |
| 82 | MLX5_USER_ALLOC_UCONTEXT_FLOW_ACTION_FLAGS_ESP_AES_GCM_SPI_STEERING = 1 << 2, |
| 83 | MLX5_USER_ALLOC_UCONTEXT_FLOW_ACTION_FLAGS_ESP_AES_GCM_FULL_OFFLOAD = 1 << 3, |
| 84 | MLX5_USER_ALLOC_UCONTEXT_FLOW_ACTION_FLAGS_ESP_AES_GCM_TX_IV_IS_ESN = 1 << 4, |
| 85 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 86 | struct mlx5_ib_alloc_ucontext_resp { |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 87 | __u32 qp_tab_size; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 88 | __u32 bf_reg_size; |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 89 | __u32 tot_bfregs; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 90 | __u32 cache_line_size; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 91 | __u16 max_sq_desc_sz; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 92 | __u16 max_rq_desc_sz; |
| 93 | __u32 max_send_wqebb; |
| 94 | __u32 max_recv_wr; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 95 | __u32 max_srq_recv_wr; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 96 | __u16 num_ports; |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 97 | __u16 flow_action_flags; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 98 | __u32 comp_mask; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 99 | __u32 response_length; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 100 | __u8 cqe_version; |
| 101 | __u8 cmds_supp_uhw; |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 102 | __u8 eth_min_inline; |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 103 | __u8 clock_info_versions; |
| 104 | __aligned_u64 hca_core_clock_offset; |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 105 | __u32 log_uar_size; |
| 106 | __u32 num_uars_per_page; |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 107 | __u32 num_dyn_bfregs; |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 108 | __u32 dump_fill_mkey; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 109 | }; |
| 110 | struct mlx5_ib_alloc_pd_resp { |
| 111 | __u32 pdn; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 112 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 113 | struct mlx5_ib_tso_caps { |
| 114 | __u32 max_tso; |
| 115 | __u32 supported_qpts; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 116 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 117 | struct mlx5_ib_rss_caps { |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 118 | __aligned_u64 rx_hash_fields_mask; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 119 | __u8 rx_hash_function; |
| 120 | __u8 reserved[7]; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 121 | }; |
| 122 | enum mlx5_ib_cqe_comp_res_format { |
| 123 | MLX5_IB_CQE_RES_FORMAT_HASH = 1 << 0, |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 124 | MLX5_IB_CQE_RES_FORMAT_CSUM = 1 << 1, |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 125 | MLX5_IB_CQE_RES_FORMAT_CSUM_STRIDX = 1 << 2, |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 126 | }; |
| 127 | struct mlx5_ib_cqe_comp_caps { |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 128 | __u32 max_num; |
| 129 | __u32 supported_format; |
| 130 | }; |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 131 | enum mlx5_ib_packet_pacing_cap_flags { |
| 132 | MLX5_IB_PP_SUPPORT_BURST = 1 << 0, |
| 133 | }; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 134 | struct mlx5_packet_pacing_caps { |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 135 | __u32 qp_rate_limit_min; |
| 136 | __u32 qp_rate_limit_max; |
| 137 | __u32 supported_qpts; |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 138 | __u8 cap_flags; |
| 139 | __u8 reserved[3]; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 140 | }; |
Christopher Ferris | 1308ad3 | 2017-11-14 17:32:13 -0800 | [diff] [blame] | 141 | enum mlx5_ib_mpw_caps { |
| 142 | MPW_RESERVED = 1 << 0, |
| 143 | MLX5_IB_ALLOW_MPW = 1 << 1, |
| 144 | MLX5_IB_SUPPORT_EMPW = 1 << 2, |
| 145 | }; |
| 146 | enum mlx5_ib_sw_parsing_offloads { |
| 147 | MLX5_IB_SW_PARSING = 1 << 0, |
| 148 | MLX5_IB_SW_PARSING_CSUM = 1 << 1, |
| 149 | MLX5_IB_SW_PARSING_LSO = 1 << 2, |
| 150 | }; |
| 151 | struct mlx5_ib_sw_parsing_caps { |
| 152 | __u32 sw_parsing_offloads; |
| 153 | __u32 supported_qpts; |
| 154 | }; |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 155 | struct mlx5_ib_striding_rq_caps { |
| 156 | __u32 min_single_stride_log_num_of_bytes; |
| 157 | __u32 max_single_stride_log_num_of_bytes; |
| 158 | __u32 min_single_wqe_log_num_of_strides; |
| 159 | __u32 max_single_wqe_log_num_of_strides; |
| 160 | __u32 supported_qpts; |
| 161 | __u32 reserved; |
| 162 | }; |
| 163 | enum mlx5_ib_query_dev_resp_flags { |
| 164 | MLX5_IB_QUERY_DEV_RESP_FLAGS_CQE_128B_COMP = 1 << 0, |
| 165 | MLX5_IB_QUERY_DEV_RESP_FLAGS_CQE_128B_PAD = 1 << 1, |
Christopher Ferris | d842e43 | 2019-03-07 10:21:59 -0800 | [diff] [blame] | 166 | MLX5_IB_QUERY_DEV_RESP_PACKET_BASED_CREDIT_MODE = 1 << 2, |
Christopher Ferris | 24f97eb | 2019-05-20 12:58:13 -0700 | [diff] [blame^] | 167 | MLX5_IB_QUERY_DEV_RESP_FLAGS_SCAT2CQE_DCT = 1 << 3, |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 168 | }; |
| 169 | enum mlx5_ib_tunnel_offloads { |
| 170 | MLX5_IB_TUNNELED_OFFLOADS_VXLAN = 1 << 0, |
| 171 | MLX5_IB_TUNNELED_OFFLOADS_GRE = 1 << 1, |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 172 | MLX5_IB_TUNNELED_OFFLOADS_GENEVE = 1 << 2, |
| 173 | MLX5_IB_TUNNELED_OFFLOADS_MPLS_GRE = 1 << 3, |
| 174 | MLX5_IB_TUNNELED_OFFLOADS_MPLS_UDP = 1 << 4, |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 175 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 176 | struct mlx5_ib_query_device_resp { |
| 177 | __u32 comp_mask; |
| 178 | __u32 response_length; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 179 | struct mlx5_ib_tso_caps tso_caps; |
| 180 | struct mlx5_ib_rss_caps rss_caps; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 181 | struct mlx5_ib_cqe_comp_caps cqe_comp_caps; |
| 182 | struct mlx5_packet_pacing_caps packet_pacing_caps; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 183 | __u32 mlx5_ib_support_multi_pkt_send_wqes; |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 184 | __u32 flags; |
Christopher Ferris | 1308ad3 | 2017-11-14 17:32:13 -0800 | [diff] [blame] | 185 | struct mlx5_ib_sw_parsing_caps sw_parsing_caps; |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 186 | struct mlx5_ib_striding_rq_caps striding_rq_caps; |
| 187 | __u32 tunnel_offloads_caps; |
| 188 | __u32 reserved; |
| 189 | }; |
| 190 | enum mlx5_ib_create_cq_flags { |
| 191 | MLX5_IB_CREATE_CQ_FLAGS_CQE_128B_PAD = 1 << 0, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 192 | }; |
| 193 | struct mlx5_ib_create_cq { |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 194 | __aligned_u64 buf_addr; |
| 195 | __aligned_u64 db_addr; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 196 | __u32 cqe_size; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 197 | __u8 cqe_comp_en; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 198 | __u8 cqe_comp_res_format; |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 199 | __u16 flags; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 200 | }; |
| 201 | struct mlx5_ib_create_cq_resp { |
| 202 | __u32 cqn; |
| 203 | __u32 reserved; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 204 | }; |
| 205 | struct mlx5_ib_resize_cq { |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 206 | __aligned_u64 buf_addr; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 207 | __u16 cqe_size; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 208 | __u16 reserved0; |
| 209 | __u32 reserved1; |
| 210 | }; |
| 211 | struct mlx5_ib_create_srq { |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 212 | __aligned_u64 buf_addr; |
| 213 | __aligned_u64 db_addr; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 214 | __u32 flags; |
| 215 | __u32 reserved0; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 216 | __u32 uidx; |
| 217 | __u32 reserved1; |
| 218 | }; |
| 219 | struct mlx5_ib_create_srq_resp { |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 220 | __u32 srqn; |
| 221 | __u32 reserved; |
| 222 | }; |
| 223 | struct mlx5_ib_create_qp { |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 224 | __aligned_u64 buf_addr; |
| 225 | __aligned_u64 db_addr; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 226 | __u32 sq_wqe_count; |
| 227 | __u32 rq_wqe_count; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 228 | __u32 rq_wqe_shift; |
| 229 | __u32 flags; |
| 230 | __u32 uidx; |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 231 | __u32 bfreg_index; |
| 232 | union { |
| 233 | __aligned_u64 sq_buf_addr; |
| 234 | __aligned_u64 access_key; |
| 235 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 236 | }; |
| 237 | enum mlx5_rx_hash_function_flags { |
| 238 | MLX5_RX_HASH_FUNC_TOEPLITZ = 1 << 0, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 239 | }; |
| 240 | enum mlx5_rx_hash_fields { |
| 241 | MLX5_RX_HASH_SRC_IPV4 = 1 << 0, |
| 242 | MLX5_RX_HASH_DST_IPV4 = 1 << 1, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 243 | MLX5_RX_HASH_SRC_IPV6 = 1 << 2, |
| 244 | MLX5_RX_HASH_DST_IPV6 = 1 << 3, |
| 245 | MLX5_RX_HASH_SRC_PORT_TCP = 1 << 4, |
| 246 | MLX5_RX_HASH_DST_PORT_TCP = 1 << 5, |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 247 | MLX5_RX_HASH_SRC_PORT_UDP = 1 << 6, |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 248 | MLX5_RX_HASH_DST_PORT_UDP = 1 << 7, |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 249 | MLX5_RX_HASH_IPSEC_SPI = 1 << 8, |
| 250 | MLX5_RX_HASH_INNER = (1UL << 31), |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 251 | }; |
| 252 | struct mlx5_ib_create_qp_rss { |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 253 | __aligned_u64 rx_hash_fields_mask; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 254 | __u8 rx_hash_function; |
| 255 | __u8 rx_key_len; |
| 256 | __u8 reserved[6]; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 257 | __u8 rx_hash_key[128]; |
| 258 | __u32 comp_mask; |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 259 | __u32 flags; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 260 | }; |
Christopher Ferris | 86a4837 | 2019-01-10 14:14:59 -0800 | [diff] [blame] | 261 | enum mlx5_ib_create_qp_resp_mask { |
| 262 | MLX5_IB_CREATE_QP_RESP_MASK_TIRN = 1UL << 0, |
| 263 | MLX5_IB_CREATE_QP_RESP_MASK_TISN = 1UL << 1, |
| 264 | MLX5_IB_CREATE_QP_RESP_MASK_RQN = 1UL << 2, |
| 265 | MLX5_IB_CREATE_QP_RESP_MASK_SQN = 1UL << 3, |
| 266 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 267 | struct mlx5_ib_create_qp_resp { |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 268 | __u32 bfreg_index; |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 269 | __u32 reserved; |
Christopher Ferris | 86a4837 | 2019-01-10 14:14:59 -0800 | [diff] [blame] | 270 | __u32 comp_mask; |
| 271 | __u32 tirn; |
| 272 | __u32 tisn; |
| 273 | __u32 rqn; |
| 274 | __u32 sqn; |
| 275 | __u32 reserved1; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 276 | }; |
| 277 | struct mlx5_ib_alloc_mw { |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 278 | __u32 comp_mask; |
| 279 | __u8 num_klms; |
| 280 | __u8 reserved1; |
| 281 | __u16 reserved2; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 282 | }; |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 283 | enum mlx5_ib_create_wq_mask { |
| 284 | MLX5_IB_CREATE_WQ_STRIDING_RQ = (1 << 0), |
| 285 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 286 | struct mlx5_ib_create_wq { |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 287 | __aligned_u64 buf_addr; |
| 288 | __aligned_u64 db_addr; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 289 | __u32 rq_wqe_count; |
| 290 | __u32 rq_wqe_shift; |
| 291 | __u32 user_index; |
| 292 | __u32 flags; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 293 | __u32 comp_mask; |
Christopher Ferris | 934ec94 | 2018-01-31 15:29:16 -0800 | [diff] [blame] | 294 | __u32 single_stride_log_num_of_bytes; |
| 295 | __u32 single_wqe_log_num_of_strides; |
| 296 | __u32 two_byte_shift_en; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 297 | }; |
| 298 | struct mlx5_ib_create_ah_resp { |
| 299 | __u32 response_length; |
| 300 | __u8 dmac[ETH_ALEN]; |
Christopher Ferris | 48af7cb | 2017-02-21 12:35:09 -0800 | [diff] [blame] | 301 | __u8 reserved[6]; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 302 | }; |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 303 | struct mlx5_ib_burst_info { |
| 304 | __u32 max_burst_sz; |
| 305 | __u16 typical_pkt_sz; |
| 306 | __u16 reserved; |
| 307 | }; |
| 308 | struct mlx5_ib_modify_qp { |
| 309 | __u32 comp_mask; |
| 310 | struct mlx5_ib_burst_info burst_info; |
| 311 | __u32 reserved; |
| 312 | }; |
| 313 | struct mlx5_ib_modify_qp_resp { |
| 314 | __u32 response_length; |
| 315 | __u32 dctn; |
| 316 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 317 | struct mlx5_ib_create_wq_resp { |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 318 | __u32 response_length; |
| 319 | __u32 reserved; |
| 320 | }; |
| 321 | struct mlx5_ib_create_rwq_ind_tbl_resp { |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 322 | __u32 response_length; |
| 323 | __u32 reserved; |
| 324 | }; |
| 325 | struct mlx5_ib_modify_wq { |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 326 | __u32 comp_mask; |
| 327 | __u32 reserved; |
| 328 | }; |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 329 | struct mlx5_ib_clock_info { |
| 330 | __u32 sign; |
| 331 | __u32 resv; |
| 332 | __aligned_u64 nsec; |
| 333 | __aligned_u64 cycles; |
| 334 | __aligned_u64 frac; |
| 335 | __u32 mult; |
| 336 | __u32 shift; |
| 337 | __aligned_u64 mask; |
| 338 | __aligned_u64 overflow_period; |
| 339 | }; |
| 340 | enum mlx5_ib_mmap_cmd { |
| 341 | MLX5_IB_MMAP_REGULAR_PAGE = 0, |
| 342 | MLX5_IB_MMAP_GET_CONTIGUOUS_PAGES = 1, |
| 343 | MLX5_IB_MMAP_WC_PAGE = 2, |
| 344 | MLX5_IB_MMAP_NC_PAGE = 3, |
| 345 | MLX5_IB_MMAP_CORE_CLOCK = 5, |
| 346 | MLX5_IB_MMAP_ALLOC_WC = 6, |
| 347 | MLX5_IB_MMAP_CLOCK_INFO = 7, |
| 348 | MLX5_IB_MMAP_DEVICE_MEM = 8, |
| 349 | }; |
| 350 | enum { |
| 351 | MLX5_IB_CLOCK_INFO_KERNEL_UPDATING = 1, |
| 352 | }; |
| 353 | enum { |
| 354 | MLX5_IB_CLOCK_INFO_V1 = 0, |
| 355 | }; |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 356 | struct mlx5_ib_flow_counters_desc { |
| 357 | __u32 description; |
| 358 | __u32 index; |
| 359 | }; |
| 360 | struct mlx5_ib_flow_counters_data { |
| 361 | RDMA_UAPI_PTR(struct mlx5_ib_flow_counters_desc *, counters_data); |
| 362 | __u32 ncounters; |
| 363 | __u32 reserved; |
| 364 | }; |
| 365 | struct mlx5_ib_create_flow { |
| 366 | __u32 ncounters_data; |
| 367 | __u32 reserved; |
| 368 | struct mlx5_ib_flow_counters_data data[]; |
| 369 | }; |
Christopher Ferris | 6a9755d | 2017-01-13 14:09:31 -0800 | [diff] [blame] | 370 | #endif |