1 /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
2 /* Copyright (c) 2020 Mellanox Technologies Inc. All rights reserved. */
3 
4 #ifndef __MLX5_ESWITCH_ACL_OFLD_H__
5 #define __MLX5_ESWITCH_ACL_OFLD_H__
6 
7 #include "eswitch.h"
8 
9 /* Eswitch acl egress external APIs */
10 int esw_acl_egress_ofld_setup(struct mlx5_eswitch *esw, struct mlx5_vport *vport);
11 void esw_acl_egress_ofld_cleanup(struct mlx5_vport *vport);
12 int mlx5_esw_acl_egress_vport_bond(struct mlx5_eswitch *esw, u16 active_vport_num,
13 				   u16 passive_vport_num);
14 int mlx5_esw_acl_egress_vport_unbond(struct mlx5_eswitch *esw, u16 vport_num);
15 
16 static inline bool mlx5_esw_acl_egress_fwd2vport_supported(struct mlx5_eswitch *esw)
17 {
18 	return esw && esw->mode == MLX5_ESWITCH_OFFLOADS &&
19 		mlx5_eswitch_vport_match_metadata_enabled(esw) &&
20 		MLX5_CAP_ESW_FLOWTABLE(esw->dev, egress_acl_forward_to_vport);
21 }
22 
23 /* Eswitch acl ingress external APIs */
24 int esw_acl_ingress_ofld_setup(struct mlx5_eswitch *esw, struct mlx5_vport *vport);
25 void esw_acl_ingress_ofld_cleanup(struct mlx5_eswitch *esw, struct mlx5_vport *vport);
26 int mlx5_esw_acl_ingress_vport_bond_update(struct mlx5_eswitch *esw, u16 vport_num,
27 					   u32 metadata);
28 
29 #endif /* __MLX5_ESWITCH_ACL_OFLD_H__ */
30