bus: fix driver registration
[dpdk.git] / lib / librte_eal / common / include / rte_bus.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2016 NXP
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 NXP 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_BUS_H_
35 #define _RTE_BUS_H_
36
37 /**
38  * @file
39  *
40  * DPDK device bus interface
41  *
42  * This file exposes API and interfaces for bus abstraction
43  * over the devices and drivers in EAL.
44  */
45
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
49
50 #include <stdio.h>
51 #include <sys/queue.h>
52
53 #include <rte_log.h>
54 #include <rte_dev.h>
55
56 /** Double linked list of buses */
57 TAILQ_HEAD(rte_bus_list, rte_bus);
58
59 /**
60  * Bus specific scan for devices attached on the bus.
61  * For each bus object, the scan would be responsible for finding devices and
62  * adding them to its private device list.
63  *
64  * A bus should mandatorily implement this method.
65  *
66  * @return
67  *      0 for successful scan
68  *      <0 for unsuccessful scan with error value
69  */
70 typedef int (*rte_bus_scan_t)(void);
71
72 /**
73  * Implementation specific probe function which is responsible for linking
74  * devices on that bus with applicable drivers.
75  *
76  * This is called while iterating over each registered bus.
77  *
78  * @return
79  *      0 for successful probe
80  *      !0 for any error while probing
81  */
82 typedef int (*rte_bus_probe_t)(void);
83
84 /**
85  * Device iterator to find a device on a bus.
86  *
87  * This function returns an rte_device if one of those held by the bus
88  * matches the data passed as parameter.
89  *
90  * If the comparison function returns zero this function should stop iterating
91  * over any more devices. To continue a search the device of a previous search
92  * can be passed via the start parameter.
93  *
94  * @param cmp
95  *      Comparison function.
96  *
97  * @param data
98  *      Data to compare each device against.
99  *
100  * @param start
101  *      starting point for the iteration
102  *
103  * @return
104  *      The first device matching the data, NULL if none exists.
105  */
106 typedef struct rte_device *
107 (*rte_bus_find_device_t)(const struct rte_device *start, rte_dev_cmp_t cmp,
108                          const void *data);
109
110 /**
111  * Implementation specific probe function which is responsible for linking
112  * devices on that bus with applicable drivers.
113  *
114  * @param dev
115  *      Device pointer that was returned by a previous call to find_device.
116  *
117  * @param devargs
118  *      Device declaration.
119  *
120  * @return
121  *      0 on success.
122  *      !0 on error.
123  */
124 typedef int (*rte_bus_plug_t)(struct rte_device *dev,
125                               const char *devargs);
126
127 /**
128  * Implementation specific remove function which is responsible for unlinking
129  * devices on that bus from assigned driver.
130  *
131  * @param dev
132  *      Device pointer that was returned by a previous call to find_device.
133  *
134  * @return
135  *      0 on success.
136  *      !0 on error.
137  */
138 typedef int (*rte_bus_unplug_t)(struct rte_device *dev);
139
140 /**
141  * A structure describing a generic bus.
142  */
143 struct rte_bus {
144         TAILQ_ENTRY(rte_bus) next;   /**< Next bus object in linked list */
145         const char *name;            /**< Name of the bus */
146         rte_bus_scan_t scan;         /**< Scan for devices attached to bus */
147         rte_bus_probe_t probe;       /**< Probe devices on bus */
148         rte_bus_find_device_t find_device; /**< Find a device on the bus */
149         rte_bus_plug_t plug;         /**< Probe single device for drivers */
150         rte_bus_unplug_t unplug;     /**< Remove single device from driver */
151 };
152
153 /**
154  * Register a Bus handler.
155  *
156  * @param bus
157  *   A pointer to a rte_bus structure describing the bus
158  *   to be registered.
159  */
160 void rte_bus_register(struct rte_bus *bus);
161
162 /**
163  * Unregister a Bus handler.
164  *
165  * @param bus
166  *   A pointer to a rte_bus structure describing the bus
167  *   to be unregistered.
168  */
169 void rte_bus_unregister(struct rte_bus *bus);
170
171 /**
172  * Scan all the buses.
173  *
174  * @return
175  *   0 in case of success in scanning all buses
176  *  !0 in case of failure to scan
177  */
178 int rte_bus_scan(void);
179
180 /**
181  * For each device on the buses, perform a driver 'match' and call the
182  * driver-specific probe for device initialization.
183  *
184  * @return
185  *       0 for successful match/probe
186  *      !0 otherwise
187  */
188 int rte_bus_probe(void);
189
190 /**
191  * Dump information of all the buses registered with EAL.
192  *
193  * @param f
194  *       A valid and open output stream handle
195  *
196  * @return
197  *       0 in case of success
198  *      !0 in case there is error in opening the output stream
199  */
200 void rte_bus_dump(FILE *f);
201
202 /**
203  * Bus comparison function.
204  *
205  * @param bus
206  *      Bus under test.
207  *
208  * @param data
209  *      Data to compare against.
210  *
211  * @return
212  *      0 if the bus matches the data.
213  *      !0 if the bus does not match.
214  *      <0 if ordering is possible and the bus is lower than the data.
215  *      >0 if ordering is possible and the bus is greater than the data.
216  */
217 typedef int (*rte_bus_cmp_t)(const struct rte_bus *bus, const void *data);
218
219 /**
220  * Bus iterator to find a particular bus.
221  *
222  * This function compares each registered bus to find one that matches
223  * the data passed as parameter.
224  *
225  * If the comparison function returns zero this function will stop iterating
226  * over any more buses. To continue a search the bus of a previous search can
227  * be passed via the start parameter.
228  *
229  * @param start
230  *      Starting point for the iteration.
231  *
232  * @param cmp
233  *      Comparison function.
234  *
235  * @param data
236  *       Data to pass to comparison function.
237  *
238  * @return
239  *       A pointer to a rte_bus structure or NULL in case no bus matches
240  */
241 struct rte_bus *rte_bus_find(const struct rte_bus *start, rte_bus_cmp_t cmp,
242                              const void *data);
243
244 /**
245  * Find the registered bus for a particular device.
246  */
247 struct rte_bus *rte_bus_find_by_device(const struct rte_device *dev);
248
249 /**
250  * Find the registered bus for a given name.
251  */
252 struct rte_bus *rte_bus_find_by_name(const char *busname);
253
254 /**
255  * Helper for Bus registration.
256  * The constructor has higher priority than PMD constructors.
257  */
258 #define RTE_REGISTER_BUS(nm, bus) \
259 RTE_INIT_PRIO(businitfn_ ##nm, 101); \
260 static void businitfn_ ##nm(void) \
261 {\
262         (bus).name = RTE_STR(nm);\
263         rte_bus_register(&bus); \
264 }
265
266 #ifdef __cplusplus
267 }
268 #endif
269
270 #endif /* _RTE_BUS_H */