]> git.proxmox.com Git - qemu.git/blame - sysemu.h
suspend: add infrastructure
[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"
1fa9a5e4 9#include "qapi-types.h"
fd42deeb 10#include "notify.h"
44a9b356 11#include "main-loop.h"
376253ec 12
87ecb68b 13/* vl.c */
1dfb4dd9 14
87ecb68b 15extern const char *bios_name;
5cea8590 16
87ecb68b 17extern const char *qemu_name;
8fcb1b90 18extern uint8_t qemu_uuid[];
c4be29ff 19int qemu_uuid_parse(const char *str, uint8_t *uuid);
8fcb1b90 20#define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx"
87ecb68b 21
5db9d4d1 22void runstate_init(void);
f5bbfba1
LC
23bool runstate_check(RunState state);
24void runstate_set(RunState new_state);
1354869c 25int runstate_is_running(void);
87ecb68b 26typedef struct vm_change_state_entry VMChangeStateEntry;
1dfb4dd9 27typedef void VMChangeStateHandler(void *opaque, int running, RunState state);
87ecb68b
PB
28
29VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
30 void *opaque);
31void qemu_del_vm_change_state_handler(VMChangeStateEntry *e);
1dfb4dd9 32void vm_state_notify(int running, RunState state);
e07bbac5 33
e063eb1f
JK
34#define VMRESET_SILENT false
35#define VMRESET_REPORT true
36
87ecb68b 37void vm_start(void);
1dfb4dd9 38void vm_stop(RunState state);
8a9236f1 39void vm_stop_force_state(RunState state);
87ecb68b 40
95b363b5
GH
41typedef enum WakeupReason {
42 QEMU_WAKEUP_REASON_OTHER = 0,
43} WakeupReason;
44
87ecb68b 45void qemu_system_reset_request(void);
95b363b5
GH
46void qemu_system_suspend_request(void);
47void qemu_register_suspend_notifier(Notifier *notifier);
48void qemu_system_wakeup_request(WakeupReason reason);
49void qemu_system_wakeup_enable(WakeupReason reason, bool enabled);
50void qemu_register_wakeup_notifier(Notifier *notifier);
87ecb68b
PB
51void qemu_system_shutdown_request(void);
52void qemu_system_powerdown_request(void);
8cf71710 53void qemu_system_debug_request(void);
1dfb4dd9 54void qemu_system_vmstop_request(RunState reason);
1291eb35
AP
55int qemu_shutdown_requested_get(void);
56int qemu_reset_requested_get(void);
cf7a2fe2
AJ
57int qemu_shutdown_requested(void);
58int qemu_reset_requested(void);
59int qemu_powerdown_requested(void);
f64622c4
GN
60void qemu_system_killed(int signal, pid_t pid);
61void qemu_kill_report(void);
d9c32310 62extern qemu_irq qemu_system_powerdown;
e063eb1f 63void qemu_system_reset(bool report);
87ecb68b 64
fd42deeb
GH
65void qemu_add_exit_notifier(Notifier *notify);
66void qemu_remove_exit_notifier(Notifier *notify);
67
4cab946a
GN
68void qemu_add_machine_init_done_notifier(Notifier *notify);
69
d54908a5 70void do_savevm(Monitor *mon, const QDict *qdict);
03cd4655 71int load_vmstate(const char *name);
d54908a5 72void do_delvm(Monitor *mon, const QDict *qdict);
376253ec 73void do_info_snapshots(Monitor *mon);
87ecb68b 74
210f41ba
AL
75void qemu_announce_self(void);
76
dc912121 77bool qemu_savevm_state_blocked(Monitor *mon);
f327aa0c
JK
78int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable,
79 int shared);
80int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f);
81int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f);
82void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f);
9366f418
AL
83int qemu_loadvm_state(QEMUFile *f);
84
87ecb68b 85/* SLIRP */
376253ec 86void do_info_slirp(Monitor *mon);
87ecb68b 87
993fbfdb
AL
88typedef enum DisplayType
89{
90 DT_DEFAULT,
91 DT_CURSES,
92 DT_SDL,
993fbfdb 93 DT_NOGRAPHIC,
4171d32e 94 DT_NONE,
993fbfdb
AL
95} DisplayType;
96
d399f677 97extern int autostart;
87ecb68b 98extern int bios_size;
86176759
ZA
99
100typedef enum {
a19cbfb3 101 VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB, VGA_QXL,
86176759
ZA
102} VGAInterfaceType;
103
104extern int vga_interface_type;
105#define cirrus_vga_enabled (vga_interface_type == VGA_CIRRUS)
106#define std_vga_enabled (vga_interface_type == VGA_STD)
107#define xenfb_enabled (vga_interface_type == VGA_XENFB)
108#define vmsvga_enabled (vga_interface_type == VGA_VMWARE)
a19cbfb3 109#define qxl_enabled (vga_interface_type == VGA_QXL)
86176759 110
87ecb68b
PB
111extern int graphic_width;
112extern int graphic_height;
113extern int graphic_depth;
993fbfdb 114extern DisplayType display_type;
87ecb68b
PB
115extern const char *keyboard_layout;
116extern int win2k_install_hack;
117extern int alt_grab;
0ca9f8a4 118extern int ctrl_grab;
87ecb68b
PB
119extern int usb_enabled;
120extern int smp_cpus;
6be68d7e 121extern int max_cpus;
87ecb68b
PB
122extern int cursor_hide;
123extern int graphic_rotate;
124extern int no_quit;
a691d41a 125extern int no_shutdown;
87ecb68b 126extern int semihosting_enabled;
87ecb68b 127extern int old_param;
95387491 128extern int boot_menu;
3d3b8303 129extern uint8_t *boot_splash_filedata;
130extern int boot_splash_filedata_size;
131extern uint8_t qemu_extra_params_fw[2];
6875204c 132extern QEMUClock *rtc_clock;
87ecb68b 133
268a362c
AL
134#define MAX_NODES 64
135extern int nb_numa_nodes;
136extern uint64_t node_mem[MAX_NODES];
075cd324 137extern uint64_t node_cpumask[MAX_NODES];
268a362c 138
87ecb68b 139#define MAX_OPTION_ROMS 16
2e55e842
GN
140typedef struct QEMUOptionRom {
141 const char *name;
142 int32_t bootindex;
143} QEMUOptionRom;
144extern QEMUOptionRom option_rom[MAX_OPTION_ROMS];
87ecb68b
PB
145extern int nb_option_roms;
146
87ecb68b
PB
147#define MAX_PROM_ENVS 128
148extern const char *prom_envs[MAX_PROM_ENVS];
149extern unsigned int nb_prom_envs;
87ecb68b 150
6f338c34 151/* pci-hotplug */
6c6a58ae 152void pci_device_hot_add(Monitor *mon, const QDict *qdict);
dd97aa8a
AG
153int pci_drive_hot_add(Monitor *mon, const QDict *qdict,
154 DriveInfo *dinfo, int type);
b752daf0 155void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict);
6f338c34 156
dd97aa8a
AG
157/* generic hotplug */
158void drive_hot_add(Monitor *mon, const QDict *qdict);
159
2ae63bda
IY
160/* pcie aer error injection */
161void pcie_aer_inject_error_print(Monitor *mon, const QObject *data);
1f3392b7 162int do_pcie_aer_inject_error(Monitor *mon,
2ae63bda
IY
163 const QDict *qdict, QObject **ret_data);
164
87ecb68b
PB
165/* serial ports */
166
167#define MAX_SERIAL_PORTS 4
168
169extern CharDriverState *serial_hds[MAX_SERIAL_PORTS];
170
171/* parallel ports */
172
173#define MAX_PARALLEL_PORTS 3
174
175extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
176
d54908a5
LC
177void do_usb_add(Monitor *mon, const QDict *qdict);
178void do_usb_del(Monitor *mon, const QDict *qdict);
376253ec 179void usb_info(Monitor *mon);
87ecb68b 180
80cd3478
LC
181void rtc_change_mon_event(struct tm *tm);
182
aae9460e
PB
183void register_devices(void);
184
1ca4d09a
GN
185void add_boot_device_path(int32_t bootindex, DeviceState *dev,
186 const char *suffix);
962630f2 187char *get_boot_devices_list(uint32_t *size);
87ecb68b 188#endif