2016-09-13 15:52:44 +03:00
|
|
|
#ifndef LIBQOS_SPAPR_H
|
|
|
|
#define LIBQOS_SPAPR_H
|
|
|
|
|
2020-08-04 21:00:40 +03:00
|
|
|
#include "libqos.h"
|
2016-09-13 15:52:44 +03:00
|
|
|
|
2022-12-19 16:02:04 +03:00
|
|
|
QOSState *qtest_spapr_vboot(const char *cmdline_fmt, va_list ap)
|
|
|
|
G_GNUC_PRINTF(1, 0);
|
|
|
|
QOSState *qtest_spapr_boot(const char *cmdline_fmt, ...)
|
|
|
|
G_GNUC_PRINTF(1, 2);
|
2016-09-13 15:52:44 +03:00
|
|
|
void qtest_spapr_shutdown(QOSState *qs);
|
|
|
|
|
2020-02-02 01:46:16 +03:00
|
|
|
/* List of capabilities needed to silence warnings with TCG */
|
|
|
|
#define PSERIES_DEFAULT_CAPABILITIES \
|
|
|
|
"cap-cfpc=broken," \
|
|
|
|
"cap-sbbc=broken," \
|
|
|
|
"cap-ibs=broken," \
|
2020-03-16 17:26:10 +03:00
|
|
|
"cap-ccf-assist=off,"
|
2020-02-02 01:46:16 +03:00
|
|
|
|
2016-09-13 15:52:44 +03:00
|
|
|
#endif
|