]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
net/core: Add drop counters to VF statistics
[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>
eeb66cdb 40#include "lib/mpfs.h"
073bb189 41
e80541ec
SM
42enum {
43 SRIOV_NONE,
44 SRIOV_LEGACY,
45 SRIOV_OFFLOADS
46};
47
a4b97ab4
MB
48enum {
49 REP_ETH,
50 NUM_REP_TYPES,
51};
52
e80541ec
SM
53#ifdef CONFIG_MLX5_ESWITCH
54
073bb189
SM
55#define MLX5_MAX_UC_PER_VPORT(dev) \
56 (1 << MLX5_CAP_GEN(dev, log_max_current_uc_list))
57
58#define MLX5_MAX_MC_PER_VPORT(dev) \
59 (1 << MLX5_CAP_GEN(dev, log_max_current_mc_list))
60
cb67b832
HHZ
61#define FDB_UPLINK_VPORT 0xffff
62
c9497c98
MHY
63#define MLX5_MIN_BW_SHARE 1
64
65#define MLX5_RATE_TO_BW_SHARE(rate, divider, limit) \
66 min_t(u32, max_t(u32, (rate) / (divider), MLX5_MIN_BW_SHARE), limit)
67
5742df0f
MHY
68struct vport_ingress {
69 struct mlx5_flow_table *acl;
70 struct mlx5_flow_group *allow_untagged_spoofchk_grp;
71 struct mlx5_flow_group *allow_spoofchk_only_grp;
72 struct mlx5_flow_group *allow_untagged_only_grp;
73 struct mlx5_flow_group *drop_grp;
74491de9
MB
74 struct mlx5_flow_handle *allow_rule;
75 struct mlx5_flow_handle *drop_rule;
5742df0f
MHY
76};
77
78struct vport_egress {
79 struct mlx5_flow_table *acl;
80 struct mlx5_flow_group *allowed_vlans_grp;
81 struct mlx5_flow_group *drop_grp;
74491de9
MB
82 struct mlx5_flow_handle *allowed_vlan;
83 struct mlx5_flow_handle *drop_rule;
5742df0f
MHY
84};
85
1ab2068a
MHY
86struct mlx5_vport_info {
87 u8 mac[ETH_ALEN];
88 u16 vlan;
89 u8 qos;
90 u64 node_guid;
91 int link_state;
c9497c98 92 u32 min_rate;
1bd27b11 93 u32 max_rate;
1ab2068a
MHY
94 bool spoofchk;
95 bool trusted;
96};
97
073bb189
SM
98struct mlx5_vport {
99 struct mlx5_core_dev *dev;
100 int vport;
101 struct hlist_head uc_list[MLX5_L2_ADDR_HASH_SIZE];
81848731 102 struct hlist_head mc_list[MLX5_L2_ADDR_HASH_SIZE];
74491de9
MB
103 struct mlx5_flow_handle *promisc_rule;
104 struct mlx5_flow_handle *allmulti_rule;
073bb189
SM
105 struct work_struct vport_change_handler;
106
5742df0f
MHY
107 struct vport_ingress ingress;
108 struct vport_egress egress;
109
1ab2068a
MHY
110 struct mlx5_vport_info info;
111
1bd27b11
MHY
112 struct {
113 bool enabled;
114 u32 esw_tsar_ix;
c9497c98 115 u32 bw_share;
1bd27b11
MHY
116 } qos;
117
073bb189 118 bool enabled;
81848731 119 u16 enabled_events;
073bb189
SM
120};
121
81848731
SM
122struct mlx5_eswitch_fdb {
123 void *fdb;
6ab36e35
OG
124 union {
125 struct legacy_fdb {
126 struct mlx5_flow_group *addr_grp;
127 struct mlx5_flow_group *allmulti_grp;
128 struct mlx5_flow_group *promisc_grp;
129 } legacy;
69697b6e
OG
130
131 struct offloads_fdb {
1033665e 132 struct mlx5_flow_table *fdb;
69697b6e
OG
133 struct mlx5_flow_group *send_to_vport_grp;
134 struct mlx5_flow_group *miss_grp;
74491de9 135 struct mlx5_flow_handle *miss_rule;
f5f82476 136 int vlan_push_pop_refcount;
69697b6e 137 } offloads;
6ab36e35
OG
138 };
139};
140
a4b97ab4
MB
141struct mlx5_eswitch_rep;
142struct mlx5_eswitch_rep_if {
4c66df01 143 int (*load)(struct mlx5_core_dev *dev,
cb67b832 144 struct mlx5_eswitch_rep *rep);
4c66df01 145 void (*unload)(struct mlx5_eswitch_rep *rep);
5ed99fb4 146 void *priv;
a4b97ab4
MB
147 bool valid;
148};
149
150struct mlx5_eswitch_rep {
151 struct mlx5_eswitch_rep_if rep_if[NUM_REP_TYPES];
127ea380 152 u16 vport;
bac9b6aa 153 u8 hw_id[ETH_ALEN];
f5f82476
OG
154 u16 vlan;
155 u32 vlan_refcount;
127ea380
HHZ
156};
157
c116c6ee
OG
158struct mlx5_esw_offload {
159 struct mlx5_flow_table *ft_offloads;
fed9ce22 160 struct mlx5_flow_group *vport_rx_group;
127ea380 161 struct mlx5_eswitch_rep *vport_reps;
a54e20b4 162 DECLARE_HASHTABLE(encap_tbl, 8);
11c9c548 163 DECLARE_HASHTABLE(mod_hdr_tbl, 8);
bffaa916 164 u8 inline_mode;
375f51e2 165 u64 num_flows;
7768d197 166 u8 encap;
c116c6ee
OG
167};
168
0a0ab1d2
EC
169/* E-Switch MC FDB table hash node */
170struct esw_mc_addr { /* SRIOV only */
171 struct l2addr_node node;
172 struct mlx5_flow_handle *uplink_rule; /* Forward to uplink rule */
173 u32 refcnt;
174};
175
073bb189
SM
176struct mlx5_eswitch {
177 struct mlx5_core_dev *dev;
81848731
SM
178 struct mlx5_eswitch_fdb fdb_table;
179 struct hlist_head mc_table[MLX5_L2_ADDR_HASH_SIZE];
073bb189
SM
180 struct workqueue_struct *work_queue;
181 struct mlx5_vport *vports;
182 int total_vports;
81848731 183 int enabled_vports;
dfcb1ed3
MHY
184 /* Synchronize between vport change events
185 * and async SRIOV admin state changes
186 */
187 struct mutex state_lock;
0a0ab1d2 188 struct esw_mc_addr mc_promisc;
1bd27b11
MHY
189
190 struct {
191 bool enabled;
192 u32 root_tsar_id;
193 } qos;
194
c116c6ee 195 struct mlx5_esw_offload offloads;
6ab36e35 196 int mode;
073bb189
SM
197};
198
766a0e97
BX
199void esw_offloads_cleanup(struct mlx5_eswitch *esw, int nvports);
200int esw_offloads_init(struct mlx5_eswitch *esw, int nvports);
e8d31c4d
MB
201void esw_offloads_cleanup_reps(struct mlx5_eswitch *esw);
202int esw_offloads_init_reps(struct mlx5_eswitch *esw);
766a0e97 203
073bb189
SM
204/* E-Switch API */
205int mlx5_eswitch_init(struct mlx5_core_dev *dev);
206void mlx5_eswitch_cleanup(struct mlx5_eswitch *esw);
207void mlx5_eswitch_vport_event(struct mlx5_eswitch *esw, struct mlx5_eqe *eqe);
6ab36e35 208int mlx5_eswitch_enable_sriov(struct mlx5_eswitch *esw, int nvfs, int mode);
81848731 209void mlx5_eswitch_disable_sriov(struct mlx5_eswitch *esw);
77256579
SM
210int mlx5_eswitch_set_vport_mac(struct mlx5_eswitch *esw,
211 int vport, u8 mac[ETH_ALEN]);
212int mlx5_eswitch_set_vport_state(struct mlx5_eswitch *esw,
213 int vport, int link_state);
9e7ea352
SM
214int mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
215 int vport, u16 vlan, u8 qos);
f942380c
MHY
216int mlx5_eswitch_set_vport_spoofchk(struct mlx5_eswitch *esw,
217 int vport, bool spoofchk);
1edc57e2
MHY
218int mlx5_eswitch_set_vport_trust(struct mlx5_eswitch *esw,
219 int vport_num, bool setting);
c9497c98
MHY
220int mlx5_eswitch_set_vport_rate(struct mlx5_eswitch *esw, int vport,
221 u32 max_rate, u32 min_rate);
77256579
SM
222int mlx5_eswitch_get_vport_config(struct mlx5_eswitch *esw,
223 int vport, struct ifla_vf_info *ivi);
3b751a2a
SM
224int mlx5_eswitch_get_vport_stats(struct mlx5_eswitch *esw,
225 int vport,
226 struct ifla_vf_stats *vf_stats);
f7a68945
MB
227struct mlx5_flow_handle *
228mlx5_eswitch_add_send_to_vport_rule(struct mlx5_eswitch *esw, int vport,
229 u32 sqn);
159fe639 230void mlx5_eswitch_del_send_to_vport_rule(struct mlx5_flow_handle *rule);
073bb189 231
3d80d1a2 232struct mlx5_flow_spec;
776b12b6 233struct mlx5_esw_flow_attr;
3d80d1a2 234
74491de9 235struct mlx5_flow_handle *
3d80d1a2
OG
236mlx5_eswitch_add_offloaded_rule(struct mlx5_eswitch *esw,
237 struct mlx5_flow_spec *spec,
776b12b6 238 struct mlx5_esw_flow_attr *attr);
d85cdccb
OG
239void
240mlx5_eswitch_del_offloaded_rule(struct mlx5_eswitch *esw,
241 struct mlx5_flow_handle *rule,
242 struct mlx5_esw_flow_attr *attr);
243
74491de9 244struct mlx5_flow_handle *
fed9ce22
OG
245mlx5_eswitch_create_vport_rx_rule(struct mlx5_eswitch *esw, int vport, u32 tirn);
246
e33dfe31
OG
247enum {
248 SET_VLAN_STRIP = BIT(0),
249 SET_VLAN_INSERT = BIT(1)
250};
251
2a69cb9f
OG
252#define MLX5_FLOW_CONTEXT_ACTION_VLAN_POP 0x4000
253#define MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH 0x8000
f5f82476 254
776b12b6
OG
255struct mlx5_esw_flow_attr {
256 struct mlx5_eswitch_rep *in_rep;
257 struct mlx5_eswitch_rep *out_rep;
258
259 int action;
f5f82476
OG
260 u16 vlan;
261 bool vlan_handled;
45247bf2 262 u32 encap_id;
d7e75a32 263 u32 mod_hdr_id;
232c0013 264 struct mlx5e_tc_flow_parse_attr *parse_attr;
776b12b6
OG
265};
266
feae9087
OG
267int mlx5_devlink_eswitch_mode_set(struct devlink *devlink, u16 mode);
268int mlx5_devlink_eswitch_mode_get(struct devlink *devlink, u16 *mode);
bffaa916
RD
269int mlx5_devlink_eswitch_inline_mode_set(struct devlink *devlink, u8 mode);
270int mlx5_devlink_eswitch_inline_mode_get(struct devlink *devlink, u8 *mode);
271int mlx5_eswitch_inline_mode_get(struct mlx5_eswitch *esw, int nvfs, u8 *mode);
7768d197
RD
272int mlx5_devlink_eswitch_encap_mode_set(struct devlink *devlink, u8 encap);
273int mlx5_devlink_eswitch_encap_mode_get(struct devlink *devlink, u8 *encap);
127ea380 274void mlx5_eswitch_register_vport_rep(struct mlx5_eswitch *esw,
9deb2241 275 int vport_index,
a4b97ab4
MB
276 struct mlx5_eswitch_rep_if *rep_if,
277 u8 rep_type);
127ea380 278void mlx5_eswitch_unregister_vport_rep(struct mlx5_eswitch *esw,
a4b97ab4
MB
279 int vport_index,
280 u8 rep_type);
281void *mlx5_eswitch_get_uplink_priv(struct mlx5_eswitch *esw, u8 rep_type);
feae9087 282
f5f82476
OG
283int mlx5_eswitch_add_vlan_action(struct mlx5_eswitch *esw,
284 struct mlx5_esw_flow_attr *attr);
285int mlx5_eswitch_del_vlan_action(struct mlx5_eswitch *esw,
286 struct mlx5_esw_flow_attr *attr);
287int __mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
288 int vport, u16 vlan, u8 qos, u8 set_flags);
289
69697b6e
OG
290#define MLX5_DEBUG_ESWITCH_MASK BIT(3)
291
292#define esw_info(dev, format, ...) \
293 pr_info("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
294
295#define esw_warn(dev, format, ...) \
296 pr_warn("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
297
298#define esw_debug(dev, format, ...) \
299 mlx5_core_dbg_mask(dev, MLX5_DEBUG_ESWITCH_MASK, format, ##__VA_ARGS__)
e80541ec
SM
300#else /* CONFIG_MLX5_ESWITCH */
301/* eswitch API stubs */
302static inline int mlx5_eswitch_init(struct mlx5_core_dev *dev) { return 0; }
303static inline void mlx5_eswitch_cleanup(struct mlx5_eswitch *esw) {}
304static inline void mlx5_eswitch_vport_event(struct mlx5_eswitch *esw, struct mlx5_eqe *eqe) {}
305static inline int mlx5_eswitch_enable_sriov(struct mlx5_eswitch *esw, int nvfs, int mode) { return 0; }
306static inline void mlx5_eswitch_disable_sriov(struct mlx5_eswitch *esw) {}
307#endif /* CONFIG_MLX5_ESWITCH */
308
073bb189 309#endif /* __MLX5_ESWITCH_H__ */