7a5951f651
A number of headers neglect to include everything they need. They compile only if the headers they need are already included from elsewhere. Fix that. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-Id: <20221222120813.727830-3-armbru@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
37 lines
622 B
C
37 lines
622 B
C
/*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*
|
|
* Goldfish TTY
|
|
*
|
|
* (c) 2020 Laurent Vivier <laurent@vivier.eu>
|
|
*
|
|
*/
|
|
|
|
#ifndef HW_CHAR_GOLDFISH_TTY_H
|
|
#define HW_CHAR_GOLDFISH_TTY_H
|
|
|
|
#include "qemu/fifo8.h"
|
|
#include "chardev/char-fe.h"
|
|
#include "hw/sysbus.h"
|
|
|
|
#define TYPE_GOLDFISH_TTY "goldfish_tty"
|
|
OBJECT_DECLARE_SIMPLE_TYPE(GoldfishTTYState, GOLDFISH_TTY)
|
|
|
|
#define GOLFISH_TTY_BUFFER_SIZE 128
|
|
|
|
struct GoldfishTTYState {
|
|
SysBusDevice parent_obj;
|
|
|
|
MemoryRegion iomem;
|
|
qemu_irq irq;
|
|
CharBackend chr;
|
|
|
|
uint32_t data_len;
|
|
uint64_t data_ptr;
|
|
bool int_enabled;
|
|
|
|
Fifo8 rx_fifo;
|
|
};
|
|
|
|
#endif
|