Imported Upstream version 16.04
[deb_dpdk.git] / lib / librte_eal / linuxapp / eal / include / exec-env / rte_interrupts.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
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 Intel Corporation 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_INTERRUPTS_H_
35 #error "don't include this file directly, please include generic <rte_interrupts.h>"
36 #endif
37
38 #ifndef _RTE_LINUXAPP_INTERRUPTS_H_
39 #define _RTE_LINUXAPP_INTERRUPTS_H_
40
41 #define RTE_MAX_RXTX_INTR_VEC_ID     32
42 #define RTE_INTR_VEC_ZERO_OFFSET      0
43 #define RTE_INTR_VEC_RXTX_OFFSET      1
44
45 enum rte_intr_handle_type {
46         RTE_INTR_HANDLE_UNKNOWN = 0,
47         RTE_INTR_HANDLE_UIO,          /**< uio device handle */
48         RTE_INTR_HANDLE_UIO_INTX,     /**< uio generic handle */
49         RTE_INTR_HANDLE_VFIO_LEGACY,  /**< vfio device handle (legacy) */
50         RTE_INTR_HANDLE_VFIO_MSI,     /**< vfio device handle (MSI) */
51         RTE_INTR_HANDLE_VFIO_MSIX,    /**< vfio device handle (MSIX) */
52         RTE_INTR_HANDLE_ALARM,    /**< alarm handle */
53         RTE_INTR_HANDLE_EXT, /**< external handler */
54         RTE_INTR_HANDLE_MAX
55 };
56
57 #define RTE_INTR_EVENT_ADD            1UL
58 #define RTE_INTR_EVENT_DEL            2UL
59
60 typedef void (*rte_intr_event_cb_t)(int fd, void *arg);
61
62 struct rte_epoll_data {
63         uint32_t event;               /**< event type */
64         void *data;                   /**< User data */
65         rte_intr_event_cb_t cb_fun;   /**< IN: callback fun */
66         void *cb_arg;                 /**< IN: callback arg */
67 };
68
69 enum {
70         RTE_EPOLL_INVALID = 0,
71         RTE_EPOLL_VALID,
72         RTE_EPOLL_EXEC,
73 };
74
75 /** interrupt epoll event obj, taken by epoll_event.ptr */
76 struct rte_epoll_event {
77         volatile uint32_t status;  /**< OUT: event status */
78         int fd;                    /**< OUT: event fd */
79         int epfd;       /**< OUT: epoll instance the ev associated with */
80         struct rte_epoll_data epdata;
81 };
82
83 /** Handle for interrupts. */
84 struct rte_intr_handle {
85         union {
86                 int vfio_dev_fd;  /**< VFIO device file descriptor */
87                 int uio_cfg_fd;  /**< UIO config file descriptor
88                                         for uio_pci_generic */
89         };
90         int fd;  /**< interrupt event file descriptor */
91         enum rte_intr_handle_type type;  /**< handle type */
92         uint32_t max_intr;             /**< max interrupt requested */
93         uint32_t nb_efd;               /**< number of available efd(event fd) */
94         int efds[RTE_MAX_RXTX_INTR_VEC_ID];  /**< intr vectors/efds mapping */
95         struct rte_epoll_event elist[RTE_MAX_RXTX_INTR_VEC_ID];
96                                        /**< intr vector epoll event */
97         int *intr_vec;                 /**< intr vector number array */
98 };
99
100 #define RTE_EPOLL_PER_THREAD        -1  /**< to hint using per thread epfd */
101
102 /**
103  * It waits for events on the epoll instance.
104  *
105  * @param epfd
106  *   Epoll instance fd on which the caller wait for events.
107  * @param events
108  *   Memory area contains the events that will be available for the caller.
109  * @param maxevents
110  *   Up to maxevents are returned, must greater than zero.
111  * @param timeout
112  *   Specifying a timeout of -1 causes a block indefinitely.
113  *   Specifying a timeout equal to zero cause to return immediately.
114  * @return
115  *   - On success, returns the number of available event.
116  *   - On failure, a negative value.
117  */
118 int
119 rte_epoll_wait(int epfd, struct rte_epoll_event *events,
120                int maxevents, int timeout);
121
122 /**
123  * It performs control operations on epoll instance referred by the epfd.
124  * It requests that the operation op be performed for the target fd.
125  *
126  * @param epfd
127  *   Epoll instance fd on which the caller perform control operations.
128  * @param op
129  *   The operation be performed for the target fd.
130  * @param fd
131  *   The target fd on which the control ops perform.
132  * @param event
133  *   Describes the object linked to the fd.
134  *   Note: The caller must take care the object deletion after CTL_DEL.
135  * @return
136  *   - On success, zero.
137  *   - On failure, a negative value.
138  */
139 int
140 rte_epoll_ctl(int epfd, int op, int fd,
141               struct rte_epoll_event *event);
142
143 /**
144  * The function returns the per thread epoll instance.
145  *
146  * @return
147  *   epfd the epoll instance referred to.
148  */
149 int
150 rte_intr_tls_epfd(void);
151
152 /**
153  * @param intr_handle
154  *   Pointer to the interrupt handle.
155  * @param epfd
156  *   Epoll instance fd which the intr vector associated to.
157  * @param op
158  *   The operation be performed for the vector.
159  *   Operation type of {ADD, DEL}.
160  * @param vec
161  *   RX intr vector number added to the epoll instance wait list.
162  * @param data
163  *   User raw data.
164  * @return
165  *   - On success, zero.
166  *   - On failure, a negative value.
167  */
168 int
169 rte_intr_rx_ctl(struct rte_intr_handle *intr_handle,
170                 int epfd, int op, unsigned int vec, void *data);
171
172 /**
173  * It enables the packet I/O interrupt event if it's necessary.
174  * It creates event fd for each interrupt vector when MSIX is used,
175  * otherwise it multiplexes a single event fd.
176  *
177  * @param intr_handle
178  *   Pointer to the interrupt handle.
179  * @param nb_efd
180  *   Number of interrupt vector trying to enable.
181  *   The value 0 is not allowed.
182  * @return
183  *   - On success, zero.
184  *   - On failure, a negative value.
185  */
186 int
187 rte_intr_efd_enable(struct rte_intr_handle *intr_handle, uint32_t nb_efd);
188
189 /**
190  * It disables the packet I/O interrupt event.
191  * It deletes registered eventfds and closes the open fds.
192  *
193  * @param intr_handle
194  *   Pointer to the interrupt handle.
195  */
196 void
197 rte_intr_efd_disable(struct rte_intr_handle *intr_handle);
198
199 /**
200  * The packet I/O interrupt on datapath is enabled or not.
201  *
202  * @param intr_handle
203  *   Pointer to the interrupt handle.
204  */
205 int
206 rte_intr_dp_is_en(struct rte_intr_handle *intr_handle);
207
208 /**
209  * The interrupt handle instance allows other causes or not.
210  * Other causes stand for any none packet I/O interrupts.
211  *
212  * @param intr_handle
213  *   Pointer to the interrupt handle.
214  */
215 int
216 rte_intr_allow_others(struct rte_intr_handle *intr_handle);
217
218 /**
219  * The multiple interrupt vector capability of interrupt handle instance.
220  * It returns zero if no multiple interrupt vector support.
221  *
222  * @param intr_handle
223  *   Pointer to the interrupt handle.
224  */
225 int
226 rte_intr_cap_multiple(struct rte_intr_handle *intr_handle);
227
228 #endif /* _RTE_LINUXAPP_INTERRUPTS_H_ */