1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2019 6WIND S.A.
3 * Copyright 2019 Mellanox Technologies, Ltd
11 #include <rte_ethdev_driver.h>
12 #include <rte_string_fns.h>
15 #include "mlx4_rxtx.h"
16 #include "mlx4_utils.h"
19 * Initialize IPC message.
22 * Pointer to Ethernet structure.
24 * Pointer to message to fill in.
29 mp_init_msg(struct rte_eth_dev *dev, struct rte_mp_msg *msg,
30 enum mlx4_mp_req_type type)
32 struct mlx4_mp_param *param = (struct mlx4_mp_param *)msg->param;
34 memset(msg, 0, sizeof(*msg));
35 strlcpy(msg->name, MLX4_MP_NAME, sizeof(msg->name));
36 msg->len_param = sizeof(*param);
38 param->port_id = dev->data->port_id;
42 * IPC message handler of primary process.
45 * Pointer to Ethernet structure.
47 * Pointer to the peer socket path.
50 * 0 on success, negative errno value otherwise and rte_errno is set.
53 mp_primary_handle(const struct rte_mp_msg *mp_msg, const void *peer)
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;
65 assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
66 if (!rte_eth_dev_is_valid_port(param->port_id)) {
68 ERROR("port %u invalid port ID", param->port_id);
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);
81 case MLX4_MP_REQ_VERBS_CMD_FD:
82 mp_init_msg(dev, &mp_res, param->type);
84 mp_res.fds[0] = priv->ctx->cmd_fd;
86 ret = rte_mp_reply(&mp_res, peer);
90 ERROR("port %u invalid mp request type", dev->data->port_id);
97 * IPC message handler of a secondary process.
100 * Pointer to Ethernet structure.
102 * Pointer to the peer socket path.
105 * 0 on success, a negative errno value otherwise and rte_errno is set.
108 mp_secondary_handle(const struct rte_mp_msg *mp_msg, const void *peer)
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;
117 assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
118 if (!rte_eth_dev_is_valid_port(param->port_id)) {
120 ERROR("port %u invalid port ID", param->port_id);
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);
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);
132 ret = rte_mp_reply(&mp_res, peer);
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;
139 mp_init_msg(dev, &mp_res, param->type);
141 ret = rte_mp_reply(&mp_res, peer);
145 ERROR("port %u invalid mp request type", dev->data->port_id);
152 * Broadcast request of stopping/starting data-path to secondary processes.
155 * Pointer to Ethernet structure.
160 mp_req_on_rxtx(struct rte_eth_dev *dev, enum mlx4_mp_req_type type)
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};
170 assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
171 if (!mlx4_shared_data->secondary_cnt)
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);
178 mp_init_msg(dev, &mp_req, type);
179 ret = rte_mp_request_sync(&mp_req, &mp_rep, &ts);
181 if (rte_errno != ENOTSUP)
182 ERROR("port %u failed to request stop/start Rx/Tx (%d)",
183 dev->data->port_id, type);
186 if (mp_rep.nb_sent != mp_rep.nb_received) {
187 ERROR("port %u not all secondaries responded (req_type %d)",
188 dev->data->port_id, type);
191 for (i = 0; i < mp_rep.nb_received; i++) {
192 mp_res = &mp_rep.msgs[i];
193 res = (struct mlx4_mp_param *)mp_res->param;
195 ERROR("port %u request failed on secondary #%d",
196 dev->data->port_id, i);
205 * Broadcast request of starting data-path to secondary processes. The request
209 * Pointer to Ethernet structure.
212 mlx4_mp_req_start_rxtx(struct rte_eth_dev *dev)
214 mp_req_on_rxtx(dev, MLX4_MP_REQ_START_RXTX);
218 * Broadcast request of stopping data-path to secondary processes. The request
222 * Pointer to Ethernet structure.
225 mlx4_mp_req_stop_rxtx(struct rte_eth_dev *dev)
227 mp_req_on_rxtx(dev, MLX4_MP_REQ_STOP_RXTX);
231 * Request Memory Region creation to the primary process.
234 * Pointer to Ethernet structure.
236 * Target virtual address to register.
239 * 0 on success, a negative errno value otherwise and rte_errno is set.
242 mlx4_mp_req_mr_create(struct rte_eth_dev *dev, uintptr_t addr)
244 struct rte_mp_msg mp_req;
245 struct rte_mp_msg *mp_res;
246 struct rte_mp_reply mp_rep;
247 struct mlx4_mp_param *req = (struct mlx4_mp_param *)mp_req.param;
248 struct mlx4_mp_param *res;
249 struct timespec ts = {.tv_sec = MLX4_MP_REQ_TIMEOUT_SEC, .tv_nsec = 0};
252 assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
253 mp_init_msg(dev, &mp_req, MLX4_MP_REQ_CREATE_MR);
254 req->args.addr = addr;
255 ret = rte_mp_request_sync(&mp_req, &mp_rep, &ts);
257 ERROR("port %u request to primary process failed",
261 assert(mp_rep.nb_received == 1);
262 mp_res = &mp_rep.msgs[0];
263 res = (struct mlx4_mp_param *)mp_res->param;
272 * IPC message handler of primary process.
275 * Pointer to Ethernet structure.
278 * fd on success, a negative errno value otherwise and rte_errno is set.
281 mlx4_mp_req_verbs_cmd_fd(struct rte_eth_dev *dev)
283 struct rte_mp_msg mp_req;
284 struct rte_mp_msg *mp_res;
285 struct rte_mp_reply mp_rep;
286 struct mlx4_mp_param *res;
287 struct timespec ts = {.tv_sec = MLX4_MP_REQ_TIMEOUT_SEC, .tv_nsec = 0};
290 assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
291 mp_init_msg(dev, &mp_req, MLX4_MP_REQ_VERBS_CMD_FD);
292 ret = rte_mp_request_sync(&mp_req, &mp_rep, &ts);
294 ERROR("port %u request to primary process failed",
298 assert(mp_rep.nb_received == 1);
299 mp_res = &mp_rep.msgs[0];
300 res = (struct mlx4_mp_param *)mp_res->param;
302 rte_errno = -res->result;
303 ERROR("port %u failed to get command FD from primary process",
308 assert(mp_res->num_fds == 1);
309 ret = mp_res->fds[0];
310 DEBUG("port %u command FD from primary is %d",
311 dev->data->port_id, ret);
318 * Initialize by primary process.
321 mlx4_mp_init_primary(void)
325 assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
327 /* primary is allowed to not support IPC */
328 ret = rte_mp_action_register(MLX4_MP_NAME, mp_primary_handle);
329 if (ret && rte_errno != ENOTSUP)
335 * Un-initialize by primary process.
338 mlx4_mp_uninit_primary(void)
340 assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
341 rte_mp_action_unregister(MLX4_MP_NAME);
345 * Initialize by secondary process.
348 mlx4_mp_init_secondary(void)
350 assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
351 return rte_mp_action_register(MLX4_MP_NAME, mp_secondary_handle);
355 * Un-initialize by secondary process.
358 mlx4_mp_uninit_secondary(void)
360 assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
361 rte_mp_action_unregister(MLX4_MP_NAME);