2007-11-17 18:14:51 +01:00
|
|
|
#ifndef QEMU_CHAR_H
|
|
|
|
#define QEMU_CHAR_H
|
|
|
|
|
2009-03-06 00:01:23 +01:00
|
|
|
#include "qemu-common.h"
|
2009-09-12 09:36:22 +02:00
|
|
|
#include "qemu-queue.h"
|
2009-09-10 10:58:35 +02:00
|
|
|
#include "qemu-option.h"
|
|
|
|
#include "qemu-config.h"
|
2009-12-10 20:16:08 +01:00
|
|
|
#include "qobject.h"
|
2010-10-22 20:09:05 +02:00
|
|
|
#include "qstring.h"
|
2009-03-06 00:01:23 +01:00
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
/* character device */
|
|
|
|
|
2009-03-06 00:01:47 +01:00
|
|
|
#define CHR_EVENT_BREAK 0 /* serial break char */
|
|
|
|
#define CHR_EVENT_FOCUS 1 /* focus to this terminal (modal input needed) */
|
2009-10-07 15:01:16 +02:00
|
|
|
#define CHR_EVENT_OPENED 2 /* new connection established */
|
2009-03-06 00:01:47 +01:00
|
|
|
#define CHR_EVENT_MUX_IN 3 /* mux-focus was set to this terminal */
|
|
|
|
#define CHR_EVENT_MUX_OUT 4 /* mux-focus will move on */
|
2009-08-11 17:57:48 +02:00
|
|
|
#define CHR_EVENT_CLOSED 5 /* connection closed */
|
2007-11-17 18:14:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
#define CHR_IOCTL_SERIAL_SET_PARAMS 1
|
|
|
|
typedef struct {
|
|
|
|
int speed;
|
|
|
|
int parity;
|
|
|
|
int data_bits;
|
|
|
|
int stop_bits;
|
|
|
|
} QEMUSerialSetParams;
|
|
|
|
|
|
|
|
#define CHR_IOCTL_SERIAL_SET_BREAK 2
|
|
|
|
|
|
|
|
#define CHR_IOCTL_PP_READ_DATA 3
|
|
|
|
#define CHR_IOCTL_PP_WRITE_DATA 4
|
|
|
|
#define CHR_IOCTL_PP_READ_CONTROL 5
|
|
|
|
#define CHR_IOCTL_PP_WRITE_CONTROL 6
|
|
|
|
#define CHR_IOCTL_PP_READ_STATUS 7
|
|
|
|
#define CHR_IOCTL_PP_EPP_READ_ADDR 8
|
|
|
|
#define CHR_IOCTL_PP_EPP_READ 9
|
|
|
|
#define CHR_IOCTL_PP_EPP_WRITE_ADDR 10
|
|
|
|
#define CHR_IOCTL_PP_EPP_WRITE 11
|
2008-08-22 10:57:09 +02:00
|
|
|
#define CHR_IOCTL_PP_DATA_DIR 12
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2008-08-22 23:25:00 +02:00
|
|
|
#define CHR_IOCTL_SERIAL_SET_TIOCM 13
|
|
|
|
#define CHR_IOCTL_SERIAL_GET_TIOCM 14
|
2008-08-11 16:17:04 +02:00
|
|
|
|
|
|
|
#define CHR_TIOCM_CTS 0x020
|
|
|
|
#define CHR_TIOCM_CAR 0x040
|
|
|
|
#define CHR_TIOCM_DSR 0x100
|
|
|
|
#define CHR_TIOCM_RI 0x080
|
|
|
|
#define CHR_TIOCM_DTR 0x002
|
|
|
|
#define CHR_TIOCM_RTS 0x004
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
typedef void IOEventHandler(void *opaque, int event);
|
|
|
|
|
|
|
|
struct CharDriverState {
|
2009-01-18 15:08:04 +01:00
|
|
|
void (*init)(struct CharDriverState *s);
|
2007-11-17 18:14:51 +01:00
|
|
|
int (*chr_write)(struct CharDriverState *s, const uint8_t *buf, int len);
|
|
|
|
void (*chr_update_read_handler)(struct CharDriverState *s);
|
|
|
|
int (*chr_ioctl)(struct CharDriverState *s, int cmd, void *arg);
|
2009-07-22 10:11:39 +02:00
|
|
|
int (*get_msgfd)(struct CharDriverState *s);
|
2007-11-17 18:14:51 +01:00
|
|
|
IOEventHandler *chr_event;
|
2010-03-11 17:55:39 +01:00
|
|
|
IOCanReadHandler *chr_can_read;
|
2007-11-17 18:14:51 +01:00
|
|
|
IOReadHandler *chr_read;
|
|
|
|
void *handler_opaque;
|
|
|
|
void (*chr_send_event)(struct CharDriverState *chr, int event);
|
|
|
|
void (*chr_close)(struct CharDriverState *chr);
|
2007-11-25 01:55:06 +01:00
|
|
|
void (*chr_accept_input)(struct CharDriverState *chr);
|
2010-12-23 13:42:48 +01:00
|
|
|
void (*chr_set_echo)(struct CharDriverState *chr, bool echo);
|
2007-11-17 18:14:51 +01:00
|
|
|
void *opaque;
|
|
|
|
QEMUBH *bh;
|
2008-10-31 18:31:29 +01:00
|
|
|
char *label;
|
|
|
|
char *filename;
|
2010-04-01 18:42:39 +02:00
|
|
|
int opened;
|
2009-09-12 09:36:22 +02:00
|
|
|
QTAILQ_ENTRY(CharDriverState) next;
|
2007-11-17 18:14:51 +01:00
|
|
|
};
|
|
|
|
|
2009-12-08 13:11:49 +01:00
|
|
|
QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename);
|
2009-09-10 10:58:35 +02:00
|
|
|
CharDriverState *qemu_chr_open_opts(QemuOpts *opts,
|
|
|
|
void (*init)(struct CharDriverState *s));
|
2009-01-18 15:08:04 +01:00
|
|
|
CharDriverState *qemu_chr_open(const char *label, const char *filename, void (*init)(struct CharDriverState *s));
|
2010-12-23 13:42:48 +01:00
|
|
|
void qemu_chr_set_echo(struct CharDriverState *chr, bool echo);
|
2007-11-18 02:44:38 +01:00
|
|
|
void qemu_chr_close(CharDriverState *chr);
|
2010-09-23 21:28:05 +02:00
|
|
|
void qemu_chr_printf(CharDriverState *s, const char *fmt, ...)
|
|
|
|
GCC_FMT_ATTR(2, 3);
|
2007-11-17 18:14:51 +01:00
|
|
|
int qemu_chr_write(CharDriverState *s, const uint8_t *buf, int len);
|
|
|
|
void qemu_chr_send_event(CharDriverState *s, int event);
|
|
|
|
void qemu_chr_add_handlers(CharDriverState *s,
|
2010-03-11 17:55:39 +01:00
|
|
|
IOCanReadHandler *fd_can_read,
|
2007-11-17 18:14:51 +01:00
|
|
|
IOReadHandler *fd_read,
|
|
|
|
IOEventHandler *fd_event,
|
|
|
|
void *opaque);
|
|
|
|
int qemu_chr_ioctl(CharDriverState *s, int cmd, void *arg);
|
2009-11-03 15:29:56 +01:00
|
|
|
void qemu_chr_generic_open(CharDriverState *s);
|
2007-11-17 18:14:51 +01:00
|
|
|
int qemu_chr_can_read(CharDriverState *s);
|
|
|
|
void qemu_chr_read(CharDriverState *s, uint8_t *buf, int len);
|
2009-07-22 10:11:39 +02:00
|
|
|
int qemu_chr_get_msgfd(CharDriverState *s);
|
2007-11-25 01:55:06 +01:00
|
|
|
void qemu_chr_accept_input(CharDriverState *s);
|
2009-12-10 20:16:08 +01:00
|
|
|
void qemu_chr_info_print(Monitor *mon, const QObject *ret_data);
|
|
|
|
void qemu_chr_info(Monitor *mon, QObject **ret_data);
|
2009-09-10 10:58:52 +02:00
|
|
|
CharDriverState *qemu_chr_find(const char *name);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
RESEND: Inter-VM shared memory PCI device
resend for bug fix related to removal of irqfd
Support an inter-vm shared memory device that maps a shared-memory object as a
PCI device in the guest. This patch also supports interrupts between guest by
communicating over a unix domain socket. This patch applies to the qemu-kvm
repository.
-device ivshmem,size=<size in format accepted by -m>[,shm=<shm name>]
Interrupts are supported between multiple VMs by using a shared memory server
by using a chardev socket.
-device ivshmem,size=<size in format accepted by -m>[,shm=<shm name>]
[,chardev=<id>][,msi=on][,ioeventfd=on][,vectors=n][,role=peer|master]
-chardev socket,path=<path>,id=<id>
The shared memory server, sample programs and init scripts are in a git repo here:
www.gitorious.org/nahanni
Signed-off-by: Cam Macdonell <cam@cs.ualberta.ca>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2010-07-27 18:54:13 +02:00
|
|
|
/* add an eventfd to the qemu devices that are polled */
|
|
|
|
CharDriverState *qemu_chr_open_eventfd(int eventfd);
|
|
|
|
|
2008-10-31 19:44:40 +01:00
|
|
|
extern int term_escape_char;
|
|
|
|
|
2010-10-22 20:09:05 +02:00
|
|
|
/* memory chardev */
|
|
|
|
void qemu_chr_init_mem(CharDriverState *chr);
|
|
|
|
void qemu_chr_close_mem(CharDriverState *chr);
|
|
|
|
QString *qemu_chr_mem_to_qs(CharDriverState *chr);
|
|
|
|
size_t qemu_chr_mem_osize(const CharDriverState *chr);
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
/* async I/O support */
|
|
|
|
|
|
|
|
int qemu_set_fd_handler2(int fd,
|
2010-03-11 17:55:39 +01:00
|
|
|
IOCanReadHandler *fd_read_poll,
|
2007-11-17 18:14:51 +01:00
|
|
|
IOHandler *fd_read,
|
|
|
|
IOHandler *fd_write,
|
|
|
|
void *opaque);
|
|
|
|
int qemu_set_fd_handler(int fd,
|
|
|
|
IOHandler *fd_read,
|
|
|
|
IOHandler *fd_write,
|
|
|
|
void *opaque);
|
|
|
|
#endif
|