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