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