pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 1 | #ifndef SYSEMU_H |
| 2 | #define SYSEMU_H |
| 3 | /* Misc. things related to the system emulator. */ |
| 4 | |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 5 | #include "qemu-common.h" |
Gerd Hoffmann | 62c5802 | 2009-07-22 16:43:00 +0200 | [diff] [blame] | 6 | #include "qemu-option.h" |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 7 | #include "qemu-queue.h" |
Jan Kiszka | 6875204 | 2009-09-15 13:36:04 +0200 | [diff] [blame] | 8 | #include "qemu-timer.h" |
Gerd Hoffmann | fd42dee | 2010-06-04 14:08:07 +0200 | [diff] [blame] | 9 | #include "notify.h" |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 10 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 11 | /* vl.c */ |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 12 | |
| 13 | typedef enum { |
| 14 | RSTATE_NO_STATE, |
| 15 | RSTATE_DEBUG, /* qemu is running under gdb */ |
Luiz Capitulino | f5bbfba | 2011-07-29 15:04:45 -0300 | [diff] [blame^] | 16 | RSTATE_IN_MIGRATE, /* paused waiting for an incoming migration */ |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 17 | RSTATE_PANICKED, /* paused due to an internal error */ |
| 18 | RSTATE_IO_ERROR, /* paused due to an I/O error */ |
| 19 | RSTATE_PAUSED, /* paused by the user (ie. the 'stop' command) */ |
Luiz Capitulino | f5bbfba | 2011-07-29 15:04:45 -0300 | [diff] [blame^] | 20 | RSTATE_POST_MIGRATE, /* paused following a successful migration */ |
| 21 | RSTATE_PRE_LAUNCH, /* qemu was started with -S and haven't started */ |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 22 | RSTATE_PRE_MIGRATE, /* paused preparing to finish migrate */ |
| 23 | RSTATE_RESTORE, /* paused restoring the VM state */ |
| 24 | RSTATE_RUNNING, /* qemu is running */ |
| 25 | RSTATE_SAVEVM, /* paused saving VM state */ |
| 26 | RSTATE_SHUTDOWN, /* guest shut down and -no-shutdown is in use */ |
Luiz Capitulino | f5bbfba | 2011-07-29 15:04:45 -0300 | [diff] [blame^] | 27 | RSTATE_WATCHDOG, /* watchdog fired and qemu is configured to pause */ |
| 28 | RSTATE_MAX |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 29 | } RunState; |
| 30 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 31 | extern const char *bios_name; |
Paul Brook | 5cea859 | 2009-05-30 00:52:44 +0100 | [diff] [blame] | 32 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 33 | extern int vm_running; |
| 34 | extern const char *qemu_name; |
blueswir1 | 8fcb1b9 | 2008-09-18 18:29:08 +0000 | [diff] [blame] | 35 | extern uint8_t qemu_uuid[]; |
aliguori | c4be29f | 2009-04-17 18:58:14 +0000 | [diff] [blame] | 36 | int qemu_uuid_parse(const char *str, uint8_t *uuid); |
blueswir1 | 8fcb1b9 | 2008-09-18 18:29:08 +0000 | [diff] [blame] | 37 | #define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx" |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 38 | |
Luiz Capitulino | f5bbfba | 2011-07-29 15:04:45 -0300 | [diff] [blame^] | 39 | bool runstate_check(RunState state); |
| 40 | void runstate_set(RunState new_state); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 41 | typedef struct vm_change_state_entry VMChangeStateEntry; |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 42 | typedef void VMChangeStateHandler(void *opaque, int running, RunState state); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 43 | |
| 44 | VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb, |
| 45 | void *opaque); |
| 46 | void qemu_del_vm_change_state_handler(VMChangeStateEntry *e); |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 47 | void vm_state_notify(int running, RunState state); |
Jan Kiszka | e07bbac | 2011-02-09 16:29:40 +0100 | [diff] [blame] | 48 | |
Jan Kiszka | e063eb1 | 2011-06-14 18:29:43 +0200 | [diff] [blame] | 49 | #define VMRESET_SILENT false |
| 50 | #define VMRESET_REPORT true |
| 51 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 52 | void vm_start(void); |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 53 | void vm_stop(RunState state); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 54 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 55 | void qemu_system_reset_request(void); |
| 56 | void qemu_system_shutdown_request(void); |
| 57 | void qemu_system_powerdown_request(void); |
Jan Kiszka | 8cf7171 | 2011-02-07 12:19:16 +0100 | [diff] [blame] | 58 | void qemu_system_debug_request(void); |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 59 | void qemu_system_vmstop_request(RunState reason); |
Anthony PERARD | 1291eb3 | 2010-07-22 15:52:48 +0100 | [diff] [blame] | 60 | int qemu_shutdown_requested_get(void); |
| 61 | int qemu_reset_requested_get(void); |
aurel32 | cf7a2fe | 2008-03-18 06:53:05 +0000 | [diff] [blame] | 62 | int qemu_shutdown_requested(void); |
| 63 | int qemu_reset_requested(void); |
| 64 | int qemu_powerdown_requested(void); |
Gleb Natapov | f64622c | 2011-03-15 13:56:04 +0200 | [diff] [blame] | 65 | void qemu_system_killed(int signal, pid_t pid); |
| 66 | void qemu_kill_report(void); |
Blue Swirl | d9c3231 | 2009-08-09 08:42:19 +0000 | [diff] [blame] | 67 | extern qemu_irq qemu_system_powerdown; |
Jan Kiszka | e063eb1 | 2011-06-14 18:29:43 +0200 | [diff] [blame] | 68 | void qemu_system_reset(bool report); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 69 | |
Gerd Hoffmann | fd42dee | 2010-06-04 14:08:07 +0200 | [diff] [blame] | 70 | void qemu_add_exit_notifier(Notifier *notify); |
| 71 | void qemu_remove_exit_notifier(Notifier *notify); |
| 72 | |
Gleb Natapov | 4cab946 | 2010-12-08 13:35:08 +0200 | [diff] [blame] | 73 | void qemu_add_machine_init_done_notifier(Notifier *notify); |
| 74 | |
Luiz Capitulino | d54908a | 2009-08-28 15:27:13 -0300 | [diff] [blame] | 75 | void do_savevm(Monitor *mon, const QDict *qdict); |
Markus Armbruster | 03cd465 | 2010-02-17 16:24:10 +0100 | [diff] [blame] | 76 | int load_vmstate(const char *name); |
Luiz Capitulino | d54908a | 2009-08-28 15:27:13 -0300 | [diff] [blame] | 77 | void do_delvm(Monitor *mon, const QDict *qdict); |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 78 | void do_info_snapshots(Monitor *mon); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 79 | |
aliguori | 210f41b | 2008-10-13 03:13:12 +0000 | [diff] [blame] | 80 | void qemu_announce_self(void); |
| 81 | |
Jan Kiszka | c9f711a | 2011-08-22 17:46:02 +0200 | [diff] [blame] | 82 | int main_loop_wait(int nonblocking); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 83 | |
Alex Williamson | dc91212 | 2011-01-11 14:39:43 -0700 | [diff] [blame] | 84 | bool qemu_savevm_state_blocked(Monitor *mon); |
Jan Kiszka | f327aa0 | 2009-11-30 18:21:21 +0100 | [diff] [blame] | 85 | int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable, |
| 86 | int shared); |
| 87 | int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f); |
| 88 | int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f); |
| 89 | void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f); |
aliguori | 9366f41 | 2008-10-06 14:53:52 +0000 | [diff] [blame] | 90 | int qemu_loadvm_state(QEMUFile *f); |
| 91 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 92 | /* SLIRP */ |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 93 | void do_info_slirp(Monitor *mon); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 94 | |
Anthony Liguori | 993fbfd | 2009-05-21 16:54:00 -0500 | [diff] [blame] | 95 | typedef enum DisplayType |
| 96 | { |
| 97 | DT_DEFAULT, |
| 98 | DT_CURSES, |
| 99 | DT_SDL, |
Anthony Liguori | 993fbfd | 2009-05-21 16:54:00 -0500 | [diff] [blame] | 100 | DT_NOGRAPHIC, |
Jes Sorensen | 4171d32 | 2011-03-16 13:33:32 +0100 | [diff] [blame] | 101 | DT_NONE, |
Anthony Liguori | 993fbfd | 2009-05-21 16:54:00 -0500 | [diff] [blame] | 102 | } DisplayType; |
| 103 | |
Paolo Bonzini | d399f67 | 2009-07-27 23:17:51 +0200 | [diff] [blame] | 104 | extern int autostart; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 105 | extern int bios_size; |
Zachary Amsden | 8617675 | 2009-07-30 00:15:02 -1000 | [diff] [blame] | 106 | |
| 107 | typedef enum { |
Gerd Hoffmann | a19cbfb | 2010-04-27 11:50:11 +0200 | [diff] [blame] | 108 | VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB, VGA_QXL, |
Zachary Amsden | 8617675 | 2009-07-30 00:15:02 -1000 | [diff] [blame] | 109 | } VGAInterfaceType; |
| 110 | |
| 111 | extern int vga_interface_type; |
| 112 | #define cirrus_vga_enabled (vga_interface_type == VGA_CIRRUS) |
| 113 | #define std_vga_enabled (vga_interface_type == VGA_STD) |
| 114 | #define xenfb_enabled (vga_interface_type == VGA_XENFB) |
| 115 | #define vmsvga_enabled (vga_interface_type == VGA_VMWARE) |
Gerd Hoffmann | a19cbfb | 2010-04-27 11:50:11 +0200 | [diff] [blame] | 116 | #define qxl_enabled (vga_interface_type == VGA_QXL) |
Zachary Amsden | 8617675 | 2009-07-30 00:15:02 -1000 | [diff] [blame] | 117 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 118 | extern int graphic_width; |
| 119 | extern int graphic_height; |
| 120 | extern int graphic_depth; |
Jes Sorensen | 6b35e7b | 2009-08-06 16:25:50 +0200 | [diff] [blame] | 121 | extern uint8_t irq0override; |
Anthony Liguori | 993fbfd | 2009-05-21 16:54:00 -0500 | [diff] [blame] | 122 | extern DisplayType display_type; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 123 | extern const char *keyboard_layout; |
| 124 | extern int win2k_install_hack; |
aliguori | 73822ec | 2009-01-15 20:11:34 +0000 | [diff] [blame] | 125 | extern int rtc_td_hack; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 126 | extern int alt_grab; |
Dustin Kirkland | 0ca9f8a | 2009-09-17 15:48:04 -0500 | [diff] [blame] | 127 | extern int ctrl_grab; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 128 | extern int usb_enabled; |
| 129 | extern int smp_cpus; |
Jes Sorensen | 6be68d7 | 2009-07-23 17:03:42 +0200 | [diff] [blame] | 130 | extern int max_cpus; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 131 | extern int cursor_hide; |
| 132 | extern int graphic_rotate; |
| 133 | extern int no_quit; |
Luiz Capitulino | a691d41 | 2010-05-11 18:07:04 -0300 | [diff] [blame] | 134 | extern int no_shutdown; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 135 | extern int semihosting_enabled; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 136 | extern int old_param; |
Jan Kiszka | 9538749 | 2009-07-02 00:19:02 +0200 | [diff] [blame] | 137 | extern int boot_menu; |
wayne | 3d3b830 | 2011-07-27 18:04:55 +0800 | [diff] [blame] | 138 | extern uint8_t *boot_splash_filedata; |
| 139 | extern int boot_splash_filedata_size; |
| 140 | extern uint8_t qemu_extra_params_fw[2]; |
Jan Kiszka | 6875204 | 2009-09-15 13:36:04 +0200 | [diff] [blame] | 141 | extern QEMUClock *rtc_clock; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 142 | |
aliguori | 268a362 | 2009-04-21 22:30:27 +0000 | [diff] [blame] | 143 | #define MAX_NODES 64 |
| 144 | extern int nb_numa_nodes; |
| 145 | extern uint64_t node_mem[MAX_NODES]; |
Blue Swirl | 075cd32 | 2009-09-13 08:32:39 +0000 | [diff] [blame] | 146 | extern uint64_t node_cpumask[MAX_NODES]; |
aliguori | 268a362 | 2009-04-21 22:30:27 +0000 | [diff] [blame] | 147 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 148 | #define MAX_OPTION_ROMS 16 |
Gleb Natapov | 2e55e84 | 2010-12-08 13:35:07 +0200 | [diff] [blame] | 149 | typedef struct QEMUOptionRom { |
| 150 | const char *name; |
| 151 | int32_t bootindex; |
| 152 | } QEMUOptionRom; |
| 153 | extern QEMUOptionRom option_rom[MAX_OPTION_ROMS]; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 154 | extern int nb_option_roms; |
| 155 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 156 | #define MAX_PROM_ENVS 128 |
| 157 | extern const char *prom_envs[MAX_PROM_ENVS]; |
| 158 | extern unsigned int nb_prom_envs; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 159 | |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 160 | /* pci-hotplug */ |
Markus Armbruster | 6c6a58a | 2010-05-12 10:53:00 +0200 | [diff] [blame] | 161 | void pci_device_hot_add(Monitor *mon, const QDict *qdict); |
Luiz Capitulino | f18c16d | 2009-08-28 15:27:14 -0300 | [diff] [blame] | 162 | void drive_hot_add(Monitor *mon, const QDict *qdict); |
Markus Armbruster | b752daf | 2010-05-12 10:53:01 +0200 | [diff] [blame] | 163 | void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict); |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 164 | |
Isaku Yamahata | 2ae63bd | 2010-12-24 12:14:14 +0900 | [diff] [blame] | 165 | /* pcie aer error injection */ |
| 166 | void pcie_aer_inject_error_print(Monitor *mon, const QObject *data); |
| 167 | int do_pcie_aer_inejct_error(Monitor *mon, |
| 168 | const QDict *qdict, QObject **ret_data); |
| 169 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 170 | /* serial ports */ |
| 171 | |
| 172 | #define MAX_SERIAL_PORTS 4 |
| 173 | |
| 174 | extern CharDriverState *serial_hds[MAX_SERIAL_PORTS]; |
| 175 | |
| 176 | /* parallel ports */ |
| 177 | |
| 178 | #define MAX_PARALLEL_PORTS 3 |
| 179 | |
| 180 | extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS]; |
| 181 | |
Luiz Capitulino | d54908a | 2009-08-28 15:27:13 -0300 | [diff] [blame] | 182 | void do_usb_add(Monitor *mon, const QDict *qdict); |
| 183 | void do_usb_del(Monitor *mon, const QDict *qdict); |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 184 | void usb_info(Monitor *mon); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 185 | |
Luiz Capitulino | 80cd347 | 2010-02-25 12:11:44 -0300 | [diff] [blame] | 186 | void rtc_change_mon_event(struct tm *tm); |
| 187 | |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 188 | void register_devices(void); |
| 189 | |
Gleb Natapov | 1ca4d09 | 2010-12-08 13:35:05 +0200 | [diff] [blame] | 190 | void add_boot_device_path(int32_t bootindex, DeviceState *dev, |
| 191 | const char *suffix); |
Gleb Natapov | 962630f | 2010-12-08 13:35:09 +0200 | [diff] [blame] | 192 | char *get_boot_devices_list(uint32_t *size); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 193 | #endif |