2 * QEMU System Emulator header
4 * Copyright (c) 2003 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 /* we put basic includes here to avoid repeating them in device drivers */
53 #define xglue(x, y) x ## y
54 #define glue(x, y) xglue(x, y)
55 #define stringify(s) tostring(s)
56 #define tostring(s) #s
59 #if defined(WORDS_BIGENDIAN)
60 static inline uint32_t be32_to_cpu(uint32_t v
)
65 static inline uint16_t be16_to_cpu(uint16_t v
)
70 static inline uint32_t le32_to_cpu(uint32_t v
)
75 static inline uint16_t le16_to_cpu(uint16_t v
)
81 static inline uint32_t be32_to_cpu(uint32_t v
)
86 static inline uint16_t be16_to_cpu(uint16_t v
)
91 static inline uint32_t le32_to_cpu(uint32_t v
)
96 static inline uint16_t le16_to_cpu(uint16_t v
)
104 extern int reset_requested
;
106 typedef void (IOPortWriteFunc
)(void *opaque
, uint32_t address
, uint32_t data
);
107 typedef uint32_t (IOPortReadFunc
)(void *opaque
, uint32_t address
);
109 int register_ioport_read(int start
, int length
, int size
,
110 IOPortReadFunc
*func
, void *opaque
);
111 int register_ioport_write(int start
, int length
, int size
,
112 IOPortWriteFunc
*func
, void *opaque
);
113 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
);
115 void hw_error(const char *fmt
, ...);
117 int load_image(const char *filename
, uint8_t *addr
);
118 extern const char *bios_dir
;
120 void pstrcpy(char *buf
, int buf_size
, const char *str
);
121 char *pstrcat(char *buf
, int buf_size
, const char *s
);
123 int serial_open_device(void);
125 extern int vm_running
;
127 typedef void VMStopHandler(void *opaque
, int reason
);
129 int qemu_add_vm_stop_handler(VMStopHandler
*cb
, void *opaque
);
130 void qemu_del_vm_stop_handler(VMStopHandler
*cb
, void *opaque
);
133 void vm_stop(int reason
);
135 /* network redirectors support */
139 typedef struct NetDriverState
{
146 extern NetDriverState nd_table
[MAX_NICS
];
148 void net_send_packet(NetDriverState
*nd
, const uint8_t *buf
, int size
);
150 /* async I/O support */
152 typedef void IOReadHandler(void *opaque
, const uint8_t *buf
, int size
);
153 typedef int IOCanRWHandler(void *opaque
);
155 int qemu_add_fd_read_handler(int fd
, IOCanRWHandler
*fd_can_read
,
156 IOReadHandler
*fd_read
, void *opaque
);
157 void qemu_del_fd_read_handler(int fd
);
161 typedef struct QEMUClock QEMUClock
;
162 typedef struct QEMUTimer QEMUTimer
;
163 typedef void QEMUTimerCB(void *opaque
);
165 /* The real time clock should be used only for stuff which does not
166 change the virtual machine state, as it is run even if the virtual
167 machine is stopped. The real time clock has a frequency or 1000
169 extern QEMUClock
*rt_clock
;
171 /* Rge virtual clock is only run during the emulation. It is stopped
172 when the virtual machine is stopped. Virtual timers use a high
173 precision clock, usually cpu cycles (use ticks_per_sec). */
174 extern QEMUClock
*vm_clock
;
176 int64_t qemu_get_clock(QEMUClock
*clock
);
178 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, QEMUTimerCB
*cb
, void *opaque
);
179 void qemu_free_timer(QEMUTimer
*ts
);
180 void qemu_del_timer(QEMUTimer
*ts
);
181 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
);
182 int qemu_timer_pending(QEMUTimer
*ts
);
184 extern int64_t ticks_per_sec
;
185 extern int pit_min_timer_count
;
187 void cpu_enable_ticks(void);
188 void cpu_disable_ticks(void);
192 typedef FILE QEMUFile
;
194 void qemu_put_buffer(QEMUFile
*f
, const uint8_t *buf
, int size
);
195 void qemu_put_byte(QEMUFile
*f
, int v
);
196 void qemu_put_be16(QEMUFile
*f
, unsigned int v
);
197 void qemu_put_be32(QEMUFile
*f
, unsigned int v
);
198 void qemu_put_be64(QEMUFile
*f
, uint64_t v
);
199 int qemu_get_buffer(QEMUFile
*f
, uint8_t *buf
, int size
);
200 int qemu_get_byte(QEMUFile
*f
);
201 unsigned int qemu_get_be16(QEMUFile
*f
);
202 unsigned int qemu_get_be32(QEMUFile
*f
);
203 uint64_t qemu_get_be64(QEMUFile
*f
);
205 static inline void qemu_put_be64s(QEMUFile
*f
, const uint64_t *pv
)
207 qemu_put_be64(f
, *pv
);
210 static inline void qemu_put_be32s(QEMUFile
*f
, const uint32_t *pv
)
212 qemu_put_be32(f
, *pv
);
215 static inline void qemu_put_be16s(QEMUFile
*f
, const uint16_t *pv
)
217 qemu_put_be16(f
, *pv
);
220 static inline void qemu_put_8s(QEMUFile
*f
, const uint8_t *pv
)
222 qemu_put_byte(f
, *pv
);
225 static inline void qemu_get_be64s(QEMUFile
*f
, uint64_t *pv
)
227 *pv
= qemu_get_be64(f
);
230 static inline void qemu_get_be32s(QEMUFile
*f
, uint32_t *pv
)
232 *pv
= qemu_get_be32(f
);
235 static inline void qemu_get_be16s(QEMUFile
*f
, uint16_t *pv
)
237 *pv
= qemu_get_be16(f
);
240 static inline void qemu_get_8s(QEMUFile
*f
, uint8_t *pv
)
242 *pv
= qemu_get_byte(f
);
245 int64_t qemu_ftell(QEMUFile
*f
);
246 int64_t qemu_fseek(QEMUFile
*f
, int64_t pos
, int whence
);
248 typedef void SaveStateHandler(QEMUFile
*f
, void *opaque
);
249 typedef int LoadStateHandler(QEMUFile
*f
, void *opaque
, int version_id
);
251 int qemu_loadvm(const char *filename
);
252 int qemu_savevm(const char *filename
);
253 int register_savevm(const char *idstr
,
256 SaveStateHandler
*save_state
,
257 LoadStateHandler
*load_state
,
259 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
);
260 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
);
263 typedef struct BlockDriverState BlockDriverState
;
265 BlockDriverState
*bdrv_new(const char *device_name
);
266 void bdrv_delete(BlockDriverState
*bs
);
267 int bdrv_open(BlockDriverState
*bs
, const char *filename
, int snapshot
);
268 void bdrv_close(BlockDriverState
*bs
);
269 int bdrv_read(BlockDriverState
*bs
, int64_t sector_num
,
270 uint8_t *buf
, int nb_sectors
);
271 int bdrv_write(BlockDriverState
*bs
, int64_t sector_num
,
272 const uint8_t *buf
, int nb_sectors
);
273 void bdrv_get_geometry(BlockDriverState
*bs
, int64_t *nb_sectors_ptr
);
274 int bdrv_commit(BlockDriverState
*bs
);
275 void bdrv_set_boot_sector(BlockDriverState
*bs
, const uint8_t *data
, int size
);
277 #define BDRV_TYPE_HD 0
278 #define BDRV_TYPE_CDROM 1
279 #define BDRV_TYPE_FLOPPY 2
281 void bdrv_set_geometry_hint(BlockDriverState
*bs
,
282 int cyls
, int heads
, int secs
);
283 void bdrv_set_type_hint(BlockDriverState
*bs
, int type
);
284 void bdrv_get_geometry_hint(BlockDriverState
*bs
,
285 int *pcyls
, int *pheads
, int *psecs
);
286 int bdrv_get_type_hint(BlockDriverState
*bs
);
287 int bdrv_is_removable(BlockDriverState
*bs
);
288 int bdrv_is_read_only(BlockDriverState
*bs
);
289 int bdrv_is_inserted(BlockDriverState
*bs
);
290 int bdrv_is_locked(BlockDriverState
*bs
);
291 void bdrv_set_locked(BlockDriverState
*bs
, int locked
);
292 void bdrv_set_change_cb(BlockDriverState
*bs
,
293 void (*change_cb
)(void *opaque
), void *opaque
);
295 void bdrv_info(void);
296 BlockDriverState
*bdrv_find(const char *name
);
300 #define VGA_RAM_SIZE (4096 * 1024)
302 typedef struct DisplayState
{
306 void (*dpy_update
)(struct DisplayState
*s
, int x
, int y
, int w
, int h
);
307 void (*dpy_resize
)(struct DisplayState
*s
, int w
, int h
);
308 void (*dpy_refresh
)(struct DisplayState
*s
);
311 static inline void dpy_update(DisplayState
*s
, int x
, int y
, int w
, int h
)
313 s
->dpy_update(s
, x
, y
, w
, h
);
316 static inline void dpy_resize(DisplayState
*s
, int w
, int h
)
318 s
->dpy_resize(s
, w
, h
);
321 int vga_initialize(DisplayState
*ds
, uint8_t *vga_ram_base
,
322 unsigned long vga_ram_offset
, int vga_ram_size
);
323 void vga_update_display(void);
324 void vga_screen_dump(const char *filename
);
327 void sdl_display_init(DisplayState
*ds
);
332 extern BlockDriverState
*bs_table
[MAX_DISKS
];
334 void ide_init(int iobase
, int iobase2
, int irq
,
335 BlockDriverState
*hd0
, BlockDriverState
*hd1
);
345 void AUD_open (int rfreq
, int rnchannels
, audfmt_e rfmt
);
346 void AUD_reset (int rfreq
, int rnchannels
, audfmt_e rfmt
);
347 int AUD_write (void *in_buf
, int size
);
349 void AUD_adjust_estimate (int _leftover
);
350 int AUD_get_free (void);
351 int AUD_get_live (void);
352 int AUD_get_buffer_size (void);
353 void AUD_init (void);
356 typedef int (*DMA_transfer_handler
) (void *opaque
, target_ulong addr
, int size
);
357 int DMA_get_channel_mode (int nchan
);
358 void DMA_hold_DREQ (int nchan
);
359 void DMA_release_DREQ (int nchan
);
360 void DMA_schedule(int nchan
);
362 void DMA_init (void);
363 void DMA_register_channel (int nchan
,
364 DMA_transfer_handler transfer_handler
, void *opaque
);
367 void SB16_run (void);
368 void SB16_init (void);
372 extern BlockDriverState
*fd_table
[MAX_FD
];
374 typedef struct fdctrl_t fdctrl_t
;
376 fdctrl_t
*fdctrl_init (int irq_lvl
, int dma_chann
, int mem_mapped
,
378 BlockDriverState
**fds
);
379 int fdctrl_get_drive_type(fdctrl_t
*fdctrl
, int drive_num
);
383 void ne2000_init(int base
, int irq
, NetDriverState
*nd
);
387 void kbd_put_keycode(int keycode
);
389 #define MOUSE_EVENT_LBUTTON 0x01
390 #define MOUSE_EVENT_RBUTTON 0x02
391 #define MOUSE_EVENT_MBUTTON 0x04
392 void kbd_mouse_event(int dx
, int dy
, int dz
, int buttons_state
);
398 typedef struct RTCState RTCState
;
400 RTCState
*rtc_init(int base
, int irq
);
401 void rtc_set_memory(RTCState
*s
, int addr
, int val
);
402 void rtc_set_date(RTCState
*s
, const struct tm
*tm
);
406 typedef struct SerialState SerialState
;
408 extern SerialState
*serial_console
;
410 SerialState
*serial_init(int base
, int irq
, int fd
);
411 int serial_can_receive(SerialState
*s
);
412 void serial_receive_byte(SerialState
*s
, int ch
);
413 void serial_receive_break(SerialState
*s
);
417 void pic_set_irq(int irq
, int level
);
422 #define PIT_FREQ 1193182
424 typedef struct PITChannelState
{
425 int count
; /* can be 65536 */
426 uint16_t latched_count
;
429 uint8_t bcd
; /* not supported */
430 uint8_t gate
; /* timer start */
431 int64_t count_load_time
;
433 int64_t next_transition_time
;
434 QEMUTimer
*irq_timer
;
438 extern PITChannelState pit_channels
[3];
440 void pit_init(int base
, int irq
);
441 void pit_set_gate(PITChannelState
*s
, int val
);
442 int pit_get_out(PITChannelState
*s
, int64_t current_time
);
443 int pit_get_out_edges(PITChannelState
*s
);
446 void pc_init(int ram_size
, int vga_ram_size
, int boot_device
,
447 DisplayState
*ds
, const char **fd_filename
, int snapshot
,
448 const char *kernel_filename
, const char *kernel_cmdline
,
449 const char *initrd_filename
);
452 void monitor_init(void);
453 void term_printf(const char *fmt
, ...) __attribute__ ((__format__ (__printf__
, 1, 2)));
454 void term_flush(void);
455 void term_print_help(void);
459 #define DEFAULT_GDBSTUB_PORT 1234
461 int gdbserver_start(int port
);