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" |
Luiz Capitulino | 1fa9a5e | 2011-09-12 17:54:20 -0300 | [diff] [blame] | 9 | #include "qapi-types.h" |
Gerd Hoffmann | fd42dee | 2010-06-04 14:08:07 +0200 | [diff] [blame] | 10 | #include "notify.h" |
Paolo Bonzini | 44a9b35 | 2011-09-12 16:44:30 +0200 | [diff] [blame] | 11 | #include "main-loop.h" |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 12 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 13 | /* vl.c */ |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 14 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 15 | extern const char *bios_name; |
Paul Brook | 5cea859 | 2009-05-30 00:52:44 +0100 | [diff] [blame] | 16 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 17 | extern const char *qemu_name; |
blueswir1 | 8fcb1b9 | 2008-09-18 18:29:08 +0000 | [diff] [blame] | 18 | extern uint8_t qemu_uuid[]; |
aliguori | c4be29f | 2009-04-17 18:58:14 +0000 | [diff] [blame] | 19 | int qemu_uuid_parse(const char *str, uint8_t *uuid); |
blueswir1 | 8fcb1b9 | 2008-09-18 18:29:08 +0000 | [diff] [blame] | 20 | #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] | 21 | |
Luiz Capitulino | 5db9d4d | 2011-09-05 16:36:31 -0300 | [diff] [blame] | 22 | void runstate_init(void); |
Luiz Capitulino | f5bbfba | 2011-07-29 15:04:45 -0300 | [diff] [blame] | 23 | bool runstate_check(RunState state); |
| 24 | void runstate_set(RunState new_state); |
Luiz Capitulino | 1354869 | 2011-07-29 15:36:43 -0300 | [diff] [blame] | 25 | int runstate_is_running(void); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 26 | typedef struct vm_change_state_entry VMChangeStateEntry; |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 27 | typedef void VMChangeStateHandler(void *opaque, int running, RunState state); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 28 | |
| 29 | VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb, |
| 30 | void *opaque); |
| 31 | void qemu_del_vm_change_state_handler(VMChangeStateEntry *e); |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 32 | void vm_state_notify(int running, RunState state); |
Jan Kiszka | e07bbac | 2011-02-09 16:29:40 +0100 | [diff] [blame] | 33 | |
Jan Kiszka | e063eb1 | 2011-06-14 18:29:43 +0200 | [diff] [blame] | 34 | #define VMRESET_SILENT false |
| 35 | #define VMRESET_REPORT true |
| 36 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 37 | void vm_start(void); |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 38 | void vm_stop(RunState state); |
Luiz Capitulino | 8a9236f | 2011-10-14 11:18:09 -0300 | [diff] [blame] | 39 | void vm_stop_force_state(RunState state); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 40 | |
Gerd Hoffmann | 95b363b | 2012-02-23 13:45:19 +0100 | [diff] [blame] | 41 | typedef enum WakeupReason { |
| 42 | QEMU_WAKEUP_REASON_OTHER = 0, |
Gerd Hoffmann | 62aeb0f | 2012-02-23 13:45:24 +0100 | [diff] [blame] | 43 | QEMU_WAKEUP_REASON_RTC, |
Gerd Hoffmann | 6595abc | 2012-02-23 13:45:25 +0100 | [diff] [blame] | 44 | QEMU_WAKEUP_REASON_PMTIMER, |
Gerd Hoffmann | 95b363b | 2012-02-23 13:45:19 +0100 | [diff] [blame] | 45 | } WakeupReason; |
| 46 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 47 | void qemu_system_reset_request(void); |
Gerd Hoffmann | 95b363b | 2012-02-23 13:45:19 +0100 | [diff] [blame] | 48 | void qemu_system_suspend_request(void); |
| 49 | void qemu_register_suspend_notifier(Notifier *notifier); |
| 50 | void qemu_system_wakeup_request(WakeupReason reason); |
| 51 | void qemu_system_wakeup_enable(WakeupReason reason, bool enabled); |
| 52 | void qemu_register_wakeup_notifier(Notifier *notifier); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 53 | void qemu_system_shutdown_request(void); |
| 54 | void qemu_system_powerdown_request(void); |
Igor Mammedov | a9552c8 | 2012-09-05 23:06:21 +0200 | [diff] [blame] | 55 | void qemu_register_powerdown_notifier(Notifier *notifier); |
Jan Kiszka | 8cf7171 | 2011-02-07 12:19:16 +0100 | [diff] [blame] | 56 | void qemu_system_debug_request(void); |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 57 | void qemu_system_vmstop_request(RunState reason); |
Anthony PERARD | 1291eb3 | 2010-07-22 15:52:48 +0100 | [diff] [blame] | 58 | int qemu_shutdown_requested_get(void); |
| 59 | int qemu_reset_requested_get(void); |
aurel32 | cf7a2fe | 2008-03-18 06:53:05 +0000 | [diff] [blame] | 60 | int qemu_shutdown_requested(void); |
| 61 | int qemu_reset_requested(void); |
| 62 | int qemu_powerdown_requested(void); |
Gleb Natapov | f64622c | 2011-03-15 13:56:04 +0200 | [diff] [blame] | 63 | void qemu_system_killed(int signal, pid_t pid); |
| 64 | void qemu_kill_report(void); |
David Gibson | be52202 | 2012-08-07 16:41:51 +1000 | [diff] [blame] | 65 | void qemu_devices_reset(void); |
Jan Kiszka | e063eb1 | 2011-06-14 18:29:43 +0200 | [diff] [blame] | 66 | void qemu_system_reset(bool report); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 67 | |
Gerd Hoffmann | fd42dee | 2010-06-04 14:08:07 +0200 | [diff] [blame] | 68 | void qemu_add_exit_notifier(Notifier *notify); |
| 69 | void qemu_remove_exit_notifier(Notifier *notify); |
| 70 | |
Gleb Natapov | 4cab946 | 2010-12-08 13:35:08 +0200 | [diff] [blame] | 71 | void qemu_add_machine_init_done_notifier(Notifier *notify); |
| 72 | |
Luiz Capitulino | d54908a | 2009-08-28 15:27:13 -0300 | [diff] [blame] | 73 | void do_savevm(Monitor *mon, const QDict *qdict); |
Markus Armbruster | 03cd465 | 2010-02-17 16:24:10 +0100 | [diff] [blame] | 74 | int load_vmstate(const char *name); |
Luiz Capitulino | d54908a | 2009-08-28 15:27:13 -0300 | [diff] [blame] | 75 | void do_delvm(Monitor *mon, const QDict *qdict); |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 76 | void do_info_snapshots(Monitor *mon); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 77 | |
aliguori | 210f41b | 2008-10-13 03:13:12 +0000 | [diff] [blame] | 78 | void qemu_announce_self(void); |
| 79 | |
Luiz Capitulino | e1c37d0 | 2011-12-05 14:48:01 -0200 | [diff] [blame] | 80 | bool qemu_savevm_state_blocked(Error **errp); |
Isaku Yamahata | 6607ae2 | 2012-06-19 18:43:09 +0300 | [diff] [blame] | 81 | int qemu_savevm_state_begin(QEMUFile *f, |
| 82 | const MigrationParams *params); |
Luiz Capitulino | 539de12 | 2011-12-05 14:06:56 -0200 | [diff] [blame] | 83 | int qemu_savevm_state_iterate(QEMUFile *f); |
| 84 | int qemu_savevm_state_complete(QEMUFile *f); |
| 85 | void qemu_savevm_state_cancel(QEMUFile *f); |
aliguori | 9366f41 | 2008-10-06 14:53:52 +0000 | [diff] [blame] | 86 | int qemu_loadvm_state(QEMUFile *f); |
| 87 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 88 | /* SLIRP */ |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 89 | void do_info_slirp(Monitor *mon); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 90 | |
Anthony Liguori | 993fbfd | 2009-05-21 16:54:00 -0500 | [diff] [blame] | 91 | typedef enum DisplayType |
| 92 | { |
| 93 | DT_DEFAULT, |
| 94 | DT_CURSES, |
| 95 | DT_SDL, |
Anthony Liguori | 993fbfd | 2009-05-21 16:54:00 -0500 | [diff] [blame] | 96 | DT_NOGRAPHIC, |
Jes Sorensen | 4171d32 | 2011-03-16 13:33:32 +0100 | [diff] [blame] | 97 | DT_NONE, |
Anthony Liguori | 993fbfd | 2009-05-21 16:54:00 -0500 | [diff] [blame] | 98 | } DisplayType; |
| 99 | |
Paolo Bonzini | d399f67 | 2009-07-27 23:17:51 +0200 | [diff] [blame] | 100 | extern int autostart; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 101 | extern int bios_size; |
Zachary Amsden | 8617675 | 2009-07-30 00:15:02 -1000 | [diff] [blame] | 102 | |
| 103 | typedef enum { |
Gerd Hoffmann | a19cbfb | 2010-04-27 11:50:11 +0200 | [diff] [blame] | 104 | VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB, VGA_QXL, |
Zachary Amsden | 8617675 | 2009-07-30 00:15:02 -1000 | [diff] [blame] | 105 | } VGAInterfaceType; |
| 106 | |
| 107 | extern int vga_interface_type; |
Zachary Amsden | 8617675 | 2009-07-30 00:15:02 -1000 | [diff] [blame] | 108 | #define xenfb_enabled (vga_interface_type == VGA_XENFB) |
Gerd Hoffmann | a19cbfb | 2010-04-27 11:50:11 +0200 | [diff] [blame] | 109 | #define qxl_enabled (vga_interface_type == VGA_QXL) |
Zachary Amsden | 8617675 | 2009-07-30 00:15:02 -1000 | [diff] [blame] | 110 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 111 | extern int graphic_width; |
| 112 | extern int graphic_height; |
| 113 | extern int graphic_depth; |
Anthony Liguori | 993fbfd | 2009-05-21 16:54:00 -0500 | [diff] [blame] | 114 | extern DisplayType display_type; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 115 | extern const char *keyboard_layout; |
| 116 | extern int win2k_install_hack; |
| 117 | extern int alt_grab; |
Dustin Kirkland | 0ca9f8a | 2009-09-17 15:48:04 -0500 | [diff] [blame] | 118 | extern int ctrl_grab; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 119 | extern int usb_enabled; |
| 120 | extern int smp_cpus; |
Jes Sorensen | 6be68d7 | 2009-07-23 17:03:42 +0200 | [diff] [blame] | 121 | extern int max_cpus; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 122 | extern int cursor_hide; |
| 123 | extern int graphic_rotate; |
| 124 | extern int no_quit; |
Luiz Capitulino | a691d41 | 2010-05-11 18:07:04 -0300 | [diff] [blame] | 125 | extern int no_shutdown; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 126 | extern int semihosting_enabled; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 127 | extern int old_param; |
Jan Kiszka | 9538749 | 2009-07-02 00:19:02 +0200 | [diff] [blame] | 128 | extern int boot_menu; |
wayne | 3d3b830 | 2011-07-27 18:04:55 +0800 | [diff] [blame] | 129 | extern uint8_t *boot_splash_filedata; |
| 130 | extern int boot_splash_filedata_size; |
| 131 | extern uint8_t qemu_extra_params_fw[2]; |
Jan Kiszka | 6875204 | 2009-09-15 13:36:04 +0200 | [diff] [blame] | 132 | extern QEMUClock *rtc_clock; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 133 | |
aliguori | 268a362 | 2009-04-21 22:30:27 +0000 | [diff] [blame] | 134 | #define MAX_NODES 64 |
Chegu Vinod | ee785fe | 2012-07-16 21:31:30 -0700 | [diff] [blame] | 135 | #define MAX_CPUMASK_BITS 255 |
aliguori | 268a362 | 2009-04-21 22:30:27 +0000 | [diff] [blame] | 136 | extern int nb_numa_nodes; |
| 137 | extern uint64_t node_mem[MAX_NODES]; |
Chegu Vinod | ee785fe | 2012-07-16 21:31:30 -0700 | [diff] [blame] | 138 | extern unsigned long *node_cpumask[MAX_NODES]; |
aliguori | 268a362 | 2009-04-21 22:30:27 +0000 | [diff] [blame] | 139 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 140 | #define MAX_OPTION_ROMS 16 |
Gleb Natapov | 2e55e84 | 2010-12-08 13:35:07 +0200 | [diff] [blame] | 141 | typedef struct QEMUOptionRom { |
| 142 | const char *name; |
| 143 | int32_t bootindex; |
| 144 | } QEMUOptionRom; |
| 145 | extern QEMUOptionRom option_rom[MAX_OPTION_ROMS]; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 146 | extern int nb_option_roms; |
| 147 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 148 | #define MAX_PROM_ENVS 128 |
| 149 | extern const char *prom_envs[MAX_PROM_ENVS]; |
| 150 | extern unsigned int nb_prom_envs; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 151 | |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 152 | /* pci-hotplug */ |
Markus Armbruster | 6c6a58a | 2010-05-12 10:53:00 +0200 | [diff] [blame] | 153 | void pci_device_hot_add(Monitor *mon, const QDict *qdict); |
Alexander Graf | dd97aa8 | 2010-08-23 23:43:10 +0200 | [diff] [blame] | 154 | int pci_drive_hot_add(Monitor *mon, const QDict *qdict, |
| 155 | DriveInfo *dinfo, int type); |
Markus Armbruster | b752daf | 2010-05-12 10:53:01 +0200 | [diff] [blame] | 156 | void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict); |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 157 | |
Alexander Graf | dd97aa8 | 2010-08-23 23:43:10 +0200 | [diff] [blame] | 158 | /* generic hotplug */ |
| 159 | void drive_hot_add(Monitor *mon, const QDict *qdict); |
| 160 | |
Isaku Yamahata | 2ae63bd | 2010-12-24 12:14:14 +0900 | [diff] [blame] | 161 | /* pcie aer error injection */ |
| 162 | void pcie_aer_inject_error_print(Monitor *mon, const QObject *data); |
Zhi Yong Wu | 1f3392b | 2011-11-30 12:39:47 +0800 | [diff] [blame] | 163 | int do_pcie_aer_inject_error(Monitor *mon, |
Isaku Yamahata | 2ae63bd | 2010-12-24 12:14:14 +0900 | [diff] [blame] | 164 | const QDict *qdict, QObject **ret_data); |
| 165 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 166 | /* serial ports */ |
| 167 | |
| 168 | #define MAX_SERIAL_PORTS 4 |
| 169 | |
| 170 | extern CharDriverState *serial_hds[MAX_SERIAL_PORTS]; |
| 171 | |
| 172 | /* parallel ports */ |
| 173 | |
| 174 | #define MAX_PARALLEL_PORTS 3 |
| 175 | |
| 176 | extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS]; |
| 177 | |
Luiz Capitulino | d54908a | 2009-08-28 15:27:13 -0300 | [diff] [blame] | 178 | void do_usb_add(Monitor *mon, const QDict *qdict); |
| 179 | void do_usb_del(Monitor *mon, const QDict *qdict); |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 180 | void usb_info(Monitor *mon); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 181 | |
Luiz Capitulino | 80cd347 | 2010-02-25 12:11:44 -0300 | [diff] [blame] | 182 | void rtc_change_mon_event(struct tm *tm); |
| 183 | |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 184 | void register_devices(void); |
| 185 | |
Gleb Natapov | 1ca4d09 | 2010-12-08 13:35:05 +0200 | [diff] [blame] | 186 | void add_boot_device_path(int32_t bootindex, DeviceState *dev, |
| 187 | const char *suffix); |
Gleb Natapov | 962630f | 2010-12-08 13:35:09 +0200 | [diff] [blame] | 188 | char *get_boot_devices_list(uint32_t *size); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 189 | #endif |