OSDN Git Service

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