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