blob: 459e23aaf4d02163f811c4d572b84f899b3cd1e5 [file] [log] [blame]
Laurent Viviereeddd592016-09-13 14:52:45 +02001/*
2 * This work is licensed under the terms of the GNU GPL, version 2 or later.
3 * See the COPYING file in the top-level directory.
4 */
5
6#ifndef LIBQOS_RTAS_H
7#define LIBQOS_RTAS_H
8#include "libqos/malloc.h"
9
Eric Blake9b67af72017-09-11 12:19:58 -050010int qrtas_get_time_of_day(QTestState *qts, QGuestAllocator *alloc,
11 struct tm *tm, uint32_t *ns);
12uint32_t qrtas_ibm_read_pci_config(QTestState *qts, QGuestAllocator *alloc,
13 uint64_t buid, uint32_t addr, uint32_t size);
14int qrtas_ibm_write_pci_config(QTestState *qts, QGuestAllocator *alloc,
15 uint64_t buid, uint32_t addr, uint32_t size,
16 uint32_t val);
Laurent Viviereeddd592016-09-13 14:52:45 +020017#endif /* LIBQOS_RTAS_H */