diff options
| author | Eli Cohen <eli@mellanox.com> | 2017-01-03 23:55:21 +0200 |
|---|---|---|
| committer | Leon Romanovsky <leon@kernel.org> | 2017-01-08 11:21:26 +0200 |
| commit | 2f5ff26478adaff5ed9b7ad4079d6a710b5f27e7 (patch) | |
| tree | 52b102a740dcdc611100d73e0185a15012b518be /include/linux/mlx5/device.h | |
| parent | f4044dac63e952ac1137b6df02b233d37696e2f5 (diff) | |
| download | talos-obmc-linux-2f5ff26478adaff5ed9b7ad4079d6a710b5f27e7.tar.gz talos-obmc-linux-2f5ff26478adaff5ed9b7ad4079d6a710b5f27e7.zip | |
mlx5: Fix naming convention with respect to UARs
This establishes a solid naming conventions for UARs. A UAR (User Access
Region) can have size identical to a system page or can be fixed 4KB
depending on a value queried by firmware. Each UAR always has 4 blue
flame register which are used to post doorbell to send queue. In
addition, a UAR has section used for posting doorbells to CQs or EQs. In
this patch we change names to reflect this conventions.
Signed-off-by: Eli Cohen <eli@mellanox.com>
Reviewed-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Diffstat (limited to 'include/linux/mlx5/device.h')
| -rw-r--r-- | include/linux/mlx5/device.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/linux/mlx5/device.h b/include/linux/mlx5/device.h index 3ccaeff15a80..aa851c51ab59 100644 --- a/include/linux/mlx5/device.h +++ b/include/linux/mlx5/device.h @@ -212,10 +212,11 @@ enum { }; enum { - MLX5_BF_REGS_PER_PAGE = 4, - MLX5_MAX_UAR_PAGES = 1 << 8, - MLX5_NON_FP_BF_REGS_PER_PAGE = 2, - MLX5_MAX_UUARS = MLX5_MAX_UAR_PAGES * MLX5_NON_FP_BF_REGS_PER_PAGE, + MLX5_BFREGS_PER_UAR = 4, + MLX5_MAX_UARS = 1 << 8, + MLX5_NON_FP_BFREGS_PER_UAR = 2, + MLX5_MAX_BFREGS = MLX5_MAX_UARS * + MLX5_NON_FP_BFREGS_PER_UAR, }; enum { |

