1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2016 Red Hat, Inc.
4 * Author: Michael S. Tsirkin <mst@redhat.com>
6 * Simple descriptor-based ring. virtio 0.9 compatible event index is used for
7 * signalling, unconditionally.
15 /* Next - Where next entry will be written.
16 * Prev - "Next" value when event triggered previously.
17 * Event - Peer requested event after writing this entry.
19 static inline bool need_event(unsigned short event,
23 return (unsigned short)(next - event - 1) < (unsigned short)(next - prev);
27 * Guest adds descriptors with unique index values and DESC_HW in flags.
28 * Host overwrites used descriptors with correct len, index, and DESC_HW clear.
29 * Flags are always set last.
37 unsigned long long addr;
40 /* how much padding is needed to avoid false cache sharing */
41 #define HOST_GUEST_PADDING 0x80
45 unsigned short kick_index;
46 unsigned char reserved0[HOST_GUEST_PADDING - 2];
47 unsigned short call_index;
48 unsigned char reserved1[HOST_GUEST_PADDING - 2];
52 void *buf; /* descriptor is writeable, we can't get buf from there */
61 unsigned last_used_idx;
63 unsigned kicked_avail_idx;
64 unsigned char reserved[HOST_GUEST_PADDING - 12];
68 /* we do not need to track last avail index
69 * unless we have more than one in flight.
72 unsigned called_used_idx;
73 unsigned char reserved[HOST_GUEST_PADDING - 4];
76 /* implemented by ring */
82 ret = posix_memalign((void **)&ring, 0x1000, ring_size * sizeof *ring);
84 perror("Unable to allocate ring buffer.\n");
87 event = calloc(1, sizeof(*event));
89 perror("Unable to allocate event buffer.\n");
93 guest.kicked_avail_idx = -1;
94 guest.last_used_idx = 0;
96 host.called_used_idx = -1;
97 for (i = 0; i < ring_size; ++i) {
103 guest.num_free = ring_size;
104 data = calloc(ring_size, sizeof(*data));
106 perror("Unable to allocate data buffer.\n");
112 int add_inbuf(unsigned len, void *buf, void *datap)
114 unsigned head, index;
120 head = (ring_size - 1) & (guest.avail_idx++);
122 /* Start with a write. On MESI architectures this helps
123 * avoid a shared state with consumer that is polling this descriptor.
125 ring[head].addr = (unsigned long)(void*)buf;
126 ring[head].len = len;
127 /* read below might bypass write above. That is OK because it's just an
128 * optimization. If this happens, we will get the cache line in a
129 * shared state which is unfortunate, but probably not worth it to
130 * add an explicit full barrier to avoid this.
133 index = ring[head].index;
134 data[index].buf = buf;
135 data[index].data = datap;
136 /* Barrier A (for pairing) */
138 ring[head].flags = DESC_HW;
143 void *get_buf(unsigned *lenp, void **bufp)
145 unsigned head = (ring_size - 1) & guest.last_used_idx;
149 if (ring[head].flags & DESC_HW)
151 /* Barrier B (for pairing) */
153 *lenp = ring[head].len;
154 index = ring[head].index & (ring_size - 1);
155 datap = data[index].data;
156 *bufp = data[index].buf;
157 data[index].buf = NULL;
158 data[index].data = NULL;
160 guest.last_used_idx++;
166 unsigned head = (ring_size - 1) & guest.last_used_idx;
168 return (ring[head].flags & DESC_HW);
173 /* Doing nothing to disable calls might cause
174 * extra interrupts, but reduces the number of cache misses.
180 event->call_index = guest.last_used_idx;
181 /* Flush call index write */
182 /* Barrier D (for pairing) */
187 void kick_available(void)
191 /* Flush in previous flags write */
192 /* Barrier C (for pairing) */
194 need = need_event(event->kick_index,
196 guest.kicked_avail_idx);
198 guest.kicked_avail_idx = guest.avail_idx;
206 /* Doing nothing to disable kicks might cause
207 * extra interrupts, but reduces the number of cache misses.
213 event->kick_index = host.used_idx;
214 /* Barrier C (for pairing) */
216 return avail_empty();
221 unsigned head = (ring_size - 1) & host.used_idx;
223 return !(ring[head].flags & DESC_HW);
226 bool use_buf(unsigned *lenp, void **bufp)
228 unsigned head = (ring_size - 1) & host.used_idx;
230 if (!(ring[head].flags & DESC_HW))
233 /* make sure length read below is not speculated */
234 /* Barrier A (for pairing) */
237 /* simple in-order completion: we don't need
238 * to touch index at all. This also means we
239 * can just modify the descriptor in-place.
242 /* Make sure len is valid before flags.
243 * Note: alternative is to write len and flags in one access -
244 * possible on 64 bit architectures but wmb is free on Intel anyway
245 * so I have no way to test whether it's a gain.
247 /* Barrier B (for pairing) */
249 ring[head].flags = 0;
258 /* Flush in previous flags write */
259 /* Barrier D (for pairing) */
262 need = need_event(event->call_index,
264 host.called_used_idx);
266 host.called_used_idx = host.used_idx;