]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
net/mlx5e: Add offloading of NIC TC pedit (header re-write) actions
[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>
76f7444d 39#include <net/ip_tunnels.h>
073bb189
SM
40#include <linux/mlx5/device.h>
41
42#define MLX5_MAX_UC_PER_VPORT(dev) \
43 (1 << MLX5_CAP_GEN(dev, log_max_current_uc_list))
44
45#define MLX5_MAX_MC_PER_VPORT(dev) \
46 (1 << MLX5_CAP_GEN(dev, log_max_current_mc_list))
47
48#define MLX5_L2_ADDR_HASH_SIZE (BIT(BITS_PER_BYTE))
49#define MLX5_L2_ADDR_HASH(addr) (addr[5])
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
073bb189
SM
58/* L2 -mac address based- hash helpers */
59struct l2addr_node {
60 struct hlist_node hlist;
61 u8 addr[ETH_ALEN];
62};
63
64#define for_each_l2hash_node(hn, tmp, hash, i) \
65 for (i = 0; i < MLX5_L2_ADDR_HASH_SIZE; i++) \
66 hlist_for_each_entry_safe(hn, tmp, &hash[i], hlist)
67
68#define l2addr_hash_find(hash, mac, type) ({ \
69 int ix = MLX5_L2_ADDR_HASH(mac); \
70 bool found = false; \
71 type *ptr = NULL; \
72 \
73 hlist_for_each_entry(ptr, &hash[ix], node.hlist) \
74 if (ether_addr_equal(ptr->node.addr, mac)) {\
75 found = true; \
76 break; \
77 } \
78 if (!found) \
79 ptr = NULL; \
80 ptr; \
81})
82
83#define l2addr_hash_add(hash, mac, type, gfp) ({ \
84 int ix = MLX5_L2_ADDR_HASH(mac); \
85 type *ptr = NULL; \
86 \
87 ptr = kzalloc(sizeof(type), gfp); \
88 if (ptr) { \
89 ether_addr_copy(ptr->node.addr, mac); \
90 hlist_add_head(&ptr->node.hlist, &hash[ix]);\
91 } \
92 ptr; \
93})
94
95#define l2addr_hash_del(ptr) ({ \
96 hlist_del(&ptr->node.hlist); \
97 kfree(ptr); \
98})
99
5742df0f
MHY
100struct vport_ingress {
101 struct mlx5_flow_table *acl;
102 struct mlx5_flow_group *allow_untagged_spoofchk_grp;
103 struct mlx5_flow_group *allow_spoofchk_only_grp;
104 struct mlx5_flow_group *allow_untagged_only_grp;
105 struct mlx5_flow_group *drop_grp;
74491de9
MB
106 struct mlx5_flow_handle *allow_rule;
107 struct mlx5_flow_handle *drop_rule;
5742df0f
MHY
108};
109
110struct vport_egress {
111 struct mlx5_flow_table *acl;
112 struct mlx5_flow_group *allowed_vlans_grp;
113 struct mlx5_flow_group *drop_grp;
74491de9
MB
114 struct mlx5_flow_handle *allowed_vlan;
115 struct mlx5_flow_handle *drop_rule;
5742df0f
MHY
116};
117
1ab2068a
MHY
118struct mlx5_vport_info {
119 u8 mac[ETH_ALEN];
120 u16 vlan;
121 u8 qos;
122 u64 node_guid;
123 int link_state;
c9497c98 124 u32 min_rate;
1bd27b11 125 u32 max_rate;
1ab2068a
MHY
126 bool spoofchk;
127 bool trusted;
128};
129
073bb189
SM
130struct mlx5_vport {
131 struct mlx5_core_dev *dev;
132 int vport;
133 struct hlist_head uc_list[MLX5_L2_ADDR_HASH_SIZE];
81848731 134 struct hlist_head mc_list[MLX5_L2_ADDR_HASH_SIZE];
74491de9
MB
135 struct mlx5_flow_handle *promisc_rule;
136 struct mlx5_flow_handle *allmulti_rule;
073bb189
SM
137 struct work_struct vport_change_handler;
138
5742df0f
MHY
139 struct vport_ingress ingress;
140 struct vport_egress egress;
141
1ab2068a
MHY
142 struct mlx5_vport_info info;
143
1bd27b11
MHY
144 struct {
145 bool enabled;
146 u32 esw_tsar_ix;
c9497c98 147 u32 bw_share;
1bd27b11
MHY
148 } qos;
149
073bb189 150 bool enabled;
81848731 151 u16 enabled_events;
073bb189
SM
152};
153
154struct mlx5_l2_table {
155 struct hlist_head l2_hash[MLX5_L2_ADDR_HASH_SIZE];
156 u32 size;
157 unsigned long *bitmap;
158};
159
81848731
SM
160struct mlx5_eswitch_fdb {
161 void *fdb;
6ab36e35
OG
162 union {
163 struct legacy_fdb {
164 struct mlx5_flow_group *addr_grp;
165 struct mlx5_flow_group *allmulti_grp;
166 struct mlx5_flow_group *promisc_grp;
167 } legacy;
69697b6e
OG
168
169 struct offloads_fdb {
1033665e 170 struct mlx5_flow_table *fdb;
69697b6e
OG
171 struct mlx5_flow_group *send_to_vport_grp;
172 struct mlx5_flow_group *miss_grp;
74491de9 173 struct mlx5_flow_handle *miss_rule;
f5f82476 174 int vlan_push_pop_refcount;
69697b6e 175 } offloads;
6ab36e35
OG
176 };
177};
178
179enum {
180 SRIOV_NONE,
181 SRIOV_LEGACY,
182 SRIOV_OFFLOADS
81848731
SM
183};
184
cb67b832 185struct mlx5_esw_sq {
74491de9 186 struct mlx5_flow_handle *send_to_vport_rule;
cb67b832
HHZ
187 struct list_head list;
188};
127ea380
HHZ
189
190struct mlx5_eswitch_rep {
cb67b832
HHZ
191 int (*load)(struct mlx5_eswitch *esw,
192 struct mlx5_eswitch_rep *rep);
193 void (*unload)(struct mlx5_eswitch *esw,
194 struct mlx5_eswitch_rep *rep);
127ea380 195 u16 vport;
bac9b6aa 196 u8 hw_id[ETH_ALEN];
726293f1 197 struct net_device *netdev;
bac9b6aa 198
74491de9 199 struct mlx5_flow_handle *vport_rx_rule;
cb67b832 200 struct list_head vport_sqs_list;
f5f82476
OG
201 u16 vlan;
202 u32 vlan_refcount;
127ea380
HHZ
203 bool valid;
204};
205
c116c6ee
OG
206struct mlx5_esw_offload {
207 struct mlx5_flow_table *ft_offloads;
fed9ce22 208 struct mlx5_flow_group *vport_rx_group;
127ea380 209 struct mlx5_eswitch_rep *vport_reps;
a54e20b4 210 DECLARE_HASHTABLE(encap_tbl, 8);
bffaa916 211 u8 inline_mode;
375f51e2 212 u64 num_flows;
c116c6ee
OG
213};
214
073bb189
SM
215struct mlx5_eswitch {
216 struct mlx5_core_dev *dev;
217 struct mlx5_l2_table l2_table;
81848731
SM
218 struct mlx5_eswitch_fdb fdb_table;
219 struct hlist_head mc_table[MLX5_L2_ADDR_HASH_SIZE];
073bb189
SM
220 struct workqueue_struct *work_queue;
221 struct mlx5_vport *vports;
222 int total_vports;
81848731 223 int enabled_vports;
dfcb1ed3
MHY
224 /* Synchronize between vport change events
225 * and async SRIOV admin state changes
226 */
227 struct mutex state_lock;
a35f71f2 228 struct esw_mc_addr *mc_promisc;
1bd27b11
MHY
229
230 struct {
231 bool enabled;
232 u32 root_tsar_id;
233 } qos;
234
c116c6ee 235 struct mlx5_esw_offload offloads;
6ab36e35 236 int mode;
073bb189
SM
237};
238
766a0e97
BX
239void esw_offloads_cleanup(struct mlx5_eswitch *esw, int nvports);
240int esw_offloads_init(struct mlx5_eswitch *esw, int nvports);
241
073bb189
SM
242/* E-Switch API */
243int mlx5_eswitch_init(struct mlx5_core_dev *dev);
244void mlx5_eswitch_cleanup(struct mlx5_eswitch *esw);
62a9b90a
MHY
245void mlx5_eswitch_attach(struct mlx5_eswitch *esw);
246void mlx5_eswitch_detach(struct mlx5_eswitch *esw);
073bb189 247void mlx5_eswitch_vport_event(struct mlx5_eswitch *esw, struct mlx5_eqe *eqe);
6ab36e35 248int mlx5_eswitch_enable_sriov(struct mlx5_eswitch *esw, int nvfs, int mode);
81848731 249void mlx5_eswitch_disable_sriov(struct mlx5_eswitch *esw);
77256579
SM
250int mlx5_eswitch_set_vport_mac(struct mlx5_eswitch *esw,
251 int vport, u8 mac[ETH_ALEN]);
252int mlx5_eswitch_set_vport_state(struct mlx5_eswitch *esw,
253 int vport, int link_state);
9e7ea352
SM
254int mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
255 int vport, u16 vlan, u8 qos);
f942380c
MHY
256int mlx5_eswitch_set_vport_spoofchk(struct mlx5_eswitch *esw,
257 int vport, bool spoofchk);
1edc57e2
MHY
258int mlx5_eswitch_set_vport_trust(struct mlx5_eswitch *esw,
259 int vport_num, bool setting);
c9497c98
MHY
260int mlx5_eswitch_set_vport_rate(struct mlx5_eswitch *esw, int vport,
261 u32 max_rate, u32 min_rate);
77256579
SM
262int mlx5_eswitch_get_vport_config(struct mlx5_eswitch *esw,
263 int vport, struct ifla_vf_info *ivi);
3b751a2a
SM
264int mlx5_eswitch_get_vport_stats(struct mlx5_eswitch *esw,
265 int vport,
266 struct ifla_vf_stats *vf_stats);
073bb189 267
3d80d1a2 268struct mlx5_flow_spec;
776b12b6 269struct mlx5_esw_flow_attr;
3d80d1a2 270
74491de9 271struct mlx5_flow_handle *
3d80d1a2
OG
272mlx5_eswitch_add_offloaded_rule(struct mlx5_eswitch *esw,
273 struct mlx5_flow_spec *spec,
776b12b6 274 struct mlx5_esw_flow_attr *attr);
d85cdccb
OG
275void
276mlx5_eswitch_del_offloaded_rule(struct mlx5_eswitch *esw,
277 struct mlx5_flow_handle *rule,
278 struct mlx5_esw_flow_attr *attr);
279
74491de9 280struct mlx5_flow_handle *
fed9ce22
OG
281mlx5_eswitch_create_vport_rx_rule(struct mlx5_eswitch *esw, int vport, u32 tirn);
282
e33dfe31
OG
283enum {
284 SET_VLAN_STRIP = BIT(0),
285 SET_VLAN_INSERT = BIT(1)
286};
287
2a69cb9f
OG
288#define MLX5_FLOW_CONTEXT_ACTION_VLAN_POP 0x4000
289#define MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH 0x8000
f5f82476 290
a54e20b4
HHZ
291struct mlx5_encap_entry {
292 struct hlist_node encap_hlist;
293 struct list_head flows;
294 u32 encap_id;
295 struct neighbour *n;
76f7444d 296 struct ip_tunnel_info tun_info;
a54e20b4
HHZ
297 unsigned char h_dest[ETH_ALEN]; /* destination eth addr */
298
299 struct net_device *out_dev;
300 int tunnel_type;
301};
302
776b12b6
OG
303struct mlx5_esw_flow_attr {
304 struct mlx5_eswitch_rep *in_rep;
305 struct mlx5_eswitch_rep *out_rep;
306
307 int action;
f5f82476
OG
308 u16 vlan;
309 bool vlan_handled;
a54e20b4 310 struct mlx5_encap_entry *encap;
776b12b6
OG
311};
312
cb67b832
HHZ
313int mlx5_eswitch_sqs2vport_start(struct mlx5_eswitch *esw,
314 struct mlx5_eswitch_rep *rep,
315 u16 *sqns_array, int sqns_num);
316void mlx5_eswitch_sqs2vport_stop(struct mlx5_eswitch *esw,
317 struct mlx5_eswitch_rep *rep);
318
feae9087
OG
319int mlx5_devlink_eswitch_mode_set(struct devlink *devlink, u16 mode);
320int mlx5_devlink_eswitch_mode_get(struct devlink *devlink, u16 *mode);
bffaa916
RD
321int mlx5_devlink_eswitch_inline_mode_set(struct devlink *devlink, u8 mode);
322int mlx5_devlink_eswitch_inline_mode_get(struct devlink *devlink, u8 *mode);
323int mlx5_eswitch_inline_mode_get(struct mlx5_eswitch *esw, int nvfs, u8 *mode);
127ea380 324void mlx5_eswitch_register_vport_rep(struct mlx5_eswitch *esw,
9deb2241 325 int vport_index,
127ea380
HHZ
326 struct mlx5_eswitch_rep *rep);
327void mlx5_eswitch_unregister_vport_rep(struct mlx5_eswitch *esw,
9deb2241 328 int vport_index);
726293f1 329struct net_device *mlx5_eswitch_get_uplink_netdev(struct mlx5_eswitch *esw);
feae9087 330
f5f82476
OG
331int mlx5_eswitch_add_vlan_action(struct mlx5_eswitch *esw,
332 struct mlx5_esw_flow_attr *attr);
333int mlx5_eswitch_del_vlan_action(struct mlx5_eswitch *esw,
334 struct mlx5_esw_flow_attr *attr);
335int __mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
336 int vport, u16 vlan, u8 qos, u8 set_flags);
337
69697b6e
OG
338#define MLX5_DEBUG_ESWITCH_MASK BIT(3)
339
340#define esw_info(dev, format, ...) \
341 pr_info("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
342
343#define esw_warn(dev, format, ...) \
344 pr_warn("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
345
346#define esw_debug(dev, format, ...) \
347 mlx5_core_dbg_mask(dev, MLX5_DEBUG_ESWITCH_MASK, format, ##__VA_ARGS__)
073bb189 348#endif /* __MLX5_ESWITCH_H__ */