2 * Generic FIFO component, implemented as a circular buffer.
4 * Copyright (c) 2012 Peter A. G. Crosthwaite
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 * You should have received a copy of the GNU General Public License along
12 * with this program; if not, see <http://www.gnu.org/licenses/>.
17 void fifo8_create(Fifo8 *fifo, uint32_t capacity)
19 fifo->data = g_new(uint8_t, capacity);
20 fifo->capacity = capacity;
25 void fifo8_destroy(Fifo8 *fifo)
30 void fifo8_push(Fifo8 *fifo, uint8_t data)
32 if (fifo->num == fifo->capacity) {
35 fifo->data[(fifo->head + fifo->num) % fifo->capacity] = data;
39 uint8_t fifo8_pop(Fifo8 *fifo)
46 ret = fifo->data[fifo->head++];
47 fifo->head %= fifo->capacity;
52 void fifo8_reset(Fifo8 *fifo)
57 bool fifo8_is_empty(Fifo8 *fifo)
59 return (fifo->num == 0);
62 bool fifo8_is_full(Fifo8 *fifo)
64 return (fifo->num == fifo->capacity);
67 const VMStateDescription vmstate_fifo8 = {
70 .minimum_version_id = 1,
71 .minimum_version_id_old = 1,
72 .fields = (VMStateField[]) {
73 VMSTATE_VBUFFER_UINT32(data, Fifo8, 1, NULL, 0, capacity),
74 VMSTATE_UINT32(head, Fifo8),
75 VMSTATE_UINT32(num, Fifo8),