Jerin Jacob b26d65bee9 net/octeontx2: handle device error interrupts
Handle device specific error and ras interrupts.

Signed-off-by: Jerin Jacob <jerinj@marvell.com>
Signed-off-by: Nithin Dabilpuram <ndabilpuram@marvell.com>
Signed-off-by: Harman Kalra <hkalra@marvell.com>
2019-07-05 01:52:01 +02:00

379 lines
8.7 KiB
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2019 Marvell International Ltd.
*/
#include <rte_ethdev_pci.h>
#include <rte_io.h>
#include <rte_malloc.h>
#include "otx2_ethdev.h"
static inline void
otx2_eth_set_rx_function(struct rte_eth_dev *eth_dev)
{
RTE_SET_USED(eth_dev);
}
static inline void
otx2_eth_set_tx_function(struct rte_eth_dev *eth_dev)
{
RTE_SET_USED(eth_dev);
}
static inline uint64_t
nix_get_rx_offload_capa(struct otx2_eth_dev *dev)
{
uint64_t capa = NIX_RX_OFFLOAD_CAPA;
if (otx2_dev_is_vf(dev))
capa &= ~DEV_RX_OFFLOAD_TIMESTAMP;
return capa;
}
static inline uint64_t
nix_get_tx_offload_capa(struct otx2_eth_dev *dev)
{
RTE_SET_USED(dev);
return NIX_TX_OFFLOAD_CAPA;
}
static int
nix_lf_free(struct otx2_eth_dev *dev)
{
struct otx2_mbox *mbox = dev->mbox;
struct nix_lf_free_req *req;
struct ndc_sync_op *ndc_req;
int rc;
/* Sync NDC-NIX for LF */
ndc_req = otx2_mbox_alloc_msg_ndc_sync_op(mbox);
ndc_req->nix_lf_tx_sync = 1;
ndc_req->nix_lf_rx_sync = 1;
rc = otx2_mbox_process(mbox);
if (rc)
otx2_err("Error on NDC-NIX-[TX, RX] LF sync, rc %d", rc);
req = otx2_mbox_alloc_msg_nix_lf_free(mbox);
/* Let AF driver free all this nix lf's
* NPC entries allocated using NPC MBOX.
*/
req->flags = 0;
return otx2_mbox_process(mbox);
}
static inline int
nix_lf_attach(struct otx2_eth_dev *dev)
{
struct otx2_mbox *mbox = dev->mbox;
struct rsrc_attach_req *req;
/* Attach NIX(lf) */
req = otx2_mbox_alloc_msg_attach_resources(mbox);
req->modify = true;
req->nixlf = true;
return otx2_mbox_process(mbox);
}
static inline int
nix_lf_get_msix_offset(struct otx2_eth_dev *dev)
{
struct otx2_mbox *mbox = dev->mbox;
struct msix_offset_rsp *msix_rsp;
int rc;
/* Get NPA and NIX MSIX vector offsets */
otx2_mbox_alloc_msg_msix_offset(mbox);
rc = otx2_mbox_process_msg(mbox, (void *)&msix_rsp);
dev->nix_msixoff = msix_rsp->nix_msixoff;
return rc;
}
static inline int
otx2_eth_dev_lf_detach(struct otx2_mbox *mbox)
{
struct rsrc_detach_req *req;
req = otx2_mbox_alloc_msg_detach_resources(mbox);
/* Detach all except npa lf */
req->partial = true;
req->nixlf = true;
req->sso = true;
req->ssow = true;
req->timlfs = true;
req->cptlfs = true;
return otx2_mbox_process(mbox);
}
static int
otx2_eth_dev_init(struct rte_eth_dev *eth_dev)
{
struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
struct rte_pci_device *pci_dev;
int rc, max_entries;
/* For secondary processes, the primary has done all the work */
if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
/* Setup callbacks for secondary process */
otx2_eth_set_tx_function(eth_dev);
otx2_eth_set_rx_function(eth_dev);
return 0;
}
pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
rte_eth_copy_pci_info(eth_dev, pci_dev);
eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
/* Zero out everything after OTX2_DEV to allow proper dev_reset() */
memset(&dev->otx2_eth_dev_data_start, 0, sizeof(*dev) -
offsetof(struct otx2_eth_dev, otx2_eth_dev_data_start));
/* Parse devargs string */
rc = otx2_ethdev_parse_devargs(eth_dev->device->devargs, dev);
if (rc) {
otx2_err("Failed to parse devargs rc=%d", rc);
goto error;
}
if (!dev->mbox_active) {
/* Initialize the base otx2_dev object
* only if already present
*/
rc = otx2_dev_init(pci_dev, dev);
if (rc) {
otx2_err("Failed to initialize otx2_dev rc=%d", rc);
goto error;
}
}
/* Grab the NPA LF if required */
rc = otx2_npa_lf_init(pci_dev, dev);
if (rc)
goto otx2_dev_uninit;
dev->configured = 0;
dev->drv_inited = true;
dev->base = dev->bar2 + (RVU_BLOCK_ADDR_NIX0 << 20);
dev->lmt_addr = dev->bar2 + (RVU_BLOCK_ADDR_LMT << 20);
/* Attach NIX LF */
rc = nix_lf_attach(dev);
if (rc)
goto otx2_npa_uninit;
/* Get NIX MSIX offset */
rc = nix_lf_get_msix_offset(dev);
if (rc)
goto otx2_npa_uninit;
/* Register LF irq handlers */
rc = otx2_nix_register_irqs(eth_dev);
if (rc)
goto mbox_detach;
/* Get maximum number of supported MAC entries */
max_entries = otx2_cgx_mac_max_entries_get(dev);
if (max_entries < 0) {
otx2_err("Failed to get max entries for mac addr");
rc = -ENOTSUP;
goto unregister_irq;
}
/* For VFs, returned max_entries will be 0. But to keep default MAC
* address, one entry must be allocated. So setting up to 1.
*/
if (max_entries == 0)
max_entries = 1;
eth_dev->data->mac_addrs = rte_zmalloc("mac_addr", max_entries *
RTE_ETHER_ADDR_LEN, 0);
if (eth_dev->data->mac_addrs == NULL) {
otx2_err("Failed to allocate memory for mac addr");
rc = -ENOMEM;
goto unregister_irq;
}
dev->max_mac_entries = max_entries;
rc = otx2_nix_mac_addr_get(eth_dev, dev->mac_addr);
if (rc)
goto free_mac_addrs;
/* Update the mac address */
memcpy(eth_dev->data->mac_addrs, dev->mac_addr, RTE_ETHER_ADDR_LEN);
/* Also sync same MAC address to CGX table */
otx2_cgx_mac_addr_set(eth_dev, &eth_dev->data->mac_addrs[0]);
dev->tx_offload_capa = nix_get_tx_offload_capa(dev);
dev->rx_offload_capa = nix_get_rx_offload_capa(dev);
if (otx2_dev_is_A0(dev)) {
dev->hwcap |= OTX2_FIXUP_F_MIN_4K_Q;
dev->hwcap |= OTX2_FIXUP_F_LIMIT_CQ_FULL;
}
otx2_nix_dbg("Port=%d pf=%d vf=%d ver=%s msix_off=%d hwcap=0x%" PRIx64
" rxoffload_capa=0x%" PRIx64 " txoffload_capa=0x%" PRIx64,
eth_dev->data->port_id, dev->pf, dev->vf,
OTX2_ETH_DEV_PMD_VERSION, dev->nix_msixoff, dev->hwcap,
dev->rx_offload_capa, dev->tx_offload_capa);
return 0;
free_mac_addrs:
rte_free(eth_dev->data->mac_addrs);
unregister_irq:
otx2_nix_unregister_irqs(eth_dev);
mbox_detach:
otx2_eth_dev_lf_detach(dev->mbox);
otx2_npa_uninit:
otx2_npa_lf_fini();
otx2_dev_uninit:
otx2_dev_fini(pci_dev, dev);
error:
otx2_err("Failed to init nix eth_dev rc=%d", rc);
return rc;
}
static int
otx2_eth_dev_uninit(struct rte_eth_dev *eth_dev, bool mbox_close)
{
struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
struct rte_pci_device *pci_dev;
int rc;
/* Nothing to be done for secondary processes */
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;
rc = nix_lf_free(dev);
if (rc)
otx2_err("Failed to free nix lf, rc=%d", rc);
rc = otx2_npa_lf_fini();
if (rc)
otx2_err("Failed to cleanup npa lf, rc=%d", rc);
rte_free(eth_dev->data->mac_addrs);
eth_dev->data->mac_addrs = NULL;
dev->drv_inited = false;
pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
otx2_nix_unregister_irqs(eth_dev);
rc = otx2_eth_dev_lf_detach(dev->mbox);
if (rc)
otx2_err("Failed to detach resources, rc=%d", rc);
/* Check if mbox close is needed */
if (!mbox_close)
return 0;
if (otx2_npa_lf_active(dev) || otx2_dev_active_vfs(dev)) {
/* Will be freed later by PMD */
eth_dev->data->dev_private = NULL;
return 0;
}
otx2_dev_fini(pci_dev, dev);
return 0;
}
static int
nix_remove(struct rte_pci_device *pci_dev)
{
struct rte_eth_dev *eth_dev;
struct otx2_idev_cfg *idev;
struct otx2_dev *otx2_dev;
int rc;
eth_dev = rte_eth_dev_allocated(pci_dev->device.name);
if (eth_dev) {
/* Cleanup eth dev */
rc = otx2_eth_dev_uninit(eth_dev, true);
if (rc)
return rc;
rte_eth_dev_pci_release(eth_dev);
}
/* Nothing to be done for secondary processes */
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;
/* Check for common resources */
idev = otx2_intra_dev_get_cfg();
if (!idev || !idev->npa_lf || idev->npa_lf->pci_dev != pci_dev)
return 0;
otx2_dev = container_of(idev->npa_lf, struct otx2_dev, npalf);
if (otx2_npa_lf_active(otx2_dev) || otx2_dev_active_vfs(otx2_dev))
goto exit;
/* Safe to cleanup mbox as no more users */
otx2_dev_fini(pci_dev, otx2_dev);
rte_free(otx2_dev);
return 0;
exit:
otx2_info("%s: common resource in use by other devices", pci_dev->name);
return -EAGAIN;
}
static int
nix_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
{
int rc;
RTE_SET_USED(pci_drv);
rc = rte_eth_dev_pci_generic_probe(pci_dev, sizeof(struct otx2_eth_dev),
otx2_eth_dev_init);
/* On error on secondary, recheck if port exists in primary or
* in mid of detach state.
*/
if (rte_eal_process_type() != RTE_PROC_PRIMARY && rc)
if (!rte_eth_dev_allocated(pci_dev->device.name))
return 0;
return rc;
}
static const struct rte_pci_id pci_nix_map[] = {
{
RTE_PCI_DEVICE(PCI_VENDOR_ID_CAVIUM, PCI_DEVID_OCTEONTX2_RVU_PF)
},
{
RTE_PCI_DEVICE(PCI_VENDOR_ID_CAVIUM, PCI_DEVID_OCTEONTX2_RVU_VF)
},
{
RTE_PCI_DEVICE(PCI_VENDOR_ID_CAVIUM,
PCI_DEVID_OCTEONTX2_RVU_AF_VF)
},
{
.vendor_id = 0,
},
};
static struct rte_pci_driver pci_nix = {
.id_table = pci_nix_map,
.drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_IOVA_AS_VA |
RTE_PCI_DRV_INTR_LSC,
.probe = nix_probe,
.remove = nix_remove,
};
RTE_PMD_REGISTER_PCI(net_octeontx2, pci_nix);
RTE_PMD_REGISTER_PCI_TABLE(net_octeontx2, pci_nix_map);
RTE_PMD_REGISTER_KMOD_DEP(net_octeontx2, "vfio-pci");