Searched refs:rte_pci_device (Results 1 – 7 of 7) sorted by relevance
/spdk/lib/env_dpdk/22.07/ |
H A D | rte_bus_pci.h | 35 struct rte_pci_device; 39 RTE_TAILQ_HEAD(rte_pci_device_list, rte_pci_device); 65 struct rte_pci_device { struct 66 RTE_TAILQ_ENTRY(rte_pci_device) next; /**< Next probed PCI device. */ 85 #define RTE_DEV_TO_PCI(ptr) container_of(ptr, struct rte_pci_device, device) 88 container_of(ptr, const struct rte_pci_device, device) 113 typedef int (rte_pci_probe_t)(struct rte_pci_driver *, struct rte_pci_device *); 118 typedef int (rte_pci_remove_t)(struct rte_pci_device *); 136 typedef int (pci_dma_map_t)(struct rte_pci_device *dev, void *addr, 155 typedef int (pci_dma_unmap_t)(struct rte_pci_device *dev, void *addr, [all …]
|
/spdk/lib/env_dpdk/22.11/ |
H A D | rte_bus_pci.h | 31 struct rte_pci_device; 52 int rte_pci_map_device(struct rte_pci_device *dev); 61 void rte_pci_unmap_device(struct rte_pci_device *dev); 88 off_t rte_pci_find_ext_capability(struct rte_pci_device *dev, uint32_t cap); 102 int rte_pci_set_bus_master(struct rte_pci_device *dev, bool enable); 119 int rte_pci_read_config(const struct rte_pci_device *device, 135 int rte_pci_write_config(const struct rte_pci_device *device, 153 int rte_pci_ioport_map(struct rte_pci_device *dev, int bar,
|
H A D | bus_pci_driver.h | 34 struct rte_pci_device { struct 35 RTE_TAILQ_ENTRY(rte_pci_device) next; /**< Next probed PCI device. */ 55 #define RTE_DEV_TO_PCI(ptr) container_of(ptr, struct rte_pci_device, device) 58 container_of(ptr, const struct rte_pci_device, device) 83 typedef int (rte_pci_probe_t)(struct rte_pci_driver *, struct rte_pci_device *); 88 typedef int (rte_pci_remove_t)(struct rte_pci_device *); 106 typedef int (pci_dma_map_t)(struct rte_pci_device *dev, void *addr, 125 typedef int (pci_dma_unmap_t)(struct rte_pci_device *dev, void *addr, 192 struct rte_pci_device *dev;
|
/spdk/scripts/env_dpdk/22.11/ |
H A D | 23.11-rte_bus_pci.h.patch | 1 @@ -68,60 +68,6 @@ void rte_pci_unmap_device(struct rte_pci_device *dev); 9 - * A pointer to rte_pci_device structure. 15 -bool rte_pci_has_capability_list(const struct rte_pci_device *dev); 21 - * A pointer to rte_pci_device structure. 34 -off_t rte_pci_find_capability(const struct rte_pci_device *dev, uint8_t cap); 41 - * A pointer to rte_pci_device structure. 57 -off_t rte_pci_find_next_capability(const struct rte_pci_device *dev, uint8_t cap, off_t offset); 62 @@ -139,7 +85,7 @@ off_t rte_pci_find_next_capability(const struct rte_pci_device *dev, uint8_t cap 66 -off_t rte_pci_find_ext_capability(const struct rte_pci_device *dev, uint32_t cap); 67 +off_t rte_pci_find_ext_capability(struct rte_pci_device *dev, uint32_t cap); [all …]
|
H A D | 22.11-rte_bus_pci.h.patch | 1 @@ -101,20 +101,6 @@ off_t rte_pci_find_ext_capability(struct rte_pci_device *dev, uint32_t cap); 3 int rte_pci_set_bus_master(struct rte_pci_device *dev, bool enable); 9 - * A pointer to a rte_pci_device structure. 16 -int rte_pci_pasid_set_state(const struct rte_pci_device *dev,
|
H A D | 23.07-rte_bus_pci.h.patch | 11 - * A pointer to a rte_pci_device structure describing the device 25 -int rte_pci_mmio_read(const struct rte_pci_device *device, int bar, 35 - * A pointer to a rte_pci_device structure describing the device 49 -int rte_pci_mmio_write(const struct rte_pci_device *device, int bar,
|
/spdk/test/env/memory/ |
H A D | memory_ut.c | 33 (struct rte_pci_device *dev, uint32_t bar), 0);
|