]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
net/mlx5: Add core support for vlan push/pop steering action
[mirror_ubuntu-jammy-kernel.git] / drivers / net / ethernet / mellanox / mlx5 / core / eswitch.h
CommitLineData
073bb189
SM
1/*
2 * Copyright (c) 2015, Mellanox Technologies, Ltd. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
33#ifndef __MLX5_ESWITCH_H__
34#define __MLX5_ESWITCH_H__
35
77256579
SM
36#include <linux/if_ether.h>
37#include <linux/if_link.h>
feae9087 38#include <net/devlink.h>
073bb189 39#include <linux/mlx5/device.h>
57cbd893 40#include <linux/mlx5/eswitch.h>
eeb66cdb 41#include "lib/mpfs.h"
073bb189 42
e80541ec
SM
43#ifdef CONFIG_MLX5_ESWITCH
44
073bb189
SM
45#define MLX5_MAX_UC_PER_VPORT(dev) \
46 (1 << MLX5_CAP_GEN(dev, log_max_current_uc_list))
47
48#define MLX5_MAX_MC_PER_VPORT(dev) \
49 (1 << MLX5_CAP_GEN(dev, log_max_current_mc_list))
50
cb67b832
HHZ
51#define FDB_UPLINK_VPORT 0xffff
52
c9497c98
MHY
53#define MLX5_MIN_BW_SHARE 1
54
55#define MLX5_RATE_TO_BW_SHARE(rate, divider, limit) \
56 min_t(u32, max_t(u32, (rate) / (divider), MLX5_MIN_BW_SHARE), limit)
57
5742df0f
MHY
58struct vport_ingress {
59 struct mlx5_flow_table *acl;
60 struct mlx5_flow_group *allow_untagged_spoofchk_grp;
61 struct mlx5_flow_group *allow_spoofchk_only_grp;
62 struct mlx5_flow_group *allow_untagged_only_grp;
63 struct mlx5_flow_group *drop_grp;
74491de9
MB
64 struct mlx5_flow_handle *allow_rule;
65 struct mlx5_flow_handle *drop_rule;
b8a0dbe3 66 struct mlx5_fc *drop_counter;
5742df0f
MHY
67};
68
69struct vport_egress {
70 struct mlx5_flow_table *acl;
71 struct mlx5_flow_group *allowed_vlans_grp;
72 struct mlx5_flow_group *drop_grp;
74491de9
MB
73 struct mlx5_flow_handle *allowed_vlan;
74 struct mlx5_flow_handle *drop_rule;
b8a0dbe3
EE
75 struct mlx5_fc *drop_counter;
76};
77
78struct mlx5_vport_drop_stats {
79 u64 rx_dropped;
80 u64 tx_dropped;
5742df0f
MHY
81};
82
1ab2068a
MHY
83struct mlx5_vport_info {
84 u8 mac[ETH_ALEN];
85 u16 vlan;
86 u8 qos;
87 u64 node_guid;
88 int link_state;
c9497c98 89 u32 min_rate;
1bd27b11 90 u32 max_rate;
1ab2068a
MHY
91 bool spoofchk;
92 bool trusted;
93};
94
073bb189
SM
95struct mlx5_vport {
96 struct mlx5_core_dev *dev;
97 int vport;
98 struct hlist_head uc_list[MLX5_L2_ADDR_HASH_SIZE];
81848731 99 struct hlist_head mc_list[MLX5_L2_ADDR_HASH_SIZE];
74491de9
MB
100 struct mlx5_flow_handle *promisc_rule;
101 struct mlx5_flow_handle *allmulti_rule;
073bb189
SM
102 struct work_struct vport_change_handler;
103
5742df0f
MHY
104 struct vport_ingress ingress;
105 struct vport_egress egress;
106
1ab2068a
MHY
107 struct mlx5_vport_info info;
108
1bd27b11
MHY
109 struct {
110 bool enabled;
111 u32 esw_tsar_ix;
c9497c98 112 u32 bw_share;
1bd27b11
MHY
113 } qos;
114
073bb189 115 bool enabled;
81848731 116 u16 enabled_events;
073bb189
SM
117};
118
81848731
SM
119struct mlx5_eswitch_fdb {
120 void *fdb;
6ab36e35
OG
121 union {
122 struct legacy_fdb {
123 struct mlx5_flow_group *addr_grp;
124 struct mlx5_flow_group *allmulti_grp;
125 struct mlx5_flow_group *promisc_grp;
126 } legacy;
69697b6e
OG
127
128 struct offloads_fdb {
1033665e 129 struct mlx5_flow_table *fdb;
69697b6e
OG
130 struct mlx5_flow_group *send_to_vport_grp;
131 struct mlx5_flow_group *miss_grp;
f80be543
MB
132 struct mlx5_flow_handle *miss_rule_uni;
133 struct mlx5_flow_handle *miss_rule_multi;
f5f82476 134 int vlan_push_pop_refcount;
69697b6e 135 } offloads;
6ab36e35
OG
136 };
137};
138
c116c6ee
OG
139struct mlx5_esw_offload {
140 struct mlx5_flow_table *ft_offloads;
fed9ce22 141 struct mlx5_flow_group *vport_rx_group;
127ea380 142 struct mlx5_eswitch_rep *vport_reps;
a54e20b4 143 DECLARE_HASHTABLE(encap_tbl, 8);
11c9c548 144 DECLARE_HASHTABLE(mod_hdr_tbl, 8);
bffaa916 145 u8 inline_mode;
375f51e2 146 u64 num_flows;
7768d197 147 u8 encap;
c116c6ee
OG
148};
149
0a0ab1d2
EC
150/* E-Switch MC FDB table hash node */
151struct esw_mc_addr { /* SRIOV only */
152 struct l2addr_node node;
153 struct mlx5_flow_handle *uplink_rule; /* Forward to uplink rule */
154 u32 refcnt;
155};
156
073bb189
SM
157struct mlx5_eswitch {
158 struct mlx5_core_dev *dev;
81848731
SM
159 struct mlx5_eswitch_fdb fdb_table;
160 struct hlist_head mc_table[MLX5_L2_ADDR_HASH_SIZE];
073bb189
SM
161 struct workqueue_struct *work_queue;
162 struct mlx5_vport *vports;
163 int total_vports;
81848731 164 int enabled_vports;
dfcb1ed3
MHY
165 /* Synchronize between vport change events
166 * and async SRIOV admin state changes
167 */
168 struct mutex state_lock;
0a0ab1d2 169 struct esw_mc_addr mc_promisc;
1bd27b11
MHY
170
171 struct {
172 bool enabled;
173 u32 root_tsar_id;
174 } qos;
175
c116c6ee 176 struct mlx5_esw_offload offloads;
6ab36e35 177 int mode;
073bb189
SM
178};
179
766a0e97
BX
180void esw_offloads_cleanup(struct mlx5_eswitch *esw, int nvports);
181int esw_offloads_init(struct mlx5_eswitch *esw, int nvports);
e8d31c4d
MB
182void esw_offloads_cleanup_reps(struct mlx5_eswitch *esw);
183int esw_offloads_init_reps(struct mlx5_eswitch *esw);
766a0e97 184
073bb189
SM
185/* E-Switch API */
186int mlx5_eswitch_init(struct mlx5_core_dev *dev);
187void mlx5_eswitch_cleanup(struct mlx5_eswitch *esw);
188void mlx5_eswitch_vport_event(struct mlx5_eswitch *esw, struct mlx5_eqe *eqe);
6ab36e35 189int mlx5_eswitch_enable_sriov(struct mlx5_eswitch *esw, int nvfs, int mode);
81848731 190void mlx5_eswitch_disable_sriov(struct mlx5_eswitch *esw);
77256579
SM
191int mlx5_eswitch_set_vport_mac(struct mlx5_eswitch *esw,
192 int vport, u8 mac[ETH_ALEN]);
193int mlx5_eswitch_set_vport_state(struct mlx5_eswitch *esw,
194 int vport, int link_state);
9e7ea352
SM
195int mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
196 int vport, u16 vlan, u8 qos);
f942380c
MHY
197int mlx5_eswitch_set_vport_spoofchk(struct mlx5_eswitch *esw,
198 int vport, bool spoofchk);
1edc57e2
MHY
199int mlx5_eswitch_set_vport_trust(struct mlx5_eswitch *esw,
200 int vport_num, bool setting);
c9497c98
MHY
201int mlx5_eswitch_set_vport_rate(struct mlx5_eswitch *esw, int vport,
202 u32 max_rate, u32 min_rate);
77256579
SM
203int mlx5_eswitch_get_vport_config(struct mlx5_eswitch *esw,
204 int vport, struct ifla_vf_info *ivi);
3b751a2a
SM
205int mlx5_eswitch_get_vport_stats(struct mlx5_eswitch *esw,
206 int vport,
207 struct ifla_vf_stats *vf_stats);
159fe639 208void mlx5_eswitch_del_send_to_vport_rule(struct mlx5_flow_handle *rule);
073bb189 209
3d80d1a2 210struct mlx5_flow_spec;
776b12b6 211struct mlx5_esw_flow_attr;
3d80d1a2 212
74491de9 213struct mlx5_flow_handle *
3d80d1a2
OG
214mlx5_eswitch_add_offloaded_rule(struct mlx5_eswitch *esw,
215 struct mlx5_flow_spec *spec,
776b12b6 216 struct mlx5_esw_flow_attr *attr);
d85cdccb
OG
217void
218mlx5_eswitch_del_offloaded_rule(struct mlx5_eswitch *esw,
219 struct mlx5_flow_handle *rule,
220 struct mlx5_esw_flow_attr *attr);
221
74491de9 222struct mlx5_flow_handle *
fed9ce22
OG
223mlx5_eswitch_create_vport_rx_rule(struct mlx5_eswitch *esw, int vport, u32 tirn);
224
e33dfe31
OG
225enum {
226 SET_VLAN_STRIP = BIT(0),
227 SET_VLAN_INSERT = BIT(1)
228};
229
776b12b6
OG
230struct mlx5_esw_flow_attr {
231 struct mlx5_eswitch_rep *in_rep;
232 struct mlx5_eswitch_rep *out_rep;
233
234 int action;
f5f82476
OG
235 u16 vlan;
236 bool vlan_handled;
45247bf2 237 u32 encap_id;
d7e75a32 238 u32 mod_hdr_id;
232c0013 239 struct mlx5e_tc_flow_parse_attr *parse_attr;
776b12b6
OG
240};
241
feae9087
OG
242int mlx5_devlink_eswitch_mode_set(struct devlink *devlink, u16 mode);
243int mlx5_devlink_eswitch_mode_get(struct devlink *devlink, u16 *mode);
bffaa916
RD
244int mlx5_devlink_eswitch_inline_mode_set(struct devlink *devlink, u8 mode);
245int mlx5_devlink_eswitch_inline_mode_get(struct devlink *devlink, u8 *mode);
246int mlx5_eswitch_inline_mode_get(struct mlx5_eswitch *esw, int nvfs, u8 *mode);
7768d197
RD
247int mlx5_devlink_eswitch_encap_mode_set(struct devlink *devlink, u8 encap);
248int mlx5_devlink_eswitch_encap_mode_get(struct devlink *devlink, u8 *encap);
a4b97ab4 249void *mlx5_eswitch_get_uplink_priv(struct mlx5_eswitch *esw, u8 rep_type);
feae9087 250
f5f82476
OG
251int mlx5_eswitch_add_vlan_action(struct mlx5_eswitch *esw,
252 struct mlx5_esw_flow_attr *attr);
253int mlx5_eswitch_del_vlan_action(struct mlx5_eswitch *esw,
254 struct mlx5_esw_flow_attr *attr);
255int __mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
256 int vport, u16 vlan, u8 qos, u8 set_flags);
257
69697b6e
OG
258#define MLX5_DEBUG_ESWITCH_MASK BIT(3)
259
260#define esw_info(dev, format, ...) \
261 pr_info("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
262
263#define esw_warn(dev, format, ...) \
264 pr_warn("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
265
266#define esw_debug(dev, format, ...) \
267 mlx5_core_dbg_mask(dev, MLX5_DEBUG_ESWITCH_MASK, format, ##__VA_ARGS__)
e80541ec
SM
268#else /* CONFIG_MLX5_ESWITCH */
269/* eswitch API stubs */
270static inline int mlx5_eswitch_init(struct mlx5_core_dev *dev) { return 0; }
271static inline void mlx5_eswitch_cleanup(struct mlx5_eswitch *esw) {}
272static inline void mlx5_eswitch_vport_event(struct mlx5_eswitch *esw, struct mlx5_eqe *eqe) {}
273static inline int mlx5_eswitch_enable_sriov(struct mlx5_eswitch *esw, int nvfs, int mode) { return 0; }
274static inline void mlx5_eswitch_disable_sriov(struct mlx5_eswitch *esw) {}
275#endif /* CONFIG_MLX5_ESWITCH */
276
073bb189 277#endif /* __MLX5_ESWITCH_H__ */