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" |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 7 | #include "sys-queue.h" |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 8 | |
aliguori | 49dc768 | 2009-03-08 16:26:59 +0000 | [diff] [blame] | 9 | #ifdef _WIN32 |
| 10 | #include <windows.h> |
| 11 | #endif |
| 12 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 13 | /* vl.c */ |
| 14 | extern const char *bios_name; |
Paul Brook | 5cea859 | 2009-05-30 00:52:44 +0100 | [diff] [blame] | 15 | |
| 16 | #define QEMU_FILE_TYPE_BIOS 0 |
| 17 | #define QEMU_FILE_TYPE_KEYMAP 1 |
| 18 | char *qemu_find_file(int type, const char *name); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 19 | |
| 20 | extern int vm_running; |
| 21 | extern const char *qemu_name; |
blueswir1 | 8fcb1b9 | 2008-09-18 18:29:08 +0000 | [diff] [blame] | 22 | extern uint8_t qemu_uuid[]; |
aliguori | c4be29f | 2009-04-17 18:58:14 +0000 | [diff] [blame] | 23 | int qemu_uuid_parse(const char *str, uint8_t *uuid); |
blueswir1 | 8fcb1b9 | 2008-09-18 18:29:08 +0000 | [diff] [blame] | 24 | #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] | 25 | |
| 26 | typedef struct vm_change_state_entry VMChangeStateEntry; |
aliguori | 9781e04 | 2009-01-22 17:15:29 +0000 | [diff] [blame] | 27 | typedef void VMChangeStateHandler(void *opaque, int running, int reason); |
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); |
| 32 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 33 | void vm_start(void); |
| 34 | void vm_stop(int reason); |
| 35 | |
Glauber Costa | 9f9e28c | 2009-05-21 17:38:01 -0400 | [diff] [blame] | 36 | uint64_t ram_bytes_remaining(void); |
| 37 | uint64_t ram_bytes_transferred(void); |
| 38 | uint64_t ram_bytes_total(void); |
| 39 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 40 | int64_t cpu_get_ticks(void); |
| 41 | void cpu_enable_ticks(void); |
| 42 | void cpu_disable_ticks(void); |
| 43 | |
| 44 | void qemu_system_reset_request(void); |
| 45 | void qemu_system_shutdown_request(void); |
| 46 | void qemu_system_powerdown_request(void); |
aurel32 | cf7a2fe | 2008-03-18 06:53:05 +0000 | [diff] [blame] | 47 | int qemu_shutdown_requested(void); |
| 48 | int qemu_reset_requested(void); |
| 49 | int qemu_powerdown_requested(void); |
Blue Swirl | d9c3231 | 2009-08-09 08:42:19 +0000 | [diff] [blame] | 50 | extern qemu_irq qemu_system_powerdown; |
aurel32 | cf7a2fe | 2008-03-18 06:53:05 +0000 | [diff] [blame] | 51 | void qemu_system_reset(void); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 52 | |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 53 | void do_savevm(Monitor *mon, const char *name); |
| 54 | void do_loadvm(Monitor *mon, const char *name); |
| 55 | void do_delvm(Monitor *mon, const char *name); |
| 56 | void do_info_snapshots(Monitor *mon); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 57 | |
aliguori | 210f41b | 2008-10-13 03:13:12 +0000 | [diff] [blame] | 58 | void qemu_announce_self(void); |
| 59 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 60 | void main_loop_wait(int timeout); |
| 61 | |
aliguori | 9366f41 | 2008-10-06 14:53:52 +0000 | [diff] [blame] | 62 | int qemu_savevm_state_begin(QEMUFile *f); |
| 63 | int qemu_savevm_state_iterate(QEMUFile *f); |
| 64 | int qemu_savevm_state_complete(QEMUFile *f); |
| 65 | int qemu_savevm_state(QEMUFile *f); |
| 66 | int qemu_loadvm_state(QEMUFile *f); |
| 67 | |
aliguori | 56f3a5d | 2008-10-31 18:07:17 +0000 | [diff] [blame] | 68 | #ifdef _WIN32 |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 69 | /* Polling handling */ |
| 70 | |
| 71 | /* return TRUE if no sleep should be done afterwards */ |
| 72 | typedef int PollingFunc(void *opaque); |
| 73 | |
| 74 | int qemu_add_polling_cb(PollingFunc *func, void *opaque); |
| 75 | void qemu_del_polling_cb(PollingFunc *func, void *opaque); |
| 76 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 77 | /* Wait objects handling */ |
| 78 | typedef void WaitObjectFunc(void *opaque); |
| 79 | |
| 80 | int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque); |
| 81 | void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque); |
| 82 | #endif |
| 83 | |
| 84 | /* TAP win32 */ |
aliguori | 7a9f6e4 | 2009-01-07 17:48:51 +0000 | [diff] [blame] | 85 | int tap_win32_init(VLANState *vlan, const char *model, |
| 86 | const char *name, const char *ifname); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 87 | |
| 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, |
| 96 | DT_VNC, |
| 97 | DT_NOGRAPHIC, |
| 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 { |
| 104 | VGA_NONE, VGA_STD, VGA_CIRRUS, VGA_VMWARE, VGA_XENFB |
| 105 | } VGAInterfaceType; |
| 106 | |
| 107 | extern int vga_interface_type; |
| 108 | #define cirrus_vga_enabled (vga_interface_type == VGA_CIRRUS) |
| 109 | #define std_vga_enabled (vga_interface_type == VGA_STD) |
| 110 | #define xenfb_enabled (vga_interface_type == VGA_XENFB) |
| 111 | #define vmsvga_enabled (vga_interface_type == VGA_VMWARE) |
| 112 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 113 | extern int graphic_width; |
| 114 | extern int graphic_height; |
| 115 | extern int graphic_depth; |
Jes Sorensen | 6b35e7b | 2009-08-06 16:25:50 +0200 | [diff] [blame^] | 116 | extern uint8_t irq0override; |
Anthony Liguori | 993fbfd | 2009-05-21 16:54:00 -0500 | [diff] [blame] | 117 | extern DisplayType display_type; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 118 | extern const char *keyboard_layout; |
| 119 | extern int win2k_install_hack; |
aliguori | 73822ec | 2009-01-15 20:11:34 +0000 | [diff] [blame] | 120 | extern int rtc_td_hack; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 121 | extern int alt_grab; |
| 122 | extern int usb_enabled; |
Markus Armbruster | 7d4c3d5 | 2009-06-26 19:15:14 +0200 | [diff] [blame] | 123 | extern int virtio_balloon; |
| 124 | extern const char *virtio_balloon_devaddr; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 125 | extern int smp_cpus; |
Jes Sorensen | 6be68d7 | 2009-07-23 17:03:42 +0200 | [diff] [blame] | 126 | extern int max_cpus; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 127 | extern int cursor_hide; |
| 128 | extern int graphic_rotate; |
| 129 | extern int no_quit; |
| 130 | extern int semihosting_enabled; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 131 | extern int old_param; |
Jan Kiszka | 9538749 | 2009-07-02 00:19:02 +0200 | [diff] [blame] | 132 | extern int boot_menu; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 133 | |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 134 | #ifdef CONFIG_KQEMU |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 135 | extern int kqemu_allowed; |
| 136 | #endif |
| 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]; |
| 141 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 142 | #define MAX_OPTION_ROMS 16 |
| 143 | extern const char *option_rom[MAX_OPTION_ROMS]; |
| 144 | extern int nb_option_roms; |
| 145 | |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 146 | #ifdef NEED_CPU_H |
blueswir1 | 95efd11 | 2008-12-24 20:26:14 +0000 | [diff] [blame] | 147 | #if defined(TARGET_SPARC) || defined(TARGET_PPC) |
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; |
| 151 | #endif |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 152 | #endif |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 153 | |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 154 | typedef enum { |
Gerd Hoffmann | a8659e9 | 2009-07-31 12:25:39 +0200 | [diff] [blame] | 155 | IF_NONE, |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 156 | IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN, |
| 157 | IF_COUNT |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 158 | } BlockInterfaceType; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 159 | |
aliguori | 428c570 | 2009-01-21 18:59:04 +0000 | [diff] [blame] | 160 | typedef enum { |
| 161 | BLOCK_ERR_REPORT, BLOCK_ERR_IGNORE, BLOCK_ERR_STOP_ENOSPC, |
| 162 | BLOCK_ERR_STOP_ANY |
| 163 | } BlockInterfaceErrorAction; |
| 164 | |
john cooper | bf01129 | 2009-06-22 14:26:51 -0400 | [diff] [blame] | 165 | #define BLOCK_SERIAL_STRLEN 20 |
| 166 | |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 167 | typedef struct DriveInfo { |
| 168 | BlockDriverState *bdrv; |
Gerd Hoffmann | 1dae12e | 2009-07-22 16:42:58 +0200 | [diff] [blame] | 169 | char *id; |
Markus Armbruster | c2cc47a | 2009-06-18 15:14:10 +0200 | [diff] [blame] | 170 | const char *devaddr; |
ths | f60d39b | 2007-12-17 03:55:57 +0000 | [diff] [blame] | 171 | BlockInterfaceType type; |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 172 | int bus; |
| 173 | int unit; |
Gerd Hoffmann | 9dfd7c7 | 2009-07-22 16:43:04 +0200 | [diff] [blame] | 174 | QemuOpts *opts; |
aliguori | 428c570 | 2009-01-21 18:59:04 +0000 | [diff] [blame] | 175 | BlockInterfaceErrorAction onerror; |
john cooper | bf01129 | 2009-06-22 14:26:51 -0400 | [diff] [blame] | 176 | char serial[BLOCK_SERIAL_STRLEN + 1]; |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 177 | TAILQ_ENTRY(DriveInfo) next; |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 178 | } DriveInfo; |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 179 | |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 180 | #define MAX_IDE_DEVS 2 |
| 181 | #define MAX_SCSI_DEVS 7 |
| 182 | #define MAX_DRIVES 32 |
| 183 | |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 184 | extern TAILQ_HEAD(drivelist, DriveInfo) drives; |
Gerd Hoffmann | 3b0ba92 | 2009-07-22 16:42:59 +0200 | [diff] [blame] | 185 | extern TAILQ_HEAD(driveoptlist, DriveOpt) driveopts; |
ths | e4bcb14 | 2007-12-02 04:51:10 +0000 | [diff] [blame] | 186 | |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 187 | extern DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit); |
Gerd Hoffmann | 2e810b3 | 2009-07-31 12:25:38 +0200 | [diff] [blame] | 188 | extern DriveInfo *drive_get_by_id(const char *id); |
ths | f60d39b | 2007-12-17 03:55:57 +0000 | [diff] [blame] | 189 | extern int drive_get_max_bus(BlockInterfaceType type); |
aliguori | b01b111 | 2009-02-11 15:20:20 +0000 | [diff] [blame] | 190 | extern void drive_uninit(BlockDriverState *bdrv); |
aliguori | fa879c6 | 2009-01-07 17:32:33 +0000 | [diff] [blame] | 191 | extern const char *drive_get_serial(BlockDriverState *bdrv); |
aliguori | 428c570 | 2009-01-21 18:59:04 +0000 | [diff] [blame] | 192 | extern BlockInterfaceErrorAction drive_get_onerror(BlockDriverState *bdrv); |
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 | 5e3cb53 | 2009-02-11 15:21:35 +0000 | [diff] [blame] | 199 | /* acpi */ |
Isaku Yamahata | 9d5e77a | 2009-06-18 19:57:00 +0900 | [diff] [blame] | 200 | typedef void (*qemu_system_device_hot_add_t)(int pcibus, int slot, int state); |
| 201 | void qemu_system_device_hot_add_register(qemu_system_device_hot_add_t callback); |
aliguori | ca2c72b | 2009-02-11 15:21:41 +0000 | [diff] [blame] | 202 | void qemu_system_device_hot_add(int pcibus, int slot, int state); |
aliguori | 5e3cb53 | 2009-02-11 15:21:35 +0000 | [diff] [blame] | 203 | |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 204 | /* device-hotplug */ |
| 205 | |
| 206 | typedef int (dev_match_fn)(void *dev_private, void *arg); |
| 207 | |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 208 | DriveInfo *add_init_drive(const char *opts); |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 209 | void destroy_nic(dev_match_fn *match_fn, void *arg); |
| 210 | void destroy_bdrvs(dev_match_fn *match_fn, void *arg); |
| 211 | |
| 212 | /* pci-hotplug */ |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 213 | void pci_device_hot_add(Monitor *mon, const char *pci_addr, const char *type, |
| 214 | const char *opts); |
| 215 | void drive_hot_add(Monitor *mon, const char *pci_addr, const char *opts); |
| 216 | void pci_device_hot_remove(Monitor *mon, const char *pci_addr); |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 217 | void pci_device_hot_remove_success(int pcibus, int slot); |
| 218 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 219 | /* serial ports */ |
| 220 | |
| 221 | #define MAX_SERIAL_PORTS 4 |
| 222 | |
| 223 | extern CharDriverState *serial_hds[MAX_SERIAL_PORTS]; |
| 224 | |
| 225 | /* parallel ports */ |
| 226 | |
| 227 | #define MAX_PARALLEL_PORTS 3 |
| 228 | |
| 229 | extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS]; |
| 230 | |
aliguori | 9ede2fd | 2009-01-15 20:05:25 +0000 | [diff] [blame] | 231 | /* virtio consoles */ |
| 232 | |
| 233 | #define MAX_VIRTIO_CONSOLES 1 |
| 234 | |
| 235 | extern CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES]; |
| 236 | |
aliguori | 0e82f34 | 2008-10-31 18:44:40 +0000 | [diff] [blame] | 237 | #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR) |
| 238 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 239 | #ifdef NEED_CPU_H |
| 240 | /* loader.c */ |
| 241 | int get_image_size(const char *filename); |
blueswir1 | 293f78b | 2008-05-12 17:22:13 +0000 | [diff] [blame] | 242 | int load_image(const char *filename, uint8_t *addr); /* deprecated */ |
| 243 | int load_image_targphys(const char *filename, target_phys_addr_t, int max_sz); |
pbrook | 83c1f87 | 2008-10-22 18:20:20 +0000 | [diff] [blame] | 244 | int load_elf(const char *filename, int64_t address_offset, |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 245 | uint64_t *pentry, uint64_t *lowaddr, uint64_t *highaddr); |
blueswir1 | 293f78b | 2008-05-12 17:22:13 +0000 | [diff] [blame] | 246 | int load_aout(const char *filename, target_phys_addr_t addr, int max_sz); |
aliguori | 5a9154e | 2008-11-20 22:14:40 +0000 | [diff] [blame] | 247 | int load_uimage(const char *filename, target_ulong *ep, target_ulong *loadaddr, |
| 248 | int *is_linux); |
blueswir1 | 293f78b | 2008-05-12 17:22:13 +0000 | [diff] [blame] | 249 | |
| 250 | int fread_targphys(target_phys_addr_t dst_addr, size_t nbytes, FILE *f); |
| 251 | int fread_targphys_ok(target_phys_addr_t dst_addr, size_t nbytes, FILE *f); |
| 252 | int read_targphys(int fd, target_phys_addr_t dst_addr, size_t nbytes); |
| 253 | void pstrcpy_targphys(target_phys_addr_t dest, int buf_size, |
| 254 | const char *source); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 255 | #endif |
| 256 | |
| 257 | #ifdef HAS_AUDIO |
| 258 | struct soundhw { |
| 259 | const char *name; |
| 260 | const char *descr; |
| 261 | int enabled; |
| 262 | int isa; |
| 263 | union { |
Paul Brook | 22d83b1 | 2009-05-12 12:33:04 +0100 | [diff] [blame] | 264 | int (*init_isa) (qemu_irq *pic); |
| 265 | int (*init_pci) (PCIBus *bus); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 266 | } init; |
| 267 | }; |
| 268 | |
| 269 | extern struct soundhw soundhw[]; |
| 270 | #endif |
| 271 | |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 272 | void do_usb_add(Monitor *mon, const char *devname); |
| 273 | void do_usb_del(Monitor *mon, const char *devname); |
| 274 | void usb_info(Monitor *mon); |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 275 | |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 276 | void register_devices(void); |
| 277 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 278 | #endif |