net/mlx5: Introduce E-switch QoS management
[linux-2.6-block.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
SM
39#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
cb67b832
HHZ
50#define FDB_UPLINK_VPORT 0xffff
51
073bb189
SM
52/* 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
5742df0f
MHY
94struct 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;
dfcb1ed3
MHY
100 struct mlx5_flow_rule *allow_rule;
101 struct mlx5_flow_rule *drop_rule;
5742df0f
MHY
102};
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;
dfcb1ed3
MHY
108 struct mlx5_flow_rule *allowed_vlan;
109 struct mlx5_flow_rule *drop_rule;
5742df0f
MHY
110};
111
1ab2068a
MHY
112struct mlx5_vport_info {
113 u8 mac[ETH_ALEN];
114 u16 vlan;
115 u8 qos;
116 u64 node_guid;
117 int link_state;
1bd27b11 118 u32 max_rate;
1ab2068a
MHY
119 bool spoofchk;
120 bool trusted;
121};
122
073bb189
SM
123struct mlx5_vport {
124 struct mlx5_core_dev *dev;
125 int vport;
126 struct hlist_head uc_list[MLX5_L2_ADDR_HASH_SIZE];
81848731 127 struct hlist_head mc_list[MLX5_L2_ADDR_HASH_SIZE];
a35f71f2
MHY
128 struct mlx5_flow_rule *promisc_rule;
129 struct mlx5_flow_rule *allmulti_rule;
073bb189
SM
130 struct work_struct vport_change_handler;
131
5742df0f
MHY
132 struct vport_ingress ingress;
133 struct vport_egress egress;
134
1ab2068a
MHY
135 struct mlx5_vport_info info;
136
1bd27b11
MHY
137 struct {
138 bool enabled;
139 u32 esw_tsar_ix;
140 } qos;
141
073bb189 142 bool enabled;
81848731 143 u16 enabled_events;
073bb189
SM
144};
145
146struct mlx5_l2_table {
147 struct hlist_head l2_hash[MLX5_L2_ADDR_HASH_SIZE];
148 u32 size;
149 unsigned long *bitmap;
150};
151
81848731
SM
152struct mlx5_eswitch_fdb {
153 void *fdb;
6ab36e35
OG
154 union {
155 struct legacy_fdb {
156 struct mlx5_flow_group *addr_grp;
157 struct mlx5_flow_group *allmulti_grp;
158 struct mlx5_flow_group *promisc_grp;
159 } legacy;
69697b6e
OG
160
161 struct offloads_fdb {
1033665e 162 struct mlx5_flow_table *fdb;
69697b6e
OG
163 struct mlx5_flow_group *send_to_vport_grp;
164 struct mlx5_flow_group *miss_grp;
3aa33572 165 struct mlx5_flow_rule *miss_rule;
f5f82476 166 int vlan_push_pop_refcount;
69697b6e 167 } offloads;
6ab36e35
OG
168 };
169};
170
171enum {
172 SRIOV_NONE,
173 SRIOV_LEGACY,
174 SRIOV_OFFLOADS
81848731
SM
175};
176
cb67b832
HHZ
177struct mlx5_esw_sq {
178 struct mlx5_flow_rule *send_to_vport_rule;
179 struct list_head list;
180};
127ea380
HHZ
181
182struct mlx5_eswitch_rep {
cb67b832
HHZ
183 int (*load)(struct mlx5_eswitch *esw,
184 struct mlx5_eswitch_rep *rep);
185 void (*unload)(struct mlx5_eswitch *esw,
186 struct mlx5_eswitch_rep *rep);
127ea380 187 u16 vport;
bac9b6aa 188 u8 hw_id[ETH_ALEN];
127ea380 189 void *priv_data;
bac9b6aa
OG
190
191 struct mlx5_flow_rule *vport_rx_rule;
cb67b832 192 struct list_head vport_sqs_list;
f5f82476
OG
193 u16 vlan;
194 u32 vlan_refcount;
127ea380
HHZ
195 bool valid;
196};
197
c116c6ee
OG
198struct mlx5_esw_offload {
199 struct mlx5_flow_table *ft_offloads;
fed9ce22 200 struct mlx5_flow_group *vport_rx_group;
127ea380 201 struct mlx5_eswitch_rep *vport_reps;
c116c6ee
OG
202};
203
073bb189
SM
204struct mlx5_eswitch {
205 struct mlx5_core_dev *dev;
206 struct mlx5_l2_table l2_table;
81848731
SM
207 struct mlx5_eswitch_fdb fdb_table;
208 struct hlist_head mc_table[MLX5_L2_ADDR_HASH_SIZE];
073bb189
SM
209 struct workqueue_struct *work_queue;
210 struct mlx5_vport *vports;
211 int total_vports;
81848731 212 int enabled_vports;
dfcb1ed3
MHY
213 /* Synchronize between vport change events
214 * and async SRIOV admin state changes
215 */
216 struct mutex state_lock;
a35f71f2 217 struct esw_mc_addr *mc_promisc;
1bd27b11
MHY
218
219 struct {
220 bool enabled;
221 u32 root_tsar_id;
222 } qos;
223
c116c6ee 224 struct mlx5_esw_offload offloads;
6ab36e35 225 int mode;
073bb189
SM
226};
227
766a0e97
BX
228void esw_offloads_cleanup(struct mlx5_eswitch *esw, int nvports);
229int esw_offloads_init(struct mlx5_eswitch *esw, int nvports);
230
073bb189
SM
231/* E-Switch API */
232int mlx5_eswitch_init(struct mlx5_core_dev *dev);
233void mlx5_eswitch_cleanup(struct mlx5_eswitch *esw);
62a9b90a
MHY
234void mlx5_eswitch_attach(struct mlx5_eswitch *esw);
235void mlx5_eswitch_detach(struct mlx5_eswitch *esw);
073bb189 236void mlx5_eswitch_vport_event(struct mlx5_eswitch *esw, struct mlx5_eqe *eqe);
6ab36e35 237int mlx5_eswitch_enable_sriov(struct mlx5_eswitch *esw, int nvfs, int mode);
81848731 238void mlx5_eswitch_disable_sriov(struct mlx5_eswitch *esw);
77256579
SM
239int mlx5_eswitch_set_vport_mac(struct mlx5_eswitch *esw,
240 int vport, u8 mac[ETH_ALEN]);
241int mlx5_eswitch_set_vport_state(struct mlx5_eswitch *esw,
242 int vport, int link_state);
9e7ea352
SM
243int mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
244 int vport, u16 vlan, u8 qos);
f942380c
MHY
245int mlx5_eswitch_set_vport_spoofchk(struct mlx5_eswitch *esw,
246 int vport, bool spoofchk);
1edc57e2
MHY
247int mlx5_eswitch_set_vport_trust(struct mlx5_eswitch *esw,
248 int vport_num, bool setting);
77256579
SM
249int mlx5_eswitch_get_vport_config(struct mlx5_eswitch *esw,
250 int vport, struct ifla_vf_info *ivi);
3b751a2a
SM
251int mlx5_eswitch_get_vport_stats(struct mlx5_eswitch *esw,
252 int vport,
253 struct ifla_vf_stats *vf_stats);
073bb189 254
3d80d1a2 255struct mlx5_flow_spec;
776b12b6 256struct mlx5_esw_flow_attr;
3d80d1a2
OG
257
258struct mlx5_flow_rule *
259mlx5_eswitch_add_offloaded_rule(struct mlx5_eswitch *esw,
260 struct mlx5_flow_spec *spec,
776b12b6 261 struct mlx5_esw_flow_attr *attr);
fed9ce22
OG
262struct mlx5_flow_rule *
263mlx5_eswitch_create_vport_rx_rule(struct mlx5_eswitch *esw, int vport, u32 tirn);
264
e33dfe31
OG
265enum {
266 SET_VLAN_STRIP = BIT(0),
267 SET_VLAN_INSERT = BIT(1)
268};
269
f5f82476
OG
270#define MLX5_FLOW_CONTEXT_ACTION_VLAN_POP 0x40
271#define MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH 0x80
272
776b12b6
OG
273struct mlx5_esw_flow_attr {
274 struct mlx5_eswitch_rep *in_rep;
275 struct mlx5_eswitch_rep *out_rep;
276
277 int action;
f5f82476
OG
278 u16 vlan;
279 bool vlan_handled;
776b12b6
OG
280};
281
cb67b832
HHZ
282int mlx5_eswitch_sqs2vport_start(struct mlx5_eswitch *esw,
283 struct mlx5_eswitch_rep *rep,
284 u16 *sqns_array, int sqns_num);
285void mlx5_eswitch_sqs2vport_stop(struct mlx5_eswitch *esw,
286 struct mlx5_eswitch_rep *rep);
287
feae9087
OG
288int mlx5_devlink_eswitch_mode_set(struct devlink *devlink, u16 mode);
289int mlx5_devlink_eswitch_mode_get(struct devlink *devlink, u16 *mode);
127ea380 290void mlx5_eswitch_register_vport_rep(struct mlx5_eswitch *esw,
9deb2241 291 int vport_index,
127ea380
HHZ
292 struct mlx5_eswitch_rep *rep);
293void mlx5_eswitch_unregister_vport_rep(struct mlx5_eswitch *esw,
9deb2241 294 int vport_index);
feae9087 295
f5f82476
OG
296int mlx5_eswitch_add_vlan_action(struct mlx5_eswitch *esw,
297 struct mlx5_esw_flow_attr *attr);
298int mlx5_eswitch_del_vlan_action(struct mlx5_eswitch *esw,
299 struct mlx5_esw_flow_attr *attr);
300int __mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
301 int vport, u16 vlan, u8 qos, u8 set_flags);
302
69697b6e
OG
303#define MLX5_DEBUG_ESWITCH_MASK BIT(3)
304
305#define esw_info(dev, format, ...) \
306 pr_info("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
307
308#define esw_warn(dev, format, ...) \
309 pr_warn("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
310
311#define esw_debug(dev, format, ...) \
312 mlx5_core_dbg_mask(dev, MLX5_DEBUG_ESWITCH_MASK, format, ##__VA_ARGS__)
073bb189 313#endif /* __MLX5_ESWITCH_H__ */