Kill redundant declaration of smp_cpus and vm_running
[qemu-kvm/fedora.git] / sysemu.h
blob027b8e75238967e4a23efd79d8e28b3758d1ffbf
1 #ifndef SYSEMU_H
2 #define SYSEMU_H
3 /* Misc. things related to the system emulator. */
5 /* vl.c */
6 extern const char *bios_name;
7 extern const char *bios_dir;
9 extern int vm_running;
10 extern const char *qemu_name;
11 extern uint8_t qemu_uuid[];
12 #define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx"
14 typedef struct vm_change_state_entry VMChangeStateEntry;
15 typedef void VMChangeStateHandler(void *opaque, int running);
16 typedef void VMStopHandler(void *opaque, int reason);
18 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
19 void *opaque);
20 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e);
22 int qemu_add_vm_stop_handler(VMStopHandler *cb, void *opaque);
23 void qemu_del_vm_stop_handler(VMStopHandler *cb, void *opaque);
25 void vm_start(void);
26 void vm_stop(int reason);
28 int64_t cpu_get_ticks(void);
29 void cpu_enable_ticks(void);
30 void cpu_disable_ticks(void);
32 void qemu_system_reset_request(void);
33 void qemu_system_shutdown_request(void);
34 void qemu_system_powerdown_request(void);
35 int qemu_shutdown_requested(void);
36 int qemu_reset_requested(void);
37 int qemu_powerdown_requested(void);
38 #if !defined(TARGET_SPARC) && !defined(TARGET_I386)
39 // Please implement a power failure function to signal the OS
40 #define qemu_system_powerdown() do{}while(0)
41 #else
42 void qemu_system_powerdown(void);
43 #endif
44 void qemu_system_reset(void);
46 void qemu_get_launch_info(int *argc, char ***argv,
47 int *opt_daemonize, const char **opt_incoming);
49 void do_savevm(const char *name);
50 void do_loadvm(const char *name);
51 void do_delvm(const char *name);
52 void do_info_snapshots(void);
54 void qemu_announce_self(void);
56 void main_loop_wait(int timeout);
58 int qemu_savevm_state_begin(QEMUFile *f);
59 int qemu_savevm_state_iterate(QEMUFile *f);
60 int qemu_savevm_state_complete(QEMUFile *f);
61 int qemu_savevm_state(QEMUFile *f);
62 int qemu_loadvm_state(QEMUFile *f);
64 #ifdef _WIN32
65 /* Polling handling */
67 /* return TRUE if no sleep should be done afterwards */
68 typedef int PollingFunc(void *opaque);
70 int qemu_add_polling_cb(PollingFunc *func, void *opaque);
71 void qemu_del_polling_cb(PollingFunc *func, void *opaque);
73 /* Wait objects handling */
74 typedef void WaitObjectFunc(void *opaque);
76 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
77 void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
78 #endif
80 /* TAP win32 */
81 int tap_win32_init(VLANState *vlan, const char *model,
82 const char *name, const char *ifname);
84 /* SLIRP */
85 void do_info_slirp(void);
87 extern int bios_size;
88 extern int cirrus_vga_enabled;
89 extern int vmsvga_enabled;
90 extern int graphic_width;
91 extern int graphic_height;
92 extern int graphic_depth;
93 extern int nographic;
94 extern const char *keyboard_layout;
95 extern int win2k_install_hack;
96 extern int alt_grab;
97 extern int usb_enabled;
98 extern int smp_cpus;
99 extern int cursor_hide;
100 extern int graphic_rotate;
101 extern int no_quit;
102 extern int semihosting_enabled;
103 extern int old_param;
104 extern int hpagesize;
105 extern const char *bootp_filename;
106 extern DisplayState display_state;
108 #ifdef USE_KQEMU
109 extern int kqemu_allowed;
110 #endif
112 #define MAX_OPTION_ROMS 16
113 extern const char *option_rom[MAX_OPTION_ROMS];
114 extern int nb_option_roms;
116 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
117 #define MAX_PROM_ENVS 128
118 extern const char *prom_envs[MAX_PROM_ENVS];
119 extern unsigned int nb_prom_envs;
120 #endif
122 #if defined (TARGET_PPC)
123 #define BIOS_SIZE (1024 * 1024)
124 #elif defined (TARGET_SPARC64)
125 #define BIOS_SIZE ((512 + 32) * 1024)
126 #elif defined(TARGET_MIPS)
127 #define BIOS_SIZE (4 * 1024 * 1024)
128 #endif
130 typedef enum {
131 IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO
132 } BlockInterfaceType;
134 typedef struct DriveInfo {
135 BlockDriverState *bdrv;
136 BlockInterfaceType type;
137 int bus;
138 int unit;
139 char serial[21];
140 int used;
141 int drive_opt_idx;
142 } DriveInfo;
144 #define MAX_IDE_DEVS 2
145 #define MAX_SCSI_DEVS 7
146 #define MAX_DRIVES 32
148 extern int nb_drives;
149 extern DriveInfo drives_table[MAX_DRIVES+1];
150 extern int extboot_drive;
152 extern int drive_get_index(BlockInterfaceType type, int bus, int unit);
153 extern int drive_get_max_bus(BlockInterfaceType type);
154 extern const char *drive_get_serial(BlockDriverState *bdrv);
156 extern void drive_uninit(BlockDriverState *bdrv);
157 extern void drive_remove(int index);
159 struct drive_opt {
160 const char *file;
161 char opt[1024];
162 int used;
165 extern struct drive_opt drives_opt[MAX_DRIVES];
166 extern int nb_drives_opt;
168 struct QEMUMachine;
169 extern int drive_add(const char *file, const char *fmt, ...);
170 extern int drive_init(struct drive_opt *arg, int snapshot,
171 struct QEMUMachine *machine);
173 /* acpi */
174 void qemu_system_cpu_hot_add(int cpu, int state);
175 void qemu_system_hot_add_init(const char *cpu_model);
176 void qemu_system_device_hot_add(int pcibus, int slot, int state);
178 /* device-hotplug */
179 void device_hot_add(int pcibus, const char *type, const char *opts);
180 void drive_hot_add(int pcibus, const char *devfn_string, const char *opts);
181 void device_hot_remove(int pcibus, int slot);
182 void device_hot_remove_success(int pcibus, int slot);
184 /* serial ports */
186 #define MAX_SERIAL_PORTS 4
188 extern CharDriverState *serial_hds[MAX_SERIAL_PORTS];
190 /* parallel ports */
192 #define MAX_PARALLEL_PORTS 3
194 extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
196 #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
198 #ifdef NEED_CPU_H
199 /* loader.c */
200 int get_image_size(const char *filename);
201 int load_image(const char *filename, uint8_t *addr); /* deprecated */
202 int load_image_targphys(const char *filename, target_phys_addr_t, int max_sz);
203 int load_elf(const char *filename, int64_t address_offset,
204 uint64_t *pentry, uint64_t *lowaddr, uint64_t *highaddr);
205 int load_aout(const char *filename, target_phys_addr_t addr, int max_sz);
206 int load_uimage(const char *filename, target_ulong *ep, target_ulong *loadaddr,
207 int *is_linux);
209 int fread_targphys(target_phys_addr_t dst_addr, size_t nbytes, FILE *f);
210 int fread_targphys_ok(target_phys_addr_t dst_addr, size_t nbytes, FILE *f);
211 int read_targphys(int fd, target_phys_addr_t dst_addr, size_t nbytes);
212 void pstrcpy_targphys(target_phys_addr_t dest, int buf_size,
213 const char *source);
214 #endif
216 #ifdef HAS_AUDIO
217 struct soundhw {
218 const char *name;
219 const char *descr;
220 int enabled;
221 int isa;
222 union {
223 int (*init_isa) (AudioState *s, qemu_irq *pic);
224 int (*init_pci) (PCIBus *bus, AudioState *s);
225 } init;
228 extern struct soundhw soundhw[];
229 #endif
231 void do_usb_add(const char *devname);
232 void do_usb_del(const char *devname);
233 void usb_info(void);
235 const char *get_opt_name(char *buf, int buf_size, const char *p);
236 const char *get_opt_value(char *buf, int buf_size, const char *p);
237 int get_param_value(char *buf, int buf_size,
238 const char *tag, const char *str);
239 int check_params(char *buf, int buf_size,
240 const char * const *params, const char *str);
242 #endif