• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2017, Mellanox Technologies. 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 #include <rdma/ib_verbs.h>
34 #include <linux/mlx5/fs.h>
35 #include "en.h"
36 #include "ipoib.h"
37 
38 #define IB_DEFAULT_Q_KEY   0xb1b
39 #define MLX5I_PARAMS_DEFAULT_LOG_RQ_SIZE 9
40 
41 static int mlx5i_open(struct net_device *netdev);
42 static int mlx5i_close(struct net_device *netdev);
43 static int mlx5i_change_mtu(struct net_device *netdev, int new_mtu);
44 
45 static const struct net_device_ops mlx5i_netdev_ops = {
46 	.ndo_open                = mlx5i_open,
47 	.ndo_stop                = mlx5i_close,
48 	.ndo_get_stats64         = mlx5i_get_stats,
49 	.ndo_init                = mlx5i_dev_init,
50 	.ndo_uninit              = mlx5i_dev_cleanup,
51 	.ndo_change_mtu          = mlx5i_change_mtu,
52 	.ndo_do_ioctl            = mlx5i_ioctl,
53 };
54 
55 /* IPoIB mlx5 netdev profile */
mlx5i_build_nic_params(struct mlx5_core_dev * mdev,struct mlx5e_params * params)56 static void mlx5i_build_nic_params(struct mlx5_core_dev *mdev,
57 				   struct mlx5e_params *params)
58 {
59 	/* Override RQ params as IPoIB supports only LINKED LIST RQ for now */
60 	MLX5E_SET_PFLAG(params, MLX5E_PFLAG_RX_STRIDING_RQ, false);
61 	mlx5e_set_rq_type(mdev, params);
62 	mlx5e_init_rq_type_params(mdev, params);
63 
64 	/* RQ size in ipoib by default is 512 */
65 	params->log_rq_mtu_frames = is_kdump_kernel() ?
66 		MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE :
67 		MLX5I_PARAMS_DEFAULT_LOG_RQ_SIZE;
68 
69 	params->lro_en = false;
70 	params->hard_mtu = MLX5_IB_GRH_BYTES + MLX5_IPOIB_HARD_LEN;
71 	params->tunneled_offload_en = false;
72 
73 	/* CQE compression is not supported for IPoIB */
74 	params->rx_cqe_compress_def = false;
75 	MLX5E_SET_PFLAG(params, MLX5E_PFLAG_RX_CQE_COMPRESS, params->rx_cqe_compress_def);
76 }
77 
78 /* Called directly after IPoIB netdevice was created to initialize SW structs */
mlx5i_init(struct mlx5_core_dev * mdev,struct net_device * netdev,const struct mlx5e_profile * profile,void * ppriv)79 int mlx5i_init(struct mlx5_core_dev *mdev,
80 	       struct net_device *netdev,
81 	       const struct mlx5e_profile *profile,
82 	       void *ppriv)
83 {
84 	struct mlx5e_priv *priv  = mlx5i_epriv(netdev);
85 	int err;
86 
87 	err = mlx5e_netdev_init(netdev, priv, mdev, profile, ppriv);
88 	if (err)
89 		return err;
90 
91 	mlx5e_set_netdev_mtu_boundaries(priv);
92 	netdev->mtu = netdev->max_mtu;
93 
94 	mlx5e_build_nic_params(priv, NULL, &priv->rss_params, &priv->channels.params,
95 			       netdev->mtu);
96 	mlx5i_build_nic_params(mdev, &priv->channels.params);
97 
98 	mlx5e_timestamp_init(priv);
99 
100 	/* netdev init */
101 	netdev->hw_features    |= NETIF_F_SG;
102 	netdev->hw_features    |= NETIF_F_IP_CSUM;
103 	netdev->hw_features    |= NETIF_F_IPV6_CSUM;
104 	netdev->hw_features    |= NETIF_F_GRO;
105 	netdev->hw_features    |= NETIF_F_TSO;
106 	netdev->hw_features    |= NETIF_F_TSO6;
107 	netdev->hw_features    |= NETIF_F_RXCSUM;
108 	netdev->hw_features    |= NETIF_F_RXHASH;
109 
110 	netdev->netdev_ops = &mlx5i_netdev_ops;
111 	netdev->ethtool_ops = &mlx5i_ethtool_ops;
112 
113 	return 0;
114 }
115 
116 /* Called directly before IPoIB netdevice is destroyed to cleanup SW structs */
mlx5i_cleanup(struct mlx5e_priv * priv)117 void mlx5i_cleanup(struct mlx5e_priv *priv)
118 {
119 	mlx5e_netdev_cleanup(priv->netdev, priv);
120 }
121 
mlx5i_grp_sw_update_stats(struct mlx5e_priv * priv)122 static void mlx5i_grp_sw_update_stats(struct mlx5e_priv *priv)
123 {
124 	struct mlx5e_sw_stats s = { 0 };
125 	int i, j;
126 
127 	for (i = 0; i < priv->max_nch; i++) {
128 		struct mlx5e_channel_stats *channel_stats;
129 		struct mlx5e_rq_stats *rq_stats;
130 
131 		channel_stats = &priv->channel_stats[i];
132 		rq_stats = &channel_stats->rq;
133 
134 		s.rx_packets += rq_stats->packets;
135 		s.rx_bytes   += rq_stats->bytes;
136 
137 		for (j = 0; j < priv->max_opened_tc; j++) {
138 			struct mlx5e_sq_stats *sq_stats = &channel_stats->sq[j];
139 
140 			s.tx_packets           += sq_stats->packets;
141 			s.tx_bytes             += sq_stats->bytes;
142 			s.tx_queue_dropped     += sq_stats->dropped;
143 		}
144 	}
145 
146 	memcpy(&priv->stats.sw, &s, sizeof(s));
147 }
148 
mlx5i_get_stats(struct net_device * dev,struct rtnl_link_stats64 * stats)149 void mlx5i_get_stats(struct net_device *dev, struct rtnl_link_stats64 *stats)
150 {
151 	struct mlx5e_priv     *priv   = mlx5i_epriv(dev);
152 	struct mlx5e_sw_stats *sstats = &priv->stats.sw;
153 
154 	mlx5i_grp_sw_update_stats(priv);
155 
156 	stats->rx_packets = sstats->rx_packets;
157 	stats->rx_bytes   = sstats->rx_bytes;
158 	stats->tx_packets = sstats->tx_packets;
159 	stats->tx_bytes   = sstats->tx_bytes;
160 	stats->tx_dropped = sstats->tx_queue_dropped;
161 }
162 
mlx5i_init_underlay_qp(struct mlx5e_priv * priv)163 int mlx5i_init_underlay_qp(struct mlx5e_priv *priv)
164 {
165 	struct mlx5_core_dev *mdev = priv->mdev;
166 	struct mlx5i_priv *ipriv = priv->ppriv;
167 	int ret;
168 
169 	{
170 		u32 in[MLX5_ST_SZ_DW(rst2init_qp_in)] = {};
171 		u32 *qpc;
172 
173 		qpc = MLX5_ADDR_OF(rst2init_qp_in, in, qpc);
174 
175 		MLX5_SET(qpc, qpc, pm_state, MLX5_QP_PM_MIGRATED);
176 		MLX5_SET(qpc, qpc, primary_address_path.pkey_index,
177 			 ipriv->pkey_index);
178 		MLX5_SET(qpc, qpc, primary_address_path.vhca_port_num, 1);
179 		MLX5_SET(qpc, qpc, q_key, IB_DEFAULT_Q_KEY);
180 
181 		MLX5_SET(rst2init_qp_in, in, opcode, MLX5_CMD_OP_RST2INIT_QP);
182 		MLX5_SET(rst2init_qp_in, in, qpn, ipriv->qpn);
183 		ret = mlx5_cmd_exec_in(mdev, rst2init_qp, in);
184 		if (ret)
185 			goto err_qp_modify_to_err;
186 	}
187 	{
188 		u32 in[MLX5_ST_SZ_DW(init2rtr_qp_in)] = {};
189 
190 		MLX5_SET(init2rtr_qp_in, in, opcode, MLX5_CMD_OP_INIT2RTR_QP);
191 		MLX5_SET(init2rtr_qp_in, in, qpn, ipriv->qpn);
192 		ret = mlx5_cmd_exec_in(mdev, init2rtr_qp, in);
193 		if (ret)
194 			goto err_qp_modify_to_err;
195 	}
196 	{
197 		u32 in[MLX5_ST_SZ_DW(rtr2rts_qp_in)] = {};
198 
199 		MLX5_SET(rtr2rts_qp_in, in, opcode, MLX5_CMD_OP_RTR2RTS_QP);
200 		MLX5_SET(rtr2rts_qp_in, in, qpn, ipriv->qpn);
201 		ret = mlx5_cmd_exec_in(mdev, rtr2rts_qp, in);
202 		if (ret)
203 			goto err_qp_modify_to_err;
204 	}
205 	return 0;
206 
207 err_qp_modify_to_err:
208 	{
209 		u32 in[MLX5_ST_SZ_DW(qp_2err_in)] = {};
210 
211 		MLX5_SET(qp_2err_in, in, opcode, MLX5_CMD_OP_2ERR_QP);
212 		MLX5_SET(qp_2err_in, in, qpn, ipriv->qpn);
213 		mlx5_cmd_exec_in(mdev, qp_2err, in);
214 	}
215 	return ret;
216 }
217 
mlx5i_uninit_underlay_qp(struct mlx5e_priv * priv)218 void mlx5i_uninit_underlay_qp(struct mlx5e_priv *priv)
219 {
220 	struct mlx5i_priv *ipriv = priv->ppriv;
221 	struct mlx5_core_dev *mdev = priv->mdev;
222 	u32 in[MLX5_ST_SZ_DW(qp_2rst_in)] = {};
223 
224 	MLX5_SET(qp_2rst_in, in, opcode, MLX5_CMD_OP_2RST_QP);
225 	MLX5_SET(qp_2rst_in, in, qpn, ipriv->qpn);
226 	mlx5_cmd_exec_in(mdev, qp_2rst, in);
227 }
228 
229 #define MLX5_QP_ENHANCED_ULP_STATELESS_MODE 2
230 
mlx5i_create_underlay_qp(struct mlx5e_priv * priv)231 int mlx5i_create_underlay_qp(struct mlx5e_priv *priv)
232 {
233 	unsigned char *dev_addr = priv->netdev->dev_addr;
234 	u32 out[MLX5_ST_SZ_DW(create_qp_out)] = {};
235 	u32 in[MLX5_ST_SZ_DW(create_qp_in)] = {};
236 	struct mlx5i_priv *ipriv = priv->ppriv;
237 	void *addr_path;
238 	int qpn = 0;
239 	int ret = 0;
240 	void *qpc;
241 
242 	if (MLX5_CAP_GEN(priv->mdev, mkey_by_name)) {
243 		qpn = (dev_addr[1] << 16) + (dev_addr[2] << 8) + dev_addr[3];
244 		MLX5_SET(create_qp_in, in, input_qpn, qpn);
245 	}
246 
247 	qpc = MLX5_ADDR_OF(create_qp_in, in, qpc);
248 	MLX5_SET(qpc, qpc, st, MLX5_QP_ST_UD);
249 	MLX5_SET(qpc, qpc, pm_state, MLX5_QP_PM_MIGRATED);
250 	MLX5_SET(qpc, qpc, ulp_stateless_offload_mode,
251 		 MLX5_QP_ENHANCED_ULP_STATELESS_MODE);
252 
253 	addr_path = MLX5_ADDR_OF(qpc, qpc, primary_address_path);
254 	MLX5_SET(ads, addr_path, vhca_port_num, 1);
255 	MLX5_SET(ads, addr_path, grh, 1);
256 
257 	MLX5_SET(create_qp_in, in, opcode, MLX5_CMD_OP_CREATE_QP);
258 	ret = mlx5_cmd_exec_inout(priv->mdev, create_qp, in, out);
259 	if (ret)
260 		return ret;
261 
262 	ipriv->qpn = MLX5_GET(create_qp_out, out, qpn);
263 
264 	return 0;
265 }
266 
mlx5i_destroy_underlay_qp(struct mlx5_core_dev * mdev,u32 qpn)267 void mlx5i_destroy_underlay_qp(struct mlx5_core_dev *mdev, u32 qpn)
268 {
269 	u32 in[MLX5_ST_SZ_DW(destroy_qp_in)] = {};
270 
271 	MLX5_SET(destroy_qp_in, in, opcode, MLX5_CMD_OP_DESTROY_QP);
272 	MLX5_SET(destroy_qp_in, in, qpn, qpn);
273 	mlx5_cmd_exec_in(mdev, destroy_qp, in);
274 }
275 
mlx5i_update_nic_rx(struct mlx5e_priv * priv)276 int mlx5i_update_nic_rx(struct mlx5e_priv *priv)
277 {
278 	return mlx5e_refresh_tirs(priv, true, true);
279 }
280 
mlx5i_create_tis(struct mlx5_core_dev * mdev,u32 underlay_qpn,u32 * tisn)281 int mlx5i_create_tis(struct mlx5_core_dev *mdev, u32 underlay_qpn, u32 *tisn)
282 {
283 	u32 in[MLX5_ST_SZ_DW(create_tis_in)] = {};
284 	void *tisc;
285 
286 	tisc = MLX5_ADDR_OF(create_tis_in, in, ctx);
287 
288 	MLX5_SET(tisc, tisc, underlay_qpn, underlay_qpn);
289 
290 	return mlx5e_create_tis(mdev, in, tisn);
291 }
292 
mlx5i_init_tx(struct mlx5e_priv * priv)293 static int mlx5i_init_tx(struct mlx5e_priv *priv)
294 {
295 	struct mlx5i_priv *ipriv = priv->ppriv;
296 	int err;
297 
298 	err = mlx5i_create_underlay_qp(priv);
299 	if (err) {
300 		mlx5_core_warn(priv->mdev, "create underlay QP failed, %d\n", err);
301 		return err;
302 	}
303 
304 	err = mlx5i_create_tis(priv->mdev, ipriv->qpn, &priv->tisn[0][0]);
305 	if (err) {
306 		mlx5_core_warn(priv->mdev, "create tis failed, %d\n", err);
307 		goto err_destroy_underlay_qp;
308 	}
309 
310 	return 0;
311 
312 err_destroy_underlay_qp:
313 	mlx5i_destroy_underlay_qp(priv->mdev, ipriv->qpn);
314 	return err;
315 }
316 
mlx5i_cleanup_tx(struct mlx5e_priv * priv)317 static void mlx5i_cleanup_tx(struct mlx5e_priv *priv)
318 {
319 	struct mlx5i_priv *ipriv = priv->ppriv;
320 
321 	mlx5e_destroy_tis(priv->mdev, priv->tisn[0][0]);
322 	mlx5i_destroy_underlay_qp(priv->mdev, ipriv->qpn);
323 }
324 
mlx5i_create_flow_steering(struct mlx5e_priv * priv)325 static int mlx5i_create_flow_steering(struct mlx5e_priv *priv)
326 {
327 	struct ttc_params ttc_params = {};
328 	int tt, err;
329 
330 	priv->fs.ns = mlx5_get_flow_namespace(priv->mdev,
331 					       MLX5_FLOW_NAMESPACE_KERNEL);
332 
333 	if (!priv->fs.ns)
334 		return -EINVAL;
335 
336 	err = mlx5e_arfs_create_tables(priv);
337 	if (err) {
338 		netdev_err(priv->netdev, "Failed to create arfs tables, err=%d\n",
339 			   err);
340 		priv->netdev->hw_features &= ~NETIF_F_NTUPLE;
341 	}
342 
343 	mlx5e_set_ttc_basic_params(priv, &ttc_params);
344 	mlx5e_set_ttc_ft_params(&ttc_params);
345 	for (tt = 0; tt < MLX5E_NUM_INDIR_TIRS; tt++)
346 		ttc_params.indir_tirn[tt] = priv->indir_tir[tt].tirn;
347 
348 	err = mlx5e_create_ttc_table(priv, &ttc_params, &priv->fs.ttc);
349 	if (err) {
350 		netdev_err(priv->netdev, "Failed to create ttc table, err=%d\n",
351 			   err);
352 		goto err_destroy_arfs_tables;
353 	}
354 
355 	return 0;
356 
357 err_destroy_arfs_tables:
358 	mlx5e_arfs_destroy_tables(priv);
359 
360 	return err;
361 }
362 
mlx5i_destroy_flow_steering(struct mlx5e_priv * priv)363 static void mlx5i_destroy_flow_steering(struct mlx5e_priv *priv)
364 {
365 	mlx5e_destroy_ttc_table(priv, &priv->fs.ttc);
366 	mlx5e_arfs_destroy_tables(priv);
367 }
368 
mlx5i_init_rx(struct mlx5e_priv * priv)369 static int mlx5i_init_rx(struct mlx5e_priv *priv)
370 {
371 	struct mlx5_core_dev *mdev = priv->mdev;
372 	int err;
373 
374 	mlx5e_create_q_counters(priv);
375 
376 	err = mlx5e_open_drop_rq(priv, &priv->drop_rq);
377 	if (err) {
378 		mlx5_core_err(mdev, "open drop rq failed, %d\n", err);
379 		goto err_destroy_q_counters;
380 	}
381 
382 	err = mlx5e_create_indirect_rqt(priv);
383 	if (err)
384 		goto err_close_drop_rq;
385 
386 	err = mlx5e_create_direct_rqts(priv, priv->direct_tir);
387 	if (err)
388 		goto err_destroy_indirect_rqts;
389 
390 	err = mlx5e_create_indirect_tirs(priv, false);
391 	if (err)
392 		goto err_destroy_direct_rqts;
393 
394 	err = mlx5e_create_direct_tirs(priv, priv->direct_tir);
395 	if (err)
396 		goto err_destroy_indirect_tirs;
397 
398 	err = mlx5i_create_flow_steering(priv);
399 	if (err)
400 		goto err_destroy_direct_tirs;
401 
402 	return 0;
403 
404 err_destroy_direct_tirs:
405 	mlx5e_destroy_direct_tirs(priv, priv->direct_tir);
406 err_destroy_indirect_tirs:
407 	mlx5e_destroy_indirect_tirs(priv);
408 err_destroy_direct_rqts:
409 	mlx5e_destroy_direct_rqts(priv, priv->direct_tir);
410 err_destroy_indirect_rqts:
411 	mlx5e_destroy_rqt(priv, &priv->indir_rqt);
412 err_close_drop_rq:
413 	mlx5e_close_drop_rq(&priv->drop_rq);
414 err_destroy_q_counters:
415 	mlx5e_destroy_q_counters(priv);
416 	return err;
417 }
418 
mlx5i_cleanup_rx(struct mlx5e_priv * priv)419 static void mlx5i_cleanup_rx(struct mlx5e_priv *priv)
420 {
421 	mlx5i_destroy_flow_steering(priv);
422 	mlx5e_destroy_direct_tirs(priv, priv->direct_tir);
423 	mlx5e_destroy_indirect_tirs(priv);
424 	mlx5e_destroy_direct_rqts(priv, priv->direct_tir);
425 	mlx5e_destroy_rqt(priv, &priv->indir_rqt);
426 	mlx5e_close_drop_rq(&priv->drop_rq);
427 	mlx5e_destroy_q_counters(priv);
428 }
429 
430 /* The stats groups order is opposite to the update_stats() order calls */
431 static mlx5e_stats_grp_t mlx5i_stats_grps[] = {
432 	&MLX5E_STATS_GRP(sw),
433 	&MLX5E_STATS_GRP(qcnt),
434 	&MLX5E_STATS_GRP(vnic_env),
435 	&MLX5E_STATS_GRP(vport),
436 	&MLX5E_STATS_GRP(802_3),
437 	&MLX5E_STATS_GRP(2863),
438 	&MLX5E_STATS_GRP(2819),
439 	&MLX5E_STATS_GRP(phy),
440 	&MLX5E_STATS_GRP(pcie),
441 	&MLX5E_STATS_GRP(per_prio),
442 	&MLX5E_STATS_GRP(pme),
443 	&MLX5E_STATS_GRP(channels),
444 	&MLX5E_STATS_GRP(per_port_buff_congest),
445 };
446 
mlx5i_stats_grps_num(struct mlx5e_priv * priv)447 static unsigned int mlx5i_stats_grps_num(struct mlx5e_priv *priv)
448 {
449 	return ARRAY_SIZE(mlx5i_stats_grps);
450 }
451 
452 static const struct mlx5e_profile mlx5i_nic_profile = {
453 	.init		   = mlx5i_init,
454 	.cleanup	   = mlx5i_cleanup,
455 	.init_tx	   = mlx5i_init_tx,
456 	.cleanup_tx	   = mlx5i_cleanup_tx,
457 	.init_rx	   = mlx5i_init_rx,
458 	.cleanup_rx	   = mlx5i_cleanup_rx,
459 	.enable		   = NULL, /* mlx5i_enable */
460 	.disable	   = NULL, /* mlx5i_disable */
461 	.update_rx	   = mlx5i_update_nic_rx,
462 	.update_stats	   = NULL, /* mlx5i_update_stats */
463 	.update_carrier    = NULL, /* no HW update in IB link */
464 	.rx_handlers       = &mlx5i_rx_handlers,
465 	.max_tc		   = MLX5I_MAX_NUM_TC,
466 	.rq_groups	   = MLX5E_NUM_RQ_GROUPS(REGULAR),
467 	.stats_grps        = mlx5i_stats_grps,
468 	.stats_grps_num    = mlx5i_stats_grps_num,
469 };
470 
471 /* mlx5i netdev NDos */
472 
mlx5i_change_mtu(struct net_device * netdev,int new_mtu)473 static int mlx5i_change_mtu(struct net_device *netdev, int new_mtu)
474 {
475 	struct mlx5e_priv *priv = mlx5i_epriv(netdev);
476 	struct mlx5e_channels new_channels = {};
477 	struct mlx5e_params *params;
478 	int err = 0;
479 
480 	mutex_lock(&priv->state_lock);
481 
482 	params = &priv->channels.params;
483 
484 	if (!test_bit(MLX5E_STATE_OPENED, &priv->state)) {
485 		params->sw_mtu = new_mtu;
486 		netdev->mtu = params->sw_mtu;
487 		goto out;
488 	}
489 
490 	new_channels.params = *params;
491 	new_channels.params.sw_mtu = new_mtu;
492 
493 	err = mlx5e_safe_switch_channels(priv, &new_channels, NULL, NULL);
494 	if (err)
495 		goto out;
496 
497 	netdev->mtu = new_channels.params.sw_mtu;
498 
499 out:
500 	mutex_unlock(&priv->state_lock);
501 	return err;
502 }
503 
mlx5i_dev_init(struct net_device * dev)504 int mlx5i_dev_init(struct net_device *dev)
505 {
506 	struct mlx5e_priv    *priv   = mlx5i_epriv(dev);
507 	struct mlx5i_priv    *ipriv  = priv->ppriv;
508 
509 	/* Set dev address using underlay QP */
510 	dev->dev_addr[1] = (ipriv->qpn >> 16) & 0xff;
511 	dev->dev_addr[2] = (ipriv->qpn >>  8) & 0xff;
512 	dev->dev_addr[3] = (ipriv->qpn) & 0xff;
513 
514 	/* Add QPN to net-device mapping to HT */
515 	mlx5i_pkey_add_qpn(dev, ipriv->qpn);
516 
517 	return 0;
518 }
519 
mlx5i_ioctl(struct net_device * dev,struct ifreq * ifr,int cmd)520 int mlx5i_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
521 {
522 	struct mlx5e_priv *priv = mlx5i_epriv(dev);
523 
524 	switch (cmd) {
525 	case SIOCSHWTSTAMP:
526 		return mlx5e_hwstamp_set(priv, ifr);
527 	case SIOCGHWTSTAMP:
528 		return mlx5e_hwstamp_get(priv, ifr);
529 	default:
530 		return -EOPNOTSUPP;
531 	}
532 }
533 
mlx5i_dev_cleanup(struct net_device * dev)534 void mlx5i_dev_cleanup(struct net_device *dev)
535 {
536 	struct mlx5e_priv    *priv   = mlx5i_epriv(dev);
537 	struct mlx5i_priv    *ipriv = priv->ppriv;
538 
539 	mlx5i_uninit_underlay_qp(priv);
540 
541 	/* Delete QPN to net-device mapping from HT */
542 	mlx5i_pkey_del_qpn(dev, ipriv->qpn);
543 }
544 
mlx5i_open(struct net_device * netdev)545 static int mlx5i_open(struct net_device *netdev)
546 {
547 	struct mlx5e_priv *epriv = mlx5i_epriv(netdev);
548 	struct mlx5i_priv *ipriv = epriv->ppriv;
549 	struct mlx5_core_dev *mdev = epriv->mdev;
550 	int err;
551 
552 	mutex_lock(&epriv->state_lock);
553 
554 	set_bit(MLX5E_STATE_OPENED, &epriv->state);
555 
556 	err = mlx5i_init_underlay_qp(epriv);
557 	if (err) {
558 		mlx5_core_warn(mdev, "prepare underlay qp state failed, %d\n", err);
559 		goto err_clear_state_opened_flag;
560 	}
561 
562 	err = mlx5_fs_add_rx_underlay_qpn(mdev, ipriv->qpn);
563 	if (err) {
564 		mlx5_core_warn(mdev, "attach underlay qp to ft failed, %d\n", err);
565 		goto err_reset_qp;
566 	}
567 
568 	err = mlx5e_open_channels(epriv, &epriv->channels);
569 	if (err)
570 		goto err_remove_fs_underlay_qp;
571 
572 	epriv->profile->update_rx(epriv);
573 	mlx5e_activate_priv_channels(epriv);
574 
575 	mutex_unlock(&epriv->state_lock);
576 	return 0;
577 
578 err_remove_fs_underlay_qp:
579 	mlx5_fs_remove_rx_underlay_qpn(mdev, ipriv->qpn);
580 err_reset_qp:
581 	mlx5i_uninit_underlay_qp(epriv);
582 err_clear_state_opened_flag:
583 	clear_bit(MLX5E_STATE_OPENED, &epriv->state);
584 	mutex_unlock(&epriv->state_lock);
585 	return err;
586 }
587 
mlx5i_close(struct net_device * netdev)588 static int mlx5i_close(struct net_device *netdev)
589 {
590 	struct mlx5e_priv *epriv = mlx5i_epriv(netdev);
591 	struct mlx5i_priv *ipriv = epriv->ppriv;
592 	struct mlx5_core_dev *mdev = epriv->mdev;
593 
594 	/* May already be CLOSED in case a previous configuration operation
595 	 * (e.g RX/TX queue size change) that involves close&open failed.
596 	 */
597 	mutex_lock(&epriv->state_lock);
598 
599 	if (!test_bit(MLX5E_STATE_OPENED, &epriv->state))
600 		goto unlock;
601 
602 	clear_bit(MLX5E_STATE_OPENED, &epriv->state);
603 
604 	netif_carrier_off(epriv->netdev);
605 	mlx5_fs_remove_rx_underlay_qpn(mdev, ipriv->qpn);
606 	mlx5e_deactivate_priv_channels(epriv);
607 	mlx5e_close_channels(&epriv->channels);
608 	mlx5i_uninit_underlay_qp(epriv);
609 unlock:
610 	mutex_unlock(&epriv->state_lock);
611 	return 0;
612 }
613 
614 /* IPoIB RDMA netdev callbacks */
mlx5i_attach_mcast(struct net_device * netdev,struct ib_device * hca,union ib_gid * gid,u16 lid,int set_qkey,u32 qkey)615 static int mlx5i_attach_mcast(struct net_device *netdev, struct ib_device *hca,
616 			      union ib_gid *gid, u16 lid, int set_qkey,
617 			      u32 qkey)
618 {
619 	struct mlx5e_priv    *epriv = mlx5i_epriv(netdev);
620 	struct mlx5_core_dev *mdev  = epriv->mdev;
621 	struct mlx5i_priv    *ipriv = epriv->ppriv;
622 	int err;
623 
624 	mlx5_core_dbg(mdev, "attaching QPN 0x%x, MGID %pI6\n", ipriv->qpn,
625 		      gid->raw);
626 	err = mlx5_core_attach_mcg(mdev, gid, ipriv->qpn);
627 	if (err)
628 		mlx5_core_warn(mdev, "failed attaching QPN 0x%x, MGID %pI6\n",
629 			       ipriv->qpn, gid->raw);
630 
631 	if (set_qkey) {
632 		mlx5_core_dbg(mdev, "%s setting qkey 0x%x\n",
633 			      netdev->name, qkey);
634 		ipriv->qkey = qkey;
635 	}
636 
637 	return err;
638 }
639 
mlx5i_detach_mcast(struct net_device * netdev,struct ib_device * hca,union ib_gid * gid,u16 lid)640 static int mlx5i_detach_mcast(struct net_device *netdev, struct ib_device *hca,
641 			      union ib_gid *gid, u16 lid)
642 {
643 	struct mlx5e_priv    *epriv = mlx5i_epriv(netdev);
644 	struct mlx5_core_dev *mdev  = epriv->mdev;
645 	struct mlx5i_priv    *ipriv = epriv->ppriv;
646 	int err;
647 
648 	mlx5_core_dbg(mdev, "detaching QPN 0x%x, MGID %pI6\n", ipriv->qpn,
649 		      gid->raw);
650 
651 	err = mlx5_core_detach_mcg(mdev, gid, ipriv->qpn);
652 	if (err)
653 		mlx5_core_dbg(mdev, "failed detaching QPN 0x%x, MGID %pI6\n",
654 			      ipriv->qpn, gid->raw);
655 
656 	return err;
657 }
658 
mlx5i_xmit(struct net_device * dev,struct sk_buff * skb,struct ib_ah * address,u32 dqpn)659 static int mlx5i_xmit(struct net_device *dev, struct sk_buff *skb,
660 		      struct ib_ah *address, u32 dqpn)
661 {
662 	struct mlx5e_priv *epriv = mlx5i_epriv(dev);
663 	struct mlx5e_txqsq *sq   = epriv->txq2sq[skb_get_queue_mapping(skb)];
664 	struct mlx5_ib_ah *mah   = to_mah(address);
665 	struct mlx5i_priv *ipriv = epriv->ppriv;
666 
667 	mlx5i_sq_xmit(sq, skb, &mah->av, dqpn, ipriv->qkey, netdev_xmit_more());
668 
669 	return NETDEV_TX_OK;
670 }
671 
mlx5i_set_pkey_index(struct net_device * netdev,int id)672 static void mlx5i_set_pkey_index(struct net_device *netdev, int id)
673 {
674 	struct mlx5i_priv *ipriv = netdev_priv(netdev);
675 
676 	ipriv->pkey_index = (u16)id;
677 }
678 
mlx5i_check_required_hca_cap(struct mlx5_core_dev * mdev)679 static int mlx5i_check_required_hca_cap(struct mlx5_core_dev *mdev)
680 {
681 	if (MLX5_CAP_GEN(mdev, port_type) != MLX5_CAP_PORT_TYPE_IB)
682 		return -EOPNOTSUPP;
683 
684 	if (!MLX5_CAP_GEN(mdev, ipoib_enhanced_offloads)) {
685 		mlx5_core_warn(mdev, "IPoIB enhanced offloads are not supported\n");
686 		return -EOPNOTSUPP;
687 	}
688 
689 	return 0;
690 }
691 
mlx5_rdma_netdev_free(struct net_device * netdev)692 static void mlx5_rdma_netdev_free(struct net_device *netdev)
693 {
694 	struct mlx5e_priv *priv = mlx5i_epriv(netdev);
695 	struct mlx5i_priv *ipriv = priv->ppriv;
696 	const struct mlx5e_profile *profile = priv->profile;
697 
698 	mlx5e_detach_netdev(priv);
699 	profile->cleanup(priv);
700 
701 	if (!ipriv->sub_interface) {
702 		mlx5i_pkey_qpn_ht_cleanup(netdev);
703 		mlx5e_destroy_mdev_resources(priv->mdev);
704 	}
705 }
706 
mlx5_is_sub_interface(struct mlx5_core_dev * mdev)707 static bool mlx5_is_sub_interface(struct mlx5_core_dev *mdev)
708 {
709 	return mdev->mlx5e_res.pdn != 0;
710 }
711 
mlx5_get_profile(struct mlx5_core_dev * mdev)712 static const struct mlx5e_profile *mlx5_get_profile(struct mlx5_core_dev *mdev)
713 {
714 	if (mlx5_is_sub_interface(mdev))
715 		return mlx5i_pkey_get_profile();
716 	return &mlx5i_nic_profile;
717 }
718 
mlx5_rdma_setup_rn(struct ib_device * ibdev,u8 port_num,struct net_device * netdev,void * param)719 static int mlx5_rdma_setup_rn(struct ib_device *ibdev, u8 port_num,
720 			      struct net_device *netdev, void *param)
721 {
722 	struct mlx5_core_dev *mdev = (struct mlx5_core_dev *)param;
723 	const struct mlx5e_profile *prof = mlx5_get_profile(mdev);
724 	struct mlx5i_priv *ipriv;
725 	struct mlx5e_priv *epriv;
726 	struct rdma_netdev *rn;
727 	int err;
728 
729 	ipriv = netdev_priv(netdev);
730 	epriv = mlx5i_epriv(netdev);
731 
732 	ipriv->sub_interface = mlx5_is_sub_interface(mdev);
733 	if (!ipriv->sub_interface) {
734 		err = mlx5i_pkey_qpn_ht_init(netdev);
735 		if (err) {
736 			mlx5_core_warn(mdev, "allocate qpn_to_netdev ht failed\n");
737 			return err;
738 		}
739 
740 		/* This should only be called once per mdev */
741 		err = mlx5e_create_mdev_resources(mdev);
742 		if (err)
743 			goto destroy_ht;
744 	}
745 
746 	prof->init(mdev, netdev, prof, ipriv);
747 
748 	err = mlx5e_attach_netdev(epriv);
749 	if (err)
750 		goto detach;
751 	netif_carrier_off(netdev);
752 
753 	/* set rdma_netdev func pointers */
754 	rn = &ipriv->rn;
755 	rn->hca  = ibdev;
756 	rn->send = mlx5i_xmit;
757 	rn->attach_mcast = mlx5i_attach_mcast;
758 	rn->detach_mcast = mlx5i_detach_mcast;
759 	rn->set_id = mlx5i_set_pkey_index;
760 
761 	netdev->priv_destructor = mlx5_rdma_netdev_free;
762 	netdev->needs_free_netdev = 1;
763 
764 	return 0;
765 
766 detach:
767 	prof->cleanup(epriv);
768 	if (ipriv->sub_interface)
769 		return err;
770 	mlx5e_destroy_mdev_resources(mdev);
771 destroy_ht:
772 	mlx5i_pkey_qpn_ht_cleanup(netdev);
773 	return err;
774 }
775 
mlx5_rdma_rn_get_params(struct mlx5_core_dev * mdev,struct ib_device * device,struct rdma_netdev_alloc_params * params)776 int mlx5_rdma_rn_get_params(struct mlx5_core_dev *mdev,
777 			    struct ib_device *device,
778 			    struct rdma_netdev_alloc_params *params)
779 {
780 	int nch;
781 	int rc;
782 
783 	rc = mlx5i_check_required_hca_cap(mdev);
784 	if (rc)
785 		return rc;
786 
787 	nch = mlx5e_get_max_num_channels(mdev);
788 
789 	*params = (struct rdma_netdev_alloc_params){
790 		.sizeof_priv = sizeof(struct mlx5i_priv) +
791 			       sizeof(struct mlx5e_priv),
792 		.txqs = nch * MLX5E_MAX_NUM_TC,
793 		.rxqs = nch,
794 		.param = mdev,
795 		.initialize_rdma_netdev = mlx5_rdma_setup_rn,
796 	};
797 
798 	return 0;
799 }
800 EXPORT_SYMBOL(mlx5_rdma_rn_get_params);
801