6 #ifndef _RTE_ETHDEV_PCI_H_ 7 #define _RTE_ETHDEV_PCI_H_ 15 #include <rte_bus_pci.h> 16 #include <rte_config.h> 30 rte_eth_copy_pci_info(
struct rte_eth_dev *eth_dev,
31 struct rte_pci_device *pci_dev)
33 if ((eth_dev == NULL) || (pci_dev == NULL)) {
34 RTE_ETHDEV_LOG(ERR,
"NULL pointer eth_dev=%p pci_dev=%p",
35 (
void *)eth_dev, (
void *)pci_dev);
39 eth_dev->intr_handle = &pci_dev->intr_handle;
42 eth_dev->data->dev_flags = 0;
43 if (pci_dev->driver->drv_flags & RTE_PCI_DRV_INTR_LSC)
45 if (pci_dev->driver->drv_flags & RTE_PCI_DRV_INTR_RMV)
48 eth_dev->data->numa_node = pci_dev->device.numa_node;
53 eth_dev_pci_specific_init(
struct rte_eth_dev *eth_dev,
void *bus_device)
55 struct rte_pci_device *pci_dev = (
struct rte_pci_device *)bus_device;
60 rte_eth_copy_pci_info(eth_dev, pci_dev);
79 static inline struct rte_eth_dev *
80 rte_eth_dev_pci_allocate(
struct rte_pci_device *dev,
size_t private_data_size)
82 struct rte_eth_dev *eth_dev;
88 name = dev->device.name;
91 eth_dev = rte_eth_dev_allocate(name);
95 if (private_data_size) {
97 private_data_size, RTE_CACHE_LINE_SIZE,
98 dev->device.numa_node);
99 if (!eth_dev->data->dev_private) {
100 rte_eth_dev_release_port(eth_dev);
105 eth_dev = rte_eth_dev_attach_secondary(name);
110 eth_dev->device = &dev->device;
111 rte_eth_copy_pci_info(eth_dev, dev);
115 typedef int (*eth_dev_pci_callback_t)(
struct rte_eth_dev *eth_dev);
123 rte_eth_dev_pci_generic_probe(
struct rte_pci_device *pci_dev,
124 size_t private_data_size, eth_dev_pci_callback_t dev_init)
126 struct rte_eth_dev *eth_dev;
129 if (*dev_init == NULL)
132 eth_dev = rte_eth_dev_pci_allocate(pci_dev, private_data_size);
136 RTE_FUNC_PTR_OR_ERR_RET(*dev_init, -EINVAL);
137 ret = dev_init(eth_dev);
139 rte_eth_dev_release_port(eth_dev);
141 rte_eth_dev_probing_finish(eth_dev);
152 rte_eth_dev_pci_generic_remove(
struct rte_pci_device *pci_dev,
153 eth_dev_pci_callback_t dev_uninit)
155 struct rte_eth_dev *eth_dev;
158 eth_dev = rte_eth_dev_allocated(pci_dev->device.name);
173 ret = dev_uninit(eth_dev);
178 rte_eth_dev_release_port(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) __rte_alloc_size(2)