Skip to content

Commit

Permalink
net/mlx5: Query ADV_RDMA capabilities
Browse files Browse the repository at this point in the history
Query ADV_RDMA capabilities which provide information for
advanced RDMA related features.

Signed-off-by: Patrisious Haddad <phaddad@nvidia.com>
Reviewed-by: Mark Bloch <mbloch@nvidia.com>
Link: https://patch.msgid.link/e3e6ede03ea31cd201078dcdd4e407608e4a5a87.1740574103.git.leon@kernel.org
Signed-off-by: Leon Romanovsky <leon@kernel.org>
  • Loading branch information
Patrisious Haddad authored and Leon Romanovsky committed Mar 8, 2025
1 parent f9deed0 commit ab7d228
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 1 deletion.
7 changes: 7 additions & 0 deletions drivers/net/ethernet/mellanox/mlx5/core/fw.c
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,13 @@ int mlx5_query_hca_caps(struct mlx5_core_dev *dev)
return err;
}

if (MLX5_CAP_GEN(dev, adv_rdma)) {
err = mlx5_core_get_caps_mode(dev, MLX5_CAP_ADV_RDMA,
HCA_CAP_OPMOD_GET_CUR);
if (err)
return err;
}

return 0;
}

Expand Down
1 change: 1 addition & 0 deletions drivers/net/ethernet/mellanox/mlx5/core/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1795,6 +1795,7 @@ static const int types[] = {
MLX5_CAP_ADV_VIRTUALIZATION,
MLX5_CAP_CRYPTO,
MLX5_CAP_SHAMPO,
MLX5_CAP_ADV_RDMA,
};

static void mlx5_hca_caps_free(struct mlx5_core_dev *dev)
Expand Down
5 changes: 5 additions & 0 deletions include/linux/mlx5/device.h
Original file line number Diff line number Diff line change
Expand Up @@ -1251,6 +1251,7 @@ enum mlx5_cap_type {
MLX5_CAP_GENERAL_2 = 0x20,
MLX5_CAP_PORT_SELECTION = 0x25,
MLX5_CAP_ADV_VIRTUALIZATION = 0x26,
MLX5_CAP_ADV_RDMA = 0x28,
/* NUM OF CAP Types */
MLX5_CAP_NUM
};
Expand Down Expand Up @@ -1384,6 +1385,10 @@ enum mlx5_qcam_feature_groups {
MLX5_GET(adv_virtualization_cap, \
mdev->caps.hca[MLX5_CAP_ADV_VIRTUALIZATION]->cur, cap)

#define MLX5_CAP_ADV_RDMA(mdev, cap) \
MLX5_GET(adv_rdma_cap, \
mdev->caps.hca[MLX5_CAP_ADV_RDMA]->cur, cap)

#define MLX5_CAP_FLOWTABLE_PORT_SELECTION(mdev, cap) \
MLX5_CAP_PORT_SELECTION(mdev, flow_table_properties_port_selection.cap)

Expand Down
42 changes: 41 additions & 1 deletion include/linux/mlx5/mlx5_ifc.h
Original file line number Diff line number Diff line change
Expand Up @@ -1993,7 +1993,9 @@ struct mlx5_ifc_cmd_hca_cap_bits {
u8 max_geneve_tlv_options[0x8];
u8 reserved_at_568[0x3];
u8 max_geneve_tlv_option_data_len[0x5];
u8 reserved_at_570[0x9];
u8 reserved_at_570[0x1];
u8 adv_rdma[0x1];
u8 reserved_at_572[0x7];
u8 adv_virtualization[0x1];
u8 reserved_at_57a[0x6];

Expand Down Expand Up @@ -13076,6 +13078,44 @@ struct mlx5_ifc_load_vhca_state_out_bits {
u8 reserved_at_40[0x40];
};

struct mlx5_ifc_adv_rdma_cap_bits {
u8 rdma_transport_manager[0x1];
u8 rdma_transport_manager_other_eswitch[0x1];
u8 reserved_at_2[0x1e];

u8 rcx_type[0x8];
u8 reserved_at_28[0x2];
u8 ps_entry_log_max_value[0x6];
u8 reserved_at_30[0x6];
u8 qp_max_ps_num_entry[0xa];

u8 mp_max_num_queues[0x8];
u8 ps_user_context_max_log_size[0x8];
u8 message_based_qp_and_striding_wq[0x8];
u8 reserved_at_58[0x8];

u8 max_receive_send_message_size_stride[0x10];
u8 reserved_at_70[0x10];

u8 max_receive_send_message_size_byte[0x20];

u8 reserved_at_a0[0x160];

struct mlx5_ifc_flow_table_prop_layout_bits rdma_transport_rx_flow_table_properties;

struct mlx5_ifc_flow_table_prop_layout_bits rdma_transport_tx_flow_table_properties;

struct mlx5_ifc_flow_table_fields_supported_2_bits rdma_transport_rx_ft_field_support_2;

struct mlx5_ifc_flow_table_fields_supported_2_bits rdma_transport_tx_ft_field_support_2;

struct mlx5_ifc_flow_table_fields_supported_2_bits rdma_transport_rx_ft_field_bitmask_support_2;

struct mlx5_ifc_flow_table_fields_supported_2_bits rdma_transport_tx_ft_field_bitmask_support_2;

u8 reserved_at_800[0x3800];
};

struct mlx5_ifc_adv_virtualization_cap_bits {
u8 reserved_at_0[0x3];
u8 pg_track_log_max_num[0x5];
Expand Down

0 comments on commit ab7d228

Please sign in to comment.