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