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