1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation
10 #include <rte_ethdev.h>
11 #include <rte_ether.h>
13 #include <rte_byteorder.h>
15 #include <rte_port_ring.h>
16 #include <rte_table_lpm_ipv6.h>
17 #include <rte_pipeline.h>
22 app_main_loop_worker_pipeline_lpm_ipv6(void) {
23 struct rte_pipeline_params pipeline_params = {
25 .socket_id = rte_socket_id(),
28 struct rte_pipeline *p;
29 uint32_t port_in_id[APP_MAX_PORTS];
30 uint32_t port_out_id[APP_MAX_PORTS];
35 "Core %u is doing work (pipeline with IPv6 LPM table)\n",
38 /* Pipeline configuration */
39 p = rte_pipeline_create(&pipeline_params);
41 rte_panic("Unable to configure the pipeline\n");
43 /* Input port configuration */
44 for (i = 0; i < app.n_ports; i++) {
45 struct rte_port_ring_reader_params port_ring_params = {
46 .ring = app.rings_rx[i],
49 struct rte_pipeline_port_in_params port_params = {
50 .ops = &rte_port_ring_reader_ops,
51 .arg_create = (void *) &port_ring_params,
54 .burst_size = app.burst_size_worker_read,
57 if (rte_pipeline_port_in_create(p, &port_params,
59 rte_panic("Unable to configure input port for "
63 /* Output port configuration */
64 for (i = 0; i < app.n_ports; i++) {
65 struct rte_port_ring_writer_params port_ring_params = {
66 .ring = app.rings_tx[i],
67 .tx_burst_sz = app.burst_size_worker_write,
70 struct rte_pipeline_port_out_params port_params = {
71 .ops = &rte_port_ring_writer_ops,
72 .arg_create = (void *) &port_ring_params,
77 if (rte_pipeline_port_out_create(p, &port_params,
79 rte_panic("Unable to configure output port for "
83 /* Table configuration */
85 struct rte_table_lpm_ipv6_params table_lpm_ipv6_params = {
88 .number_tbl8s = 1 << 21,
90 sizeof(struct rte_pipeline_table_entry),
91 .offset = APP_METADATA_OFFSET(32),
94 struct rte_pipeline_table_params table_params = {
95 .ops = &rte_table_lpm_ipv6_ops,
96 .arg_create = &table_lpm_ipv6_params,
98 .f_action_miss = NULL,
100 .action_data_size = 0,
103 if (rte_pipeline_table_create(p, &table_params, &table_id))
104 rte_panic("Unable to configure the IPv6 LPM table\n");
107 /* Interconnecting ports and tables */
108 for (i = 0; i < app.n_ports; i++)
109 if (rte_pipeline_port_in_connect_to_table(p, port_in_id[i],
111 rte_panic("Unable to connect input port %u to "
112 "table %u\n", port_in_id[i], table_id);
114 /* Add entries to tables */
115 for (i = 0; i < app.n_ports; i++) {
116 struct rte_pipeline_table_entry entry = {
117 .action = RTE_PIPELINE_ACTION_PORT,
118 {.port_id = port_out_id[i & (app.n_ports - 1)]},
121 struct rte_table_lpm_ipv6_key key;
122 struct rte_pipeline_table_entry *entry_ptr;
124 int key_found, status;
126 key.depth = 8 + __builtin_popcount(app.n_ports - 1);
128 ip = rte_bswap32(i << (24 -
129 __builtin_popcount(app.n_ports - 1)));
130 memcpy(key.ip, &ip, sizeof(uint32_t));
132 printf("Adding rule to IPv6 LPM table (IPv6 destination = "
133 "%.2x%.2x:%.2x%.2x:%.2x%.2x:%.2x%.2x:"
134 "%.2x%.2x:%.2x%.2x:%.2x%.2x:%.2x%.2x/%u => "
136 key.ip[0], key.ip[1], key.ip[2], key.ip[3],
137 key.ip[4], key.ip[5], key.ip[6], key.ip[7],
138 key.ip[8], key.ip[9], key.ip[10], key.ip[11],
139 key.ip[12], key.ip[13], key.ip[14], key.ip[15],
142 status = rte_pipeline_table_entry_add(p, table_id, &key, &entry,
143 &key_found, &entry_ptr);
145 rte_panic("Unable to add entry to table %u (%d)\n",
149 /* Enable input ports */
150 for (i = 0; i < app.n_ports; i++)
151 if (rte_pipeline_port_in_enable(p, port_in_id[i]))
152 rte_panic("Unable to enable input port %u\n",
155 /* Check pipeline consistency */
156 if (rte_pipeline_check(p) < 0)
157 rte_panic("Pipeline consistency check failed\n");
167 if ((i & APP_FLUSH) == 0)
168 rte_pipeline_flush(p);