Move clock related functions to qemu-timer.h
[qemu.git] / sysemu.h
bloba379024120fbf4fc53d49314c703895d62b1a933
1 #ifndef SYSEMU_H
2 #define SYSEMU_H
3 /* Misc. things related to the system emulator. */
5 #include "qemu-common.h"
6 #include "qemu-option.h"
7 #include "qemu-queue.h"
8 #include "qemu-timer.h"
9 #include "notify.h"
11 /* vl.c */
12 extern const char *bios_name;
14 extern int vm_running;
15 extern const char *qemu_name;
16 extern uint8_t qemu_uuid[];
17 int qemu_uuid_parse(const char *str, uint8_t *uuid);
18 #define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx"
20 typedef struct vm_change_state_entry VMChangeStateEntry;
21 typedef void VMChangeStateHandler(void *opaque, int running, int reason);
23 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
24 void *opaque);
25 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e);
27 #define VMSTOP_USER 0
28 #define VMSTOP_DEBUG 1
29 #define VMSTOP_SHUTDOWN 2
30 #define VMSTOP_DISKFULL 3
31 #define VMSTOP_WATCHDOG 4
32 #define VMSTOP_PANIC 5
33 #define VMSTOP_SAVEVM 6
34 #define VMSTOP_LOADVM 7
35 #define VMSTOP_MIGRATE 8
37 void vm_start(void);
38 void vm_stop(int reason);
40 uint64_t ram_bytes_remaining(void);
41 uint64_t ram_bytes_transferred(void);
42 uint64_t ram_bytes_total(void);
44 void qemu_system_reset_request(void);
45 void qemu_system_shutdown_request(void);
46 void qemu_system_powerdown_request(void);
47 void qemu_system_debug_request(void);
48 void qemu_system_vmstop_request(int reason);
49 int qemu_shutdown_requested(void);
50 int qemu_reset_requested(void);
51 int qemu_powerdown_requested(void);
52 void qemu_system_killed(int signal, pid_t pid);
53 void qemu_kill_report(void);
54 extern qemu_irq qemu_system_powerdown;
55 void qemu_system_reset(void);
57 void qemu_add_exit_notifier(Notifier *notify);
58 void qemu_remove_exit_notifier(Notifier *notify);
60 void qemu_add_machine_init_done_notifier(Notifier *notify);
62 void do_savevm(Monitor *mon, const QDict *qdict);
63 int load_vmstate(const char *name);
64 void do_delvm(Monitor *mon, const QDict *qdict);
65 void do_info_snapshots(Monitor *mon);
67 void cpu_synchronize_all_states(void);
68 void cpu_synchronize_all_post_reset(void);
69 void cpu_synchronize_all_post_init(void);
71 void qemu_announce_self(void);
73 void main_loop_wait(int nonblocking);
75 bool qemu_savevm_state_blocked(Monitor *mon);
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);
81 int qemu_loadvm_state(QEMUFile *f);
83 /* SLIRP */
84 void do_info_slirp(Monitor *mon);
86 typedef enum DisplayType
88 DT_DEFAULT,
89 DT_CURSES,
90 DT_SDL,
91 DT_NOGRAPHIC,
92 DT_NONE,
93 } DisplayType;
95 extern int autostart;
96 extern int incoming_expected;
97 extern int bios_size;
99 typedef enum {
100 VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB, VGA_QXL,
101 } VGAInterfaceType;
103 extern int vga_interface_type;
104 #define cirrus_vga_enabled (vga_interface_type == VGA_CIRRUS)
105 #define std_vga_enabled (vga_interface_type == VGA_STD)
106 #define xenfb_enabled (vga_interface_type == VGA_XENFB)
107 #define vmsvga_enabled (vga_interface_type == VGA_VMWARE)
108 #define qxl_enabled (vga_interface_type == VGA_QXL)
110 extern int graphic_width;
111 extern int graphic_height;
112 extern int graphic_depth;
113 extern uint8_t irq0override;
114 extern DisplayType display_type;
115 extern const char *keyboard_layout;
116 extern int win2k_install_hack;
117 extern int rtc_td_hack;
118 extern int alt_grab;
119 extern int ctrl_grab;
120 extern int usb_enabled;
121 extern int smp_cpus;
122 extern int max_cpus;
123 extern int cursor_hide;
124 extern int graphic_rotate;
125 extern int no_quit;
126 extern int no_shutdown;
127 extern int semihosting_enabled;
128 extern int old_param;
129 extern int boot_menu;
130 extern QEMUClock *rtc_clock;
132 #define MAX_NODES 64
133 extern int nb_numa_nodes;
134 extern uint64_t node_mem[MAX_NODES];
135 extern uint64_t node_cpumask[MAX_NODES];
137 #define MAX_OPTION_ROMS 16
138 typedef struct QEMUOptionRom {
139 const char *name;
140 int32_t bootindex;
141 } QEMUOptionRom;
142 extern QEMUOptionRom option_rom[MAX_OPTION_ROMS];
143 extern int nb_option_roms;
145 #define MAX_PROM_ENVS 128
146 extern const char *prom_envs[MAX_PROM_ENVS];
147 extern unsigned int nb_prom_envs;
149 /* pci-hotplug */
150 void pci_device_hot_add(Monitor *mon, const QDict *qdict);
151 void drive_hot_add(Monitor *mon, const QDict *qdict);
152 void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict);
154 /* pcie aer error injection */
155 void pcie_aer_inject_error_print(Monitor *mon, const QObject *data);
156 int do_pcie_aer_inejct_error(Monitor *mon,
157 const QDict *qdict, QObject **ret_data);
159 /* serial ports */
161 #define MAX_SERIAL_PORTS 4
163 extern CharDriverState *serial_hds[MAX_SERIAL_PORTS];
165 /* parallel ports */
167 #define MAX_PARALLEL_PORTS 3
169 extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
171 void do_usb_add(Monitor *mon, const QDict *qdict);
172 void do_usb_del(Monitor *mon, const QDict *qdict);
173 void usb_info(Monitor *mon);
175 void rtc_change_mon_event(struct tm *tm);
177 void register_devices(void);
179 void add_boot_device_path(int32_t bootindex, DeviceState *dev,
180 const char *suffix);
181 char *get_boot_devices_list(uint32_t *size);
182 #endif