Statistics
| Branch: | Revision:

root / qemu-common.h @ 151f7749

History | View | Annotate | Download (6.4 kB)

1 faf07963 pbrook
/* Common header file that is included by all of qemu.  */
2 faf07963 pbrook
#ifndef QEMU_COMMON_H
3 faf07963 pbrook
#define QEMU_COMMON_H
4 faf07963 pbrook
5 a5e50b26 malc
#define QEMU_NORETURN __attribute__ ((__noreturn__))
6 7d99a001 blueswir1
7 a5e50b26 malc
/* Hack around the mess dyngen-exec.h causes: We need QEMU_NORETURN in files that
8 7d99a001 blueswir1
   cannot include the following headers without conflicts. This condition has
9 7d99a001 blueswir1
   to be removed once dyngen is gone. */
10 7d99a001 blueswir1
#ifndef __DYNGEN_EXEC_H__
11 7d99a001 blueswir1
12 faf07963 pbrook
/* we put basic includes here to avoid repeating them in device drivers */
13 faf07963 pbrook
#include <stdlib.h>
14 faf07963 pbrook
#include <stdio.h>
15 faf07963 pbrook
#include <stdarg.h>
16 faf07963 pbrook
#include <string.h>
17 c8906845 balrog
#include <strings.h>
18 faf07963 pbrook
#include <inttypes.h>
19 faf07963 pbrook
#include <limits.h>
20 faf07963 pbrook
#include <time.h>
21 faf07963 pbrook
#include <ctype.h>
22 faf07963 pbrook
#include <errno.h>
23 faf07963 pbrook
#include <unistd.h>
24 faf07963 pbrook
#include <fcntl.h>
25 faf07963 pbrook
#include <sys/stat.h>
26 55616505 Paul Brook
#include <assert.h>
27 bf9298b9 aliguori
#include "config-host.h"
28 faf07963 pbrook
29 faf07963 pbrook
#ifndef O_LARGEFILE
30 faf07963 pbrook
#define O_LARGEFILE 0
31 faf07963 pbrook
#endif
32 faf07963 pbrook
#ifndef O_BINARY
33 faf07963 pbrook
#define O_BINARY 0
34 faf07963 pbrook
#endif
35 faf07963 pbrook
36 faf07963 pbrook
#ifndef ENOMEDIUM
37 faf07963 pbrook
#define ENOMEDIUM ENODEV
38 faf07963 pbrook
#endif
39 faf07963 pbrook
40 bf9298b9 aliguori
#ifndef HAVE_IOVEC
41 bf9298b9 aliguori
#define HAVE_IOVEC
42 bf9298b9 aliguori
struct iovec {
43 bf9298b9 aliguori
    void *iov_base;
44 bf9298b9 aliguori
    size_t iov_len;
45 bf9298b9 aliguori
};
46 331dadde blueswir1
#else
47 331dadde blueswir1
#include <sys/uio.h>
48 bf9298b9 aliguori
#endif
49 bf9298b9 aliguori
50 faf07963 pbrook
#ifdef _WIN32
51 faf07963 pbrook
#define fsync _commit
52 faf07963 pbrook
#define lseek _lseeki64
53 faf07963 pbrook
#define ENOTSUP 4096
54 faf07963 pbrook
extern int qemu_ftruncate64(int, int64_t);
55 faf07963 pbrook
#define ftruncate qemu_ftruncate64
56 faf07963 pbrook
57 faf07963 pbrook
58 faf07963 pbrook
static inline char *realpath(const char *path, char *resolved_path)
59 faf07963 pbrook
{
60 faf07963 pbrook
    _fullpath(resolved_path, path, _MAX_PATH);
61 faf07963 pbrook
    return resolved_path;
62 faf07963 pbrook
}
63 faf07963 pbrook
64 faf07963 pbrook
#define PRId64 "I64d"
65 faf07963 pbrook
#define PRIx64 "I64x"
66 faf07963 pbrook
#define PRIu64 "I64u"
67 faf07963 pbrook
#define PRIo64 "I64o"
68 faf07963 pbrook
#endif
69 faf07963 pbrook
70 faf07963 pbrook
/* FIXME: Remove NEED_CPU_H.  */
71 faf07963 pbrook
#ifndef NEED_CPU_H
72 faf07963 pbrook
73 faf07963 pbrook
#include <setjmp.h>
74 faf07963 pbrook
#include "osdep.h"
75 faf07963 pbrook
#include "bswap.h"
76 faf07963 pbrook
77 faf07963 pbrook
#else
78 faf07963 pbrook
79 faf07963 pbrook
#include "cpu.h"
80 faf07963 pbrook
81 faf07963 pbrook
#endif /* !defined(NEED_CPU_H) */
82 faf07963 pbrook
83 faf07963 pbrook
/* bottom halves */
84 faf07963 pbrook
typedef struct QEMUBH QEMUBH;
85 faf07963 pbrook
86 faf07963 pbrook
typedef void QEMUBHFunc(void *opaque);
87 faf07963 pbrook
88 faf07963 pbrook
QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque);
89 faf07963 pbrook
void qemu_bh_schedule(QEMUBH *bh);
90 80d3580b aliguori
/* Bottom halfs that are scheduled from a bottom half handler are instantly
91 80d3580b aliguori
 * invoked.  This can create an infinite loop if a bottom half handler
92 80d3580b aliguori
 * schedules itself.  qemu_bh_schedule_idle() avoids this infinite loop by
93 80d3580b aliguori
 * ensuring that the bottom half isn't executed until the next main loop
94 80d3580b aliguori
 * iteration.
95 80d3580b aliguori
 */
96 1b435b10 aliguori
void qemu_bh_schedule_idle(QEMUBH *bh);
97 faf07963 pbrook
void qemu_bh_cancel(QEMUBH *bh);
98 faf07963 pbrook
void qemu_bh_delete(QEMUBH *bh);
99 faf07963 pbrook
int qemu_bh_poll(void);
100 faf07963 pbrook
101 87ecb68b pbrook
uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c);
102 87ecb68b pbrook
103 f6503059 balrog
void qemu_get_timedate(struct tm *tm, int offset);
104 f6503059 balrog
int qemu_timedate_diff(struct tm *tm);
105 f6503059 balrog
106 faf07963 pbrook
/* cutils.c */
107 faf07963 pbrook
void pstrcpy(char *buf, int buf_size, const char *str);
108 faf07963 pbrook
char *pstrcat(char *buf, int buf_size, const char *s);
109 faf07963 pbrook
int strstart(const char *str, const char *val, const char **ptr);
110 faf07963 pbrook
int stristart(const char *str, const char *val, const char **ptr);
111 faf07963 pbrook
time_t mktimegm(struct tm *tm);
112 ad46db9a blueswir1
int qemu_fls(int i);
113 faf07963 pbrook
114 cd390083 blueswir1
#define qemu_isalnum(c)                isalnum((unsigned char)(c))
115 cd390083 blueswir1
#define qemu_isalpha(c)                isalpha((unsigned char)(c))
116 cd390083 blueswir1
#define qemu_iscntrl(c)                iscntrl((unsigned char)(c))
117 cd390083 blueswir1
#define qemu_isdigit(c)                isdigit((unsigned char)(c))
118 cd390083 blueswir1
#define qemu_isgraph(c)                isgraph((unsigned char)(c))
119 cd390083 blueswir1
#define qemu_islower(c)                islower((unsigned char)(c))
120 cd390083 blueswir1
#define qemu_isprint(c)                isprint((unsigned char)(c))
121 cd390083 blueswir1
#define qemu_ispunct(c)                ispunct((unsigned char)(c))
122 cd390083 blueswir1
#define qemu_isspace(c)                isspace((unsigned char)(c))
123 cd390083 blueswir1
#define qemu_isupper(c)                isupper((unsigned char)(c))
124 cd390083 blueswir1
#define qemu_isxdigit(c)        isxdigit((unsigned char)(c))
125 cd390083 blueswir1
#define qemu_tolower(c)                tolower((unsigned char)(c))
126 cd390083 blueswir1
#define qemu_toupper(c)                toupper((unsigned char)(c))
127 cd390083 blueswir1
#define qemu_isascii(c)                isascii((unsigned char)(c))
128 cd390083 blueswir1
#define qemu_toascii(c)                toascii((unsigned char)(c))
129 cd390083 blueswir1
130 ca10f867 aurel32
void *qemu_malloc(size_t size);
131 2137b4cc ths
void *qemu_realloc(void *ptr, size_t size);
132 ca10f867 aurel32
void *qemu_mallocz(size_t size);
133 ca10f867 aurel32
void qemu_free(void *ptr);
134 ca10f867 aurel32
char *qemu_strdup(const char *str);
135 ac4b0d0c balrog
char *qemu_strndup(const char *str, size_t size);
136 ca10f867 aurel32
137 ca10f867 aurel32
void *get_mmap_addr(unsigned long size);
138 ca10f867 aurel32
139 ca10f867 aurel32
140 87ecb68b pbrook
/* Error handling.  */
141 87ecb68b pbrook
142 a5e50b26 malc
void QEMU_NORETURN hw_error(const char *fmt, ...)
143 7d99a001 blueswir1
    __attribute__ ((__format__ (__printf__, 1, 2)));
144 87ecb68b pbrook
145 87ecb68b pbrook
/* IO callbacks.  */
146 87ecb68b pbrook
typedef void IOReadHandler(void *opaque, const uint8_t *buf, int size);
147 87ecb68b pbrook
typedef int IOCanRWHandler(void *opaque);
148 87ecb68b pbrook
typedef void IOHandler(void *opaque);
149 87ecb68b pbrook
150 87ecb68b pbrook
struct ParallelIOArg {
151 87ecb68b pbrook
    void *buffer;
152 87ecb68b pbrook
    int count;
153 87ecb68b pbrook
};
154 87ecb68b pbrook
155 87ecb68b pbrook
typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
156 87ecb68b pbrook
157 87ecb68b pbrook
/* A load of opaque types so that device init declarations don't have to
158 87ecb68b pbrook
   pull in all the real definitions.  */
159 87ecb68b pbrook
typedef struct NICInfo NICInfo;
160 1ae26a18 balrog
typedef struct HCIInfo HCIInfo;
161 87ecb68b pbrook
typedef struct AudioState AudioState;
162 87ecb68b pbrook
typedef struct BlockDriverState BlockDriverState;
163 87ecb68b pbrook
typedef struct DisplayState DisplayState;
164 7d957bd8 aliguori
typedef struct DisplayChangeListener DisplayChangeListener;
165 7d957bd8 aliguori
typedef struct DisplaySurface DisplaySurface;
166 7b5d76da aliguori
typedef struct DisplayAllocator DisplayAllocator;
167 7d957bd8 aliguori
typedef struct PixelFormat PixelFormat;
168 87ecb68b pbrook
typedef struct TextConsole TextConsole;
169 c60e08d9 pbrook
typedef TextConsole QEMUConsole;
170 87ecb68b pbrook
typedef struct CharDriverState CharDriverState;
171 87ecb68b pbrook
typedef struct VLANState VLANState;
172 87ecb68b pbrook
typedef struct QEMUFile QEMUFile;
173 87ecb68b pbrook
typedef struct i2c_bus i2c_bus;
174 87ecb68b pbrook
typedef struct i2c_slave i2c_slave;
175 87ecb68b pbrook
typedef struct SMBusDevice SMBusDevice;
176 87ecb68b pbrook
typedef struct QEMUTimer QEMUTimer;
177 87ecb68b pbrook
typedef struct PCIBus PCIBus;
178 87ecb68b pbrook
typedef struct PCIDevice PCIDevice;
179 87ecb68b pbrook
typedef struct SerialState SerialState;
180 87ecb68b pbrook
typedef struct IRQState *qemu_irq;
181 bc24a225 Paul Brook
typedef struct PCMCIACardState PCMCIACardState;
182 bc24a225 Paul Brook
typedef struct MouseTransformInfo MouseTransformInfo;
183 bc24a225 Paul Brook
typedef struct uWireSlave uWireSlave;
184 bc24a225 Paul Brook
typedef struct I2SCodec I2SCodec;
185 aae9460e Paul Brook
typedef struct DeviceState DeviceState;
186 90d37239 Paul Brook
typedef struct SSIBus SSIBus;
187 87ecb68b pbrook
188 b3c7724c pbrook
/* CPU save/load.  */
189 b3c7724c pbrook
void cpu_save(QEMUFile *f, void *opaque);
190 b3c7724c pbrook
int cpu_load(QEMUFile *f, void *opaque, int version_id);
191 b3c7724c pbrook
192 9e472e10 aliguori
/* Force QEMU to stop what it's doing and service IO */
193 9e472e10 aliguori
void qemu_service_io(void);
194 9e472e10 aliguori
195 d9f75a4e aliguori
/* Force QEMU to process pending events */
196 d9f75a4e aliguori
void qemu_notify_event(void);
197 d9f75a4e aliguori
198 8edac960 aliguori
/* Unblock cpu */
199 8edac960 aliguori
void qemu_cpu_kick(void *env);
200 8edac960 aliguori
int qemu_cpu_self(void *env);
201 8edac960 aliguori
202 0bf46a40 aliguori
#ifdef CONFIG_USER_ONLY
203 0bf46a40 aliguori
#define qemu_init_vcpu(env) do { } while (0)
204 0bf46a40 aliguori
#else
205 0bf46a40 aliguori
void qemu_init_vcpu(void *env);
206 0bf46a40 aliguori
#endif
207 0bf46a40 aliguori
208 44e3ee8a aliguori
typedef struct QEMUIOVector {
209 44e3ee8a aliguori
    struct iovec *iov;
210 44e3ee8a aliguori
    int niov;
211 44e3ee8a aliguori
    int nalloc;
212 249aa745 aliguori
    size_t size;
213 44e3ee8a aliguori
} QEMUIOVector;
214 44e3ee8a aliguori
215 44e3ee8a aliguori
void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
216 522584a5 aliguori
void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
217 44e3ee8a aliguori
void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
218 44e3ee8a aliguori
void qemu_iovec_destroy(QEMUIOVector *qiov);
219 be959463 aliguori
void qemu_iovec_reset(QEMUIOVector *qiov);
220 44e3ee8a aliguori
void qemu_iovec_to_buffer(QEMUIOVector *qiov, void *buf);
221 249aa745 aliguori
void qemu_iovec_from_buffer(QEMUIOVector *qiov, const void *buf, size_t count);
222 44e3ee8a aliguori
223 376253ec aliguori
struct Monitor;
224 376253ec aliguori
typedef struct Monitor Monitor;
225 376253ec aliguori
226 0bfe3ca5 Anthony Liguori
#include "module.h"
227 0bfe3ca5 Anthony Liguori
228 7d99a001 blueswir1
#endif /* dyngen-exec.h hack */
229 7d99a001 blueswir1
230 faf07963 pbrook
#endif