1 /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
2 /* Copyright (c) 2021, Mellanox Technologies inc. All rights reserved. */
3 
4 #ifndef __MLX5_EN_RX_RES_H__
5 #define __MLX5_EN_RX_RES_H__
6 
7 #include <linux/kernel.h>
8 #include "rqt.h"
9 #include "tir.h"
10 #include "fs.h"
11 #include "rss.h"
12 
13 struct mlx5e_rx_res;
14 
15 struct mlx5e_channels;
16 struct mlx5e_rss_params_hash;
17 
18 enum mlx5e_rx_res_features {
19 	MLX5E_RX_RES_FEATURE_INNER_FT = BIT(0),
20 	MLX5E_RX_RES_FEATURE_PTP = BIT(1),
21 };
22 
23 /* Setup */
24 struct mlx5e_rx_res *mlx5e_rx_res_alloc(void);
25 int mlx5e_rx_res_init(struct mlx5e_rx_res *res, struct mlx5_core_dev *mdev,
26 		      enum mlx5e_rx_res_features features, unsigned int max_nch,
27 		      u32 drop_rqn, const struct mlx5e_packet_merge_param *init_pkt_merge_param,
28 		      unsigned int init_nch);
29 void mlx5e_rx_res_destroy(struct mlx5e_rx_res *res);
30 void mlx5e_rx_res_free(struct mlx5e_rx_res *res);
31 
32 /* TIRN getters for flow steering */
33 u32 mlx5e_rx_res_get_tirn_direct(struct mlx5e_rx_res *res, unsigned int ix);
34 u32 mlx5e_rx_res_get_tirn_rss(struct mlx5e_rx_res *res, enum mlx5_traffic_types tt);
35 u32 mlx5e_rx_res_get_tirn_rss_inner(struct mlx5e_rx_res *res, enum mlx5_traffic_types tt);
36 u32 mlx5e_rx_res_get_tirn_ptp(struct mlx5e_rx_res *res);
37 
38 /* Activate/deactivate API */
39 void mlx5e_rx_res_channels_activate(struct mlx5e_rx_res *res, struct mlx5e_channels *chs);
40 void mlx5e_rx_res_channels_deactivate(struct mlx5e_rx_res *res);
41 void mlx5e_rx_res_xsk_update(struct mlx5e_rx_res *res, struct mlx5e_channels *chs,
42 			     unsigned int ix, bool xsk);
43 
44 /* Configuration API */
45 void mlx5e_rx_res_rss_set_indir_uniform(struct mlx5e_rx_res *res, unsigned int nch);
46 int mlx5e_rx_res_rss_get_rxfh(struct mlx5e_rx_res *res, u32 rss_idx,
47 			      u32 *indir, u8 *key, u8 *hfunc);
48 int mlx5e_rx_res_rss_set_rxfh(struct mlx5e_rx_res *res, u32 rss_idx,
49 			      const u32 *indir, const u8 *key, const u8 *hfunc);
50 
51 u8 mlx5e_rx_res_rss_get_hash_fields(struct mlx5e_rx_res *res, enum mlx5_traffic_types tt);
52 int mlx5e_rx_res_rss_set_hash_fields(struct mlx5e_rx_res *res, enum mlx5_traffic_types tt,
53 				     u8 rx_hash_fields);
54 int mlx5e_rx_res_packet_merge_set_param(struct mlx5e_rx_res *res,
55 					struct mlx5e_packet_merge_param *pkt_merge_param);
56 
57 int mlx5e_rx_res_rss_init(struct mlx5e_rx_res *res, u32 *rss_idx, unsigned int init_nch);
58 int mlx5e_rx_res_rss_destroy(struct mlx5e_rx_res *res, u32 rss_idx);
59 int mlx5e_rx_res_rss_cnt(struct mlx5e_rx_res *res);
60 int mlx5e_rx_res_rss_index(struct mlx5e_rx_res *res, struct mlx5e_rss *rss);
61 struct mlx5e_rss *mlx5e_rx_res_rss_get(struct mlx5e_rx_res *res, u32 rss_idx);
62 
63 /* Workaround for hairpin */
64 struct mlx5e_rss_params_hash mlx5e_rx_res_get_current_hash(struct mlx5e_rx_res *res);
65 
66 /* Accel TIRs */
67 int mlx5e_rx_res_tls_tir_create(struct mlx5e_rx_res *res, unsigned int rxq,
68 				struct mlx5e_tir *tir);
69 #endif /* __MLX5_EN_RX_RES_H__ */
70