blob: 3fef78df8833788612919adf31659abd17dfc18a [file] [log] [blame]
pbrook87ecb682007-11-17 17:14:51 +00001#ifndef SYSEMU_H
2#define SYSEMU_H
3/* Misc. things related to the system emulator. */
4
aliguori376253e2009-03-05 23:01:23 +00005#include "qemu-common.h"
Gerd Hoffmann62c58022009-07-22 16:43:00 +02006#include "qemu-option.h"
Blue Swirl72cf2d42009-09-12 07:36:22 +00007#include "qemu-queue.h"
Jan Kiszka68752042009-09-15 13:36:04 +02008#include "qemu-timer.h"
Luiz Capitulinod54908a2009-08-28 15:27:13 -03009#include "qdict.h"
Luiz Capitulino8204a912009-11-18 23:05:31 -020010#include "qerror.h"
aliguori376253e2009-03-05 23:01:23 +000011
aliguori49dc7682009-03-08 16:26:59 +000012#ifdef _WIN32
13#include <windows.h>
14#endif
15
pbrook87ecb682007-11-17 17:14:51 +000016/* vl.c */
17extern const char *bios_name;
Paul Brook5cea8592009-05-30 00:52:44 +010018
19#define QEMU_FILE_TYPE_BIOS 0
20#define QEMU_FILE_TYPE_KEYMAP 1
21char *qemu_find_file(int type, const char *name);
pbrook87ecb682007-11-17 17:14:51 +000022
23extern int vm_running;
24extern const char *qemu_name;
blueswir18fcb1b92008-09-18 18:29:08 +000025extern uint8_t qemu_uuid[];
aliguoric4be29f2009-04-17 18:58:14 +000026int qemu_uuid_parse(const char *str, uint8_t *uuid);
blueswir18fcb1b92008-09-18 18:29:08 +000027#define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx"
pbrook87ecb682007-11-17 17:14:51 +000028
29typedef struct vm_change_state_entry VMChangeStateEntry;
aliguori9781e042009-01-22 17:15:29 +000030typedef void VMChangeStateHandler(void *opaque, int running, int reason);
pbrook87ecb682007-11-17 17:14:51 +000031
32VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
33 void *opaque);
34void qemu_del_vm_change_state_handler(VMChangeStateEntry *e);
35
pbrook87ecb682007-11-17 17:14:51 +000036void vm_start(void);
37void vm_stop(int reason);
38
Glauber Costa9f9e28c2009-05-21 17:38:01 -040039uint64_t ram_bytes_remaining(void);
40uint64_t ram_bytes_transferred(void);
41uint64_t ram_bytes_total(void);
42
pbrook87ecb682007-11-17 17:14:51 +000043int64_t cpu_get_ticks(void);
44void cpu_enable_ticks(void);
45void cpu_disable_ticks(void);
46
47void qemu_system_reset_request(void);
48void qemu_system_shutdown_request(void);
49void qemu_system_powerdown_request(void);
aurel32cf7a2fe2008-03-18 06:53:05 +000050int qemu_shutdown_requested(void);
51int qemu_reset_requested(void);
52int qemu_powerdown_requested(void);
Blue Swirld9c32312009-08-09 08:42:19 +000053extern qemu_irq qemu_system_powerdown;
aurel32cf7a2fe2008-03-18 06:53:05 +000054void qemu_system_reset(void);
pbrook87ecb682007-11-17 17:14:51 +000055
Luiz Capitulinod54908a2009-08-28 15:27:13 -030056void do_savevm(Monitor *mon, const QDict *qdict);
Markus Armbruster03cd4652010-02-17 16:24:10 +010057int load_vmstate(const char *name);
Luiz Capitulinod54908a2009-08-28 15:27:13 -030058void do_delvm(Monitor *mon, const QDict *qdict);
aliguori376253e2009-03-05 23:01:23 +000059void do_info_snapshots(Monitor *mon);
pbrook87ecb682007-11-17 17:14:51 +000060
Jan Kiszkaea375f92010-03-01 19:10:30 +010061void cpu_synchronize_all_states(void);
62void cpu_synchronize_all_post_reset(void);
63void cpu_synchronize_all_post_init(void);
64
aliguori210f41b2008-10-13 03:13:12 +000065void qemu_announce_self(void);
66
pbrook87ecb682007-11-17 17:14:51 +000067void main_loop_wait(int timeout);
68
Jan Kiszkaf327aa02009-11-30 18:21:21 +010069int 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);
aliguori9366f412008-10-06 14:53:52 +000074int qemu_loadvm_state(QEMUFile *f);
75
Gerd Hoffmannac7531e2009-08-14 10:36:06 +020076void qemu_errors_to_file(FILE *fp);
77void qemu_errors_to_mon(Monitor *mon);
78void qemu_errors_to_previous(void);
79void qemu_error(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
Luiz Capitulino8204a912009-11-18 23:05:31 -020080void qemu_error_internal(const char *file, int linenr, const char *func,
81 const char *fmt, ...)
82 __attribute__ ((format(printf, 4, 5)));
83
84#define qemu_error_new(fmt, ...) \
85 qemu_error_internal(__FILE__, __LINE__, __func__, fmt, ## __VA_ARGS__)
Gerd Hoffmannac7531e2009-08-14 10:36:06 +020086
aliguori56f3a5d2008-10-31 18:07:17 +000087#ifdef _WIN32
pbrook87ecb682007-11-17 17:14:51 +000088/* Polling handling */
89
90/* return TRUE if no sleep should be done afterwards */
91typedef int PollingFunc(void *opaque);
92
93int qemu_add_polling_cb(PollingFunc *func, void *opaque);
94void qemu_del_polling_cb(PollingFunc *func, void *opaque);
95
pbrook87ecb682007-11-17 17:14:51 +000096/* Wait objects handling */
97typedef void WaitObjectFunc(void *opaque);
98
99int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
100void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
101#endif
102
pbrook87ecb682007-11-17 17:14:51 +0000103/* SLIRP */
aliguori376253e2009-03-05 23:01:23 +0000104void do_info_slirp(Monitor *mon);
pbrook87ecb682007-11-17 17:14:51 +0000105
Anthony Liguori993fbfd2009-05-21 16:54:00 -0500106typedef enum DisplayType
107{
108 DT_DEFAULT,
109 DT_CURSES,
110 DT_SDL,
111 DT_VNC,
112 DT_NOGRAPHIC,
113} DisplayType;
114
Paolo Bonzinid399f672009-07-27 23:17:51 +0200115extern int autostart;
pbrook87ecb682007-11-17 17:14:51 +0000116extern int bios_size;
Zachary Amsden86176752009-07-30 00:15:02 -1000117
118typedef enum {
119 VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB
120} VGAInterfaceType;
121
122extern int vga_interface_type;
123#define cirrus_vga_enabled (vga_interface_type == VGA_CIRRUS)
124#define std_vga_enabled (vga_interface_type == VGA_STD)
125#define xenfb_enabled (vga_interface_type == VGA_XENFB)
126#define vmsvga_enabled (vga_interface_type == VGA_VMWARE)
127
pbrook87ecb682007-11-17 17:14:51 +0000128extern int graphic_width;
129extern int graphic_height;
130extern int graphic_depth;
Jes Sorensen6b35e7b2009-08-06 16:25:50 +0200131extern uint8_t irq0override;
Anthony Liguori993fbfd2009-05-21 16:54:00 -0500132extern DisplayType display_type;
pbrook87ecb682007-11-17 17:14:51 +0000133extern const char *keyboard_layout;
134extern int win2k_install_hack;
aliguori73822ec2009-01-15 20:11:34 +0000135extern int rtc_td_hack;
pbrook87ecb682007-11-17 17:14:51 +0000136extern int alt_grab;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -0500137extern int ctrl_grab;
pbrook87ecb682007-11-17 17:14:51 +0000138extern int usb_enabled;
139extern int smp_cpus;
Jes Sorensen6be68d72009-07-23 17:03:42 +0200140extern int max_cpus;
pbrook87ecb682007-11-17 17:14:51 +0000141extern int cursor_hide;
142extern int graphic_rotate;
143extern int no_quit;
144extern int semihosting_enabled;
pbrook87ecb682007-11-17 17:14:51 +0000145extern int old_param;
Jan Kiszka95387492009-07-02 00:19:02 +0200146extern int boot_menu;
Jan Kiszka68752042009-09-15 13:36:04 +0200147extern QEMUClock *rtc_clock;
pbrook87ecb682007-11-17 17:14:51 +0000148
aliguori268a3622009-04-21 22:30:27 +0000149#define MAX_NODES 64
150extern int nb_numa_nodes;
151extern uint64_t node_mem[MAX_NODES];
Blue Swirl075cd322009-09-13 08:32:39 +0000152extern uint64_t node_cpumask[MAX_NODES];
aliguori268a3622009-04-21 22:30:27 +0000153
pbrook87ecb682007-11-17 17:14:51 +0000154#define MAX_OPTION_ROMS 16
155extern const char *option_rom[MAX_OPTION_ROMS];
156extern int nb_option_roms;
157
Paul Brook1ad21342009-05-19 16:17:58 +0100158#ifdef NEED_CPU_H
blueswir195efd112008-12-24 20:26:14 +0000159#if defined(TARGET_SPARC) || defined(TARGET_PPC)
pbrook87ecb682007-11-17 17:14:51 +0000160#define MAX_PROM_ENVS 128
161extern const char *prom_envs[MAX_PROM_ENVS];
162extern unsigned int nb_prom_envs;
163#endif
Paul Brook1ad21342009-05-19 16:17:58 +0100164#endif
pbrook87ecb682007-11-17 17:14:51 +0000165
thse4bcb142007-12-02 04:51:10 +0000166typedef enum {
Gerd Hoffmanna8659e92009-07-31 12:25:39 +0200167 IF_NONE,
Paul Brookaae94602009-05-14 22:35:06 +0100168 IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN,
169 IF_COUNT
thse4bcb142007-12-02 04:51:10 +0000170} BlockInterfaceType;
pbrook87ecb682007-11-17 17:14:51 +0000171
aliguori428c5702009-01-21 18:59:04 +0000172typedef enum {
173 BLOCK_ERR_REPORT, BLOCK_ERR_IGNORE, BLOCK_ERR_STOP_ENOSPC,
174 BLOCK_ERR_STOP_ANY
175} BlockInterfaceErrorAction;
176
john cooperbf011292009-06-22 14:26:51 -0400177#define BLOCK_SERIAL_STRLEN 20
178
thse4bcb142007-12-02 04:51:10 +0000179typedef struct DriveInfo {
180 BlockDriverState *bdrv;
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +0200181 char *id;
Markus Armbrusterc2cc47a2009-06-18 15:14:10 +0200182 const char *devaddr;
thsf60d39b2007-12-17 03:55:57 +0000183 BlockInterfaceType type;
thse4bcb142007-12-02 04:51:10 +0000184 int bus;
185 int unit;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200186 QemuOpts *opts;
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100187 BlockInterfaceErrorAction on_read_error;
Kevin Wolff7850092009-11-27 13:25:36 +0100188 BlockInterfaceErrorAction on_write_error;
john cooperbf011292009-06-22 14:26:51 -0400189 char serial[BLOCK_SERIAL_STRLEN + 1];
Blue Swirl72cf2d42009-09-12 07:36:22 +0000190 QTAILQ_ENTRY(DriveInfo) next;
thse4bcb142007-12-02 04:51:10 +0000191} DriveInfo;
pbrook87ecb682007-11-17 17:14:51 +0000192
thse4bcb142007-12-02 04:51:10 +0000193#define MAX_IDE_DEVS 2
194#define MAX_SCSI_DEVS 7
195#define MAX_DRIVES 32
196
Blue Swirl72cf2d42009-09-12 07:36:22 +0000197extern QTAILQ_HEAD(drivelist, DriveInfo) drives;
198extern QTAILQ_HEAD(driveoptlist, DriveOpt) driveopts;
thse4bcb142007-12-02 04:51:10 +0000199
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200200extern DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit);
Gerd Hoffmann2e810b32009-07-31 12:25:38 +0200201extern DriveInfo *drive_get_by_id(const char *id);
thsf60d39b2007-12-17 03:55:57 +0000202extern int drive_get_max_bus(BlockInterfaceType type);
Gerd Hoffmann56a14932009-09-25 21:42:46 +0200203extern void drive_uninit(DriveInfo *dinfo);
aliguorifa879c62009-01-07 17:32:33 +0000204extern const char *drive_get_serial(BlockDriverState *bdrv);
Kevin Wolff7850092009-11-27 13:25:36 +0100205
206extern BlockInterfaceErrorAction drive_get_on_error(
207 BlockDriverState *bdrv, int is_read);
pbrook87ecb682007-11-17 17:14:51 +0000208
Paul Brookaae94602009-05-14 22:35:06 +0100209BlockDriverState *qdev_init_bdrv(DeviceState *dev, BlockInterfaceType type);
210
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200211extern QemuOpts *drive_add(const char *file, const char *fmt, ...);
212extern DriveInfo *drive_init(QemuOpts *arg, void *machine, int *fatal_error);
aliguori4d73cd32009-02-11 15:20:46 +0000213
aliguori6f338c32009-02-11 15:21:54 +0000214/* device-hotplug */
215
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200216DriveInfo *add_init_drive(const char *opts);
aliguori6f338c32009-02-11 15:21:54 +0000217
218/* pci-hotplug */
Luiz Capitulino7a344f72009-12-10 17:16:09 -0200219void pci_device_hot_add_print(Monitor *mon, const QObject *data);
Luiz Capitulino395560c2010-02-10 23:49:55 -0200220int pci_device_hot_add(Monitor *mon, const QDict *qdict, QObject **ret_data);
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300221void drive_hot_add(Monitor *mon, const QDict *qdict);
Luiz Capitulino053801b2010-02-10 23:49:56 -0200222int pci_device_hot_remove(Monitor *mon, const char *pci_addr);
223int do_pci_device_hot_remove(Monitor *mon, const QDict *qdict,
224 QObject **ret_data);
aliguori6f338c32009-02-11 15:21:54 +0000225
pbrook87ecb682007-11-17 17:14:51 +0000226/* serial ports */
227
228#define MAX_SERIAL_PORTS 4
229
230extern CharDriverState *serial_hds[MAX_SERIAL_PORTS];
231
232/* parallel ports */
233
234#define MAX_PARALLEL_PORTS 3
235
236extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
237
aliguori0e82f342008-10-31 18:44:40 +0000238#define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
239
pbrook87ecb682007-11-17 17:14:51 +0000240#ifdef HAS_AUDIO
241struct soundhw {
242 const char *name;
243 const char *descr;
244 int enabled;
245 int isa;
246 union {
Paul Brook22d83b12009-05-12 12:33:04 +0100247 int (*init_isa) (qemu_irq *pic);
248 int (*init_pci) (PCIBus *bus);
pbrook87ecb682007-11-17 17:14:51 +0000249 } init;
250};
251
252extern struct soundhw soundhw[];
253#endif
254
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300255void do_usb_add(Monitor *mon, const QDict *qdict);
256void do_usb_del(Monitor *mon, const QDict *qdict);
aliguori376253e2009-03-05 23:01:23 +0000257void usb_info(Monitor *mon);
pbrook87ecb682007-11-17 17:14:51 +0000258
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300259void rtc_change_mon_event(struct tm *tm);
260
Paul Brookaae94602009-05-14 22:35:06 +0100261void register_devices(void);
262
pbrook87ecb682007-11-17 17:14:51 +0000263#endif