1c3b657a6a
Add support for rte_flow_item_raw to parse custom L2 and L3 protocols. Signed-off-by: Satheesh Paul <psatheesh@marvell.com> Acked-by: Jerin Jacob <jerinj@marvell.com>
181 lines
4.3 KiB
C
181 lines
4.3 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(C) 2021 Marvell.
|
|
*/
|
|
|
|
#include <inttypes.h>
|
|
#include <math.h>
|
|
|
|
#include "cnxk_ethdev.h"
|
|
|
|
static int
|
|
parse_flow_max_priority(const char *key, const char *value, void *extra_args)
|
|
{
|
|
RTE_SET_USED(key);
|
|
uint16_t val;
|
|
|
|
val = atoi(value);
|
|
|
|
/* Limit the max priority to 32 */
|
|
if (val < 1 || val > 32)
|
|
return -EINVAL;
|
|
|
|
*(uint16_t *)extra_args = val;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
parse_flow_prealloc_size(const char *key, const char *value, void *extra_args)
|
|
{
|
|
RTE_SET_USED(key);
|
|
uint16_t val;
|
|
|
|
val = atoi(value);
|
|
|
|
/* Limit the prealloc size to 32 */
|
|
if (val < 1 || val > 32)
|
|
return -EINVAL;
|
|
|
|
*(uint16_t *)extra_args = val;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
parse_reta_size(const char *key, const char *value, void *extra_args)
|
|
{
|
|
RTE_SET_USED(key);
|
|
uint32_t val;
|
|
|
|
val = atoi(value);
|
|
|
|
if (val <= ETH_RSS_RETA_SIZE_64)
|
|
val = ROC_NIX_RSS_RETA_SZ_64;
|
|
else if (val > ETH_RSS_RETA_SIZE_64 && val <= ETH_RSS_RETA_SIZE_128)
|
|
val = ROC_NIX_RSS_RETA_SZ_128;
|
|
else if (val > ETH_RSS_RETA_SIZE_128 && val <= ETH_RSS_RETA_SIZE_256)
|
|
val = ROC_NIX_RSS_RETA_SZ_256;
|
|
else
|
|
val = ROC_NIX_RSS_RETA_SZ_64;
|
|
|
|
*(uint16_t *)extra_args = val;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
parse_flag(const char *key, const char *value, void *extra_args)
|
|
{
|
|
RTE_SET_USED(key);
|
|
|
|
*(uint16_t *)extra_args = atoi(value);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
parse_sqb_count(const char *key, const char *value, void *extra_args)
|
|
{
|
|
RTE_SET_USED(key);
|
|
uint32_t val;
|
|
|
|
val = atoi(value);
|
|
|
|
*(uint16_t *)extra_args = val;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
parse_switch_header_type(const char *key, const char *value, void *extra_args)
|
|
{
|
|
RTE_SET_USED(key);
|
|
|
|
if (strcmp(value, "higig2") == 0)
|
|
*(uint16_t *)extra_args = ROC_PRIV_FLAGS_HIGIG;
|
|
|
|
if (strcmp(value, "dsa") == 0)
|
|
*(uint16_t *)extra_args = ROC_PRIV_FLAGS_EDSA;
|
|
|
|
if (strcmp(value, "chlen90b") == 0)
|
|
*(uint16_t *)extra_args = ROC_PRIV_FLAGS_LEN_90B;
|
|
|
|
if (strcmp(value, "exdsa") == 0)
|
|
*(uint16_t *)extra_args = ROC_PRIV_FLAGS_EXDSA;
|
|
|
|
if (strcmp(value, "vlan_exdsa") == 0)
|
|
*(uint16_t *)extra_args = ROC_PRIV_FLAGS_VLAN_EXDSA;
|
|
|
|
return 0;
|
|
}
|
|
|
|
#define CNXK_RSS_RETA_SIZE "reta_size"
|
|
#define CNXK_SCL_ENABLE "scalar_enable"
|
|
#define CNXK_MAX_SQB_COUNT "max_sqb_count"
|
|
#define CNXK_FLOW_PREALLOC_SIZE "flow_prealloc_size"
|
|
#define CNXK_FLOW_MAX_PRIORITY "flow_max_priority"
|
|
#define CNXK_SWITCH_HEADER_TYPE "switch_header"
|
|
#define CNXK_RSS_TAG_AS_XOR "tag_as_xor"
|
|
#define CNXK_LOCK_RX_CTX "lock_rx_ctx"
|
|
|
|
int
|
|
cnxk_ethdev_parse_devargs(struct rte_devargs *devargs, struct cnxk_eth_dev *dev)
|
|
{
|
|
uint16_t reta_sz = ROC_NIX_RSS_RETA_SZ_64;
|
|
uint16_t sqb_count = CNXK_NIX_TX_MAX_SQB;
|
|
uint16_t flow_prealloc_size = 1;
|
|
uint16_t switch_header_type = 0;
|
|
uint16_t flow_max_priority = 3;
|
|
uint16_t rss_tag_as_xor = 0;
|
|
uint16_t scalar_enable = 0;
|
|
uint8_t lock_rx_ctx = 0;
|
|
struct rte_kvargs *kvlist;
|
|
|
|
if (devargs == NULL)
|
|
goto null_devargs;
|
|
|
|
kvlist = rte_kvargs_parse(devargs->args, NULL);
|
|
if (kvlist == NULL)
|
|
goto exit;
|
|
|
|
rte_kvargs_process(kvlist, CNXK_RSS_RETA_SIZE, &parse_reta_size,
|
|
&reta_sz);
|
|
rte_kvargs_process(kvlist, CNXK_SCL_ENABLE, &parse_flag,
|
|
&scalar_enable);
|
|
rte_kvargs_process(kvlist, CNXK_MAX_SQB_COUNT, &parse_sqb_count,
|
|
&sqb_count);
|
|
rte_kvargs_process(kvlist, CNXK_FLOW_PREALLOC_SIZE,
|
|
&parse_flow_prealloc_size, &flow_prealloc_size);
|
|
rte_kvargs_process(kvlist, CNXK_FLOW_MAX_PRIORITY,
|
|
&parse_flow_max_priority, &flow_max_priority);
|
|
rte_kvargs_process(kvlist, CNXK_SWITCH_HEADER_TYPE,
|
|
&parse_switch_header_type, &switch_header_type);
|
|
rte_kvargs_process(kvlist, CNXK_RSS_TAG_AS_XOR, &parse_flag,
|
|
&rss_tag_as_xor);
|
|
rte_kvargs_process(kvlist, CNXK_LOCK_RX_CTX, &parse_flag, &lock_rx_ctx);
|
|
rte_kvargs_free(kvlist);
|
|
|
|
null_devargs:
|
|
dev->scalar_ena = !!scalar_enable;
|
|
dev->nix.rss_tag_as_xor = !!rss_tag_as_xor;
|
|
dev->nix.max_sqb_count = sqb_count;
|
|
dev->nix.reta_sz = reta_sz;
|
|
dev->nix.lock_rx_ctx = lock_rx_ctx;
|
|
dev->npc.flow_prealloc_size = flow_prealloc_size;
|
|
dev->npc.flow_max_priority = flow_max_priority;
|
|
dev->npc.switch_header_type = switch_header_type;
|
|
return 0;
|
|
|
|
exit:
|
|
return -EINVAL;
|
|
}
|
|
|
|
RTE_PMD_REGISTER_PARAM_STRING(net_cnxk,
|
|
CNXK_RSS_RETA_SIZE "=<64|128|256>"
|
|
CNXK_SCL_ENABLE "=1"
|
|
CNXK_MAX_SQB_COUNT "=<8-512>"
|
|
CNXK_FLOW_PREALLOC_SIZE "=<1-32>"
|
|
CNXK_FLOW_MAX_PRIORITY "=<1-32>"
|
|
CNXK_SWITCH_HEADER_TYPE "=<higig2|dsa|chlen90b>"
|
|
CNXK_RSS_TAG_AS_XOR "=1");
|