Merge branch 'libnvdimm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/nvdim...
[sfrench/cifs-2.6.git] / drivers / net / ethernet / mellanox / mlx5 / core / eswitch.h
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
36 #include <linux/if_ether.h>
37 #include <linux/if_link.h>
38 #include <net/devlink.h>
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
50 #define FDB_UPLINK_VPORT 0xffff
51
52 #define MLX5_MIN_BW_SHARE 1
53
54 #define MLX5_RATE_TO_BW_SHARE(rate, divider, limit) \
55         min_t(u32, max_t(u32, (rate) / (divider), MLX5_MIN_BW_SHARE), limit)
56
57 /* L2 -mac address based- hash helpers */
58 struct l2addr_node {
59         struct hlist_node hlist;
60         u8                addr[ETH_ALEN];
61 };
62
63 #define for_each_l2hash_node(hn, tmp, hash, i) \
64         for (i = 0; i < MLX5_L2_ADDR_HASH_SIZE; i++) \
65                 hlist_for_each_entry_safe(hn, tmp, &hash[i], hlist)
66
67 #define l2addr_hash_find(hash, mac, type) ({                \
68         int ix = MLX5_L2_ADDR_HASH(mac);                    \
69         bool found = false;                                 \
70         type *ptr = NULL;                                   \
71                                                             \
72         hlist_for_each_entry(ptr, &hash[ix], node.hlist)    \
73                 if (ether_addr_equal(ptr->node.addr, mac)) {\
74                         found = true;                       \
75                         break;                              \
76                 }                                           \
77         if (!found)                                         \
78                 ptr = NULL;                                 \
79         ptr;                                                \
80 })
81
82 #define l2addr_hash_add(hash, mac, type, gfp) ({            \
83         int ix = MLX5_L2_ADDR_HASH(mac);                    \
84         type *ptr = NULL;                                   \
85                                                             \
86         ptr = kzalloc(sizeof(type), gfp);                   \
87         if (ptr) {                                          \
88                 ether_addr_copy(ptr->node.addr, mac);       \
89                 hlist_add_head(&ptr->node.hlist, &hash[ix]);\
90         }                                                   \
91         ptr;                                                \
92 })
93
94 #define l2addr_hash_del(ptr) ({                             \
95         hlist_del(&ptr->node.hlist);                        \
96         kfree(ptr);                                         \
97 })
98
99 struct vport_ingress {
100         struct mlx5_flow_table *acl;
101         struct mlx5_flow_group *allow_untagged_spoofchk_grp;
102         struct mlx5_flow_group *allow_spoofchk_only_grp;
103         struct mlx5_flow_group *allow_untagged_only_grp;
104         struct mlx5_flow_group *drop_grp;
105         struct mlx5_flow_handle  *allow_rule;
106         struct mlx5_flow_handle  *drop_rule;
107 };
108
109 struct vport_egress {
110         struct mlx5_flow_table *acl;
111         struct mlx5_flow_group *allowed_vlans_grp;
112         struct mlx5_flow_group *drop_grp;
113         struct mlx5_flow_handle  *allowed_vlan;
114         struct mlx5_flow_handle  *drop_rule;
115 };
116
117 struct mlx5_vport_info {
118         u8                      mac[ETH_ALEN];
119         u16                     vlan;
120         u8                      qos;
121         u64                     node_guid;
122         int                     link_state;
123         u32                     min_rate;
124         u32                     max_rate;
125         bool                    spoofchk;
126         bool                    trusted;
127 };
128
129 struct mlx5_vport {
130         struct mlx5_core_dev    *dev;
131         int                     vport;
132         struct hlist_head       uc_list[MLX5_L2_ADDR_HASH_SIZE];
133         struct hlist_head       mc_list[MLX5_L2_ADDR_HASH_SIZE];
134         struct mlx5_flow_handle *promisc_rule;
135         struct mlx5_flow_handle *allmulti_rule;
136         struct work_struct      vport_change_handler;
137
138         struct vport_ingress    ingress;
139         struct vport_egress     egress;
140
141         struct mlx5_vport_info  info;
142
143         struct {
144                 bool            enabled;
145                 u32             esw_tsar_ix;
146                 u32             bw_share;
147         } qos;
148
149         bool                    enabled;
150         u16                     enabled_events;
151 };
152
153 struct mlx5_l2_table {
154         struct hlist_head l2_hash[MLX5_L2_ADDR_HASH_SIZE];
155         u32                  size;
156         unsigned long        *bitmap;
157 };
158
159 struct mlx5_eswitch_fdb {
160         void *fdb;
161         union {
162                 struct legacy_fdb {
163                         struct mlx5_flow_group *addr_grp;
164                         struct mlx5_flow_group *allmulti_grp;
165                         struct mlx5_flow_group *promisc_grp;
166                 } legacy;
167
168                 struct offloads_fdb {
169                         struct mlx5_flow_table *fdb;
170                         struct mlx5_flow_group *send_to_vport_grp;
171                         struct mlx5_flow_group *miss_grp;
172                         struct mlx5_flow_handle *miss_rule;
173                         int vlan_push_pop_refcount;
174                 } offloads;
175         };
176 };
177
178 enum {
179         SRIOV_NONE,
180         SRIOV_LEGACY,
181         SRIOV_OFFLOADS
182 };
183
184 struct mlx5_esw_sq {
185         struct mlx5_flow_handle *send_to_vport_rule;
186         struct list_head         list;
187 };
188
189 struct mlx5_eswitch_rep {
190         int                    (*load)(struct mlx5_eswitch *esw,
191                                        struct mlx5_eswitch_rep *rep);
192         void                   (*unload)(struct mlx5_eswitch *esw,
193                                          struct mlx5_eswitch_rep *rep);
194         u16                    vport;
195         u8                     hw_id[ETH_ALEN];
196         struct net_device      *netdev;
197
198         struct mlx5_flow_handle *vport_rx_rule;
199         struct list_head       vport_sqs_list;
200         u16                    vlan;
201         u32                    vlan_refcount;
202         bool                   valid;
203 };
204
205 struct mlx5_esw_offload {
206         struct mlx5_flow_table *ft_offloads;
207         struct mlx5_flow_group *vport_rx_group;
208         struct mlx5_eswitch_rep *vport_reps;
209         DECLARE_HASHTABLE(encap_tbl, 8);
210         u8 inline_mode;
211         u64 num_flows;
212         u8 encap;
213 };
214
215 /* E-Switch MC FDB table hash node */
216 struct esw_mc_addr { /* SRIOV only */
217         struct l2addr_node     node;
218         struct mlx5_flow_handle *uplink_rule; /* Forward to uplink rule */
219         u32                    refcnt;
220 };
221
222 struct mlx5_eswitch {
223         struct mlx5_core_dev    *dev;
224         struct mlx5_l2_table    l2_table;
225         struct mlx5_eswitch_fdb fdb_table;
226         struct hlist_head       mc_table[MLX5_L2_ADDR_HASH_SIZE];
227         struct workqueue_struct *work_queue;
228         struct mlx5_vport       *vports;
229         int                     total_vports;
230         int                     enabled_vports;
231         /* Synchronize between vport change events
232          * and async SRIOV admin state changes
233          */
234         struct mutex            state_lock;
235         struct esw_mc_addr      mc_promisc;
236
237         struct {
238                 bool            enabled;
239                 u32             root_tsar_id;
240         } qos;
241
242         struct mlx5_esw_offload offloads;
243         int                     mode;
244 };
245
246 void esw_offloads_cleanup(struct mlx5_eswitch *esw, int nvports);
247 int esw_offloads_init(struct mlx5_eswitch *esw, int nvports);
248
249 /* E-Switch API */
250 int mlx5_eswitch_init(struct mlx5_core_dev *dev);
251 void mlx5_eswitch_cleanup(struct mlx5_eswitch *esw);
252 void mlx5_eswitch_attach(struct mlx5_eswitch *esw);
253 void mlx5_eswitch_detach(struct mlx5_eswitch *esw);
254 void mlx5_eswitch_vport_event(struct mlx5_eswitch *esw, struct mlx5_eqe *eqe);
255 int mlx5_eswitch_enable_sriov(struct mlx5_eswitch *esw, int nvfs, int mode);
256 void mlx5_eswitch_disable_sriov(struct mlx5_eswitch *esw);
257 int mlx5_eswitch_set_vport_mac(struct mlx5_eswitch *esw,
258                                int vport, u8 mac[ETH_ALEN]);
259 int mlx5_eswitch_set_vport_state(struct mlx5_eswitch *esw,
260                                  int vport, int link_state);
261 int mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
262                                 int vport, u16 vlan, u8 qos);
263 int mlx5_eswitch_set_vport_spoofchk(struct mlx5_eswitch *esw,
264                                     int vport, bool spoofchk);
265 int mlx5_eswitch_set_vport_trust(struct mlx5_eswitch *esw,
266                                  int vport_num, bool setting);
267 int mlx5_eswitch_set_vport_rate(struct mlx5_eswitch *esw, int vport,
268                                 u32 max_rate, u32 min_rate);
269 int mlx5_eswitch_get_vport_config(struct mlx5_eswitch *esw,
270                                   int vport, struct ifla_vf_info *ivi);
271 int mlx5_eswitch_get_vport_stats(struct mlx5_eswitch *esw,
272                                  int vport,
273                                  struct ifla_vf_stats *vf_stats);
274
275 struct mlx5_flow_spec;
276 struct mlx5_esw_flow_attr;
277
278 struct mlx5_flow_handle *
279 mlx5_eswitch_add_offloaded_rule(struct mlx5_eswitch *esw,
280                                 struct mlx5_flow_spec *spec,
281                                 struct mlx5_esw_flow_attr *attr);
282 void
283 mlx5_eswitch_del_offloaded_rule(struct mlx5_eswitch *esw,
284                                 struct mlx5_flow_handle *rule,
285                                 struct mlx5_esw_flow_attr *attr);
286
287 struct mlx5_flow_handle *
288 mlx5_eswitch_create_vport_rx_rule(struct mlx5_eswitch *esw, int vport, u32 tirn);
289
290 enum {
291         SET_VLAN_STRIP  = BIT(0),
292         SET_VLAN_INSERT = BIT(1)
293 };
294
295 #define MLX5_FLOW_CONTEXT_ACTION_VLAN_POP  0x4000
296 #define MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH 0x8000
297
298 struct mlx5_esw_flow_attr {
299         struct mlx5_eswitch_rep *in_rep;
300         struct mlx5_eswitch_rep *out_rep;
301
302         int     action;
303         u16     vlan;
304         bool    vlan_handled;
305         u32     encap_id;
306         u32     mod_hdr_id;
307         struct mlx5e_tc_flow_parse_attr *parse_attr;
308 };
309
310 int mlx5_eswitch_sqs2vport_start(struct mlx5_eswitch *esw,
311                                  struct mlx5_eswitch_rep *rep,
312                                  u16 *sqns_array, int sqns_num);
313 void mlx5_eswitch_sqs2vport_stop(struct mlx5_eswitch *esw,
314                                  struct mlx5_eswitch_rep *rep);
315
316 int mlx5_devlink_eswitch_mode_set(struct devlink *devlink, u16 mode);
317 int mlx5_devlink_eswitch_mode_get(struct devlink *devlink, u16 *mode);
318 int mlx5_devlink_eswitch_inline_mode_set(struct devlink *devlink, u8 mode);
319 int mlx5_devlink_eswitch_inline_mode_get(struct devlink *devlink, u8 *mode);
320 int mlx5_eswitch_inline_mode_get(struct mlx5_eswitch *esw, int nvfs, u8 *mode);
321 int mlx5_devlink_eswitch_encap_mode_set(struct devlink *devlink, u8 encap);
322 int mlx5_devlink_eswitch_encap_mode_get(struct devlink *devlink, u8 *encap);
323 void mlx5_eswitch_register_vport_rep(struct mlx5_eswitch *esw,
324                                      int vport_index,
325                                      struct mlx5_eswitch_rep *rep);
326 void mlx5_eswitch_unregister_vport_rep(struct mlx5_eswitch *esw,
327                                        int vport_index);
328 struct net_device *mlx5_eswitch_get_uplink_netdev(struct mlx5_eswitch *esw);
329
330 int mlx5_eswitch_add_vlan_action(struct mlx5_eswitch *esw,
331                                  struct mlx5_esw_flow_attr *attr);
332 int mlx5_eswitch_del_vlan_action(struct mlx5_eswitch *esw,
333                                  struct mlx5_esw_flow_attr *attr);
334 int __mlx5_eswitch_set_vport_vlan(struct mlx5_eswitch *esw,
335                                   int vport, u16 vlan, u8 qos, u8 set_flags);
336
337 #define MLX5_DEBUG_ESWITCH_MASK BIT(3)
338
339 #define esw_info(dev, format, ...)                              \
340         pr_info("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
341
342 #define esw_warn(dev, format, ...)                              \
343         pr_warn("(%s): E-Switch: " format, (dev)->priv.name, ##__VA_ARGS__)
344
345 #define esw_debug(dev, format, ...)                             \
346         mlx5_core_dbg_mask(dev, MLX5_DEBUG_ESWITCH_MASK, format, ##__VA_ARGS__)
347 #endif /* __MLX5_ESWITCH_H__ */