virtio: support link state interrupt

Virtio has link state interrupt which can be used.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: Changchun Ouyang <changchun.ouyang@intel.com>
Acked-by: Huawei Xie <huawei.xie@intel.com>
This commit is contained in:
Stephen Hemminger 2015-02-09 09:13:53 +08:00 committed by Thomas Monjalon
parent 069739780b
commit 8d6d7e5cb3
3 changed files with 86 additions and 18 deletions

View File

@ -844,6 +844,34 @@ static int virtio_resource_init(struct rte_pci_device *pci_dev __rte_unused)
} }
#endif #endif
/*
* Process Virtio Config changed interrupt and call the callback
* if link state changed.
*/
static void
virtio_interrupt_handler(__rte_unused struct rte_intr_handle *handle,
void *param)
{
struct rte_eth_dev *dev = param;
struct virtio_hw *hw =
VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
uint8_t isr;
/* Read interrupt status which clears interrupt */
isr = vtpci_isr(hw);
PMD_DRV_LOG(INFO, "interrupt status = %#x", isr);
if (rte_intr_enable(&dev->pci_dev->intr_handle) < 0)
PMD_DRV_LOG(ERR, "interrupt enable failed");
if (isr & VIRTIO_PCI_ISR_CONFIG) {
if (virtio_dev_link_update(dev, 0) == 0)
_rte_eth_dev_callback_process(dev,
RTE_ETH_EVENT_INTR_LSC);
}
}
/* /*
* This function is based on probe() function in virtio_pci.c * This function is based on probe() function in virtio_pci.c
* It returns 0 on success. * It returns 0 on success.
@ -964,6 +992,10 @@ eth_virtio_dev_init(__rte_unused struct eth_driver *eth_drv,
PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x", PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x",
eth_dev->data->port_id, pci_dev->id.vendor_id, eth_dev->data->port_id, pci_dev->id.vendor_id,
pci_dev->id.device_id); pci_dev->id.device_id);
/* Setup interrupt callback */
rte_intr_callback_register(&pci_dev->intr_handle,
virtio_interrupt_handler, eth_dev);
return 0; return 0;
} }
@ -971,7 +1003,7 @@ static struct eth_driver rte_virtio_pmd = {
{ {
.name = "rte_virtio_pmd", .name = "rte_virtio_pmd",
.id_table = pci_id_virtio_map, .id_table = pci_id_virtio_map,
.drv_flags = RTE_PCI_DRV_NEED_MAPPING, .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
}, },
.eth_dev_init = eth_virtio_dev_init, .eth_dev_init = eth_virtio_dev_init,
.dev_private_size = sizeof(struct virtio_adapter), .dev_private_size = sizeof(struct virtio_adapter),
@ -1017,6 +1049,9 @@ static int
virtio_dev_configure(struct rte_eth_dev *dev) virtio_dev_configure(struct rte_eth_dev *dev)
{ {
const struct rte_eth_rxmode *rxmode = &dev->data->dev_conf.rxmode; const struct rte_eth_rxmode *rxmode = &dev->data->dev_conf.rxmode;
struct virtio_hw *hw =
VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
int ret;
PMD_INIT_LOG(DEBUG, "configure"); PMD_INIT_LOG(DEBUG, "configure");
@ -1025,7 +1060,11 @@ virtio_dev_configure(struct rte_eth_dev *dev)
return (-EINVAL); return (-EINVAL);
} }
return 0; ret = vtpci_irq_config(hw, 0);
if (ret != 0)
PMD_DRV_LOG(ERR, "failed to set config vector");
return ret;
} }
@ -1033,7 +1072,6 @@ static int
virtio_dev_start(struct rte_eth_dev *dev) virtio_dev_start(struct rte_eth_dev *dev)
{ {
uint16_t nb_queues, i; uint16_t nb_queues, i;
uint16_t status;
struct virtio_hw *hw = struct virtio_hw *hw =
VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private); VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
@ -1048,18 +1086,22 @@ virtio_dev_start(struct rte_eth_dev *dev)
/* Do final configuration before rx/tx engine starts */ /* Do final configuration before rx/tx engine starts */
virtio_dev_rxtx_start(dev); virtio_dev_rxtx_start(dev);
/* Check VIRTIO_NET_F_STATUS for link status*/ /* check if lsc interrupt feature is enabled */
if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) { if (dev->data->dev_conf.intr_conf.lsc) {
vtpci_read_dev_config(hw, if (!vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) {
offsetof(struct virtio_net_config, status), PMD_DRV_LOG(ERR, "link status not supported by host");
&status, sizeof(status)); return -ENOTSUP;
if ((status & VIRTIO_NET_S_LINK_UP) == 0) }
PMD_INIT_LOG(ERR, "Port: %d Link is DOWN",
dev->data->port_id); if (rte_intr_enable(&dev->pci_dev->intr_handle) < 0) {
else PMD_DRV_LOG(ERR, "interrupt enable failed");
PMD_INIT_LOG(DEBUG, "Port: %d Link is UP", return -EIO;
dev->data->port_id); }
} }
/* Initialize Link state */
virtio_dev_link_update(dev, 0);
vtpci_reinit_complete(hw); vtpci_reinit_complete(hw);
/*Notify the backend /*Notify the backend
@ -1141,6 +1183,7 @@ virtio_dev_stop(struct rte_eth_dev *dev)
VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private); VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
/* reset the NIC */ /* reset the NIC */
vtpci_irq_config(hw, 0);
vtpci_reset(hw); vtpci_reset(hw);
virtio_dev_free_mbufs(dev); virtio_dev_free_mbufs(dev);
} }
@ -1157,6 +1200,7 @@ virtio_dev_link_update(struct rte_eth_dev *dev, __rte_unused int wait_to_complet
old = link; old = link;
link.link_duplex = FULL_DUPLEX; link.link_duplex = FULL_DUPLEX;
link.link_speed = SPEED_10G; link.link_speed = SPEED_10G;
if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) { if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) {
PMD_INIT_LOG(DEBUG, "Get link status from hw"); PMD_INIT_LOG(DEBUG, "Get link status from hw");
vtpci_read_dev_config(hw, vtpci_read_dev_config(hw,
@ -1175,10 +1219,8 @@ virtio_dev_link_update(struct rte_eth_dev *dev, __rte_unused int wait_to_complet
link.link_status = 1; /* Link up */ link.link_status = 1; /* Link up */
} }
virtio_dev_atomic_write_link_status(dev, &link); virtio_dev_atomic_write_link_status(dev, &link);
if (old.link_status == link.link_status)
return -1; return (old.link_status == link.link_status) ? -1 : 0;
/*changed*/
return 0;
} }
static void static void

View File

@ -129,3 +129,25 @@ vtpci_set_status(struct virtio_hw *hw, uint8_t status)
VIRTIO_WRITE_REG_1(hw, VIRTIO_PCI_STATUS, status); VIRTIO_WRITE_REG_1(hw, VIRTIO_PCI_STATUS, status);
} }
uint8_t
vtpci_isr(struct virtio_hw *hw)
{
return VIRTIO_READ_REG_1(hw, VIRTIO_PCI_ISR);
}
/* Enable one vector (0) for Link State Intrerrupt */
int
vtpci_irq_config(struct virtio_hw *hw, uint16_t vec)
{
VIRTIO_WRITE_REG_2(hw, VIRTIO_MSI_CONFIG_VECTOR, vec);
vec = VIRTIO_READ_REG_2(hw, VIRTIO_MSI_CONFIG_VECTOR);
if (vec == VIRTIO_MSI_NO_VECTOR) {
PMD_DRV_LOG(ERR, "failed to set config vector");
return -EBUSY;
}
return 0;
}

View File

@ -261,4 +261,8 @@ void vtpci_write_dev_config(struct virtio_hw *, uint64_t, void *, int);
void vtpci_read_dev_config(struct virtio_hw *, uint64_t, void *, int); void vtpci_read_dev_config(struct virtio_hw *, uint64_t, void *, int);
uint8_t vtpci_isr(struct virtio_hw *);
int vtpci_irq_config(struct virtio_hw *, uint16_t);
#endif /* _VIRTIO_PCI_H_ */ #endif /* _VIRTIO_PCI_H_ */