return rc;
}
+bool __init xpti_pcid_enabled(void)
+{
+ return use_invpcid && cpu_has_pcid &&
+ (opt_pcid == PCID_ALL || opt_pcid == PCID_XPTI);
+}
+
static void _toggle_guest_pt(struct vcpu *v)
{
const struct domain *d = v->domain;
#include <asm/microcode.h>
#include <asm/msr.h>
#include <asm/processor.h>
+#include <asm/pv/domain.h>
#include <asm/pv/shim.h>
#include <asm/setup.h>
#include <asm/spec_ctrl.h>
boot_cpu_has(X86_FEATURE_SC_RSB_HVM) ? " RSB" : "",
opt_eager_fpu ? " EAGER_FPU" : "");
- printk(" XPTI (64-bit PV only): Dom0 %s, DomU %s\n",
+#ifdef CONFIG_PV
+ printk(" XPTI (64-bit PV only): Dom0 %s, DomU %s (with%s PCID)\n",
opt_xpti & OPT_XPTI_DOM0 ? "enabled" : "disabled",
- opt_xpti & OPT_XPTI_DOMU ? "enabled" : "disabled");
+ opt_xpti & OPT_XPTI_DOMU ? "enabled" : "disabled",
+ xpti_pcid_enabled() ? "" : "out");
printk(" PV L1TF shadowing: Dom0 %s, DomU %s\n",
opt_pv_l1tf & OPT_PV_L1TF_DOM0 ? "enabled" : "disabled",
opt_pv_l1tf & OPT_PV_L1TF_DOMU ? "enabled" : "disabled");
+#endif
}
/* Calculate whether Retpoline is known-safe on this CPU. */
#ifndef __X86_PV_DOMAIN_H__
#define __X86_PV_DOMAIN_H__
+#include <xen/sched.h>
+
/*
* PCID values for the address spaces of 64-bit pv domains:
*
void pv_domain_destroy(struct domain *d);
int pv_domain_initialise(struct domain *d);
+bool xpti_pcid_enabled(void);
+
#else /* !CONFIG_PV */
#include <xen/errno.h>