]> git.proxmox.com Git - qemu.git/blame_incremental - sysemu.h
target-arm: Signal Underflow when denormal flushed to zero on output
[qemu.git] / sysemu.h
... / ...
CommitLineData
1#ifndef SYSEMU_H
2#define SYSEMU_H
3/* Misc. things related to the system emulator. */
4
5#include "qemu-common.h"
6#include "qemu-option.h"
7#include "qemu-queue.h"
8#include "qemu-timer.h"
9#include "notify.h"
10
11/* vl.c */
12extern const char *bios_name;
13
14extern int vm_running;
15extern const char *qemu_name;
16extern uint8_t qemu_uuid[];
17int 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"
19
20typedef struct vm_change_state_entry VMChangeStateEntry;
21typedef void VMChangeStateHandler(void *opaque, int running, int reason);
22
23VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
24 void *opaque);
25void qemu_del_vm_change_state_handler(VMChangeStateEntry *e);
26
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
36
37void vm_start(void);
38void vm_stop(int reason);
39
40void qemu_system_reset_request(void);
41void qemu_system_shutdown_request(void);
42void qemu_system_powerdown_request(void);
43void qemu_system_debug_request(void);
44void qemu_system_vmstop_request(int reason);
45int qemu_shutdown_requested_get(void);
46int qemu_reset_requested_get(void);
47int qemu_shutdown_requested(void);
48int qemu_reset_requested(void);
49int qemu_powerdown_requested(void);
50void qemu_system_killed(int signal, pid_t pid);
51void qemu_kill_report(void);
52extern qemu_irq qemu_system_powerdown;
53void qemu_system_reset(void);
54
55void qemu_add_exit_notifier(Notifier *notify);
56void qemu_remove_exit_notifier(Notifier *notify);
57
58void qemu_add_machine_init_done_notifier(Notifier *notify);
59
60void do_savevm(Monitor *mon, const QDict *qdict);
61int load_vmstate(const char *name);
62void do_delvm(Monitor *mon, const QDict *qdict);
63void do_info_snapshots(Monitor *mon);
64
65void qemu_announce_self(void);
66
67void main_loop_wait(int nonblocking);
68
69bool qemu_savevm_state_blocked(Monitor *mon);
70int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable,
71 int shared);
72int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f);
73int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f);
74void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f);
75int qemu_loadvm_state(QEMUFile *f);
76
77/* SLIRP */
78void do_info_slirp(Monitor *mon);
79
80typedef enum DisplayType
81{
82 DT_DEFAULT,
83 DT_CURSES,
84 DT_SDL,
85 DT_NOGRAPHIC,
86 DT_NONE,
87} DisplayType;
88
89extern int autostart;
90extern int bios_size;
91
92typedef enum {
93 VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB, VGA_QXL,
94} VGAInterfaceType;
95
96extern int vga_interface_type;
97#define cirrus_vga_enabled (vga_interface_type == VGA_CIRRUS)
98#define std_vga_enabled (vga_interface_type == VGA_STD)
99#define xenfb_enabled (vga_interface_type == VGA_XENFB)
100#define vmsvga_enabled (vga_interface_type == VGA_VMWARE)
101#define qxl_enabled (vga_interface_type == VGA_QXL)
102
103extern int graphic_width;
104extern int graphic_height;
105extern int graphic_depth;
106extern uint8_t irq0override;
107extern DisplayType display_type;
108extern const char *keyboard_layout;
109extern int win2k_install_hack;
110extern int rtc_td_hack;
111extern int alt_grab;
112extern int ctrl_grab;
113extern int usb_enabled;
114extern int smp_cpus;
115extern int max_cpus;
116extern int cursor_hide;
117extern int graphic_rotate;
118extern int no_quit;
119extern int no_shutdown;
120extern int semihosting_enabled;
121extern int old_param;
122extern int boot_menu;
123extern QEMUClock *rtc_clock;
124
125#define MAX_NODES 64
126extern int nb_numa_nodes;
127extern uint64_t node_mem[MAX_NODES];
128extern uint64_t node_cpumask[MAX_NODES];
129
130#define MAX_OPTION_ROMS 16
131typedef struct QEMUOptionRom {
132 const char *name;
133 int32_t bootindex;
134} QEMUOptionRom;
135extern QEMUOptionRom option_rom[MAX_OPTION_ROMS];
136extern int nb_option_roms;
137
138#define MAX_PROM_ENVS 128
139extern const char *prom_envs[MAX_PROM_ENVS];
140extern unsigned int nb_prom_envs;
141
142/* pci-hotplug */
143void pci_device_hot_add(Monitor *mon, const QDict *qdict);
144void drive_hot_add(Monitor *mon, const QDict *qdict);
145void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict);
146
147/* pcie aer error injection */
148void pcie_aer_inject_error_print(Monitor *mon, const QObject *data);
149int do_pcie_aer_inejct_error(Monitor *mon,
150 const QDict *qdict, QObject **ret_data);
151
152/* serial ports */
153
154#define MAX_SERIAL_PORTS 4
155
156extern CharDriverState *serial_hds[MAX_SERIAL_PORTS];
157
158/* parallel ports */
159
160#define MAX_PARALLEL_PORTS 3
161
162extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
163
164void do_usb_add(Monitor *mon, const QDict *qdict);
165void do_usb_del(Monitor *mon, const QDict *qdict);
166void usb_info(Monitor *mon);
167
168void rtc_change_mon_event(struct tm *tm);
169
170void register_devices(void);
171
172void add_boot_device_path(int32_t bootindex, DeviceState *dev,
173 const char *suffix);
174char *get_boot_devices_list(uint32_t *size);
175#endif