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