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/osdep.h"
16 #include "qemu-common.h"
17 #include "qemu/fifo8.h"
19 void fifo8_create(Fifo8
*fifo
, uint32_t capacity
)
21 fifo
->data
= g_new(uint8_t, capacity
);
22 fifo
->capacity
= capacity
;
27 void fifo8_destroy(Fifo8
*fifo
)
32 void fifo8_push(Fifo8
*fifo
, uint8_t data
)
34 if (fifo
->num
== fifo
->capacity
) {
37 fifo
->data
[(fifo
->head
+ fifo
->num
) % fifo
->capacity
] = data
;
41 void fifo8_push_all(Fifo8
*fifo
, const uint8_t *data
, uint32_t num
)
43 uint32_t start
, avail
;
45 if (fifo
->num
+ num
> fifo
->capacity
) {
49 start
= (fifo
->head
+ fifo
->num
) % fifo
->capacity
;
51 if (start
+ num
<= fifo
->capacity
) {
52 memcpy(&fifo
->data
[start
], data
, num
);
54 avail
= fifo
->capacity
- start
;
55 memcpy(&fifo
->data
[start
], data
, avail
);
56 memcpy(&fifo
->data
[0], &data
[avail
], num
- avail
);
62 uint8_t fifo8_pop(Fifo8
*fifo
)
69 ret
= fifo
->data
[fifo
->head
++];
70 fifo
->head
%= fifo
->capacity
;
75 const uint8_t *fifo8_pop_buf(Fifo8
*fifo
, uint32_t max
, uint32_t *num
)
79 if (max
== 0 || max
> fifo
->num
) {
82 *num
= MIN(fifo
->capacity
- fifo
->head
, max
);
83 ret
= &fifo
->data
[fifo
->head
];
85 fifo
->head
%= fifo
->capacity
;
90 void fifo8_reset(Fifo8
*fifo
)
96 bool fifo8_is_empty(Fifo8
*fifo
)
98 return (fifo
->num
== 0);
101 bool fifo8_is_full(Fifo8
*fifo
)
103 return (fifo
->num
== fifo
->capacity
);
106 uint32_t fifo8_num_free(Fifo8
*fifo
)
108 return fifo
->capacity
- fifo
->num
;
111 uint32_t fifo8_num_used(Fifo8
*fifo
)
116 const VMStateDescription vmstate_fifo8
= {
119 .minimum_version_id
= 1,
120 .fields
= (VMStateField
[]) {
121 VMSTATE_VBUFFER_UINT32(data
, Fifo8
, 1, NULL
, capacity
),
122 VMSTATE_UINT32(head
, Fifo8
),
123 VMSTATE_UINT32(num
, Fifo8
),
124 VMSTATE_END_OF_LIST()