vmstate: port i2c_bus device
[qemu-kvm/amd-iommu.git] / hw / hw.h
blob9afe50a350f28a19c7d2db77bbd76fd9b374db05
1 /* Declarations for use by hardware emulation. */
2 #ifndef QEMU_HW_H
3 #define QEMU_HW_H
5 #include "qemu-common.h"
7 #if defined(TARGET_PHYS_ADDR_BITS) && !defined(NEED_CPU_H)
8 #include "targphys.h"
9 #include "poison.h"
10 #include "cpu-common.h"
11 #endif
13 #include "ioport.h"
14 #include "irq.h"
16 /* VM Load/Save */
18 /* This function writes a chunk of data to a file at the given position.
19 * The pos argument can be ignored if the file is only being used for
20 * streaming. The handler should try to write all of the data it can.
22 typedef int (QEMUFilePutBufferFunc)(void *opaque, const uint8_t *buf,
23 int64_t pos, int size);
25 /* Read a chunk of data from a file at the given position. The pos argument
26 * can be ignored if the file is only be used for streaming. The number of
27 * bytes actually read should be returned.
29 typedef int (QEMUFileGetBufferFunc)(void *opaque, uint8_t *buf,
30 int64_t pos, int size);
32 /* Close a file and return an error code */
33 typedef int (QEMUFileCloseFunc)(void *opaque);
35 /* Called to determine if the file has exceeded it's bandwidth allocation. The
36 * bandwidth capping is a soft limit, not a hard limit.
38 typedef int (QEMUFileRateLimit)(void *opaque);
40 /* Called to change the current bandwidth allocation. This function must return
41 * the new actual bandwidth. It should be new_rate if everything goes ok, and
42 * the old rate otherwise
44 typedef size_t (QEMUFileSetRateLimit)(void *opaque, size_t new_rate);
46 QEMUFile *qemu_fopen_ops(void *opaque, QEMUFilePutBufferFunc *put_buffer,
47 QEMUFileGetBufferFunc *get_buffer,
48 QEMUFileCloseFunc *close,
49 QEMUFileRateLimit *rate_limit,
50 QEMUFileSetRateLimit *set_rate_limit);
51 QEMUFile *qemu_fopen(const char *filename, const char *mode);
52 QEMUFile *qemu_fdopen(int fd, const char *mode);
53 QEMUFile *qemu_fopen_socket(int fd);
54 QEMUFile *qemu_popen(FILE *popen_file, const char *mode);
55 QEMUFile *qemu_popen_cmd(const char *command, const char *mode);
56 int qemu_stdio_fd(QEMUFile *f);
57 void qemu_fflush(QEMUFile *f);
58 int qemu_fclose(QEMUFile *f);
59 void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size);
60 void qemu_put_byte(QEMUFile *f, int v);
62 static inline void qemu_put_ubyte(QEMUFile *f, unsigned int v)
64 qemu_put_byte(f, (int)v);
67 #define qemu_put_sbyte qemu_put_byte
69 void qemu_put_be16(QEMUFile *f, unsigned int v);
70 void qemu_put_be32(QEMUFile *f, unsigned int v);
71 void qemu_put_be64(QEMUFile *f, uint64_t v);
72 int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size);
73 int qemu_get_byte(QEMUFile *f);
75 static inline unsigned int qemu_get_ubyte(QEMUFile *f)
77 return (unsigned int)qemu_get_byte(f);
80 #define qemu_get_sbyte qemu_get_byte
82 unsigned int qemu_get_be16(QEMUFile *f);
83 unsigned int qemu_get_be32(QEMUFile *f);
84 uint64_t qemu_get_be64(QEMUFile *f);
85 int qemu_file_rate_limit(QEMUFile *f);
86 size_t qemu_file_set_rate_limit(QEMUFile *f, size_t new_rate);
87 int qemu_file_has_error(QEMUFile *f);
88 void qemu_file_set_error(QEMUFile *f);
90 /* Try to send any outstanding data. This function is useful when output is
91 * halted due to rate limiting or EAGAIN errors occur as it can be used to
92 * resume output. */
93 void qemu_file_put_notify(QEMUFile *f);
95 static inline void qemu_put_be64s(QEMUFile *f, const uint64_t *pv)
97 qemu_put_be64(f, *pv);
100 static inline void qemu_put_be32s(QEMUFile *f, const uint32_t *pv)
102 qemu_put_be32(f, *pv);
105 static inline void qemu_put_be16s(QEMUFile *f, const uint16_t *pv)
107 qemu_put_be16(f, *pv);
110 static inline void qemu_put_8s(QEMUFile *f, const uint8_t *pv)
112 qemu_put_byte(f, *pv);
115 static inline void qemu_get_be64s(QEMUFile *f, uint64_t *pv)
117 *pv = qemu_get_be64(f);
120 static inline void qemu_get_be32s(QEMUFile *f, uint32_t *pv)
122 *pv = qemu_get_be32(f);
125 static inline void qemu_get_be16s(QEMUFile *f, uint16_t *pv)
127 *pv = qemu_get_be16(f);
130 static inline void qemu_get_8s(QEMUFile *f, uint8_t *pv)
132 *pv = qemu_get_byte(f);
135 // Signed versions for type safety
136 static inline void qemu_put_sbuffer(QEMUFile *f, const int8_t *buf, int size)
138 qemu_put_buffer(f, (const uint8_t *)buf, size);
141 static inline void qemu_put_sbe16(QEMUFile *f, int v)
143 qemu_put_be16(f, (unsigned int)v);
146 static inline void qemu_put_sbe32(QEMUFile *f, int v)
148 qemu_put_be32(f, (unsigned int)v);
151 static inline void qemu_put_sbe64(QEMUFile *f, int64_t v)
153 qemu_put_be64(f, (uint64_t)v);
156 static inline size_t qemu_get_sbuffer(QEMUFile *f, int8_t *buf, int size)
158 return qemu_get_buffer(f, (uint8_t *)buf, size);
161 static inline int qemu_get_sbe16(QEMUFile *f)
163 return (int)qemu_get_be16(f);
166 static inline int qemu_get_sbe32(QEMUFile *f)
168 return (int)qemu_get_be32(f);
171 static inline int64_t qemu_get_sbe64(QEMUFile *f)
173 return (int64_t)qemu_get_be64(f);
176 static inline void qemu_put_s8s(QEMUFile *f, const int8_t *pv)
178 qemu_put_8s(f, (const uint8_t *)pv);
181 static inline void qemu_put_sbe16s(QEMUFile *f, const int16_t *pv)
183 qemu_put_be16s(f, (const uint16_t *)pv);
186 static inline void qemu_put_sbe32s(QEMUFile *f, const int32_t *pv)
188 qemu_put_be32s(f, (const uint32_t *)pv);
191 static inline void qemu_put_sbe64s(QEMUFile *f, const int64_t *pv)
193 qemu_put_be64s(f, (const uint64_t *)pv);
196 static inline void qemu_get_s8s(QEMUFile *f, int8_t *pv)
198 qemu_get_8s(f, (uint8_t *)pv);
201 static inline void qemu_get_sbe16s(QEMUFile *f, int16_t *pv)
203 qemu_get_be16s(f, (uint16_t *)pv);
206 static inline void qemu_get_sbe32s(QEMUFile *f, int32_t *pv)
208 qemu_get_be32s(f, (uint32_t *)pv);
211 static inline void qemu_get_sbe64s(QEMUFile *f, int64_t *pv)
213 qemu_get_be64s(f, (uint64_t *)pv);
216 #ifdef NEED_CPU_H
217 #if TARGET_LONG_BITS == 64
218 #define qemu_put_betl qemu_put_be64
219 #define qemu_get_betl qemu_get_be64
220 #define qemu_put_betls qemu_put_be64s
221 #define qemu_get_betls qemu_get_be64s
222 #define qemu_put_sbetl qemu_put_sbe64
223 #define qemu_get_sbetl qemu_get_sbe64
224 #define qemu_put_sbetls qemu_put_sbe64s
225 #define qemu_get_sbetls qemu_get_sbe64s
226 #else
227 #define qemu_put_betl qemu_put_be32
228 #define qemu_get_betl qemu_get_be32
229 #define qemu_put_betls qemu_put_be32s
230 #define qemu_get_betls qemu_get_be32s
231 #define qemu_put_sbetl qemu_put_sbe32
232 #define qemu_get_sbetl qemu_get_sbe32
233 #define qemu_put_sbetls qemu_put_sbe32s
234 #define qemu_get_sbetls qemu_get_sbe32s
235 #endif
236 #endif
238 int64_t qemu_ftell(QEMUFile *f);
239 int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence);
241 typedef void SaveStateHandler(QEMUFile *f, void *opaque);
242 typedef int SaveLiveStateHandler(QEMUFile *f, int stage, void *opaque);
243 typedef int LoadStateHandler(QEMUFile *f, void *opaque, int version_id);
245 int register_savevm(const char *idstr,
246 int instance_id,
247 int version_id,
248 SaveStateHandler *save_state,
249 LoadStateHandler *load_state,
250 void *opaque);
252 int register_savevm_live(const char *idstr,
253 int instance_id,
254 int version_id,
255 SaveLiveStateHandler *save_live_state,
256 SaveStateHandler *save_state,
257 LoadStateHandler *load_state,
258 void *opaque);
260 void unregister_savevm(const char *idstr, void *opaque);
262 typedef void QEMUResetHandler(void *opaque);
264 void qemu_register_reset(QEMUResetHandler *func, void *opaque);
265 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque);
267 /* handler to set the boot_device order for a specific type of QEMUMachine */
268 /* return 0 if success */
269 typedef int QEMUBootSetHandler(void *opaque, const char *boot_devices);
270 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque);
271 int qemu_boot_set(const char *boot_devices);
273 typedef struct VMStateInfo VMStateInfo;
274 typedef struct VMStateDescription VMStateDescription;
276 struct VMStateInfo {
277 const char *name;
278 int (*get)(QEMUFile *f, void *pv, size_t size);
279 void (*put)(QEMUFile *f, void *pv, size_t size);
282 enum VMStateFlags {
283 VMS_SINGLE = 0x001,
284 VMS_POINTER = 0x002,
285 VMS_ARRAY = 0x004,
286 VMS_STRUCT = 0x008,
287 VMS_VARRAY = 0x010, /* Array with size in another field */
288 VMS_BUFFER = 0x020, /* static sized buffer */
291 typedef struct {
292 const char *name;
293 size_t offset;
294 size_t size;
295 int num;
296 size_t num_offset;
297 const VMStateInfo *info;
298 enum VMStateFlags flags;
299 const VMStateDescription *vmsd;
300 int version_id;
301 } VMStateField;
303 struct VMStateDescription {
304 const char *name;
305 int version_id;
306 int minimum_version_id;
307 int minimum_version_id_old;
308 LoadStateHandler *load_state_old;
309 int (*pre_load)(void *opaque);
310 int (*post_load)(void *opaque, int version_id);
311 void (*pre_save)(void *opaque);
312 void (*post_save)(void *opaque);
313 VMStateField *fields;
316 extern const VMStateInfo vmstate_info_int8;
317 extern const VMStateInfo vmstate_info_int16;
318 extern const VMStateInfo vmstate_info_int32;
319 extern const VMStateInfo vmstate_info_int64;
321 extern const VMStateInfo vmstate_info_uint8_equal;
322 extern const VMStateInfo vmstate_info_int32_equal;
323 extern const VMStateInfo vmstate_info_int32_le;
325 extern const VMStateInfo vmstate_info_uint8;
326 extern const VMStateInfo vmstate_info_uint16;
327 extern const VMStateInfo vmstate_info_uint32;
328 extern const VMStateInfo vmstate_info_uint64;
330 extern const VMStateInfo vmstate_info_timer;
331 extern const VMStateInfo vmstate_info_ptimer;
332 extern const VMStateInfo vmstate_info_buffer;
334 #define type_check_array(t1,t2,n) ((t1(*)[n])0 - (t2*)0)
335 #define type_check_pointer(t1,t2) ((t1**)0 - (t2*)0)
337 #define VMSTATE_SINGLE(_field, _state, _version, _info, _type) { \
338 .name = (stringify(_field)), \
339 .version_id = (_version), \
340 .size = sizeof(_type), \
341 .info = &(_info), \
342 .flags = VMS_SINGLE, \
343 .offset = offsetof(_state, _field) \
344 + type_check(_type,typeof_field(_state, _field)) \
347 #define VMSTATE_POINTER(_field, _state, _version, _info, _type) { \
348 .name = (stringify(_field)), \
349 .version_id = (_version), \
350 .info = &(_info), \
351 .size = sizeof(_type), \
352 .flags = VMS_SINGLE|VMS_POINTER, \
353 .offset = offsetof(_state, _field) \
354 + type_check(_type,typeof_field(_state, _field)) \
357 #define VMSTATE_ARRAY(_field, _state, _num, _version, _info, _type) {\
358 .name = (stringify(_field)), \
359 .version_id = (_version), \
360 .num = (_num), \
361 .info = &(_info), \
362 .size = sizeof(_type), \
363 .flags = VMS_ARRAY, \
364 .offset = offsetof(_state, _field) \
365 + type_check_array(_type,typeof_field(_state, _field),_num) \
368 #define VMSTATE_VARRAY(_field, _state, _field_num, _version, _info, _type) {\
369 .name = (stringify(_field)), \
370 .version_id = (_version), \
371 .num_offset = offsetof(_state, _field_num) \
372 + type_check(int32_t,typeof_field(_state, _field_num)), \
373 .info = &(_info), \
374 .size = sizeof(_type), \
375 .flags = VMS_VARRAY|VMS_POINTER, \
376 .offset = offsetof(_state, _field) \
377 + type_check_pointer(_type,typeof_field(_state, _field)) \
380 #define VMSTATE_STRUCT(_field, _state, _version, _vmsd, _type) { \
381 .name = (stringify(_field)), \
382 .version_id = (_version), \
383 .vmsd = &(_vmsd), \
384 .size = sizeof(_type), \
385 .flags = VMS_STRUCT, \
386 .offset = offsetof(_state, _field) \
387 + type_check(_type,typeof_field(_state, _field)) \
390 #define VMSTATE_STRUCT_ARRAY(_field, _state, _num, _version, _vmsd, _type) { \
391 .name = (stringify(_field)), \
392 .num = (_num), \
393 .version_id = (_version), \
394 .vmsd = &(_vmsd), \
395 .size = sizeof(_type), \
396 .flags = VMS_STRUCT|VMS_ARRAY, \
397 .offset = offsetof(_state, _field) \
398 + type_check_array(_type,typeof_field(_state, _field),_num) \
401 #define VMSTATE_STRUCT_ARRAY_SIZE_UINT8(_field, _state, _field__num, _version, _vmsd, _type) { \
402 .name = (stringify(_field)), \
403 .num_offset = offsetof(_state, _field_num) \
404 + type_check(uint8_t,typeof_field(_state, _field_num)), \
405 .version_id = (_version), \
406 .vmsd = &(_vmsd), \
407 .size = sizeof(_type), \
408 .flags = VMS_STRUCT|VMS_ARRAY, \
409 .offset = offsetof(_state, _field) \
410 + type_check_array(_type,typeof_field(_state, _field),_num) \
413 #define VMSTATE_STATIC_BUFFER(_field, _state, _version) { \
414 .name = (stringify(_field)), \
415 .version_id = (_version), \
416 .size = sizeof(typeof_field(_state,_field)), \
417 .info = &vmstate_info_buffer, \
418 .flags = VMS_BUFFER, \
419 .offset = offsetof(_state, _field) \
420 + type_check_array(uint8_t,typeof_field(_state, _field),sizeof(typeof_field(_state,_field))) \
423 #define VMSTATE_BUFFER_START_MIDDLE(_field, _state, start) { \
424 .name = (stringify(_field)), \
425 .size = sizeof(typeof_field(_state,_field)) - start, \
426 .info = &vmstate_info_buffer, \
427 .flags = VMS_BUFFER, \
428 .offset = offsetof(_state, _field) + start \
429 + type_check_array(uint8_t,typeof_field(_state, _field),sizeof(typeof_field(_state,_field))) \
432 extern const VMStateDescription vmstate_pci_device;
434 #define VMSTATE_PCI_DEVICE(_field, _state) { \
435 .name = (stringify(_field)), \
436 .size = sizeof(PCIDevice), \
437 .vmsd = &vmstate_pci_device, \
438 .flags = VMS_STRUCT, \
439 .offset = offsetof(_state, _field) \
440 + type_check(PCIDevice,typeof_field(_state, _field)) \
443 /* _f : field name
444 _f_n : num of elements field_name
445 _n : num of elements
446 _s : struct state name
447 _v : version
450 #define VMSTATE_INT8_V(_f, _s, _v) \
451 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int8, int8_t)
452 #define VMSTATE_INT16_V(_f, _s, _v) \
453 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int16, int16_t)
454 #define VMSTATE_INT32_V(_f, _s, _v) \
455 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int32, int32_t)
456 #define VMSTATE_INT64_V(_f, _s, _v) \
457 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int64, int64_t)
459 #define VMSTATE_UINT8_V(_f, _s, _v) \
460 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint8, uint8_t)
461 #define VMSTATE_UINT16_V(_f, _s, _v) \
462 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint16, uint16_t)
463 #define VMSTATE_UINT32_V(_f, _s, _v) \
464 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint32, uint32_t)
465 #define VMSTATE_UINT64_V(_f, _s, _v) \
466 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint64, uint64_t)
468 #define VMSTATE_INT8(_f, _s) \
469 VMSTATE_INT8_V(_f, _s, 0)
470 #define VMSTATE_INT16(_f, _s) \
471 VMSTATE_INT16_V(_f, _s, 0)
472 #define VMSTATE_INT32(_f, _s) \
473 VMSTATE_INT32_V(_f, _s, 0)
474 #define VMSTATE_INT64(_f, _s) \
475 VMSTATE_INT64_V(_f, _s, 0)
477 #define VMSTATE_UINT8(_f, _s) \
478 VMSTATE_UINT8_V(_f, _s, 0)
479 #define VMSTATE_UINT16(_f, _s) \
480 VMSTATE_UINT16_V(_f, _s, 0)
481 #define VMSTATE_UINT32(_f, _s) \
482 VMSTATE_UINT32_V(_f, _s, 0)
483 #define VMSTATE_UINT64(_f, _s) \
484 VMSTATE_UINT64_V(_f, _s, 0)
486 #define VMSTATE_UINT8_EQUAL(_f, _s) \
487 VMSTATE_SINGLE(_f, _s, 0, vmstate_info_uint8_equal, uint8_t)
489 #define VMSTATE_INT32_EQUAL(_f, _s) \
490 VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_equal, int32_t)
492 #define VMSTATE_INT32_LE(_f, _s) \
493 VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_le, int32_t)
495 #define VMSTATE_TIMER_V(_f, _s, _v) \
496 VMSTATE_POINTER(_f, _s, _v, vmstate_info_timer, QEMUTimer *)
498 #define VMSTATE_TIMER(_f, _s) \
499 VMSTATE_TIMER_V(_f, _s, 0)
501 #define VMSTATE_PTIMER_V(_f, _s, _v) \
502 VMSTATE_POINTER(_f, _s, _v, vmstate_info_ptimer, ptimer_state *)
504 #define VMSTATE_PTIMER(_f, _s) \
505 VMSTATE_PTIMER_V(_f, _s, 0)
507 #define VMSTATE_UINT16_ARRAY_V(_f, _s, _n, _v) \
508 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint16, uint16_t)
510 #define VMSTATE_UINT16_ARRAY(_f, _s, _n) \
511 VMSTATE_UINT16_ARRAY_V(_f, _s, _n, 0)
513 #define VMSTATE_UINT32_ARRAY_V(_f, _s, _n, _v) \
514 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint32, uint32_t)
516 #define VMSTATE_UINT32_ARRAY(_f, _s, _n) \
517 VMSTATE_UINT32_ARRAY_V(_f, _s, _n, 0)
519 #define VMSTATE_UINT64_ARRAY_V(_f, _s, _n, _v) \
520 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint64, uint64_t)
522 #define VMSTATE_UINT64_ARRAY(_f, _s, _n) \
523 VMSTATE_UINT64_ARRAY_V(_f, _s, _n, 0)
525 #define VMSTATE_INT32_ARRAY_V(_f, _s, _n, _v) \
526 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_int32, int32_t)
528 #define VMSTATE_INT32_ARRAY(_f, _s, _n) \
529 VMSTATE_INT32_ARRAY_V(_f, _s, _n, 0)
531 #define VMSTATE_INT32_VARRAY_V(_f, _s, _f_n, _v) \
532 VMSTATE_VARRAY(_f, _s, _f_n, _v, vmstate_info_int32, int32_t)
534 #define VMSTATE_INT32_VARRAY(_f, _s, _f_n) \
535 VMSTATE_INT32_VARRAY_V(_f, _s, _f_n, 0)
537 #define VMSTATE_BUFFER_V(_f, _s, _v) \
538 VMSTATE_STATIC_BUFFER(_f, _s, _v)
540 #define VMSTATE_BUFFER(_f, _s) \
541 VMSTATE_STATIC_BUFFER(_f, _s, 0)
543 #define VMSTATE_END_OF_LIST() \
546 extern int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
547 void *opaque, int version_id);
548 extern void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
549 void *opaque);
550 extern int vmstate_register(int instance_id, const VMStateDescription *vmsd,
551 void *base);
552 void vmstate_unregister(const VMStateDescription *vmsd, void *opaque);
553 #endif