e16adf08e5
This is a clean-up of common ethdev data freeing. All data freeing are moved to rte_eth_dev_release_port() and done only in case of primary process. It is probably fixing some memory leaks for PMDs which were not freeing all data. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>
630 lines
16 KiB
C
630 lines
16 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright 2018 NXP
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
#include <rte_ethdev_pci.h>
|
|
|
|
#include "enetc_logs.h"
|
|
#include "enetc.h"
|
|
|
|
int enetc_logtype_pmd;
|
|
|
|
/* Functions Prototypes */
|
|
static int enetc_dev_configure(struct rte_eth_dev *dev);
|
|
static int enetc_dev_start(struct rte_eth_dev *dev);
|
|
static void enetc_dev_stop(struct rte_eth_dev *dev);
|
|
static void enetc_dev_close(struct rte_eth_dev *dev);
|
|
static void enetc_dev_infos_get(struct rte_eth_dev *dev,
|
|
struct rte_eth_dev_info *dev_info);
|
|
static int enetc_link_update(struct rte_eth_dev *dev, int wait_to_complete);
|
|
static int enetc_hardware_init(struct enetc_eth_hw *hw);
|
|
static int enetc_rx_queue_setup(struct rte_eth_dev *dev, uint16_t rx_queue_id,
|
|
uint16_t nb_rx_desc, unsigned int socket_id,
|
|
const struct rte_eth_rxconf *rx_conf,
|
|
struct rte_mempool *mb_pool);
|
|
static void enetc_rx_queue_release(void *rxq);
|
|
static int enetc_tx_queue_setup(struct rte_eth_dev *dev, uint16_t tx_queue_id,
|
|
uint16_t nb_tx_desc, unsigned int socket_id,
|
|
const struct rte_eth_txconf *tx_conf);
|
|
static void enetc_tx_queue_release(void *txq);
|
|
static const uint32_t *enetc_supported_ptypes_get(struct rte_eth_dev *dev);
|
|
|
|
/*
|
|
* The set of PCI devices this driver supports
|
|
*/
|
|
static const struct rte_pci_id pci_id_enetc_map[] = {
|
|
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_FREESCALE, ENETC_DEV_ID) },
|
|
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_FREESCALE, ENETC_DEV_ID_VF) },
|
|
{ .vendor_id = 0, /* sentinel */ },
|
|
};
|
|
|
|
/* Features supported by this driver */
|
|
static const struct eth_dev_ops enetc_ops = {
|
|
.dev_configure = enetc_dev_configure,
|
|
.dev_start = enetc_dev_start,
|
|
.dev_stop = enetc_dev_stop,
|
|
.dev_close = enetc_dev_close,
|
|
.link_update = enetc_link_update,
|
|
.dev_infos_get = enetc_dev_infos_get,
|
|
.rx_queue_setup = enetc_rx_queue_setup,
|
|
.rx_queue_release = enetc_rx_queue_release,
|
|
.tx_queue_setup = enetc_tx_queue_setup,
|
|
.tx_queue_release = enetc_tx_queue_release,
|
|
.dev_supported_ptypes_get = enetc_supported_ptypes_get,
|
|
};
|
|
|
|
/**
|
|
* Initialisation of the enetc device
|
|
*
|
|
* @param eth_dev
|
|
* - Pointer to the structure rte_eth_dev
|
|
*
|
|
* @return
|
|
* - On success, zero.
|
|
* - On failure, negative value.
|
|
*/
|
|
static int
|
|
enetc_dev_init(struct rte_eth_dev *eth_dev)
|
|
{
|
|
int error = 0;
|
|
struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
|
|
struct enetc_eth_hw *hw =
|
|
ENETC_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
|
|
|
|
PMD_INIT_FUNC_TRACE();
|
|
eth_dev->dev_ops = &enetc_ops;
|
|
eth_dev->rx_pkt_burst = &enetc_recv_pkts;
|
|
eth_dev->tx_pkt_burst = &enetc_xmit_pkts;
|
|
|
|
/* Retrieving and storing the HW base address of device */
|
|
hw->hw.reg = (void *)pci_dev->mem_resource[0].addr;
|
|
hw->device_id = pci_dev->id.device_id;
|
|
|
|
error = enetc_hardware_init(hw);
|
|
if (error != 0) {
|
|
ENETC_PMD_ERR("Hardware initialization failed");
|
|
return -1;
|
|
}
|
|
|
|
/* Allocate memory for storing MAC addresses */
|
|
eth_dev->data->mac_addrs = rte_zmalloc("enetc_eth", ETHER_ADDR_LEN, 0);
|
|
if (!eth_dev->data->mac_addrs) {
|
|
ENETC_PMD_ERR("Failed to allocate %d bytes needed to "
|
|
"store MAC addresses",
|
|
ETHER_ADDR_LEN * 1);
|
|
error = -ENOMEM;
|
|
return -1;
|
|
}
|
|
|
|
/* Copy the permanent MAC address */
|
|
ether_addr_copy((struct ether_addr *)hw->mac.addr,
|
|
ð_dev->data->mac_addrs[0]);
|
|
|
|
ENETC_PMD_DEBUG("port_id %d vendorID=0x%x deviceID=0x%x",
|
|
eth_dev->data->port_id, pci_dev->id.vendor_id,
|
|
pci_dev->id.device_id);
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
enetc_dev_uninit(struct rte_eth_dev *eth_dev __rte_unused)
|
|
{
|
|
PMD_INIT_FUNC_TRACE();
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
enetc_dev_configure(struct rte_eth_dev *dev __rte_unused)
|
|
{
|
|
PMD_INIT_FUNC_TRACE();
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
enetc_dev_start(struct rte_eth_dev *dev)
|
|
{
|
|
struct enetc_eth_hw *hw =
|
|
ENETC_DEV_PRIVATE_TO_HW(dev->data->dev_private);
|
|
uint32_t val;
|
|
|
|
PMD_INIT_FUNC_TRACE();
|
|
val = ENETC_REG_READ(ENETC_GET_HW_ADDR(hw->hw.port,
|
|
ENETC_PM0_CMD_CFG));
|
|
ENETC_REG_WRITE(ENETC_GET_HW_ADDR(hw->hw.port, ENETC_PM0_CMD_CFG),
|
|
val | ENETC_PM0_TX_EN | ENETC_PM0_RX_EN);
|
|
|
|
/* Enable port */
|
|
val = ENETC_REG_READ(ENETC_GET_HW_ADDR(hw->hw.port, ENETC_PMR));
|
|
ENETC_REG_WRITE(ENETC_GET_HW_ADDR(hw->hw.port, ENETC_PMR),
|
|
val | ENETC_PMR_EN);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
enetc_dev_stop(struct rte_eth_dev *dev)
|
|
{
|
|
struct enetc_eth_hw *hw =
|
|
ENETC_DEV_PRIVATE_TO_HW(dev->data->dev_private);
|
|
uint32_t val;
|
|
|
|
PMD_INIT_FUNC_TRACE();
|
|
/* Disable port */
|
|
val = ENETC_REG_READ(ENETC_GET_HW_ADDR(hw->hw.port, ENETC_PMR));
|
|
ENETC_REG_WRITE(ENETC_GET_HW_ADDR(hw->hw.port, ENETC_PMR),
|
|
val & (~ENETC_PMR_EN));
|
|
|
|
val = ENETC_REG_READ(ENETC_GET_HW_ADDR(hw->hw.port,
|
|
ENETC_PM0_CMD_CFG));
|
|
ENETC_REG_WRITE(ENETC_GET_HW_ADDR(hw->hw.port, ENETC_PM0_CMD_CFG),
|
|
val & (~(ENETC_PM0_TX_EN | ENETC_PM0_RX_EN)));
|
|
}
|
|
|
|
static void
|
|
enetc_dev_close(struct rte_eth_dev *dev)
|
|
{
|
|
uint16_t i;
|
|
|
|
PMD_INIT_FUNC_TRACE();
|
|
enetc_dev_stop(dev);
|
|
|
|
for (i = 0; i < dev->data->nb_rx_queues; i++) {
|
|
enetc_rx_queue_release(dev->data->rx_queues[i]);
|
|
dev->data->rx_queues[i] = NULL;
|
|
}
|
|
dev->data->nb_rx_queues = 0;
|
|
|
|
for (i = 0; i < dev->data->nb_tx_queues; i++) {
|
|
enetc_tx_queue_release(dev->data->tx_queues[i]);
|
|
dev->data->tx_queues[i] = NULL;
|
|
}
|
|
dev->data->nb_tx_queues = 0;
|
|
}
|
|
|
|
static const uint32_t *
|
|
enetc_supported_ptypes_get(struct rte_eth_dev *dev __rte_unused)
|
|
{
|
|
static const uint32_t ptypes[] = {
|
|
RTE_PTYPE_L2_ETHER,
|
|
RTE_PTYPE_L3_IPV4,
|
|
RTE_PTYPE_L3_IPV6,
|
|
RTE_PTYPE_L4_TCP,
|
|
RTE_PTYPE_L4_UDP,
|
|
RTE_PTYPE_L4_SCTP,
|
|
RTE_PTYPE_L4_ICMP,
|
|
RTE_PTYPE_UNKNOWN
|
|
};
|
|
|
|
return ptypes;
|
|
}
|
|
|
|
/* return 0 means link status changed, -1 means not changed */
|
|
static int
|
|
enetc_link_update(struct rte_eth_dev *dev, int wait_to_complete __rte_unused)
|
|
{
|
|
struct enetc_eth_hw *hw =
|
|
ENETC_DEV_PRIVATE_TO_HW(dev->data->dev_private);
|
|
struct rte_eth_link link;
|
|
uint32_t status;
|
|
|
|
PMD_INIT_FUNC_TRACE();
|
|
|
|
memset(&link, 0, sizeof(link));
|
|
|
|
status = ENETC_REG_READ(ENETC_GET_HW_ADDR(hw->hw.port,
|
|
ENETC_PM0_STATUS));
|
|
|
|
if (status & ENETC_LINK_MODE)
|
|
link.link_duplex = ETH_LINK_FULL_DUPLEX;
|
|
else
|
|
link.link_duplex = ETH_LINK_HALF_DUPLEX;
|
|
|
|
if (status & ENETC_LINK_STATUS)
|
|
link.link_status = ETH_LINK_UP;
|
|
else
|
|
link.link_status = ETH_LINK_DOWN;
|
|
|
|
switch (status & ENETC_LINK_SPEED_MASK) {
|
|
case ENETC_LINK_SPEED_1G:
|
|
link.link_speed = ETH_SPEED_NUM_1G;
|
|
break;
|
|
|
|
case ENETC_LINK_SPEED_100M:
|
|
link.link_speed = ETH_SPEED_NUM_100M;
|
|
break;
|
|
|
|
default:
|
|
case ENETC_LINK_SPEED_10M:
|
|
link.link_speed = ETH_SPEED_NUM_10M;
|
|
}
|
|
|
|
return rte_eth_linkstatus_set(dev, &link);
|
|
}
|
|
|
|
static int
|
|
enetc_hardware_init(struct enetc_eth_hw *hw)
|
|
{
|
|
uint32_t psipmr = 0;
|
|
|
|
PMD_INIT_FUNC_TRACE();
|
|
/* Calculating and storing the base HW addresses */
|
|
hw->hw.port = (void *)((size_t)hw->hw.reg + ENETC_PORT_BASE);
|
|
hw->hw.global = (void *)((size_t)hw->hw.reg + ENETC_GLOBAL_BASE);
|
|
|
|
/* Enabling Station Interface */
|
|
ENETC_REG_WRITE(ENETC_GET_HW_ADDR(hw->hw.reg, ENETC_SIMR),
|
|
ENETC_SIMR_EN);
|
|
|
|
/* Setting to accept broadcast packets for each inetrface */
|
|
psipmr |= ENETC_PSIPMR_SET_UP(0) | ENETC_PSIPMR_SET_MP(0) |
|
|
ENETC_PSIPMR_SET_VLAN_MP(0);
|
|
psipmr |= ENETC_PSIPMR_SET_UP(1) | ENETC_PSIPMR_SET_MP(1) |
|
|
ENETC_PSIPMR_SET_VLAN_MP(1);
|
|
psipmr |= ENETC_PSIPMR_SET_UP(2) | ENETC_PSIPMR_SET_MP(2) |
|
|
ENETC_PSIPMR_SET_VLAN_MP(2);
|
|
|
|
ENETC_REG_WRITE(ENETC_GET_HW_ADDR(hw->hw.port, ENETC_PSIPMR),
|
|
psipmr);
|
|
|
|
/* Enabling broadcast address */
|
|
ENETC_REG_WRITE(ENETC_GET_HW_ADDR(hw->hw.port, ENETC_PSIPMAR0(0)),
|
|
0xFFFFFFFF);
|
|
ENETC_REG_WRITE(ENETC_GET_HW_ADDR(hw->hw.port, ENETC_PSIPMAR1(0)),
|
|
0xFFFF << 16);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
enetc_dev_infos_get(struct rte_eth_dev *dev __rte_unused,
|
|
struct rte_eth_dev_info *dev_info)
|
|
{
|
|
PMD_INIT_FUNC_TRACE();
|
|
dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
|
|
.nb_max = MAX_BD_COUNT,
|
|
.nb_min = MIN_BD_COUNT,
|
|
.nb_align = BD_ALIGN,
|
|
};
|
|
dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
|
|
.nb_max = MAX_BD_COUNT,
|
|
.nb_min = MIN_BD_COUNT,
|
|
.nb_align = BD_ALIGN,
|
|
};
|
|
dev_info->max_rx_queues = MAX_RX_RINGS;
|
|
dev_info->max_tx_queues = MAX_TX_RINGS;
|
|
dev_info->max_rx_pktlen = 1500;
|
|
}
|
|
|
|
static int
|
|
enetc_alloc_txbdr(struct enetc_bdr *txr, uint16_t nb_desc)
|
|
{
|
|
int size;
|
|
|
|
size = nb_desc * sizeof(struct enetc_swbd);
|
|
txr->q_swbd = rte_malloc(NULL, size, RTE_CACHE_LINE_SIZE);
|
|
if (txr->q_swbd == NULL)
|
|
return -ENOMEM;
|
|
|
|
size = nb_desc * sizeof(struct enetc_tx_bd);
|
|
txr->bd_base = rte_malloc(NULL, size, RTE_CACHE_LINE_SIZE);
|
|
if (txr->bd_base == NULL) {
|
|
rte_free(txr->q_swbd);
|
|
txr->q_swbd = NULL;
|
|
return -ENOMEM;
|
|
}
|
|
|
|
txr->bd_count = nb_desc;
|
|
txr->next_to_clean = 0;
|
|
txr->next_to_use = 0;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
enetc_free_bdr(struct enetc_bdr *rxr)
|
|
{
|
|
rte_free(rxr->q_swbd);
|
|
rte_free(rxr->bd_base);
|
|
rxr->q_swbd = NULL;
|
|
rxr->bd_base = NULL;
|
|
}
|
|
|
|
static void
|
|
enetc_setup_txbdr(struct enetc_hw *hw, struct enetc_bdr *tx_ring)
|
|
{
|
|
int idx = tx_ring->index;
|
|
uintptr_t base_addr;
|
|
uint32_t tbmr;
|
|
|
|
base_addr = (uintptr_t)tx_ring->bd_base;
|
|
enetc_txbdr_wr(hw, idx, ENETC_TBBAR0,
|
|
lower_32_bits((uint64_t)base_addr));
|
|
enetc_txbdr_wr(hw, idx, ENETC_TBBAR1,
|
|
upper_32_bits((uint64_t)base_addr));
|
|
enetc_txbdr_wr(hw, idx, ENETC_TBLENR,
|
|
ENETC_RTBLENR_LEN(tx_ring->bd_count));
|
|
|
|
tbmr = ENETC_TBMR_EN;
|
|
/* enable ring */
|
|
enetc_txbdr_wr(hw, idx, ENETC_TBMR, tbmr);
|
|
enetc_txbdr_wr(hw, idx, ENETC_TBCIR, 0);
|
|
enetc_txbdr_wr(hw, idx, ENETC_TBCISR, 0);
|
|
tx_ring->tcir = (void *)((size_t)hw->reg +
|
|
ENETC_BDR(TX, idx, ENETC_TBCIR));
|
|
tx_ring->tcisr = (void *)((size_t)hw->reg +
|
|
ENETC_BDR(TX, idx, ENETC_TBCISR));
|
|
}
|
|
|
|
static int
|
|
enetc_alloc_tx_resources(struct rte_eth_dev *dev,
|
|
uint16_t queue_idx,
|
|
uint16_t nb_desc)
|
|
{
|
|
int err;
|
|
struct enetc_bdr *tx_ring;
|
|
struct rte_eth_dev_data *data = dev->data;
|
|
struct enetc_eth_adapter *priv =
|
|
ENETC_DEV_PRIVATE(data->dev_private);
|
|
|
|
tx_ring = rte_zmalloc(NULL, sizeof(struct enetc_bdr), 0);
|
|
if (tx_ring == NULL) {
|
|
ENETC_PMD_ERR("Failed to allocate TX ring memory");
|
|
err = -ENOMEM;
|
|
return -1;
|
|
}
|
|
|
|
err = enetc_alloc_txbdr(tx_ring, nb_desc);
|
|
if (err)
|
|
goto fail;
|
|
|
|
tx_ring->index = queue_idx;
|
|
tx_ring->ndev = dev;
|
|
enetc_setup_txbdr(&priv->hw.hw, tx_ring);
|
|
data->tx_queues[queue_idx] = tx_ring;
|
|
|
|
return 0;
|
|
fail:
|
|
rte_free(tx_ring);
|
|
|
|
return err;
|
|
}
|
|
|
|
static int
|
|
enetc_tx_queue_setup(struct rte_eth_dev *dev,
|
|
uint16_t queue_idx,
|
|
uint16_t nb_desc,
|
|
unsigned int socket_id __rte_unused,
|
|
const struct rte_eth_txconf *tx_conf __rte_unused)
|
|
{
|
|
int err = 0;
|
|
|
|
PMD_INIT_FUNC_TRACE();
|
|
if (nb_desc > MAX_BD_COUNT)
|
|
return -1;
|
|
|
|
err = enetc_alloc_tx_resources(dev, queue_idx, nb_desc);
|
|
|
|
return err;
|
|
}
|
|
|
|
static void
|
|
enetc_tx_queue_release(void *txq)
|
|
{
|
|
if (txq == NULL)
|
|
return;
|
|
|
|
struct enetc_bdr *tx_ring = (struct enetc_bdr *)txq;
|
|
struct enetc_eth_hw *eth_hw =
|
|
ENETC_DEV_PRIVATE_TO_HW(tx_ring->ndev->data->dev_private);
|
|
struct enetc_hw *hw;
|
|
struct enetc_swbd *tx_swbd;
|
|
int i;
|
|
uint32_t val;
|
|
|
|
/* Disable the ring */
|
|
hw = ð_hw->hw;
|
|
val = enetc_txbdr_rd(hw, tx_ring->index, ENETC_TBMR);
|
|
val &= (~ENETC_TBMR_EN);
|
|
enetc_txbdr_wr(hw, tx_ring->index, ENETC_TBMR, val);
|
|
|
|
/* clean the ring*/
|
|
i = tx_ring->next_to_clean;
|
|
tx_swbd = &tx_ring->q_swbd[i];
|
|
while (tx_swbd->buffer_addr != NULL) {
|
|
rte_pktmbuf_free(tx_swbd->buffer_addr);
|
|
tx_swbd->buffer_addr = NULL;
|
|
tx_swbd++;
|
|
i++;
|
|
if (unlikely(i == tx_ring->bd_count)) {
|
|
i = 0;
|
|
tx_swbd = &tx_ring->q_swbd[i];
|
|
}
|
|
}
|
|
|
|
enetc_free_bdr(tx_ring);
|
|
rte_free(tx_ring);
|
|
}
|
|
|
|
static int
|
|
enetc_alloc_rxbdr(struct enetc_bdr *rxr,
|
|
uint16_t nb_rx_desc)
|
|
{
|
|
int size;
|
|
|
|
size = nb_rx_desc * sizeof(struct enetc_swbd);
|
|
rxr->q_swbd = rte_malloc(NULL, size, RTE_CACHE_LINE_SIZE);
|
|
if (rxr->q_swbd == NULL)
|
|
return -ENOMEM;
|
|
|
|
size = nb_rx_desc * sizeof(union enetc_rx_bd);
|
|
rxr->bd_base = rte_malloc(NULL, size, RTE_CACHE_LINE_SIZE);
|
|
if (rxr->bd_base == NULL) {
|
|
rte_free(rxr->q_swbd);
|
|
rxr->q_swbd = NULL;
|
|
return -ENOMEM;
|
|
}
|
|
|
|
rxr->bd_count = nb_rx_desc;
|
|
rxr->next_to_clean = 0;
|
|
rxr->next_to_use = 0;
|
|
rxr->next_to_alloc = 0;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
enetc_setup_rxbdr(struct enetc_hw *hw, struct enetc_bdr *rx_ring,
|
|
struct rte_mempool *mb_pool)
|
|
{
|
|
int idx = rx_ring->index;
|
|
uintptr_t base_addr;
|
|
uint16_t buf_size;
|
|
|
|
base_addr = (uintptr_t)rx_ring->bd_base;
|
|
enetc_rxbdr_wr(hw, idx, ENETC_RBBAR0,
|
|
lower_32_bits((uint64_t)base_addr));
|
|
enetc_rxbdr_wr(hw, idx, ENETC_RBBAR1,
|
|
upper_32_bits((uint64_t)base_addr));
|
|
enetc_rxbdr_wr(hw, idx, ENETC_RBLENR,
|
|
ENETC_RTBLENR_LEN(rx_ring->bd_count));
|
|
|
|
rx_ring->mb_pool = mb_pool;
|
|
/* enable ring */
|
|
enetc_rxbdr_wr(hw, idx, ENETC_RBMR, ENETC_RBMR_EN);
|
|
enetc_rxbdr_wr(hw, idx, ENETC_RBPIR, 0);
|
|
rx_ring->rcir = (void *)((size_t)hw->reg +
|
|
ENETC_BDR(RX, idx, ENETC_RBCIR));
|
|
enetc_refill_rx_ring(rx_ring, (enetc_bd_unused(rx_ring)));
|
|
buf_size = (uint16_t)(rte_pktmbuf_data_room_size(rx_ring->mb_pool) -
|
|
RTE_PKTMBUF_HEADROOM);
|
|
enetc_rxbdr_wr(hw, idx, ENETC_RBBSR, buf_size);
|
|
}
|
|
|
|
static int
|
|
enetc_alloc_rx_resources(struct rte_eth_dev *dev,
|
|
uint16_t rx_queue_id,
|
|
uint16_t nb_rx_desc,
|
|
struct rte_mempool *mb_pool)
|
|
{
|
|
int err;
|
|
struct enetc_bdr *rx_ring;
|
|
struct rte_eth_dev_data *data = dev->data;
|
|
struct enetc_eth_adapter *adapter =
|
|
ENETC_DEV_PRIVATE(data->dev_private);
|
|
|
|
rx_ring = rte_zmalloc(NULL, sizeof(struct enetc_bdr), 0);
|
|
if (rx_ring == NULL) {
|
|
ENETC_PMD_ERR("Failed to allocate RX ring memory");
|
|
err = -ENOMEM;
|
|
return err;
|
|
}
|
|
|
|
err = enetc_alloc_rxbdr(rx_ring, nb_rx_desc);
|
|
if (err)
|
|
goto fail;
|
|
|
|
rx_ring->index = rx_queue_id;
|
|
rx_ring->ndev = dev;
|
|
enetc_setup_rxbdr(&adapter->hw.hw, rx_ring, mb_pool);
|
|
data->rx_queues[rx_queue_id] = rx_ring;
|
|
|
|
return 0;
|
|
fail:
|
|
rte_free(rx_ring);
|
|
|
|
return err;
|
|
}
|
|
|
|
static int
|
|
enetc_rx_queue_setup(struct rte_eth_dev *dev,
|
|
uint16_t rx_queue_id,
|
|
uint16_t nb_rx_desc,
|
|
unsigned int socket_id __rte_unused,
|
|
const struct rte_eth_rxconf *rx_conf __rte_unused,
|
|
struct rte_mempool *mb_pool)
|
|
{
|
|
int err = 0;
|
|
|
|
PMD_INIT_FUNC_TRACE();
|
|
if (nb_rx_desc > MAX_BD_COUNT)
|
|
return -1;
|
|
|
|
err = enetc_alloc_rx_resources(dev, rx_queue_id,
|
|
nb_rx_desc,
|
|
mb_pool);
|
|
|
|
return err;
|
|
}
|
|
|
|
static void
|
|
enetc_rx_queue_release(void *rxq)
|
|
{
|
|
if (rxq == NULL)
|
|
return;
|
|
|
|
struct enetc_bdr *rx_ring = (struct enetc_bdr *)rxq;
|
|
struct enetc_eth_hw *eth_hw =
|
|
ENETC_DEV_PRIVATE_TO_HW(rx_ring->ndev->data->dev_private);
|
|
struct enetc_swbd *q_swbd;
|
|
struct enetc_hw *hw;
|
|
uint32_t val;
|
|
int i;
|
|
|
|
/* Disable the ring */
|
|
hw = ð_hw->hw;
|
|
val = enetc_rxbdr_rd(hw, rx_ring->index, ENETC_RBMR);
|
|
val &= (~ENETC_RBMR_EN);
|
|
enetc_rxbdr_wr(hw, rx_ring->index, ENETC_RBMR, val);
|
|
|
|
/* Clean the ring */
|
|
i = rx_ring->next_to_clean;
|
|
q_swbd = &rx_ring->q_swbd[i];
|
|
while (i != rx_ring->next_to_use) {
|
|
rte_pktmbuf_free(q_swbd->buffer_addr);
|
|
q_swbd->buffer_addr = NULL;
|
|
q_swbd++;
|
|
i++;
|
|
if (unlikely(i == rx_ring->bd_count)) {
|
|
i = 0;
|
|
q_swbd = &rx_ring->q_swbd[i];
|
|
}
|
|
}
|
|
|
|
enetc_free_bdr(rx_ring);
|
|
rte_free(rx_ring);
|
|
}
|
|
|
|
static int
|
|
enetc_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
|
|
struct rte_pci_device *pci_dev)
|
|
{
|
|
return rte_eth_dev_pci_generic_probe(pci_dev,
|
|
sizeof(struct enetc_eth_adapter),
|
|
enetc_dev_init);
|
|
}
|
|
|
|
static int
|
|
enetc_pci_remove(struct rte_pci_device *pci_dev)
|
|
{
|
|
return rte_eth_dev_pci_generic_remove(pci_dev, enetc_dev_uninit);
|
|
}
|
|
|
|
static struct rte_pci_driver rte_enetc_pmd = {
|
|
.id_table = pci_id_enetc_map,
|
|
.drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_IOVA_AS_VA,
|
|
.probe = enetc_pci_probe,
|
|
.remove = enetc_pci_remove,
|
|
};
|
|
|
|
RTE_PMD_REGISTER_PCI(net_enetc, rte_enetc_pmd);
|
|
RTE_PMD_REGISTER_PCI_TABLE(net_enetc, pci_id_enetc_map);
|
|
RTE_PMD_REGISTER_KMOD_DEP(net_enetc, "* vfio-pci");
|
|
|
|
RTE_INIT(enetc_pmd_init_log)
|
|
{
|
|
enetc_logtype_pmd = rte_log_register("pmd.net.enetc");
|
|
if (enetc_logtype_pmd >= 0)
|
|
rte_log_set_level(enetc_logtype_pmd, RTE_LOG_NOTICE);
|
|
}
|