#
2f69bbd8 |
| 24-May-2022 |
Harman Kalra <hkalra@marvell.com> |
net/octeontx: support allmulticast
Implement allmulticast operations for octeontx driver: rte_eth_allmulticast_enable()/rte_eth_allmulticast_disable().
Signed-off-by: Harman Kalra <hkalra@marvell.c
net/octeontx: support allmulticast
Implement allmulticast operations for octeontx driver: rte_eth_allmulticast_enable()/rte_eth_allmulticast_disable().
Signed-off-by: Harman Kalra <hkalra@marvell.com>
show more ...
|
#
c6b97d67 |
| 24-May-2022 |
Harman Kalra <hkalra@marvell.com> |
net/octeontx: support xstats
Adding support for xstats eth operations.
Signed-off-by: Harman Kalra <hkalra@marvell.com>
|
#
a84ff1d9 |
| 24-May-2022 |
Harman Kalra <hkalra@marvell.com> |
net/octeontx: support setting link attributes
Adding support to configure link attributes like speed, duplex, negotiation.
Signed-off-by: Harman Kalra <hkalra@marvell.com>
|
#
241a6500 |
| 16-Mar-2020 |
Vamsi Attunuru <vattunuru@marvell.com> |
net/octeontx: support flow control
Patch adds ethdev flow control set/get callback ops, pmd enables modifying flow control attributes like rx_pause, tx_pause, high & low water mark.
Signed-off-by:
net/octeontx: support flow control
Patch adds ethdev flow control set/get callback ops, pmd enables modifying flow control attributes like rx_pause, tx_pause, high & low water mark.
Signed-off-by: Vamsi Attunuru <vattunuru@marvell.com> Acked-by: Harman Kalra <hkalra@marvell.com>
show more ...
|
#
8b42b07e |
| 16-Mar-2020 |
Harman Kalra <hkalra@marvell.com> |
net/octeontx: support set link up/down
Adding support for setting link up/down eth operation. It is used to enable disable lmac. Also implemented a poll function for getting the link status at regu
net/octeontx: support set link up/down
Adding support for setting link up/down eth operation. It is used to enable disable lmac. Also implemented a poll function for getting the link status at regular intervals.
Signed-off-by: Harman Kalra <hkalra@marvell.com>
show more ...
|
#
3151e6a6 |
| 16-Mar-2020 |
Harman Kalra <hkalra@marvell.com> |
net/octeontx: support MTU
Adding support for mtu eth operation which configures mtu based on max pkt len.
Signed-off-by: Harman Kalra <hkalra@marvell.com>
|
#
9614459b |
| 29-Jan-2020 |
Sunil Kumar Kori <skori@marvell.com> |
net/octeontx: fix user supplied MAC address index
Earlier after a successful mac_addr_add operation, index was returned by underlying layer which was unused but same as provided by DPDK API.
So API
net/octeontx: fix user supplied MAC address index
Earlier after a successful mac_addr_add operation, index was returned by underlying layer which was unused but same as provided by DPDK API.
So API is enhanced to use application provided index location to add MAC address entry.
Fixes: e4373bf1b3f5 ("net/octeontx: add unicast MAC filter")
Signed-off-by: Sunil Kumar Kori <skori@marvell.com> Acked-by: Harman Kalra <hkalra@marvell.com>
show more ...
|
#
e4373bf1 |
| 13-Jan-2020 |
Sunil Kumar Kori <skori@marvell.com> |
net/octeontx: add unicast MAC filter
At BGX, DMAC filter table can be enabled to allow defined hosts. Patch implements 'mac_addr_add' and 'mac_addr_remove' ops to add/remove MAC filters which uses B
net/octeontx: add unicast MAC filter
At BGX, DMAC filter table can be enabled to allow defined hosts. Patch implements 'mac_addr_add' and 'mac_addr_remove' ops to add/remove MAC filters which uses BGX DMAC filter table.
Signed-off-by: Sunil Kumar Kori <skori@marvell.com> Acked-by: Harman Kalra <hkalra@marvell.com>
show more ...
|
#
b4134b2d |
| 20-Nov-2019 |
Pavan Nikhilesh <pbhagavatula@marvell.com> |
common/octeontx: update mbox to version 1.1.3
Sync mail box data structures to version 1.1.3. Add mail box version verification and defer initializing octeontx devices if mail box version mismatches
common/octeontx: update mbox to version 1.1.3
Sync mail box data structures to version 1.1.3. Add mail box version verification and defer initializing octeontx devices if mail box version mismatches. Update OCTEON TX limitaion with max mempool size used.
Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com> Reviewed-by: Jerin Jacob <jerinj@marvell.com>
show more ...
|
#
aaf4363e |
| 08-Jan-2018 |
Jerin Jacob <jerin.jacob@caviumnetworks.com> |
drivers: use SPDX tag for Cavium copyright files
Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com> Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
|
#
89ee1e94 |
| 16-Oct-2017 |
Santosh Shukla <santosh.shukla@caviumnetworks.com> |
mempool/octeontx: move mbox from event to mempool
Octeontx mempool pmd need mailbox for pool setup. That mailbox was defined at drivers/event/octeontx. So mempool has dependency on event/octeontx dr
mempool/octeontx: move mbox from event to mempool
Octeontx mempool pmd need mailbox for pool setup. That mailbox was defined at drivers/event/octeontx. So mempool has dependency on event/octeontx driver and commit:8700239f7767 has added make rule which makes sure event/* get build before mempool, but this rule introduces cyclic dependency and may create problem to future feature addition in drivers/Makefile.
Same problem noticed and reported in below thread: http://dpdk.org/ml/archives/dev/2017-October/079187.html
The patch solves problem by moving mbox definition from drivers/event/octeontx to drivers/mempool/octeontx. Moving mbox files involves below changes:
* Renamed ssovf_mbox.[ch] --> octeontx_mbox.[ch] * Renamed ssovf_probe.c --> octeontx_ssovf.c * Introduced pool logger file. * Moved API from rte_pmd_octeontx_ssovf_version.map to rte_mempool_octeontx_version.map. * Respective Makefile changes done in drivers/event/octeontx/Makefile and drivers/mempool/octeontx/Makefile.
Fixes: 8700239f7767 ("mempool/octeontx: add build and log infrastructure")
Reported-by: Hemant Agrawal <hemant.agrawal@nxp.com> Signed-off-by: Santosh Shukla <santosh.shukla@caviumnetworks.com> Tested-by: Hemant Agrawal <hemant.agrawal@nxp.com> Reviewed-by: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
show more ...
|
#
e242dd1c |
| 08-Oct-2017 |
Jerin Jacob <jerin.jacob@caviumnetworks.com> |
net/octeontx/base: add remaining BGX operations
Adding remaining BGX operations like, link status, statistics, promiscuous configuration etc.
Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.
net/octeontx/base: add remaining BGX operations
Adding remaining BGX operations like, link status, statistics, promiscuous configuration etc.
Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com> Signed-off-by: Santosh Shukla <santosh.shukla@caviumnetworks.com>
show more ...
|
#
4d027880 |
| 08-Oct-2017 |
Jerin Jacob <jerin.jacob@caviumnetworks.com> |
net/octeontx/base: add base BGX operations
BGX is an HW MAC interface. This patch adds the basic BGX operation like open, close, start and stop. These operations are implemented through mailbox mess
net/octeontx/base: add base BGX operations
BGX is an HW MAC interface. This patch adds the basic BGX operation like open, close, start and stop. These operations are implemented through mailbox messages and kernel PF driver being the server to process the message with the physical port identifier.
Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com> Signed-off-by: Santosh Shukla <santosh.shukla@caviumnetworks.com>
show more ...
|