1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2018 Intel Corporation
5 #ifndef _RTE_BUS_IFPGA_H_
6 #define _RTE_BUS_IFPGA_H_
11 * RTE Intel FPGA Bus Interface
21 /** Name of Intel FPGA Bus */
22 #define IFPGA_BUS_NAME ifpga
24 /* Forward declarations */
25 struct rte_afu_device;
26 struct rte_afu_driver;
28 /** Double linked list of Intel FPGA AFU device. */
29 TAILQ_HEAD(ifpga_afu_dev_list, rte_afu_device);
30 /** Double linked list of Intel FPGA AFU device drivers. */
31 TAILQ_HEAD(ifpga_afu_drv_list, rte_afu_driver);
33 #define IFPGA_BUS_BITSTREAM_PATH_MAX_LEN 256
38 } __attribute__ ((packed));
40 #define IFPGA_BUS_DEV_PORT_MAX 4
43 * A structure describing an ID for a AFU driver. Each driver provides a
44 * table of these IDs for each device that it supports.
47 struct rte_afu_uuid uuid;
48 int port; /**< port number */
49 } __attribute__ ((packed));
52 * A structure PR (Partial Reconfiguration) configuration AFU driver.
55 struct rte_afu_pr_conf {
56 struct rte_afu_id afu_id;
58 char bs_path[IFPGA_BUS_BITSTREAM_PATH_MAX_LEN];
61 #define AFU_PRI_STR_SIZE (PCI_PRI_STR_SIZE + 8)
64 * A structure describing a AFU device.
66 struct rte_afu_device {
67 TAILQ_ENTRY(rte_afu_device) next; /**< Next in device list. */
68 struct rte_device device; /**< Inherit core device */
69 struct rte_rawdev *rawdev; /**< Point Rawdev */
70 struct rte_afu_id id; /**< AFU id within FPGA. */
71 uint32_t num_region; /**< number of regions found */
72 struct rte_mem_resource mem_resource[PCI_MAX_RESOURCE];
73 /**< AFU Memory Resource */
74 struct rte_intr_handle intr_handle; /**< Interrupt handle */
75 struct rte_afu_driver *driver; /**< Associated driver */
76 char path[IFPGA_BUS_BITSTREAM_PATH_MAX_LEN];
77 } __attribute__ ((packed));
81 * Helper macro for drivers that need to convert to struct rte_afu_device.
83 #define RTE_DEV_TO_AFU(ptr) \
84 container_of(ptr, struct rte_afu_device, device)
87 * Initialization function for the driver called during FPGA BUS probing.
89 typedef int (afu_probe_t)(struct rte_afu_device *);
92 * Uninitialization function for the driver called during hotplugging.
94 typedef int (afu_remove_t)(struct rte_afu_device *);
97 * A structure describing a AFU device.
99 struct rte_afu_driver {
100 TAILQ_ENTRY(rte_afu_driver) next; /**< Next afu driver. */
101 struct rte_driver driver; /**< Inherit core driver. */
102 afu_probe_t *probe; /**< Device Probe function. */
103 afu_remove_t *remove; /**< Device Remove function. */
104 const struct rte_afu_uuid *id_table; /**< AFU uuid within FPGA. */
107 static inline const char *
108 rte_ifpga_device_name(const struct rte_afu_device *afu)
110 if (afu && afu->device.name)
111 return afu->device.name;
116 * Register a ifpga afu device driver.
119 * A pointer to a rte_afu_driver structure describing the driver
122 void rte_ifpga_driver_register(struct rte_afu_driver *driver);
125 * Unregister a ifpga afu device driver.
128 * A pointer to a rte_afu_driver structure describing the driver
129 * to be unregistered.
131 void rte_ifpga_driver_unregister(struct rte_afu_driver *driver);
133 #define RTE_PMD_REGISTER_AFU(nm, afudrv)\
134 static const char *afudrvinit_ ## nm ## _alias;\
135 RTE_INIT(afudrvinitfn_ ##afudrv)\
137 (afudrv).driver.name = RTE_STR(nm);\
138 (afudrv).driver.alias = afudrvinit_ ## nm ## _alias;\
139 rte_ifpga_driver_register(&afudrv);\
141 RTE_PMD_EXPORT_NAME(nm, __COUNTER__)
143 #define RTE_PMD_REGISTER_AFU_ALIAS(nm, alias)\
144 static const char *afudrvinit_ ## nm ## _alias = RTE_STR(alias)
146 #endif /* _RTE_BUS_IFPGA_H_ */