c79368d3c88225d8952be4434cce05d55fedd2a9
[deb_dpdk.git] / lib / librte_eal / common / include / rte_bus.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2016 NXP
5  *
6  *   Redistribution and use in source and binary forms, with or without
7  *   modification, are permitted provided that the following conditions
8  *   are met:
9  *
10  *     * Redistributions of source code must retain the above copyright
11  *       notice, this list of conditions and the following disclaimer.
12  *     * Redistributions in binary form must reproduce the above copyright
13  *       notice, this list of conditions and the following disclaimer in
14  *       the documentation and/or other materials provided with the
15  *       distribution.
16  *     * Neither the name of NXP nor the names of its
17  *       contributors may be used to endorse or promote products derived
18  *       from this software without specific prior written permission.
19  *
20  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #ifndef _RTE_BUS_H_
34 #define _RTE_BUS_H_
35
36 /**
37  * @file
38  *
39  * DPDK device bus interface
40  *
41  * This file exposes API and interfaces for bus abstraction
42  * over the devices and drivers in EAL.
43  */
44
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48
49 #include <stdio.h>
50 #include <sys/queue.h>
51
52 #include <rte_log.h>
53 #include <rte_dev.h>
54
55 /** Double linked list of buses */
56 TAILQ_HEAD(rte_bus_list, rte_bus);
57
58 /**
59  * Bus specific scan for devices attached on the bus.
60  * For each bus object, the scan would be responsible for finding devices and
61  * adding them to its private device list.
62  *
63  * A bus should mandatorily implement this method.
64  *
65  * @return
66  *      0 for successful scan
67  *      <0 for unsuccessful scan with error value
68  */
69 typedef int (*rte_bus_scan_t)(void);
70
71 /**
72  * Implementation specific probe function which is responsible for linking
73  * devices on that bus with applicable drivers.
74  *
75  * This is called while iterating over each registered bus.
76  *
77  * @return
78  *      0 for successful probe
79  *      !0 for any error while probing
80  */
81 typedef int (*rte_bus_probe_t)(void);
82
83 /**
84  * Device iterator to find a device on a bus.
85  *
86  * This function returns an rte_device if one of those held by the bus
87  * matches the data passed as parameter.
88  *
89  * If the comparison function returns zero this function should stop iterating
90  * over any more devices. To continue a search the device of a previous search
91  * can be passed via the start parameter.
92  *
93  * @param cmp
94  *      Comparison function.
95  *
96  * @param data
97  *      Data to compare each device against.
98  *
99  * @param start
100  *      starting point for the iteration
101  *
102  * @return
103  *      The first device matching the data, NULL if none exists.
104  */
105 typedef struct rte_device *
106 (*rte_bus_find_device_t)(const struct rte_device *start, rte_dev_cmp_t cmp,
107                          const void *data);
108
109 /**
110  * Implementation specific probe function which is responsible for linking
111  * devices on that bus with applicable drivers.
112  *
113  * @param dev
114  *      Device pointer that was returned by a previous call to find_device.
115  *
116  * @return
117  *      0 on success.
118  *      !0 on error.
119  */
120 typedef int (*rte_bus_plug_t)(struct rte_device *dev);
121
122 /**
123  * Implementation specific remove function which is responsible for unlinking
124  * devices on that bus from assigned driver.
125  *
126  * @param dev
127  *      Device pointer that was returned by a previous call to find_device.
128  *
129  * @return
130  *      0 on success.
131  *      !0 on error.
132  */
133 typedef int (*rte_bus_unplug_t)(struct rte_device *dev);
134
135 /**
136  * Bus specific parsing function.
137  * Validates the syntax used in the textual representation of a device,
138  * If the syntax is valid and ``addr`` is not NULL, writes the bus-specific
139  * device representation to ``addr``.
140  *
141  * @param[in] name
142  *      device textual description
143  *
144  * @param[out] addr
145  *      device information location address, into which parsed info
146  *      should be written. If NULL, nothing should be written, which
147  *      is not an error.
148  *
149  * @return
150  *      0 if parsing was successful.
151  *      !0 for any error.
152  */
153 typedef int (*rte_bus_parse_t)(const char *name, void *addr);
154
155 /**
156  * Bus scan policies
157  */
158 enum rte_bus_scan_mode {
159         RTE_BUS_SCAN_UNDEFINED,
160         RTE_BUS_SCAN_WHITELIST,
161         RTE_BUS_SCAN_BLACKLIST,
162 };
163
164 /**
165  * A structure used to configure bus operations.
166  */
167 struct rte_bus_conf {
168         enum rte_bus_scan_mode scan_mode; /**< Scan policy. */
169 };
170
171 /**
172  * A structure describing a generic bus.
173  */
174 struct rte_bus {
175         TAILQ_ENTRY(rte_bus) next;   /**< Next bus object in linked list */
176         const char *name;            /**< Name of the bus */
177         rte_bus_scan_t scan;         /**< Scan for devices attached to bus */
178         rte_bus_probe_t probe;       /**< Probe devices on bus */
179         rte_bus_find_device_t find_device; /**< Find a device on the bus */
180         rte_bus_plug_t plug;         /**< Probe single device for drivers */
181         rte_bus_unplug_t unplug;     /**< Remove single device from driver */
182         rte_bus_parse_t parse;       /**< Parse a device name */
183         struct rte_bus_conf conf;    /**< Bus configuration */
184 };
185
186 /**
187  * Register a Bus handler.
188  *
189  * @param bus
190  *   A pointer to a rte_bus structure describing the bus
191  *   to be registered.
192  */
193 void rte_bus_register(struct rte_bus *bus);
194
195 /**
196  * Unregister a Bus handler.
197  *
198  * @param bus
199  *   A pointer to a rte_bus structure describing the bus
200  *   to be unregistered.
201  */
202 void rte_bus_unregister(struct rte_bus *bus);
203
204 /**
205  * Scan all the buses.
206  *
207  * @return
208  *   0 in case of success in scanning all buses
209  *  !0 in case of failure to scan
210  */
211 int rte_bus_scan(void);
212
213 /**
214  * For each device on the buses, perform a driver 'match' and call the
215  * driver-specific probe for device initialization.
216  *
217  * @return
218  *       0 for successful match/probe
219  *      !0 otherwise
220  */
221 int rte_bus_probe(void);
222
223 /**
224  * Dump information of all the buses registered with EAL.
225  *
226  * @param f
227  *       A valid and open output stream handle
228  */
229 void rte_bus_dump(FILE *f);
230
231 /**
232  * Bus comparison function.
233  *
234  * @param bus
235  *      Bus under test.
236  *
237  * @param data
238  *      Data to compare against.
239  *
240  * @return
241  *      0 if the bus matches the data.
242  *      !0 if the bus does not match.
243  *      <0 if ordering is possible and the bus is lower than the data.
244  *      >0 if ordering is possible and the bus is greater than the data.
245  */
246 typedef int (*rte_bus_cmp_t)(const struct rte_bus *bus, const void *data);
247
248 /**
249  * Bus iterator to find a particular bus.
250  *
251  * This function compares each registered bus to find one that matches
252  * the data passed as parameter.
253  *
254  * If the comparison function returns zero this function will stop iterating
255  * over any more buses. To continue a search the bus of a previous search can
256  * be passed via the start parameter.
257  *
258  * @param start
259  *      Starting point for the iteration.
260  *
261  * @param cmp
262  *      Comparison function.
263  *
264  * @param data
265  *       Data to pass to comparison function.
266  *
267  * @return
268  *       A pointer to a rte_bus structure or NULL in case no bus matches
269  */
270 struct rte_bus *rte_bus_find(const struct rte_bus *start, rte_bus_cmp_t cmp,
271                              const void *data);
272
273 /**
274  * Find the registered bus for a particular device.
275  */
276 struct rte_bus *rte_bus_find_by_device(const struct rte_device *dev);
277
278 /**
279  * Find the registered bus for a given name.
280  */
281 struct rte_bus *rte_bus_find_by_name(const char *busname);
282
283 /**
284  * Helper for Bus registration.
285  * The constructor has higher priority than PMD constructors.
286  */
287 #define RTE_REGISTER_BUS(nm, bus) \
288 RTE_INIT_PRIO(businitfn_ ##nm, 101); \
289 static void businitfn_ ##nm(void) \
290 {\
291         (bus).name = RTE_STR(nm);\
292         rte_bus_register(&bus); \
293 }
294
295 #ifdef __cplusplus
296 }
297 #endif
298
299 #endif /* _RTE_BUS_H */