DPDK  17.11.10
rte_dev.h
Go to the documentation of this file.
1 /*-
2  * BSD LICENSE
3  *
4  * Copyright(c) 2014 6WIND S.A.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
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
16  * distribution.
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.
20  *
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.
32  */
33 
34 #ifndef _RTE_DEV_H_
35 #define _RTE_DEV_H_
36 
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48 
49 #include <stdio.h>
50 #include <sys/queue.h>
51 
52 #include <rte_config.h>
53 #include <rte_log.h>
54 
55 __attribute__((format(printf, 2, 0)))
56 static inline void
57 rte_pmd_debug_trace(const char *func_name, const char *fmt, ...)
58 {
59  va_list ap;
60 
61  va_start(ap, fmt);
62 
63  {
64  char buffer[vsnprintf(NULL, 0, fmt, ap) + 1];
65 
66  va_end(ap);
67 
68  va_start(ap, fmt);
69  vsnprintf(buffer, sizeof(buffer), fmt, ap);
70  va_end(ap);
71 
73  func_name, buffer);
74  }
75 }
76 
77 /*
78  * Enable RTE_PMD_DEBUG_TRACE() when at least one component relying on the
79  * RTE_*_RET() macros defined below is compiled in debug mode.
80  */
81 #if defined(RTE_LIBRTE_ETHDEV_DEBUG) || \
82  defined(RTE_LIBRTE_CRYPTODEV_DEBUG) || \
83  defined(RTE_LIBRTE_EVENTDEV_DEBUG)
84 #define RTE_PMD_DEBUG_TRACE(...) \
85  rte_pmd_debug_trace(__func__, __VA_ARGS__)
86 #else
87 #define RTE_PMD_DEBUG_TRACE(...) (void)0
88 #endif
89 
90 /* Macros for checking for restricting functions to primary instance only */
91 #define RTE_PROC_PRIMARY_OR_ERR_RET(retval) do { \
92  if (rte_eal_process_type() != RTE_PROC_PRIMARY) { \
93  RTE_PMD_DEBUG_TRACE("Cannot run in secondary processes\n"); \
94  return retval; \
95  } \
96 } while (0)
97 
98 #define RTE_PROC_PRIMARY_OR_RET() do { \
99  if (rte_eal_process_type() != RTE_PROC_PRIMARY) { \
100  RTE_PMD_DEBUG_TRACE("Cannot run in secondary processes\n"); \
101  return; \
102  } \
103 } while (0)
104 
105 /* Macros to check for invalid function pointers */
106 #define RTE_FUNC_PTR_OR_ERR_RET(func, retval) do { \
107  if ((func) == NULL) { \
108  RTE_PMD_DEBUG_TRACE("Function not supported\n"); \
109  return retval; \
110  } \
111 } while (0)
112 
113 #define RTE_FUNC_PTR_OR_RET(func) do { \
114  if ((func) == NULL) { \
115  RTE_PMD_DEBUG_TRACE("Function not supported\n"); \
116  return; \
117  } \
118 } while (0)
119 
124  RTE_KDRV_UNKNOWN = 0,
125  RTE_KDRV_IGB_UIO,
126  RTE_KDRV_VFIO,
127  RTE_KDRV_UIO_GENERIC,
128  RTE_KDRV_NIC_UIO,
129  RTE_KDRV_NONE,
130 };
131 
136  RTE_DEV_WHITELISTED,
137  RTE_DEV_BLACKLISTED,
138 };
139 
144  uint64_t phys_addr;
145  uint64_t len;
146  void *addr;
147 };
148 
152 struct rte_driver {
153  TAILQ_ENTRY(rte_driver) next;
154  const char *name;
155  const char *alias;
156 };
157 
158 /*
159  * Internal identifier length
160  * Sufficiently large to allow for UUID or PCI address
161  */
162 #define RTE_DEV_NAME_MAX_LEN 64
163 
167 struct rte_device {
168  TAILQ_ENTRY(rte_device) next;
169  const char *name;
170  const struct rte_driver *driver;
171  int numa_node;
173 };
174 
188 int rte_eal_dev_attach(const char *name, const char *devargs);
189 
198 int rte_eal_dev_detach(struct rte_device *dev);
199 
216 int rte_eal_hotplug_add(const char *busname, const char *devname,
217  const char *devargs);
218 
232 int rte_eal_hotplug_remove(const char *busname, const char *devname);
233 
253 typedef int (*rte_dev_cmp_t)(const struct rte_device *dev, const void *data);
254 
255 #define RTE_PMD_EXPORT_NAME_ARRAY(n, idx) n##idx[]
256 
257 #define RTE_PMD_EXPORT_NAME(name, idx) \
258 static const char RTE_PMD_EXPORT_NAME_ARRAY(this_pmd_name, idx) \
259 __attribute__((used)) = RTE_STR(name)
260 
261 #define DRV_EXP_TAG(name, tag) __##name##_##tag
262 
263 #define RTE_PMD_REGISTER_PCI_TABLE(name, table) \
264 static const char DRV_EXP_TAG(name, pci_tbl_export)[] __attribute__((used)) = \
265 RTE_STR(table)
266 
267 #define RTE_PMD_REGISTER_PARAM_STRING(name, str) \
268 static const char DRV_EXP_TAG(name, param_string_export)[] \
269 __attribute__((used)) = str
270 
292 #define RTE_PMD_REGISTER_KMOD_DEP(name, str) \
293 static const char DRV_EXP_TAG(name, kmod_dep_export)[] \
294 __attribute__((used)) = str
295 
296 #ifdef __cplusplus
297 }
298 #endif
299 
300 #endif /* _RTE_DEV_H_ */
#define RTE_LOG_ERR
Definition: rte_log.h:110
uint64_t len
Definition: rte_dev.h:145
int rte_log(uint32_t level, uint32_t logtype, const char *format,...)
int rte_eal_dev_attach(const char *name, const char *devargs)
int rte_eal_hotplug_add(const char *busname, const char *devname, const char *devargs)
int rte_eal_dev_detach(struct rte_device *dev)
TAILQ_ENTRY(rte_driver) next
uint64_t phys_addr
Definition: rte_dev.h:144
TAILQ_ENTRY(rte_device) next
rte_kernel_driver
Definition: rte_dev.h:123
char name[RTE_DEV_NAME_MAX_LEN]
Definition: rte_devargs.h:84
rte_dev_policy
Definition: rte_dev.h:135
struct rte_devargs * devargs
Definition: rte_dev.h:172
int rte_eal_hotplug_remove(const char *busname, const char *devname)
int numa_node
Definition: rte_dev.h:171
#define RTE_LOGTYPE_PMD
Definition: rte_log.h:76
const char * name
Definition: rte_dev.h:154
const char * name
Definition: rte_dev.h:169
const char * alias
Definition: rte_dev.h:155
const struct rte_driver * driver
Definition: rte_dev.h:170
int(* rte_dev_cmp_t)(const struct rte_device *dev, const void *data)
Definition: rte_dev.h:253