Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
Florin Coras | c5df8c7 | 2019-04-08 07:42:30 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016-2019 Cisco and/or its affiliates. |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 3 | * Copyright (c) 2019 Arm Limited |
| 4 | * Copyright (c) 2010-2017 Intel Corporation and/or its affiliates. |
| 5 | * Copyright (c) 2007-2009 Kip Macy kmacy@freebsd.org |
| 6 | * Inspired from DPDK rte_ring.h (SPSC only) (derived from freebsd bufring.h). |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | * you may not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at: |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
| 18 | */ |
| 19 | #ifndef __included_ssvm_fifo_h__ |
| 20 | #define __included_ssvm_fifo_h__ |
| 21 | |
| 22 | #include <vppinfra/clib.h> |
| 23 | #include <vppinfra/vec.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 24 | #include <vppinfra/pool.h> |
| 25 | #include <vppinfra/format.h> |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 26 | #include <svm/fifo_types.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 27 | |
Florin Coras | 326b81e | 2018-10-04 19:03:05 -0700 | [diff] [blame] | 28 | #define OOO_SEGMENT_INVALID_INDEX ((u32)~0) |
| 29 | #define SVM_FIFO_INVALID_SESSION_INDEX ((u32)~0) |
Florin Coras | fa76a76 | 2018-11-29 12:40:10 -0800 | [diff] [blame] | 30 | #define SVM_FIFO_INVALID_INDEX ((u32)~0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 31 | |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 32 | typedef enum svm_fifo_deq_ntf_ |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 33 | { |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 34 | SVM_FIFO_NO_DEQ_NOTIF = 0, /**< No notification requested */ |
| 35 | SVM_FIFO_WANT_DEQ_NOTIF = 1, /**< Notify on dequeue */ |
| 36 | SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL = 2, /**< Notify on transition from full */ |
| 37 | SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY = 4, /**< Notify on transition to empty */ |
| 38 | } svm_fifo_deq_ntf_t; |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 39 | |
Florin Coras | 2309e7a | 2019-04-18 18:58:10 -0700 | [diff] [blame] | 40 | typedef enum svm_fifo_flag_ |
| 41 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 42 | SVM_FIFO_F_LL_TRACKED = 1 << 0, |
Florin Coras | 2309e7a | 2019-04-18 18:58:10 -0700 | [diff] [blame] | 43 | } svm_fifo_flag_t; |
| 44 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 45 | typedef enum |
| 46 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 47 | SVM_FIFO_EFULL = -2, |
| 48 | SVM_FIFO_EEMPTY = -3, |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 49 | SVM_FIFO_EGROW = -4, |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 50 | } svm_fifo_err_t; |
| 51 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 52 | typedef struct svm_fifo_seg_ |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 53 | { |
| 54 | u8 *data; |
| 55 | u32 len; |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 56 | } svm_fifo_seg_t; |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 57 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 58 | #if SVM_FIFO_TRACE |
| 59 | #define svm_fifo_trace_add(_f, _s, _l, _t) \ |
| 60 | { \ |
| 61 | svm_fifo_trace_elem_t *trace_elt; \ |
| 62 | vec_add2(_f->trace, trace_elt, 1); \ |
| 63 | trace_elt->offset = _s; \ |
| 64 | trace_elt->len = _l; \ |
| 65 | trace_elt->action = _t; \ |
| 66 | } |
| 67 | #else |
| 68 | #define svm_fifo_trace_add(_f, _s, _l, _t) |
| 69 | #endif |
| 70 | |
| 71 | u8 *svm_fifo_dump_trace (u8 * s, svm_fifo_t * f); |
| 72 | u8 *svm_fifo_replay (u8 * s, svm_fifo_t * f, u8 no_read, u8 verbose); |
| 73 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 74 | /** |
| 75 | * Load head and tail optimized for consumer |
| 76 | * |
| 77 | * Internal function. |
| 78 | */ |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 79 | static inline void |
| 80 | f_load_head_tail_cons (svm_fifo_t * f, u32 * head, u32 * tail) |
| 81 | { |
| 82 | /* load-relaxed: consumer owned index */ |
| 83 | *head = f->head; |
| 84 | /* load-acq: consumer foreign index (paired with store-rel in producer) */ |
| 85 | *tail = clib_atomic_load_acq_n (&f->tail); |
| 86 | } |
| 87 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 88 | /** Load head and tail optimized for producer |
| 89 | * |
| 90 | * Internal function |
| 91 | */ |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 92 | static inline void |
| 93 | f_load_head_tail_prod (svm_fifo_t * f, u32 * head, u32 * tail) |
| 94 | { |
| 95 | /* load relaxed: producer owned index */ |
| 96 | *tail = f->tail; |
| 97 | /* load-acq: producer foreign index (paired with store-rel in consumer) */ |
| 98 | *head = clib_atomic_load_acq_n (&f->head); |
| 99 | } |
| 100 | |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 101 | /** |
| 102 | * Load head and tail independent of producer/consumer role |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 103 | * |
| 104 | * Internal function. |
| 105 | */ |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 106 | static inline void |
| 107 | f_load_head_tail_all_acq (svm_fifo_t * f, u32 * head, u32 * tail) |
| 108 | { |
| 109 | /* load-acq : consumer foreign index (paired with store-rel) */ |
| 110 | *tail = clib_atomic_load_acq_n (&f->tail); |
| 111 | /* load-acq : producer foriegn index (paired with store-rel) */ |
| 112 | *head = clib_atomic_load_acq_n (&f->head); |
| 113 | } |
| 114 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 115 | /** |
Florin Coras | 29a59c3 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 116 | * Fifo current size, i.e., number of bytes enqueued |
| 117 | * |
| 118 | * Internal function. |
| 119 | */ |
| 120 | static inline u32 |
| 121 | f_cursize (svm_fifo_t * f, u32 head, u32 tail) |
| 122 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 123 | return tail - head; |
Florin Coras | 29a59c3 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Fifo free bytes, i.e., number of free bytes |
| 128 | * |
| 129 | * Internal function |
| 130 | */ |
| 131 | static inline u32 |
| 132 | f_free_count (svm_fifo_t * f, u32 head, u32 tail) |
| 133 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 134 | return (f->size - f_cursize (f, head, tail)); |
Florin Coras | 29a59c3 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 137 | always_inline u32 |
| 138 | f_chunk_end (svm_fifo_chunk_t * c) |
| 139 | { |
| 140 | return c->start_byte + c->length; |
| 141 | } |
| 142 | |
| 143 | always_inline int |
| 144 | f_pos_lt (u32 a, u32 b) |
| 145 | { |
| 146 | return ((i32) (a - b) < 0); |
| 147 | } |
| 148 | |
| 149 | always_inline int |
| 150 | f_pos_leq (u32 a, u32 b) |
| 151 | { |
| 152 | return ((i32) (a - b) <= 0); |
| 153 | } |
| 154 | |
| 155 | always_inline int |
| 156 | f_pos_gt (u32 a, u32 b) |
| 157 | { |
| 158 | return ((i32) (a - b) > 0); |
| 159 | } |
| 160 | |
| 161 | always_inline int |
| 162 | f_pos_geq (u32 a, u32 b) |
| 163 | { |
| 164 | return ((i32) (a - b) >= 0); |
| 165 | } |
| 166 | |
| 167 | always_inline u8 |
| 168 | f_chunk_includes_pos (svm_fifo_chunk_t * c, u32 pos) |
| 169 | { |
| 170 | return (f_pos_geq (pos, c->start_byte) |
| 171 | && f_pos_lt (pos, c->start_byte + c->length)); |
| 172 | } |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 173 | |
| 174 | /** |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 175 | * Create fifo of requested size |
Florin Coras | 41c9e04 | 2018-09-11 00:10:41 -0700 | [diff] [blame] | 176 | * |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 177 | * Allocates fifo on current heap. |
| 178 | * |
| 179 | * @param size data size in bytes for fifo to be allocated. Will be |
| 180 | * rounded to the next highest power-of-two value. |
| 181 | * @return pointer to new fifo |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 182 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 183 | svm_fifo_t *svm_fifo_alloc (u32 size); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 184 | /** |
| 185 | * Initialize fifo |
| 186 | * |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 187 | * @param f fifo |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 188 | * @param size size for fifo |
| 189 | */ |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 190 | void svm_fifo_init (svm_fifo_t * f, u32 size); |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 191 | /** |
| 192 | * Allocate a fifo chunk on heap |
| 193 | * |
| 194 | * If the chunk is allocated on a fifo segment, this should be called |
| 195 | * with the segment's heap pushed. |
| 196 | * |
| 197 | * @param size chunk size in bytes. Will be rounded to the next highest |
| 198 | * power-of-two |
| 199 | * @return new chunk or 0 if alloc failed |
| 200 | */ |
| 201 | svm_fifo_chunk_t *svm_fifo_chunk_alloc (u32 size); |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 202 | /** |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 203 | * Ensure the whole fifo size is writeable |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 204 | * |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 205 | * Allocates enough chunks to cover the whole fifo size. |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 206 | * |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 207 | * @param f fifo |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 208 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 209 | int svm_fifo_fill_chunk_list (svm_fifo_t * f); |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 210 | /** |
| 211 | * Initialize rbtrees used for ooo lookups |
| 212 | * |
| 213 | * @param f fifo |
| 214 | * @param ooo_type type of ooo operation (0 enqueue, 1 dequeue) |
| 215 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 216 | void svm_fifo_init_ooo_lookup (svm_fifo_t * f, u8 ooo_type); |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 217 | /** |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 218 | * Free fifo and associated state |
| 219 | * |
| 220 | * @param f fifo |
| 221 | */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 222 | void svm_fifo_free (svm_fifo_t * f); |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 223 | /** |
| 224 | * Cleanup fifo chunk lookup rb tree |
| 225 | * |
| 226 | * The rb tree is allocated in segment heap so this should be called |
| 227 | * with it pushed. |
| 228 | * |
| 229 | * @param f fifo to cleanup |
| 230 | */ |
| 231 | void svm_fifo_free_chunk_lookup (svm_fifo_t * f); |
| 232 | /** |
| 233 | * Cleanup fifo ooo data |
| 234 | * |
| 235 | * The ooo data is allocated in producer process memory. The fifo |
| 236 | * segment heap should not be pushed. |
| 237 | * |
| 238 | * @param f fifo to cleanup |
| 239 | */ |
| 240 | void svm_fifo_free_ooo_data (svm_fifo_t * f); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 241 | /** |
| 242 | * Init fifo head and tail |
| 243 | * |
| 244 | * @param f fifo |
| 245 | * @param head head value that will be matched to a chunk |
| 246 | * @param tail tail value that will be matched to a chunk |
| 247 | */ |
| 248 | void svm_fifo_init_pointers (svm_fifo_t * f, u32 head, u32 tail); |
| 249 | /** |
| 250 | * Clone fifo |
| 251 | * |
| 252 | * Clones single/default chunk fifo. It does not work for fifos with |
| 253 | * multiple chunks. |
| 254 | */ |
| 255 | void svm_fifo_clone (svm_fifo_t * df, svm_fifo_t * sf); |
| 256 | /** |
| 257 | * Enqueue data to fifo |
| 258 | * |
| 259 | * Data is enqueued and tail pointer is updated atomically. If the new data |
| 260 | * enqueued partly overlaps or "touches" an out-of-order segment, said segment |
| 261 | * is "consumed" and the number of bytes returned is appropriately updated. |
| 262 | * |
| 263 | * @param f fifo |
| 264 | * @param len length of data to copy |
| 265 | * @param src buffer from where to copy the data |
| 266 | * @return number of contiguous bytes that can be consumed or error |
| 267 | */ |
| 268 | int svm_fifo_enqueue (svm_fifo_t * f, u32 len, const u8 * src); |
| 269 | /** |
| 270 | * Enqueue data to fifo with offset |
| 271 | * |
| 272 | * Data is enqueued without updating tail pointer. Instead, an out-of-order |
| 273 | * list of segments is generated and maintained. Fifo takes care of coalescing |
| 274 | * contiguous or overlapping segments. |
| 275 | * |
| 276 | * @param f fifo |
| 277 | * @param offset offset at which to copy the data |
| 278 | * @param len len of data to copy |
| 279 | * @param src buffer from where to copy the data |
| 280 | * @return 0 if enqueue was successful, error otherwise |
| 281 | */ |
| 282 | int svm_fifo_enqueue_with_offset (svm_fifo_t * f, u32 offset, u32 len, |
| 283 | u8 * src); |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 284 | |
| 285 | /** |
| 286 | * Advance tail pointer |
| 287 | * |
| 288 | * Useful for moving tail pointer after external enqueue. |
| 289 | * |
| 290 | * @param f fifo |
| 291 | * @param len number of bytes to add to tail |
| 292 | */ |
| 293 | void svm_fifo_enqueue_nocopy (svm_fifo_t * f, u32 len); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 294 | /** |
| 295 | * Overwrite fifo head with new data |
| 296 | * |
| 297 | * This should be typically used by dgram transport protocols that need |
Florin Coras | 97d39e3 | 2020-09-04 08:57:27 -0700 | [diff] [blame] | 298 | * to update the dgram header after dequeuing a chunk of data. It assumes |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 299 | * that the dgram header is at most spread over two chunks. |
| 300 | * |
| 301 | * @param f fifo |
| 302 | * @param src src of new data |
| 303 | * @param len length of new data |
| 304 | */ |
| 305 | void svm_fifo_overwrite_head (svm_fifo_t * f, u8 * src, u32 len); |
| 306 | /** |
| 307 | * Dequeue data from fifo |
| 308 | * |
| 309 | * Data is dequeued to consumer provided buffer and head is atomically |
Florin Coras | 97d39e3 | 2020-09-04 08:57:27 -0700 | [diff] [blame] | 310 | * updated. This should not be used in combination with ooo lookups. If |
| 311 | * ooo peeking of data is needed in combination with dequeuing use @ref |
| 312 | * svm_fifo_dequeue_drop. |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 313 | * |
| 314 | * @param f fifo |
| 315 | * @param len length of data to dequeue |
| 316 | * @param dst buffer to where to dequeue the data |
| 317 | * @return number of bytes dequeued or error |
| 318 | */ |
| 319 | int svm_fifo_dequeue (svm_fifo_t * f, u32 len, u8 * dst); |
| 320 | /** |
| 321 | * Peek data from fifo |
| 322 | * |
| 323 | * Data is copied from requested offset into provided dst buffer. Head is |
| 324 | * not updated. |
| 325 | * |
| 326 | * @param f fifo |
| 327 | * @param offset offset from which to copy the data |
| 328 | * @param len length of data to copy |
| 329 | * @param dst buffer to where to dequeue the data |
| 330 | * @return number of bytes peeked |
| 331 | */ |
| 332 | int svm_fifo_peek (svm_fifo_t * f, u32 offset, u32 len, u8 * dst); |
| 333 | /** |
| 334 | * Dequeue and drop bytes from fifo |
| 335 | * |
| 336 | * Advances fifo head by requested amount of bytes. |
| 337 | * |
| 338 | * @param f fifo |
| 339 | * @param len number of bytes to drop |
| 340 | * @return number of bytes dropped |
| 341 | */ |
| 342 | int svm_fifo_dequeue_drop (svm_fifo_t * f, u32 len); |
| 343 | /** |
| 344 | * Dequeue and drop all bytes from fifo |
| 345 | * |
| 346 | * Advances head to tail position. |
| 347 | * |
| 348 | * @param f fifo |
| 349 | */ |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 350 | void svm_fifo_dequeue_drop_all (svm_fifo_t * f); |
Florin Coras | d68faf8 | 2020-09-25 15:18:13 -0700 | [diff] [blame] | 351 | /** |
| 352 | * Get pointers to fifo chunks data in @ref svm_fifo_seg_t array |
| 353 | * |
| 354 | * Populates fifo segment array with pointers to fifo chunk data and lengths. |
| 355 | * Because this returns pointers to data, it must be paired with |
| 356 | * @ref svm_fifo_dequeue_drop to actually release the fifo chunks after the |
| 357 | * data is consumed. |
| 358 | * |
| 359 | * @param f fifo |
Florin Coras | d1cc38d | 2020-10-11 11:05:04 -0700 | [diff] [blame] | 360 | * @param offset offset from where to retrieve segments |
Florin Coras | d68faf8 | 2020-09-25 15:18:13 -0700 | [diff] [blame] | 361 | * @param fs array of fifo segments allocated by caller |
| 362 | * @param n_segs number of fifo segments in array |
| 363 | * @param max_bytes max bytes to be mapped to fifo segments |
| 364 | * @return number of bytes in fifo segments or SVM_FIFO_EEMPTY |
| 365 | */ |
Florin Coras | d1cc38d | 2020-10-11 11:05:04 -0700 | [diff] [blame] | 366 | int svm_fifo_segments (svm_fifo_t * f, u32 offset, svm_fifo_seg_t * fs, |
| 367 | u32 n_segs, u32 max_bytes); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 368 | /** |
| 369 | * Add io events subscriber to list |
| 370 | * |
| 371 | * @param f fifo |
| 372 | * @param sub subscriber opaque index (typically app worker index) |
| 373 | */ |
| 374 | void svm_fifo_add_subscriber (svm_fifo_t * f, u8 sub); |
| 375 | /** |
| 376 | * Remove io events subscriber form list |
| 377 | * |
| 378 | * @param f fifo |
| 379 | * @param sub subscriber index to be removed |
| 380 | */ |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 381 | void svm_fifo_del_subscriber (svm_fifo_t * f, u8 subscriber); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 382 | /** |
| 383 | * Number of out-of-order segments for fifo |
| 384 | * |
| 385 | * @param f fifo |
| 386 | * @return number of out of order segments |
| 387 | */ |
| 388 | u32 svm_fifo_n_ooo_segments (svm_fifo_t * f); |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 389 | /** |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 390 | * First out-of-order segment for fifo |
| 391 | * |
| 392 | * @param f fifo |
| 393 | * @return first out-of-order segment for fifo |
| 394 | */ |
| 395 | ooo_segment_t *svm_fifo_first_ooo_segment (svm_fifo_t * f); |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 396 | /** |
| 397 | * Check if fifo is sane. Debug only. |
| 398 | * |
| 399 | * @param f fifo |
| 400 | * @return 1 if sane, 0 otherwise |
| 401 | */ |
| 402 | u8 svm_fifo_is_sane (svm_fifo_t * f); |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 403 | /** |
| 404 | * Number of chunks linked into the fifo |
| 405 | * |
| 406 | * @param f fifo |
| 407 | * @return number of chunks in fifo linked list |
| 408 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 409 | u32 svm_fifo_n_chunks (svm_fifo_t * f); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 410 | format_function_t format_svm_fifo; |
| 411 | |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 412 | /** |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 413 | * Fifo max bytes to dequeue optimized for consumer |
| 414 | * |
| 415 | * @param f fifo |
| 416 | * @return max number of bytes that can be dequeued |
| 417 | */ |
| 418 | static inline u32 |
| 419 | svm_fifo_max_dequeue_cons (svm_fifo_t * f) |
| 420 | { |
| 421 | u32 tail, head; |
| 422 | f_load_head_tail_cons (f, &head, &tail); |
| 423 | return f_cursize (f, head, tail); |
| 424 | } |
| 425 | |
| 426 | /** |
| 427 | * Fifo max bytes to dequeue optimized for producer |
| 428 | * |
| 429 | * @param f fifo |
| 430 | * @return max number of bytes that can be dequeued |
| 431 | */ |
| 432 | static inline u32 |
| 433 | svm_fifo_max_dequeue_prod (svm_fifo_t * f) |
| 434 | { |
| 435 | u32 tail, head; |
| 436 | f_load_head_tail_prod (f, &head, &tail); |
| 437 | return f_cursize (f, head, tail); |
| 438 | } |
| 439 | |
| 440 | /** |
| 441 | * Fifo max bytes to dequeue |
| 442 | * |
| 443 | * Note: use producer or consumer specific functions for performance: |
| 444 | * @ref svm_fifo_max_dequeue_cons (svm_fifo_t *f) |
| 445 | * @ref svm_fifo_max_dequeue_prod (svm_fifo_t *f) |
| 446 | */ |
| 447 | static inline u32 |
| 448 | svm_fifo_max_dequeue (svm_fifo_t * f) |
| 449 | { |
| 450 | u32 tail, head; |
| 451 | f_load_head_tail_all_acq (f, &head, &tail); |
| 452 | return f_cursize (f, head, tail); |
| 453 | } |
| 454 | |
| 455 | /** |
| 456 | * Check if fifo is full optimized for producer |
| 457 | * |
| 458 | * @param f fifo |
| 459 | * @return 1 if fifo is full 0 otherwise |
| 460 | */ |
| 461 | static inline int |
| 462 | svm_fifo_is_full_prod (svm_fifo_t * f) |
| 463 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 464 | return (svm_fifo_max_dequeue_prod (f) == f->size); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | /* Check if fifo is full. |
| 468 | * |
| 469 | * Note: use producer or consumer specific functions for performance. |
| 470 | * @ref svm_fifo_is_full_prod (svm_fifo_t * f) |
| 471 | * add cons version if needed |
| 472 | */ |
| 473 | static inline int |
| 474 | svm_fifo_is_full (svm_fifo_t * f) |
| 475 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 476 | return (svm_fifo_max_dequeue (f) == f->size); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | /** |
| 480 | * Check if fifo is empty optimized for consumer |
| 481 | * |
| 482 | * @param f fifo |
| 483 | * @return 1 if fifo is empty 0 otherwise |
| 484 | */ |
| 485 | static inline int |
| 486 | svm_fifo_is_empty_cons (svm_fifo_t * f) |
| 487 | { |
| 488 | return (svm_fifo_max_dequeue_cons (f) == 0); |
| 489 | } |
| 490 | |
| 491 | /** |
| 492 | * Check if fifo is empty optimized for producer |
| 493 | * |
| 494 | * @param f fifo |
| 495 | * @return 1 if fifo is empty 0 otherwise |
| 496 | */ |
| 497 | static inline int |
| 498 | svm_fifo_is_empty_prod (svm_fifo_t * f) |
| 499 | { |
| 500 | return (svm_fifo_max_dequeue_prod (f) == 0); |
| 501 | } |
| 502 | |
| 503 | /** |
| 504 | * Check if fifo is empty |
| 505 | * |
| 506 | * Note: use producer or consumer specific functions for perfomance. |
| 507 | * @ref svm_fifo_is_empty_cons (svm_fifo_t * f) |
| 508 | * @ref svm_fifo_is_empty_prod (svm_fifo_t * f) |
| 509 | */ |
| 510 | static inline int |
| 511 | svm_fifo_is_empty (svm_fifo_t * f) |
| 512 | { |
| 513 | return (svm_fifo_max_dequeue (f) == 0); |
| 514 | } |
| 515 | |
| 516 | /** |
| 517 | * Check if fifo is wrapped |
| 518 | * |
| 519 | * @param f fifo |
| 520 | * @return 1 if 'normalized' head is ahead of tail |
| 521 | */ |
| 522 | static inline u8 |
| 523 | svm_fifo_is_wrapped (svm_fifo_t * f) |
| 524 | { |
| 525 | u32 head, tail; |
| 526 | f_load_head_tail_all_acq (f, &head, &tail); |
Florin Coras | 29a59c3 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 527 | return head > tail; |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | /** |
| 531 | * Maximum number of bytes that can be enqueued into fifo |
| 532 | * |
| 533 | * Optimized for producer |
| 534 | * |
| 535 | * @param f fifo |
| 536 | * @return max number of bytes that can be enqueued into fifo |
| 537 | */ |
| 538 | static inline u32 |
| 539 | svm_fifo_max_enqueue_prod (svm_fifo_t * f) |
| 540 | { |
| 541 | u32 head, tail; |
| 542 | f_load_head_tail_prod (f, &head, &tail); |
| 543 | return f_free_count (f, head, tail); |
| 544 | } |
| 545 | |
| 546 | /* Maximum number of bytes that can be enqueued into fifo |
| 547 | * |
| 548 | * Note: use producer or consumer specific functions for performance. |
| 549 | * @ref svm_fifo_max_enqueue_prod (svm_fifo_t *f) |
| 550 | * add consumer specific version if needed. |
| 551 | */ |
| 552 | static inline u32 |
| 553 | svm_fifo_max_enqueue (svm_fifo_t * f) |
| 554 | { |
| 555 | u32 head, tail; |
| 556 | f_load_head_tail_all_acq (f, &head, &tail); |
| 557 | return f_free_count (f, head, tail); |
| 558 | } |
| 559 | |
| 560 | /** |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 561 | * Max contiguous chunk of data that can be read. |
| 562 | * |
| 563 | * Should only be called by consumers. |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 564 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 565 | u32 svm_fifo_max_read_chunk (svm_fifo_t * f); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 566 | |
| 567 | /** |
| 568 | * Max contiguous chunk of data that can be written |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 569 | * |
| 570 | * Should only be called by producers |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 571 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 572 | u32 svm_fifo_max_write_chunk (svm_fifo_t * f); |
| 573 | |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 574 | /** |
| 575 | * Fifo head chunk getter |
| 576 | * |
| 577 | * @param f fifo |
| 578 | * @return head chunk pointer |
| 579 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 580 | static inline svm_fifo_chunk_t * |
| 581 | svm_fifo_head_chunk (svm_fifo_t * f) |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 582 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 583 | return f->head_chunk; |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 584 | } |
| 585 | |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 586 | /** |
| 587 | * Fifo head pointer getter |
| 588 | * |
| 589 | * @param f fifo |
| 590 | * @return head pointer |
| 591 | */ |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 592 | static inline u8 * |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 593 | svm_fifo_head (svm_fifo_t * f) |
| 594 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 595 | if (!f->head_chunk) |
| 596 | return 0; |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 597 | /* load-relaxed: consumer owned index */ |
Florin Coras | 29a59c3 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 598 | return (f->head_chunk->data + (f->head - f->head_chunk->start_byte)); |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 599 | } |
| 600 | |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 601 | /** |
| 602 | * Fifo tail chunk getter |
| 603 | * |
| 604 | * @param f fifo |
| 605 | * @return tail chunk pointer |
| 606 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 607 | static inline svm_fifo_chunk_t * |
| 608 | svm_fifo_tail_chunk (svm_fifo_t * f) |
| 609 | { |
| 610 | return f->tail_chunk; |
| 611 | } |
| 612 | |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 613 | /** |
| 614 | * Fifo tail pointer getter |
| 615 | * |
| 616 | * @param f fifo |
| 617 | * @return tail pointer |
| 618 | */ |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 619 | static inline u8 * |
Florin Coras | 58d36f0 | 2018-03-09 13:05:53 -0800 | [diff] [blame] | 620 | svm_fifo_tail (svm_fifo_t * f) |
| 621 | { |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 622 | /* load-relaxed: producer owned index */ |
Florin Coras | 29a59c3 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 623 | return (f->tail_chunk->data + (f->tail - f->tail_chunk->start_byte)); |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 624 | } |
| 625 | |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 626 | /** |
| 627 | * Fifo number of subscribers getter |
| 628 | * |
| 629 | * @param f fifo |
| 630 | * @return number of subscribers |
| 631 | */ |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 632 | static inline u8 |
| 633 | svm_fifo_n_subscribers (svm_fifo_t * f) |
| 634 | { |
| 635 | return f->n_subscribers; |
| 636 | } |
| 637 | |
| 638 | /** |
| 639 | * Check if fifo has out-of-order data |
| 640 | * |
| 641 | * @param f fifo |
| 642 | * @return 1 if fifo has ooo data, 0 otherwise |
| 643 | */ |
| 644 | static inline u8 |
| 645 | svm_fifo_has_ooo_data (svm_fifo_t * f) |
| 646 | { |
| 647 | return f->ooos_list_head != OOO_SEGMENT_INVALID_INDEX; |
| 648 | } |
| 649 | |
| 650 | static inline ooo_segment_t * |
| 651 | svm_fifo_newest_ooo_segment (svm_fifo_t * f) |
| 652 | { |
| 653 | if (f->ooos_newest == OOO_SEGMENT_INVALID_INDEX) |
| 654 | return 0; |
| 655 | return pool_elt_at_index (f->ooo_segments, f->ooos_newest); |
| 656 | } |
| 657 | |
| 658 | static inline void |
| 659 | svm_fifo_newest_ooo_segment_reset (svm_fifo_t * f) |
| 660 | { |
| 661 | f->ooos_newest = OOO_SEGMENT_INVALID_INDEX; |
| 662 | } |
| 663 | |
| 664 | static inline u32 |
| 665 | ooo_segment_offset_prod (svm_fifo_t * f, ooo_segment_t * s) |
| 666 | { |
| 667 | u32 tail; |
| 668 | /* load-relaxed: producer owned index */ |
| 669 | tail = f->tail; |
| 670 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 671 | return (s->start - tail); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | static inline u32 |
| 675 | ooo_segment_length (svm_fifo_t * f, ooo_segment_t * s) |
| 676 | { |
| 677 | return s->length; |
| 678 | } |
| 679 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 680 | static inline u32 |
| 681 | svm_fifo_size (svm_fifo_t * f) |
| 682 | { |
| 683 | return f->size; |
| 684 | } |
| 685 | |
| 686 | static inline void |
| 687 | svm_fifo_set_size (svm_fifo_t * f, u32 size) |
| 688 | { |
Florin Coras | 0e6199d | 2020-04-17 20:15:22 +0000 | [diff] [blame] | 689 | if (size > (1 << f->fs_hdr->max_log2_chunk_size)) |
| 690 | return; |
Florin Coras | 06d4775 | 2020-03-06 02:23:58 +0000 | [diff] [blame] | 691 | fsh_virtual_mem_update (f->fs_hdr, f->slice_index, (int) f->size - size); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 692 | f->size = size; |
| 693 | } |
| 694 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 695 | /** |
| 696 | * Check if fifo has io event |
| 697 | * |
| 698 | * @param f fifo |
| 699 | * @return 1 if fifo has event, 0 otherwise |
| 700 | */ |
| 701 | static inline int |
| 702 | svm_fifo_has_event (svm_fifo_t * f) |
| 703 | { |
| 704 | return f->has_event; |
| 705 | } |
| 706 | |
| 707 | /** |
| 708 | * Set fifo event flag. |
| 709 | * |
| 710 | * Forces release semantics. |
| 711 | * |
| 712 | * @param f fifo |
| 713 | * @return 1 if flag was not set, 0 otherwise |
| 714 | */ |
| 715 | always_inline u8 |
| 716 | svm_fifo_set_event (svm_fifo_t * f) |
| 717 | { |
| 718 | return !clib_atomic_swap_rel_n (&f->has_event, 1); |
| 719 | } |
| 720 | |
| 721 | /** |
| 722 | * Unset fifo event flag. |
| 723 | * |
| 724 | * Forces acquire semantics |
| 725 | * |
| 726 | * @param f fifo |
| 727 | */ |
| 728 | always_inline void |
| 729 | svm_fifo_unset_event (svm_fifo_t * f) |
| 730 | { |
| 731 | clib_atomic_swap_acq_n (&f->has_event, 0); |
| 732 | } |
| 733 | |
| 734 | /** |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 735 | * Set specific want notification flag |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 736 | * |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 737 | * For list of flags see @ref svm_fifo_deq_ntf_t |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 738 | * |
| 739 | * @param f fifo |
| 740 | * @param ntf_type type of notification requested |
| 741 | */ |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 742 | static inline void |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 743 | svm_fifo_add_want_deq_ntf (svm_fifo_t * f, u8 ntf_type) |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 744 | { |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 745 | f->want_deq_ntf |= ntf_type; |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 746 | } |
| 747 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 748 | /** |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 749 | * Clear specific want notification flag |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 750 | * |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 751 | * For list of flags see @ref svm_fifo_ntf_t |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 752 | * |
| 753 | * @param f fifo |
| 754 | * @param ntf_type type of notification to be cleared |
| 755 | */ |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 756 | static inline void |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 757 | svm_fifo_del_want_deq_ntf (svm_fifo_t * f, u8 ntf_type) |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 758 | { |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 759 | f->want_deq_ntf &= ~ntf_type; |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 760 | } |
| 761 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 762 | /** |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 763 | * Clear the want notification flag and set has notification |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 764 | * |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 765 | * Should be used after enqueuing an event. This clears the |
| 766 | * SVM_FIFO_WANT_NOTIF flag but it does not clear |
| 767 | * SVM_FIFO_WANT_NOTIF_IF_FULL. If the latter was set, has_ntf is |
| 768 | * set to avoid enqueueing events for for all dequeue operations until |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 769 | * it is manually cleared. |
| 770 | * |
| 771 | * @param f fifo |
| 772 | */ |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 773 | static inline void |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 774 | svm_fifo_clear_deq_ntf (svm_fifo_t * f) |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 775 | { |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 776 | /* Set the flag if want_notif_if_full was the only ntf requested */ |
| 777 | f->has_deq_ntf = f->want_deq_ntf == SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL; |
| 778 | svm_fifo_del_want_deq_ntf (f, SVM_FIFO_WANT_DEQ_NOTIF); |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 779 | } |
| 780 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 781 | /** |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 782 | * Clear has notification flag |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 783 | * |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 784 | * The fifo generates only one event per SVM_FIFO_WANT_NOTIF_IF_FULL |
| 785 | * request and sets has_ntf. To received new events the flag must be |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 786 | * cleared using this function. |
| 787 | * |
| 788 | * @param f fifo |
| 789 | */ |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 790 | static inline void |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 791 | svm_fifo_reset_has_deq_ntf (svm_fifo_t * f) |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 792 | { |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 793 | f->has_deq_ntf = 0; |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 794 | } |
| 795 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 796 | /** |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 797 | * Check if fifo needs dequeue notification |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 798 | * |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 799 | * Determines based on notification request flags and state of the fifo if |
| 800 | * an event should be generated. |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 801 | * |
| 802 | * @param f fifo |
| 803 | * @param n_last_deq number of bytes last dequeued |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 804 | * @return 1 if event should be generated, 0 otherwise |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 805 | */ |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 806 | static inline u8 |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 807 | svm_fifo_needs_deq_ntf (svm_fifo_t * f, u32 n_last_deq) |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 808 | { |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 809 | u8 want_ntf = f->want_deq_ntf; |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 810 | |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 811 | if (PREDICT_TRUE (want_ntf == SVM_FIFO_NO_DEQ_NOTIF)) |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 812 | return 0; |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 813 | else if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF) |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 814 | return 1; |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 815 | if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL) |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 816 | { |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 817 | u32 max_deq = svm_fifo_max_dequeue_cons (f); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 818 | u32 size = f->size; |
| 819 | if (!f->has_deq_ntf && max_deq < size && max_deq + n_last_deq >= size) |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 820 | return 1; |
Nathan Skrzypczak | e82a7ad | 2019-05-22 18:41:50 +0200 | [diff] [blame] | 821 | } |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 822 | if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY) |
Nathan Skrzypczak | e82a7ad | 2019-05-22 18:41:50 +0200 | [diff] [blame] | 823 | { |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 824 | if (!f->has_deq_ntf && svm_fifo_is_empty (f)) |
Nathan Skrzypczak | e82a7ad | 2019-05-22 18:41:50 +0200 | [diff] [blame] | 825 | return 1; |
Florin Coras | 1bcad5c | 2019-01-09 20:04:38 -0800 | [diff] [blame] | 826 | } |
| 827 | return 0; |
| 828 | } |
| 829 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 830 | #endif /* __included_ssvm_fifo_h__ */ |
| 831 | |
| 832 | /* |
| 833 | * fd.io coding-style-patch-verification: ON |
| 834 | * |
| 835 | * Local Variables: |
| 836 | * eval: (c-set-style "gnu") |
| 837 | * End: |
| 838 | */ |