]> git.proxmox.com Git - mirror_qemu.git/blame - qemu-common.h
hw/vexpress.c, hw/realview.c: Add PL041 to VExpress, Realview boards
[mirror_qemu.git] / qemu-common.h
CommitLineData
faf07963
PB
1/* Common header file that is included by all of qemu. */
2#ifndef QEMU_COMMON_H
3#define QEMU_COMMON_H
4
5c026320 5#include "compiler.h"
beb6f0de
KW
6#include "config-host.h"
7
332ae28d
PB
8#if defined(__arm__) || defined(__sparc__) || defined(__mips__) || defined(__hppa__) || defined(__ia64__)
9#define WORDS_ALIGNED
10#endif
11
082b5557 12#define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
24ebf5f3 13
29e922b6
BS
14typedef struct QEMUTimer QEMUTimer;
15typedef struct QEMUFile QEMUFile;
92a16d7a 16typedef struct DeviceState DeviceState;
29e922b6 17
316378e4
JK
18struct Monitor;
19typedef struct Monitor Monitor;
20
faf07963
PB
21/* we put basic includes here to avoid repeating them in device drivers */
22#include <stdlib.h>
23#include <stdio.h>
24#include <stdarg.h>
11165820 25#include <stdbool.h>
faf07963 26#include <string.h>
c8906845 27#include <strings.h>
faf07963
PB
28#include <inttypes.h>
29#include <limits.h>
30#include <time.h>
31#include <ctype.h>
32#include <errno.h>
33#include <unistd.h>
34#include <fcntl.h>
35#include <sys/stat.h>
dcfd0865 36#include <sys/time.h>
55616505 37#include <assert.h>
86f69a92 38#include <signal.h>
14015304 39#include <glib.h>
faf07963 40
082b5557
BS
41#ifdef _WIN32
42#include "qemu-os-win32.h"
43#endif
44
45#ifdef CONFIG_POSIX
46#include "qemu-os-posix.h"
47#endif
48
faf07963
PB
49#ifndef O_LARGEFILE
50#define O_LARGEFILE 0
51#endif
52#ifndef O_BINARY
53#define O_BINARY 0
54#endif
0e74e66b
JQ
55#ifndef MAP_ANONYMOUS
56#define MAP_ANONYMOUS MAP_ANON
57#endif
faf07963
PB
58#ifndef ENOMEDIUM
59#define ENOMEDIUM ENODEV
60#endif
4c955388 61#if !defined(ENOTSUP)
2880bc32
JQ
62#define ENOTSUP 4096
63#endif
3c9405a0
GH
64#ifndef TIME_MAX
65#define TIME_MAX LONG_MAX
66#endif
faf07963 67
6114fdb0
JQ
68#ifndef CONFIG_IOVEC
69#define CONFIG_IOVEC
bf9298b9
AL
70struct iovec {
71 void *iov_base;
72 size_t iov_len;
73};
e2a305fb
CH
74/*
75 * Use the same value as Linux for now.
76 */
77#define IOV_MAX 1024
331dadde
BS
78#else
79#include <sys/uio.h>
bf9298b9
AL
80#endif
81
f868445a
SW
82typedef int (*fprintf_function)(FILE *f, const char *fmt, ...)
83 GCC_FMT_ATTR(2, 3);
84
faf07963 85#ifdef _WIN32
faf07963
PB
86#define fsync _commit
87#define lseek _lseeki64
64b85a8f 88int qemu_ftruncate64(int, int64_t);
faf07963
PB
89#define ftruncate qemu_ftruncate64
90
faf07963
PB
91static inline char *realpath(const char *path, char *resolved_path)
92{
93 _fullpath(resolved_path, path, _MAX_PATH);
94 return resolved_path;
95}
faf07963
PB
96#endif
97
946fb27c
PB
98/* icount */
99void configure_icount(const char *option);
100extern int use_icount;
101
faf07963
PB
102/* FIXME: Remove NEED_CPU_H. */
103#ifndef NEED_CPU_H
104
faf07963
PB
105#include "osdep.h"
106#include "bswap.h"
107
108#else
109
110#include "cpu.h"
111
112#endif /* !defined(NEED_CPU_H) */
113
3bbbee18
AF
114/* main function, renamed */
115#if defined(CONFIG_COCOA)
116int qemu_main(int argc, char **argv, char **envp);
117#endif
118
f6503059
AZ
119void qemu_get_timedate(struct tm *tm, int offset);
120int qemu_timedate_diff(struct tm *tm);
121
faf07963
PB
122/* cutils.c */
123void pstrcpy(char *buf, int buf_size, const char *str);
124char *pstrcat(char *buf, int buf_size, const char *s);
125int strstart(const char *str, const char *val, const char **ptr);
126int stristart(const char *str, const char *val, const char **ptr);
d43277c5 127int qemu_strnlen(const char *s, int max_len);
faf07963 128time_t mktimegm(struct tm *tm);
ad46db9a 129int qemu_fls(int i);
6f1953c4 130int qemu_fdatasync(int fd);
db1a4972 131int fcntl_setfl(int fd, int flag);
d8427002 132
d7142456
JS
133/*
134 * strtosz() suffixes used to specify the default treatment of an
135 * argument passed to strtosz() without an explicit suffix.
136 * These should be defined using upper case characters in the range
137 * A-Z, as strtosz() will use qemu_toupper() on the given argument
138 * prior to comparison.
139 */
d8427002
JS
140#define STRTOSZ_DEFSUFFIX_TB 'T'
141#define STRTOSZ_DEFSUFFIX_GB 'G'
142#define STRTOSZ_DEFSUFFIX_MB 'M'
143#define STRTOSZ_DEFSUFFIX_KB 'K'
144#define STRTOSZ_DEFSUFFIX_B 'B'
70b4f4bb
JS
145int64_t strtosz(const char *nptr, char **end);
146int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix);
a732e1ba
JR
147int64_t strtosz_suffix_unit(const char *nptr, char **end,
148 const char default_suffix, int64_t unit);
faf07963 149
37022086
BS
150/* path.c */
151void init_paths(const char *prefix);
152const char *path(const char *pathname);
153
cd390083
BS
154#define qemu_isalnum(c) isalnum((unsigned char)(c))
155#define qemu_isalpha(c) isalpha((unsigned char)(c))
156#define qemu_iscntrl(c) iscntrl((unsigned char)(c))
157#define qemu_isdigit(c) isdigit((unsigned char)(c))
158#define qemu_isgraph(c) isgraph((unsigned char)(c))
159#define qemu_islower(c) islower((unsigned char)(c))
160#define qemu_isprint(c) isprint((unsigned char)(c))
161#define qemu_ispunct(c) ispunct((unsigned char)(c))
162#define qemu_isspace(c) isspace((unsigned char)(c))
163#define qemu_isupper(c) isupper((unsigned char)(c))
164#define qemu_isxdigit(c) isxdigit((unsigned char)(c))
165#define qemu_tolower(c) tolower((unsigned char)(c))
166#define qemu_toupper(c) toupper((unsigned char)(c))
167#define qemu_isascii(c) isascii((unsigned char)(c))
168#define qemu_toascii(c) toascii((unsigned char)(c))
169
b152aa84 170void *qemu_oom_check(void *ptr);
ca10f867 171
40ff6d7e 172int qemu_open(const char *name, int flags, ...);
7c7c0629
JQ
173ssize_t qemu_write_full(int fd, const void *buf, size_t count)
174 QEMU_WARN_UNUSED_RESULT;
40ff6d7e
KW
175void qemu_set_cloexec(int fd);
176
177#ifndef _WIN32
f3dfda61 178int qemu_eventfd(int pipefd[2]);
40ff6d7e
KW
179int qemu_pipe(int pipefd[2]);
180#endif
181
00aa0040
BS
182#ifdef _WIN32
183#define qemu_recv(sockfd, buf, len, flags) recv(sockfd, (void *)buf, len, flags)
184#else
185#define qemu_recv(sockfd, buf, len, flags) recv(sockfd, buf, len, flags)
186#endif
187
87ecb68b
PB
188/* Error handling. */
189
e5924d89 190void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
87ecb68b 191
87ecb68b
PB
192struct ParallelIOArg {
193 void *buffer;
194 int count;
195};
196
197typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
198
199/* A load of opaque types so that device init declarations don't have to
200 pull in all the real definitions. */
201typedef struct NICInfo NICInfo;
1ae26a18 202typedef struct HCIInfo HCIInfo;
87ecb68b
PB
203typedef struct AudioState AudioState;
204typedef struct BlockDriverState BlockDriverState;
2446333c 205typedef struct DriveInfo DriveInfo;
87ecb68b 206typedef struct DisplayState DisplayState;
7d957bd8
AL
207typedef struct DisplayChangeListener DisplayChangeListener;
208typedef struct DisplaySurface DisplaySurface;
7b5d76da 209typedef struct DisplayAllocator DisplayAllocator;
7d957bd8 210typedef struct PixelFormat PixelFormat;
87ecb68b 211typedef struct TextConsole TextConsole;
c60e08d9 212typedef TextConsole QEMUConsole;
87ecb68b 213typedef struct CharDriverState CharDriverState;
76d32cba 214typedef struct MACAddr MACAddr;
87ecb68b 215typedef struct VLANState VLANState;
f7105843 216typedef struct VLANClientState VLANClientState;
87ecb68b
PB
217typedef struct i2c_bus i2c_bus;
218typedef struct i2c_slave i2c_slave;
219typedef struct SMBusDevice SMBusDevice;
fb47a2e9
IY
220typedef struct PCIHostState PCIHostState;
221typedef struct PCIExpressHost PCIExpressHost;
87ecb68b
PB
222typedef struct PCIBus PCIBus;
223typedef struct PCIDevice PCIDevice;
0428527c 224typedef struct PCIExpressDevice PCIExpressDevice;
68f79994 225typedef struct PCIBridge PCIBridge;
34e65944
IY
226typedef struct PCIEAERMsg PCIEAERMsg;
227typedef struct PCIEAERLog PCIEAERLog;
228typedef struct PCIEAERErr PCIEAERErr;
bc20ba98
IY
229typedef struct PCIEPort PCIEPort;
230typedef struct PCIESlot PCIESlot;
87ecb68b
PB
231typedef struct SerialState SerialState;
232typedef struct IRQState *qemu_irq;
bc24a225
PB
233typedef struct PCMCIACardState PCMCIACardState;
234typedef struct MouseTransformInfo MouseTransformInfo;
235typedef struct uWireSlave uWireSlave;
236typedef struct I2SCodec I2SCodec;
90d37239 237typedef struct SSIBus SSIBus;
2292b339 238typedef struct EventNotifier EventNotifier;
2be24aaa 239typedef struct VirtIODevice VirtIODevice;
d35bf9ad 240typedef struct QEMUSGList QEMUSGList;
87ecb68b 241
186993ee
MT
242typedef uint64_t pcibus_t;
243
d5ab9713
JK
244void tcg_exec_init(unsigned long tb_size);
245bool tcg_enabled(void);
246
247void cpu_exec_init_all(void);
d2053c3c 248
b3c7724c
PB
249/* CPU save/load. */
250void cpu_save(QEMUFile *f, void *opaque);
251int cpu_load(QEMUFile *f, void *opaque, int version_id);
252
8edac960
AL
253/* Unblock cpu */
254void qemu_cpu_kick(void *env);
46d62fac 255void qemu_cpu_kick_self(void);
b7680cb6 256int qemu_cpu_is_self(void *env);
ab33fcda 257bool all_cpu_threads_idle(void);
8edac960 258
e82bcec2
MT
259/* work queue */
260struct qemu_work_item {
261 struct qemu_work_item *next;
262 void (*func)(void *data);
263 void *data;
264 int done;
265};
266
0bf46a40
AL
267#ifdef CONFIG_USER_ONLY
268#define qemu_init_vcpu(env) do { } while (0)
269#else
270void qemu_init_vcpu(void *env);
271#endif
272
44e3ee8a
AL
273typedef struct QEMUIOVector {
274 struct iovec *iov;
275 int niov;
276 int nalloc;
249aa745 277 size_t size;
44e3ee8a
AL
278} QEMUIOVector;
279
280void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
522584a5 281void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
44e3ee8a 282void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
b8a83a4f
KW
283void qemu_iovec_copy(QEMUIOVector *dst, QEMUIOVector *src, uint64_t skip,
284 size_t size);
40b4f539 285void qemu_iovec_concat(QEMUIOVector *dst, QEMUIOVector *src, size_t size);
44e3ee8a 286void qemu_iovec_destroy(QEMUIOVector *qiov);
be959463 287void qemu_iovec_reset(QEMUIOVector *qiov);
44e3ee8a 288void qemu_iovec_to_buffer(QEMUIOVector *qiov, void *buf);
249aa745 289void qemu_iovec_from_buffer(QEMUIOVector *qiov, const void *buf, size_t count);
b8a83a4f 290void qemu_iovec_memset(QEMUIOVector *qiov, int c, size_t count);
e0d9c6f9
CT
291void qemu_iovec_memset_skip(QEMUIOVector *qiov, int c, size_t count,
292 size_t skip);
44e3ee8a 293
6b837bc4
JS
294void qemu_progress_init(int enabled, float min_skip);
295void qemu_progress_end(void);
3bfe4dbf 296void qemu_progress_print(float delta, int max);
6b837bc4 297
082b5557
BS
298#define QEMU_FILE_TYPE_BIOS 0
299#define QEMU_FILE_TYPE_KEYMAP 1
300char *qemu_find_file(int type, const char *name);
301
302/* OS specific functions */
303void os_setup_early_signal_handling(void);
304char *os_find_datadir(const char *argv0);
305void os_parse_cmd_args(int index, const char *optarg);
306void os_pidfile_error(void);
307
abd0c6bd
PB
308/* Convert a byte between binary and BCD. */
309static inline uint8_t to_bcd(uint8_t val)
310{
311 return ((val / 10) << 4) | (val % 10);
312}
313
314static inline uint8_t from_bcd(uint8_t val)
315{
316 return ((val >> 4) * 10) + (val & 0x0f);
317}
318
338b922e 319/* compute with 96 bit intermediate result: (a*b)/c */
320static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
321{
322 union {
323 uint64_t ll;
324 struct {
325#ifdef HOST_WORDS_BIGENDIAN
326 uint32_t high, low;
327#else
328 uint32_t low, high;
329#endif
330 } l;
331 } u, res;
332 uint64_t rl, rh;
333
334 u.ll = a;
335 rl = (uint64_t)u.l.low * (uint64_t)b;
336 rh = (uint64_t)u.l.high * (uint64_t)b;
337 rh += (rl >> 32);
338 res.l.high = rh / c;
339 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
340 return res.ll;
341}
342
0bfe3ca5
AL
343#include "module.h"
344
faf07963 345#endif