net/cnxk: support multicast filter
authorSunil Kumar Kori <skori@marvell.com>
Wed, 23 Jun 2021 04:47:01 +0000 (10:17 +0530)
committerJerin Jacob <jerinj@marvell.com>
Wed, 30 Jun 2021 01:36:38 +0000 (03:36 +0200)
commit21cc840198d803db84ca0730c2eb944139e41459
treef6cc31ded9d6ecf15d8022bc502eb2e6d5c7b8ae
parent00242a687de63329de81b363deb96d28c87e0bcc
net/cnxk: support multicast filter

Patch adds multicast filter support for cn9k and cn10k platforms.

CGX DMAC filter table(32 entries) is divided among all LMACs
connected to it i.e. if CGX has 4 LMACs then each LMAC can have
up to 8 filters. If CGX has 1 LMAC then it can have up to 32
filters.

Above mentioned filter table is used to install unicast and multicast
DMAC address filters. Unicast filters are installed via
rte_eth_dev_mac_addr_add API while multicast filters are installed
via rte_eth_dev_set_mc_addr_list API.

So in total, supported MAC filters are equal to DMAC filters plus
mcast filters.

Signed-off-by: Sunil Kumar Kori <skori@marvell.com>
doc/guides/nics/features/cnxk.ini
doc/guides/nics/features/cnxk_vec.ini
drivers/net/cnxk/cnxk_ethdev.c
drivers/net/cnxk/cnxk_ethdev.h
drivers/net/cnxk/cnxk_ethdev_ops.c