ACPI: Add definitions for the SPCR table
[qemu/ar7.git] / include / qemu-common.h
blobd52d09cfb85356383c1f7b329c6ec973c8af7dcd
2 /* Common header file that is included by all of QEMU.
4 * This file is supposed to be included only by .c files. No header file should
5 * depend on qemu-common.h, as this would easily lead to circular header
6 * dependencies.
8 * If a header file uses a definition from qemu-common.h, that definition
9 * must be moved to a separate header file, and the header that uses it
10 * must include that header.
12 #ifndef QEMU_COMMON_H
13 #define QEMU_COMMON_H
15 #include "qemu/compiler.h"
16 #include "config-host.h"
17 #include "qemu/typedefs.h"
19 #if defined(__arm__) || defined(__sparc__) || defined(__mips__) || defined(__hppa__) || defined(__ia64__)
20 #define WORDS_ALIGNED
21 #endif
23 #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
25 /* we put basic includes here to avoid repeating them in device drivers */
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <stdarg.h>
29 #include <stdbool.h>
30 #include <string.h>
31 #include <strings.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 #include <sys/time.h>
41 #include <assert.h>
42 #include <signal.h>
43 #include "glib-compat.h"
44 #include "qemu/option.h"
46 #ifdef _WIN32
47 #include "sysemu/os-win32.h"
48 #endif
50 #ifdef CONFIG_POSIX
51 #include "sysemu/os-posix.h"
52 #endif
54 #ifndef O_LARGEFILE
55 #define O_LARGEFILE 0
56 #endif
57 #ifndef O_BINARY
58 #define O_BINARY 0
59 #endif
60 #ifndef MAP_ANONYMOUS
61 #define MAP_ANONYMOUS MAP_ANON
62 #endif
63 #ifndef ENOMEDIUM
64 #define ENOMEDIUM ENODEV
65 #endif
66 #if !defined(ENOTSUP)
67 #define ENOTSUP 4096
68 #endif
69 #if !defined(ECANCELED)
70 #define ECANCELED 4097
71 #endif
72 #if !defined(EMEDIUMTYPE)
73 #define EMEDIUMTYPE 4098
74 #endif
75 #ifndef TIME_MAX
76 #define TIME_MAX LONG_MAX
77 #endif
79 /* HOST_LONG_BITS is the size of a native pointer in bits. */
80 #if UINTPTR_MAX == UINT32_MAX
81 # define HOST_LONG_BITS 32
82 #elif UINTPTR_MAX == UINT64_MAX
83 # define HOST_LONG_BITS 64
84 #else
85 # error Unknown pointer size
86 #endif
88 typedef int (*fprintf_function)(FILE *f, const char *fmt, ...)
89 GCC_FMT_ATTR(2, 3);
91 #ifdef _WIN32
92 #define fsync _commit
93 #if !defined(lseek)
94 # define lseek _lseeki64
95 #endif
96 int qemu_ftruncate64(int, int64_t);
97 #if !defined(ftruncate)
98 # define ftruncate qemu_ftruncate64
99 #endif
101 static inline char *realpath(const char *path, char *resolved_path)
103 _fullpath(resolved_path, path, _MAX_PATH);
104 return resolved_path;
106 #endif
108 void cpu_ticks_init(void);
110 /* icount */
111 void configure_icount(QemuOpts *opts, Error **errp);
112 extern int use_icount;
113 extern int icount_align_option;
114 /* drift information for info jit command */
115 extern int64_t max_delay;
116 extern int64_t max_advance;
117 void dump_drift_info(FILE *f, fprintf_function cpu_fprintf);
119 #include "qemu/osdep.h"
120 #include "qemu/bswap.h"
122 /* FIXME: Remove NEED_CPU_H. */
123 #ifdef NEED_CPU_H
124 #include "cpu.h"
125 #endif /* !defined(NEED_CPU_H) */
127 /* main function, renamed */
128 #if defined(CONFIG_COCOA)
129 int qemu_main(int argc, char **argv, char **envp);
130 #endif
132 void qemu_get_timedate(struct tm *tm, int offset);
133 int qemu_timedate_diff(struct tm *tm);
136 * is_help_option:
137 * @s: string to test
139 * Check whether @s is one of the standard strings which indicate
140 * that the user is asking for a list of the valid values for a
141 * command option like -cpu or -M. The current accepted strings
142 * are 'help' and '?'. '?' is deprecated (it is a shell wildcard
143 * which makes it annoying to use in a reliable way) but provided
144 * for backwards compatibility.
146 * Returns: true if @s is a request for a list.
148 static inline bool is_help_option(const char *s)
150 return !strcmp(s, "?") || !strcmp(s, "help");
153 /* cutils.c */
154 void pstrcpy(char *buf, int buf_size, const char *str);
155 void strpadcpy(char *buf, int buf_size, const char *str, char pad);
156 char *pstrcat(char *buf, int buf_size, const char *s);
157 int strstart(const char *str, const char *val, const char **ptr);
158 int stristart(const char *str, const char *val, const char **ptr);
159 int qemu_strnlen(const char *s, int max_len);
160 char *qemu_strsep(char **input, const char *delim);
161 time_t mktimegm(struct tm *tm);
162 int qemu_fls(int i);
163 int qemu_fdatasync(int fd);
164 int fcntl_setfl(int fd, int flag);
165 int qemu_parse_fd(const char *param);
167 int parse_uint(const char *s, unsigned long long *value, char **endptr,
168 int base);
169 int parse_uint_full(const char *s, unsigned long long *value, int base);
172 * strtosz() suffixes used to specify the default treatment of an
173 * argument passed to strtosz() without an explicit suffix.
174 * These should be defined using upper case characters in the range
175 * A-Z, as strtosz() will use qemu_toupper() on the given argument
176 * prior to comparison.
178 #define STRTOSZ_DEFSUFFIX_EB 'E'
179 #define STRTOSZ_DEFSUFFIX_PB 'P'
180 #define STRTOSZ_DEFSUFFIX_TB 'T'
181 #define STRTOSZ_DEFSUFFIX_GB 'G'
182 #define STRTOSZ_DEFSUFFIX_MB 'M'
183 #define STRTOSZ_DEFSUFFIX_KB 'K'
184 #define STRTOSZ_DEFSUFFIX_B 'B'
185 int64_t strtosz(const char *nptr, char **end);
186 int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix);
187 int64_t strtosz_suffix_unit(const char *nptr, char **end,
188 const char default_suffix, int64_t unit);
189 #define K_BYTE (1ULL << 10)
190 #define M_BYTE (1ULL << 20)
191 #define G_BYTE (1ULL << 30)
192 #define T_BYTE (1ULL << 40)
193 #define P_BYTE (1ULL << 50)
194 #define E_BYTE (1ULL << 60)
196 /* used to print char* safely */
197 #define STR_OR_NULL(str) ((str) ? (str) : "null")
199 /* id.c */
200 bool id_wellformed(const char *id);
202 /* path.c */
203 void init_paths(const char *prefix);
204 const char *path(const char *pathname);
206 #define qemu_isalnum(c) isalnum((unsigned char)(c))
207 #define qemu_isalpha(c) isalpha((unsigned char)(c))
208 #define qemu_iscntrl(c) iscntrl((unsigned char)(c))
209 #define qemu_isdigit(c) isdigit((unsigned char)(c))
210 #define qemu_isgraph(c) isgraph((unsigned char)(c))
211 #define qemu_islower(c) islower((unsigned char)(c))
212 #define qemu_isprint(c) isprint((unsigned char)(c))
213 #define qemu_ispunct(c) ispunct((unsigned char)(c))
214 #define qemu_isspace(c) isspace((unsigned char)(c))
215 #define qemu_isupper(c) isupper((unsigned char)(c))
216 #define qemu_isxdigit(c) isxdigit((unsigned char)(c))
217 #define qemu_tolower(c) tolower((unsigned char)(c))
218 #define qemu_toupper(c) toupper((unsigned char)(c))
219 #define qemu_isascii(c) isascii((unsigned char)(c))
220 #define qemu_toascii(c) toascii((unsigned char)(c))
222 void *qemu_oom_check(void *ptr);
224 ssize_t qemu_write_full(int fd, const void *buf, size_t count)
225 QEMU_WARN_UNUSED_RESULT;
227 #ifndef _WIN32
228 int qemu_pipe(int pipefd[2]);
229 /* like openpty() but also makes it raw; return master fd */
230 int qemu_openpty_raw(int *aslave, char *pty_name);
231 #endif
233 #ifdef _WIN32
234 /* MinGW needs type casts for the 'buf' and 'optval' arguments. */
235 #define qemu_getsockopt(sockfd, level, optname, optval, optlen) \
236 getsockopt(sockfd, level, optname, (void *)optval, optlen)
237 #define qemu_setsockopt(sockfd, level, optname, optval, optlen) \
238 setsockopt(sockfd, level, optname, (const void *)optval, optlen)
239 #define qemu_recv(sockfd, buf, len, flags) recv(sockfd, (void *)buf, len, flags)
240 #define qemu_sendto(sockfd, buf, len, flags, destaddr, addrlen) \
241 sendto(sockfd, (const void *)buf, len, flags, destaddr, addrlen)
242 #else
243 #define qemu_getsockopt(sockfd, level, optname, optval, optlen) \
244 getsockopt(sockfd, level, optname, optval, optlen)
245 #define qemu_setsockopt(sockfd, level, optname, optval, optlen) \
246 setsockopt(sockfd, level, optname, optval, optlen)
247 #define qemu_recv(sockfd, buf, len, flags) recv(sockfd, buf, len, flags)
248 #define qemu_sendto(sockfd, buf, len, flags, destaddr, addrlen) \
249 sendto(sockfd, buf, len, flags, destaddr, addrlen)
250 #endif
252 /* Error handling. */
254 void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
256 struct ParallelIOArg {
257 void *buffer;
258 int count;
261 typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
263 typedef uint64_t pcibus_t;
265 typedef struct PCIHostDeviceAddress {
266 unsigned int domain;
267 unsigned int bus;
268 unsigned int slot;
269 unsigned int function;
270 } PCIHostDeviceAddress;
272 void tcg_exec_init(unsigned long tb_size);
273 bool tcg_enabled(void);
275 void cpu_exec_init_all(void);
277 /* CPU save/load. */
278 #ifdef CPU_SAVE_VERSION
279 void cpu_save(QEMUFile *f, void *opaque);
280 int cpu_load(QEMUFile *f, void *opaque, int version_id);
281 #endif
283 /* Unblock cpu */
284 void qemu_cpu_kick_self(void);
286 /* work queue */
287 struct qemu_work_item {
288 struct qemu_work_item *next;
289 void (*func)(void *data);
290 void *data;
291 int done;
292 bool free;
297 * Sends a (part of) iovec down a socket, yielding when the socket is full, or
298 * Receives data into a (part of) iovec from a socket,
299 * yielding when there is no data in the socket.
300 * The same interface as qemu_sendv_recvv(), with added yielding.
301 * XXX should mark these as coroutine_fn
303 ssize_t qemu_co_sendv_recvv(int sockfd, struct iovec *iov, unsigned iov_cnt,
304 size_t offset, size_t bytes, bool do_send);
305 #define qemu_co_recvv(sockfd, iov, iov_cnt, offset, bytes) \
306 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, false)
307 #define qemu_co_sendv(sockfd, iov, iov_cnt, offset, bytes) \
308 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, true)
311 * The same as above, but with just a single buffer
313 ssize_t qemu_co_send_recv(int sockfd, void *buf, size_t bytes, bool do_send);
314 #define qemu_co_recv(sockfd, buf, bytes) \
315 qemu_co_send_recv(sockfd, buf, bytes, false)
316 #define qemu_co_send(sockfd, buf, bytes) \
317 qemu_co_send_recv(sockfd, buf, bytes, true)
319 typedef struct QEMUIOVector {
320 struct iovec *iov;
321 int niov;
322 int nalloc;
323 size_t size;
324 } QEMUIOVector;
326 void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
327 void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
328 void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
329 void qemu_iovec_concat(QEMUIOVector *dst,
330 QEMUIOVector *src, size_t soffset, size_t sbytes);
331 size_t qemu_iovec_concat_iov(QEMUIOVector *dst,
332 struct iovec *src_iov, unsigned int src_cnt,
333 size_t soffset, size_t sbytes);
334 bool qemu_iovec_is_zero(QEMUIOVector *qiov);
335 void qemu_iovec_destroy(QEMUIOVector *qiov);
336 void qemu_iovec_reset(QEMUIOVector *qiov);
337 size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset,
338 void *buf, size_t bytes);
339 size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset,
340 const void *buf, size_t bytes);
341 size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset,
342 int fillc, size_t bytes);
343 ssize_t qemu_iovec_compare(QEMUIOVector *a, QEMUIOVector *b);
344 void qemu_iovec_clone(QEMUIOVector *dest, const QEMUIOVector *src, void *buf);
345 void qemu_iovec_discard_back(QEMUIOVector *qiov, size_t bytes);
347 bool buffer_is_zero(const void *buf, size_t len);
349 void qemu_progress_init(int enabled, float min_skip);
350 void qemu_progress_end(void);
351 void qemu_progress_print(float delta, int max);
352 const char *qemu_get_vm_name(void);
354 #define QEMU_FILE_TYPE_BIOS 0
355 #define QEMU_FILE_TYPE_KEYMAP 1
356 char *qemu_find_file(int type, const char *name);
358 /* OS specific functions */
359 void os_setup_early_signal_handling(void);
360 char *os_find_datadir(void);
361 void os_parse_cmd_args(int index, const char *optarg);
363 /* Convert a byte between binary and BCD. */
364 static inline uint8_t to_bcd(uint8_t val)
366 return ((val / 10) << 4) | (val % 10);
369 static inline uint8_t from_bcd(uint8_t val)
371 return ((val >> 4) * 10) + (val & 0x0f);
374 /* compute with 96 bit intermediate result: (a*b)/c */
375 #ifdef CONFIG_INT128
376 static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
378 return (__int128_t)a * b / c;
380 #else
381 static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
383 union {
384 uint64_t ll;
385 struct {
386 #ifdef HOST_WORDS_BIGENDIAN
387 uint32_t high, low;
388 #else
389 uint32_t low, high;
390 #endif
391 } l;
392 } u, res;
393 uint64_t rl, rh;
395 u.ll = a;
396 rl = (uint64_t)u.l.low * (uint64_t)b;
397 rh = (uint64_t)u.l.high * (uint64_t)b;
398 rh += (rl >> 32);
399 res.l.high = rh / c;
400 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
401 return res.ll;
403 #endif
405 /* Round number down to multiple */
406 #define QEMU_ALIGN_DOWN(n, m) ((n) / (m) * (m))
408 /* Round number up to multiple */
409 #define QEMU_ALIGN_UP(n, m) QEMU_ALIGN_DOWN((n) + (m) - 1, (m))
411 static inline bool is_power_of_2(uint64_t value)
413 if (!value) {
414 return 0;
417 return !(value & (value - 1));
420 /* round down to the nearest power of 2*/
421 int64_t pow2floor(int64_t value);
423 /* round up to the nearest power of 2 (0 if overflow) */
424 uint64_t pow2ceil(uint64_t value);
426 #include "qemu/module.h"
429 * Implementation of ULEB128 (http://en.wikipedia.org/wiki/LEB128)
430 * Input is limited to 14-bit numbers
433 int uleb128_encode_small(uint8_t *out, uint32_t n);
434 int uleb128_decode_small(const uint8_t *in, uint32_t *n);
436 /* unicode.c */
437 int mod_utf8_codepoint(const char *s, size_t n, char **end);
440 * Hexdump a buffer to a file. An optional string prefix is added to every line
443 void qemu_hexdump(const char *buf, FILE *fp, const char *prefix, size_t size);
445 /* vector definitions */
446 #ifdef __ALTIVEC__
447 #include <altivec.h>
448 /* The altivec.h header says we're allowed to undef these for
449 * C++ compatibility. Here we don't care about C++, but we
450 * undef them anyway to avoid namespace pollution.
452 #undef vector
453 #undef pixel
454 #undef bool
455 #define VECTYPE __vector unsigned char
456 #define SPLAT(p) vec_splat(vec_ld(0, p), 0)
457 #define ALL_EQ(v1, v2) vec_all_eq(v1, v2)
458 /* altivec.h may redefine the bool macro as vector type.
459 * Reset it to POSIX semantics. */
460 #define bool _Bool
461 #elif defined __SSE2__
462 #include <emmintrin.h>
463 #define VECTYPE __m128i
464 #define SPLAT(p) _mm_set1_epi8(*(p))
465 #define ALL_EQ(v1, v2) (_mm_movemask_epi8(_mm_cmpeq_epi8(v1, v2)) == 0xFFFF)
466 #else
467 #define VECTYPE unsigned long
468 #define SPLAT(p) (*(p) * (~0UL / 255))
469 #define ALL_EQ(v1, v2) ((v1) == (v2))
470 #endif
472 #define BUFFER_FIND_NONZERO_OFFSET_UNROLL_FACTOR 8
473 static inline bool
474 can_use_buffer_find_nonzero_offset(const void *buf, size_t len)
476 return (len % (BUFFER_FIND_NONZERO_OFFSET_UNROLL_FACTOR
477 * sizeof(VECTYPE)) == 0
478 && ((uintptr_t) buf) % sizeof(VECTYPE) == 0);
480 size_t buffer_find_nonzero_offset(const void *buf, size_t len);
483 * helper to parse debug environment variables
485 int parse_debug_env(const char *name, int max, int initial);
487 const char *qemu_ether_ntoa(const MACAddr *mac);
489 #endif