blob: 36158dc5db7a5de664a01fb9eb44e78e449e69f0 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#ifndef __included_ssvm_fifo_h__
16#define __included_ssvm_fifo_h__
17
18#include <vppinfra/clib.h>
19#include <vppinfra/vec.h>
20#include <vppinfra/mheap.h>
21#include <vppinfra/heap.h>
22#include <vppinfra/pool.h>
23#include <vppinfra/format.h>
24#include <pthread.h>
25
Dave Barach68b0fb02017-02-28 15:15:56 -050026/** Out-of-order segment */
27typedef struct
28{
29 u32 next; /**< Next linked-list element pool index */
30 u32 prev; /**< Previous linked-list element pool index */
31
Dave Barach1f75cfd2017-04-14 16:46:44 -040032 u32 start; /**< Start of segment, normalized*/
Florin Corasa5464812017-04-19 13:00:05 -070033 u32 length; /**< Length of segment */
Dave Barach68b0fb02017-02-28 15:15:56 -050034} ooo_segment_t;
35
Dave Barach1f75cfd2017-04-14 16:46:44 -040036format_function_t format_ooo_segment;
37format_function_t format_ooo_list;
38
Dave Barach68b0fb02017-02-28 15:15:56 -050039#define OOO_SEGMENT_INVALID_INDEX ((u32)~0)
40
41typedef struct
42{
Florin Coras3e350af2017-03-30 02:54:28 -070043 volatile u32 cursize; /**< current fifo size */
44 u32 nitems;
45 CLIB_CACHE_LINE_ALIGN_MARK (end_cursize);
46
Florin Coras6792ec02017-03-13 03:49:51 -070047 volatile u8 has_event; /**< non-zero if deq event exists */
Dave Barach68b0fb02017-02-28 15:15:56 -050048
49 /* Backpointers */
Florin Corasa5464812017-04-19 13:00:05 -070050 u32 master_session_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050051 u32 client_session_index;
Florin Corasa5464812017-04-19 13:00:05 -070052 u8 master_thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050053 u8 client_thread_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -070054 u32 segment_manager;
Dave Barach68b0fb02017-02-28 15:15:56 -050055 CLIB_CACHE_LINE_ALIGN_MARK (end_shared);
56 u32 head;
57 CLIB_CACHE_LINE_ALIGN_MARK (end_consumer);
58
59 /* producer */
60 u32 tail;
61
62 ooo_segment_t *ooo_segments; /**< Pool of ooo segments */
63 u32 ooos_list_head; /**< Head of out-of-order linked-list */
64 u32 ooos_newest; /**< Last segment to have been updated */
65
66 CLIB_CACHE_LINE_ALIGN_MARK (data);
67} svm_fifo_t;
68
Dave Barach68b0fb02017-02-28 15:15:56 -050069static inline u32
70svm_fifo_max_dequeue (svm_fifo_t * f)
71{
72 return f->cursize;
73}
74
75static inline u32
76svm_fifo_max_enqueue (svm_fifo_t * f)
77{
Florin Coras3e350af2017-03-30 02:54:28 -070078 return f->nitems - svm_fifo_max_dequeue (f);
Dave Barach68b0fb02017-02-28 15:15:56 -050079}
80
81static inline u8
82svm_fifo_has_ooo_data (svm_fifo_t * f)
83{
84 return f->ooos_list_head != OOO_SEGMENT_INVALID_INDEX;
85}
86
Florin Coras6792ec02017-03-13 03:49:51 -070087/**
88 * Sets fifo event flag.
89 *
90 * @return 1 if flag was not set.
91 */
92always_inline u8
93svm_fifo_set_event (svm_fifo_t * f)
94{
95 /* Probably doesn't need to be atomic. Still, better avoid surprises */
96 return __sync_lock_test_and_set (&f->has_event, 1) == 0;
97}
98
99/**
100 * Unsets fifo event flag.
101 */
102always_inline void
103svm_fifo_unset_event (svm_fifo_t * f)
104{
105 /* Probably doesn't need to be atomic. Still, better avoid surprises */
106 __sync_lock_test_and_set (&f->has_event, 0);
107}
108
Dave Barach68b0fb02017-02-28 15:15:56 -0500109svm_fifo_t *svm_fifo_create (u32 data_size_in_bytes);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700110void svm_fifo_free (svm_fifo_t * f);
Dave Barach68b0fb02017-02-28 15:15:56 -0500111
Florin Corasa5464812017-04-19 13:00:05 -0700112int svm_fifo_enqueue_nowait (svm_fifo_t * f, u32 max_bytes,
Dave Barach68b0fb02017-02-28 15:15:56 -0500113 u8 * copy_from_here);
Florin Corasa5464812017-04-19 13:00:05 -0700114int svm_fifo_enqueue_with_offset (svm_fifo_t * f, u32 offset,
115 u32 required_bytes, u8 * copy_from_here);
116int svm_fifo_dequeue_nowait (svm_fifo_t * f, u32 max_bytes, u8 * copy_here);
Dave Barach68b0fb02017-02-28 15:15:56 -0500117
Florin Corasa5464812017-04-19 13:00:05 -0700118int svm_fifo_peek (svm_fifo_t * f, u32 offset, u32 max_bytes, u8 * copy_here);
119int svm_fifo_dequeue_drop (svm_fifo_t * f, u32 max_bytes);
Dave Barach1f75cfd2017-04-14 16:46:44 -0400120u32 svm_fifo_number_ooo_segments (svm_fifo_t * f);
121ooo_segment_t *svm_fifo_first_ooo_segment (svm_fifo_t * f);
Florin Corasc28764f2017-04-26 00:08:42 -0700122void svm_fifo_init_pointers (svm_fifo_t * f, u32 pointer);
Dave Barach68b0fb02017-02-28 15:15:56 -0500123
Florin Coras6cf30ad2017-04-04 23:08:23 -0700124format_function_t format_svm_fifo;
125
Dave Barach68b0fb02017-02-28 15:15:56 -0500126always_inline ooo_segment_t *
127svm_fifo_newest_ooo_segment (svm_fifo_t * f)
128{
129 return f->ooo_segments + f->ooos_newest;
130}
131
132always_inline u32
133ooo_segment_offset (svm_fifo_t * f, ooo_segment_t * s)
134{
Dave Barach1f75cfd2017-04-14 16:46:44 -0400135// return ((f->nitems + s->fifo_position - f->tail) % f->nitems);
136 return s->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500137}
138
139always_inline u32
140ooo_segment_end_offset (svm_fifo_t * f, ooo_segment_t * s)
141{
Dave Barach1f75cfd2017-04-14 16:46:44 -0400142// return ((f->nitems + s->fifo_position + s->length - f->tail) % f->nitems);
143 return s->start + s->length;
144}
145
146always_inline ooo_segment_t *
147ooo_segment_get_prev (svm_fifo_t * f, ooo_segment_t * s)
148{
149 if (s->prev == OOO_SEGMENT_INVALID_INDEX)
150 return 0;
151 return pool_elt_at_index (f->ooo_segments, s->prev);
Dave Barach68b0fb02017-02-28 15:15:56 -0500152}
153
154#endif /* __included_ssvm_fifo_h__ */
155
156/*
157 * fd.io coding-style-patch-verification: ON
158 *
159 * Local Variables:
160 * eval: (c-set-style "gnu")
161 * End:
162 */