]>
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 | ||
d54908a5 | 63 | void do_savevm(Monitor *mon, const QDict *qdict); |
03cd4655 | 64 | int load_vmstate(const char *name); |
d54908a5 | 65 | void do_delvm(Monitor *mon, const QDict *qdict); |
376253ec | 66 | void do_info_snapshots(Monitor *mon); |
87ecb68b | 67 | |
ea375f9a JK |
68 | void cpu_synchronize_all_states(void); |
69 | void cpu_synchronize_all_post_reset(void); | |
70 | void cpu_synchronize_all_post_init(void); | |
71 | ||
210f41ba AL |
72 | void qemu_announce_self(void); |
73 | ||
d6f4ade2 | 74 | void main_loop_wait(int nonblocking); |
87ecb68b | 75 | |
f327aa0c JK |
76 | int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable, |
77 | int shared); | |
78 | int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f); | |
79 | int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f); | |
80 | void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f); | |
9366f418 AL |
81 | int qemu_loadvm_state(QEMUFile *f); |
82 | ||
87ecb68b | 83 | /* SLIRP */ |
376253ec | 84 | void do_info_slirp(Monitor *mon); |
87ecb68b | 85 | |
6170540b | 86 | /* OS specific functions */ |
fe98ac14 | 87 | void os_setup_early_signal_handling(void); |
6170540b | 88 | char *os_find_datadir(const char *argv0); |
59a5264b | 89 | void os_parse_cmd_args(int index, const char *optarg); |
eb505be1 | 90 | void os_pidfile_error(void); |
69bd73b1 | 91 | |
993fbfdb AL |
92 | typedef enum DisplayType |
93 | { | |
94 | DT_DEFAULT, | |
95 | DT_CURSES, | |
96 | DT_SDL, | |
97 | DT_VNC, | |
98 | DT_NOGRAPHIC, | |
99 | } DisplayType; | |
100 | ||
d399f677 | 101 | extern int autostart; |
87ecb68b | 102 | extern int bios_size; |
86176759 ZA |
103 | |
104 | typedef enum { | |
105 | VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB | |
106 | } VGAInterfaceType; | |
107 | ||
108 | extern int vga_interface_type; | |
109 | #define cirrus_vga_enabled (vga_interface_type == VGA_CIRRUS) | |
110 | #define std_vga_enabled (vga_interface_type == VGA_STD) | |
111 | #define xenfb_enabled (vga_interface_type == VGA_XENFB) | |
112 | #define vmsvga_enabled (vga_interface_type == VGA_VMWARE) | |
113 | ||
87ecb68b PB |
114 | extern int graphic_width; |
115 | extern int graphic_height; | |
116 | extern int graphic_depth; | |
6b35e7bf | 117 | extern uint8_t irq0override; |
993fbfdb | 118 | extern DisplayType display_type; |
87ecb68b PB |
119 | extern const char *keyboard_layout; |
120 | extern int win2k_install_hack; | |
73822ec8 | 121 | extern int rtc_td_hack; |
87ecb68b | 122 | extern int alt_grab; |
0ca9f8a4 | 123 | extern int ctrl_grab; |
87ecb68b PB |
124 | extern int usb_enabled; |
125 | extern int smp_cpus; | |
6be68d7e | 126 | extern int max_cpus; |
87ecb68b PB |
127 | extern int cursor_hide; |
128 | extern int graphic_rotate; | |
129 | extern int no_quit; | |
a691d41a | 130 | extern int no_shutdown; |
87ecb68b | 131 | extern int semihosting_enabled; |
87ecb68b | 132 | extern int old_param; |
95387491 | 133 | extern int boot_menu; |
6875204c | 134 | extern QEMUClock *rtc_clock; |
87ecb68b | 135 | |
268a362c AL |
136 | #define MAX_NODES 64 |
137 | extern int nb_numa_nodes; | |
138 | extern uint64_t node_mem[MAX_NODES]; | |
075cd324 | 139 | extern uint64_t node_cpumask[MAX_NODES]; |
268a362c | 140 | |
87ecb68b PB |
141 | #define MAX_OPTION_ROMS 16 |
142 | extern const char *option_rom[MAX_OPTION_ROMS]; | |
143 | extern int nb_option_roms; | |
144 | ||
87ecb68b PB |
145 | #define MAX_PROM_ENVS 128 |
146 | extern const char *prom_envs[MAX_PROM_ENVS]; | |
147 | extern unsigned int nb_prom_envs; | |
87ecb68b | 148 | |
6f338c34 | 149 | /* pci-hotplug */ |
6c6a58ae | 150 | void pci_device_hot_add(Monitor *mon, const QDict *qdict); |
f18c16de | 151 | void drive_hot_add(Monitor *mon, const QDict *qdict); |
b752daf0 | 152 | void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict); |
6f338c34 | 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 | ||
0e82f34d AL |
166 | #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR) |
167 | ||
87ecb68b PB |
168 | #ifdef HAS_AUDIO |
169 | struct soundhw { | |
170 | const char *name; | |
171 | const char *descr; | |
172 | int enabled; | |
173 | int isa; | |
174 | union { | |
22d83b14 PB |
175 | int (*init_isa) (qemu_irq *pic); |
176 | int (*init_pci) (PCIBus *bus); | |
87ecb68b PB |
177 | } init; |
178 | }; | |
179 | ||
180 | extern struct soundhw soundhw[]; | |
181 | #endif | |
182 | ||
d54908a5 LC |
183 | void do_usb_add(Monitor *mon, const QDict *qdict); |
184 | void do_usb_del(Monitor *mon, const QDict *qdict); | |
376253ec | 185 | void usb_info(Monitor *mon); |
87ecb68b | 186 | |
80cd3478 LC |
187 | void rtc_change_mon_event(struct tm *tm); |
188 | ||
aae9460e PB |
189 | void register_devices(void); |
190 | ||
87ecb68b | 191 | #endif |