cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

libqos-spapr.h (535B)


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