]>
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" |
fd42deeb | 9 | #include "notify.h" |
376253ec | 10 | |
49dc768d AL |
11 | #ifdef _WIN32 |
12 | #include <windows.h> | |
39626c03 | 13 | #include "qemu-os-win32.h" |
49dc768d AL |
14 | #endif |
15 | ||
0d93ca7c JS |
16 | #ifdef CONFIG_POSIX |
17 | #include "qemu-os-posix.h" | |
18 | #endif | |
19 | ||
87ecb68b PB |
20 | /* vl.c */ |
21 | extern const char *bios_name; | |
5cea8590 PB |
22 | |
23 | #define QEMU_FILE_TYPE_BIOS 0 | |
24 | #define QEMU_FILE_TYPE_KEYMAP 1 | |
25 | char *qemu_find_file(int type, const char *name); | |
87ecb68b PB |
26 | |
27 | extern int vm_running; | |
28 | extern const char *qemu_name; | |
8fcb1b90 | 29 | extern uint8_t qemu_uuid[]; |
c4be29ff | 30 | int qemu_uuid_parse(const char *str, uint8_t *uuid); |
8fcb1b90 | 31 | #define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx" |
87ecb68b PB |
32 | |
33 | typedef struct vm_change_state_entry VMChangeStateEntry; | |
9781e040 | 34 | typedef void VMChangeStateHandler(void *opaque, int running, int reason); |
87ecb68b PB |
35 | |
36 | VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb, | |
37 | void *opaque); | |
38 | void qemu_del_vm_change_state_handler(VMChangeStateEntry *e); | |
39 | ||
87ecb68b PB |
40 | void vm_start(void); |
41 | void vm_stop(int reason); | |
42 | ||
9f9e28cd GC |
43 | uint64_t ram_bytes_remaining(void); |
44 | uint64_t ram_bytes_transferred(void); | |
45 | uint64_t ram_bytes_total(void); | |
46 | ||
87ecb68b PB |
47 | int64_t cpu_get_ticks(void); |
48 | void cpu_enable_ticks(void); | |
49 | void cpu_disable_ticks(void); | |
50 | ||
51 | void qemu_system_reset_request(void); | |
52 | void qemu_system_shutdown_request(void); | |
53 | void qemu_system_powerdown_request(void); | |
cf7a2fe2 AJ |
54 | int qemu_shutdown_requested(void); |
55 | int qemu_reset_requested(void); | |
56 | int qemu_powerdown_requested(void); | |
d9c32310 | 57 | extern qemu_irq qemu_system_powerdown; |
cf7a2fe2 | 58 | void qemu_system_reset(void); |
87ecb68b | 59 | |
fd42deeb GH |
60 | void qemu_add_exit_notifier(Notifier *notify); |
61 | void qemu_remove_exit_notifier(Notifier *notify); | |
62 | ||
4cab946a GN |
63 | void qemu_add_machine_init_done_notifier(Notifier *notify); |
64 | ||
d54908a5 | 65 | void do_savevm(Monitor *mon, const QDict *qdict); |
03cd4655 | 66 | int load_vmstate(const char *name); |
d54908a5 | 67 | void do_delvm(Monitor *mon, const QDict *qdict); |
376253ec | 68 | void do_info_snapshots(Monitor *mon); |
87ecb68b | 69 | |
ea375f9a JK |
70 | void cpu_synchronize_all_states(void); |
71 | void cpu_synchronize_all_post_reset(void); | |
72 | void cpu_synchronize_all_post_init(void); | |
73 | ||
210f41ba AL |
74 | void qemu_announce_self(void); |
75 | ||
d6f4ade2 | 76 | void main_loop_wait(int nonblocking); |
87ecb68b | 77 | |
dc912121 | 78 | bool qemu_savevm_state_blocked(Monitor *mon); |
f327aa0c JK |
79 | int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable, |
80 | int shared); | |
81 | int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f); | |
82 | int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f); | |
83 | void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f); | |
9366f418 AL |
84 | int qemu_loadvm_state(QEMUFile *f); |
85 | ||
87ecb68b | 86 | /* SLIRP */ |
376253ec | 87 | void do_info_slirp(Monitor *mon); |
87ecb68b | 88 | |
6170540b | 89 | /* OS specific functions */ |
fe98ac14 | 90 | void os_setup_early_signal_handling(void); |
6170540b | 91 | char *os_find_datadir(const char *argv0); |
59a5264b | 92 | void os_parse_cmd_args(int index, const char *optarg); |
eb505be1 | 93 | void os_pidfile_error(void); |
69bd73b1 | 94 | |
993fbfdb AL |
95 | typedef enum DisplayType |
96 | { | |
97 | DT_DEFAULT, | |
98 | DT_CURSES, | |
99 | DT_SDL, | |
993fbfdb AL |
100 | DT_NOGRAPHIC, |
101 | } DisplayType; | |
102 | ||
d399f677 | 103 | extern int autostart; |
8e84865e | 104 | extern int incoming_expected; |
87ecb68b | 105 | extern int bios_size; |
86176759 ZA |
106 | |
107 | typedef enum { | |
a19cbfb3 | 108 | VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB, VGA_QXL, |
86176759 ZA |
109 | } VGAInterfaceType; |
110 | ||
111 | extern int vga_interface_type; | |
112 | #define cirrus_vga_enabled (vga_interface_type == VGA_CIRRUS) | |
113 | #define std_vga_enabled (vga_interface_type == VGA_STD) | |
114 | #define xenfb_enabled (vga_interface_type == VGA_XENFB) | |
115 | #define vmsvga_enabled (vga_interface_type == VGA_VMWARE) | |
a19cbfb3 | 116 | #define qxl_enabled (vga_interface_type == VGA_QXL) |
86176759 | 117 | |
87ecb68b PB |
118 | extern int graphic_width; |
119 | extern int graphic_height; | |
120 | extern int graphic_depth; | |
6b35e7bf | 121 | extern uint8_t irq0override; |
993fbfdb | 122 | extern DisplayType display_type; |
87ecb68b PB |
123 | extern const char *keyboard_layout; |
124 | extern int win2k_install_hack; | |
73822ec8 | 125 | extern int rtc_td_hack; |
87ecb68b | 126 | extern int alt_grab; |
0ca9f8a4 | 127 | extern int ctrl_grab; |
87ecb68b PB |
128 | extern int usb_enabled; |
129 | extern int smp_cpus; | |
6be68d7e | 130 | extern int max_cpus; |
87ecb68b PB |
131 | extern int cursor_hide; |
132 | extern int graphic_rotate; | |
133 | extern int no_quit; | |
a691d41a | 134 | extern int no_shutdown; |
87ecb68b | 135 | extern int semihosting_enabled; |
87ecb68b | 136 | extern int old_param; |
95387491 | 137 | extern int boot_menu; |
6875204c | 138 | extern QEMUClock *rtc_clock; |
87ecb68b | 139 | |
268a362c AL |
140 | #define MAX_NODES 64 |
141 | extern int nb_numa_nodes; | |
142 | extern uint64_t node_mem[MAX_NODES]; | |
075cd324 | 143 | extern uint64_t node_cpumask[MAX_NODES]; |
268a362c | 144 | |
87ecb68b | 145 | #define MAX_OPTION_ROMS 16 |
2e55e842 GN |
146 | typedef struct QEMUOptionRom { |
147 | const char *name; | |
148 | int32_t bootindex; | |
149 | } QEMUOptionRom; | |
150 | extern QEMUOptionRom option_rom[MAX_OPTION_ROMS]; | |
87ecb68b PB |
151 | extern int nb_option_roms; |
152 | ||
87ecb68b PB |
153 | #define MAX_PROM_ENVS 128 |
154 | extern const char *prom_envs[MAX_PROM_ENVS]; | |
155 | extern unsigned int nb_prom_envs; | |
87ecb68b | 156 | |
6f338c34 | 157 | /* pci-hotplug */ |
6c6a58ae | 158 | void pci_device_hot_add(Monitor *mon, const QDict *qdict); |
f18c16de | 159 | void drive_hot_add(Monitor *mon, const QDict *qdict); |
b752daf0 | 160 | void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict); |
6f338c34 | 161 | |
2ae63bda IY |
162 | /* pcie aer error injection */ |
163 | void pcie_aer_inject_error_print(Monitor *mon, const QObject *data); | |
164 | int do_pcie_aer_inejct_error(Monitor *mon, | |
165 | const QDict *qdict, QObject **ret_data); | |
166 | ||
87ecb68b PB |
167 | /* serial ports */ |
168 | ||
169 | #define MAX_SERIAL_PORTS 4 | |
170 | ||
171 | extern CharDriverState *serial_hds[MAX_SERIAL_PORTS]; | |
172 | ||
173 | /* parallel ports */ | |
174 | ||
175 | #define MAX_PARALLEL_PORTS 3 | |
176 | ||
177 | extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS]; | |
178 | ||
0e82f34d AL |
179 | #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR) |
180 | ||
87ecb68b PB |
181 | #ifdef HAS_AUDIO |
182 | struct soundhw { | |
183 | const char *name; | |
184 | const char *descr; | |
185 | int enabled; | |
186 | int isa; | |
187 | union { | |
22d83b14 PB |
188 | int (*init_isa) (qemu_irq *pic); |
189 | int (*init_pci) (PCIBus *bus); | |
87ecb68b PB |
190 | } init; |
191 | }; | |
192 | ||
193 | extern struct soundhw soundhw[]; | |
194 | #endif | |
195 | ||
d54908a5 LC |
196 | void do_usb_add(Monitor *mon, const QDict *qdict); |
197 | void do_usb_del(Monitor *mon, const QDict *qdict); | |
376253ec | 198 | void usb_info(Monitor *mon); |
87ecb68b | 199 | |
80cd3478 LC |
200 | void rtc_change_mon_event(struct tm *tm); |
201 | ||
aae9460e PB |
202 | void register_devices(void); |
203 | ||
1ca4d09a GN |
204 | void add_boot_device_path(int32_t bootindex, DeviceState *dev, |
205 | const char *suffix); | |
962630f2 | 206 | char *get_boot_devices_list(uint32_t *size); |
87ecb68b | 207 | #endif |