xref: /qemu/tests/qtest/libqos/libqos-spapr.h (revision b8116f4cbaa0f64bb07564f20b3b5219e23c8bff)
1 #ifndef LIBQOS_SPAPR_H
2 #define LIBQOS_SPAPR_H
3 
4 #include "libqos.h"
5 
6 QOSState *qtest_spapr_vboot(const char *cmdline_fmt, va_list ap)
7     G_GNUC_PRINTF(1, 0);
8 QOSState *qtest_spapr_boot(const char *cmdline_fmt, ...)
9     G_GNUC_PRINTF(1, 2);
10 void qtest_spapr_shutdown(QOSState *qs);
11 
12 /* List of capabilities needed to silence warnings with TCG */
13 #define PSERIES_DEFAULT_CAPABILITIES             \
14     "cap-cfpc=broken,"                           \
15     "cap-sbbc=broken,"                           \
16     "cap-ibs=broken,"                            \
17     "cap-ccf-assist=off,"
18 
19 #endif
20