8 #ifndef _RTE_ETHDEV_PCI_H_ 9 #define _RTE_ETHDEV_PCI_H_ 17 #include <rte_bus_pci.h> 18 #include <rte_config.h> 32 rte_eth_copy_pci_info(
struct rte_eth_dev *eth_dev,
33 struct rte_pci_device *pci_dev)
35 if ((eth_dev == NULL) || (pci_dev == NULL)) {
36 RTE_ETHDEV_LOG(ERR,
"NULL pointer eth_dev=%p pci_dev=%p",
37 (
void *)eth_dev, (
void *)pci_dev);
41 eth_dev->intr_handle = &pci_dev->intr_handle;
44 eth_dev->data->dev_flags = 0;
45 if (pci_dev->driver->drv_flags & RTE_PCI_DRV_INTR_LSC)
47 if (pci_dev->driver->drv_flags & RTE_PCI_DRV_INTR_RMV)
50 eth_dev->data->kdrv = pci_dev->kdrv;
51 eth_dev->data->numa_node = pci_dev->device.numa_node;
56 eth_dev_pci_specific_init(
struct rte_eth_dev *eth_dev,
void *bus_device)
58 struct rte_pci_device *pci_dev = (
struct rte_pci_device *)bus_device;
63 rte_eth_copy_pci_info(eth_dev, pci_dev);
82 static inline struct rte_eth_dev *
83 rte_eth_dev_pci_allocate(
struct rte_pci_device *dev,
size_t private_data_size)
85 struct rte_eth_dev *eth_dev;
91 name = dev->device.name;
94 eth_dev = rte_eth_dev_allocate(name);
98 if (private_data_size) {
100 private_data_size, RTE_CACHE_LINE_SIZE,
101 dev->device.numa_node);
102 if (!eth_dev->data->dev_private) {
103 rte_eth_dev_release_port(eth_dev);
108 eth_dev = rte_eth_dev_attach_secondary(name);
113 eth_dev->device = &dev->device;
114 rte_eth_copy_pci_info(eth_dev, dev);
119 rte_eth_dev_pci_release(
struct rte_eth_dev *eth_dev)
121 eth_dev->device = NULL;
122 eth_dev->intr_handle = NULL;
125 rte_eth_dev_release_port(eth_dev);
128 typedef int (*eth_dev_pci_callback_t)(
struct rte_eth_dev *eth_dev);
136 rte_eth_dev_pci_generic_probe(
struct rte_pci_device *pci_dev,
137 size_t private_data_size, eth_dev_pci_callback_t dev_init)
139 struct rte_eth_dev *eth_dev;
142 eth_dev = rte_eth_dev_pci_allocate(pci_dev, private_data_size);
146 RTE_FUNC_PTR_OR_ERR_RET(*dev_init, -EINVAL);
147 ret = dev_init(eth_dev);
149 rte_eth_dev_pci_release(eth_dev);
151 rte_eth_dev_probing_finish(eth_dev);
162 rte_eth_dev_pci_generic_remove(
struct rte_pci_device *pci_dev,
163 eth_dev_pci_callback_t dev_uninit)
165 struct rte_eth_dev *eth_dev;
168 eth_dev = rte_eth_dev_allocated(pci_dev->device.name);
183 ret = dev_uninit(eth_dev);
188 rte_eth_dev_pci_release(eth_dev);
#define RTE_ETH_DEV_INTR_LSC
enum rte_proc_type_t rte_eal_process_type(void)
#define RTE_ETH_DEV_INTR_RMV
void * rte_zmalloc_socket(const char *type, size_t size, unsigned align, int socket)