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" |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 9 | |
aliguori | 49dc768 | 2009-03-08 16:26:59 +0000 | [diff] [blame] | 10 | #ifdef _WIN32 |
| 11 | #include <windows.h> |
| 12 | #endif |
| 13 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 14 | /* vl.c */ |
| 15 | extern const char *bios_name; |
Paul Brook | 5cea859 | 2009-05-30 00:52:44 +0100 | [diff] [blame] | 16 | |
| 17 | #define QEMU_FILE_TYPE_BIOS 0 |
| 18 | #define QEMU_FILE_TYPE_KEYMAP 1 |
| 19 | char *qemu_find_file(int type, const char *name); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 20 | |
| 21 | extern int vm_running; |
| 22 | extern const char *qemu_name; |
blueswir1 | 8fcb1b9 | 2008-09-18 18:29:08 +0000 | [diff] [blame] | 23 | extern uint8_t qemu_uuid[]; |
aliguori | c4be29f | 2009-04-17 18:58:14 +0000 | [diff] [blame] | 24 | int qemu_uuid_parse(const char *str, uint8_t *uuid); |
blueswir1 | 8fcb1b9 | 2008-09-18 18:29:08 +0000 | [diff] [blame] | 25 | #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] | 26 | |
| 27 | typedef struct vm_change_state_entry VMChangeStateEntry; |
aliguori | 9781e04 | 2009-01-22 17:15:29 +0000 | [diff] [blame] | 28 | typedef void VMChangeStateHandler(void *opaque, int running, int reason); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 29 | |
| 30 | VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb, |
| 31 | void *opaque); |
| 32 | void qemu_del_vm_change_state_handler(VMChangeStateEntry *e); |
| 33 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 34 | void vm_start(void); |
| 35 | void vm_stop(int reason); |
| 36 | |
Glauber Costa | 9f9e28c | 2009-05-21 17:38:01 -0400 | [diff] [blame] | 37 | uint64_t ram_bytes_remaining(void); |
| 38 | uint64_t ram_bytes_transferred(void); |
| 39 | uint64_t ram_bytes_total(void); |
| 40 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 41 | int64_t cpu_get_ticks(void); |
| 42 | void cpu_enable_ticks(void); |
| 43 | void cpu_disable_ticks(void); |
| 44 | |
| 45 | void qemu_system_reset_request(void); |
| 46 | void qemu_system_shutdown_request(void); |
| 47 | void qemu_system_powerdown_request(void); |
Luiz Capitulino | 0e8d2b5 | 2010-04-06 18:55:54 -0300 | [diff] [blame] | 48 | void qemu_system_exit_request(void); |
aurel32 | cf7a2fe | 2008-03-18 06:53:05 +0000 | [diff] [blame] | 49 | int qemu_shutdown_requested(void); |
| 50 | int qemu_reset_requested(void); |
| 51 | int qemu_powerdown_requested(void); |
Luiz Capitulino | 0e8d2b5 | 2010-04-06 18:55:54 -0300 | [diff] [blame] | 52 | int qemu_exit_requested(void); |
Blue Swirl | d9c3231 | 2009-08-09 08:42:19 +0000 | [diff] [blame] | 53 | extern qemu_irq qemu_system_powerdown; |
aurel32 | cf7a2fe | 2008-03-18 06:53:05 +0000 | [diff] [blame] | 54 | void qemu_system_reset(void); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 55 | |
Luiz Capitulino | d54908a | 2009-08-28 15:27:13 -0300 | [diff] [blame] | 56 | void do_savevm(Monitor *mon, const QDict *qdict); |
Markus Armbruster | 03cd465 | 2010-02-17 16:24:10 +0100 | [diff] [blame] | 57 | int load_vmstate(const char *name); |
Luiz Capitulino | d54908a | 2009-08-28 15:27:13 -0300 | [diff] [blame] | 58 | void do_delvm(Monitor *mon, const QDict *qdict); |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 59 | void do_info_snapshots(Monitor *mon); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 60 | |
Jan Kiszka | ea375f9 | 2010-03-01 19:10:30 +0100 | [diff] [blame] | 61 | void cpu_synchronize_all_states(void); |
| 62 | void cpu_synchronize_all_post_reset(void); |
| 63 | void cpu_synchronize_all_post_init(void); |
| 64 | |
aliguori | 210f41b | 2008-10-13 03:13:12 +0000 | [diff] [blame] | 65 | void qemu_announce_self(void); |
| 66 | |
Paolo Bonzini | d6f4ade | 2010-03-10 11:38:54 +0100 | [diff] [blame] | 67 | void main_loop_wait(int nonblocking); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 68 | |
Jan Kiszka | f327aa0 | 2009-11-30 18:21:21 +0100 | [diff] [blame] | 69 | int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable, |
| 70 | int shared); |
| 71 | int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f); |
| 72 | int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f); |
| 73 | void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f); |
aliguori | 9366f41 | 2008-10-06 14:53:52 +0000 | [diff] [blame] | 74 | int qemu_loadvm_state(QEMUFile *f); |
| 75 | |
aliguori | 56f3a5d | 2008-10-31 18:07:17 +0000 | [diff] [blame] | 76 | #ifdef _WIN32 |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 77 | /* Polling handling */ |
| 78 | |
| 79 | /* return TRUE if no sleep should be done afterwards */ |
| 80 | typedef int PollingFunc(void *opaque); |
| 81 | |
| 82 | int qemu_add_polling_cb(PollingFunc *func, void *opaque); |
| 83 | void qemu_del_polling_cb(PollingFunc *func, void *opaque); |
| 84 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 85 | /* Wait objects handling */ |
| 86 | typedef void WaitObjectFunc(void *opaque); |
| 87 | |
| 88 | int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque); |
| 89 | void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque); |
| 90 | #endif |
| 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, |
| 100 | DT_VNC, |
| 101 | DT_NOGRAPHIC, |
| 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 { |
| 108 | VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB |
| 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) |
| 116 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 117 | extern int graphic_width; |
| 118 | extern int graphic_height; |
| 119 | extern int graphic_depth; |
Jes Sorensen | 6b35e7b | 2009-08-06 16:25:50 +0200 | [diff] [blame] | 120 | extern uint8_t irq0override; |
Anthony Liguori | 993fbfd | 2009-05-21 16:54:00 -0500 | [diff] [blame] | 121 | extern DisplayType display_type; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 122 | extern const char *keyboard_layout; |
| 123 | extern int win2k_install_hack; |
aliguori | 73822ec | 2009-01-15 20:11:34 +0000 | [diff] [blame] | 124 | extern int rtc_td_hack; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 125 | extern int alt_grab; |
Dustin Kirkland | 0ca9f8a | 2009-09-17 15:48:04 -0500 | [diff] [blame] | 126 | extern int ctrl_grab; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 127 | extern int usb_enabled; |
| 128 | extern int smp_cpus; |
Jes Sorensen | 6be68d7 | 2009-07-23 17:03:42 +0200 | [diff] [blame] | 129 | extern int max_cpus; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 130 | extern int cursor_hide; |
| 131 | extern int graphic_rotate; |
| 132 | extern int no_quit; |
| 133 | extern int semihosting_enabled; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 134 | extern int old_param; |
Jan Kiszka | 9538749 | 2009-07-02 00:19:02 +0200 | [diff] [blame] | 135 | extern int boot_menu; |
Jan Kiszka | 6875204 | 2009-09-15 13:36:04 +0200 | [diff] [blame] | 136 | extern QEMUClock *rtc_clock; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 137 | |
aliguori | 268a362 | 2009-04-21 22:30:27 +0000 | [diff] [blame] | 138 | #define MAX_NODES 64 |
| 139 | extern int nb_numa_nodes; |
| 140 | extern uint64_t node_mem[MAX_NODES]; |
Blue Swirl | 075cd32 | 2009-09-13 08:32:39 +0000 | [diff] [blame] | 141 | extern uint64_t node_cpumask[MAX_NODES]; |
aliguori | 268a362 | 2009-04-21 22:30:27 +0000 | [diff] [blame] | 142 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 143 | #define MAX_OPTION_ROMS 16 |
| 144 | extern const char *option_rom[MAX_OPTION_ROMS]; |
| 145 | extern int nb_option_roms; |
| 146 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 147 | #define MAX_PROM_ENVS 128 |
| 148 | extern const char *prom_envs[MAX_PROM_ENVS]; |
| 149 | extern unsigned int nb_prom_envs; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 150 | |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 151 | typedef enum { |
Gerd Hoffmann | a8659e9 | 2009-07-31 12:25:39 +0200 | [diff] [blame] | 152 | IF_NONE, |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 153 | IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN, |
| 154 | IF_COUNT |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 155 | } BlockInterfaceType; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 156 | |
aliguori | 428c570 | 2009-01-21 18:59:04 +0000 | [diff] [blame] | 157 | typedef enum { |
| 158 | BLOCK_ERR_REPORT, BLOCK_ERR_IGNORE, BLOCK_ERR_STOP_ENOSPC, |
| 159 | BLOCK_ERR_STOP_ANY |
| 160 | } BlockInterfaceErrorAction; |
| 161 | |
john cooper | bf01129 | 2009-06-22 14:26:51 -0400 | [diff] [blame] | 162 | #define BLOCK_SERIAL_STRLEN 20 |
| 163 | |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 164 | typedef struct DriveInfo { |
| 165 | BlockDriverState *bdrv; |
Gerd Hoffmann | 1dae12e | 2009-07-22 16:42:58 +0200 | [diff] [blame] | 166 | char *id; |
Markus Armbruster | c2cc47a | 2009-06-18 15:14:10 +0200 | [diff] [blame] | 167 | const char *devaddr; |
ths | f60d39b | 2007-12-17 03:55:57 +0000 | [diff] [blame] | 168 | BlockInterfaceType type; |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 169 | int bus; |
| 170 | int unit; |
Gerd Hoffmann | 9dfd7c7 | 2009-07-22 16:43:04 +0200 | [diff] [blame] | 171 | QemuOpts *opts; |
Kevin Wolf | e9b2e81 | 2009-11-27 13:25:37 +0100 | [diff] [blame] | 172 | BlockInterfaceErrorAction on_read_error; |
Kevin Wolf | f785009 | 2009-11-27 13:25:36 +0100 | [diff] [blame] | 173 | BlockInterfaceErrorAction on_write_error; |
john cooper | bf01129 | 2009-06-22 14:26:51 -0400 | [diff] [blame] | 174 | char serial[BLOCK_SERIAL_STRLEN + 1]; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 175 | QTAILQ_ENTRY(DriveInfo) next; |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 176 | } DriveInfo; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 177 | |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 178 | #define MAX_IDE_DEVS 2 |
| 179 | #define MAX_SCSI_DEVS 7 |
| 180 | #define MAX_DRIVES 32 |
| 181 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 182 | extern QTAILQ_HEAD(drivelist, DriveInfo) drives; |
| 183 | extern QTAILQ_HEAD(driveoptlist, DriveOpt) driveopts; |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 184 | |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 185 | extern DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit); |
Gerd Hoffmann | 2e810b3 | 2009-07-31 12:25:38 +0200 | [diff] [blame] | 186 | extern DriveInfo *drive_get_by_id(const char *id); |
ths | f60d39b | 2007-12-17 03:55:57 +0000 | [diff] [blame] | 187 | extern int drive_get_max_bus(BlockInterfaceType type); |
Gerd Hoffmann | 56a1493 | 2009-09-25 21:42:46 +0200 | [diff] [blame] | 188 | extern void drive_uninit(DriveInfo *dinfo); |
aliguori | fa879c6 | 2009-01-07 17:32:33 +0000 | [diff] [blame] | 189 | extern const char *drive_get_serial(BlockDriverState *bdrv); |
Kevin Wolf | f785009 | 2009-11-27 13:25:36 +0100 | [diff] [blame] | 190 | |
| 191 | extern BlockInterfaceErrorAction drive_get_on_error( |
| 192 | BlockDriverState *bdrv, int is_read); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 193 | |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 194 | BlockDriverState *qdev_init_bdrv(DeviceState *dev, BlockInterfaceType type); |
| 195 | |
Gerd Hoffmann | 9dfd7c7 | 2009-07-22 16:43:04 +0200 | [diff] [blame] | 196 | extern QemuOpts *drive_add(const char *file, const char *fmt, ...); |
| 197 | extern DriveInfo *drive_init(QemuOpts *arg, void *machine, int *fatal_error); |
aliguori | 4d73cd3 | 2009-02-11 15:20:46 +0000 | [diff] [blame] | 198 | |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 199 | /* device-hotplug */ |
| 200 | |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 201 | DriveInfo *add_init_drive(const char *opts); |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 202 | |
| 203 | /* pci-hotplug */ |
Markus Armbruster | 6c6a58a | 2010-05-12 10:53:00 +0200 | [diff] [blame^] | 204 | void pci_device_hot_add(Monitor *mon, const QDict *qdict); |
Luiz Capitulino | f18c16d | 2009-08-28 15:27:14 -0300 | [diff] [blame] | 205 | void drive_hot_add(Monitor *mon, const QDict *qdict); |
Luiz Capitulino | 053801b | 2010-02-10 23:49:56 -0200 | [diff] [blame] | 206 | int pci_device_hot_remove(Monitor *mon, const char *pci_addr); |
| 207 | int do_pci_device_hot_remove(Monitor *mon, const QDict *qdict, |
| 208 | QObject **ret_data); |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 209 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 210 | /* serial ports */ |
| 211 | |
| 212 | #define MAX_SERIAL_PORTS 4 |
| 213 | |
| 214 | extern CharDriverState *serial_hds[MAX_SERIAL_PORTS]; |
| 215 | |
| 216 | /* parallel ports */ |
| 217 | |
| 218 | #define MAX_PARALLEL_PORTS 3 |
| 219 | |
| 220 | extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS]; |
| 221 | |
aliguori | 0e82f34 | 2008-10-31 18:44:40 +0000 | [diff] [blame] | 222 | #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR) |
| 223 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 224 | #ifdef HAS_AUDIO |
| 225 | struct soundhw { |
| 226 | const char *name; |
| 227 | const char *descr; |
| 228 | int enabled; |
| 229 | int isa; |
| 230 | union { |
Paul Brook | 22d83b1 | 2009-05-12 12:33:04 +0100 | [diff] [blame] | 231 | int (*init_isa) (qemu_irq *pic); |
| 232 | int (*init_pci) (PCIBus *bus); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 233 | } init; |
| 234 | }; |
| 235 | |
| 236 | extern struct soundhw soundhw[]; |
| 237 | #endif |
| 238 | |
Luiz Capitulino | d54908a | 2009-08-28 15:27:13 -0300 | [diff] [blame] | 239 | void do_usb_add(Monitor *mon, const QDict *qdict); |
| 240 | void do_usb_del(Monitor *mon, const QDict *qdict); |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 241 | void usb_info(Monitor *mon); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 242 | |
Luiz Capitulino | 80cd347 | 2010-02-25 12:11:44 -0300 | [diff] [blame] | 243 | void rtc_change_mon_event(struct tm *tm); |
| 244 | |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 245 | void register_devices(void); |
| 246 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 247 | #endif |