diff options
author | Matan Barak <matanb@mellanox.com> | 2015-12-15 13:30:11 -0500 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2015-12-23 23:25:59 -0500 |
commit | 7c60bcbb68122b39fe3e92143abce01be75f3fa6 (patch) | |
tree | dc2b61432d3c977071115f5e32ce0084be382b35 | |
parent | 301a721e1fcb890afc29997f46de9561686ed391 (diff) |
IB/mlx5: Add support for hca_core_clock and timestamp_mask
Reporting the hca_core_clock (in kHZ) and the timestamp_mask in
query_device extended verb. timestamp_mask is used by users in order
to know what is the valid range of the raw timestamps, while
hca_core_clock reports the clock frequency that is used for
timestamps.
Signed-off-by: Matan Barak <matanb@mellanox.com>
Reviewed-by: Moshe Lazer <moshel@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
-rw-r--r-- | drivers/infiniband/hw/mlx5/main.c | 2 | ||||
-rw-r--r-- | include/linux/mlx5/mlx5_ifc.h | 9 |
2 files changed, 8 insertions, 3 deletions
diff --git a/drivers/infiniband/hw/mlx5/main.c b/drivers/infiniband/hw/mlx5/main.c index 22ae0939b20e..2d7fac53214f 100644 --- a/drivers/infiniband/hw/mlx5/main.c +++ b/drivers/infiniband/hw/mlx5/main.c | |||
@@ -503,6 +503,8 @@ static int mlx5_ib_query_device(struct ib_device *ibdev, | |||
503 | props->max_total_mcast_qp_attach = props->max_mcast_qp_attach * | 503 | props->max_total_mcast_qp_attach = props->max_mcast_qp_attach * |
504 | props->max_mcast_grp; | 504 | props->max_mcast_grp; |
505 | props->max_map_per_fmr = INT_MAX; /* no limit in ConnectIB */ | 505 | props->max_map_per_fmr = INT_MAX; /* no limit in ConnectIB */ |
506 | props->hca_core_clock = MLX5_CAP_GEN(mdev, device_frequency_khz); | ||
507 | props->timestamp_mask = 0x7FFFFFFFFFFFFFFFULL; | ||
506 | 508 | ||
507 | #ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING | 509 | #ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING |
508 | if (MLX5_CAP_GEN(mdev, pg)) | 510 | if (MLX5_CAP_GEN(mdev, pg)) |
diff --git a/include/linux/mlx5/mlx5_ifc.h b/include/linux/mlx5/mlx5_ifc.h index 49b34c6466ac..091d8343d594 100644 --- a/include/linux/mlx5/mlx5_ifc.h +++ b/include/linux/mlx5/mlx5_ifc.h | |||
@@ -794,15 +794,18 @@ struct mlx5_ifc_cmd_hca_cap_bits { | |||
794 | u8 reserved_63[0x8]; | 794 | u8 reserved_63[0x8]; |
795 | u8 log_uar_page_sz[0x10]; | 795 | u8 log_uar_page_sz[0x10]; |
796 | 796 | ||
797 | u8 reserved_64[0x100]; | 797 | u8 reserved_64[0x20]; |
798 | u8 device_frequency_mhz[0x20]; | ||
799 | u8 device_frequency_khz[0x20]; | ||
800 | u8 reserved_65[0xa0]; | ||
798 | 801 | ||
799 | u8 reserved_65[0x1f]; | 802 | u8 reserved_66[0x1f]; |
800 | u8 cqe_zip[0x1]; | 803 | u8 cqe_zip[0x1]; |
801 | 804 | ||
802 | u8 cqe_zip_timeout[0x10]; | 805 | u8 cqe_zip_timeout[0x10]; |
803 | u8 cqe_zip_max_num[0x10]; | 806 | u8 cqe_zip_max_num[0x10]; |
804 | 807 | ||
805 | u8 reserved_66[0x220]; | 808 | u8 reserved_67[0x220]; |
806 | }; | 809 | }; |
807 | 810 | ||
808 | enum { | 811 | enum { |