bus: add method to find device
[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  * A structure describing a generic bus.
112  */
113 struct rte_bus {
114         TAILQ_ENTRY(rte_bus) next;   /**< Next bus object in linked list */
115         const char *name;            /**< Name of the bus */
116         rte_bus_scan_t scan;         /**< Scan for devices attached to bus */
117         rte_bus_probe_t probe;       /**< Probe devices on bus */
118         rte_bus_find_device_t find_device; /**< Find a device on the bus */
119 };
120
121 /**
122  * Register a Bus handler.
123  *
124  * @param bus
125  *   A pointer to a rte_bus structure describing the bus
126  *   to be registered.
127  */
128 void rte_bus_register(struct rte_bus *bus);
129
130 /**
131  * Unregister a Bus handler.
132  *
133  * @param bus
134  *   A pointer to a rte_bus structure describing the bus
135  *   to be unregistered.
136  */
137 void rte_bus_unregister(struct rte_bus *bus);
138
139 /**
140  * Scan all the buses.
141  *
142  * @return
143  *   0 in case of success in scanning all buses
144  *  !0 in case of failure to scan
145  */
146 int rte_bus_scan(void);
147
148 /**
149  * For each device on the buses, perform a driver 'match' and call the
150  * driver-specific probe for device initialization.
151  *
152  * @return
153  *       0 for successful match/probe
154  *      !0 otherwise
155  */
156 int rte_bus_probe(void);
157
158 /**
159  * Dump information of all the buses registered with EAL.
160  *
161  * @param f
162  *       A valid and open output stream handle
163  *
164  * @return
165  *       0 in case of success
166  *      !0 in case there is error in opening the output stream
167  */
168 void rte_bus_dump(FILE *f);
169
170 /**
171  * Bus comparison function.
172  *
173  * @param bus
174  *      Bus under test.
175  *
176  * @param data
177  *      Data to compare against.
178  *
179  * @return
180  *      0 if the bus matches the data.
181  *      !0 if the bus does not match.
182  *      <0 if ordering is possible and the bus is lower than the data.
183  *      >0 if ordering is possible and the bus is greater than the data.
184  */
185 typedef int (*rte_bus_cmp_t)(const struct rte_bus *bus, const void *data);
186
187 /**
188  * Bus iterator to find a particular bus.
189  *
190  * This function compares each registered bus to find one that matches
191  * the data passed as parameter.
192  *
193  * If the comparison function returns zero this function will stop iterating
194  * over any more buses. To continue a search the bus of a previous search can
195  * be passed via the start parameter.
196  *
197  * @param start
198  *      Starting point for the iteration.
199  *
200  * @param cmp
201  *      Comparison function.
202  *
203  * @param data
204  *       Data to pass to comparison function.
205  *
206  * @return
207  *       A pointer to a rte_bus structure or NULL in case no bus matches
208  */
209 struct rte_bus *rte_bus_find(const struct rte_bus *start, rte_bus_cmp_t cmp,
210                              const void *data);
211
212 /**
213  * Helper for Bus registration.
214  * The constructor has higher priority than PMD constructors.
215  */
216 #define RTE_REGISTER_BUS(nm, bus) \
217 static void __attribute__((constructor(101), used)) businitfn_ ##nm(void) \
218 {\
219         (bus).name = RTE_STR(nm);\
220         rte_bus_register(&bus); \
221 }
222
223 #ifdef __cplusplus
224 }
225 #endif
226
227 #endif /* _RTE_BUS_H */