2007-11-17 18:14:51 +01:00
|
|
|
#ifndef SYSEMU_H
|
|
|
|
#define SYSEMU_H
|
|
|
|
/* Misc. things related to the system emulator. */
|
|
|
|
|
2009-03-06 00:01:23 +01:00
|
|
|
#include "qemu-common.h"
|
2009-07-22 16:43:00 +02:00
|
|
|
#include "qemu-option.h"
|
2009-09-12 09:36:22 +02:00
|
|
|
#include "qemu-queue.h"
|
2009-09-15 13:36:04 +02:00
|
|
|
#include "qemu-timer.h"
|
2010-06-04 14:08:07 +02:00
|
|
|
#include "notify.h"
|
2009-03-06 00:01:23 +01:00
|
|
|
|
2009-03-08 17:26:59 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
2010-06-10 11:42:16 +02:00
|
|
|
#include "qemu-os-win32.h"
|
2009-03-08 17:26:59 +01:00
|
|
|
#endif
|
|
|
|
|
2010-06-10 11:42:18 +02:00
|
|
|
#ifdef CONFIG_POSIX
|
|
|
|
#include "qemu-os-posix.h"
|
|
|
|
#endif
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
/* vl.c */
|
|
|
|
extern const char *bios_name;
|
2009-05-30 01:52:44 +02:00
|
|
|
|
|
|
|
#define QEMU_FILE_TYPE_BIOS 0
|
|
|
|
#define QEMU_FILE_TYPE_KEYMAP 1
|
|
|
|
char *qemu_find_file(int type, const char *name);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
|
|
|
extern int vm_running;
|
|
|
|
extern const char *qemu_name;
|
2008-09-18 20:29:08 +02:00
|
|
|
extern uint8_t qemu_uuid[];
|
2009-04-17 20:58:14 +02:00
|
|
|
int qemu_uuid_parse(const char *str, uint8_t *uuid);
|
2008-09-18 20:29:08 +02:00
|
|
|
#define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx"
|
2007-11-17 18:14:51 +01:00
|
|
|
|
|
|
|
typedef struct vm_change_state_entry VMChangeStateEntry;
|
2009-01-22 18:15:29 +01:00
|
|
|
typedef void VMChangeStateHandler(void *opaque, int running, int reason);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
|
|
|
VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
|
|
|
|
void *opaque);
|
|
|
|
void qemu_del_vm_change_state_handler(VMChangeStateEntry *e);
|
|
|
|
|
|
|
|
void vm_start(void);
|
|
|
|
void vm_stop(int reason);
|
|
|
|
|
2009-05-21 23:38:01 +02:00
|
|
|
uint64_t ram_bytes_remaining(void);
|
|
|
|
uint64_t ram_bytes_transferred(void);
|
|
|
|
uint64_t ram_bytes_total(void);
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
int64_t cpu_get_ticks(void);
|
|
|
|
void cpu_enable_ticks(void);
|
|
|
|
void cpu_disable_ticks(void);
|
|
|
|
|
|
|
|
void qemu_system_reset_request(void);
|
|
|
|
void qemu_system_shutdown_request(void);
|
|
|
|
void qemu_system_powerdown_request(void);
|
2008-03-18 07:53:05 +01:00
|
|
|
int qemu_shutdown_requested(void);
|
|
|
|
int qemu_reset_requested(void);
|
|
|
|
int qemu_powerdown_requested(void);
|
2009-08-09 10:42:19 +02:00
|
|
|
extern qemu_irq qemu_system_powerdown;
|
2008-03-18 07:53:05 +01:00
|
|
|
void qemu_system_reset(void);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2010-06-04 14:08:07 +02:00
|
|
|
void qemu_add_exit_notifier(Notifier *notify);
|
|
|
|
void qemu_remove_exit_notifier(Notifier *notify);
|
|
|
|
|
2009-08-28 20:27:13 +02:00
|
|
|
void do_savevm(Monitor *mon, const QDict *qdict);
|
2010-02-17 16:24:10 +01:00
|
|
|
int load_vmstate(const char *name);
|
2009-08-28 20:27:13 +02:00
|
|
|
void do_delvm(Monitor *mon, const QDict *qdict);
|
2009-03-06 00:01:23 +01:00
|
|
|
void do_info_snapshots(Monitor *mon);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2010-03-01 19:10:30 +01:00
|
|
|
void cpu_synchronize_all_states(void);
|
|
|
|
void cpu_synchronize_all_post_reset(void);
|
|
|
|
void cpu_synchronize_all_post_init(void);
|
|
|
|
|
2008-10-13 05:13:12 +02:00
|
|
|
void qemu_announce_self(void);
|
|
|
|
|
2010-03-10 11:38:54 +01:00
|
|
|
void main_loop_wait(int nonblocking);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2009-11-30 18:21:21 +01:00
|
|
|
int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable,
|
|
|
|
int shared);
|
|
|
|
int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f);
|
|
|
|
int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f);
|
|
|
|
void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f);
|
2008-10-06 16:53:52 +02:00
|
|
|
int qemu_loadvm_state(QEMUFile *f);
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
/* SLIRP */
|
2009-03-06 00:01:23 +01:00
|
|
|
void do_info_slirp(Monitor *mon);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2010-06-10 11:42:23 +02:00
|
|
|
/* OS specific functions */
|
2010-06-10 11:42:21 +02:00
|
|
|
void os_setup_early_signal_handling(void);
|
2010-06-10 11:42:23 +02:00
|
|
|
char *os_find_datadir(const char *argv0);
|
2010-06-10 11:42:25 +02:00
|
|
|
void os_parse_cmd_args(int index, const char *optarg);
|
2010-06-10 11:42:28 +02:00
|
|
|
void os_pidfile_error(void);
|
2010-06-10 11:42:20 +02:00
|
|
|
|
2009-05-21 23:54:00 +02:00
|
|
|
typedef enum DisplayType
|
|
|
|
{
|
|
|
|
DT_DEFAULT,
|
|
|
|
DT_CURSES,
|
|
|
|
DT_SDL,
|
|
|
|
DT_VNC,
|
|
|
|
DT_NOGRAPHIC,
|
|
|
|
} DisplayType;
|
|
|
|
|
2009-07-27 23:17:51 +02:00
|
|
|
extern int autostart;
|
2010-07-27 12:19:19 +02:00
|
|
|
extern int incoming_expected;
|
2007-11-17 18:14:51 +01:00
|
|
|
extern int bios_size;
|
2009-07-30 12:15:02 +02:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB
|
|
|
|
} VGAInterfaceType;
|
|
|
|
|
|
|
|
extern int vga_interface_type;
|
|
|
|
#define cirrus_vga_enabled (vga_interface_type == VGA_CIRRUS)
|
|
|
|
#define std_vga_enabled (vga_interface_type == VGA_STD)
|
|
|
|
#define xenfb_enabled (vga_interface_type == VGA_XENFB)
|
|
|
|
#define vmsvga_enabled (vga_interface_type == VGA_VMWARE)
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
extern int graphic_width;
|
|
|
|
extern int graphic_height;
|
|
|
|
extern int graphic_depth;
|
2009-08-06 16:25:50 +02:00
|
|
|
extern uint8_t irq0override;
|
2009-05-21 23:54:00 +02:00
|
|
|
extern DisplayType display_type;
|
2007-11-17 18:14:51 +01:00
|
|
|
extern const char *keyboard_layout;
|
|
|
|
extern int win2k_install_hack;
|
2009-01-15 21:11:34 +01:00
|
|
|
extern int rtc_td_hack;
|
2007-11-17 18:14:51 +01:00
|
|
|
extern int alt_grab;
|
2009-09-17 22:48:04 +02:00
|
|
|
extern int ctrl_grab;
|
2007-11-17 18:14:51 +01:00
|
|
|
extern int usb_enabled;
|
|
|
|
extern int smp_cpus;
|
2009-07-23 17:03:42 +02:00
|
|
|
extern int max_cpus;
|
2007-11-17 18:14:51 +01:00
|
|
|
extern int cursor_hide;
|
|
|
|
extern int graphic_rotate;
|
|
|
|
extern int no_quit;
|
2010-05-11 23:07:04 +02:00
|
|
|
extern int no_shutdown;
|
2007-11-17 18:14:51 +01:00
|
|
|
extern int semihosting_enabled;
|
|
|
|
extern int old_param;
|
2009-07-02 00:19:02 +02:00
|
|
|
extern int boot_menu;
|
2009-09-15 13:36:04 +02:00
|
|
|
extern QEMUClock *rtc_clock;
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2009-04-22 00:30:27 +02:00
|
|
|
#define MAX_NODES 64
|
|
|
|
extern int nb_numa_nodes;
|
|
|
|
extern uint64_t node_mem[MAX_NODES];
|
2009-09-13 10:32:39 +02:00
|
|
|
extern uint64_t node_cpumask[MAX_NODES];
|
2009-04-22 00:30:27 +02:00
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
#define MAX_OPTION_ROMS 16
|
|
|
|
extern const char *option_rom[MAX_OPTION_ROMS];
|
|
|
|
extern int nb_option_roms;
|
|
|
|
|
|
|
|
#define MAX_PROM_ENVS 128
|
|
|
|
extern const char *prom_envs[MAX_PROM_ENVS];
|
|
|
|
extern unsigned int nb_prom_envs;
|
|
|
|
|
2009-02-11 16:21:54 +01:00
|
|
|
/* pci-hotplug */
|
2010-05-12 10:53:00 +02:00
|
|
|
void pci_device_hot_add(Monitor *mon, const QDict *qdict);
|
2009-08-28 20:27:14 +02:00
|
|
|
void drive_hot_add(Monitor *mon, const QDict *qdict);
|
2010-05-12 10:53:01 +02:00
|
|
|
void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict);
|
2009-02-11 16:21:54 +01:00
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
/* serial ports */
|
|
|
|
|
|
|
|
#define MAX_SERIAL_PORTS 4
|
|
|
|
|
|
|
|
extern CharDriverState *serial_hds[MAX_SERIAL_PORTS];
|
|
|
|
|
|
|
|
/* parallel ports */
|
|
|
|
|
|
|
|
#define MAX_PARALLEL_PORTS 3
|
|
|
|
|
|
|
|
extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
|
|
|
|
|
2008-10-31 19:44:40 +01:00
|
|
|
#define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
#ifdef HAS_AUDIO
|
|
|
|
struct soundhw {
|
|
|
|
const char *name;
|
|
|
|
const char *descr;
|
|
|
|
int enabled;
|
|
|
|
int isa;
|
|
|
|
union {
|
2009-05-12 13:33:04 +02:00
|
|
|
int (*init_isa) (qemu_irq *pic);
|
|
|
|
int (*init_pci) (PCIBus *bus);
|
2007-11-17 18:14:51 +01:00
|
|
|
} init;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct soundhw soundhw[];
|
|
|
|
#endif
|
|
|
|
|
2009-08-28 20:27:13 +02:00
|
|
|
void do_usb_add(Monitor *mon, const QDict *qdict);
|
|
|
|
void do_usb_del(Monitor *mon, const QDict *qdict);
|
2009-03-06 00:01:23 +01:00
|
|
|
void usb_info(Monitor *mon);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2010-02-25 16:11:44 +01:00
|
|
|
void rtc_change_mon_event(struct tm *tm);
|
|
|
|
|
2009-05-14 23:35:06 +02:00
|
|
|
void register_devices(void);
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
#endif
|