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