]> Git Repo - qemu.git/blame_incremental - sysemu.h
Fix typos in comments (neccessary -> necessary)
[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(void);
46int qemu_reset_requested(void);
47int qemu_powerdown_requested(void);
48void qemu_system_killed(int signal, pid_t pid);
49void qemu_kill_report(void);
50extern qemu_irq qemu_system_powerdown;
51void qemu_system_reset(void);
52
53void qemu_add_exit_notifier(Notifier *notify);
54void qemu_remove_exit_notifier(Notifier *notify);
55
56void qemu_add_machine_init_done_notifier(Notifier *notify);
57
58void do_savevm(Monitor *mon, const QDict *qdict);
59int load_vmstate(const char *name);
60void do_delvm(Monitor *mon, const QDict *qdict);
61void do_info_snapshots(Monitor *mon);
62
63void qemu_announce_self(void);
64
65void main_loop_wait(int nonblocking);
66
67bool qemu_savevm_state_blocked(Monitor *mon);
68int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable,
69 int shared);
70int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f);
71int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f);
72void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f);
73int qemu_loadvm_state(QEMUFile *f);
74
75/* SLIRP */
76void do_info_slirp(Monitor *mon);
77
78typedef enum DisplayType
79{
80 DT_DEFAULT,
81 DT_CURSES,
82 DT_SDL,
83 DT_NOGRAPHIC,
84 DT_NONE,
85} DisplayType;
86
87extern int autostart;
88extern int bios_size;
89
90typedef enum {
91 VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB, VGA_QXL,
92} VGAInterfaceType;
93
94extern int vga_interface_type;
95#define cirrus_vga_enabled (vga_interface_type == VGA_CIRRUS)
96#define std_vga_enabled (vga_interface_type == VGA_STD)
97#define xenfb_enabled (vga_interface_type == VGA_XENFB)
98#define vmsvga_enabled (vga_interface_type == VGA_VMWARE)
99#define qxl_enabled (vga_interface_type == VGA_QXL)
100
101extern int graphic_width;
102extern int graphic_height;
103extern int graphic_depth;
104extern uint8_t irq0override;
105extern DisplayType display_type;
106extern const char *keyboard_layout;
107extern int win2k_install_hack;
108extern int rtc_td_hack;
109extern int alt_grab;
110extern int ctrl_grab;
111extern int usb_enabled;
112extern int smp_cpus;
113extern int max_cpus;
114extern int cursor_hide;
115extern int graphic_rotate;
116extern int no_quit;
117extern int no_shutdown;
118extern int semihosting_enabled;
119extern int old_param;
120extern int boot_menu;
121extern QEMUClock *rtc_clock;
122
123#define MAX_NODES 64
124extern int nb_numa_nodes;
125extern uint64_t node_mem[MAX_NODES];
126extern uint64_t node_cpumask[MAX_NODES];
127
128#define MAX_OPTION_ROMS 16
129typedef struct QEMUOptionRom {
130 const char *name;
131 int32_t bootindex;
132} QEMUOptionRom;
133extern QEMUOptionRom option_rom[MAX_OPTION_ROMS];
134extern int nb_option_roms;
135
136#define MAX_PROM_ENVS 128
137extern const char *prom_envs[MAX_PROM_ENVS];
138extern unsigned int nb_prom_envs;
139
140/* pci-hotplug */
141void pci_device_hot_add(Monitor *mon, const QDict *qdict);
142void drive_hot_add(Monitor *mon, const QDict *qdict);
143void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict);
144
145/* pcie aer error injection */
146void pcie_aer_inject_error_print(Monitor *mon, const QObject *data);
147int do_pcie_aer_inejct_error(Monitor *mon,
148 const QDict *qdict, QObject **ret_data);
149
150/* serial ports */
151
152#define MAX_SERIAL_PORTS 4
153
154extern CharDriverState *serial_hds[MAX_SERIAL_PORTS];
155
156/* parallel ports */
157
158#define MAX_PARALLEL_PORTS 3
159
160extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
161
162void do_usb_add(Monitor *mon, const QDict *qdict);
163void do_usb_del(Monitor *mon, const QDict *qdict);
164void usb_info(Monitor *mon);
165
166void rtc_change_mon_event(struct tm *tm);
167
168void register_devices(void);
169
170void add_boot_device_path(int32_t bootindex, DeviceState *dev,
171 const char *suffix);
172char *get_boot_devices_list(uint32_t *size);
173#endif
This page took 0.024102 seconds and 4 git commands to generate.