]>
Commit | Line | Data |
---|---|---|
87ecb68b PB |
1 | #ifndef QEMU_CHAR_H |
2 | #define QEMU_CHAR_H | |
3 | ||
376253ec | 4 | #include "qemu-common.h" |
72cf2d4f | 5 | #include "qemu-queue.h" |
191bc01b GH |
6 | #include "qemu-option.h" |
7 | #include "qemu-config.h" | |
588b3832 | 8 | #include "qobject.h" |
376253ec | 9 | |
87ecb68b PB |
10 | /* character device */ |
11 | ||
2724b180 AL |
12 | #define CHR_EVENT_BREAK 0 /* serial break char */ |
13 | #define CHR_EVENT_FOCUS 1 /* focus to this terminal (modal input needed) */ | |
b6b8df56 | 14 | #define CHR_EVENT_OPENED 2 /* new connection established */ |
2724b180 AL |
15 | #define CHR_EVENT_MUX_IN 3 /* mux-focus was set to this terminal */ |
16 | #define CHR_EVENT_MUX_OUT 4 /* mux-focus will move on */ | |
793cbfb5 | 17 | #define CHR_EVENT_CLOSED 5 /* connection closed */ |
87ecb68b PB |
18 | |
19 | ||
20 | #define CHR_IOCTL_SERIAL_SET_PARAMS 1 | |
21 | typedef struct { | |
22 | int speed; | |
23 | int parity; | |
24 | int data_bits; | |
25 | int stop_bits; | |
26 | } QEMUSerialSetParams; | |
27 | ||
28 | #define CHR_IOCTL_SERIAL_SET_BREAK 2 | |
29 | ||
30 | #define CHR_IOCTL_PP_READ_DATA 3 | |
31 | #define CHR_IOCTL_PP_WRITE_DATA 4 | |
32 | #define CHR_IOCTL_PP_READ_CONTROL 5 | |
33 | #define CHR_IOCTL_PP_WRITE_CONTROL 6 | |
34 | #define CHR_IOCTL_PP_READ_STATUS 7 | |
35 | #define CHR_IOCTL_PP_EPP_READ_ADDR 8 | |
36 | #define CHR_IOCTL_PP_EPP_READ 9 | |
37 | #define CHR_IOCTL_PP_EPP_WRITE_ADDR 10 | |
38 | #define CHR_IOCTL_PP_EPP_WRITE 11 | |
563e3c6e | 39 | #define CHR_IOCTL_PP_DATA_DIR 12 |
87ecb68b | 40 | |
f0664048 AJ |
41 | #define CHR_IOCTL_SERIAL_SET_TIOCM 13 |
42 | #define CHR_IOCTL_SERIAL_GET_TIOCM 14 | |
81174dae AL |
43 | |
44 | #define CHR_TIOCM_CTS 0x020 | |
45 | #define CHR_TIOCM_CAR 0x040 | |
46 | #define CHR_TIOCM_DSR 0x100 | |
47 | #define CHR_TIOCM_RI 0x080 | |
48 | #define CHR_TIOCM_DTR 0x002 | |
49 | #define CHR_TIOCM_RTS 0x004 | |
50 | ||
87ecb68b PB |
51 | typedef void IOEventHandler(void *opaque, int event); |
52 | ||
53 | struct CharDriverState { | |
ceecf1d1 | 54 | void (*init)(struct CharDriverState *s); |
87ecb68b PB |
55 | int (*chr_write)(struct CharDriverState *s, const uint8_t *buf, int len); |
56 | void (*chr_update_read_handler)(struct CharDriverState *s); | |
57 | int (*chr_ioctl)(struct CharDriverState *s, int cmd, void *arg); | |
7d174059 | 58 | int (*get_msgfd)(struct CharDriverState *s); |
87ecb68b PB |
59 | IOEventHandler *chr_event; |
60 | IOCanRWHandler *chr_can_read; | |
61 | IOReadHandler *chr_read; | |
62 | void *handler_opaque; | |
63 | void (*chr_send_event)(struct CharDriverState *chr, int event); | |
64 | void (*chr_close)(struct CharDriverState *chr); | |
bd9bdce6 | 65 | void (*chr_accept_input)(struct CharDriverState *chr); |
87ecb68b | 66 | void *opaque; |
87ecb68b | 67 | QEMUBH *bh; |
5ccfae10 AL |
68 | char *label; |
69 | char *filename; | |
72cf2d4f | 70 | QTAILQ_ENTRY(CharDriverState) next; |
87ecb68b PB |
71 | }; |
72 | ||
33521634 | 73 | QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename); |
191bc01b GH |
74 | CharDriverState *qemu_chr_open_opts(QemuOpts *opts, |
75 | void (*init)(struct CharDriverState *s)); | |
ceecf1d1 | 76 | CharDriverState *qemu_chr_open(const char *label, const char *filename, void (*init)(struct CharDriverState *s)); |
9596ebb7 | 77 | void qemu_chr_close(CharDriverState *chr); |
87ecb68b PB |
78 | void qemu_chr_printf(CharDriverState *s, const char *fmt, ...); |
79 | int qemu_chr_write(CharDriverState *s, const uint8_t *buf, int len); | |
80 | void qemu_chr_send_event(CharDriverState *s, int event); | |
81 | void qemu_chr_add_handlers(CharDriverState *s, | |
82 | IOCanRWHandler *fd_can_read, | |
83 | IOReadHandler *fd_read, | |
84 | IOEventHandler *fd_event, | |
85 | void *opaque); | |
86 | int qemu_chr_ioctl(CharDriverState *s, int cmd, void *arg); | |
127338e6 | 87 | void qemu_chr_generic_open(CharDriverState *s); |
87ecb68b PB |
88 | int qemu_chr_can_read(CharDriverState *s); |
89 | void qemu_chr_read(CharDriverState *s, uint8_t *buf, int len); | |
7d174059 | 90 | int qemu_chr_get_msgfd(CharDriverState *s); |
bd9bdce6 | 91 | void qemu_chr_accept_input(CharDriverState *s); |
588b3832 LC |
92 | void qemu_chr_info_print(Monitor *mon, const QObject *ret_data); |
93 | void qemu_chr_info(Monitor *mon, QObject **ret_data); | |
c845f401 | 94 | CharDriverState *qemu_chr_find(const char *name); |
87ecb68b | 95 | |
0e82f34d AL |
96 | extern int term_escape_char; |
97 | ||
87ecb68b PB |
98 | /* async I/O support */ |
99 | ||
100 | int qemu_set_fd_handler2(int fd, | |
101 | IOCanRWHandler *fd_read_poll, | |
102 | IOHandler *fd_read, | |
103 | IOHandler *fd_write, | |
104 | void *opaque); | |
105 | int qemu_set_fd_handler(int fd, | |
106 | IOHandler *fd_read, | |
107 | IOHandler *fd_write, | |
108 | void *opaque); | |
109 | ||
110 | #endif |