]> Git Repo - qemu.git/blame - include/sysemu/sysemu.h
vl: export machine_init_done
[qemu.git] / include / sysemu / sysemu.h
CommitLineData
87ecb68b
PB
1#ifndef SYSEMU_H
2#define SYSEMU_H
3/* Misc. things related to the system emulator. */
4
9af23989 5#include "qapi/qapi-types-run-state.h"
1de7afc9
PB
6#include "qemu/queue.h"
7#include "qemu/timer.h"
1de7afc9
PB
8#include "qemu/notify.h"
9#include "qemu/main-loop.h"
8c85901e 10#include "qemu/bitmap.h"
9c5ce8db 11#include "qemu/uuid.h"
dfabb8b9 12#include "qom/object.h"
376253ec 13
87ecb68b 14/* vl.c */
1dfb4dd9 15
87ecb68b 16extern const char *bios_name;
87ecb68b 17extern const char *qemu_name;
9c5ce8db 18extern QemuUUID qemu_uuid;
fc3b3295 19extern bool qemu_uuid_set;
87ecb68b 20
f5bbfba1
LC
21bool runstate_check(RunState state);
22void runstate_set(RunState new_state);
1354869c 23int runstate_is_running(void);
ede085b3 24bool runstate_needs_reset(void);
5e0f1940 25bool runstate_store(char *str, size_t size);
87ecb68b 26typedef struct vm_change_state_entry VMChangeStateEntry;
1dfb4dd9 27typedef void VMChangeStateHandler(void *opaque, int running, RunState state);
87ecb68b
PB
28
29VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
30 void *opaque);
31void qemu_del_vm_change_state_handler(VMChangeStateEntry *e);
1dfb4dd9 32void vm_state_notify(int running, RunState state);
e07bbac5 33
aedbe192
EB
34/* Enumeration of various causes for shutdown. */
35typedef enum ShutdownCause {
36 SHUTDOWN_CAUSE_NONE, /* No shutdown request pending */
37 SHUTDOWN_CAUSE_HOST_ERROR, /* An error prevents further use of guest */
38 SHUTDOWN_CAUSE_HOST_QMP, /* Reaction to a QMP command, like 'quit' */
39 SHUTDOWN_CAUSE_HOST_SIGNAL, /* Reaction to a signal, such as SIGINT */
40 SHUTDOWN_CAUSE_HOST_UI, /* Reaction to UI event, like window close */
41 SHUTDOWN_CAUSE_GUEST_SHUTDOWN,/* Guest shutdown/suspend request, via
42 ACPI or other hardware-specific means */
43 SHUTDOWN_CAUSE_GUEST_RESET, /* Guest reset request, and command line
44 turns that into a shutdown */
45 SHUTDOWN_CAUSE_GUEST_PANIC, /* Guest panicked, and command line turns
46 that into a shutdown */
47 SHUTDOWN_CAUSE__MAX,
48} ShutdownCause;
e063eb1f 49
08fba7ac
EB
50static inline bool shutdown_caused_by_guest(ShutdownCause cause)
51{
52 return cause >= SHUTDOWN_CAUSE_GUEST_SHUTDOWN;
53}
e063eb1f 54
87ecb68b 55void vm_start(void);
2d76e823 56int vm_prepare_start(void);
56983463
KW
57int vm_stop(RunState state);
58int vm_stop_force_state(RunState state);
4486e89c 59int vm_shutdown(void);
87ecb68b 60
95b363b5 61typedef enum WakeupReason {
4bc78a87
LJ
62 /* Always keep QEMU_WAKEUP_REASON_NONE = 0 */
63 QEMU_WAKEUP_REASON_NONE = 0,
62aeb0f7 64 QEMU_WAKEUP_REASON_RTC,
6595abc0 65 QEMU_WAKEUP_REASON_PMTIMER,
4bc78a87 66 QEMU_WAKEUP_REASON_OTHER,
95b363b5
GH
67} WakeupReason;
68
cf83f140 69void qemu_system_reset_request(ShutdownCause reason);
95b363b5
GH
70void qemu_system_suspend_request(void);
71void qemu_register_suspend_notifier(Notifier *notifier);
72void qemu_system_wakeup_request(WakeupReason reason);
73void qemu_system_wakeup_enable(WakeupReason reason, bool enabled);
74void qemu_register_wakeup_notifier(Notifier *notifier);
cf83f140 75void qemu_system_shutdown_request(ShutdownCause reason);
87ecb68b 76void qemu_system_powerdown_request(void);
a9552c8e 77void qemu_register_powerdown_notifier(Notifier *notifier);
8cf71710 78void qemu_system_debug_request(void);
1dfb4dd9 79void qemu_system_vmstop_request(RunState reason);
74892d24 80void qemu_system_vmstop_request_prepare(void);
2d76e823 81bool qemu_vmstop_requested(RunState *r);
aedbe192
EB
82ShutdownCause qemu_shutdown_requested_get(void);
83ShutdownCause qemu_reset_requested_get(void);
f64622c4 84void qemu_system_killed(int signal, pid_t pid);
aedbe192 85void qemu_system_reset(ShutdownCause reason);
c86f106b 86void qemu_system_guest_panicked(GuestPanicInformation *info);
87ecb68b 87
fd42deeb
GH
88void qemu_add_exit_notifier(Notifier *notify);
89void qemu_remove_exit_notifier(Notifier *notify);
90
c8ca2a23
PX
91extern bool machine_init_done;
92
4cab946a 93void qemu_add_machine_init_done_notifier(Notifier *notify);
b86eacb8 94void qemu_remove_machine_init_done_notifier(Notifier *notify);
4cab946a 95
210f41ba
AL
96void qemu_announce_self(void);
97
d399f677 98extern int autostart;
86176759
ZA
99
100typedef enum {
a19cbfb3 101 VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB, VGA_QXL,
a94f0c5c 102 VGA_TCX, VGA_CG3, VGA_DEVICE, VGA_VIRTIO,
8c9a2b71 103 VGA_TYPE_MAX,
86176759
ZA
104} VGAInterfaceType;
105
106extern int vga_interface_type;
86176759 107#define xenfb_enabled (vga_interface_type == VGA_XENFB)
86176759 108
87ecb68b
PB
109extern int graphic_width;
110extern int graphic_height;
111extern int graphic_depth;
da076ffe 112extern int display_opengl;
87ecb68b
PB
113extern const char *keyboard_layout;
114extern int win2k_install_hack;
115extern int alt_grab;
0ca9f8a4 116extern int ctrl_grab;
04ff1a39 117extern int no_frame;
87ecb68b 118extern int smp_cpus;
c0dd1099 119extern unsigned int max_cpus;
87ecb68b
PB
120extern int cursor_hide;
121extern int graphic_rotate;
122extern int no_quit;
a691d41a 123extern int no_shutdown;
87ecb68b 124extern int old_param;
95387491 125extern int boot_menu;
bc74112f 126extern bool boot_strict;
3d3b8303 127extern uint8_t *boot_splash_filedata;
d09acb9b 128extern size_t boot_splash_filedata_size;
58b7c17e 129extern bool enable_mlock;
3d3b8303 130extern uint8_t qemu_extra_params_fw[2];
884f17c2 131extern QEMUClockType rtc_clock;
e1c57ab8
PB
132extern const char *mem_path;
133extern int mem_prealloc;
87ecb68b 134
45e30bf3 135#define MAX_NODES 128
6a3042b2 136#define NUMA_NODE_UNASSIGNED MAX_NODES
0f203430
HC
137#define NUMA_DISTANCE_MIN 10
138#define NUMA_DISTANCE_DEFAULT 20
139#define NUMA_DISTANCE_MAX 254
140#define NUMA_DISTANCE_UNREACHABLE 255
d2995916 141
87ecb68b 142#define MAX_OPTION_ROMS 16
2e55e842
GN
143typedef struct QEMUOptionRom {
144 const char *name;
145 int32_t bootindex;
146} QEMUOptionRom;
147extern QEMUOptionRom option_rom[MAX_OPTION_ROMS];
87ecb68b
PB
148extern int nb_option_roms;
149
87ecb68b
PB
150#define MAX_PROM_ENVS 128
151extern const char *prom_envs[MAX_PROM_ENVS];
152extern unsigned int nb_prom_envs;
87ecb68b 153
dd97aa8a 154/* generic hotplug */
3e5a50d6 155void hmp_drive_add(Monitor *mon, const QDict *qdict);
dd97aa8a 156
2ae63bda 157/* pcie aer error injection */
04e00c92 158void hmp_pcie_aer_inject_error(Monitor *mon, const QDict *qdict);
2ae63bda 159
87ecb68b
PB
160/* serial ports */
161
162#define MAX_SERIAL_PORTS 4
163
0ec7b3e7 164extern Chardev *serial_hds[MAX_SERIAL_PORTS];
87ecb68b
PB
165
166/* parallel ports */
167
168#define MAX_PARALLEL_PORTS 3
169
0ec7b3e7 170extern Chardev *parallel_hds[MAX_PARALLEL_PORTS];
87ecb68b 171
1ce6be24 172void hmp_info_usb(Monitor *mon, const QDict *qdict);
87ecb68b 173
1ca4d09a
GN
174void add_boot_device_path(int32_t bootindex, DeviceState *dev,
175 const char *suffix);
30e32af7 176char *get_boot_devices_list(size_t *size, bool ignore_suffixes);
094b287f 177
7dc5af55 178DeviceState *get_boot_device(uint32_t position);
694fb857 179void check_boot_index(int32_t bootindex, Error **errp);
9d27572d 180void del_boot_device_path(DeviceState *dev, const char *suffix);
12da3097
GA
181void device_add_bootindex_property(Object *obj, int32_t *bootindex,
182 const char *name, const char *suffix,
183 DeviceState *dev, Error **errp);
9816833d 184void restore_boot_order(void *opaque);
703008e8 185void validate_bootdevices(const char *devices, Error **errp);
9816833d 186
3b53e45f 187/* handler to set the boot_device order for a specific type of MachineClass */
ddcd5531
GA
188typedef void QEMUBootSetHandler(void *opaque, const char *boot_order,
189 Error **errp);
9816833d 190void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque);
f1839938 191void qemu_boot_set(const char *boot_order, Error **errp);
7dc5af55 192
7f9d6e54
MA
193QemuOpts *qemu_get_machine_opts(void);
194
f8b6f8ed 195bool defaults_enabled(void);
094b287f 196
968854c8
AK
197extern QemuOptsList qemu_legacy_drive_opts;
198extern QemuOptsList qemu_common_drive_opts;
4d454574 199extern QemuOptsList qemu_drive_opts;
c5f3014b 200extern QemuOptsList bdrv_runtime_opts;
4d454574
PB
201extern QemuOptsList qemu_chardev_opts;
202extern QemuOptsList qemu_device_opts;
203extern QemuOptsList qemu_netdev_opts;
78cd6f7b 204extern QemuOptsList qemu_nic_opts;
4d454574
PB
205extern QemuOptsList qemu_net_opts;
206extern QemuOptsList qemu_global_opts;
207extern QemuOptsList qemu_mon_opts;
208
87ecb68b 209#endif
This page took 0.841782 seconds and 4 git commands to generate.