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/>.
15 #include "qemu-common.h"
16 #include "qemu/fifo8.h"
18 void fifo8_create(Fifo8
*fifo
, uint32_t capacity
)
20 fifo
->data
= g_new(uint8_t, capacity
);
21 fifo
->capacity
= capacity
;
26 void fifo8_destroy(Fifo8
*fifo
)
31 void fifo8_push(Fifo8
*fifo
, uint8_t data
)
33 if (fifo
->num
== fifo
->capacity
) {
36 fifo
->data
[(fifo
->head
+ fifo
->num
) % fifo
->capacity
] = data
;
40 uint8_t fifo8_pop(Fifo8
*fifo
)
47 ret
= fifo
->data
[fifo
->head
++];
48 fifo
->head
%= fifo
->capacity
;
53 void fifo8_reset(Fifo8
*fifo
)
58 bool fifo8_is_empty(Fifo8
*fifo
)
60 return (fifo
->num
== 0);
63 bool fifo8_is_full(Fifo8
*fifo
)
65 return (fifo
->num
== fifo
->capacity
);
68 const VMStateDescription vmstate_fifo8
= {
71 .minimum_version_id
= 1,
72 .minimum_version_id_old
= 1,
73 .fields
= (VMStateField
[]) {
74 VMSTATE_VBUFFER_UINT32(data
, Fifo8
, 1, NULL
, 0, capacity
),
75 VMSTATE_UINT32(head
, Fifo8
),
76 VMSTATE_UINT32(num
, Fifo8
),