ebc57a99e8702ee49fb5197bb64d0c37a0351195
[dpdk.git] / drivers / net / mlx4 / mlx4_mp.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2019 6WIND S.A.
3  * Copyright 2019 Mellanox Technologies, Ltd
4  */
5
6 #include <assert.h>
7 #include <stdio.h>
8 #include <time.h>
9
10 #include <rte_eal.h>
11 #include <rte_ethdev_driver.h>
12 #include <rte_string_fns.h>
13
14 #include "mlx4.h"
15 #include "mlx4_rxtx.h"
16 #include "mlx4_utils.h"
17
18 /**
19  * Initialize IPC message.
20  *
21  * @param[in] dev
22  *   Pointer to Ethernet structure.
23  * @param[out] msg
24  *   Pointer to message to fill in.
25  * @param[in] type
26  *   Message type.
27  */
28 static inline void
29 mp_init_msg(struct rte_eth_dev *dev, struct rte_mp_msg *msg,
30             enum mlx4_mp_req_type type)
31 {
32         struct mlx4_mp_param *param = (struct mlx4_mp_param *)msg->param;
33
34         memset(msg, 0, sizeof(*msg));
35         strlcpy(msg->name, MLX4_MP_NAME, sizeof(msg->name));
36         msg->len_param = sizeof(*param);
37         param->type = type;
38         param->port_id = dev->data->port_id;
39 }
40
41 /**
42  * IPC message handler of primary process.
43  *
44  * @param[in] dev
45  *   Pointer to Ethernet structure.
46  * @param[in] peer
47  *   Pointer to the peer socket path.
48  *
49  * @return
50  *   0 on success, negative errno value otherwise and rte_errno is set.
51  */
52 static int
53 mp_primary_handle(const struct rte_mp_msg *mp_msg, const void *peer)
54 {
55         struct rte_mp_msg mp_res;
56         struct mlx4_mp_param *res = (struct mlx4_mp_param *)mp_res.param;
57         const struct mlx4_mp_param *param =
58                 (const struct mlx4_mp_param *)mp_msg->param;
59         struct rte_eth_dev *dev;
60         struct mlx4_priv *priv;
61         struct mlx4_mr_cache entry;
62         uint32_t lkey;
63         int ret;
64
65         assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
66         if (!rte_eth_dev_is_valid_port(param->port_id)) {
67                 rte_errno = ENODEV;
68                 ERROR("port %u invalid port ID", param->port_id);
69                 return -rte_errno;
70         }
71         dev = &rte_eth_devices[param->port_id];
72         priv = dev->data->dev_private;
73         switch (param->type) {
74         case MLX4_MP_REQ_CREATE_MR:
75                 mp_init_msg(dev, &mp_res, param->type);
76                 lkey = mlx4_mr_create_primary(dev, &entry, param->args.addr);
77                 if (lkey == UINT32_MAX)
78                         res->result = -rte_errno;
79                 ret = rte_mp_reply(&mp_res, peer);
80                 break;
81         case MLX4_MP_REQ_VERBS_CMD_FD:
82                 mp_init_msg(dev, &mp_res, param->type);
83                 mp_res.num_fds = 1;
84                 mp_res.fds[0] = priv->ctx->cmd_fd;
85                 res->result = 0;
86                 ret = rte_mp_reply(&mp_res, peer);
87                 break;
88         default:
89                 rte_errno = EINVAL;
90                 ERROR("port %u invalid mp request type", dev->data->port_id);
91                 return -rte_errno;
92         }
93         return ret;
94 }
95
96 /**
97  * IPC message handler of a secondary process.
98  *
99  * @param[in] dev
100  *   Pointer to Ethernet structure.
101  * @param[in] peer
102  *   Pointer to the peer socket path.
103  *
104  * @return
105  *   0 on success, a negative errno value otherwise and rte_errno is set.
106  */
107 static int
108 mp_secondary_handle(const struct rte_mp_msg *mp_msg, const void *peer)
109 {
110         struct rte_mp_msg mp_res;
111         struct mlx4_mp_param *res = (struct mlx4_mp_param *)mp_res.param;
112         const struct mlx4_mp_param *param =
113                 (const struct mlx4_mp_param *)mp_msg->param;
114         struct rte_eth_dev *dev;
115         int ret;
116
117         assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
118         if (!rte_eth_dev_is_valid_port(param->port_id)) {
119                 rte_errno = ENODEV;
120                 ERROR("port %u invalid port ID", param->port_id);
121                 return -rte_errno;
122         }
123         dev = &rte_eth_devices[param->port_id];
124         switch (param->type) {
125         case MLX4_MP_REQ_START_RXTX:
126                 INFO("port %u starting datapath", dev->data->port_id);
127                 rte_mb();
128                 dev->tx_pkt_burst = mlx4_tx_burst;
129                 dev->rx_pkt_burst = mlx4_rx_burst;
130                 mp_init_msg(dev, &mp_res, param->type);
131                 res->result = 0;
132                 ret = rte_mp_reply(&mp_res, peer);
133                 break;
134         case MLX4_MP_REQ_STOP_RXTX:
135                 INFO("port %u stopping datapath", dev->data->port_id);
136                 dev->tx_pkt_burst = mlx4_tx_burst_removed;
137                 dev->rx_pkt_burst = mlx4_rx_burst_removed;
138                 rte_mb();
139                 mp_init_msg(dev, &mp_res, param->type);
140                 res->result = 0;
141                 ret = rte_mp_reply(&mp_res, peer);
142                 break;
143         default:
144                 rte_errno = EINVAL;
145                 ERROR("port %u invalid mp request type", dev->data->port_id);
146                 return -rte_errno;
147         }
148         return ret;
149 }
150
151 /**
152  * Broadcast request of stopping/starting data-path to secondary processes.
153  *
154  * @param[in] dev
155  *   Pointer to Ethernet structure.
156  * @param[in] type
157  *   Request type.
158  */
159 static void
160 mp_req_on_rxtx(struct rte_eth_dev *dev, enum mlx4_mp_req_type type)
161 {
162         struct rte_mp_msg mp_req;
163         struct rte_mp_msg *mp_res;
164         struct rte_mp_reply mp_rep;
165         struct mlx4_mp_param *res __rte_unused;
166         struct timespec ts = {.tv_sec = MLX4_MP_REQ_TIMEOUT_SEC, .tv_nsec = 0};
167         int ret;
168         int i;
169
170         assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
171         if (!mlx4_shared_data->secondary_cnt)
172                 return;
173         if (type != MLX4_MP_REQ_START_RXTX && type != MLX4_MP_REQ_STOP_RXTX) {
174                 ERROR("port %u unknown request (req_type %d)",
175                       dev->data->port_id, type);
176                 return;
177         }
178         mp_init_msg(dev, &mp_req, type);
179         ret = rte_mp_request_sync(&mp_req, &mp_rep, &ts);
180         if (ret) {
181                 ERROR("port %u failed to request stop/start Rx/Tx (%d)",
182                       dev->data->port_id, type);
183                 goto exit;
184         }
185         if (mp_rep.nb_sent != mp_rep.nb_received) {
186                 ERROR("port %u not all secondaries responded (req_type %d)",
187                       dev->data->port_id, type);
188                 goto exit;
189         }
190         for (i = 0; i < mp_rep.nb_received; i++) {
191                 mp_res = &mp_rep.msgs[i];
192                 res = (struct mlx4_mp_param *)mp_res->param;
193                 if (res->result) {
194                         ERROR("port %u request failed on secondary #%d",
195                               dev->data->port_id, i);
196                         goto exit;
197                 }
198         }
199 exit:
200         free(mp_rep.msgs);
201 }
202
203 /**
204  * Broadcast request of starting data-path to secondary processes. The request
205  * is synchronous.
206  *
207  * @param[in] dev
208  *   Pointer to Ethernet structure.
209  */
210 void
211 mlx4_mp_req_start_rxtx(struct rte_eth_dev *dev)
212 {
213         mp_req_on_rxtx(dev, MLX4_MP_REQ_START_RXTX);
214 }
215
216 /**
217  * Broadcast request of stopping data-path to secondary processes. The request
218  * is synchronous.
219  *
220  * @param[in] dev
221  *   Pointer to Ethernet structure.
222  */
223 void
224 mlx4_mp_req_stop_rxtx(struct rte_eth_dev *dev)
225 {
226         mp_req_on_rxtx(dev, MLX4_MP_REQ_STOP_RXTX);
227 }
228
229 /**
230  * Request Memory Region creation to the primary process.
231  *
232  * @param[in] dev
233  *   Pointer to Ethernet structure.
234  * @param addr
235  *   Target virtual address to register.
236  *
237  * @return
238  *   0 on success, a negative errno value otherwise and rte_errno is set.
239  */
240 int
241 mlx4_mp_req_mr_create(struct rte_eth_dev *dev, uintptr_t addr)
242 {
243         struct rte_mp_msg mp_req;
244         struct rte_mp_msg *mp_res;
245         struct rte_mp_reply mp_rep;
246         struct mlx4_mp_param *req = (struct mlx4_mp_param *)mp_req.param;
247         struct mlx4_mp_param *res;
248         struct timespec ts = {.tv_sec = MLX4_MP_REQ_TIMEOUT_SEC, .tv_nsec = 0};
249         int ret;
250
251         assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
252         mp_init_msg(dev, &mp_req, MLX4_MP_REQ_CREATE_MR);
253         req->args.addr = addr;
254         ret = rte_mp_request_sync(&mp_req, &mp_rep, &ts);
255         if (ret) {
256                 ERROR("port %u request to primary process failed",
257                       dev->data->port_id);
258                 return -rte_errno;
259         }
260         assert(mp_rep.nb_received == 1);
261         mp_res = &mp_rep.msgs[0];
262         res = (struct mlx4_mp_param *)mp_res->param;
263         ret = res->result;
264         if (ret)
265                 rte_errno = -ret;
266         free(mp_rep.msgs);
267         return ret;
268 }
269
270 /**
271  * IPC message handler of primary process.
272  *
273  * @param[in] dev
274  *   Pointer to Ethernet structure.
275  *
276  * @return
277  *   fd on success, a negative errno value otherwise and rte_errno is set.
278  */
279 int
280 mlx4_mp_req_verbs_cmd_fd(struct rte_eth_dev *dev)
281 {
282         struct rte_mp_msg mp_req;
283         struct rte_mp_msg *mp_res;
284         struct rte_mp_reply mp_rep;
285         struct mlx4_mp_param *res;
286         struct timespec ts = {.tv_sec = MLX4_MP_REQ_TIMEOUT_SEC, .tv_nsec = 0};
287         int ret;
288
289         assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
290         mp_init_msg(dev, &mp_req, MLX4_MP_REQ_VERBS_CMD_FD);
291         ret = rte_mp_request_sync(&mp_req, &mp_rep, &ts);
292         if (ret) {
293                 ERROR("port %u request to primary process failed",
294                       dev->data->port_id);
295                 return -rte_errno;
296         }
297         assert(mp_rep.nb_received == 1);
298         mp_res = &mp_rep.msgs[0];
299         res = (struct mlx4_mp_param *)mp_res->param;
300         if (res->result) {
301                 rte_errno = -res->result;
302                 ERROR("port %u failed to get command FD from primary process",
303                       dev->data->port_id);
304                 ret = -rte_errno;
305                 goto exit;
306         }
307         assert(mp_res->num_fds == 1);
308         ret = mp_res->fds[0];
309         DEBUG("port %u command FD from primary is %d",
310               dev->data->port_id, ret);
311 exit:
312         free(mp_rep.msgs);
313         return ret;
314 }
315
316 /**
317  * Initialize by primary process.
318  */
319 int
320 mlx4_mp_init_primary(void)
321 {
322         int ret;
323
324         assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
325
326         /* primary is allowed to not support IPC */
327         ret = rte_mp_action_register(MLX4_MP_NAME, mp_primary_handle);
328         if (ret && rte_errno != ENOTSUP)
329                 return -1;
330         return 0;
331 }
332
333 /**
334  * Un-initialize by primary process.
335  */
336 void
337 mlx4_mp_uninit_primary(void)
338 {
339         assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
340         rte_mp_action_unregister(MLX4_MP_NAME);
341 }
342
343 /**
344  * Initialize by secondary process.
345  */
346 int
347 mlx4_mp_init_secondary(void)
348 {
349         assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
350         return rte_mp_action_register(MLX4_MP_NAME, mp_secondary_handle);
351 }
352
353 /**
354  * Un-initialize by secondary process.
355  */
356 void
357 mlx4_mp_uninit_secondary(void)
358 {
359         assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
360         rte_mp_action_unregister(MLX4_MP_NAME);
361 }