Path: blob/master/include/uapi/rdma/mlx5_user_ioctl_verbs.h
26292 views
/*1* Copyright (c) 2018, Mellanox Technologies inc. All rights reserved.2*3* This software is available to you under a choice of one of two4* licenses. You may choose to be licensed under the terms of the GNU5* General Public License (GPL) Version 2, available from the file6* COPYING in the main directory of this source tree, or the7* OpenIB.org BSD license below:8*9* Redistribution and use in source and binary forms, with or10* without modification, are permitted provided that the following11* conditions are met:12*13* - Redistributions of source code must retain the above14* copyright notice, this list of conditions and the following15* disclaimer.16*17* - Redistributions in binary form must reproduce the above18* copyright notice, this list of conditions and the following19* disclaimer in the documentation and/or other materials20* provided with the distribution.21*22* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,23* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF24* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND25* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS26* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN27* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN28* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE29* SOFTWARE.30*/3132#ifndef MLX5_USER_IOCTL_VERBS_H33#define MLX5_USER_IOCTL_VERBS_H3435#include <linux/types.h>3637enum mlx5_ib_uapi_flow_action_flags {38MLX5_IB_UAPI_FLOW_ACTION_FLAGS_REQUIRE_METADATA = 1 << 0,39};4041enum mlx5_ib_uapi_flow_table_type {42MLX5_IB_UAPI_FLOW_TABLE_TYPE_NIC_RX = 0x0,43MLX5_IB_UAPI_FLOW_TABLE_TYPE_NIC_TX = 0x1,44MLX5_IB_UAPI_FLOW_TABLE_TYPE_FDB = 0x2,45MLX5_IB_UAPI_FLOW_TABLE_TYPE_RDMA_RX = 0x3,46MLX5_IB_UAPI_FLOW_TABLE_TYPE_RDMA_TX = 0x4,47MLX5_IB_UAPI_FLOW_TABLE_TYPE_RDMA_TRANSPORT_RX = 0x5,48MLX5_IB_UAPI_FLOW_TABLE_TYPE_RDMA_TRANSPORT_TX = 0x6,49};5051enum mlx5_ib_uapi_flow_action_packet_reformat_type {52MLX5_IB_UAPI_FLOW_ACTION_PACKET_REFORMAT_TYPE_L2_TUNNEL_TO_L2 = 0x0,53MLX5_IB_UAPI_FLOW_ACTION_PACKET_REFORMAT_TYPE_L2_TO_L2_TUNNEL = 0x1,54MLX5_IB_UAPI_FLOW_ACTION_PACKET_REFORMAT_TYPE_L3_TUNNEL_TO_L2 = 0x2,55MLX5_IB_UAPI_FLOW_ACTION_PACKET_REFORMAT_TYPE_L2_TO_L3_TUNNEL = 0x3,56};5758enum mlx5_ib_uapi_reg_dmabuf_flags {59MLX5_IB_UAPI_REG_DMABUF_ACCESS_DATA_DIRECT = 1 << 0,60};6162struct mlx5_ib_uapi_devx_async_cmd_hdr {63__aligned_u64 wr_id;64__u8 out_data[];65};6667enum mlx5_ib_uapi_dm_type {68MLX5_IB_UAPI_DM_TYPE_MEMIC,69MLX5_IB_UAPI_DM_TYPE_STEERING_SW_ICM,70MLX5_IB_UAPI_DM_TYPE_HEADER_MODIFY_SW_ICM,71MLX5_IB_UAPI_DM_TYPE_HEADER_MODIFY_PATTERN_SW_ICM,72MLX5_IB_UAPI_DM_TYPE_ENCAP_SW_ICM,73};7475enum mlx5_ib_uapi_devx_create_event_channel_flags {76MLX5_IB_UAPI_DEVX_CR_EV_CH_FLAGS_OMIT_DATA = 1 << 0,77};7879struct mlx5_ib_uapi_devx_async_event_hdr {80__aligned_u64 cookie;81__u8 out_data[];82};8384enum mlx5_ib_uapi_pp_alloc_flags {85MLX5_IB_UAPI_PP_ALLOC_FLAGS_DEDICATED_INDEX = 1 << 0,86};8788enum mlx5_ib_uapi_uar_alloc_type {89MLX5_IB_UAPI_UAR_ALLOC_TYPE_BF = 0x0,90MLX5_IB_UAPI_UAR_ALLOC_TYPE_NC = 0x1,91};9293enum mlx5_ib_uapi_query_port_flags {94MLX5_IB_UAPI_QUERY_PORT_VPORT = 1 << 0,95MLX5_IB_UAPI_QUERY_PORT_VPORT_VHCA_ID = 1 << 1,96MLX5_IB_UAPI_QUERY_PORT_VPORT_STEERING_ICM_RX = 1 << 2,97MLX5_IB_UAPI_QUERY_PORT_VPORT_STEERING_ICM_TX = 1 << 3,98MLX5_IB_UAPI_QUERY_PORT_VPORT_REG_C0 = 1 << 4,99MLX5_IB_UAPI_QUERY_PORT_ESW_OWNER_VHCA_ID = 1 << 5,100};101102struct mlx5_ib_uapi_reg {103__u32 value;104__u32 mask;105};106107struct mlx5_ib_uapi_query_port {108__aligned_u64 flags;109__u16 vport;110__u16 vport_vhca_id;111__u16 esw_owner_vhca_id;112__u16 rsvd0;113__aligned_u64 vport_steering_icm_rx;114__aligned_u64 vport_steering_icm_tx;115struct mlx5_ib_uapi_reg reg_c0;116};117118#endif119120121122