]> git.proxmox.com Git - qemu.git/blame - sysemu.h
Rename os_setup_signal_handling() to os_setup_early_signal_handling()
[qemu.git] / sysemu.h
CommitLineData
87ecb68b
PB
1#ifndef SYSEMU_H
2#define SYSEMU_H
3/* Misc. things related to the system emulator. */
4
376253ec 5#include "qemu-common.h"
62c5802e 6#include "qemu-option.h"
72cf2d4f 7#include "qemu-queue.h"
6875204c 8#include "qemu-timer.h"
376253ec 9
49dc768d
AL
10#ifdef _WIN32
11#include <windows.h>
39626c03 12#include "qemu-os-win32.h"
49dc768d
AL
13#endif
14
0d93ca7c
JS
15#ifdef CONFIG_POSIX
16#include "qemu-os-posix.h"
17#endif
18
87ecb68b
PB
19/* vl.c */
20extern const char *bios_name;
5cea8590
PB
21
22#define QEMU_FILE_TYPE_BIOS 0
23#define QEMU_FILE_TYPE_KEYMAP 1
24char *qemu_find_file(int type, const char *name);
87ecb68b
PB
25
26extern int vm_running;
27extern const char *qemu_name;
8fcb1b90 28extern uint8_t qemu_uuid[];
c4be29ff 29int qemu_uuid_parse(const char *str, uint8_t *uuid);
8fcb1b90 30#define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx"
87ecb68b
PB
31
32typedef struct vm_change_state_entry VMChangeStateEntry;
9781e040 33typedef void VMChangeStateHandler(void *opaque, int running, int reason);
87ecb68b
PB
34
35VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
36 void *opaque);
37void qemu_del_vm_change_state_handler(VMChangeStateEntry *e);
38
87ecb68b
PB
39void vm_start(void);
40void vm_stop(int reason);
41
9f9e28cd
GC
42uint64_t ram_bytes_remaining(void);
43uint64_t ram_bytes_transferred(void);
44uint64_t ram_bytes_total(void);
45
87ecb68b
PB
46int64_t cpu_get_ticks(void);
47void cpu_enable_ticks(void);
48void cpu_disable_ticks(void);
49
50void qemu_system_reset_request(void);
51void qemu_system_shutdown_request(void);
52void qemu_system_powerdown_request(void);
cf7a2fe2
AJ
53int qemu_shutdown_requested(void);
54int qemu_reset_requested(void);
55int qemu_powerdown_requested(void);
d9c32310 56extern qemu_irq qemu_system_powerdown;
cf7a2fe2 57void qemu_system_reset(void);
87ecb68b 58
d54908a5 59void do_savevm(Monitor *mon, const QDict *qdict);
03cd4655 60int load_vmstate(const char *name);
d54908a5 61void do_delvm(Monitor *mon, const QDict *qdict);
376253ec 62void do_info_snapshots(Monitor *mon);
87ecb68b 63
ea375f9a
JK
64void cpu_synchronize_all_states(void);
65void cpu_synchronize_all_post_reset(void);
66void cpu_synchronize_all_post_init(void);
67
210f41ba
AL
68void qemu_announce_self(void);
69
d6f4ade2 70void main_loop_wait(int nonblocking);
87ecb68b 71
f327aa0c
JK
72int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable,
73 int shared);
74int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f);
75int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f);
76void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f);
9366f418
AL
77int qemu_loadvm_state(QEMUFile *f);
78
87ecb68b 79/* SLIRP */
376253ec 80void do_info_slirp(Monitor *mon);
87ecb68b 81
fe98ac14 82void os_setup_early_signal_handling(void);
69bd73b1 83
993fbfdb
AL
84typedef enum DisplayType
85{
86 DT_DEFAULT,
87 DT_CURSES,
88 DT_SDL,
89 DT_VNC,
90 DT_NOGRAPHIC,
91} DisplayType;
92
d399f677 93extern int autostart;
87ecb68b 94extern int bios_size;
86176759
ZA
95
96typedef enum {
97 VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB
98} VGAInterfaceType;
99
100extern int vga_interface_type;
101#define cirrus_vga_enabled (vga_interface_type == VGA_CIRRUS)
102#define std_vga_enabled (vga_interface_type == VGA_STD)
103#define xenfb_enabled (vga_interface_type == VGA_XENFB)
104#define vmsvga_enabled (vga_interface_type == VGA_VMWARE)
105
87ecb68b
PB
106extern int graphic_width;
107extern int graphic_height;
108extern int graphic_depth;
6b35e7bf 109extern uint8_t irq0override;
993fbfdb 110extern DisplayType display_type;
87ecb68b
PB
111extern const char *keyboard_layout;
112extern int win2k_install_hack;
73822ec8 113extern int rtc_td_hack;
87ecb68b 114extern int alt_grab;
0ca9f8a4 115extern int ctrl_grab;
87ecb68b
PB
116extern int usb_enabled;
117extern int smp_cpus;
6be68d7e 118extern int max_cpus;
87ecb68b
PB
119extern int cursor_hide;
120extern int graphic_rotate;
121extern int no_quit;
a691d41a 122extern int no_shutdown;
87ecb68b 123extern int semihosting_enabled;
87ecb68b 124extern int old_param;
95387491 125extern int boot_menu;
6875204c 126extern QEMUClock *rtc_clock;
87ecb68b 127
268a362c
AL
128#define MAX_NODES 64
129extern int nb_numa_nodes;
130extern uint64_t node_mem[MAX_NODES];
075cd324 131extern uint64_t node_cpumask[MAX_NODES];
268a362c 132
87ecb68b
PB
133#define MAX_OPTION_ROMS 16
134extern const char *option_rom[MAX_OPTION_ROMS];
135extern int nb_option_roms;
136
87ecb68b
PB
137#define MAX_PROM_ENVS 128
138extern const char *prom_envs[MAX_PROM_ENVS];
139extern unsigned int nb_prom_envs;
87ecb68b 140
e4bcb14c 141typedef enum {
a8659e90 142 IF_NONE,
aae9460e
PB
143 IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN,
144 IF_COUNT
e4bcb14c
TS
145} BlockInterfaceType;
146
428c5705
AL
147typedef enum {
148 BLOCK_ERR_REPORT, BLOCK_ERR_IGNORE, BLOCK_ERR_STOP_ENOSPC,
149 BLOCK_ERR_STOP_ANY
150} BlockInterfaceErrorAction;
151
bf011293 152#define BLOCK_SERIAL_STRLEN 20
153
e4bcb14c
TS
154typedef struct DriveInfo {
155 BlockDriverState *bdrv;
1dae12e6 156 char *id;
c2cc47a4 157 const char *devaddr;
f60d39bc 158 BlockInterfaceType type;
e4bcb14c
TS
159 int bus;
160 int unit;
9dfd7c7a 161 QemuOpts *opts;
e9b2e818 162 BlockInterfaceErrorAction on_read_error;
f7850099 163 BlockInterfaceErrorAction on_write_error;
bf011293 164 char serial[BLOCK_SERIAL_STRLEN + 1];
72cf2d4f 165 QTAILQ_ENTRY(DriveInfo) next;
e4bcb14c
TS
166} DriveInfo;
167
168#define MAX_IDE_DEVS 2
169#define MAX_SCSI_DEVS 7
170#define MAX_DRIVES 32
171
72cf2d4f
BS
172extern QTAILQ_HEAD(drivelist, DriveInfo) drives;
173extern QTAILQ_HEAD(driveoptlist, DriveOpt) driveopts;
e4bcb14c 174
751c6a17 175extern DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit);
2e810b36 176extern DriveInfo *drive_get_by_id(const char *id);
f60d39bc 177extern int drive_get_max_bus(BlockInterfaceType type);
56a14938 178extern void drive_uninit(DriveInfo *dinfo);
fa879c64 179extern const char *drive_get_serial(BlockDriverState *bdrv);
f7850099
KW
180
181extern BlockInterfaceErrorAction drive_get_on_error(
182 BlockDriverState *bdrv, int is_read);
87ecb68b 183
aae9460e
PB
184BlockDriverState *qdev_init_bdrv(DeviceState *dev, BlockInterfaceType type);
185
9dfd7c7a
GH
186extern QemuOpts *drive_add(const char *file, const char *fmt, ...);
187extern DriveInfo *drive_init(QemuOpts *arg, void *machine, int *fatal_error);
4d73cd3b 188
6f338c34
AL
189/* device-hotplug */
190
751c6a17 191DriveInfo *add_init_drive(const char *opts);
6f338c34
AL
192
193/* pci-hotplug */
6c6a58ae 194void pci_device_hot_add(Monitor *mon, const QDict *qdict);
f18c16de 195void drive_hot_add(Monitor *mon, const QDict *qdict);
053801bc 196int pci_device_hot_remove(Monitor *mon, const char *pci_addr);
b752daf0 197void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict);
6f338c34 198
87ecb68b
PB
199/* serial ports */
200
201#define MAX_SERIAL_PORTS 4
202
203extern CharDriverState *serial_hds[MAX_SERIAL_PORTS];
204
205/* parallel ports */
206
207#define MAX_PARALLEL_PORTS 3
208
209extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
210
0e82f34d
AL
211#define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
212
87ecb68b
PB
213#ifdef HAS_AUDIO
214struct soundhw {
215 const char *name;
216 const char *descr;
217 int enabled;
218 int isa;
219 union {
22d83b14
PB
220 int (*init_isa) (qemu_irq *pic);
221 int (*init_pci) (PCIBus *bus);
87ecb68b
PB
222 } init;
223};
224
225extern struct soundhw soundhw[];
226#endif
227
d54908a5
LC
228void do_usb_add(Monitor *mon, const QDict *qdict);
229void do_usb_del(Monitor *mon, const QDict *qdict);
376253ec 230void usb_info(Monitor *mon);
87ecb68b 231
80cd3478
LC
232void rtc_change_mon_event(struct tm *tm);
233
aae9460e
PB
234void register_devices(void);
235
87ecb68b 236#endif