1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2020 Marvell International Ltd.
*/
#include <errno.h>
#include <stdlib.h>
#include <eal_export.h>
#include <rte_ethdev.h>
#include <rte_graph.h>
#include "rte_node_eth_api.h"
#include "ethdev_rx_priv.h"
#include "ethdev_tx_priv.h"
#include "ip4_rewrite_priv.h"
#include "ip6_rewrite_priv.h"
#include "interface_tx_feature_priv.h"
#include "node_private.h"
static struct ethdev_ctrl {
uint16_t nb_graphs;
} ctrl;
RTE_EXPORT_SYMBOL(rte_node_eth_config)
int
rte_node_eth_config(struct rte_node_ethdev_config *conf, uint16_t nb_confs,
uint16_t nb_graphs)
{
struct rte_node_register *if_tx_feature_node;
struct rte_node_register *ip4_rewrite_node;
struct rte_node_register *ip6_rewrite_node;
struct ethdev_tx_node_main *tx_node_data;
uint16_t tx_q_used, rx_q_used, port_id;
struct rte_node_register *tx_node;
char name[RTE_NODE_NAMESIZE];
const char *next_nodes = name;
struct rte_mempool *mp;
int i, j, rc;
uint32_t id;
if_tx_feature_node = if_tx_feature_node_get();
ip4_rewrite_node = ip4_rewrite_node_get();
ip6_rewrite_node = ip6_rewrite_node_get();
tx_node_data = ethdev_tx_node_data_get();
tx_node = ethdev_tx_node_get();
for (i = 0; i < nb_confs; i++) {
port_id = conf[i].port_id;
if (!rte_eth_dev_is_valid_port(port_id))
return -EINVAL;
/* Check for mbuf minimum private size requirement */
for (j = 0; j < conf[i].mp_count; j++) {
mp = conf[i].mp[j];
if (!mp)
continue;
/* Check for minimum private space */
if (rte_pktmbuf_priv_size(mp) < NODE_MBUF_PRIV2_SIZE) {
node_err("ethdev",
"Minimum mbuf priv size requirement not met by mp %s",
mp->name);
return -EINVAL;
}
}
rx_q_used = conf[i].num_rx_queues;
tx_q_used = conf[i].num_tx_queues;
/* Check if we have a txq for each worker */
if (tx_q_used < nb_graphs)
return -EINVAL;
/* Create node for each rx port queue pair */
for (j = 0; j < rx_q_used; j++) {
struct ethdev_rx_node_main *rx_node_data;
struct rte_node_register *rx_node;
ethdev_rx_node_elem_t *elem;
rx_node_data = ethdev_rx_get_node_data_get();
rx_node = ethdev_rx_node_get();
snprintf(name, sizeof(name), "%u-%u", port_id, j);
/* Clone a new rx node with same edges as parent */
id = rte_node_clone(rx_node->id, name);
if (id == RTE_NODE_ID_INVALID)
return -EIO;
/* Add it to list of ethdev rx nodes for lookup */
elem = malloc(sizeof(ethdev_rx_node_elem_t));
if (elem == NULL)
return -ENOMEM;
memset(elem, 0, sizeof(ethdev_rx_node_elem_t));
elem->ctx.port_id = port_id;
elem->ctx.queue_id = j;
elem->ctx.cls_next = ETHDEV_RX_NEXT_PKT_CLS;
elem->nid = id;
elem->next = rx_node_data->head;
rx_node_data->head = elem;
node_dbg("ethdev", "Rx node %s-%s: is at %u",
rx_node->name, name, id);
}
/* Create a per port tx node from base node */
snprintf(name, sizeof(name), "%u", port_id);
/* Clone a new node with same edges as parent */
id = rte_node_clone(tx_node->id, name);
tx_node_data->nodes[port_id] = id;
node_dbg("ethdev", "Tx node %s-%s: is at %u", tx_node->name,
name, id);
/* Prepare the actual name of the cloned node */
snprintf(name, sizeof(name), "ethdev_tx-%u", port_id);
/* Add this tx port node as next to ip4_rewrite_node */
rte_node_edge_update(ip4_rewrite_node->id, RTE_EDGE_ID_INVALID,
&next_nodes, 1);
/* Assuming edge id is the last one alloc'ed */
rc = ip4_rewrite_set_next(
port_id, rte_node_edge_count(ip4_rewrite_node->id) - 1);
if (rc < 0)
return rc;
/* Add this tx port node as next to ip6_rewrite_node */
rte_node_edge_update(ip6_rewrite_node->id, RTE_EDGE_ID_INVALID,
&next_nodes, 1);
/* Assuming edge id is the last one alloc'ed */
rc = ip6_rewrite_set_next(
port_id, rte_node_edge_count(ip6_rewrite_node->id) - 1);
if (rc < 0)
return rc;
/* Add this tx port node to if_tx_feature_node */
rte_node_edge_update(if_tx_feature_node->id, RTE_EDGE_ID_INVALID,
&next_nodes, 1);
rc = if_tx_feature_node_set_next(port_id,
rte_node_edge_count(if_tx_feature_node->id) - 1);
}
ctrl.nb_graphs = nb_graphs;
return 0;
}
RTE_EXPORT_EXPERIMENTAL_SYMBOL(rte_node_ethdev_rx_next_update, 24.03)
int
rte_node_ethdev_rx_next_update(rte_node_t id, const char *edge_name)
{
struct ethdev_rx_node_main *data;
ethdev_rx_node_elem_t *elem;
char **next_nodes;
int rc = -EINVAL;
uint16_t i = 0;
uint32_t size;
if (edge_name == NULL)
goto exit;
size = rte_node_edge_get(id, NULL);
if (size == RTE_NODE_ID_INVALID)
goto exit;
next_nodes = calloc((size / sizeof(char *)) + 1, sizeof(*next_nodes));
if (next_nodes == NULL) {
rc = -ENOMEM;
goto exit;
}
size = rte_node_edge_get(id, next_nodes);
while (next_nodes[i] != NULL) {
if (strcmp(edge_name, next_nodes[i]) == 0) {
data = ethdev_rx_get_node_data_get();
elem = data->head;
while (elem->next != data->head) {
if (elem->nid == id) {
elem->ctx.cls_next = i;
rc = 0;
goto found;
}
elem = elem->next;
}
}
i++;
}
found:
free(next_nodes);
exit:
return rc;
}
|