]> git.proxmox.com Git - mirror_qemu.git/blame - sysemu.h
Fix some issues with QEMUFile
[mirror_qemu.git] / sysemu.h
CommitLineData
87ecb68b
PB
1#ifndef SYSEMU_H
2#define SYSEMU_H
3/* Misc. things related to the system emulator. */
4
5/* vl.c */
6extern const char *bios_name;
7extern const char *bios_dir;
8
9extern int vm_running;
10extern const char *qemu_name;
8fcb1b90
BS
11extern uint8_t qemu_uuid[];
12#define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx"
87ecb68b
PB
13
14typedef struct vm_change_state_entry VMChangeStateEntry;
15typedef void VMChangeStateHandler(void *opaque, int running);
16typedef void VMStopHandler(void *opaque, int reason);
17
18VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
19 void *opaque);
20void qemu_del_vm_change_state_handler(VMChangeStateEntry *e);
21
22int qemu_add_vm_stop_handler(VMStopHandler *cb, void *opaque);
23void qemu_del_vm_stop_handler(VMStopHandler *cb, void *opaque);
24
25void vm_start(void);
26void vm_stop(int reason);
27
28int64_t cpu_get_ticks(void);
29void cpu_enable_ticks(void);
30void cpu_disable_ticks(void);
31
32void qemu_system_reset_request(void);
33void qemu_system_shutdown_request(void);
34void qemu_system_powerdown_request(void);
cf7a2fe2
AJ
35int qemu_shutdown_requested(void);
36int qemu_reset_requested(void);
37int qemu_powerdown_requested(void);
38#if !defined(TARGET_SPARC) && !defined(TARGET_I386)
87ecb68b
PB
39// Please implement a power failure function to signal the OS
40#define qemu_system_powerdown() do{}while(0)
41#else
42void qemu_system_powerdown(void);
43#endif
cf7a2fe2 44void qemu_system_reset(void);
87ecb68b 45
87ecb68b
PB
46void do_savevm(const char *name);
47void do_loadvm(const char *name);
48void do_delvm(const char *name);
49void do_info_snapshots(void);
50
51void main_loop_wait(int timeout);
52
9366f418
AL
53int qemu_savevm_state_begin(QEMUFile *f);
54int qemu_savevm_state_iterate(QEMUFile *f);
55int qemu_savevm_state_complete(QEMUFile *f);
56int qemu_savevm_state(QEMUFile *f);
57int qemu_loadvm_state(QEMUFile *f);
58
87ecb68b
PB
59/* Polling handling */
60
61/* return TRUE if no sleep should be done afterwards */
62typedef int PollingFunc(void *opaque);
63
64int qemu_add_polling_cb(PollingFunc *func, void *opaque);
65void qemu_del_polling_cb(PollingFunc *func, void *opaque);
66
67#ifdef _WIN32
68/* Wait objects handling */
69typedef void WaitObjectFunc(void *opaque);
70
71int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
72void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
73#endif
74
75/* TAP win32 */
76int tap_win32_init(VLANState *vlan, const char *ifname);
77
78/* SLIRP */
79void do_info_slirp(void);
80
87ecb68b 81extern int bios_size;
87ecb68b
PB
82extern int cirrus_vga_enabled;
83extern int vmsvga_enabled;
84extern int graphic_width;
85extern int graphic_height;
86extern int graphic_depth;
2bfdab63 87extern int nographic;
87ecb68b
PB
88extern const char *keyboard_layout;
89extern int win2k_install_hack;
90extern int alt_grab;
91extern int usb_enabled;
92extern int smp_cpus;
93extern int cursor_hide;
94extern int graphic_rotate;
95extern int no_quit;
96extern int semihosting_enabled;
87ecb68b
PB
97extern int old_param;
98extern const char *bootp_filename;
99
100
101#ifdef USE_KQEMU
102extern int kqemu_allowed;
103#endif
104
105#define MAX_OPTION_ROMS 16
106extern const char *option_rom[MAX_OPTION_ROMS];
107extern int nb_option_roms;
108
109#ifdef TARGET_SPARC
110#define MAX_PROM_ENVS 128
111extern const char *prom_envs[MAX_PROM_ENVS];
112extern unsigned int nb_prom_envs;
113#endif
114
87ecb68b
PB
115#if defined (TARGET_PPC)
116#define BIOS_SIZE (1024 * 1024)
117#elif defined (TARGET_SPARC64)
118#define BIOS_SIZE ((512 + 32) * 1024)
119#elif defined(TARGET_MIPS)
120#define BIOS_SIZE (4 * 1024 * 1024)
121#endif
122
e4bcb14c
TS
123typedef enum {
124 IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD
125} BlockInterfaceType;
126
127typedef struct DriveInfo {
128 BlockDriverState *bdrv;
f60d39bc 129 BlockInterfaceType type;
e4bcb14c
TS
130 int bus;
131 int unit;
132} DriveInfo;
133
134#define MAX_IDE_DEVS 2
135#define MAX_SCSI_DEVS 7
136#define MAX_DRIVES 32
137
4d7a0880
BS
138extern int nb_drives;
139extern DriveInfo drives_table[MAX_DRIVES+1];
e4bcb14c 140
f60d39bc
TS
141extern int drive_get_index(BlockInterfaceType type, int bus, int unit);
142extern int drive_get_max_bus(BlockInterfaceType type);
87ecb68b
PB
143
144/* serial ports */
145
146#define MAX_SERIAL_PORTS 4
147
148extern CharDriverState *serial_hds[MAX_SERIAL_PORTS];
149
150/* parallel ports */
151
152#define MAX_PARALLEL_PORTS 3
153
154extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
155
156#ifdef NEED_CPU_H
157/* loader.c */
158int get_image_size(const char *filename);
293f78bc
BS
159int load_image(const char *filename, uint8_t *addr); /* deprecated */
160int load_image_targphys(const char *filename, target_phys_addr_t, int max_sz);
87ecb68b
PB
161int load_elf(const char *filename, int64_t virt_to_phys_addend,
162 uint64_t *pentry, uint64_t *lowaddr, uint64_t *highaddr);
293f78bc 163int load_aout(const char *filename, target_phys_addr_t addr, int max_sz);
87ecb68b 164int load_uboot(const char *filename, target_ulong *ep, int *is_linux);
293f78bc
BS
165
166int fread_targphys(target_phys_addr_t dst_addr, size_t nbytes, FILE *f);
167int fread_targphys_ok(target_phys_addr_t dst_addr, size_t nbytes, FILE *f);
168int read_targphys(int fd, target_phys_addr_t dst_addr, size_t nbytes);
169void pstrcpy_targphys(target_phys_addr_t dest, int buf_size,
170 const char *source);
87ecb68b
PB
171#endif
172
173#ifdef HAS_AUDIO
174struct soundhw {
175 const char *name;
176 const char *descr;
177 int enabled;
178 int isa;
179 union {
180 int (*init_isa) (AudioState *s, qemu_irq *pic);
181 int (*init_pci) (PCIBus *bus, AudioState *s);
182 } init;
183};
184
185extern struct soundhw soundhw[];
186#endif
187
188void do_usb_add(const char *devname);
189void do_usb_del(const char *devname);
190void usb_info(void);
191
192#endif