4 * Copyright(c) 2014 6WIND S.A.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of 6WIND S.A. nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 * RTE PMD Driver Registration Interface
42 * This file manages the list of device drivers.
50 #include <sys/queue.h>
54 __attribute__((format(printf, 2, 0)))
56 rte_pmd_debug_trace(const char *func_name, const char *fmt, ...)
62 char buffer[vsnprintf(NULL, 0, fmt, ap) + 1];
67 vsnprintf(buffer, sizeof(buffer), fmt, ap);
70 rte_log(RTE_LOG_ERR, RTE_LOGTYPE_PMD, "%s: %s", func_name, buffer);
73 /* Macros for checking for restricting functions to primary instance only */
74 #define RTE_PROC_PRIMARY_OR_ERR_RET(retval) do { \
75 if (rte_eal_process_type() != RTE_PROC_PRIMARY) { \
76 RTE_PMD_DEBUG_TRACE("Cannot run in secondary processes\n"); \
81 #define RTE_PROC_PRIMARY_OR_RET() do { \
82 if (rte_eal_process_type() != RTE_PROC_PRIMARY) { \
83 RTE_PMD_DEBUG_TRACE("Cannot run in secondary processes\n"); \
88 /* Macros to check for invalid function pointers */
89 #define RTE_FUNC_PTR_OR_ERR_RET(func, retval) do { \
90 if ((func) == NULL) { \
91 RTE_PMD_DEBUG_TRACE("Function not supported\n"); \
96 #define RTE_FUNC_PTR_OR_RET(func) do { \
97 if ((func) == NULL) { \
98 RTE_PMD_DEBUG_TRACE("Function not supported\n"); \
104 * A generic memory resource representation.
106 struct rte_mem_resource {
107 uint64_t phys_addr; /**< Physical address, 0 if not resource. */
108 uint64_t len; /**< Length of the resource. */
109 void *addr; /**< Virtual address, NULL when not mapped. */
112 /** Double linked list of device drivers. */
113 TAILQ_HEAD(rte_driver_list, rte_driver);
114 /** Double linked list of devices. */
115 TAILQ_HEAD(rte_device_list, rte_device);
117 /* Forward declaration */
121 * A structure describing a generic device.
124 TAILQ_ENTRY(rte_device) next; /**< Next device */
125 const struct rte_driver *driver;/**< Associated driver */
126 int numa_node; /**< NUMA node connection */
127 struct rte_devargs *devargs; /**< Device user arguments */
131 * Insert a device detected by a bus scanning.
134 * A pointer to a rte_device structure describing the detected device.
136 void rte_eal_device_insert(struct rte_device *dev);
139 * Remove a device (e.g. when being unplugged).
142 * A pointer to a rte_device structure describing the device to be removed.
144 void rte_eal_device_remove(struct rte_device *dev);
147 * A structure describing a device driver.
150 TAILQ_ENTRY(rte_driver) next; /**< Next in list. */
151 const char *name; /**< Driver name. */
152 const char *alias; /**< Driver alias. */
156 * Register a device driver.
159 * A pointer to a rte_dev structure describing the driver
162 void rte_eal_driver_register(struct rte_driver *driver);
165 * Unregister a device driver.
168 * A pointer to a rte_dev structure describing the driver
169 * to be unregistered.
171 void rte_eal_driver_unregister(struct rte_driver *driver);
174 * Initalize all the registered drivers in this process
176 int rte_eal_dev_init(void);
179 * Initialize a driver specified by name.
182 * The pointer to a driver name to be initialized.
184 * The pointer to arguments used by driver initialization.
186 * 0 on success, negative on error
188 int rte_eal_vdev_init(const char *name, const char *args);
191 * Uninitalize a driver specified by name.
194 * The pointer to a driver name to be initialized.
196 * 0 on success, negative on error
198 int rte_eal_vdev_uninit(const char *name);
201 * Attach a device to a registered driver.
204 * The device name, that refers to a pci device (or some private
205 * way of designating a vdev device). Based on this device name, eal
206 * will identify a driver capable of handling it and pass it to the
207 * driver probing function.
209 * Device arguments to be passed to the driver.
211 * 0 on success, negative on error.
213 int rte_eal_dev_attach(const char *name, const char *devargs);
216 * Detach a device from its driver.
219 * Same description as for rte_eal_dev_attach().
220 * Here, eal will call the driver detaching function.
222 * 0 on success, negative on error.
224 int rte_eal_dev_detach(const char *name);
226 #define RTE_PMD_EXPORT_NAME_ARRAY(n, idx) n##idx[]
228 #define RTE_PMD_EXPORT_NAME(name, idx) \
229 static const char RTE_PMD_EXPORT_NAME_ARRAY(this_pmd_name, idx) \
230 __attribute__((used)) = RTE_STR(name)
232 #define DRV_EXP_TAG(name, tag) __##name##_##tag
234 #define RTE_PMD_REGISTER_PCI_TABLE(name, table) \
235 static const char DRV_EXP_TAG(name, pci_tbl_export)[] __attribute__((used)) = \
238 #define RTE_PMD_REGISTER_PARAM_STRING(name, str) \
239 static const char DRV_EXP_TAG(name, param_string_export)[] \
240 __attribute__((used)) = str
243 * Advertise the list of kernel modules required to run this driver
245 * This string lists the kernel modules required for the devices
246 * associated to a PMD. The format of each line of the string is:
247 * "<device-pattern> <kmod-expression>".
249 * The possible formats for the device pattern are:
250 * "*" all devices supported by this driver
251 * "pci:*" all PCI devices supported by this driver
252 * "pci:v8086:d*:sv*:sd*" all PCI devices supported by this driver
253 * whose vendor id is 0x8086.
255 * The format of the kernel modules list is a parenthesed expression
256 * containing logical-and (&) and logical-or (|).
258 * The device pattern and the kmod expression are separated by a space.
261 * - "* igb_uio | uio_pci_generic | vfio"
263 #define RTE_PMD_REGISTER_KMOD_DEP(name, str) \
264 static const char DRV_EXP_TAG(name, kmod_dep_export)[] \
265 __attribute__((used)) = str
271 #endif /* _RTE_VDEV_H_ */