blob: 2e2938e08cdae9838efc7d0f2f48f926e7c21575 [file] [log] [blame]
Saeed Mahameed073bb182015-12-01 18:03:18 +02001/*
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
Saeed Mahameed77256572015-12-01 18:03:21 +020036#include <linux/if_ether.h>
37#include <linux/if_link.h>
Or Gerlitzfeae9082016-07-01 14:51:02 +030038#include <net/devlink.h>
Saeed Mahameed073bb182015-12-01 18:03:18 +020039#include <linux/mlx5/device.h>
40
41#define MLX5_MAX_UC_PER_VPORT(dev) \
42 (1 << MLX5_CAP_GEN(dev, log_max_current_uc_list))
43
44#define MLX5_MAX_MC_PER_VPORT(dev) \
45 (1 << MLX5_CAP_GEN(dev, log_max_current_mc_list))
46
47#define MLX5_L2_ADDR_HASH_SIZE (BIT(BITS_PER_BYTE))
48#define MLX5_L2_ADDR_HASH(addr) (addr[5])
49
Hadar Hen Zioncb67b832016-07-01 14:51:09 +030050#define FDB_UPLINK_VPORT 0xffff
51
Saeed Mahameed073bb182015-12-01 18:03:18 +020052/* L2 -mac address based- hash helpers */
53struct l2addr_node {
54 struct hlist_node hlist;
55 u8 addr[ETH_ALEN];
56};
57
58#define for_each_l2hash_node(hn, tmp, hash, i) \
59 for (i = 0; i < MLX5_L2_ADDR_HASH_SIZE; i++) \
60 hlist_for_each_entry_safe(hn, tmp, &hash[i], hlist)
61
62#define l2addr_hash_find(hash, mac, type) ({ \
63 int ix = MLX5_L2_ADDR_HASH(mac); \
64 bool found = false; \
65 type *ptr = NULL; \
66 \
67 hlist_for_each_entry(ptr, &hash[ix], node.hlist) \
68 if (ether_addr_equal(ptr->node.addr, mac)) {\
69 found = true; \
70 break; \
71 } \
72 if (!found) \
73 ptr = NULL; \
74 ptr; \
75})
76
77#define l2addr_hash_add(hash, mac, type, gfp) ({ \
78 int ix = MLX5_L2_ADDR_HASH(mac); \
79 type *ptr = NULL; \
80 \
81 ptr = kzalloc(sizeof(type), gfp); \
82 if (ptr) { \
83 ether_addr_copy(ptr->node.addr, mac); \
84 hlist_add_head(&ptr->node.hlist, &hash[ix]);\
85 } \
86 ptr; \
87})
88
89#define l2addr_hash_del(ptr) ({ \
90 hlist_del(&ptr->node.hlist); \
91 kfree(ptr); \
92})
93
Mohamad Haj Yahia5742df02016-05-03 17:13:57 +030094struct vport_ingress {
95 struct mlx5_flow_table *acl;
96 struct mlx5_flow_group *allow_untagged_spoofchk_grp;
97 struct mlx5_flow_group *allow_spoofchk_only_grp;
98 struct mlx5_flow_group *allow_untagged_only_grp;
99 struct mlx5_flow_group *drop_grp;
Mohamad Haj Yahiadfcb1ed2016-05-03 17:13:58 +0300100 struct mlx5_flow_rule *allow_rule;
101 struct mlx5_flow_rule *drop_rule;
Mohamad Haj Yahia5742df02016-05-03 17:13:57 +0300102};
103
104struct vport_egress {
105 struct mlx5_flow_table *acl;
106 struct mlx5_flow_group *allowed_vlans_grp;
107 struct mlx5_flow_group *drop_grp;
Mohamad Haj Yahiadfcb1ed2016-05-03 17:13:58 +0300108 struct mlx5_flow_rule *allowed_vlan;
109 struct mlx5_flow_rule *drop_rule;
Mohamad Haj Yahia5742df02016-05-03 17:13:57 +0300110};
111
Mohamad Haj Yahia1ab20682016-09-09 17:35:24 +0300112struct mlx5_vport_info {
113 u8 mac[ETH_ALEN];
114 u16 vlan;
115 u8 qos;
116 u64 node_guid;
117 int link_state;
118 bool spoofchk;
119 bool trusted;
120};
121
Saeed Mahameed073bb182015-12-01 18:03:18 +0200122struct mlx5_vport {
123 struct mlx5_core_dev *dev;
124 int vport;
125 struct hlist_head uc_list[MLX5_L2_ADDR_HASH_SIZE];
Saeed Mahameed81848732015-12-01 18:03:20 +0200126 struct hlist_head mc_list[MLX5_L2_ADDR_HASH_SIZE];
Mohamad Haj Yahiaa35f71f2016-05-03 17:14:03 +0300127 struct mlx5_flow_rule *promisc_rule;
128 struct mlx5_flow_rule *allmulti_rule;
Saeed Mahameed073bb182015-12-01 18:03:18 +0200129 struct work_struct vport_change_handler;
130
Mohamad Haj Yahia5742df02016-05-03 17:13:57 +0300131 struct vport_ingress ingress;
132 struct vport_egress egress;
133
Mohamad Haj Yahia1ab20682016-09-09 17:35:24 +0300134 struct mlx5_vport_info info;
135
Saeed Mahameed073bb182015-12-01 18:03:18 +0200136 bool enabled;
Saeed Mahameed81848732015-12-01 18:03:20 +0200137 u16 enabled_events;
Saeed Mahameed073bb182015-12-01 18:03:18 +0200138};
139
140struct mlx5_l2_table {
141 struct hlist_head l2_hash[MLX5_L2_ADDR_HASH_SIZE];
142 u32 size;
143 unsigned long *bitmap;
144};
145
Saeed Mahameed81848732015-12-01 18:03:20 +0200146struct mlx5_eswitch_fdb {
147 void *fdb;
Or Gerlitz6ab36e32016-07-01 14:50:54 +0300148 union {
149 struct legacy_fdb {
150 struct mlx5_flow_group *addr_grp;
151 struct mlx5_flow_group *allmulti_grp;
152 struct mlx5_flow_group *promisc_grp;
153 } legacy;
Or Gerlitz69697b62016-07-01 14:50:55 +0300154
155 struct offloads_fdb {
Or Gerlitz10336652016-07-14 10:32:40 +0300156 struct mlx5_flow_table *fdb;
Or Gerlitz69697b62016-07-01 14:50:55 +0300157 struct mlx5_flow_group *send_to_vport_grp;
158 struct mlx5_flow_group *miss_grp;
Or Gerlitz3aa33572016-07-01 14:50:56 +0300159 struct mlx5_flow_rule *miss_rule;
Or Gerlitzf5f82472016-09-22 20:01:47 +0300160 int vlan_push_pop_refcount;
Or Gerlitz69697b62016-07-01 14:50:55 +0300161 } offloads;
Or Gerlitz6ab36e32016-07-01 14:50:54 +0300162 };
163};
164
165enum {
166 SRIOV_NONE,
167 SRIOV_LEGACY,
168 SRIOV_OFFLOADS
Saeed Mahameed81848732015-12-01 18:03:20 +0200169};
170
Hadar Hen Zioncb67b832016-07-01 14:51:09 +0300171struct mlx5_esw_sq {
172 struct mlx5_flow_rule *send_to_vport_rule;
173 struct list_head list;
174};
Hadar Hen Zion127ea382016-07-01 14:51:08 +0300175
176struct mlx5_eswitch_rep {
Hadar Hen Zioncb67b832016-07-01 14:51:09 +0300177 int (*load)(struct mlx5_eswitch *esw,
178 struct mlx5_eswitch_rep *rep);
179 void (*unload)(struct mlx5_eswitch *esw,
180 struct mlx5_eswitch_rep *rep);
Hadar Hen Zion127ea382016-07-01 14:51:08 +0300181 u16 vport;
Or Gerlitzbac9b6a2016-09-22 20:01:43 +0300182 u8 hw_id[ETH_ALEN];
Hadar Hen Zion127ea382016-07-01 14:51:08 +0300183 void *priv_data;
Or Gerlitzbac9b6a2016-09-22 20:01:43 +0300184
185 struct mlx5_flow_rule *vport_rx_rule;
Hadar Hen Zioncb67b832016-07-01 14:51:09 +0300186 struct list_head vport_sqs_list;
Or Gerlitzf5f82472016-09-22 20:01:47 +0300187 u16 vlan;
188 u32 vlan_refcount;
Hadar Hen Zion127ea382016-07-01 14:51:08 +0300189 bool valid;
190};
191
Or Gerlitzc116c6e2016-07-01 14:50:59 +0300192struct mlx5_esw_offload {
193 struct mlx5_flow_table *ft_offloads;
Or Gerlitzfed9ce22016-07-01 14:51:00 +0300194 struct mlx5_flow_group *vport_rx_group;
Hadar Hen Zion127ea382016-07-01 14:51:08 +0300195 struct mlx5_eswitch_rep *vport_reps;
Or Gerlitzc116c6e2016-07-01 14:50:59 +0300196};
197
Saeed Mahameed073bb182015-12-01 18:03:18 +0200198struct mlx5_eswitch {
199 struct mlx5_core_dev *dev;
200 struct mlx5_l2_table l2_table;
Saeed Mahameed81848732015-12-01 18:03:20 +0200201 struct mlx5_eswitch_fdb fdb_table;
202 struct hlist_head mc_table[MLX5_L2_ADDR_HASH_SIZE];
Saeed Mahameed073bb182015-12-01 18:03:18 +0200203 struct workqueue_struct *work_queue;
204 struct mlx5_vport *vports;
205 int total_vports;
Saeed Mahameed81848732015-12-01 18:03:20 +0200206 int enabled_vports;
Mohamad Haj Yahiadfcb1ed2016-05-03 17:13:58 +0300207 /* Synchronize between vport change events
208 * and async SRIOV admin state changes
209 */
210 struct mutex state_lock;
Mohamad Haj Yahiaa35f71f2016-05-03 17:14:03 +0300211 struct esw_mc_addr *mc_promisc;
Or Gerlitzc116c6e2016-07-01 14:50:59 +0300212 struct mlx5_esw_offload offloads;
Or Gerlitz6ab36e32016-07-01 14:50:54 +0300213 int mode;
Saeed Mahameed073bb182015-12-01 18:03:18 +0200214};
215
Baoyou Xie766a0e92016-09-18 16:44:22 +0800216void esw_offloads_cleanup(struct mlx5_eswitch *esw, int nvports);
217int esw_offloads_init(struct mlx5_eswitch *esw, int nvports);
218
Saeed Mahameed073bb182015-12-01 18:03:18 +0200219/* E-Switch API */
220int mlx5_eswitch_init(struct mlx5_core_dev *dev);
221void mlx5_eswitch_cleanup(struct mlx5_eswitch *esw);
Mohamad Haj Yahia62a9b902016-09-09 17:35:22 +0300222void mlx5_eswitch_attach(struct mlx5_eswitch *esw);
223void mlx5_eswitch_detach(struct mlx5_eswitch *esw);
Saeed Mahameed073bb182015-12-01 18:03:18 +0200224void mlx5_eswitch_vport_event(struct mlx5_eswitch *esw, struct mlx5_eqe *eqe);
Or Gerlitz6ab36e32016-07-01 14:50:54 +0300225int mlx5_eswitch_enable_sriov(struct mlx5_eswitch *esw, int nvfs, int mode);
Saeed Mahameed81848732015-12-01 18:03:20 +0200226void mlx5_eswitch_disable_sriov(struct mlx5_eswitch *esw);
Saeed Mahameed77256572015-12-01 18:03:21 +0200227int mlx5_eswitch_set_vport_mac(struct mlx5_eswitch *esw,
228 int vport, u8 mac[ETH_ALEN]);
229int mlx5_eswitch_set_vport_state(struct mlx5_eswitch *esw,
230 int vport, int link_state);
Saeed Mahameed9e7ea352015-12-01 18:03:23 +0200231int mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
232 int vport, u16 vlan, u8 qos);
Mohamad Haj Yahiaf9423802016-05-03 17:13:59 +0300233int mlx5_eswitch_set_vport_spoofchk(struct mlx5_eswitch *esw,
234 int vport, bool spoofchk);
Mohamad Haj Yahia1edc57e2016-05-03 17:14:04 +0300235int mlx5_eswitch_set_vport_trust(struct mlx5_eswitch *esw,
236 int vport_num, bool setting);
Saeed Mahameed77256572015-12-01 18:03:21 +0200237int mlx5_eswitch_get_vport_config(struct mlx5_eswitch *esw,
238 int vport, struct ifla_vf_info *ivi);
Saeed Mahameed3b751a2a2015-12-01 18:03:24 +0200239int mlx5_eswitch_get_vport_stats(struct mlx5_eswitch *esw,
240 int vport,
241 struct ifla_vf_stats *vf_stats);
Saeed Mahameed073bb182015-12-01 18:03:18 +0200242
Or Gerlitz3d80d1a2016-07-14 10:32:41 +0300243struct mlx5_flow_spec;
Or Gerlitz776b12b2016-09-22 20:01:45 +0300244struct mlx5_esw_flow_attr;
Or Gerlitz3d80d1a2016-07-14 10:32:41 +0300245
246struct mlx5_flow_rule *
247mlx5_eswitch_add_offloaded_rule(struct mlx5_eswitch *esw,
248 struct mlx5_flow_spec *spec,
Or Gerlitz776b12b2016-09-22 20:01:45 +0300249 struct mlx5_esw_flow_attr *attr);
Or Gerlitzfed9ce22016-07-01 14:51:00 +0300250struct mlx5_flow_rule *
251mlx5_eswitch_create_vport_rx_rule(struct mlx5_eswitch *esw, int vport, u32 tirn);
252
Or Gerlitze33dfe32016-09-22 20:01:44 +0300253enum {
254 SET_VLAN_STRIP = BIT(0),
255 SET_VLAN_INSERT = BIT(1)
256};
257
Or Gerlitzf5f82472016-09-22 20:01:47 +0300258#define MLX5_FLOW_CONTEXT_ACTION_VLAN_POP 0x40
259#define MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH 0x80
260
Or Gerlitz776b12b2016-09-22 20:01:45 +0300261struct mlx5_esw_flow_attr {
262 struct mlx5_eswitch_rep *in_rep;
263 struct mlx5_eswitch_rep *out_rep;
264
265 int action;
Or Gerlitzf5f82472016-09-22 20:01:47 +0300266 u16 vlan;
267 bool vlan_handled;
Or Gerlitz776b12b2016-09-22 20:01:45 +0300268};
269
Hadar Hen Zioncb67b832016-07-01 14:51:09 +0300270int mlx5_eswitch_sqs2vport_start(struct mlx5_eswitch *esw,
271 struct mlx5_eswitch_rep *rep,
272 u16 *sqns_array, int sqns_num);
273void mlx5_eswitch_sqs2vport_stop(struct mlx5_eswitch *esw,
274 struct mlx5_eswitch_rep *rep);
275
Or Gerlitzfeae9082016-07-01 14:51:02 +0300276int mlx5_devlink_eswitch_mode_set(struct devlink *devlink, u16 mode);
277int mlx5_devlink_eswitch_mode_get(struct devlink *devlink, u16 *mode);
Hadar Hen Zion127ea382016-07-01 14:51:08 +0300278void mlx5_eswitch_register_vport_rep(struct mlx5_eswitch *esw,
Or Gerlitz9deb2242016-09-22 20:01:42 +0300279 int vport_index,
Hadar Hen Zion127ea382016-07-01 14:51:08 +0300280 struct mlx5_eswitch_rep *rep);
281void mlx5_eswitch_unregister_vport_rep(struct mlx5_eswitch *esw,
Or Gerlitz9deb2242016-09-22 20:01:42 +0300282 int vport_index);
Or Gerlitzfeae9082016-07-01 14:51:02 +0300283
Or Gerlitzf5f82472016-09-22 20:01:47 +0300284int mlx5_eswitch_add_vlan_action(struct mlx5_eswitch *esw,
285 struct mlx5_esw_flow_attr *attr);
286int mlx5_eswitch_del_vlan_action(struct mlx5_eswitch *esw,
287 struct mlx5_esw_flow_attr *attr);
288int __mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
289 int vport, u16 vlan, u8 qos, u8 set_flags);
290
Or Gerlitz69697b62016-07-01 14:50:55 +0300291#define MLX5_DEBUG_ESWITCH_MASK BIT(3)
292
293#define esw_info(dev, format, ...) \
294 pr_info("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
295
296#define esw_warn(dev, format, ...) \
297 pr_warn("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
298
299#define esw_debug(dev, format, ...) \
300 mlx5_core_dbg_mask(dev, MLX5_DEBUG_ESWITCH_MASK, format, ##__VA_ARGS__)
Saeed Mahameed073bb182015-12-01 18:03:18 +0200301#endif /* __MLX5_ESWITCH_H__ */