]> Git Repo - qemu.git/blame - vl.h
Revert -disk patch, as requested by Fabrice. The general idea of this
[qemu.git] / vl.h
CommitLineData
fc01f7e7
FB
1/*
2 * QEMU System Emulator header
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
24#ifndef VL_H
25#define VL_H
26
67b915a5
FB
27/* we put basic includes here to avoid repeating them in device drivers */
28#include <stdlib.h>
29#include <stdio.h>
30#include <stdarg.h>
31#include <string.h>
32#include <inttypes.h>
85571bc7 33#include <limits.h>
8a7ddc38 34#include <time.h>
67b915a5
FB
35#include <ctype.h>
36#include <errno.h>
37#include <unistd.h>
38#include <fcntl.h>
7d3505c5 39#include <sys/stat.h>
67b915a5
FB
40
41#ifndef O_LARGEFILE
42#define O_LARGEFILE 0
43#endif
40c3bac3
FB
44#ifndef O_BINARY
45#define O_BINARY 0
46#endif
67b915a5 47
2e9671da
TS
48#ifdef __sun__
49#define ENOMEDIUM 4097
50#endif
51
67b915a5 52#ifdef _WIN32
a18e524a 53#include <windows.h>
ac62f715 54#define fsync _commit
57d1a2b6
FB
55#define lseek _lseeki64
56#define ENOTSUP 4096
19cb3738 57#define ENOMEDIUM 4097
beac80cd
FB
58extern int qemu_ftruncate64(int, int64_t);
59#define ftruncate qemu_ftruncate64
60
57d1a2b6
FB
61
62static inline char *realpath(const char *path, char *resolved_path)
63{
64 _fullpath(resolved_path, path, _MAX_PATH);
65 return resolved_path;
66}
ec3757de
FB
67
68#define PRId64 "I64d"
26a76461
FB
69#define PRIx64 "I64x"
70#define PRIu64 "I64u"
71#define PRIo64 "I64o"
67b915a5 72#endif
8a7ddc38 73
ea2384d3
FB
74#ifdef QEMU_TOOL
75
76/* we use QEMU_TOOL in the command line tools which do not depend on
77 the target CPU type */
78#include "config-host.h"
79#include <setjmp.h>
80#include "osdep.h"
81#include "bswap.h"
82
83#else
84
4f209290 85#include "audio/audio.h"
16f62432 86#include "cpu.h"
1fddef4b 87#include "gdbstub.h"
16f62432 88
ea2384d3
FB
89#endif /* !defined(QEMU_TOOL) */
90
67b915a5
FB
91#ifndef glue
92#define xglue(x, y) x ## y
93#define glue(x, y) xglue(x, y)
94#define stringify(s) tostring(s)
95#define tostring(s) #s
96#endif
97
24236869
FB
98#ifndef MIN
99#define MIN(a, b) (((a) < (b)) ? (a) : (b))
100#endif
101#ifndef MAX
102#define MAX(a, b) (((a) > (b)) ? (a) : (b))
103#endif
104
33e3963e 105/* vl.c */
80cabfad 106uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c);
313aa567 107
80cabfad
FB
108void hw_error(const char *fmt, ...);
109
80cabfad
FB
110extern const char *bios_dir;
111
112void pstrcpy(char *buf, int buf_size, const char *str);
113char *pstrcat(char *buf, int buf_size, const char *s);
82c643ff 114int strstart(const char *str, const char *val, const char **ptr);
c4b1fcc0 115
8a7ddc38
FB
116extern int vm_running;
117
0bd48850
FB
118typedef struct vm_change_state_entry VMChangeStateEntry;
119typedef void VMChangeStateHandler(void *opaque, int running);
8a7ddc38
FB
120typedef void VMStopHandler(void *opaque, int reason);
121
0bd48850
FB
122VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
123 void *opaque);
124void qemu_del_vm_change_state_handler(VMChangeStateEntry *e);
125
8a7ddc38
FB
126int qemu_add_vm_stop_handler(VMStopHandler *cb, void *opaque);
127void qemu_del_vm_stop_handler(VMStopHandler *cb, void *opaque);
128
129void vm_start(void);
130void vm_stop(int reason);
131
bb0c6722
FB
132typedef void QEMUResetHandler(void *opaque);
133
134void qemu_register_reset(QEMUResetHandler *func, void *opaque);
135void qemu_system_reset_request(void);
136void qemu_system_shutdown_request(void);
3475187d
FB
137void qemu_system_powerdown_request(void);
138#if !defined(TARGET_SPARC)
139// Please implement a power failure function to signal the OS
140#define qemu_system_powerdown() do{}while(0)
141#else
142void qemu_system_powerdown(void);
143#endif
bb0c6722 144
ea2384d3
FB
145void main_loop_wait(int timeout);
146
0ced6589
FB
147extern int ram_size;
148extern int bios_size;
ee22c2f7 149extern int rtc_utc;
1f04275e 150extern int cirrus_vga_enabled;
28b9b5af
FB
151extern int graphic_width;
152extern int graphic_height;
153extern int graphic_depth;
3d11d0eb 154extern const char *keyboard_layout;
d993e026 155extern int kqemu_allowed;
a09db21f 156extern int win2k_install_hack;
bb36d470 157extern int usb_enabled;
6a00d601 158extern int smp_cpus;
667accab 159extern int no_quit;
0ced6589 160
9ae02555
TS
161#define MAX_OPTION_ROMS 16
162extern const char *option_rom[MAX_OPTION_ROMS];
163extern int nb_option_roms;
164
0ced6589 165/* XXX: make it dynamic */
75956cf0 166#if defined (TARGET_PPC) || defined (TARGET_SPARC64)
d5295253 167#define BIOS_SIZE ((512 + 32) * 1024)
6af0bf9c
FB
168#elif defined(TARGET_MIPS)
169#define BIOS_SIZE (128 * 1024)
0ced6589 170#else
7587cf44 171#define BIOS_SIZE ((256 + 64) * 1024)
0ced6589 172#endif
aaaa7df6 173
63066f4f
FB
174/* keyboard/mouse support */
175
176#define MOUSE_EVENT_LBUTTON 0x01
177#define MOUSE_EVENT_RBUTTON 0x02
178#define MOUSE_EVENT_MBUTTON 0x04
179
180typedef void QEMUPutKBDEvent(void *opaque, int keycode);
181typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state);
182
455204eb
TS
183typedef struct QEMUPutMouseEntry {
184 QEMUPutMouseEvent *qemu_put_mouse_event;
185 void *qemu_put_mouse_event_opaque;
186 int qemu_put_mouse_event_absolute;
187 char *qemu_put_mouse_event_name;
188
189 /* used internally by qemu for handling mice */
190 struct QEMUPutMouseEntry *next;
191} QEMUPutMouseEntry;
192
63066f4f 193void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque);
455204eb
TS
194QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func,
195 void *opaque, int absolute,
196 const char *name);
197void qemu_remove_mouse_event_handler(QEMUPutMouseEntry *entry);
63066f4f
FB
198
199void kbd_put_keycode(int keycode);
200void kbd_mouse_event(int dx, int dy, int dz, int buttons_state);
09b26c5e 201int kbd_mouse_is_absolute(void);
63066f4f 202
455204eb
TS
203void do_info_mice(void);
204void do_mouse_set(int index);
205
82c643ff
FB
206/* keysym is a unicode code except for special keys (see QEMU_KEY_xxx
207 constants) */
208#define QEMU_KEY_ESC1(c) ((c) | 0xe100)
209#define QEMU_KEY_BACKSPACE 0x007f
210#define QEMU_KEY_UP QEMU_KEY_ESC1('A')
211#define QEMU_KEY_DOWN QEMU_KEY_ESC1('B')
212#define QEMU_KEY_RIGHT QEMU_KEY_ESC1('C')
213#define QEMU_KEY_LEFT QEMU_KEY_ESC1('D')
214#define QEMU_KEY_HOME QEMU_KEY_ESC1(1)
215#define QEMU_KEY_END QEMU_KEY_ESC1(4)
216#define QEMU_KEY_PAGEUP QEMU_KEY_ESC1(5)
217#define QEMU_KEY_PAGEDOWN QEMU_KEY_ESC1(6)
218#define QEMU_KEY_DELETE QEMU_KEY_ESC1(3)
219
220#define QEMU_KEY_CTRL_UP 0xe400
221#define QEMU_KEY_CTRL_DOWN 0xe401
222#define QEMU_KEY_CTRL_LEFT 0xe402
223#define QEMU_KEY_CTRL_RIGHT 0xe403
224#define QEMU_KEY_CTRL_HOME 0xe404
225#define QEMU_KEY_CTRL_END 0xe405
226#define QEMU_KEY_CTRL_PAGEUP 0xe406
227#define QEMU_KEY_CTRL_PAGEDOWN 0xe407
228
229void kbd_put_keysym(int keysym);
230
c20709aa
FB
231/* async I/O support */
232
233typedef void IOReadHandler(void *opaque, const uint8_t *buf, int size);
234typedef int IOCanRWHandler(void *opaque);
7c9d8e07 235typedef void IOHandler(void *opaque);
c20709aa 236
7c9d8e07
FB
237int qemu_set_fd_handler2(int fd,
238 IOCanRWHandler *fd_read_poll,
239 IOHandler *fd_read,
240 IOHandler *fd_write,
241 void *opaque);
242int qemu_set_fd_handler(int fd,
243 IOHandler *fd_read,
244 IOHandler *fd_write,
245 void *opaque);
c20709aa 246
f331110f
FB
247/* Polling handling */
248
249/* return TRUE if no sleep should be done afterwards */
250typedef int PollingFunc(void *opaque);
251
252int qemu_add_polling_cb(PollingFunc *func, void *opaque);
253void qemu_del_polling_cb(PollingFunc *func, void *opaque);
254
a18e524a
FB
255#ifdef _WIN32
256/* Wait objects handling */
257typedef void WaitObjectFunc(void *opaque);
258
259int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
260void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
261#endif
262
86e94dea
TS
263typedef struct QEMUBH QEMUBH;
264
82c643ff
FB
265/* character device */
266
267#define CHR_EVENT_BREAK 0 /* serial break char */
ea2384d3 268#define CHR_EVENT_FOCUS 1 /* focus to this terminal (modal input needed) */
86e94dea 269#define CHR_EVENT_RESET 2 /* new connection established */
2122c51a
FB
270
271
272#define CHR_IOCTL_SERIAL_SET_PARAMS 1
273typedef struct {
274 int speed;
275 int parity;
276 int data_bits;
277 int stop_bits;
278} QEMUSerialSetParams;
279
280#define CHR_IOCTL_SERIAL_SET_BREAK 2
281
282#define CHR_IOCTL_PP_READ_DATA 3
283#define CHR_IOCTL_PP_WRITE_DATA 4
284#define CHR_IOCTL_PP_READ_CONTROL 5
285#define CHR_IOCTL_PP_WRITE_CONTROL 6
286#define CHR_IOCTL_PP_READ_STATUS 7
287
82c643ff
FB
288typedef void IOEventHandler(void *opaque, int event);
289
290typedef struct CharDriverState {
291 int (*chr_write)(struct CharDriverState *s, const uint8_t *buf, int len);
292 void (*chr_add_read_handler)(struct CharDriverState *s,
293 IOCanRWHandler *fd_can_read,
294 IOReadHandler *fd_read, void *opaque);
2122c51a 295 int (*chr_ioctl)(struct CharDriverState *s, int cmd, void *arg);
82c643ff 296 IOEventHandler *chr_event;
eb45f5fe 297 void (*chr_send_event)(struct CharDriverState *chr, int event);
f331110f 298 void (*chr_close)(struct CharDriverState *chr);
82c643ff 299 void *opaque;
86e94dea 300 QEMUBH *bh;
82c643ff
FB
301} CharDriverState;
302
303void qemu_chr_printf(CharDriverState *s, const char *fmt, ...);
304int qemu_chr_write(CharDriverState *s, const uint8_t *buf, int len);
ea2384d3 305void qemu_chr_send_event(CharDriverState *s, int event);
82c643ff
FB
306void qemu_chr_add_read_handler(CharDriverState *s,
307 IOCanRWHandler *fd_can_read,
308 IOReadHandler *fd_read, void *opaque);
309void qemu_chr_add_event_handler(CharDriverState *s, IOEventHandler *chr_event);
2122c51a 310int qemu_chr_ioctl(CharDriverState *s, int cmd, void *arg);
86e94dea 311void qemu_chr_reset(CharDriverState *s);
f8d179e3 312
82c643ff
FB
313/* consoles */
314
315typedef struct DisplayState DisplayState;
316typedef struct TextConsole TextConsole;
317
95219897
PB
318typedef void (*vga_hw_update_ptr)(void *);
319typedef void (*vga_hw_invalidate_ptr)(void *);
320typedef void (*vga_hw_screen_dump_ptr)(void *, const char *);
321
322TextConsole *graphic_console_init(DisplayState *ds, vga_hw_update_ptr update,
323 vga_hw_invalidate_ptr invalidate,
324 vga_hw_screen_dump_ptr screen_dump,
325 void *opaque);
326void vga_hw_update(void);
327void vga_hw_invalidate(void);
328void vga_hw_screen_dump(const char *filename);
329
330int is_graphic_console(void);
82c643ff
FB
331CharDriverState *text_console_init(DisplayState *ds);
332void console_select(unsigned int index);
333
8d11df9e
FB
334/* serial ports */
335
336#define MAX_SERIAL_PORTS 4
337
338extern CharDriverState *serial_hds[MAX_SERIAL_PORTS];
339
6508fe59
FB
340/* parallel ports */
341
342#define MAX_PARALLEL_PORTS 3
343
344extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
345
7c9d8e07
FB
346/* VLANs support */
347
348typedef struct VLANClientState VLANClientState;
349
350struct VLANClientState {
351 IOReadHandler *fd_read;
d861b05e
PB
352 /* Packets may still be sent if this returns zero. It's used to
353 rate-limit the slirp code. */
354 IOCanRWHandler *fd_can_read;
7c9d8e07
FB
355 void *opaque;
356 struct VLANClientState *next;
357 struct VLANState *vlan;
358 char info_str[256];
359};
360
361typedef struct VLANState {
362 int id;
363 VLANClientState *first_client;
364 struct VLANState *next;
365} VLANState;
366
367VLANState *qemu_find_vlan(int id);
368VLANClientState *qemu_new_vlan_client(VLANState *vlan,
d861b05e
PB
369 IOReadHandler *fd_read,
370 IOCanRWHandler *fd_can_read,
371 void *opaque);
372int qemu_can_send_packet(VLANClientState *vc);
7c9d8e07 373void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size);
d861b05e 374void qemu_handler_true(void *opaque);
7c9d8e07
FB
375
376void do_info_network(void);
377
7fb843f8
FB
378/* TAP win32 */
379int tap_win32_init(VLANState *vlan, const char *ifname);
7fb843f8 380
7c9d8e07 381/* NIC info */
c4b1fcc0
FB
382
383#define MAX_NICS 8
384
7c9d8e07 385typedef struct NICInfo {
c4b1fcc0 386 uint8_t macaddr[6];
a41b2ff2 387 const char *model;
7c9d8e07
FB
388 VLANState *vlan;
389} NICInfo;
c4b1fcc0
FB
390
391extern int nb_nics;
7c9d8e07 392extern NICInfo nd_table[MAX_NICS];
8a7ddc38
FB
393
394/* timers */
395
396typedef struct QEMUClock QEMUClock;
397typedef struct QEMUTimer QEMUTimer;
398typedef void QEMUTimerCB(void *opaque);
399
400/* The real time clock should be used only for stuff which does not
401 change the virtual machine state, as it is run even if the virtual
69b91039 402 machine is stopped. The real time clock has a frequency of 1000
8a7ddc38
FB
403 Hz. */
404extern QEMUClock *rt_clock;
405
e80cfcfc 406/* The virtual clock is only run during the emulation. It is stopped
8a7ddc38
FB
407 when the virtual machine is stopped. Virtual timers use a high
408 precision clock, usually cpu cycles (use ticks_per_sec). */
409extern QEMUClock *vm_clock;
410
411int64_t qemu_get_clock(QEMUClock *clock);
412
413QEMUTimer *qemu_new_timer(QEMUClock *clock, QEMUTimerCB *cb, void *opaque);
414void qemu_free_timer(QEMUTimer *ts);
415void qemu_del_timer(QEMUTimer *ts);
416void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time);
417int qemu_timer_pending(QEMUTimer *ts);
418
419extern int64_t ticks_per_sec;
420extern int pit_min_timer_count;
421
1dce7c3c 422int64_t cpu_get_ticks(void);
8a7ddc38
FB
423void cpu_enable_ticks(void);
424void cpu_disable_ticks(void);
425
426/* VM Load/Save */
427
faea38e7 428typedef struct QEMUFile QEMUFile;
8a7ddc38 429
faea38e7
FB
430QEMUFile *qemu_fopen(const char *filename, const char *mode);
431void qemu_fflush(QEMUFile *f);
432void qemu_fclose(QEMUFile *f);
8a7ddc38
FB
433void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size);
434void qemu_put_byte(QEMUFile *f, int v);
435void qemu_put_be16(QEMUFile *f, unsigned int v);
436void qemu_put_be32(QEMUFile *f, unsigned int v);
437void qemu_put_be64(QEMUFile *f, uint64_t v);
438int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size);
439int qemu_get_byte(QEMUFile *f);
440unsigned int qemu_get_be16(QEMUFile *f);
441unsigned int qemu_get_be32(QEMUFile *f);
442uint64_t qemu_get_be64(QEMUFile *f);
443
444static inline void qemu_put_be64s(QEMUFile *f, const uint64_t *pv)
445{
446 qemu_put_be64(f, *pv);
447}
448
449static inline void qemu_put_be32s(QEMUFile *f, const uint32_t *pv)
450{
451 qemu_put_be32(f, *pv);
452}
453
454static inline void qemu_put_be16s(QEMUFile *f, const uint16_t *pv)
455{
456 qemu_put_be16(f, *pv);
457}
458
459static inline void qemu_put_8s(QEMUFile *f, const uint8_t *pv)
460{
461 qemu_put_byte(f, *pv);
462}
463
464static inline void qemu_get_be64s(QEMUFile *f, uint64_t *pv)
465{
466 *pv = qemu_get_be64(f);
467}
468
469static inline void qemu_get_be32s(QEMUFile *f, uint32_t *pv)
470{
471 *pv = qemu_get_be32(f);
472}
473
474static inline void qemu_get_be16s(QEMUFile *f, uint16_t *pv)
475{
476 *pv = qemu_get_be16(f);
477}
478
479static inline void qemu_get_8s(QEMUFile *f, uint8_t *pv)
480{
481 *pv = qemu_get_byte(f);
482}
483
c27004ec
FB
484#if TARGET_LONG_BITS == 64
485#define qemu_put_betl qemu_put_be64
486#define qemu_get_betl qemu_get_be64
487#define qemu_put_betls qemu_put_be64s
488#define qemu_get_betls qemu_get_be64s
489#else
490#define qemu_put_betl qemu_put_be32
491#define qemu_get_betl qemu_get_be32
492#define qemu_put_betls qemu_put_be32s
493#define qemu_get_betls qemu_get_be32s
494#endif
495
8a7ddc38
FB
496int64_t qemu_ftell(QEMUFile *f);
497int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence);
498
499typedef void SaveStateHandler(QEMUFile *f, void *opaque);
500typedef int LoadStateHandler(QEMUFile *f, void *opaque, int version_id);
501
8a7ddc38
FB
502int register_savevm(const char *idstr,
503 int instance_id,
504 int version_id,
505 SaveStateHandler *save_state,
506 LoadStateHandler *load_state,
507 void *opaque);
508void qemu_get_timer(QEMUFile *f, QEMUTimer *ts);
509void qemu_put_timer(QEMUFile *f, QEMUTimer *ts);
c4b1fcc0 510
6a00d601
FB
511void cpu_save(QEMUFile *f, void *opaque);
512int cpu_load(QEMUFile *f, void *opaque, int version_id);
513
faea38e7
FB
514void do_savevm(const char *name);
515void do_loadvm(const char *name);
516void do_delvm(const char *name);
517void do_info_snapshots(void);
518
83f64091 519/* bottom halves */
83f64091
FB
520typedef void QEMUBHFunc(void *opaque);
521
522QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque);
523void qemu_bh_schedule(QEMUBH *bh);
524void qemu_bh_cancel(QEMUBH *bh);
525void qemu_bh_delete(QEMUBH *bh);
6eb5733a 526int qemu_bh_poll(void);
83f64091 527
fc01f7e7
FB
528/* block.c */
529typedef struct BlockDriverState BlockDriverState;
ea2384d3
FB
530typedef struct BlockDriver BlockDriver;
531
532extern BlockDriver bdrv_raw;
19cb3738 533extern BlockDriver bdrv_host_device;
ea2384d3
FB
534extern BlockDriver bdrv_cow;
535extern BlockDriver bdrv_qcow;
536extern BlockDriver bdrv_vmdk;
3c56521b 537extern BlockDriver bdrv_cloop;
585d0ed9 538extern BlockDriver bdrv_dmg;
a8753c34 539extern BlockDriver bdrv_bochs;
6a0f9e82 540extern BlockDriver bdrv_vpc;
de167e41 541extern BlockDriver bdrv_vvfat;
faea38e7
FB
542extern BlockDriver bdrv_qcow2;
543
544typedef struct BlockDriverInfo {
545 /* in bytes, 0 if irrelevant */
546 int cluster_size;
547 /* offset at which the VM state can be saved (0 if not possible) */
548 int64_t vm_state_offset;
549} BlockDriverInfo;
550
551typedef struct QEMUSnapshotInfo {
552 char id_str[128]; /* unique snapshot id */
553 /* the following fields are informative. They are not needed for
554 the consistency of the snapshot */
555 char name[256]; /* user choosen name */
556 uint32_t vm_state_size; /* VM state info size */
557 uint32_t date_sec; /* UTC date of the snapshot */
558 uint32_t date_nsec;
559 uint64_t vm_clock_nsec; /* VM clock relative to boot */
560} QEMUSnapshotInfo;
ea2384d3 561
83f64091
FB
562#define BDRV_O_RDONLY 0x0000
563#define BDRV_O_RDWR 0x0002
564#define BDRV_O_ACCESS 0x0003
565#define BDRV_O_CREAT 0x0004 /* create an empty file */
566#define BDRV_O_SNAPSHOT 0x0008 /* open the file read only and save writes in a snapshot */
567#define BDRV_O_FILE 0x0010 /* open as a raw file (do not try to
568 use a disk image format on top of
569 it (default for
570 bdrv_file_open()) */
571
ea2384d3
FB
572void bdrv_init(void);
573BlockDriver *bdrv_find_format(const char *format_name);
574int bdrv_create(BlockDriver *drv,
575 const char *filename, int64_t size_in_sectors,
576 const char *backing_file, int flags);
c4b1fcc0
FB
577BlockDriverState *bdrv_new(const char *device_name);
578void bdrv_delete(BlockDriverState *bs);
83f64091
FB
579int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags);
580int bdrv_open(BlockDriverState *bs, const char *filename, int flags);
581int bdrv_open2(BlockDriverState *bs, const char *filename, int flags,
ea2384d3 582 BlockDriver *drv);
fc01f7e7
FB
583void bdrv_close(BlockDriverState *bs);
584int bdrv_read(BlockDriverState *bs, int64_t sector_num,
585 uint8_t *buf, int nb_sectors);
586int bdrv_write(BlockDriverState *bs, int64_t sector_num,
587 const uint8_t *buf, int nb_sectors);
83f64091
FB
588int bdrv_pread(BlockDriverState *bs, int64_t offset,
589 void *buf, int count);
590int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
591 const void *buf, int count);
592int bdrv_truncate(BlockDriverState *bs, int64_t offset);
593int64_t bdrv_getlength(BlockDriverState *bs);
fc01f7e7 594void bdrv_get_geometry(BlockDriverState *bs, int64_t *nb_sectors_ptr);
33e3963e 595int bdrv_commit(BlockDriverState *bs);
77fef8c1 596void bdrv_set_boot_sector(BlockDriverState *bs, const uint8_t *data, int size);
83f64091
FB
597/* async block I/O */
598typedef struct BlockDriverAIOCB BlockDriverAIOCB;
599typedef void BlockDriverCompletionFunc(void *opaque, int ret);
600
ce1a14dc
PB
601BlockDriverAIOCB *bdrv_aio_read(BlockDriverState *bs, int64_t sector_num,
602 uint8_t *buf, int nb_sectors,
603 BlockDriverCompletionFunc *cb, void *opaque);
604BlockDriverAIOCB *bdrv_aio_write(BlockDriverState *bs, int64_t sector_num,
605 const uint8_t *buf, int nb_sectors,
606 BlockDriverCompletionFunc *cb, void *opaque);
83f64091 607void bdrv_aio_cancel(BlockDriverAIOCB *acb);
83f64091
FB
608
609void qemu_aio_init(void);
610void qemu_aio_poll(void);
6192bc37 611void qemu_aio_flush(void);
83f64091
FB
612void qemu_aio_wait_start(void);
613void qemu_aio_wait(void);
614void qemu_aio_wait_end(void);
615
7a6cba61
PB
616/* Ensure contents are flushed to disk. */
617void bdrv_flush(BlockDriverState *bs);
33e3963e 618
c4b1fcc0
FB
619#define BDRV_TYPE_HD 0
620#define BDRV_TYPE_CDROM 1
621#define BDRV_TYPE_FLOPPY 2
4dbb0f50
TS
622#define BIOS_ATA_TRANSLATION_AUTO 0
623#define BIOS_ATA_TRANSLATION_NONE 1
624#define BIOS_ATA_TRANSLATION_LBA 2
625#define BIOS_ATA_TRANSLATION_LARGE 3
626#define BIOS_ATA_TRANSLATION_RECHS 4
c4b1fcc0
FB
627
628void bdrv_set_geometry_hint(BlockDriverState *bs,
629 int cyls, int heads, int secs);
630void bdrv_set_type_hint(BlockDriverState *bs, int type);
46d4767d 631void bdrv_set_translation_hint(BlockDriverState *bs, int translation);
c4b1fcc0
FB
632void bdrv_get_geometry_hint(BlockDriverState *bs,
633 int *pcyls, int *pheads, int *psecs);
634int bdrv_get_type_hint(BlockDriverState *bs);
46d4767d 635int bdrv_get_translation_hint(BlockDriverState *bs);
c4b1fcc0
FB
636int bdrv_is_removable(BlockDriverState *bs);
637int bdrv_is_read_only(BlockDriverState *bs);
638int bdrv_is_inserted(BlockDriverState *bs);
19cb3738 639int bdrv_media_changed(BlockDriverState *bs);
c4b1fcc0
FB
640int bdrv_is_locked(BlockDriverState *bs);
641void bdrv_set_locked(BlockDriverState *bs, int locked);
19cb3738 642void bdrv_eject(BlockDriverState *bs, int eject_flag);
c4b1fcc0
FB
643void bdrv_set_change_cb(BlockDriverState *bs,
644 void (*change_cb)(void *opaque), void *opaque);
ea2384d3 645void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size);
c4b1fcc0
FB
646void bdrv_info(void);
647BlockDriverState *bdrv_find(const char *name);
82c643ff 648void bdrv_iterate(void (*it)(void *opaque, const char *name), void *opaque);
ea2384d3
FB
649int bdrv_is_encrypted(BlockDriverState *bs);
650int bdrv_set_key(BlockDriverState *bs, const char *key);
651void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
652 void *opaque);
653const char *bdrv_get_device_name(BlockDriverState *bs);
faea38e7
FB
654int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
655 const uint8_t *buf, int nb_sectors);
656int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi);
c4b1fcc0 657
83f64091
FB
658void bdrv_get_backing_filename(BlockDriverState *bs,
659 char *filename, int filename_size);
faea38e7
FB
660int bdrv_snapshot_create(BlockDriverState *bs,
661 QEMUSnapshotInfo *sn_info);
662int bdrv_snapshot_goto(BlockDriverState *bs,
663 const char *snapshot_id);
664int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id);
665int bdrv_snapshot_list(BlockDriverState *bs,
666 QEMUSnapshotInfo **psn_info);
667char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn);
668
669char *get_human_readable_size(char *buf, int buf_size, int64_t size);
83f64091
FB
670int path_is_absolute(const char *path);
671void path_combine(char *dest, int dest_size,
672 const char *base_path,
673 const char *filename);
ea2384d3
FB
674
675#ifndef QEMU_TOOL
54fa5af5
FB
676
677typedef void QEMUMachineInitFunc(int ram_size, int vga_ram_size,
678 int boot_device,
679 DisplayState *ds, const char **fd_filename, int snapshot,
680 const char *kernel_filename, const char *kernel_cmdline,
681 const char *initrd_filename);
682
683typedef struct QEMUMachine {
684 const char *name;
685 const char *desc;
686 QEMUMachineInitFunc *init;
687 struct QEMUMachine *next;
688} QEMUMachine;
689
690int qemu_register_machine(QEMUMachine *m);
691
692typedef void SetIRQFunc(void *opaque, int irq_num, int level);
3de388f6 693typedef void IRQRequestFunc(void *opaque, int level);
54fa5af5 694
26aa7d72
FB
695/* ISA bus */
696
697extern target_phys_addr_t isa_mem_base;
698
699typedef void (IOPortWriteFunc)(void *opaque, uint32_t address, uint32_t data);
700typedef uint32_t (IOPortReadFunc)(void *opaque, uint32_t address);
701
702int register_ioport_read(int start, int length, int size,
703 IOPortReadFunc *func, void *opaque);
704int register_ioport_write(int start, int length, int size,
705 IOPortWriteFunc *func, void *opaque);
69b91039
FB
706void isa_unassign_ioport(int start, int length);
707
aef445bd
PB
708void isa_mmio_init(target_phys_addr_t base, target_phys_addr_t size);
709
69b91039
FB
710/* PCI bus */
711
69b91039
FB
712extern target_phys_addr_t pci_mem_base;
713
46e50e9d 714typedef struct PCIBus PCIBus;
69b91039
FB
715typedef struct PCIDevice PCIDevice;
716
717typedef void PCIConfigWriteFunc(PCIDevice *pci_dev,
718 uint32_t address, uint32_t data, int len);
719typedef uint32_t PCIConfigReadFunc(PCIDevice *pci_dev,
720 uint32_t address, int len);
721typedef void PCIMapIORegionFunc(PCIDevice *pci_dev, int region_num,
722 uint32_t addr, uint32_t size, int type);
723
724#define PCI_ADDRESS_SPACE_MEM 0x00
725#define PCI_ADDRESS_SPACE_IO 0x01
726#define PCI_ADDRESS_SPACE_MEM_PREFETCH 0x08
727
728typedef struct PCIIORegion {
5768f5ac 729 uint32_t addr; /* current PCI mapping address. -1 means not mapped */
69b91039
FB
730 uint32_t size;
731 uint8_t type;
732 PCIMapIORegionFunc *map_func;
733} PCIIORegion;
734
8a8696a3
FB
735#define PCI_ROM_SLOT 6
736#define PCI_NUM_REGIONS 7
502a5395
PB
737
738#define PCI_DEVICES_MAX 64
739
740#define PCI_VENDOR_ID 0x00 /* 16 bits */
741#define PCI_DEVICE_ID 0x02 /* 16 bits */
742#define PCI_COMMAND 0x04 /* 16 bits */
743#define PCI_COMMAND_IO 0x1 /* Enable response in I/O space */
744#define PCI_COMMAND_MEMORY 0x2 /* Enable response in Memory space */
745#define PCI_CLASS_DEVICE 0x0a /* Device class */
746#define PCI_INTERRUPT_LINE 0x3c /* 8 bits */
747#define PCI_INTERRUPT_PIN 0x3d /* 8 bits */
748#define PCI_MIN_GNT 0x3e /* 8 bits */
749#define PCI_MAX_LAT 0x3f /* 8 bits */
750
69b91039
FB
751struct PCIDevice {
752 /* PCI config space */
753 uint8_t config[256];
754
755 /* the following fields are read only */
46e50e9d 756 PCIBus *bus;
69b91039
FB
757 int devfn;
758 char name[64];
8a8696a3 759 PCIIORegion io_regions[PCI_NUM_REGIONS];
69b91039
FB
760
761 /* do not access the following fields */
762 PCIConfigReadFunc *config_read;
763 PCIConfigWriteFunc *config_write;
502a5395 764 /* ??? This is a PC-specific hack, and should be removed. */
5768f5ac 765 int irq_index;
d2b59317
PB
766
767 /* Current IRQ levels. Used internally by the generic PCI code. */
768 int irq_state[4];
69b91039
FB
769};
770
46e50e9d
FB
771PCIDevice *pci_register_device(PCIBus *bus, const char *name,
772 int instance_size, int devfn,
69b91039
FB
773 PCIConfigReadFunc *config_read,
774 PCIConfigWriteFunc *config_write);
775
776void pci_register_io_region(PCIDevice *pci_dev, int region_num,
777 uint32_t size, int type,
778 PCIMapIORegionFunc *map_func);
779
5768f5ac
FB
780void pci_set_irq(PCIDevice *pci_dev, int irq_num, int level);
781
782uint32_t pci_default_read_config(PCIDevice *d,
783 uint32_t address, int len);
784void pci_default_write_config(PCIDevice *d,
785 uint32_t address, uint32_t val, int len);
89b6b508
FB
786void pci_device_save(PCIDevice *s, QEMUFile *f);
787int pci_device_load(PCIDevice *s, QEMUFile *f);
5768f5ac 788
d2b59317
PB
789typedef void (*pci_set_irq_fn)(void *pic, int irq_num, int level);
790typedef int (*pci_map_irq_fn)(PCIDevice *pci_dev, int irq_num);
791PCIBus *pci_register_bus(pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
80b3ada7 792 void *pic, int devfn_min, int nirq);
502a5395
PB
793
794void pci_nic_init(PCIBus *bus, NICInfo *nd);
795void pci_data_write(void *opaque, uint32_t addr, uint32_t val, int len);
796uint32_t pci_data_read(void *opaque, uint32_t addr, int len);
797int pci_bus_num(PCIBus *s);
80b3ada7 798void pci_for_each_device(int bus_num, void (*fn)(PCIDevice *d));
9995c51f 799
5768f5ac 800void pci_info(void);
80b3ada7
PB
801PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint32_t id,
802 pci_map_irq_fn map_irq, const char *name);
26aa7d72 803
502a5395 804/* prep_pci.c */
46e50e9d 805PCIBus *pci_prep_init(void);
77d4bc34 806
502a5395
PB
807/* grackle_pci.c */
808PCIBus *pci_grackle_init(uint32_t base, void *pic);
809
810/* unin_pci.c */
811PCIBus *pci_pmac_init(void *pic);
812
813/* apb_pci.c */
814PCIBus *pci_apb_init(target_ulong special_base, target_ulong mem_base,
815 void *pic);
816
e69954b9 817PCIBus *pci_vpb_init(void *pic, int irq, int realview);
502a5395
PB
818
819/* piix_pci.c */
f00fc47c
FB
820PCIBus *i440fx_init(PCIDevice **pi440fx_state);
821void i440fx_set_smm(PCIDevice *d, int val);
502a5395 822int piix3_init(PCIBus *bus);
f00fc47c 823void i440fx_init_memory_mappings(PCIDevice *d);
a41b2ff2 824
28b9b5af
FB
825/* openpic.c */
826typedef struct openpic_t openpic_t;
54fa5af5 827void openpic_set_irq(void *opaque, int n_IRQ, int level);
7668a27f
FB
828openpic_t *openpic_init (PCIBus *bus, int *pmem_index, int nb_cpus,
829 CPUState **envp);
28b9b5af 830
54fa5af5
FB
831/* heathrow_pic.c */
832typedef struct HeathrowPICS HeathrowPICS;
833void heathrow_pic_set_irq(void *opaque, int num, int level);
834HeathrowPICS *heathrow_pic_init(int *pmem_index);
835
6a36d84e
FB
836#ifdef HAS_AUDIO
837struct soundhw {
838 const char *name;
839 const char *descr;
840 int enabled;
841 int isa;
842 union {
843 int (*init_isa) (AudioState *s);
844 int (*init_pci) (PCIBus *bus, AudioState *s);
845 } init;
846};
847
848extern struct soundhw soundhw[];
849#endif
850
313aa567
FB
851/* vga.c */
852
74a14f22 853#define VGA_RAM_SIZE (8192 * 1024)
313aa567 854
82c643ff 855struct DisplayState {
313aa567
FB
856 uint8_t *data;
857 int linesize;
858 int depth;
d3079cd2 859 int bgr; /* BGR color order instead of RGB. Only valid for depth == 32 */
82c643ff
FB
860 int width;
861 int height;
24236869
FB
862 void *opaque;
863
313aa567
FB
864 void (*dpy_update)(struct DisplayState *s, int x, int y, int w, int h);
865 void (*dpy_resize)(struct DisplayState *s, int w, int h);
866 void (*dpy_refresh)(struct DisplayState *s);
24236869 867 void (*dpy_copy)(struct DisplayState *s, int src_x, int src_y, int dst_x, int dst_y, int w, int h);
82c643ff 868};
313aa567
FB
869
870static inline void dpy_update(DisplayState *s, int x, int y, int w, int h)
871{
872 s->dpy_update(s, x, y, w, h);
873}
874
875static inline void dpy_resize(DisplayState *s, int w, int h)
876{
877 s->dpy_resize(s, w, h);
878}
879
89b6b508
FB
880int isa_vga_init(DisplayState *ds, uint8_t *vga_ram_base,
881 unsigned long vga_ram_offset, int vga_ram_size);
882int pci_vga_init(PCIBus *bus, DisplayState *ds, uint8_t *vga_ram_base,
883 unsigned long vga_ram_offset, int vga_ram_size,
884 unsigned long vga_bios_offset, int vga_bios_size);
313aa567 885
d6bfa22f 886/* cirrus_vga.c */
46e50e9d 887void pci_cirrus_vga_init(PCIBus *bus, DisplayState *ds, uint8_t *vga_ram_base,
d6bfa22f 888 unsigned long vga_ram_offset, int vga_ram_size);
d6bfa22f
FB
889void isa_cirrus_vga_init(DisplayState *ds, uint8_t *vga_ram_base,
890 unsigned long vga_ram_offset, int vga_ram_size);
891
313aa567 892/* sdl.c */
d63d307f 893void sdl_display_init(DisplayState *ds, int full_screen);
313aa567 894
da4dbf74
FB
895/* cocoa.m */
896void cocoa_display_init(DisplayState *ds, int full_screen);
897
24236869 898/* vnc.c */
73fc9742 899void vnc_display_init(DisplayState *ds, const char *display);
24236869 900
5391d806
FB
901/* ide.c */
902#define MAX_DISKS 4
903
faea38e7 904extern BlockDriverState *bs_table[MAX_DISKS + 1];
5391d806 905
69b91039
FB
906void isa_ide_init(int iobase, int iobase2, int irq,
907 BlockDriverState *hd0, BlockDriverState *hd1);
54fa5af5
FB
908void pci_cmd646_ide_init(PCIBus *bus, BlockDriverState **hd_table,
909 int secondary_ide_enabled);
502a5395 910void pci_piix3_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn);
28b9b5af 911int pmac_ide_init (BlockDriverState **hd_table,
54fa5af5 912 SetIRQFunc *set_irq, void *irq_opaque, int irq);
5391d806 913
2e5d83bb
PB
914/* cdrom.c */
915int cdrom_read_toc(int nb_sectors, uint8_t *buf, int msf, int start_track);
916int cdrom_read_toc_raw(int nb_sectors, uint8_t *buf, int msf, int session_num);
917
1d14ffa9 918/* es1370.c */
c0fe3827 919int es1370_init (PCIBus *bus, AudioState *s);
1d14ffa9 920
fb065187 921/* sb16.c */
c0fe3827 922int SB16_init (AudioState *s);
fb065187
FB
923
924/* adlib.c */
c0fe3827 925int Adlib_init (AudioState *s);
fb065187
FB
926
927/* gus.c */
c0fe3827 928int GUS_init (AudioState *s);
27503323
FB
929
930/* dma.c */
85571bc7 931typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
27503323 932int DMA_get_channel_mode (int nchan);
85571bc7
FB
933int DMA_read_memory (int nchan, void *buf, int pos, int size);
934int DMA_write_memory (int nchan, void *buf, int pos, int size);
27503323
FB
935void DMA_hold_DREQ (int nchan);
936void DMA_release_DREQ (int nchan);
16f62432 937void DMA_schedule(int nchan);
27503323 938void DMA_run (void);
28b9b5af 939void DMA_init (int high_page_enable);
27503323 940void DMA_register_channel (int nchan,
85571bc7
FB
941 DMA_transfer_handler transfer_handler,
942 void *opaque);
7138fcfb
FB
943/* fdc.c */
944#define MAX_FD 2
945extern BlockDriverState *fd_table[MAX_FD];
946
baca51fa
FB
947typedef struct fdctrl_t fdctrl_t;
948
949fdctrl_t *fdctrl_init (int irq_lvl, int dma_chann, int mem_mapped,
950 uint32_t io_base,
951 BlockDriverState **fds);
952int fdctrl_get_drive_type(fdctrl_t *fdctrl, int drive_num);
7138fcfb 953
80cabfad
FB
954/* ne2000.c */
955
7c9d8e07
FB
956void isa_ne2000_init(int base, int irq, NICInfo *nd);
957void pci_ne2000_init(PCIBus *bus, NICInfo *nd);
80cabfad 958
a41b2ff2
PB
959/* rtl8139.c */
960
961void pci_rtl8139_init(PCIBus *bus, NICInfo *nd);
962
e3c2613f
FB
963/* pcnet.c */
964
965void pci_pcnet_init(PCIBus *bus, NICInfo *nd);
67e999be
FB
966void pcnet_h_reset(void *opaque);
967void *lance_init(NICInfo *nd, uint32_t leaddr, void *dma_opaque);
968
e3c2613f 969
80cabfad
FB
970/* pckbd.c */
971
80cabfad
FB
972void kbd_init(void);
973
974/* mc146818rtc.c */
975
8a7ddc38 976typedef struct RTCState RTCState;
80cabfad 977
8a7ddc38
FB
978RTCState *rtc_init(int base, int irq);
979void rtc_set_memory(RTCState *s, int addr, int val);
980void rtc_set_date(RTCState *s, const struct tm *tm);
80cabfad
FB
981
982/* serial.c */
983
c4b1fcc0 984typedef struct SerialState SerialState;
e5d13e2f
FB
985SerialState *serial_init(SetIRQFunc *set_irq, void *opaque,
986 int base, int irq, CharDriverState *chr);
987SerialState *serial_mm_init (SetIRQFunc *set_irq, void *opaque,
988 target_ulong base, int it_shift,
989 int irq, CharDriverState *chr);
80cabfad 990
6508fe59
FB
991/* parallel.c */
992
993typedef struct ParallelState ParallelState;
994ParallelState *parallel_init(int base, int irq, CharDriverState *chr);
995
80cabfad
FB
996/* i8259.c */
997
3de388f6
FB
998typedef struct PicState2 PicState2;
999extern PicState2 *isa_pic;
80cabfad 1000void pic_set_irq(int irq, int level);
54fa5af5 1001void pic_set_irq_new(void *opaque, int irq, int level);
3de388f6 1002PicState2 *pic_init(IRQRequestFunc *irq_request, void *irq_request_opaque);
d592d303
FB
1003void pic_set_alt_irq_func(PicState2 *s, SetIRQFunc *alt_irq_func,
1004 void *alt_irq_opaque);
3de388f6
FB
1005int pic_read_irq(PicState2 *s);
1006void pic_update_irq(PicState2 *s);
1007uint32_t pic_intack_read(PicState2 *s);
c20709aa 1008void pic_info(void);
4a0fb71e 1009void irq_info(void);
80cabfad 1010
c27004ec 1011/* APIC */
d592d303
FB
1012typedef struct IOAPICState IOAPICState;
1013
c27004ec
FB
1014int apic_init(CPUState *env);
1015int apic_get_interrupt(CPUState *env);
d592d303
FB
1016IOAPICState *ioapic_init(void);
1017void ioapic_set_irq(void *opaque, int vector, int level);
c27004ec 1018
80cabfad
FB
1019/* i8254.c */
1020
1021#define PIT_FREQ 1193182
1022
ec844b96
FB
1023typedef struct PITState PITState;
1024
1025PITState *pit_init(int base, int irq);
1026void pit_set_gate(PITState *pit, int channel, int val);
1027int pit_get_gate(PITState *pit, int channel);
fd06c375
FB
1028int pit_get_initial_count(PITState *pit, int channel);
1029int pit_get_mode(PITState *pit, int channel);
ec844b96 1030int pit_get_out(PITState *pit, int channel, int64_t current_time);
80cabfad 1031
fd06c375
FB
1032/* pcspk.c */
1033void pcspk_init(PITState *);
1034int pcspk_audio_init(AudioState *);
1035
6515b203
FB
1036/* acpi.c */
1037extern int acpi_enabled;
502a5395 1038void piix4_pm_init(PCIBus *bus, int devfn);
6515b203
FB
1039void acpi_bios_init(void);
1040
80cabfad 1041/* pc.c */
54fa5af5 1042extern QEMUMachine pc_machine;
3dbbdc25 1043extern QEMUMachine isapc_machine;
52ca8d6a 1044extern int fd_bootchk;
80cabfad 1045
6a00d601
FB
1046void ioport_set_a20(int enable);
1047int ioport_get_a20(void);
1048
26aa7d72 1049/* ppc.c */
54fa5af5
FB
1050extern QEMUMachine prep_machine;
1051extern QEMUMachine core99_machine;
1052extern QEMUMachine heathrow_machine;
1053
6af0bf9c
FB
1054/* mips_r4k.c */
1055extern QEMUMachine mips_machine;
1056
e16fe40c
TS
1057/* mips_timer.c */
1058extern void cpu_mips_clock_init(CPUState *);
1059extern void cpu_mips_irqctrl_init (void);
1060
27c7ca7e
FB
1061/* shix.c */
1062extern QEMUMachine shix_machine;
1063
8cc43fef
FB
1064#ifdef TARGET_PPC
1065ppc_tb_t *cpu_ppc_tb_init (CPUState *env, uint32_t freq);
1066#endif
64201201 1067void PREP_debug_write (void *opaque, uint32_t addr, uint32_t val);
77d4bc34
FB
1068
1069extern CPUWriteMemoryFunc *PPC_io_write[];
1070extern CPUReadMemoryFunc *PPC_io_read[];
54fa5af5 1071void PPC_debug_write (void *opaque, uint32_t addr, uint32_t val);
26aa7d72 1072
e95c8d51 1073/* sun4m.c */
54fa5af5 1074extern QEMUMachine sun4m_machine;
ba3c64fb 1075void pic_set_irq_cpu(int irq, int level, unsigned int cpu);
e95c8d51
FB
1076
1077/* iommu.c */
e80cfcfc 1078void *iommu_init(uint32_t addr);
67e999be 1079void sparc_iommu_memory_rw(void *opaque, target_phys_addr_t addr,
a917d384 1080 uint8_t *buf, int len, int is_write);
67e999be
FB
1081static inline void sparc_iommu_memory_read(void *opaque,
1082 target_phys_addr_t addr,
1083 uint8_t *buf, int len)
1084{
1085 sparc_iommu_memory_rw(opaque, addr, buf, len, 0);
1086}
e95c8d51 1087
67e999be
FB
1088static inline void sparc_iommu_memory_write(void *opaque,
1089 target_phys_addr_t addr,
1090 uint8_t *buf, int len)
1091{
1092 sparc_iommu_memory_rw(opaque, addr, buf, len, 1);
1093}
e95c8d51
FB
1094
1095/* tcx.c */
95219897 1096void tcx_init(DisplayState *ds, uint32_t addr, uint8_t *vram_base,
6f7e9aec 1097 unsigned long vram_offset, int vram_size, int width, int height);
e80cfcfc
FB
1098
1099/* slavio_intctl.c */
1100void *slavio_intctl_init();
ba3c64fb 1101void slavio_intctl_set_cpu(void *opaque, unsigned int cpu, CPUState *env);
e80cfcfc
FB
1102void slavio_pic_info(void *opaque);
1103void slavio_irq_info(void *opaque);
1104void slavio_pic_set_irq(void *opaque, int irq, int level);
ba3c64fb 1105void slavio_pic_set_irq_cpu(void *opaque, int irq, int level, unsigned int cpu);
e95c8d51 1106
5fe141fd
FB
1107/* loader.c */
1108int get_image_size(const char *filename);
1109int load_image(const char *filename, uint8_t *addr);
9ee3c029 1110int load_elf(const char *filename, int64_t virt_to_phys_addend, uint64_t *pentry);
e80cfcfc
FB
1111int load_aout(const char *filename, uint8_t *addr);
1112
1113/* slavio_timer.c */
ba3c64fb 1114void slavio_timer_init(uint32_t addr, int irq, int mode, unsigned int cpu);
8d5f07fa 1115
e80cfcfc
FB
1116/* slavio_serial.c */
1117SerialState *slavio_serial_init(int base, int irq, CharDriverState *chr1, CharDriverState *chr2);
1118void slavio_serial_ms_kbd_init(int base, int irq);
e95c8d51 1119
3475187d
FB
1120/* slavio_misc.c */
1121void *slavio_misc_init(uint32_t base, int irq);
1122void slavio_set_power_fail(void *opaque, int power_failing);
1123
6f7e9aec 1124/* esp.c */
fa1fb14c 1125void esp_scsi_attach(void *opaque, BlockDriverState *bd, int id);
67e999be
FB
1126void *esp_init(BlockDriverState **bd, uint32_t espaddr, void *dma_opaque);
1127void esp_reset(void *opaque);
1128
1129/* sparc32_dma.c */
1130void *sparc32_dma_init(uint32_t daddr, int espirq, int leirq, void *iommu,
1131 void *intctl);
1132void ledma_set_irq(void *opaque, int isr);
9b94dc32
FB
1133void ledma_memory_read(void *opaque, target_phys_addr_t addr,
1134 uint8_t *buf, int len, int do_bswap);
1135void ledma_memory_write(void *opaque, target_phys_addr_t addr,
1136 uint8_t *buf, int len, int do_bswap);
67e999be
FB
1137void espdma_raise_irq(void *opaque);
1138void espdma_clear_irq(void *opaque);
1139void espdma_memory_read(void *opaque, uint8_t *buf, int len);
1140void espdma_memory_write(void *opaque, uint8_t *buf, int len);
1141void sparc32_dma_set_reset_data(void *opaque, void *esp_opaque,
1142 void *lance_opaque);
6f7e9aec 1143
b8174937
FB
1144/* cs4231.c */
1145void cs_init(target_phys_addr_t base, int irq, void *intctl);
1146
3475187d
FB
1147/* sun4u.c */
1148extern QEMUMachine sun4u_machine;
1149
64201201
FB
1150/* NVRAM helpers */
1151#include "hw/m48t59.h"
1152
1153void NVRAM_set_byte (m48t59_t *nvram, uint32_t addr, uint8_t value);
1154uint8_t NVRAM_get_byte (m48t59_t *nvram, uint32_t addr);
1155void NVRAM_set_word (m48t59_t *nvram, uint32_t addr, uint16_t value);
1156uint16_t NVRAM_get_word (m48t59_t *nvram, uint32_t addr);
1157void NVRAM_set_lword (m48t59_t *nvram, uint32_t addr, uint32_t value);
1158uint32_t NVRAM_get_lword (m48t59_t *nvram, uint32_t addr);
1159void NVRAM_set_string (m48t59_t *nvram, uint32_t addr,
1160 const unsigned char *str, uint32_t max);
1161int NVRAM_get_string (m48t59_t *nvram, uint8_t *dst, uint16_t addr, int max);
1162void NVRAM_set_crc (m48t59_t *nvram, uint32_t addr,
1163 uint32_t start, uint32_t count);
1164int PPC_NVRAM_set_params (m48t59_t *nvram, uint16_t NVRAM_size,
1165 const unsigned char *arch,
1166 uint32_t RAM_size, int boot_device,
1167 uint32_t kernel_image, uint32_t kernel_size,
28b9b5af 1168 const char *cmdline,
64201201 1169 uint32_t initrd_image, uint32_t initrd_size,
28b9b5af
FB
1170 uint32_t NVRAM_image,
1171 int width, int height, int depth);
64201201 1172
63066f4f
FB
1173/* adb.c */
1174
1175#define MAX_ADB_DEVICES 16
1176
e2733d20 1177#define ADB_MAX_OUT_LEN 16
63066f4f 1178
e2733d20 1179typedef struct ADBDevice ADBDevice;
63066f4f 1180
e2733d20
FB
1181/* buf = NULL means polling */
1182typedef int ADBDeviceRequest(ADBDevice *d, uint8_t *buf_out,
1183 const uint8_t *buf, int len);
12c28fed
FB
1184typedef int ADBDeviceReset(ADBDevice *d);
1185
63066f4f
FB
1186struct ADBDevice {
1187 struct ADBBusState *bus;
1188 int devaddr;
1189 int handler;
e2733d20 1190 ADBDeviceRequest *devreq;
12c28fed 1191 ADBDeviceReset *devreset;
63066f4f
FB
1192 void *opaque;
1193};
1194
1195typedef struct ADBBusState {
1196 ADBDevice devices[MAX_ADB_DEVICES];
1197 int nb_devices;
e2733d20 1198 int poll_index;
63066f4f
FB
1199} ADBBusState;
1200
e2733d20
FB
1201int adb_request(ADBBusState *s, uint8_t *buf_out,
1202 const uint8_t *buf, int len);
1203int adb_poll(ADBBusState *s, uint8_t *buf_out);
63066f4f
FB
1204
1205ADBDevice *adb_register_device(ADBBusState *s, int devaddr,
e2733d20 1206 ADBDeviceRequest *devreq,
12c28fed 1207 ADBDeviceReset *devreset,
63066f4f
FB
1208 void *opaque);
1209void adb_kbd_init(ADBBusState *bus);
1210void adb_mouse_init(ADBBusState *bus);
1211
1212/* cuda.c */
1213
1214extern ADBBusState adb_bus;
54fa5af5 1215int cuda_init(SetIRQFunc *set_irq, void *irq_opaque, int irq);
63066f4f 1216
bb36d470
FB
1217#include "hw/usb.h"
1218
a594cfbf
FB
1219/* usb ports of the VM */
1220
0d92ed30
PB
1221void qemu_register_usb_port(USBPort *port, void *opaque, int index,
1222 usb_attachfn attach);
a594cfbf 1223
0d92ed30 1224#define VM_USB_HUB_SIZE 8
a594cfbf
FB
1225
1226void do_usb_add(const char *devname);
1227void do_usb_del(const char *devname);
1228void usb_info(void);
1229
2e5d83bb 1230/* scsi-disk.c */
4d611c9a
PB
1231enum scsi_reason {
1232 SCSI_REASON_DONE, /* Command complete. */
1233 SCSI_REASON_DATA /* Transfer complete, more data required. */
1234};
1235
2e5d83bb 1236typedef struct SCSIDevice SCSIDevice;
a917d384
PB
1237typedef void (*scsi_completionfn)(void *opaque, int reason, uint32_t tag,
1238 uint32_t arg);
2e5d83bb
PB
1239
1240SCSIDevice *scsi_disk_init(BlockDriverState *bdrv,
a917d384 1241 int tcq,
2e5d83bb
PB
1242 scsi_completionfn completion,
1243 void *opaque);
1244void scsi_disk_destroy(SCSIDevice *s);
1245
0fc5c15a 1246int32_t scsi_send_command(SCSIDevice *s, uint32_t tag, uint8_t *buf, int lun);
4d611c9a
PB
1247/* SCSI data transfers are asynchrnonous. However, unlike the block IO
1248 layer the completion routine may be called directly by
1249 scsi_{read,write}_data. */
a917d384
PB
1250void scsi_read_data(SCSIDevice *s, uint32_t tag);
1251int scsi_write_data(SCSIDevice *s, uint32_t tag);
1252void scsi_cancel_io(SCSIDevice *s, uint32_t tag);
1253uint8_t *scsi_get_buf(SCSIDevice *s, uint32_t tag);
2e5d83bb 1254
7d8406be
PB
1255/* lsi53c895a.c */
1256void lsi_scsi_attach(void *opaque, BlockDriverState *bd, int id);
1257void *lsi_scsi_init(PCIBus *bus, int devfn);
1258
b5ff1b31 1259/* integratorcp.c */
40f137e1
PB
1260extern QEMUMachine integratorcp926_machine;
1261extern QEMUMachine integratorcp1026_machine;
b5ff1b31 1262
cdbdb648
PB
1263/* versatilepb.c */
1264extern QEMUMachine versatilepb_machine;
16406950 1265extern QEMUMachine versatileab_machine;
cdbdb648 1266
e69954b9
PB
1267/* realview.c */
1268extern QEMUMachine realview_machine;
1269
daa57963
FB
1270/* ps2.c */
1271void *ps2_kbd_init(void (*update_irq)(void *, int), void *update_arg);
1272void *ps2_mouse_init(void (*update_irq)(void *, int), void *update_arg);
1273void ps2_write_mouse(void *, int val);
1274void ps2_write_keyboard(void *, int val);
1275uint32_t ps2_read_data(void *);
1276void ps2_queue(void *, int b);
f94f5d71 1277void ps2_keyboard_set_translation(void *opaque, int mode);
daa57963 1278
80337b66
FB
1279/* smc91c111.c */
1280void smc91c111_init(NICInfo *, uint32_t, void *, int);
1281
bdd5003a 1282/* pl110.c */
95219897 1283void *pl110_init(DisplayState *ds, uint32_t base, void *pic, int irq, int);
bdd5003a 1284
cdbdb648
PB
1285/* pl011.c */
1286void pl011_init(uint32_t base, void *pic, int irq, CharDriverState *chr);
1287
1288/* pl050.c */
1289void pl050_init(uint32_t base, void *pic, int irq, int is_mouse);
1290
1291/* pl080.c */
e69954b9 1292void *pl080_init(uint32_t base, void *pic, int irq, int nchannels);
cdbdb648
PB
1293
1294/* pl190.c */
1295void *pl190_init(uint32_t base, void *parent, int irq, int fiq);
1296
1297/* arm-timer.c */
1298void sp804_init(uint32_t base, void *pic, int irq);
1299void icp_pit_init(uint32_t base, void *pic, int irq);
1300
e69954b9
PB
1301/* arm_sysctl.c */
1302void arm_sysctl_init(uint32_t base, uint32_t sys_id);
1303
1304/* arm_gic.c */
1305void *arm_gic_init(uint32_t base, void *parent, int parent_irq);
1306
16406950
PB
1307/* arm_boot.c */
1308
1309void arm_load_kernel(int ram_size, const char *kernel_filename,
1310 const char *kernel_cmdline, const char *initrd_filename,
1311 int board_id);
1312
27c7ca7e
FB
1313/* sh7750.c */
1314struct SH7750State;
1315
008a8818 1316struct SH7750State *sh7750_init(CPUState * cpu);
27c7ca7e
FB
1317
1318typedef struct {
1319 /* The callback will be triggered if any of the designated lines change */
1320 uint16_t portamask_trigger;
1321 uint16_t portbmask_trigger;
1322 /* Return 0 if no action was taken */
1323 int (*port_change_cb) (uint16_t porta, uint16_t portb,
1324 uint16_t * periph_pdtra,
1325 uint16_t * periph_portdira,
1326 uint16_t * periph_pdtrb,
1327 uint16_t * periph_portdirb);
1328} sh7750_io_device;
1329
1330int sh7750_register_io_device(struct SH7750State *s,
1331 sh7750_io_device * device);
1332/* tc58128.c */
1333int tc58128_init(struct SH7750State *s, char *zone1, char *zone2);
1334
29133e9a
FB
1335/* NOR flash devices */
1336typedef struct pflash_t pflash_t;
1337
1338pflash_t *pflash_register (target_ulong base, ram_addr_t off,
1339 BlockDriverState *bs,
1340 target_ulong sector_len, int nb_blocs, int width,
1341 uint16_t id0, uint16_t id1,
1342 uint16_t id2, uint16_t id3);
1343
ea2384d3
FB
1344#endif /* defined(QEMU_TOOL) */
1345
c4b1fcc0 1346/* monitor.c */
82c643ff 1347void monitor_init(CharDriverState *hd, int show_banner);
ea2384d3
FB
1348void term_puts(const char *str);
1349void term_vprintf(const char *fmt, va_list ap);
40c3bac3 1350void term_printf(const char *fmt, ...) __attribute__ ((__format__ (__printf__, 1, 2)));
fef30743 1351void term_print_filename(const char *filename);
c4b1fcc0
FB
1352void term_flush(void);
1353void term_print_help(void);
ea2384d3
FB
1354void monitor_readline(const char *prompt, int is_password,
1355 char *buf, int buf_size);
1356
1357/* readline.c */
1358typedef void ReadLineFunc(void *opaque, const char *str);
1359
1360extern int completion_index;
1361void add_completion(const char *str);
1362void readline_handle_byte(int ch);
1363void readline_find_completion(const char *cmdline);
1364const char *readline_get_history(unsigned int index);
1365void readline_start(const char *prompt, int is_password,
1366 ReadLineFunc *readline_func, void *opaque);
c4b1fcc0 1367
5e6ad6f9
FB
1368void kqemu_record_dump(void);
1369
fc01f7e7 1370#endif /* VL_H */
This page took 0.338843 seconds and 4 git commands to generate.